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

:root{
	--white-text:#fff;
	--background:#c8e8f1;
	--black-text:rgb(68, 66, 66)	
	--prueba: (180deg,#21c8f6,#637bff);
}
.background1-left-column{ background: linear-gradient(180deg,#0063A5,#637bff); }
.background2-left-column{ background: linear-gradient(180deg ,#0063A5,#637bff); }
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;
}
html{ scroll-behavior:smooth; }

body{
    /*background: #fff59d;*/
    min-width: 375px;
    overflow-x:hidden; /*To slider 2*/
    height:100vh;
    overflow-y:scroll;
    scrollbar-color:#00c6ff #242942;
 }
.header{
    position: fixed;
    width: 100%;
    height: 90px;
    /*margin-top: -100px;*/
    background-color: white;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0px 5%;
    z-index:15;
}
.header .logo{
    cursor: pointer;
    margin-right: auto;
}
.header .logo img{
    height: 70px;
    width: auto;
    transition: all 0.3s;
}
.header .logo img:hover{ transform: scale(1.2); }
.header .nav-links{ list-style: none; }
.header .nav-links li{
    display: inline-block;
    padding: 0 5px;    
}
.header .nav-links li:hover,
.header .overlay a:hover{ transform: scale(1.1); }
.header .nav-links a{
    font-weight: 700;
    color: #0063A5; 
    text-transform:uppercase;
    left: calc(50% - 3em);
    top: calc(50% - 2em);  
}
.header .nav-links a:hover{ color: #ffbc0e; }

/***************efecto ring**************************/
.header .nav-links .ring {  animation: wiggle 2s linear infinite; }
@keyframes wiggle {
  0%, 7% { transform: rotateZ(0); }
  15% { transform: rotateZ(-15deg); }
  20% { transform: rotateZ(10deg); }
  25% { transform: rotateZ(-10deg); }
  30% { transform: rotateZ(6deg); }
  35% { transform: rotateZ(-4deg); }
  40%, 100% { transform: rotateZ(0); }
}

/*************efecto flotante***********************/
@keyframes float {
	0% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(0px);
	}
	50% {
		box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);
		transform: translatey(-20px);
	}
	100% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(0px);
	}
}

/**********BUTTONS*******************/
.btn-purple{ width:115px; height:45px; color:#fff;background-color:forestgreen;border-color:forestgreen;border-radius:8px;font-size:20px;margin-left:10px;transition:transform 1s ease; }
.btn-purple:hover{ transform:scale(1.1);cursor:pointer; }
.menu { display:none; } 
.header .btn button,
.header .menu button{
    margin-left: 20px;
    font-weight: 700;
    color: white;
    padding: 9px 25px;
    background: #0063A5;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform:uppercase;
    transition: all 0.3s ease 0s;
}
.header .btn button:hover,
.header .menu button:hover{
    /*background-color: #e2f1f8;*/
    color: #ffbc0e;
    transform: scale(1.1);
}
/*Nav Mobile*/
.header a{ text-decoration: none; }
.header .overlay {
    height: 100%;
    width: 0;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(33, 49, 63, .95);
    overflow: hidden;
    transition: all 0.3s ease 0s;
}
.header .overlay .overlay-content{
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;    
}
.header .overlay a{
    padding: 15px;
    font-size: 36px;
    display: block;
    transition: all 0.3s ease 0s;
    font-weight: 700;
    text-transform:uppercase;
    color: white;
}
.header .overlay a:hover, 
.header .overlay a:focus{ color: #ffbc0e; }
.header .overlay .close{
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 65px;
}

/************border de modal*********/
.us0{
    width: 90%;
    margin-left: 5%;
    border-radius: 30px;
    box-shadow: 3px 3px 5px rgba(29, 77, 153,0.5);
    justify-content:center;
    align-items: center;
}

/********Second slider***********/
.home{
    height: 100vh;
    overflow:hidden;
    position:relative;
}
.home .slidee{
    position: absolute;
    left: 0;
    top: 90px;
    width: 100%;
    height: 89%;
    background-size: cover;
    background-position: center;
    display:none;
    padding:0 15px;
    animation: slidee 2s ease;
}
.home .slidee.active{ display:flex; }
@keyframes slidee{
    0%{ opacity:0; transform:scale(1.1); }
    100%{ opacity:1; transform:scale(1); }
}
.containerr{
    max-width:1170px;
    /*margin:auto;*/
    top:50px;
    left:100px;
}
.home .containerr{ flex-grow:1; }
.home .caption{
    width:50%;
    margin-top:30%;
    background-color:rgba(240,240,240,0.75);
    border-radius:15px;
    text-align:-webkit-center;
    padding:10px;
}
.home .caption h1{
    font-size:42px;
    color:#000000;
    margin:0;
    color:#0063A5;
}
.home .slidee.active .caption h1{
    opacity:0;
    animation: captionText .5s ease forwards;
    animation-delay:1s;
}
.home .caption p{
    font-size:18px;
    /*margin:15px 0 30px;*/
    color:#FF8303;
    font-weight:700;
}
.home .slidee.active .caption p{
    opacity:0;
    animation: captionText .5s ease forwards;
    animation-delay:1.2s;
}
.home .caption a{
    display: inline-block;
    padding:10px 30px;
    background-color:#0063A5;
    text-decoration:none;
    color:#ffffff;
    border-radius:5px;
}
.home .slidee.active .caption a{
    opacity:0;
    animation: captionText .5s ease forwards;
    animation-delay:1.4s;
}
@keyframes captionText{
    0%{ opacity:0; transform:translateX(-100px); }
    100%{ opacity:1; transform:translateX(0px); }
}
.home .controls .next{ border-radius:10px 0 0 10px; }
.home .controls .prev{ border-radius:0 10px 10px 0; }
.home .controls .prev:hover,
.home .controls .next:hover{ background-color:#ffbc0e; }
.home .controls .prev{ left:0; }
.home .controls .next{ right:0; }
.home .indicator{
    position:absolute;
    left:50%;
    bottom:30px;
    transform: translateX(-50%);
    font-weight:700;
    cursor: pointer;
}
.home .indicator div{
    display:inline-block;
    width:25px;
    height:25px;
    color:#ffffff;
    background-color:#0063A5;
    border-radius:50%;
    text-align:center;
    line-height:25px;
    margin:0 3px;
}
.home .indicator div.active{ background:#ffbc0e; }

/***************TESTIMONIALS****************/
.slide-container{
    max-width:1120px;
    width:100%;
    padding:40px 0;
}
.slide-content{
    margin:0 40px;
    overflow:hidden;
    border-radius:25px;
}
.card{
    /*width:320px;*/
    height:380px;
    border-radius:25px;
    background-color:#F0F0F0;
}
.image-content,
.card-content{
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:10px 14px;
}
.image-content{
    position:relative;
    row-gap: 5px;
    padding: 10px 0;
}
.card .overlay{
    position:absolute;
    left:0;
    top:0;
    height:100%;
    width:100%;
    background:#0063A5;
    border-radius:25px 25px 0 25px;
}
.overlay::before,
.overlay::after{
    content:'';
    position:absolute;
    right:0;
    bottom:-40px;
    height:40px;
    width:40px;
    background:#0063A5;
}
.overlay::after{
    border-radius:0 25px 0 0;
    background-color:#F0F0F0;
}
.card-image{
    position:relative;
    height:135px;
    width:135px;
    border-radius:50%;
    background:#F0F0F0;
    padding:3px;
}
.card-image .card-img{
    height:100%;
    width:100%;
    object-fit:cover;
    border-radius:50%;
    border:4px solid #0063A5;
}
.card .name{
    font-size:18px;
    font-weight:700;
    color:#333;
    z-index:1;
    text-align:-webkit-center;
}
.card .description{
    font-size:14px;
    color:#707070;
    text-align:justify;
}
.card .button{
    border:none;
    font-size:16px;
    color:#F0F0F0;
    padding:8px 16px;
    background-color:#0063A5;
    border-radius:6px;
    margin:5px;
    cursor:pointer;
    transition:all 0.3s ease;
    /*margin-top:50px;
    float:right;*/
}
.card .button a{
    text-decoration:none;
    color:white;
}
.card .button:hover{ background:#0063A5; }
.swiper-navBtn{
    color: #6E93f7;
    transition:color 0.3s ease;
    font-weight:700;
}
.swiper-navBtn:hover{
    color:#4070F4;
    transform:scale(1.1);
}
.swiper-navBtn::before,
.swiper-navBtn::after{ right:40px; }
.swiper-button-next{ right:0; }
.swiper-button-prev{ left:0; }
.swiper-pagination-bullet{ background-color:#4070F4; }
.swiper-pagination-bullet-active{ background-color:#0063A5; }

/************************************************/
.containerrr{
	display: flex;
	justify-content: center;
	height: 50vh;
    align-items: center;
    width:94%;
    margin-left:3%;
}
.cont2{
	display: flex;
	justify-content: center;
	/*height: 50vh;*/
    /*align-items: center;*/
    width:94%;
    margin-left:3%;
    overflow:hidden;
}
.containerrr .cards{
    background-color:var(--white-text);
	border-radius: 1rem;
	box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.2);
	display: flex;	
	margin: 1.5rem;
	overflow: hidden;
	/*width: 35rem;*/
	height: 19rem;
}
.cont2 .cards2 p{ text-align-last:center; }
.cont2 .cards2 img{
     max-width:80%;
     max-height:80%;
}
.containerrr .cards h6{
    opacity: 0.6;	
	letter-spacing: .1rem;
	text-transform: uppercase;
	text-align:center;
}
.containerrr .cards h2{
    letter-spacing: .1rem;
	margin: 1rem 0;
	color: var(--black-text);
	text-align:center;
}
.left-column{
    color: var(--white-text);
	padding: 1rem;
	max-width: 11rem;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.left-column h2{ color:var(--white-text); }
.left-column i{ font-size:5rem; }
.right-column{
    padding: 3px 30px;
	width: 100%;
	display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
}
.right-column p{
    font-size:.9rem;
    color:var(--black-text);
    text-align:justify;
}
.containerrr .cards .button{
    border:none;
    font-size:16px;
    color:#F0F0F0;
    padding:8px 16px;
    background-color:#0063A5;
    border-radius:6px;
    margin:5px;
    cursor:pointer;
    transition:all 0.3s ease;
    /*margin-top:50px;
    float:right;*/
}

/****************CONTACT FORM****************/
.content{
    max-width:1170px;
    margin-left:auto;
    margin-right:auto;
    padding:1.5em;
    color:#0063A5;
}
.content ul{
    list-style:none;
    padding:0;
}
.logoc{
    text-align:center;
    font-size:3em;
}
.logoc span{ color:#0063A5; }
.contact-wrapper h2,
.contact-wrapper p{ color:#112d59; }
.contact-wrapper{ box-shadow:0 0 20px 0 rgba(255,255,255,0.3); }
.contact-wrapper > * { padding:1em; }
.contact-wrapper2 h2,
.contact-wrapper2 p{ color:#112d59; }
.contact-wrapper2{ box-shadow:0 0 20px 0 rgba(255,255,255,0.3); }
.contact-wrapper2 > * { padding:1em; }
.contact-form form{
    display:grid;
    grid-template-columns: 50% 50%;
}
.contact-form2 form{
    display:grid;
    grid-template-columns: 50% 50%;
}
.contact-form form label { display: block; }
.contact-form form p {
    margin: 0;
    padding: 1em;
}
.contact-form form .block { grid-column: 1 / 3; }
.contact-form form button,
.contact-form form input,
.contact-form form textarea {
    width: 100%;
    padding: .7em;
    border: none;
    background: none;
    outline: 0;
    color: #000;
    border-bottom: 1px solid #0063A5;
}
.contact-form form button {
    background: #0063A5;
    border: 0;
    text-transform: uppercase;
    padding: 1em;
}
.contact-form form button:hover,
.contact-form form button:focus {
    background: #0063A5;
    color: #fff;
    transition: background-color 1s ease-out;
    outline: 0;
}
/* CONTACT INFO */
.contact-info, .contact-info2 { place-self:center; }
.contact-info h4, .contact-info ul, .contact-info p {
    text-align: center;
    margin: 0 0 1rem 0;
    color:#0063A5;
}

/*************************footer**********************/
footer{
    position:relative;
    width:100%;
    background:#0063A5;
    min-height:100px;
    padding: 5px 10px;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
}
footer .social_icon,
footer .menuf{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:7px 0;
    flex-wrap:wrap;
}
footer .social_icon li,
footer .menuf li{ list-style:none; }
footer .social_icon li a{
    font-size:1.5em;
    color:#fff;
    margin:0 10px;
    display:inline-block;
    transition:0.5s;
}
footer .social_icon li a:hover{ transform:translateY(-10px); color:#ff8500; }
footer .menuf li a{
    font-size:1.2em;
    color:#fff;
    margin:0 10px;
    display:inline-block;
    /*transition:0.5s;*/
    text-decoration: none;
    opacity:0.75;
}
footer .menuf li a:hover{ opacity:1; }
footer p{
    color:#fff;
    text-align:center;
    margin-top:7px;
    /*margin-bottom:40px;*/
    font-size:1em;
}

/**************************************WHATSAPP BUTTON****************************/
.whtsapp{
    background-color:#25D366;
    border:5px solid #fff;
    position:fixed;
    z-index:9;
    border-radius:50%;
    bottom:25px;
    right:25px;
    padding:10px;
    z-index:11;
    transition:ease 0.3s;
    animation:efecto 1.2s infinite;
}
.whtsapp:hover{
    transform:scale(1.1);
    transition:0.3s;
}
.whtsapp .fa-brands{
    font-size:30px;
    transition:ease 1s;
    color:#fff;
}
@keyframes efecto{
    0%{ box-shadow:0 0 0 0 rgba(0,0,0,0.85); }
    100%{ box-shadow:0 0 0 15px rgba(0,0,0,0); }
}

.contact-form span{ color:red; }
.contact-form span i{ color:seagreen; }

/****************DROPDOWN MENU******************************************/
.home section{
    position:relative;
    padding:75px 100px;
}
.home section h2{
    font-size:2.5em;
    margin-bottom:20px;
}
ul li ul.dropdown li{ display:block; }
ul li ul.dropdown{
    width:150%;
    background:rgba(255,255,255,1);
    position:absolute;
    z-index:9;
    display: none;
    padding:0 8px 0 8px;
}
ul li:hover ul.dropdown{ display:block; }

/*******************************PERSONALIZED  ODAL ***************************/
.modal{
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:#111111bd;
    display:flex;
    opacity:0;
    pointer-events:none;
    transition: opacity .6s .9s;
    --transform:translateY(-100vh);
    --transition:transform .8s;
}
.modal--show{
    opacity:1; 
    pointer-events:unset;
    transition: opacity .6s;
    --transform:translateY(0);
    --transition: transform .8s .8s;
    z-index:12;
}
.modal__title{ font-size:20px; }
.modal__paragraph{ margin-bottom:10px; }
.modal__close{
    text-decoration:none;
    color:#fff;
    background-color:#F26250;
    padding:1em 3em;
    border:1px solid;
    border-radius:6px;
    display:inline-block;
    font-weight:300;
    transition:background-color .3s;
}
.modal__close:hover{
    color:#F26250;
    background-color:#fff;
}
.modal__container{
    margin:auto;
    width:90%;
    max-width:1200px;
    max-height:90%;
    background-color:#fff;
    border-radius:6px;
    padding:3em 2.5em;
    display:grid;
    gap:1em;
    place-items:center;
    grid-auto-columns:100%;
    transform: var(--transform);
    transition: var(--transition);
    overflow-y:scroll;
}

/************************GALLERY 2*****************************/
.photos2 .gallery2{
    max-width:90%;
    margin:0 auto;
    display:grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows:250px;
    grid-gap:1rem;
    /*padding:10px 0;*/
}
.photos2 .gallery2 .box img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:10px;
    transition:1s ease-out;
}
.photos2 .gallery2 .box img:hover{
    transform:scale(1.1);
    transition: 1s ease-in;
}
.box:nth-child(1),
.box:nth-child(4),
.box:nth-child(5),
.box:nth-child(6),
.box:nth-child(9),
.box:nth-child(10),
.box:nth-child(11){ grid-column-start: span 2; }
    
@media(max-width:991px){
    .photos2 .gallery2{
        padding: 30px;
        grid-template-columns: repeat(1, 1fr);
    }
    .box:nth-child(1),
    .box:nth-child(4),
    .box:nth-child(5),
    .box:nth-child(6),
    .box:nth-child(9),
    .box:nth-child(10),
    .box:nth-child(11){
        grid-template-start: span 1;
    }
}

/*****************************SLIDER CLIENTES********************************/
@keyframes slide{
    from{ transform: translateX(0); }
    to{ transform: translateX(-100%); }
}
.logos{ 
    /*padding:30px 0;*/
    width:90%;
    margin-left:5%;
    white-space:nowrap;
    position:relative;
    height:250px;
    overflow: hidden; 
}
.logos:before,
.logos:after{
    position:absolute;
    top:0;
    width:250px;
    height:250px;
    content:"";
    z-index:2;
}
.logos:before{
    left:0;
    background: linear-gradient(to left, rgba(255,255,255,0), white);
}
.logos:after{
    right:0;
    background: linear-gradient(to right, rgba(255,255,255,0), white);
}
.logos:hover .logos-slide{
    animation-play-state:paused;
}
.logos .logos-slide{ 
    display:inline-block; 
    animation:35s slide infinite linear;
    /*height:200px;*/
}
.logos .logos-slide img{
    height:200px;
    width:250px;
    margin:0 40px;
    transition:0.3s ease-out;
}
.logos .logos-slide img:hover{
    transform:scale(1.3);
    transition:0.3s ease-in;
}

/*****************************SLIDER CERTIFICATES********************************/
@keyframes slidec{
    from{ transform: translateX(0); }
    to{ transform: translateX(-100%); }
}
.logosc{ 
    width:90%;
    margin-left:5%;
    white-space:nowrap;
    position:relative;
    height:250px;
    overflow: hidden;
    margin-bottom:120px;
}
.logosc:before,
.logosc:after{
    position:absolute;
    top:0;
    width:30px;
    height:250px;
    content:"";
    z-index:2;
}
.logosc:before{
    left:0;
    background: linear-gradient(to left, rgba(255,255,255,0), white);
}
.logosc:after{
    right:0;
    background: linear-gradient(to right, rgba(255,255,255,0), white);
}
.logosc:hover .logos-slidec{ animation-play-state:paused; }
.logosc .logos-slidec{ 
    display:inline-block; 
    animation:35s slide infinite linear;
}
.logosc .logos-slidec img{
    /*height:200px;*/
    width:250px;
    margin:0 40px;
    transition:0.3s ease-out;
    vertical-align:-webkit-baseline-middle;
}
.logosc .logos-slidec img:hover{
    transform:scale(1.3);
    transition:0.3s ease-in;
}

/***************************SERVICES******************************************/
.servcs{
    position:relative;
    display:flex;
    padding: 100px 0px;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:75px
}
.servcs .cardd{
    position:relative;
    width:270px;
    height:190px;
    /*background:#fff;*/
    transition:0.5s;
}
.servcs .cardd:hover{ height:450px; }
.servcs .cardd .lines{
    position:absolute;
    inset:0;
    overflow:hidden;
    border-radius:20px;
}
.servcs .cardd .lines::before{
    content:'';
    position:absolute;
    top:50%;
    left:50%;
    width:600px;
    height:120px;
    background:linear-gradient(transparent, #0063a5, #0063a5, #0063a5, transparent);
    animation: animate 10s linear infinite;
    animation-play-state: paused;
}
.servcs .cardd:hover .lines::before{ animation-play-state:running; }
@keyframes animate{
    0%{ transform: translate(-50%,-50%) rotate(0deg); }
    100%{ transform: translate(-50%,-50%) rotate(360deg); }
}
.servcs .cardd .lines::after{
    content:'';
    position:absolute;
    inset:5px;
    background:whitesmoke;
    border-radius:20px;
}
.servcs .cardd .imgBx{
    position:absolute;
    top:-60px;
    left:50%;
    width:125px;
    height:125px;
    transform:translateX(-50%);
    background:#000;
    transition:0.5s;
    z-index:10;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:20px;
}
.servcs .cardd:hover .imgBx{
    top:25px;
    width:180px;
    height:175px;
}
.servcs .cardd .imgBx::before{
    content:'';
    position:absolute;
    top:50%;
    left:50%;
    width:500px;
    height:150px;
    transform:translate(-50%,-50%);
    background:linear-gradient(transparent, #ff8500, #ff8500, #ff8500, transparent);
    animation: animate2 6s linear infinite;
    animation-play-state: paused;
}
.servcs .cardd:hover .imgBx::before{ animation-play-state:running; }
@keyframes animate2{
    0%{ transform: translate(-50%,-50%) rotate(360deg); }
    100%{ transform: translate(-50%,-50%) rotate(0deg); }
}
.servcs .cardd .imgBx::after{
    content:'';
    position:absolute;
    inset:5px;
    background:white;
    border-radius:20px;
}
.servcs .cardd .imgBx img{
    position:absolute;
    width:85px;
    z-index:1;
    /*filter:invert(1);*/
    opacity:0.85;
    transition:0.5s;
}
.servcs .cardd:hover .imgBx img{ opacity:1; }
.servcs .cardd .contents{
    position:absolute;
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:flex-end;
    overflow:hidden;
}
.servcs .cardd .contents .details{
    padding:60px 20px;
    text-align:center;
    width:100%;
    transition:0.5s;
    transform:translateY(145px);
}
.servcs .cardd:hover .contents .details{ transform:translateY(0px); }
.servcs .cardd .contents .details h2{
    font-size:1.45em;
    font-weight: 500;
    color:#ff8500;
    line-height:1.2em;
}
.servcs .cardd .contents .details p{
    color:#0063A5;
    opacity:0;
    transition:0.5s;
}
.servcs .cardd .contents .details a{
    display:inline-block;
    padding:8px 15px;
    background:#0063A5;
    color:white;
    margin-top:10px;
    font-weight:500;
    text-decoration:none;
    opacity:0;
    transition:0.5s;
    border-radius:8px;
}
.servcs .cardd:hover .contents .details p,
.servcs .cardd:hover .contents .details a{ opacity:1; }

/**********************Para máx hasta 768px*************************************/
@media screen and (max-width: 700px){
    .slide-content{ margin:0 10px; }
    .swiper-navBtn{ display:none; }
    .contact-form form{ display:inherit; }
    .cards h2{
    	color: var(--black-text);
    	text-align:center;
    	font-size:22px;
    	letter-spacing:0;
    }
    .right-column{
        padding: 1px 10px;
    	width: 100%;
    	display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: space-between;
    }
    .right-column p{
        text-align:justify;
        font-size:0.5rem;
    }
    .cards .button{
        border:none;
        font-size:3px;
        color:#F0F0F0;
        padding:8px 16px;
        background-color:#0063A5;
        border-radius:6px;
        margin:5px;
        cursor:pointer;
        transition:all 0.3s ease;
    }
    .left-column{
        color: var(--white-text);
    	padding: 1rem;
    	max-width: 6rem;
    	display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    .left-column h2{ font-size:1rem; }
    .left-column i{ font-size:3rem; }
    .slide-container{
        max-width:1120px;
        width:90%;
        /*padding:40px 0;*/
    }
    .card .overlay{
        position:absolute;
        left:0;
        top:0;
        height:100%;
        width:100%;
        background:#0063A5;
        border-radius:25px 25px 0 25px;
    }
    .card-image{
        position:relative;
        height:100px;
        width:100px;
        border-radius:50%;
        background:#F0F0F0;
        padding:3px;
    }
    .card .name{ font-weight:700; }
    .home .caption h1{
        font-size:20px;
        color:#0063A5;
    }
    .home .caption p{
        font-size:12px;
        color:#FF8303;
    }
    .logoc { font-size:2em; }
    .cont2 .cards2 img{
        min-width:0;
        max-height:50%;
        margin:0 !important;
    }
    .cont2 .cards2{
        max-height:20rem;
        min-width:1rem;
        margin:0 !important;
        align-items:center !important;
    }
    .cont2 {
        min-width:1rem !important;
        max-height:20rem !important;
    	overflow:hidden;
    	margin:0 !important;
    }
    .cont2 p{
        font-size:12px !important;
        padding:0 15px 15px 15px !important;
    }
    .controls{ display:none; }
    .contact-wrapper {
        display: grid;
        grid-template-columns: 33% 33% 33;
    }
    .contact-wrapper2 {
        display: grid;
        grid-template-columns: 33% 33% 33;
    }
    .contact-wrapper > * { padding: 2em; }
    .contact-wrapper2 > * { margin-left:5em; }
    .cont2 .cards2{
        background-color:var(--white-text);
    	display: flex;	
    	/*margin: 1.5rem;*/
    	/*overflow: hidden;*/
    	min-width: 20rem;
    	height: 19rem;
    }
    .nav-links, .btn { display: none; }
    .menu { display: inherit; }
    .link-list li b{ font-size:16px; }
    .link-list li i{ font-weight:700; font-style:normal !important; }
    .link-list p{
        font-size:12px;
        text-align:justify !important;
        padding:0 10px 0 10px;
    }
    .us0 p{
        padding:0 10px 25px 10px;
        font-size:16px;
        text-align:justify;
    }
    .link-list{
        list-style:none;
        justify-content:justify
    }
    .logos:before,
    .logos:after{
        position:absolute;
        top:20px;
        width:30px;
        height:170px;
        content:"";
        z-index:2;
    }
    .contacct .row div.right{
        flex-basis:100%;
    }
}

/**********************Para máx hasta 1030px*********************************/
@media (max-width: 1030px){
	.containerrr, .cont2{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		height:auto;
	}
	.cont2 .cards2{
        background-color:var(--white-text);
    	display: flex;	
    	margin: 1.5rem;
    	/*overflow: hidden;*/
    	min-width: 20rem;
    	height: 19rem;
    }
    .messageForm .halfWidth{
        flex-basis:100%;
    }
}

/*******************Para min desde 700px*************************************/
@media(min-width: 700px) {
    .contact-wrapper {
        display: grid;
        grid-template-columns: 33% 33% 33;
    }
    .contact-wrapper2 {
        display: grid;
        grid-template-columns: 33% 33% 33;
    }
    .contact-wrapper > * { padding: 2em; }
    .contact-wrapper2 > * { margin-left:5em; }
    .contact-info h4,
    .contact-info ul,
    .contact-info p { text-align: center; }
    .cont2 .cards2{
        background-color:var(--white-text);
    	display: flex;	
    	margin: 1.5rem;
    	/*overflow: hidden;*/
    	min-width: 35rem;
    	height: 19rem;
    }
    .home .controls .prev, .home .controls .next{
        position:absolute;
        top:50%;
        height:100px;
        width: 50px;
        margin-top: -20px;
        color:#ffffff;
        background-color:rgba(29, 77, 153, 0.5);
        text-align:center;
        /*line-height:40px;*/
        font-size:60px;
        cursor:pointer;
        transition: all .5s ease;
        font-weight:700;
    }
    .link-list li b{ font-size:24px; }
    .link-list li i{ font-weight:700; font-style:normal !important; }
    .link-list p{
        padding:0 20px 35px 20px;
        font-size:18px !important;
        text-align:justify;
    }
    .us0 p{
        padding:0 25px 35px 25px;
        font-size:18px;
        text-align:center;
    }
    .link-list{
        columns:3; 
        -webkit-columns:3;
        list-style:none;
        justify-content:center
    }
    .contacct .row div.right{
        flex-basis:60%;
    }
}

/*******************Para min desde 950px*************************************/
@media (min-width: 950px){
    .link-list p{
        padding:0 35px 35px 35px;
        font-size:24px !important;
        text-align:justify;
    }
    .us0 p{
        padding:0 5% 35px 5%;
        font-size:24px;
        text-align:center;
    }
    /*.contact-form{ margin-left:7%; margin-right:-7%; }
    .contact-form2{ margin-left:-7%; margin-right:7%; }*/
}

@media (max-width: 950px){
    .contacct .row{
        flex-wrap:wrap;
    }
    .contacct .row div.left, .contacct .row div.right{
        flex-basis:100%;
        margin:0%;
    }
}
/******************************FIN RESPONSIVE***********************************/
/*******************************************************************************/

/**************CONTACT FORM 3******************/
.contacct{
    width:100%;
    min-height:70vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px 8%;
}
.contacct .row{
    display:flex;
    justify-content:space-between;
    max-width:90%;
    margin-left:5%;
}
.contacct .row div.col{
    display:flex;
    flex-direction:column;
}
.contacct .row div.left{
    flex-basis:35%;
    min-width:320px;
    margin-right:60px;
}
/*.contacct .row div.right{
    flex-basis:60%;
}*/
.contacct div.left .contactTitle h2{
    position:relative;
    font-size:28px;
    color:#0063A5;
    display:inline-block;
    margin-bottom:25px;
}
.contacct div.left .contactTitle h2::before{
    content:'';
    position:absolute;
    width:50%;
    height:1px;
    background:#888;
    top:120%;
    left:0;
}
.contacct div.left .contactTitle h2::after{
    content:'';
    position:absolute;
    width:25%;
    height:3px;
    background-color:#0063A5;
    top:calc(120% - 1px);
    left:0;
}
.contacct div.left .contactTitle p{
    font-size:17px;
    color:#ff8500;
    letter-spacing:1px;
    line-height:1.2;
    padding-bottom:22px;
    text-align:justify;
}
.contacct div.left .contactInfo{
    margin-bottom:16px;
}
.contacct div.left .contactInfo .iconGroup{
    display:flex;
    align-items:center;
    margin: 25px 0px;
}
.contacct div.left .contactInfo .iconGroup .icon{
    width:45px;
    height:45px;
    border:2px solid #0063A5;
    border-radius:50%;
    margin-right:20px;
    position:relative;
    transform: translatey(0px);
}
.roww .f1{
	animation: float 6s ease-in-out infinite;
    transition:.4s ease-out;
}
.roww .f2{
	animation: float 5s ease-in-out infinite;
    transition:.3s ease-out;
}
.contacct div.left .contactInfo .iconGroup .f1{
	animation: float 6s ease-in-out infinite;
    transition:.4s ease-out;
}
.contacct div.left .contactInfo .iconGroup .f2{
	animation: float 5.5s ease-in-out infinite;
    transition:.35s ease-out;
}
.contacct div.left .contactInfo .iconGroup .f3{
	animation: float 5s ease-in-out infinite;
    transition:.3s ease-out;
}
.contacct div.left .contactInfo .iconGroup .icon:hover{
    transform:scale(1.1) translateY(-10px);
    transition:.4s ease-out;
}
.contacct div.left .contactInfo .iconGroup .icon i{
    font-size:20px;
    color:#ff8500;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
}
.contacct div.left .contactInfo .iconGroup .details span{
    display:block;
    color:#888;
    font-size:18px;
}
.contacct div.left .contactInfo .iconGroup .details a{
    text-decoration:none;
}
.contacct div.left .contactInfo .iconGroup .details span:nth-child(1){
    text-transform:uppercase;
    color:#0063A5;
}
.contacct div.left .contactInfo .iconGroup .details a span:nth-child(1){
    text-transform:none;
    color:#888;
}
.contacct div.left .socialMedia{
    display:flex;
    justify-content:flex-start;
    align-items:center;
    flex-wrap:wrap;
    margin:22px 0px 20px;
}
.contacct div.left .socialMedia a{
    width:35px;
    height:35px;
    text-decoration:none;
    text-align:center;
    margin-right:15px;
    border-radius:5px;
    background-color:#0063A5;
    transition:0.4s;
}
.contacct div.left .socialMedia a i{
    color:#ddd;
    font-size:18px;
    line-height:35px;
    border:1px solid transparent;
    transition:0.4s;
}
.contacct div.left .socialMedia a:hover{
    transform:translateY(-5px);
    background-color:#2e2e2e;
    color:#0063A5;
    border:1px solid #0063A5;
}
.contacct div.left .socialMedia a:hover i{
    color:#0063A5;
}
.contacct .row div.right .messageForm{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    padding-top:30px;
}
.contacct .row div.right .inputGroup{
    margin:18px 0px;
    position:relative;
}
.messageForm .halfWidth{
    flex-basis:48%;
}
.messageForm .fullWidth{
    flex-basis:100%;
}
.messageForm input, .messageForm textarea{
    width:100%;
    font-size:18px;
    padding:2px 0px;
    /*background-color:#2e2e2e;*/
    color:#0063A5;
    border:none;
    border-bottom:2px solid #666;
    outline:none;
}
.messageForm textarea{
    resize:none;
    height:220px;
    display:block;
}
.messageForm textarea::-webkit-scrollbar{
    width:5px;
}
.messageForm textarea::-webkit-scrollbar-track{
    background-color:#1e1e1e;
    border-radius:15px;
}
.messageForm textarea::-webkit-scrollbar-thumb{
    background-color:#0063A5;
    border-radius:15px;
}
.contacct .row div.right .inputGroup label{
    position:absolute;
    left:0;
    bottom:4px;
    color:#888;
    font-size:18px;
    transition:0.4s;
    pointer-events:none
}
.contacct .row div.right .inputGroup:nth-child(4) label{
    top:2px;
}
.contacct .row div.right .inputGroup input:focus ~ label,
.contacct .row div.right .inputGroup textarea:focus ~ label,
.contacct .row div.right .inputGroup input:valid ~ label,
.contacct .row div.right .inputGroup textarea:valid ~ label{
    transform:translateY(-40px);
    font-size:16px;
}
.inputGroup button{
    padding:8px 16px;
    font-size:18px;
    background-color:#0063A5;
    color:#ddd;
    border:1px solid transparent;
    border-radius:25px;
    outline:none;
    cursor:pointer;
    box-shadow:0px 8px 15px rgba(0,0,0,0.3);
    transition:0.4s;
    float:right;
}
.inputGroup button:hover{
    background:#2e2e2e;
    color:#0063A5;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    border:1px solid #0063A5;
}

/***********************COURSES CARDS*************************/
.containercap{
    position:relative;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    width:100%;
    height:auto;/*100vh;*/
    top:70px;
}
.productcap .productcap-card{
    z-index:1;
    background:cadetblue;
    position:relative;
    width:190px;
    height:275px;
    margin:35px 15px 25px;
    box-shadow: 3px 3px 5px rgba(29, 77, 153,0.5);
    border-radius:10px;
    transition:0.35s ease-out;
}
.productcap .productcap-card:hover{
    transform:translateY(-10px);
}
.productcap .productcap-card:before{
    content:'';
    background:rgba(255,255,255,0.1);
    position:absolute;
    display:block;
    top:0;
    left:0;
    width:50%;
    height:100%;
    border-top-left-radius:10px;
    border-bottom-left-radius:10px;
}
.productcap .productcap-card .productcap-img{
    z-index:1;
    position:absolute;
    max-width:145px;
    top:15%;
    left:50%;
    transform:translate(-50%,-50%);
}
.productcap .productcap-card .productcap-img2{
    z-index:1;
    position:absolute;
    max-width:130px;
    top:15%;
    left:50%;
    transform:translate(-50%,-50%);
}
.productcap .productcap-card .namecap{
    z-index:2;
    color:#fff;
    position:absolute;
    width:100%;
    text-align:center;
    bottom:100px;
    font-size:14px;
    font-weight:300;
    letter-spacing:0.5px;
}
.productcap .productcap-card .price{
    z-index:2;
    color:#fff;
    position:absolute;
    width:100%;
    text-align:center;
    bottom:80px;
    font-size:20px;
    font-weight:300;
}
.productcap .productcap-card .popup-btn{
    z-index:2;
    color:#fff;
    background:rgba(255, 131, 3,0.85);
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    font-size:14px;
    text-align:center;
    text-transform:uppercase;
    text-decoration:none;
    letter-spacing:1px;
    padding:5px;
    width:100px;
    border-radius:5px;
    cursor:pointer;
    transition:0.75s ease-out;
}
.productcap-card .popup-btn:hover{
    transform:translateX(-50%) scale(1.1);
}
.productcap .popup-view{
    z-index:2;
    background: slategray; /*rgba(0,99,165,1); /*rgba(255,255,255,0.5);*/
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    left:0;
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:0.5s;
}
.productcap .popup-view.active{
    opacity:1;
    visibility:visible;
}
.productcap .popup-card{
    position:relative;
    display:flex;
    width:800px;
    height:500px;
    margin:20px;
}
.productcap .popup-card .product-img{
    z-index:2;
    background:cadetblue;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    width:45%;
    height:90%;
    transform:translateY(25px);
    border-top-left-radius:10px;
    border-bottom-left-radius:10px;
}
.productcap .popup-card .product-img img{
    z-index:2;
    position:relative;
    width:450px;
    left:-50px;
}
.productcap .popup-card .info{
    z-index:2;
    background:whitesmoke;
    display:flex;
    flex-direction:column;
    width:55%;
    height:100%;
    box-sizing:border-box;
    padding:40px;
    border-radius:10px;
    box-shadow: 5px 5px 5px rgba(29, 77, 153,0.5);
}
.productcap .popup-card .close-btn{
    color:red;
    z-index:3;
    position:absolute;
    right:0;
    font-size:24px;
    margin:20px;
    cursor:pointer;
}
.productcap .popup-card .info h2{
    font-size:26px;
    line-height:24px;
    margin:5px;
    text-align:center;
    color:#0063A5;
}
.productcap .popup-card .info h2 span{
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:2px;
}
.productcap .popup-card .info p{
    font-size:16px;
    margin:5px;
}
.productcap .popup-card .info .price{
    font-size:16px;
    font-weight:700;
    margin:5px;
}
.productcap .popup-card .info .add-cart-btn{
    color:#fff;
    background:#009DD2;
    font-size:16px;
    font-weight:600;
    text-align:center;
    text-decoration:none;
    margin:10px auto;
    padding:10px 50px;
    border-radius:20px;
}
.productcap .popup-card .info .add-wish{
    color:#009DD2;
    font-size:16px;
    text-align:center;
    font-weight:600;
    text-transform:uppercase;
}
@media(max-width: 900px){
    .productcap .popup-card{
        flex-direction:column;
        width:550px;
        height:auto;
    }
    .productcap .popup-card .product-img{
        z-index:3;
        width:100%;
        height:200px;
        transform:translateY(0);
        border-bottom-left-radius:0;
        border-top-left-radius:10px;
        border-top-right-radius:10px;
    }
    .productcap .popup-card .product-img img{
        left:initial;
        max-width:60%;
    }
    .productcap .popup-card .info{
        width:100%;
        height:auto;
        /*padding:20px;*/
        border-top-left-radius:0;
        border-top-right-radius:0;
    }
    .productcap .popup-card .info h2{
        margin:20px 5px 5px 5px;
        font-size:25px;
    }
    .productcap .popup-card .info h2 span{
        font-size:10px;
    }
    .productcap .popup-card .info p{
        margin:5px;
        font-size:13px;
    }
    .productcap .popup-card .info .price{
        margin:5px;
        font-size:16px;
    }
    .productcap .popup-card .info .add-cart-btn{
        margin:5px auto;
        padding:5px 40px;
        font-size:14px;
    }
    .productcap .popup-card .info .add-wish{
        font-size:14px;
    }
    .productcap .popup-card .close-btn{
        z-index:4;
        top:200px;
    }
}

/*****************************SOME NUMBERS**************************/
.nmbrs{
    /*border:1px solid white;
    position:relative;
    width:80vw;
    transform:translate(-50%,0%);
    top:50%;
    left:50%;
    display:flex;
    justify-content:space-around;
    gap:10px;
    margin-bottom:5%;*/
    position:relative;
    display:flex;
    padding: 50px 0px 150px;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:70px
}
.contnum{
    width:35vmin;
    height:28vmin;
    /*border:1px solid orange;*/
    display:flex;
    flex-direction:column;
    justify-content:space-around;
    padding:1em 0;
    position:relative;
    font-size:16px;
    border-radius:0.5em;
    background-color:whitesmoke;
    border-bottom:10px solid #ff8500;
}
.contnum i{
    color:#ff8500;
    font-size:3.25em;
    text-align:center;
}
.contnum span.num{
    color:#0063A5;
    display:grid;
    place-items:center;
    font-weight:600;
    font-size:3em;
}
.contnum span.textn{
    color:#0063A5;
    font-size:1.25em;
    text-align:center;
    /*pad:0.7em 0;*/
    font-weight:600;
    line-height:0;
}
@media screen and (max-width:1024px){
    .nmbrs{
        width:85vw;
    }
    .contnum{
        height:26vmin;
        width:26vmin;
        font-size:12px;
    }
}
@media screen and (max-width:768px){
    .nmbrs{
        width:60vw;
        padding: 15px 0px 50px;
        flex-wrap:wrap;
        /*gap:30px;*/
        margin-left:20vw;
    }
    .contnum{
        width:calc(50%-40px);
        height:30vmin;
        font-size:14px;
    }
}
@media screen and (max-width:480px){
    .nmbrs{
        gap:15px;
    }
    .contnum{
        width:100%;
        height:25vmin;
        font-size:8px;
    }
}

/********************************+ courses******************************/
.scroll-bg{
    width:50%;
    margin-left:25%;
    margin-bottom:60px;
}
.scroll-div{
    height:500px;
    overflow:hidden;
    overflow-y:scroll;
}
.boxc{
    /*position:relative;*/
    /*min-width:350px;*/
    /*max-width:450px;*/
    /*display:grid;*/
    /*place-content:center;*/
    margin:0 15px 0 15px;
    margin-left:10%;
}
.boxc .listc{
    position:relative;
    display:flex;
    width:90%;/*400px;*/
    padding:10px;
    border-radius:10px;
    margin:5px 0;
    cursor:pointer;
    transition:0.5s;
    overflow:hidden;
    background:cadetblue;
    box-shadow:3px 3px 5px rgba(29, 77, 153,0.5);
}
/*.boxc:hover .listc{
    filter:blur(5px);
    opacity:0.25;
}*/
.boxc .listc:hover{
    box-shadow:-10px 20px 35px rgba(0,0,0,0.15);
    transform:scale(1.15);
    filter:blur(0px);
    opacity:1;
}
.boxc .listc .imgc{
    position:relative;
    width:60px;
    height:60px;
    border-radius:10px;
    overflow:hidden;
    margin-right:10px;
}
.boxc .listc .imgc img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}
.boxc .listc .contentc{
    display:flex;
    flex-direction:column;
    justify-content:center;
    color:#333;
}
.boxc .listc .contentc .rank{
    position:absolute;
    right:-50px;
    color:#fff;
    transition:0.5s;
    font-size:2em;
}
.boxc .listc .contentc .rank small{
    font-weight:500;
    opacity:0.25;
}
.boxc .listc:hover .contentc .rank{
    right:20px;
}
.boxc .listc .contentc h4{
    /*line-height:1.2em;*/
    font-size:14px;
    letter-spacing:0.5px;
    font-weight:600;
    color:white;
}
.boxc .listc .contentc p{
    font-size:0.75em;
}

/*************counter********************/
.convis{
     position:fixed;
     bottom:10px;
     z-index:99;
     right:94%;
     font-size:20px;
     background:#ff8500;
     padding:2px 10px;
     color:#fff;
     border-radius:10px;
}

/***************Scrollbar****************/
::-webkit-scrollbar{
    width:1.2em;
    overflow-x:none;
}
::-webkit-scrollbar-track{
    border-radius:0.3em;
    background:#0063A5;
    margin-block:0.25em
}
::-webkit-scrollbar-thumb{
    background:#ff9726;
    background:-webkit-linear-gradient(to right, #ff9726, #ff8500);
    background: linear-gradient(to right, #ff9726, #ff8500);
    border-radius:0.3em;
}

/**************************************************************************/
.containerpc{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    padding:40px;
}

.cardpc{
    position:relative;
    width:320px;
    height:415px;
    margin:30px;
    background:#287bff;
    border-radius:20px;
    border-bottom-left-radius:160px;
    border-bottom-right-radius:160px;
    box-shadow:0 15px 0 #ff8103, inset 0 -15px 0 rgba(255,255,255,0.25), 0 45px 0 rgba(0,0,0,0.15);
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:flex-start;
}
.cardpc2:hover{
    transform:scale(1.1);
}
.cardpc2{
    position:relative;
    width:275px;
    height:275px;
    margin:40px 55px 40px;
    background:#287bff;
    /*border-radius:20px;*/
    border-bottom-left-radius:0px;
    /*border-bottom-right-radius:200px;*/
    box-shadow:0 15px 0 #ff8103, inset 0 -15px 0 rgba(255,255,255,0.25);
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    border-radius:0 0 25px 25px;
    transition:1s ease-out;
}
.cardpc::before{
    content:'';
    position:absolute;
    top:-140px;
    left:-60%;
    width:100%;
    height:120%;
    background:linear-gradient(90deg, transparent,rgba(255,255,255,0.2));
    /*background:linear-gradient(to bottom, #ff2ae0,#645bf6);
    */
    transform:rotate(35deg);
    pointer-events:none;
    filter:blur(5px);
}
.cardpc2::before{
    content:'';
    position:absolute;
    top:-140px;
    left:-30%;
    width:100%;
    height:160%;
    background:linear-gradient(90deg, transparent,rgba(255,255,255,0.2));
    /*background:linear-gradient(to bottom, #ff2ae0,#645bf6);*/
    transform:rotate(35deg);
    pointer-events:none;
    filter:blur(5px);
}
/*.cardpc:nth-child(1){ background:linear-gradient(to bottom, #24ff72,#9a4eff); }*/
.iconpc{
    position:relative;
    width:140px;
    height:120px;
    background:#fff;
    border-bottom-left-radius:100px;
    border-bottom-right-radius:100px;
    box-shadow:0 10px 0 rgba(0,0,0,0.1), inset 0 -8px 0 #ff8103;
    z-index:10;
    display:flex;
    justify-content:center;
}
.iconpc2{
    position:relative;
    width:275px;
    height:100px;
    background:#fff;
    border-bottom-left-radius:0px;
    border-bottom-right-radius:100px;
    box-shadow:0 10px 0 rgba(0,0,0,0.1), inset 0 -14px 0 #ff8103;
    z-index:10;
    display:flex;
    /*justify-content:center;*/
}
.iconpc::before{
    content:'';
    position:absolute;
    top:0;
    left:-50px;
    width:50px;
    height:50px;
    background:transparent;
    border-top-right-radius:50px;
    box-shadow:15px -15px 0 15px #fff;
}
.iconpc2::before{
    content:'';
    position:absolute;
    top:0;
    left:-50px;
    width:50px;
    height:50px;
    background:transparent;
    border-top-right-radius:50px;
    box-shadow:15px -15px 0 15px #fff;
}
.iconpc::after{
    content:'';
    position:absolute;
    top:0;
    right:-50px;
    width:50px;
    height:50px;
    background:transparent;
    border-top-left-radius:50px;
    box-shadow:-15px -15px 0 15px #fff;
}
.iconpc2::after{
    content:'';
    position:absolute;
    top:0;
    right:-50px;
    width:90px;
    height:30px;
    background:transparent;
    border-top-left-radius:50px;
    box-shadow:-15px -15px 0 15px #fff;
}
.iconpc .fas{
    color:green;/*#0063A5*/
    position:relative;
    font-size:6em;
    z-index:11;
}
.iconpc2 .fas{
    color:green;/*#0063A5*/
    position:relative;
    font-size:5em;
    left:50px;
    z-index:11;
}
.contentpc{
    position:absolute;
    width:100%;
    padding:30px;
    padding-top:140px;
    text-align:center;
}
.contentpc2{
    position:absolute;
    width:100%;
    padding:30px;
    /*padding-top:140px;*/
    text-align:center;
}
.contentpc h2{
    font-size:1.5em;
    color:#fff;
    margin-bottom:10px;
}
.cardpc2 h2{
    font-size:1.3em !important;
    color:#fff;
    margin-bottom:10px;
    font-weight:normal;
}
.contentpc p{
    color:#081833;
    line-height:1.5em;
    font-family:sans-serif;
}

/**************Dynamic color text**********************************/
h3 > .magic, h1 > .magic {
  /*display: inline-block;*/
  position: relative;
}
h3 > .magic > .magic-text {
  animation: background-pan 3s linear infinite;
  background: linear-gradient(to right, rgb(123, 31, 162), rgb(255, 129, 3), rgb(244, 143, 177), rgb(123, 31, 162));
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /*white-space: nowrap;*/
}
h1 > .magic > .magic-text {
  animation: background-pan 3s linear infinite;
  background: linear-gradient(to right, rgb(255, 129, 3), rgb(0, 99, 165), rgb(255, 129, 3));
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
h1 > .magic > .magic-text2 {
  animation: background-pan 3s linear infinite;
  background: linear-gradient(to right, rgb(31, 130, 22), rgb(0, 99, 165), rgb(31, 130, 22));
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
@keyframes background-pan {
  from { background-position: 0% center; }
  to { background-position: -200% center; }
}

/**************************************************************************/
.labs{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    padding:50px 0;
    gap:40px 60px;
    top:20px;
    margin-bottom:90px;
}
.labs .drop{
    position:relative;
    width:350px;
    height:350px;
    box-shadow:inset 20px 20px 20px rgba(0,0,0,0.05), 25px 35px 20px rgba(0,0,0,0.05),
    25px 30px 30px rgba(0,0,0,0.05), inset -20px -20px 25px rgba(255,255,255,0.9);
    transition:0.5s ease-in-out;
    display:flex;
    justify-content:center;
    align-items:center;
}
.labs .drop:nth-child(1){ 
    border-radius:57% 43% 43% 57% / 43% 43% 57% 57%;
}
.labs .drop:nth-child(2){ 
    border-radius:61% 39% 52% 48% / 44% 59% 41% 56%;
}
.labs .drop:nth-child(3){ 
    border-radius:35% 65% 31% 69% / 57% 59% 41% 43%;
}
.labs .drop:hover{
    border-radius:50%;
}
.labs .drop:before{
    content:'';
    position:absolute;
    top:50px;
    left:85px;
    width:35px;
    height:35px;
    background:#fff;
    border-radius:50%;
    opacity:0.9;
}
.labs .drop:after{
    content:'';
    position:absolute;
    top:90px;
    left:110px;
    width:15px;
    height:15px;
    background:#fff;
    border-radius:50%;
    opacity:0.9;
}
.labs .drop .contla{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    text-align:center;
    padding:40px;
    gap:15px;
}
.labs .drop .contla h2{
    position:relative;
    width:80px;
    height:80px;
    background:#eff0f4;
    border-radius:50%;
    box-shadow:inset 2px 5px 10px rgba(0,0,0,0.1), inset -2px -5px 10px
    rgba(255,255,255,1), 15px 15px 10px rgba(0,0,0,0.05), 15px 10px 15px
    rgba(0,0,0,0.025);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:40px;
    color:var(--clr);
}
.labs .drop .contla a{
    position:relative;
    padding:10px 25px;
    background:var(--clr);
    text-decoration:none;
    color:#fff;
    border-radius:25px;
    font-weight:500;
    text-shadow:0 2px 2px rgba(0,0,0,0.25);
    opacity:0.75;
    transition:0.5s;
}
.labs .drop .contla a:hover{
    opacity:1;
}
.labs .drop .contla a::before{
    content:'';
    position:absolute;
    top:8px;
    left:50%;
    transform:translateX(-50%);
    width:65%;
    height:5px;
    border-radius:5px;
    background: rgba(255,255,255,0.5);
}
.labs .drop .contla p{
    color:#ff8103;    
    font-size:20px;
    font-weight:700;
}

/***************************************/
.boxcon{
    position:absolute;
    inset:10px;
    border:6px solid green;
    z-index:3;
    border-radius:50%;
}
.boxcon i::before{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
    pointer-events:none;
}
.boxcon h3{
    font-size:25px;
    margin-top:35%;
    text-align:-webkit-center;
}
.boxlab:hover .whyus{
 opacity:0;   
}

/***************************************/
.boxlab{
    position:relative;
    width:250px;
    height:250px;
    /*background:rgba(0,0,0,0.1); */
    border-radius:50%;
    overflow:hidden;
}
.boxlab::before{
    content:'';
    position:absolute;
    inset:-10px 140px;
    background:linear-gradient(315deg, #00ccff,#ff8103);
    transition:0.5s;
    animation:animatee 4s linear infinite;
}
.boxlab:hover::before{ inset:-20px 0px; }
@keyframes animatee{
    0%{
        transform:rotate(0deg);
    }
    0%{
        transform:rotate(360deg);
    }
}
.boxlab::after{
    content:'';
    position:absolute;
    inset:6px;
    background:white;/*#eff0f4;/*#162052;*/
    border-radius:50%;
    z-index:3;
}
.boxcon1, .boxcon2, .boxcon3, .boxcon4, .boxcon5{
    position:absolute;
    inset:10px;
    border:6px solid green;
    z-index:5;
    border-radius:50%;
}
.boxcon1 h3::before, .boxcon2 h3::before, .boxcon3 h3::before,
.boxcon2 h3::before, .boxcon5 h3::before{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
    pointer-events:none;
}
.boxcon1 h3, .boxcon2 h3, .boxcon3 h3, .boxcon4 h3, .boxcon5 h3{
    font-size:22px;
    /*margin-top:3;*/
    text-align:-webkit-center;
    transition:0.5s;
    color:#ff8103;
}
.boxcon1 h3, .boxcon3 h3, .boxcon5 h3{
    margin-top:25%;
}
.boxcon2 h3, .boxcon4 h3{
    margin-top:30%;
}
.boxcon1 h4, .boxcon2 h4, .boxcon3 h4, .boxcon4 h4, .boxcon5 h4{
    font-size:16px;
    font-style:oblique;
    color:#0063A5;
    text-align:-webkit-center;
    transition:0.5s;
    z-index:5;
    position:absolute;
    opacity:0;
}
.boxcon1 h4{ margin-top:-100px; }
.boxcon2 h4{ margin-top:-100px; }
.boxcon3 h4{ margin-top:-120px; }
.boxcon4 h4{ margin-top:-80px; }
.boxcon5 h4{ margin-top:-95px; }

.whyus{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    padding:50px 0;
    gap:40px 60px;
    /*top:20px;
    margin-bottom:90px;*/
    object-fit:cover;
}
.boxlab .boxcon1:hover h3, .boxlab .boxcon2:hover h3, .boxcon3:hover h3, .boxcon4:hover h3, .boxcon5:hover h3{
 opacity:0;
}
.boxlab .boxcon1:hover h4, .boxlab .boxcon2:hover h4, .boxcon3:hover h4, .boxcon4:hover h4, .boxcon5:hover h4{
 opacity:1;
}



/************************************************/
.columns{
    display:flex;
    /*border:1px solid #676;*/
    justify-content:center;
    flex-flow:wrap;
    margin:5px 0;
    width:80%;
    margin-left:10%;
}

.column img{
    width:85%;
}
.column p{
    font-size:1.75em;
    text-align:justify;
}

.aler{
    margin-bottom:80px;
}
.aler .rowr{
    background:#ffd900;
    padding:3.5rem;
    border-radius:0 0 100% 100%;
}
.rowr{
    display:flex;
    flex-wrap:wrap;
    margin-top:calc(-1 + 0);
    margin-right:calc(-.5 * 1.5rem);
    margin-left:calc(-.5*1.5rem);
}
.roww{
    display:flex;
    flex-wrap:wrap;
    margin-top:calc(-1 + 0);
    margin-right:calc(-.5 * 1.5rem);
    margin-left:calc(-.5*1.5rem);
}
.aler p{
    text-align:center;
    font-size:1.5em;
    font-weight:500;
    margin-top:50px;
}
.aler .roww p{
    text-align:center;
    font-size:1.25em;
    font-weight:700;
    margin-top:50px;
}
@media(min-width:768px){
    .column{
        flex:1;
        /*border:1px solid #676;*/
        margin:2px;
        padding:10px;
        /*background:#1c1c1c;*/
        transition:0.3s;
        align-self:center;
    }
    .col-md-3{
        flex:0 0 auto;
        width:25%;
    }
    .col-md-6{
        flex:0 0 auto;
        width:50%;
    }
    .col-md-9{
        flex:0 0 auto;
        width:75%;
    }
    .column ul{
        list-style-type:disc;
        font-size:1.5em;
        text-align:justify;
        line-height:2;
    }
    .aler #ali{ justify-content:right; }
    .aler #ali img{ /*width:100%;*/ }
    .aler #ali .col-md-3{ text-align-last:right; }
    .aler #alii{
        font-size:1.5rem;
        text-align:center;
        width:90%;
        margin-left:5%;
        font-weight:300;
        margin-top:30px;
    }
    .aler #marleg{
        font-size:1.5rem;
        text-align:center;
        width:90%;
        margin-left:5%;
        font-weight:300;
        font-style:oblique;
    }
    #hh1{
        text-align:center;
        font-size:2rem;
        width:90%;
        margin-left:5%;
    }
    #hh2{
        text-align:center;
        font-size:1.5rem;
        width:90%;
        margin-left:5%;
        font-weight:300;
        font-style:oblique
    }
}

@media screen and (min-width:320px) and (max-width:767px){
    .columns .colum{
        flex-basis:100%;
        margin:0 0 5px 0;
        text-align:center;
    }
    .column{
        flex:1;
        /*border:1px solid #676;*/
        margin:2px;
        padding:10px;
        /*background:#1c1c1c;*/
        transition:0.3s;
        align-self:center;
        flex-basis:100%;
    }
    .column ul{
        list-style-type:disc;
        font-size:1.1em;
        text-align:justify;
        /*line-height:1;*/
    }
    .aler #ali{ justify-content:center; }
    .aler #ali img{ width:75%; }
    .aler #ali .col-md-3{ text-align-last:center; }
    .aler #alii{
        font-size:1.1rem;
        text-align:center;
        width:98%;
        margin-left:1%;
        font-weight:300;
        margin-top:30px;
    }
    .aler #marleg{
        font-size:1.1rem;
        text-align:center;
        width:98%;
        margin-left:1%;
        font-weight:300;
        font-style:oblique;
    }
    #hh1{
        text-align:center;
        font-size:1.75rem;
        width:98%;
        margin-left:1%;
        line-height:1;
    }
    #hh2{
        text-align:center;
        font-size:1.1rem;
        width:98%;
        margin-left:1%;
        font-weight:300;
        font-style:oblique
    }
    #col6{
        padding-top:25px;
    }
}



/****************List styles******************/
.boxli{
    width:850px;
    border-bottom:20px solid #03a9f4;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.boxli ul{
    position:relative;
    background:#fff;
}
.boxli ul li{
    list-style:none;
    padding:10px;
    width:100%;
    background:#fff;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition:transform 0.5s;
}
.boxli ul li a{
    text-decoration:none;
    color:#000000;
}
.boxli ul li span a{
    text-decoration:none;
    color:#000000;
    text-transform: capitalize;
}
.boxli ul:hover li{
    opacity:0.2;
}
.boxli ul li:hover{
    transform:scale(1.1);
    z-index:100;
    background:#25bcff;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    color: #fff;
    opacity:1;
}
.boxli ul li span{
    width: 20px;
    height: 20px;
    text-align: center;
    line-height:20px;
    background: #25bcff;
    color:#fff;
    display:inline-block;
    border-radius:50%;
    margin-right:10px;
    font-size:12px;
    font-weight:600;
    transform:translateY(-2px);
}
.boxli ul li:hover span{
    background:#fff;
    color:#25bcff;
}