/*CO0ORS*/
:root {
    --primary-font: #343a40;
    --secondary-font: #4c4637;

    --font-xs: 0.625rem;
    --font-sm: 0.75rem;
    --font-md: 0.825rem;
    --font-normal: 1rem;
    --font-lg: 1.25rem;
    --font-xl: 2rem;

    --color-dark: #0A0A0A;
    --color-grey: #151515;
    --color-light: #FBFCD4;
    --color-gold: #FFDD03;
    --color-orange: #FBC403;

    --color-pte-dark-blue: rgba(5,29,70);
    --color-pte-blue: rgba(111,118,153);
    --color-pte-light-blue: rgba(111,118,153);
}

/*HTML, BODY*/
html {
    width:100vw;
    overflow-x:hidden;
}

html, body {
    scrollbar-width: thin;
    font-family: 'Optima', sans-serif;
}

body {
    overflow-y: scroll;
    overflow-x: hidden;
    position: relative;
}

.body-bg {

}

/*MARGINS*/
.mr-1 {
    margin-right: .25rem !important;
}

.ml-1 {
    margin-left: .25rem !important;
}

/*FONT SIZE*/
.font-xs {
    font-size: var(--font-xs);
}

.font-sm {
    font-size: var(--font-sm);
}

.font-md {
    font-size: var(--font-md);
}

.font-normal {
    font-size: var(--font-normal);
}

.font-lg {
    font-size: var(--font-lg);
}

.font-xl {
    font-size: var(--font-xl);
}

/*HEADER*/
.top-menu {
    height: 2rem;
    background-color: #212529;
    color: whitesmoke;
    border-bottom: 1px solid darkred;
}

#mediev-carousel-wrapper {
    display: flex;
    justify-content: center;

    #mediev-carousel {
        width: 100vw;
        height: 40vh !important;
    }

    .mediev-carousel-item {
        width: 100%;
        height: 40vh;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        opacity: 0.65;
    }

    #mediev-carousel-1 {
        background-image: url("/images/carousel/pilgrims.jpg");
    }

    #mediev-carousel-2 {
        background-image: url("/images/carousel/university.jpg");
    }

    #mediev-carousel-3 {
        background-image: url("/images/carousel/school.jpg");
    }

    .carousel-heading {
        font-size: 3rem;
        color: #f8f9fa;
        -webkit-text-stroke: 2px black;
        font-weight: bold;
    }

    .carousel-text {
        font-size: 1.5rem;
        color: #f8f9fa;
        -webkit-text-stroke: 1.2px black;
        font-weight: bold;
    }
}

/*CONTENT*/
section.content {
    min-height: 75vh;
    display: flex;
    /*align-items: center;*/
    margin-top: 3rem;
}

/*FOOTER*/
#mediev-footer {
    /*height: 20rem;*/
    background-color: var(--color-pte-dark-blue);
    color: white;
    padding: 1rem;
    margin-top: 1rem;
    overflow: hidden;
}

.footer-univ-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid white;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: white;
    background-position: center;
}

.footer-pte-stamp {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-image: url('/images/layout/pte_stamp.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-right: 1rem;
}

.footer-pte-info {
    margin-top: 4rem;
}

.footer-pte-name {
    font-weight: bold;
    font-variant: small-caps;
    border-bottom: 2px solid white;
    text-transform: lowercase;
    font-size: var(--font-normal);
}

.footer-btk-name {
    font-weight: bold;
    font-size: var(--font-md);
}

.footer-hedaing {
    border-bottom: 1px solid white;
    margin: 0 1rem 1rem 1rem;
    font-size: var(--font-md);
}

.footer-hedaing h4 {
    font-variant: small-caps;
    /*text-decoration: underline;*/
    /*    text-shadow: .05em .05em 0 var(--bs-gray-200);*/
    color: white;
    font-size: var(--font-md);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.location-map {
    min-width: 18rem;
    min-height: 18rem;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.univ-icon-pte {
    background-image: url('/images/layout/pte_icon.png');
}

.univ-icon-de {
    background-image: url('/images/layout/de_icon.png');
}

.univ-icon-szte {
    background-image: url('/images/layout/szte_icon.png');
}

.univ-icon-elte {
    background-image: url('/images/layout/elte_icon.png');
}

.univ-icon-kre {
    background-image: url('/images/layout/kre_icon.png');
}

.univ-link {
    text-decoration: none;
    color: white;
}

.univ-link:hover {
    color: var(--color-pte-light-blue);
}

/*FORMS*/
.form-help {
    min-height: 6rem;
    background-color: #212529;
    color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.form-help h4 {
    font-variant: small-caps;
    /*text-decoration: underline;*/
    /*    text-shadow: .05em .05em 0 var(--bs-gray-200);*/
    color: white;
    font-size: var(--font-md);
    font-weight: 700;
    margin-bottom: 3rem;
}

.mediev-form-row:hover {
    background-color: var(--bs-gray-200);
    border-radius: 0.3rem;
}

.mediev-form-row {
    padding: 0.5rem;
}

.btn-pte {
    background-color: var(--color-pte-dark-blue);
    color: white;
}

.btn-pte:hover {
    background-color: var(--color-pte-light-blue);
    color: white;
}

/*TEXT*/
.text-justify {
    text-align: justify;
}

.text-bold {
    font-weight: 700;
}

.text-italic {
    font-style: italic;
}

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

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

/*CALLOUT*/
.callout + .callout {
    margin-top: -.25rem;
}

.callout {
    padding: 1.25rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    border: 1px solid #e9ecef;
    border-left-width: 1px;
    border-left-color: rgb(233, 236, 239);
    border-left-width: .25rem;
    border-radius: .25rem;
}

.callout-danger {
    border-left-color: var(--bs-danger);
}

.callout-info {
    border-left-color: var(--bs-info);
}

/*LANDING*/
.conf-proflie-bg {
    background-image: url('/images/layout/conf_profile.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 30rem;
    border-radius: .25rem;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.conf-logo-signature {
    width: 5rem;
    height: 5rem;
    background-image: url('/images/layout/conf_logo.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.page-heading h1 {
    font-variant: small-caps;
    font-weight: 700;
    text-shadow: .05em .05em 0 var(--bs-gray-200);
}

.content-shadow {
    padding: 1.5rem;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    border-radius: 0.25rem;
}

/*COMMENTS*/
.comment-text {
    text-align: justify;
    font-size: var(--font-normal);
}

.comment-footer {
    text-align: right;
    font-size: var(--font-sm);
}

.comment-user {
    font-size: var(--font-md);
    font-weight: bold;
}

.comment-date {
    font-style: italic;
}

/*MOUSE POINTERS*/
.pointer {
    cursor: pointer;
}

/*QUILL EDITOR*/
.ql-editor{
    min-height:18rem;
}

textarea.comment-edit {
    border: 0;
    width: 100%;
    height: 20rem;
    padding: 1rem;
}
