@font-face {
    font-family: OpenSans-regular;
    src: url("../fonts/OpenSans/OpenSans-Regular.ttf");
}

@font-face {
    font-family: OpenSans-bold;
    src: url("../fonts/OpenSans/OpenSans-Bold.ttf");
    font-weight: bold;
}

@font-face {
    font-family: OpenSans-light;
    src: url("../fonts/OpenSans/OpenSans-Light.ttf");
    font-weight: light;
}

@font-face {
    font-family: OpenSans-italic;
    src: url("../fonts/OpenSans/OpenSans-Italic.ttf");
    
}

* {
   font-family: OpenSans-regular;
}
body {
/*  padding-top: 3rem;*/

}
.font-italic { font-family: OpenSans-italic;}
h1, h2, h3, h4, h5, h6 { font-family: OpenSans-light; }

/* defining different colors to be used  - will make adopting different color scheme easy */
:root {  
    --theme-color: #669999; /* sea green */  
    --complementary-color: #723F8E; /* magenta */
    --link-color: #723F8E; /* magenta */
}

.navbar-brand > img {
    max-width: 240px;
    max-height: 125px;
}
@media (min-width: 992px) {
/*    .navbar {
        height:70px;
    }*/
    .navbar-brand {
/*        padding-top: 20px;*/
    }    
}
@media (max-width: 991.98px) {
/*    .navbar {
        height:70px;
    }*/
    .navbar-brand {
        padding-top: 20px;
    }  
    [class*='col-'] {
        padding:7px;
    }
}

a {
    text-decoration: none;
    color: var(--link-color, --bs-success);
    font-weight: 600;
    
}

a:hover, a:active {
    color: #669999;
    text-decoration: underline;
    font-weight: 800;
    
}

.navbar-light .navbar-nav .nav-link , .dropdown-item {
    color: var(--link-color, --bs-success) !important; /*  */
}

.navbar-light .navbar-nav .nav-link.active, .dropdown-item.active, .navbar-light .navbar-nav .nav-link:hover {
    color: var( --bs-success);
    text-decoration: underline;
    font-weight: bold;
    background-color: #e9ecef;
}

/* off canvas navbar */
@media (max-width: 991.98px) {
  .offcanvas-collapse {
    position: fixed;
    top: 75px; /* Height of navbar */
    bottom: 0;
    left: 100%;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    overflow-y: auto;
    visibility: hidden;
    background-color: #ffffff;
    transition: transform .3s ease-in-out, visibility .3s ease-in-out;
  }
  .offcanvas-collapse.open {
    visibility: visible;
    transform: translateX(-100%);
  }
  
  .carousel-caption {
      padding-bottom: 0;
  }
}

/* END off canvas navbar */

/*
 * Footer
 */
.footer {
  padding: 2.5rem 0;
  color: #fff;
  text-align: center;
  background-color: var(--theme-color, --bs-success);
  border-top: 0.5rem solid var(--complementary-color, --bs-warning);
/*  
  background: url(../images/alessandro-bogliari-oDs_AxeR5g4-unsplash.jpg); 
  background-size: cover; 
  background-repeat:no-repeat; 
  background-position:center; */
}
.footer p:last-child {
  margin-bottom: 0;
}
.top_button {
    background: var(--complementary-color, --bs-warning);   
    cursor: pointer;
    padding: 5px 11px;
    bottom: 20px;
    position: fixed;
    right: 20px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 30px;
    z-index: 999;
    color: #fff;
    border-radius: 7%;
    font-family: arial,sans-serif;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid #fff;
}

legend{ float: none; padding: inherit; } /* This is required for bootstrap 5 */


@media all and (min-width: 992px) {
	.navbar{ padding-top: 0; padding-bottom: 0; }
	.navbar .has-megamenu{position:static!important;}
	.navbar .megamenu{left:0; right:0; width:400px; padding:20px;  }
	.navbar .nav-link{ padding-top:1rem; padding-bottom:1rem;  }

}

.bg-theme {
    background-color: var(--theme-color, --bs-success) !important;
    color: white;
}
.border-theme {
    border-color: var(--theme-color, --bs-success) !important;
}
.bg-complementary {
    background-color: var(--complementary-color, --bs-warning) !important;
    color: white;
}
.border-complementary {
    border-color: var(--complementary-color, --bs-warning) !important;
}

.btn-theme {
    background-color: var(--theme-color, --bs-success) !important;
    color: white;    
}
.btn-theme:hover {
    background-color: var(--complementary-color, --bs-success) !important;
    color: white;    
}




/*
*
* ==========================================
* CUSTOM UTILS CLASSES - CARD SHADOW EFFECTS
* ==========================================
*
*/


/* EFFECT 1 ========================================== */

.effect-1 {
    position: relative;
}
.effect-1::before, .effect-1::after {
    z-index: -1;
    position: absolute;
    content: "";
    bottom: 15px;
    left: 10px;
    width: 50%;
    top: 80%;
    max-width: 300px;
    background: #aaa;
    box-shadow: 0 15px 10px #aaa;
    transform: rotate(-3deg);
}
.effect-1::after {
    transform: rotate(3deg);
    right: 10px;
    left: auto;
}


/* EFFECT 2 ========================================== */
.effect-2::before{
    position: absolute;
    content: "";
    z-index: -1;
    bottom: 5px;
    left: 30px;
    right: 30px;
    top: 80%;
    background: #aaa;
    box-shadow: 0 0 25px 17px #aaa;
    border-radius: 100px/10px;
}


/* EFFECT 3 ========================================== */
.effect-3 {
    position: relative;
}

.effect-3::before {
    z-index: -1;
    position: absolute;
    content: "";
    bottom: 15px;
    left: 10px;
    width: 50%;
    top: 80%;
    max-width: 300px;
    background: #aaa;
    box-shadow: 0 15px 10px #aaa;
    transform: rotate(-3deg);
}


/* EFFECT 4 ========================================== */
.effect-4 {
    position: relative;
}

.effect-4::before {
    z-index: -1;
    position: absolute;
    content: "";
    bottom: 15px;
    right: 10px;
    left: auto;
    width: 50%;
    top: 80%;
    max-width: 300px;
    background: #aaa;
    box-shadow: 0 15px 10px #aaa;
    transform: rotate(3deg);
}


/* EFFECT 5 ========================================== */
.effect-5::before{
	position: absolute;
	content: "";
	z-index: -1;
	bottom: 20px;
	left: 8px;
	right: 8px;
	top: 20px;
	background: #aaa;
	box-shadow: 0 0 25px 10px #aaa;
	border-radius: 10px/40px;
}
.effect-5::after{
	position: absolute;
	content: "";
	z-index: -1;
	bottom: 14px;
	left: 30px;
	right: 30px;
	top: 14px;
	background: #aaa;
	box-shadow: 0 0 25px 17px #aaa;
	border-radius: 100px/10px;
}

/* EFFECT 6 ========================================== */
.effect-6 {
    position: relative;
}

.effect-6::before {
	position: absolute;
	content: "";
	z-index: -1;
	top: 26px;
	left: 12px;
	bottom: 50px;
	width: 20%;
	transform: rotate(-10deg);
	box-shadow: 0 10px 25px 10px #aaa;
}

.effect-6::after {
	position: absolute;
	content: "";
	z-index: -1;
	top: 26px;
	right: 10px;
	bottom: 50px;
	width: 20%;
	transform: rotate(8deg);
	box-shadow: 0 10px 25px 10px #aaa;
}

#players {
    position: relative;
    z-index: 99;
}

#players .card {
    margin-bottom: 2.5rem;
    border: none;
}



/*#video-text {
    position: relative;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   background: rgba(0,0,0,0.4);
}

#videoBG {
    position: fixed;
    z-index: -1;
}

@media(min-aspect-ratio:16/9){
    #videoBG {
        width: 100%;
        height: auto;
    }
}
@media(max-aspect-ratio:16/9){
    #videoBG {
        width: auto;
        height: 100%;
    }
}*/


#videoBG {
  position: relative;
  background-color: black;
  height: 75vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

#videoBG video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

#videoBG .container {
  position: relative;
  z-index: 2;
}

#videoBG .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.5;
  z-index: 1;
}

@media (pointer: coarse) and (hover: none) {
  #videoBG {
    background: url('../images/poster.png') black no-repeat center center scroll;
  }
  #videoBG video {
    display: none;
  }
}

    /* photo gallery */
    #gallery img:hover {
        cursor: pointer;
    }
    .box {
       float: left;
       position: relative;
       width: 33%;
       padding-bottom: 20%;
    }
    .boxInner {
       position: absolute;
       left: 10px;
       right: 10px;
       top: 10px;
       bottom: 10px;
       overflow: hidden;
    }
    .boxInner img {
       width: 100%;
    }
    .boxInner .titleBox {
/*       position: absolute;
       bottom: 0;
       left: 0;
       right: 0;
       margin-bottom: -50px;
       background: #000;
       background: rgba(0, 0, 0, 0.5);
       color: #FFF;
       padding: 10px;
       text-align: center;
       -webkit-transition: all 0.3s ease-out;
       -moz-transition: all 0.3s ease-out;
       -o-transition: all 0.3s ease-out;
       transition: all 0.3s ease-out;*/

        position:absolute;
        top:0;
        left:0;
        background-color:rgba(255, 255, 255, 0.58);
        color:#FFFFFF;
        text-align:center;
        z-index:2;
        width:180px;
        height:90px;
        padding:10px;
        display:none;
    }

     
 .box .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
}

.box img {
  display: block;
  position: relative;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.box:hover img {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0 0 0 1 0" /><feGaussianBlur stdDeviation="3" /></filter></svg>#filter');
  filter: grayscale(1) blur(3px);
  -webkit-filter: grayscale(1) blur(3px);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.box h2 {
  text-transform: uppercase;
  text-align: center;
  position: relative;
  font-size: 17px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.6);
}

.box .titleBox {
  display: inline-block;
  text-decoration: none;
  padding: 7px 14px;
  border: 1px solid #fff;
  margin: 50px 0 0 0;
  background-color: transparent;
}

.box .titleBox:hover {
  box-shadow: 0 0 5px #fff;
}

.box .titleBox, .box h2 {
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  opacity: 0;
  filter: alpha(opacity=0);
  color: #fff;
}

.box:hover .titleBox, .hovereffect:hover h2 {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}


    @media only screen and (max-width : 480px) {
       /* Smartphone view: 1 tile */
       .box {
          width: 100%;
          padding-bottom: 70%;
       }
       .titleBox {
            opacity: 1 !important;
       }
    }
    @media only screen and (max-width : 650px) and (min-width : 481px) {
       /* Tablet view: 2 tiles */
       .box {
          width: 50%;
          padding-bottom: 30%;
       }
        .box .titleBox {
            opacity: 1 !important;
       }
    }
    @media only screen and (max-width : 1050px) and (min-width : 651px) {
       /* Small desktop / ipad view: 3 tiles */
       .box {
          width: 33.3%;
          padding-bottom: 33.3%;
       }
    }
    @media only screen and (max-width : 1290px) and (min-width : 1051px) {
       /* Medium desktop: 4 tiles */
       .box {
          width: 25%;
          padding-bottom: 25%;
       }
    }

/* end photo gallery */

.col-gap {
  column-gap: 2rem;
}

.accordion-button {
    color: var(--theme-color, --bs-success) !important;
    background-color: transparent;   
    font-weight: 600;
    border-bottom: 2px solid var(--theme-color, --bs-success);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.accordion-button:not(.collapsed) {
    color: var(--complementary-color, --bs-warning) !important;
    background-color: transparent;    
    border-bottom: 2px solid var(--complementary-color, --bs-warning);
}
.accordion-button::after {   
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231b280a'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}

.accordion-button:not(.collapsed)::after {   
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cb9d06'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}

/*.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg%20aria-hidden%3D%22true%22%20focusable%3D%22false%22%20data-prefix%3D%22fas%22%20data-icon%3D%22caret-up%22%20role%3D%22img%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20320%20512%22%20class%3D%22svg-inline--fa%20fa-caret-up%20fa-w-10%20fa-3x%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M288.662%20352H31.338c-17.818%200-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81%2020.474-7.81%2028.284%200l128.662%20128.662c12.6%2012.599%203.676%2034.142-14.142%2034.142z%22%20class%3D%22%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
  transform: rotate(180deg);
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg%20aria-hidden%3D%22true%22%20focusable%3D%22false%22%20data-prefix%3D%22fas%22%20data-icon%3D%22caret-up%22%20role%3D%22img%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20320%20512%22%20class%3D%22svg-inline--fa%20fa-caret-up%20fa-w-10%20fa-3x%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M288.662%20352H31.338c-17.818%200-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81%2020.474-7.81%2028.284%200l128.662%20128.662c12.6%2012.599%203.676%2034.142-14.142%2034.142z%22%20class%3D%22%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
  transform: rotate(0deg);
}*/

.tab-content {
    padding: 20px;    
    font-size: 0.9rem;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: var(--complementary-color, --bs-warning) !important;
}
.nav-pills .nav-link {
    background: var(--theme-color, --bs-warning) !important;
    margin: 0 0.4em;
    color: #fff;
}
.nav-pills .nav-link:hover {
    background-color: var(--complementary-color, --bs-warning) !important;
    background: #eee;
}

/* form validation error messages */
.validate {
    color: var(--bs-danger, --bs-red);
    font-size: 0.8rem;
    padding-left: 8px;
    padding-top: 3px;
}

.breadcrumb-item + .breadcrumb-item::before {
       color: white;
}




