/* - - - Hover - - - */

.iconos a:hover {
    color: #fff !important;
}

.iconos img {
    max-height: 46px;
}

ul#menu-rrss li a img {
    max-height: 22px;
}

ul#menu-rrss {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    list-style: none;
    text-align: center;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
}

.nav-link-rrss {
    padding: 0.5rem 1rem;
}

/* - - - Width - - - */

.width-90 {
    width: 90%;
}

.width-80 {
    width: 80%;
}

/* - - - Display - - - */

.block {
    display: block;
}

.half {
    display: inline-block;
    width: 48%;
}

.third-small {
    display: inline-block;
    width: 33%;
}

.third-big {
    display: inline-block;
    width: 63%;
}

.right {
    float: right;
}

.left {
    float: left;
}

/* - - - Text - - - */

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

/* - - - Margin & Padding - - - */

.header-space {
    margin-top: 5rem;
}

.margin-center {
    margin-left: auto;
    margin-right: auto;
}

.padding-5 {
    padding: 5rem;
}

/* - - - Links - - - */

.no-link {
    text-decoration: none;
    color: black;
}

.no-link:hover {
    text-decoration: none;
}

/* - - - Border - - - */

.border-radius {
    border-radius: 25px;
}

/* - - - Chackbox - - - */

.checkbox-label {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 22%;
    min-width: 200px;
    display: inline-block;
}

.checkbox-label span {
    position: relative;
    border: 1px solid #792225;
    border-radius: 10px;
    transition: 0.4s;
    padding: 0 15px;
    height: 46px;
    color: #792225;
    display: flex;
    align-items: center;
    justify-content: space-around;
    -moz-column-gap: 7px;
    column-gap: 7px;
}

.checkbox-label input {
    pointer-events: none;
    display: none;
}

.checkbox-label input:checked + span {
    border-color: var(--color-green);
    color: var(--color-green);
}

.form-check-inline {
    margin-left: 0.75rem !important;
}

.form-check-label {
    margin-bottom: 0.5rem !important;
}

.form-check-input {
    margin-left: 0 !important;
}

.form-check-inline + .form-check-inline {
    margin-left: -0.75 !important;
}

/* - - - Alert - - - */

.alert {
    width: 100%;
}

/* - - - Education - - - */

.color-1 {
    --card-bg-color: #792225;
    --card-bg-color-light: #ae7a7c;
    --card-text-color-hover: #f5eee6;
    --card-shadow-color: rgba(121, 34, 37, 0.4);
}

.color-2 {
    --card-bg-color: #163866;
    --card-bg-color-light: #7387a3;
    --card-text-color-hover: #f5eee6;
    --card-shadow-color: rgba(22, 56, 102, 0.4);
}

.color-3 {
    --card-bg-color: #513269;
    --card-bg-color-light: #9684a5;
    --card-text-color-hover: #f5eee6;
    --card-shadow-color: rgba(81, 50, 105, 0.4);
}

.color-4 {
    --card-bg-color: #2a7258;
    --card-bg-color-light: #7faa9a;
    --card-text-color-hover: #f5eee6;
    --card-shadow-color: rgba(42, 114, 88, 0.4);
}

.course-card {
    width: 220px;
    height: 321px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--card-bg-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease-out;
    text-decoration: none;
}

.course-card:hover {
    transform: translateY(-5px) scale(1.005) translateZ(0);
    box-shadow: 0 24px 36px rgba(0, 0, 0, 0.11),
        0 24px 46px var(--card-shadow-color);
    text-decoration: none;
}

.course-card:hover .course-overlay {
    transform: scale(4) translateZ(0);
}

.course-card:hover .course-circle {
    border-color: var(--card-bg-color-light);
    background: var(--card-bg-color);
}

.course-card:hover .course-circle:after {
    background: var(--card-bg-color-light);
}

.course-card:hover p {
    color: var(--card-text-color-hover);
}

.course-card:active {
    transform: scale(1) translateZ(0);
    box-shadow: 0 15px 24px rgba(0, 0, 0, 0.11),
        0 15px 24px var(--card-shadow-color);
}

.course-card p {
    font-size: 17px;
    color: #4c5656;
    margin-top: 30px;
    z-index: 1000;
    transition: color 0.3s ease-out;
    text-align: center;
}

.course-circle {
    width: 131px;
    height: 131px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--card-bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-out;
}

.course-circle:after {
    content: "";
    width: 118px;
    height: 118px;
    display: block;
    position: absolute;
    background: var(--card-bg-color);
    border-radius: 50%;
    transition: opacity 0.3s ease-out;
}

.course-circle .course-number {
    z-index: 10000;
    transform: translateZ(0);
    color: var(--card-text-color-hover);
    font-size: 5rem;
}

.course-card:hover .course-circle .course-number {
    color: var(--card-bg-color);
}

.course-overlay {
    width: 118px;
    position: absolute;
    height: 118px;
    border-radius: 50%;
    background: var(--card-bg-color);
    top: 60px;
    left: 50px;
    z-index: 0;
    transition: transform 0.3s ease-out;
}

/* - - - Doc Templates - - - */

@page {
    size: 21cm 29.7cm;
    margin: 0;
    font-family: "Raleway", sans-serif;
}

.doc-content {
    max-width: 297mm;
    padding: 45pt 85.5pt 68pt 85pt;
    font-size: 11pt;
}

.watermark {
    background-size: 210mm 297mm;
    background-position: center;
}

.doc-creup-logo {
    display: inline;
    width: 185px;
}

.doc-esu-logo {
    display: inline;
    width: 140px;
    float: right;
}

.doc-title {
    padding-top: 24pt;
    color: #792225;
    font-weight: 700;
    font-size: 22pt;
    padding-bottom: 0pt;
    font-family: "Red Rose", sans-serif;
}

.doc-title-1 {
    color: #ffffff;
    padding-left: 4pt;
    font-size: 15pt;
    background-color: #792225;
    text-align: justify;
    border-color: #792225;
    border-width: 2.2pt;
    border-style: solid;
    padding-right: 4pt;
    font-weight: 700;
}

.doc-title-2 {
    color: #792225;
    font-weight: 700;
    font-size: 14pt;
    text-align: justify;
}

.doc-title-3 {
    font-size: 12pt;
    font-style: normal;
    font-weight: 700;
}

.doc-header {
    margin-right: -35pt;
    margin-left: -35pt;
}

.doc-footer {
    width: 70%;
    text-align: center;
    position: fixed;
    bottom: 0;
    color: #792225;
    padding-bottom: 35pt;
}

.doc-footer p {
    display: inline;
    text-decoration: underline;
    color: #792225;
}

.doc-text-right {
    text-align: right;
}

.doc-table {
    border: 1px solid #792225;
    border-collapse: collapse;
    width: 100%;
}

.doc-thead {
    color: white;
    background-color: #792225;
}

.doc-thead th {
    border-color: #792225;
    padding-top: 4px;
    padding-bottom: 4px;
}

.doc-tbody tr td {
    border: 1px solid #792225;
    padding: 3px 5px 3px 5px;
}

.hr-doc {
    width: 50%;
}
