:root {
    --switches-bg-color: white;
    --switches-label-color: #7D2D12;
    --switch-bg-color: #7D2D12;
    --switch-text-color: white;
}

.sub-title {
    font-size: 24px;
}

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

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

.min-height-line-two {
    min-height: 2lh;
}

.min-height-line-three {
    min-height: 3lh;
}

.min-height-line-four {
    min-height: 4lh;
}

.style-title-project {
    font-size: 18px;
    min-height: 2lh;
    font-weight: bold;
}

.style-title-publications {
    font-size: 18px;
    min-height: 5lh;
    font-weight: bold;
}

.style-sub-title-project {
    font-size: 16px;
    text-align: justify;
    min-height: 5lh;
}

.style-sub-title-project-two {
    font-size: 16px;
    text-align: justify;
    min-height: 2lh;
}

.style-sub-title-project-three {
    font-size: 16px;
    text-align: justify;
    min-height: 3lh;
}

.color-white {
    color: white;
}

.row-center {
    align-items: center;
    justify-content: center;
}

/* Clear floats after the columns */
.wrap-roles-skills {
    display: flex;
    gap: 5px;
    gap: 5px 5px;
    row-gap: 5px;
    column-gap: 10px;
    justify-content: space-around;
    flex-wrap: wrap;


}


.item {
    padding: 10px 20px;
    margin: auto;
    text-align: center;
    color: black;
    flex-grow: 8;
    border-radius: 15px 15px;
    box-shadow: 0 4px 30px rgba(125, 45, 18, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.192);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(125, 45, 18, 0.568);

}

.padding-roles-skills {
    padding-top: 20px;
    padding-bottom: 20px;
}

.vision-style {
    font-size: 20px;
    text-align: center;
}

.mission-style {
    font-size: 20px;
}

.single-box-services {
    border: 1px solid rgba(125, 45, 18);
    min-height: 210px;
    padding: 10px;
    transition: all 0.3s ease 0s;
    border-radius: 8px;
    margin-bottom: 20px;
}

.single-box-publications {
    border: 0.2px solid #F9F9F9;
    transition: all 0.3s ease 0s;
}

.title-services {
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    margin-top: 5px;
}

.sub-title-services {
    font-size: 16px;
    text-align: justify;
    margin-top: 10px;
    min-height: 4lh;
}

.background-slide {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 1;
    background-color: #7D2D12;
    width: 100%;
    height: 100%;
    opacity: 96%;
}

.padding-left-right {
    padding-left: 5px;
    padding-right: 5px;
}

.hide-element {
    display: none !important;
}

.show-element {
    display: block !important;
}

/*switch styles*/

.switches-container {
    width: 7rem;
    position: relative;
    display: flex;
    padding: 0;
    position: relative;
    background: var(--switches-bg-color);
    line-height: 2rem;
    border-radius: 1rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: -5px;
}

/* input (radio) for toggling. hidden - use labels for clicking on */
.switches-container input {
    visibility: hidden;
    position: absolute;
    top: 0;
}

/* labels for the input (radio) boxes - something to click on */
.switches-container label {
    width: 50%;
    padding: 0;
    margin: 0;
    text-align: center;
    cursor: pointer;
    color: var(--switches-label-color);
    font-weight: bold;
    font-size: 12px;
}

/* switch highlighters wrapper (sliding left / right) 
    - need wrapper to enable the even margins around the highlight box
*/
.switch-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    padding: 0.20rem;
    z-index: 3;
    transition: transform .2s cubic-bezier(.77, 0, .175, 1);
}

/* switch box highlighter */
.switch {
    border-radius: 3rem;
    background: var(--switch-bg-color);
    height: 100%;
}

.switch div {
    width: 100%;
    text-align: center;
    opacity: 0;
    display: block;
    color: var(--switch-text-color);
    transition: opacity .2s cubic-bezier(.77, 0, .175, 1) .125s;
    will-change: opacity;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 12px;
    font-weight: bold;
}

/* slide the switch box from right to left */
.switches-container input:nth-of-type(1):checked~.switch-wrapper {
    transform: translateX(0%);
}

/* slide the switch box from left to right */
.switches-container input:nth-of-type(2):checked~.switch-wrapper {
    transform: translateX(100%);
}

/* toggle the switch box labels - first checkbox:checked - show first switch div */
.switches-container input:nth-of-type(1):checked~.switch-wrapper .switch div:nth-of-type(1) {
    opacity: 1;
}

/* toggle the switch box labels - second checkbox:checked - show second switch div */
.switches-container input:nth-of-type(2):checked~.switch-wrapper .switch div:nth-of-type(2) {
    opacity: 1;
}


/*switch mobile styles*/

.switches-container-mobile {
    width: 6rem;
    position: relative;
    display: flex;
    padding: 0;
    position: relative;
    background: var(--switches-bg-color);
    line-height: 2rem;
    border-radius: 1rem;
    margin-left: auto;
    margin-right: auto;
}

/* input (radio) for toggling. hidden - use labels for clicking on */
.switches-container-mobile input {
    visibility: hidden;
    position: absolute;
    top: 0;
}

/* labels for the input (radio) boxes - something to click on */
.switches-container-mobile label {
    width: 50%;
    padding: 0;
    margin: 0;
    text-align: center;
    cursor: pointer;
    color: var(--switches-label-color);
    font-weight: bold;
    font-size: 12px;
}

/* switch highlighters wrapper (sliding left / right) 
    - need wrapper to enable the even margins around the highlight box
*/
.switch-wrapper-mobile {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 44%;
    padding: 3px;
    z-index: 3;
    transition: transform .2s cubic-bezier(.77, 0, .175, 1);
}

/* switch box highlighter */
.switch-mobile {
    border-radius: 3rem;
    background: var(--switch-bg-color);
    height: 100%;
}

.switch-mobile div {
    width: 100%;
    text-align: center;
    opacity: 0;
    display: block;
    color: var(--switch-text-color);
    transition: opacity .2s cubic-bezier(.77, 0, .175, 1) .125s;
    will-change: opacity;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 12px;
    font-weight: bold;
}

/* slide the switch box from right to left */
.switches-container-mobile input:nth-of-type(1):checked~.switch-wrapper-mobile {
    transform: translateX(0%);
}

/* slide the switch box from left to right */
.switches-container-mobile input:nth-of-type(2):checked~.switch-wrapper-mobile {
    transform: translateX(100%);
}

/* toggle the switch box labels - first checkbox:checked - show first switch div */
.switches-container-mobile input:nth-of-type(1):checked~.switch-wrapper-mobile .switch-mobile div:nth-of-type(1) {
    opacity: 1;
}

/* toggle the switch box labels - second checkbox:checked - show second switch div */
.switches-container-mobile input:nth-of-type(2):checked~.switch-wrapper-mobile .switch-mobile div:nth-of-type(2) {
    opacity: 1;
}

#img-publications {
    width: 100%;
}