/*********************************/
/********** HOLI sausage *********/
/********** Last modified ********/
/********** 21/07/2025 ***********/
/*********************************/

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  font-family: 'Poppins', Open Sans, Arial, Helvetica, sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
}

.bungee {
  font-family: "Bungee Tint", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
}

.righteous {
  font-family: "Righteous", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  font-size: 600%;
}

.monoton {
  font-family: "Monoton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.fascinate {
  font-family: "Fascinate", system-ui;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  font-size: 300%;
}

.fascinate2 {
  font-family: "Fascinate Inline", system-ui;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  font-size: 600%;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** fonts ***/ /* Rubik Maps -- Monofett -- Bungee Inline -- Rubik Doodle Shadow -- Sonsie One -- Fascinate (Inline) -- Plaster */

.poppins {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
}

.righteous {
  font-family: "Righteous", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  font-size: 600%;
}

.monoton {
  font-family: "Monoton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*** Button ***/

.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    background-color: var(--bs-red);
    border-color: var(--bs-red);
    color: var(--bs-white);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

/*** Navbar ***/

.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
    padding: 11px 0 !important;
    height: 85px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 45px;
    padding: 0;
    color: var(--bs-dark);
    font-weight: 500;
    transition: .5s;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-white) !important;
	text-decoration: none !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

a.alternative-logo-text {
  visibility: hidden;
}

.bg-primary {
    background: url('../img/bg_1.jpg') center center repeat !important;
    }

.bg-primary a.alternative-logo-text:link, .bg-primary a.alternative-logo-text:active, .bg-primary a.alternative-logo-text:visited {
	visibility: visible !important; 
	color: var(--bs-white) !important;
	text-decoration: none !important;
}

.bg-primary a.alternative-logo-text:hover  {
	visibility: visible !important; 
	color: var(--bs-light) !important;
}

@media (max-width: 991.98px) {

    .navbar .navbar-nav {
        padding: 0 15px;
        background: var(--bs-primary);
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
	
	.hero-header, .hero-header::before { visibility: hidden !important; height: 0 !important; }
	.alternative-logo-text { visibility: visible !important; color: var(--bs-red) !important; }
	.container-fluid-carousel { margin-top : 0 !important; }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/*** color link to anchor ***/

.is-active {
    color: #fff !important;
    //border-bottom: 1px solid var(--bs-red);
}

#home, #club, #association, #contact {
  scroll-margin-top: 100px;
}

/*** Hero Header ***/
.hero-header {
    position: relative;
    margin-top: -85px;
    padding-top: 4rem;
    padding-bottom: 1rem;
    background: url('../img/bg_1.jpg') center center repeat;
}

.hero-header::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.hero-header .container {
    z-index: 1;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-light);
}

/*** logo + motto ***/

/* https://stackoverflow.com/questions/44603729/how-to-use-flexbox-to-layout-multiple-columns */

.grid {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.grid > div {
  box-sizing: border-box;
}

/*  for desktop  */

@media screen and (min-width: 600px) {
  .grid > .div-logo-top {
    position: absolute;
    left: 0 !important;
    top: 0;
    width: 20%;
    height: 100%;
  }
  .grid .div-motto-top,
  .grid .div-motto-bottom {
    margin-left: 25%; /*  match the width of the "div-logo-top"  */
  }
}

.logo-top {
  position: relative;
  width: 385px;
  z-index: 10;
  margin: 1px 0 0 15px;
}

/* carousel -- https://codepen.io/ocxigin/pen/PoVdwdN */

.card {
          width: 100%;
          border-radius: 10px;
        }
        
        .card img {
            border-radius: 10px 10px 0 0;
            object-fit: cover;
        }

        .btn-group i {
            color: orangered;
        }

        .btn-group button:hover {
            background-color: orange;
        }

        .btn-group button:hover i.fa-solid {
            color: black;
        }

        .card-body h2 {
            font-size: 1.2em;
            /*text-transform: capitalize;*/
        }

        /* Indicators */
        .owl-theme .owl-dots .owl-dot.active span, 
        .owl-theme .owl-dots .owl-dot:hover span {
            background:  orange;
            width: 30px;
        }

        .owl-theme .owl-dots .owl-dot span {
        width: 15px;
        height: 15px;
        background: orangered;
        transition: all .2s ease;
    }

    /* Controls */
    /* button element */
    .owl-carousel .owl-nav button.owl-next, 
    .owl-carousel .owl-nav button.owl-prev {
        position: relative;
        background-color: rgba(255, 166, 0, 0.3);
        width: 75px;
        padding: 5px 10px !important;
    }

    .owl-carousel .owl-nav button.owl-next:hover, 
    .owl-carousel .owl-nav button.owl-prev:hover {
        background-color: orange;
    }

    .owl-carousel .owl-nav button.owl-next::before, 
    .owl-carousel .owl-nav button.owl-prev::before {
        width: 100%;
        height: 100%;
        color: orangered;
        /* inset: 0;
        position: absolute; */
    }

    .owl-carousel .owl-nav button.owl-next::before {
        content:'\f061'; /*unicode for arrow-right*/
        font-family: 'Font Awesome 5 Free'; /* Font family for Font Awesome */
        font-weight: 900; /* Font weight for the solid style (fas) */ 
    }

    .owl-carousel .owl-nav button.owl-prev::before {
        content:'\f060'; /*unicode for arrow-left*/
        font-family: 'Font Awesome 5 Free'; /* Font family for Font Awesome */
        font-weight: 900; /* Font weight for the solid style (fas) */
    }

.owl-carousel .owl-nav .owl-next [aria-label="Next"], 
.owl-carousel .owl-nav .owl-prev [aria-label="Previous"]{
    visibility:hidden /*The Span element*/
}

/* End carousel */

/* links */
/*
.extlink {
    color: var(--bs-red) !important;
	text-decoration: none;
}
*/
/*** HR HOLI ***/

hr.style-holi {
    overflow: visible; /* For IE */
    padding: 0;
	margin-top: 50px !important;
    border: none;
    border-top: medium double var(--bs-red);
    color: var(--bs-red);
    text-align: center;
	width: 100%;
	margin: 0 auto;
}

hr.style-holi:after {
    content: "‴";
    display: inline-block;
    position: relative;
    top: -0.5em;
    font-size: 4em;
    padding: 0 0.25em;
    background: transparent !important; /* #fff */
}

/* https://codepen.io/vedadesigns/pen/GPxYZg */
/* === BASE HEADING === */ 

h1 {
  position: relative;
  padding: 0;
  margin: 0;
  font-family: "Righteous", sans-serif;
  font-weight: 300;
  font-size: 40px;
  color: #080808;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

h2 {
  position: relative;
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 40px;
  color: #080808;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

h1 span, h2 span {
  display: block;
  font-size: 0.5em;
  line-height: 1.3;
}

h1 em, h2 em {
  font-style: normal;
  font-weight: 600;
}

/* === HEADING STYLE #3 === */

.three h2, .three h3 {
  font-family: "Poppins", sans-serif; 
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2em;
  padding-bottom: 15px;
  position: relative;
  margin-bottom: 25px;
}
.three h2:before, .three h3:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: crimson;
}
.three h2:after, .three h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 95%;
  max-width: 425px;
  background-color: #333;
}

/* === HEADING STYLE #7 === */

.seven h1 {
text-align: center;
    font-size: 30px; font-weight: 300; color: #222; letter-spacing: 1px;
    text-transform: uppercase;
    display: grid;
    grid-template-columns: 1fr max-content 1fr;
    grid-template-rows: 27px 0;
    grid-gap: 20px;
    align-items: center;
}

.seven h1:after,.seven h1:before {
    content: " ";
    display: block;
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
    height: 5px;
	background-color: transparent;
}

/* === HEADING STYLE #9 === */

.nine h1 {
  text-align: center; font-size: 2.5rem; text-transform: uppercase; color: #222; letter-spacing: 1px;
  font-family: "Righteous", serif; font-weight: 400;
}

.nine h1 span {
  margin-top: 5px;
    font-size: 1.5rem; color: #444; word-spacing: 1px; letter-spacing: 2px;
    text-transform: uppercase; font-family: "Raleway", sans-serif; font-weight: 500;
    display: grid;
    grid-template-columns: 1fr max-content 1fr;
    grid-template-rows: 27px 0;
    grid-gap: 20px;
    align-items: center;
}

.nine h1 span:after,.nine h1 span:before {
    content: " ";
    display: block;
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
    height: 5px;
  background-color: transparent;
}

/* === HEADING STYLE #12 === */

.twelve h2 {
  font-size: 1rem; 
  font-weight: 600; 
  font-family: "Raleway", sans-serif; 
  letter-spacing: 1px; 
  width: 375px; 
  text-align: center; 
  margin: 0 0; 
  white-space: nowrap; 
  padding-bottom: 15px;
}

.twelve h2:before {
    background-color: #c50000;
    content: '';
    display: block;
    height: 3px;
    width: 75px;
    margin-bottom: 5px;
}

.twelve h2:after {
    background-color: #c50000;
    content: '';
    display: block;
    position: absolute; 
    right: 0; 
    bottom: 0;
    height: 3px;
    width: 75px;
    margin-bottom: 0.25em;
}

/* === HEADING STYLE #13 === */

.thirteen h1 {
  position: relative; font-size: 2rem; font-weight: 400; letter-spacing: 0px; text-transform: uppercase; width: 750px; text-align: center; margin: -50px auto 25px; 
  white-space: nowrap; border: 1px solid #ccc; padding: 5px 10px 5px 10px; background-color: #fff;
}

.thirteen h1:before, .thirteen h1:after {
    background-color: #c50000;
    position: absolute; 
    content: '';
    height: 10px;
    width: 10px; 
	border-radius: 50%;
    bottom: 18px;
}

.thirteen h1:before {
   left: -20px;
}

.thirteen h1:after {
   right: -20px;
}

/* <div class="thirteen"><h1>The Tale of the Stubborn Muse and the Rise of Holy Olympus</h1></div> */

/* accordion help tab */

.accordion-button { 
font-family: "Poppins", sans-serif;
background-color: #fff;
opacity: 0.8;
background-size: 10px 10px;
background-image: repeating-linear-gradient(45deg, #bb3814 0, #bb3814 1px, #fff 0, #fff 50%);
font-size: 1.35rem;
font-weight: 500;
color: #000 !important;
}

.accordion {
--bs-accordion-btn-focus-border-color: #bb3814 !important;
--bs-accordion-btn-focus-box-shadow: 0 0 0 0.15rem #bb3814 !important;
}

/* magnify pictures in modal */

.magnify i {
  color: orangered;
}

.magnify:hover {
  background-color: orange;
}

.magnify:hover i.fa-solid {
  color: black;
}

/*

https://codepen.io/chriscoyier/pen/Yppeoz


https://codepen.io/chriscoyier/pen/wvKeQOp

https://codepen.io/chriscoyier/pen/jObrVgE

https://codepen.io/chriscoyier/pen/abvbRVx

*/

/* standard list help rounded black */

ol {
  list-style: none !important;
  counter-reset: my-help-counter;
}

ol li {
  counter-increment: my-help-counter;
  margin: 0.25rem;
}

ol li::before {
  content: counter(my-help-counter);
  background: #c50000; 
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-block;
  line-height: 2rem;
  color: #fff;
  text-align: center;
  margin-right: 0.5rem;
}

/* gradient list help -- tab 1 - numbers ++ */

/* gradient list -- https://codepen.io/erinesullivan/pen/qGrdGV */

ol.gradient-list > li::before, ol.gradient-list > li {
  box-shadow: 0.25rem 0.25rem 0.6rem rgba(0, 0, 0, 0.05), 0 0.5rem 1.125rem rgba(75, 0, 0, 0.05);
}

ol.gradient-list {
  counter-reset: gradient-counter;
  list-style: none;
  margin: 1.75rem 0;
  padding-left: 1rem;
}

ol.gradient-list > li {
  background: white;
  border-radius: 0 0.5rem 0.5rem 0.5rem;
  counter-increment: gradient-counter;
  margin-top: 1rem;
  min-height: 3rem;
  padding: 1rem 1rem 1rem 3rem;
  position: relative;
}

ol.gradient-list > li::before, ol.gradient-list > li::after {
  background: linear-gradient(135deg, orangered 0%, orange 100%);
  border-radius: 1rem 1rem 0 1rem;
  content: "";
  height: 3rem;
  left: -1rem;
  overflow: hidden;
  position: absolute;
  top: -1rem;
  width: 3rem;
}

ol.gradient-list > li::before {
  align-items: flex-end;
  content: counter(gradient-counter);
  color: #1d1f20;
  display: flex;
  font: 900 1.5em/1 "righteous";
  justify-content: flex-end;
  padding: 0.125em 0.25em;
  z-index: 1;
}

ol.gradient-list > li + li {
  margin-top: 2rem;
}

/*** contact ***/

.contact-info-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.contact-info-item .border {
    position: relative;
    border-color: rgba(255, 255, 255, .2) !important;
    z-index: 1;
}

/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--bs-body);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 3px solid var(--bs-light);
}

.footer .copyright a {
    color: var(--bs-body);
}

.footer .copyright a:hover {
    color: var(--bs-red);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 3px solid var(--bs-light);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.rgpd {
    color: var(--bs-white) !important;
}

/*** Additional styles ***/

.align-right {
  text-align: right;
}

/*
.div-info { background-color: #fff3cd; }

.list-group-item li:last-child {
  padding-bottom: 15px;
}
*/
/* animated background -- https://codepen.io/chris22smith/pen/RZogMa */

.bg {
  animation:slide 3s ease-in-out infinite alternate;
  background-image: linear-gradient(-60deg, #fcc 50%, #ffc 50%);
  bottom: 0;
  left: -50%;
  opacity: .4;
  position: fixed;
  right: -50%;
  top: 0;
  z-index: -1;
}

.bg2 {
  animation-direction: alternate-reverse;
  animation-duration: 4s;
}

.bg3 {
  animation-duration: 5s;
}

@keyframes slide {
  0% {
    transform:translateX(-25%);
  }
  100% {
    transform:translateX(25%);
  }
}