/* Imports */
/* @import url('https://fonts.googleapis.com/css?family=Almarai&display=swap'); */
/* @import url('https://fonts.googleapis.com/css?family=Open+Sans'); */
/* @import url('https://fonts.googleapis.com/css?family=Roboto'); */

/*
 * Variables
 */
:root {
  --primary-color: #172982;
  --primary-color-contrast: #fff;
  --primary-color-shade: #172982;
  --primary-color-tint: #273890;

  --secondary-color: #F0F0F0;
  --secondary-color-contrast: #fff;
  --secondary-color-shade: ##F0F0F0;
  --secondary-color-tint: #3A4A9D;

  --background-color: white;
  --text-color: #0F0F0F;
  --link-text-color: #172982;
}

/*
 * Essentials
 */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Montserat', 'open-sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  background-color: var(--background-color);
}


h1, h2, h3, .my-env h1, .my-env h2, .my-env h3 {
  font-family: 'Montserat', sans-serif;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  /* font-weight: 400; */
}

h4, h5, h6, .my-env h4, .my-env h5, .my-env h6 {
  font-family: 'Montserat', sans-serif;
  color: var(--primary-color);
  font-weight: 600;
  /* font-weight: 400; */
}

/* h1, .my-env h1 {
  font-size: 40px;
}

h3, .my-env h3 {
  font-size: 1.65rem;
} */

a, .my-env a {
  color: var(--link-text-color);
  text-decoration: none;
}

a:hover, .my-env a:hover {
  text-decoration: underline;
  color: var(--link-text-color);
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: var(--text-color);
  text-decoration: none;
}


/*
 * Bootstrap overwrites
 */

.btn,
.my-env .btn {
  border-radius: 5px !important;
  text-transform: uppercase;
  text-decoration: none;
}

.btn-lg,
.my-env .btn-lg {
  border-radius: 10px !important;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

.btn-primary, .my-env .btn-primary {
  background-color: var(--primary-color);
  border: 0;
  color: var(--primary-color-contrast);
}

.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:focus,
.btn-primary:hover,
.my-env .btn-primary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color-contrast); 
}

.btn-secondary, .my-env .btn-secondary {
  background-color: var(--secondary-color);
  border: 0;
  color: var(--primary-color);
}

.btn-secondary:active,
.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:focus,
.btn-secondary:hover,
.my-env .btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color-contrast);
}

/*
 * Bootstrap extensions
 */
.align-justify {
  text-align: justify;
}

/*
 * Basics
 */
.website-header {
  border-bottom: solid 1px #E0E0E0;
}

.website-header .btn-primary {
  width: 150px;
}

.website-header-logo {
  max-height: 110px;
  margin-top: 15px;
}


.navbar-collapse {
  padding: 0.5rem;
  background-color: white;
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--primary-color-contrast);
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
}
.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
  color: var(--primary-color-contrast);
}


.foys-footer {
  background: var(--primary-color);
  color: var(--primary-color-contrast);
  max-width: none;
}

.foys-footer a {
  color: var(--primary-color-contrast);
}

/*
 * 👇 INSERT CUSTOM CSS FOR ALL SCREEN SIZES BELOW 👇
 */
.sperwers-logo {
  position: absolute;
  background: var(--primary-color);
  padding: 20px;
  border-radius: 0px 0px 12px 12px;
  top: 0;
  max-height: clamp(80px, 8vw, 110px);
}

.navbar-dark .navbar-nav .nav-link { /* overwriting default css */
  color: var(--primary-color);
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
  color: var(--primary-color-tint);
}

.website-header-name {
  display: none;
}
.red {
  background-color: var(--primary-color);
  color: var(--primary-color-contrast);
}

.red a, .red h1, .red h2, .red h3, .red h4, .red h5, .red h6 {
  color: var(--primary-color-contrast);
}

/* news items */
.news-item.border,
.calendar-event.border {
  border: 0 !important;
}

.news-image-container {
  width: 100%;
}

.news-item-image-div {
  min-height: 150px;
}

.news-content-container {
  width: 100%;
}

.news-item-image-div {
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 200px;
  transition: all 1s;
}

.news-item-image-div:hover {
  transform: scale(0.9);
}

.news-title {
  padding-top: 0.5rem;
}

.news-title a {
  font-family: "Novecento sans Bold", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1rem;
  text-decoration: none;
  color: var(--primary-color);
}

.news-title a:hover {
  color: #0F0F0F;
}

.news-date {
  font-size: 0.8rem;
}

.news-short-description-content {
  text-align: justify !important;
}

.news-read-more {
  margin-top: 1rem;
  text-align: left;
}

.news-read-more a {
  color: var(--link-text-color);
  font-size: 1rem;
}

.news-body img {
  max-width: 100%;
  height: auto;
}

/* end news items */

.calendar-event-date,
.calendar-event-time {
  display: inline;
  font-family: "Novecento sans Bold", sans-serif;
  font-weight: 900;
  font-size: 1rem;
  text-decoration: none;
  color: var(--primary-color);
}

.calendar-event-date:first-letter {
  text-transform: capitalize;
}

.calendar-event-time::before {
  content: "van ";
}

.calendar-event-title {
  font-size: 0.8rem;
}

.website-calendar-events .lead {
  display: none;
}

.big-date-block {
  background-color: var(--primary-color);
  color: #E0E0E0;
  text-align: center;
  text-transform: uppercase;
  padding: 0.5rem;
}

.big-date-day, .big-date-month {
  font-size: 35px;
  line-height: 35px;
  margin-bottom: 0;
}

.link a {
  color: #ffffff;
  text-decoration: none;
}
.link a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.link2 a {
  color: #ffffff;
  text-decoration: none;
}
.link2 a:hover {
  color: #bebebe;
  text-decoration: none;
}

.link3 a {
  color: #bebebe;
  text-decoration: none;
}
.link3 a:hover {
  color: #000000;
  text-decoration: none;
}

.link4 a {
  color: #ffffff;
  text-decoration: none;
}
.link4 a:hover {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
}
.spnsr-logo-image {
  max-width: 300px;
  max-height: 200px;
}
.website-sponsors-list .lead {
  display: none;
}

/* Home images */
.home-images-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.home-images-bar a {
  text-decoration: none;
  position: relative;
}

.home-images-bar a img {
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.home-images-bar a span {
  position: relative;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #39428f;
  color: white;
  text-transform: uppercase;
  text-align: center;
  padding: 8px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.iframe-container {
    width:100%;
    height:80vh;
}

.iframe-container iframe {
    width:100%;
    height:100%;
}

.rounded-corners {
  border-radius: 100px;
}

/*
 * DESKTOP
 */
@media all and (min-width: 992px) {
  /* BASICS */


  /*
   * 👇 CUSTOM CSS FOR DESKTOP ONLY 👇
   */
  .page-top-image {
    display: block;
    height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }

  .page-top-image h2 {
    color: #FFFFFF;
    margin-top: 175px;
    text-align: center;
    font-size: clamp(48px, 10vw, 60px);
  }

  .page-top-image-second {
    display: block;
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }

  .page-top-image-second h2 {
    color: #FFFFFF;
    margin-top: 125px;
    text-align: center;
    font-size: clamp(48px, 10vw, 60px);
  }

  .navbar {
    padding: 0;
    justify-content: flex-end;
  }
  .navbar .nav-item .dropdown-menu {
    display: none;
    border-radius: 0 !important;
  }
  .navbar .nav-item .dropdown-large {
    padding: 20px;
  }
  .navbar .nav-item .nav-link {
    font-size: 0.9rem;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }
  .navbar .nav-item:hover .dropdown-menu {
    display: block;
  }
  .navbar .nav-item .dropdown-menu {
    margin-top: 0;
  }
  .navbar-collapse {
    justify-content: center;
    text-align: center;
    background-color: transparent;
  }

  .navbar-brand {
    padding-top: 0;
    margin-top: 10px;
  }

  .navbar .nav-item .dropdown-large {
    min-width: 480px;
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 100% !important;
  }
  /* end navbar */

}

/*
 * MOBILE AND TABLETS
 */
@media all and (max-width: 992px) {
  /* BASICS */
  .page-top-image {
    display: block;
    height: 200px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  
	/* NAVBAR START */
	.mobile-offcanvas {
	  display: block;
	  position: fixed;
	  top: 0;
	  left: 0;
	  height: 100%;
	  z-index: 1200;
	  width: 100%;
	  overflow-y: auto;
	
		visibility: hidden;
		transform: translateX(-100%);
	  transition: visibility .2s ease-in-out, transform .2s ease-in-out;
	  
		background-color: #fff;
		border-radius: 0;
	}
	
	.mobile-offcanvas.show {
		visibility: visible;
		transform: translateX(0);
	}
	  
	.navbar {
	  padding: 0;
	
		.offcanvas-header {
		  padding: 8px;
		}
	
		ul.navbar-nav li.nav-item {
		  text-align: center;
		}
	}
	
	.website-header {
	  /* main menu */
	  .navbar-toggler {
	    display: block;
	    margin-left: auto;
	  }
	
	  .navbar-toggler-icon {
	    background-image: url("data:image/svg+xml;charset=utf8,<svg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'><path stroke='rgba(0,72,153,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/></svg>");
	  }

    .nav-item .show>.nav-link {
      /* overwriting _navbar.scss to avoid link turning white when shown */
      color: var(--primary-color) !important;
    }

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

    .dropdown-large .row {
      gap: 16px;

      .col {
        display: flex;
        flex-direction: column;
        text-align: center;
      }
    }
  }

    
	/* NAVBAR END */

  

  

  /*
   * 👇 CUSTOM CSS FOR MOBILE AND TABLETS 👇
   */
}