body {
    background-image: url("images/pattern-background-xJgVjZN.jpg");
    font-family: Lora,serif;
    font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
    color: #0c0000;
    font-family: Lora,serif;
    font-weight: 400;
    text-transform: uppercase;
}

.empty-space-25 {
    height: 25px;
}

.empty-space-50 {
    height: 50px;
}

.empty-space-75 {
    height: 75px;
}

/* Stile del background parallasse */
.background-section {
    background-image: url("images/bg-1-npszDsR.jpeg"); /* Sostituisci 'sfondo.jpg' con il percorso all'immagine di sfondo desiderata */
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    padding: 300px 0; /* Regola lo spazio superiore e inferiore a tua discrezione */
    color: #fff; /* Colore del testo sull'immagine */
    text-align: center;
}

.background-section.pages {
    padding: 200px 0;
}

.background-section.pages.school {
    background-image: url("images/bg-school-JW9U9po.jpg");
}

/* Stile del contenuto testuale */
.text-section {
    padding: 50px 0 150px 0;
}

/* Footer start */
/* Stile del footer */
.footer {
    background-color: #333; /* Colore di sfondo del footer */
    color: #b5b5b5; /* Colore del testo nel footer */
    padding: 40px 0; /* Spazio superiore e inferiore a tua discrezione */
    font-size: 15px;
    font-family: Raleway,sans-serif;
}

/* Stile del logo nel footer */
.footer-logo img {
    max-width: 100%;
    height: auto;
}

/* Stile per i link nel footer */
.footer a {
    color: #b5b5b5; /* Colore dei link nel footer */
    text-decoration: none;
    display: inline-block;   /* così rispetta l’altezza */
    line-height: 24px;       /* minimo 24px di altezza */
}

.footer-dark a i {
    color: #fff; /* Colore dei link nel footer */
}

.footer-dark a i:hover {
    color: #ff5722; /* Colore dei link nel footer */
}

/* Stile per i link nel footer al passaggio del mouse */
.footer a:hover {
    color: #ff5722; /* Colore dei link nel footer al passaggio del mouse */
}

.footer h5 {
    color: #fff;
    font-family: Lora, serif;
    font-weight: 400;
    text-transform: uppercase;
    white-space: nowrap;
    font-size: 17px;
    letter-spacing: .5px;
    line-height: 1.2em;
}

/* Stile delle icone dei social media */
.social-icons {
    list-style: none;
    padding: 0;
}

.social-icons li {
    display: inline;
    margin-right: 10px; /* Spazio tra le icone dei social media */
}

.social-icons i {
    font-size: 24px; /* Dimensione delle icone dei social media */
    color: #007bff; /* Colore delle icone dei social media (ad esempio, blu) */
}

/* Stile per le icone dei social media al passaggio del mouse */
.social-icons i:hover {
    color: #ff5722; /* Colore delle icone dei social media al passaggio del mouse (ad esempio, arancione) */
}

/* Stile della row inferiore (footer scuro) */
.footer-dark {
    background-color: #000; /* Colore di sfondo della row inferiore */
    color: #fff; /* Colore del testo nella row inferiore */
    padding: 20px 0; /* Spazio superiore e inferiore a tua discrezione */
    border-top: 1px solid #666;
}

/* Stile del copyright nel footer scuro */
.footer-dark p {
    margin: 0;
    font-size: 13px;
}

.footer-dark h5 {
    color: #fff;
}
/* Footer end */

/* Navbar start */
.navbar-brand {
    font-size: 32px;
    color: #ff5722; /* Colore del testo del logo */
}

.navbar-nav .nav-item .nav-link {
    font-size: 16px;
    color: #333; /* Colore del testo dei link */
    font-weight: 400;
    text-transform: uppercase;
    padding-left: 40px;
    padding-right: 40px;
}

.navbar-nav .nav-item .nav-link:hover {
    color: #ff5722; /* Colore del testo dei link al passaggio del mouse */
}

.navbar-toggler {
    border: 0px;
    font-size: 15px;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar {
    background-color: #fff; /* Colore di sfondo della navbar */
    width: 100%;
    position: fixed;
    z-index: 10;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
    padding: 20px;
}

.navbar__logo {
    width: 100px;
}
/* Navbar end */

/* Homepage photogrid */
.photo-grid {
    background-color: #fff;
    padding: 0;
    display: grid;
    grid-gap: 5px;
    grid-template-columns: minmax(100px, max-content) repeat(auto-fill, 200px) 25%;
}

.photo-box {
    overflow: hidden;
}

.photo-grid img:hover {
    -webkit-transition: all 21s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    -o-transition: al 1s ease-in-out;
    transition: all 1s ease-in-out;
    transform:  scale(1.1) ;
    -webkit-transform:scale(1.1) ;
    -moz-transform:  scale(1.1) ;
    -o-transform:  scale(1.1)  ;
    -ms-transform: scale(1.1)  ;
}

.photo-large {
    border: 2px solid #fff;
    padding: 5px;
    background-color: #fff;
    text-align: center;
    grid-column: span 2;
    grid-row: span 2;
}

.photo-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-small {
    border: 2px solid #fff;
    padding: 10px;
    background-color: #fff;
    text-align: center;
}

.photo-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Homepage photogrid end */

/* Homepage instructors */
.instructors {
    padding: 50px 0;
}

.instructor-large {
    padding: 20px;
    text-align: center;
}

.instructor-large img {
    max-width: 200px;
    height: auto;
    border-radius: 50%;
}

.instructor-large h4 {
    margin-top: 20px;
    font-size: 24px;
    color: #333;
}

.instructor-large p {
    font-size: 16px;
    color: #666;
}

/* Homepage instructors end */

/* ==========================================================================
   Section Title shortcode styles - begin
   ========================================================================== */

.section-title-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    box-sizing: border-box;
}

.section-title-holder .st-title {
    display: block;
    margin: 0;
}

.section-title-holder .st-title .st-title-bold {
    font-weight: 700;
}

.section-title-holder .st-title .st-title-light {
    font-weight: 300;
}

.section-title-holder.st-subtitle-pos-under .st-subtitle {
    margin: 5px 0 0;
}

.section-title-holder.st-subtitle-pos-above .st-subtitle {
    margin: 0 0 5px;
}

.section-title-holder .separator-holder {
    margin-top: 18px;
}

.section-title-holder .st-text {
    display: block;
    margin: 14px 0 0;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.separator {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    border-bottom: 1px solid #f1b847;
    width: 85px;
    border-bottom-width: 2px;
}

/* ==========================================================================
   Section Title shortcode styles - end
   ========================================================================== */

.hp-image-grid-desc {
    font-family: Raleway, sans-serif;
    font-size: 15px;
    line-height: 23px;
    font-weight: 400;
    color: #656565;
}

.hp-image-grid-h5 {
    margin: 20px 0;
}

.contacts-info-list {
    color: #656565;
}

.contacts-info-descr {
    color: #656565;
}

.logo-fise {
    max-width: 60px;
    text-align: center;
}

.custom-btn-link {
    color: #656565;
    font-weight: 700;
    letter-spacing: .13em;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
}

.custom-btn-link:hover {
    color: #f1b847;
    text-decoration: none;
}

.more-info-school-link {
    margin-top: 50px;
}

.route-active:after {
    content: '';
    width: 30px;
    height: 1px;
    background-color: #f1b847;
    display: block;
    left: 0;
    right: 0;
    margin: auto;
}

.pre-footer {
    background-image: url("images/pre-footer-background-x_zrjM-.jpg");
    padding-top: 130px;
    padding-bottom: 130px;
}