<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
	box-sizing: border-box;
}

.caja_principal_catedra {
display: flex;
    align-items: center;
    font-family: Montserrat;
    width: 100%;
    border-bottom: #1d0944c9 3px solid;
    /* height: 92vh; */
    /* -webkit-box-shadow: 3px 13px 14px -9px rgba(0,0,0,0.27); */
    -moz-box-shadow: 3px 13px 14px -9px rgba(0,0,0,0.27);
    /* box-shadow: 3px 13px 14px -9px rgba(0,0,0,0.27); */
    margin: auto;

}


.outer {
	position: relative;
	background: #fff;
	height: 350px;
	width: 100%; 
	overflow: hidden;
	display: flex;
	align-items: center;
}

.outer img {
	position: absolute;
	top: 11px;
	right: -20px;
	z-index: 0;
	animation-delay: 0.5s;
}

.content {
	animation-delay: 0.3s;
	position: absolute;
	
	z-index: 3
	
}

.outer h1 {
    color: #1d0944c9;
    text-transform: uppercase;    font-size: 21px;
}

.outer p {
width: 520px;
	font-size: 13px;
	line-height: 1.4;
	color: #434141;
	margin: 20px 0;
	
}


.bg {
      display: inline-block;
    color: #fff;
    /* font-weight: bold; */
    background:#673ab7;
    padding: 5px 10px;
    /* border-radius: 50px; */
    font-size: 12px;
}
.button_catedra {
	width: fit-content;
	height: fit-content;
	margin-top: 10px;
	
	
	
}

.button_catedra a {
	display: inline-block;
	overflow: hidden;
	position: relative;
	font-size: 11px;
	color: #111;
	text-decoration: none;
	padding: 10px 15px;
	border: 1px solid #aaa;
	font-weight: bold;
	
	
}

.button_catedra a:after{
	content: "";
	position: absolute;
	top: 0;
	right: -10px;
	width: 0%;
	background: #4c3d6ba3;
	height: 100%;
	z-index: -1;
	transition: width 0.3s ease-in-out;
	transform: skew(-25deg);
	transform-origin: right;
}

.button_catedra a:hover:after {
	width: 150%;
	left: -10px;
	transform-origin: left;
	
}

.button_catedra a:hover {
	color: #fff;
	transition: all 0.5s ease;
}


.button_catedra a:nth-of-type(1) {
	border-radius: 50px 0 0 50px;
	border-right: none;
}

.button_catedra a:nth-of-type(3) {
	border-radius: 0px 50px 50px 0;
}

.cart-icon {
	padding-right: 8px;
	
}

.footer {
	position: absolute;
	bottom: 0;
	right: 0;
}

.outer .mobile { display:none;}




@media (max-width: 480px) { 
.outer .laptop {
 display:none;}

 .button_catedra a { padding: 12px 12px ;}

.outer p {
    width: 100%;}

.button_catedra {
 
    margin: auto;
    width: 100%;}

.outer .mobile {

display: block;
    float: left;
    left: -6px;
    top: -8px;
    position: relative;
}

.bg {padding: 3px 7px;}

}</pre></body></html>