900
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');

@font-face {
    font-family: 'Asap Condensed';
    font-weight: 900;
    src: url(fonts/asapcondensed-black-webfont.woff2) format('woff2'),
         url(fonts/asapcondensed-black-webfont.woff ) format('woff');
}

@font-face {
    font-family: 'Asap Condensed';
    font-weight: 300;
    src: url(fonts/asapcondensed-regular-webfont.woff2) format('woff2'),
         url(fonts/asapcondensed-regular-webfont.woff ) format('woff');
}

@font-face {
    font-family: 'Asap Condensed';
    font-weight: 300;
    font-style: Italic;
    src: url(fonts/asapcondensed-italic-webfont.woff2) format('woff2'),
         url(fonts/asapcondensed-italic-webfont.woff ) format('woff');

}



:root{
  --primary-color: #d72626;
  --second-red: #d7262639;
  --secondary-color: #1a2333;
  --hover-color: #1a2333c7;
  --accent-color: #0071FF;
  --text-color: #ffffff;
  --BG1:#1a233362;
  --BG1Transparent:#ffffff00;
  --BG2:#1a2333c9;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--text-color);
  scroll-behavior: smooth; /*For bookmark links*/
}

body{
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: white;
}

main{
  padding: min(.2em, 7%);
}

main p{
  margin-top: .15em;
}

main h1{
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}


nav{
  background-color: var(--secondary-color);
  position: fixed;
  top: 0;
  right: -100%;
  height: auto;
  width: min(15em, 100%);
  z-index: 10;
  transition: right 300ms ease-in-out;
}

nav.show{
  display: block;
  right: 0;
}

nav.show ~ #overlay{
    display: block;
}
nav ul{
  width: 100%;
  flex-direction: column; 
   text-transform: uppercase;
   background-color: hsla(0, 0%, 0%, 0.118); 
   color: white;
   list-style: none;
   display: flex;
}
nav .home-li{
 
  text-transform: uppercase;
}
nav li{
  display: flex;
 
}
nav a{
  width: 100%;
  display: flex;
  text-decoration: none;
  color: var(--text-color);
  padding: 1.5em 2em;
  transition: background-color 150ms ease;
}
nav a:hover{
  background-color: var(--hover-color);
}

 nav a.active-link{
    border-bottom: none;
  }

  

/* nav.style-navicon {
    display: flex;
  
    position: static;   
    justify-content: center;
    text-align: center;
    margin: auto;
    height:auto;
    width: 100%;
    border: none;
    transition:none;
  }
 nav.style-navicon ul{
  flex-direction: row;
  width: 100%;
}

nav.style-navicon li{
  width 3em:
}

nav a.accent-link{
 /*-- background-color: var(--accent-color)
};--*/


#open-sidebar-button{
  display: block;
  position: absolute;
  top: 100px;
  right: 0px;
  background: var(--secondary-color);
  width: -60%; 
  text-align: right;
  border: none;
  padding: 0em 1rem 0em 1rem;
  margin-left: auto;
  cursor: pointer;
}

#close-sidebar-button{
  display: block;
  background: var(--secondary-color);
  width: 10%; 
  text-align: right;
  border: none;
  padding-top: 1em;
  padding-right: 4em;
  margin-left: auto;
  cursor: pointer;
}
#overlay{
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  inset: 0;
  z-index: 9;
  display: none;
}
.skip-link {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1000;
  background-color: var(--accent-color); 
  color: #ffffff; 
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}

.skip-link:focus {
  opacity: 1; 
  pointer-events: auto; 
  outline: 3px solid #ffffff; 
}
/*
.myLogo{
    padding: 10px 10px 10px 30px;
    background-color: white;
    width: 100%;
    display: block;
}
*/
.sticky-header {
  background-color: var(--secondary-color);
    position: sticky; /* Enables the sticky behavior */
    top: 0;    
    z-index: 990;/* Sticks the element at 0 pixels from the top of the viewport */
}   

.myLogo{
    padding: 37px 37px 37px 37px;
    background-color: var(--secondary-color);
    width: 100%;
    display: flex;
    align-items: center;
    
  } 

 .myLogo img{
    margin-right: 20px;
 }

 .myLogo p{
    padding-top: 15px;
    font-family: "Guildhall", sans-serif;
    font-weight: 500;
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--text-color);
    text-transform: uppercase;
  }

 h1 {
    font-family: 'Asap Condensed';
    font-weight: 300;
    font-size: 35px;
    text-align: center;
 	  text-transform: uppercase;
	  margin: .2em;
    background-color: var(--primary-color);
    padding: .2em .1em .1em .1em;
    color: white;
  
}
h2{
  font-family: "guildhall", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight:300;
  padding: .1em;
}


h3 {
	  font-size: .75rem;
	  text-transform: uppercase;
    line-height: 1.1em;
	  font-weight: 900;
    padding: 0;
   
}

h4 {
	font-size: .65rem;
	font-weight: 300;
    font-style: Italic;
	/*margin-bottom: 1px;*/
  padding:.1em;
}

h6 {
  font-size: 1rem;
  font-weight: 300;
  padding: .5em;

}
    
 p {
	  font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px;
	  margin-bottom: .5em;
}
   
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr));
    gap: .5rem;
    padding: .25em .5em .25em .5em;
}

.item {
    
    Position: relative;
    z-index: 10;
    height: 11em;
    padding: .1em;
    background-color: var(--second-red);
    color: black;
    text-align: center;
    border-radius: 1rem;
    font-size: 1rem;
    justify-items: center;
    justify-content: center;
   
}

    
.item img{
  width: 100%;
  height: 4.5rem;
  object-fit: scale-down;
  vertical-align: top;
  margin-top: 0;
  border-radius: 1rem;
  padding:  .3em;    
 }

.button2 {
  position: absolute;
  bottom: 1em;
  left: 1em;
  right: 1em;
  display: inline-block;
  padding: .2em .3em .2em .3em;
  background-color: var(--primary-color);
  color: white;
  font-size: .75em;
  font-weight: 900;
  text-decoration: none;
  border-radius: .5em;
  box-shadow: .24em .25em .25em rgba(0, 0, 0, 1.0);
}
    
.col {
	width: 100%;
}


.row:before, .row:after {
	content: "";
	display: table;
    
}

.row:after {
	clear: both;
}

.fa{
   padding: .2em;
}

.fa:hover {
  text-decoration: none;
  padding: 30px;
  background-color: var(--hover-color);
}

.info-box-tan {
  width: 100%;
  height: auto;
 	background-color: var(--BG1);
  color: var(--text-color);
	padding: 1em;
	text-align: center;
}

.info-box-dark {
  height: auto;
  width: 100%;
	background-color: var(--BG2);
	color: #FFFFFF;
	padding:  15px;
	text-align: center;
}

.info-box-dark a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 20px;
}
    
.moveCloser {
  transform: translateY(-4rem);
}
    
.style-nav ul {
	list-style-type: none;
 
    }

.style-nav ul li a {
	text-decoration: none;
  font-size: 35px;
	color: #2F322A;
	text-align: center;
	display: block;
	text-transform: uppercase;
	padding: 8px;
}

 
.style-navicon {
   background-color: Transparent;
  display: flex;
  position: static;
  justify-content: center;
  text-align: center;
  margin:auto;
  height: auto;
  width: 100%;
  border none;
  transition: none;
  /*gap: 10 px;*/
  /*background-color: var(--BG1);*/
}

.style-navicon ul {

  display: flex;
  flex-direction: row;
  width: 100%;
  /*height: 100%;*/
	list-style-type: none;
   justify-content: center;
  text-align: center;
  /*padding: .1em;*/
  gap: 10 px;
  /*margin: auto;*/
}

  .style-navicon ul li {
    width: 5em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    
}

.style-navicon ul li a{
   color: var(--text-color);
    font-size: 2.5rem;
    width: 10px;
    height: 1rem;
    margin: .5em;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
   
}
.col-md-one-half {
      width: 100%;
}

.special-font{
    font-family: 'Inter', sans-serif;
}
/*
.menu-line{
  display: block;
  width: 100%;
  height: 55px;
  background-color: var(--secondary-color);
}*/

.footer-text{
  font-size: .5rem;
  line-height: 1.5em;
  text-align: left;
  padding: 1em;
  color: var(--secondary-color);
}
    
 /*Tablet View |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/   
    
@media screen and (min-width: 700px) {
  
  #open-sidebar-button, #close-sidebar-button{
    display: none;
  }
     
nav{
  position:fixed;
  top: 100px;
  left: 135px;
  /*display: flex;
  flex-direction: row;*/
}

    nav a   {  
      font-size: .75rem ;
      /*display: flex;*/
      text-decoration: none;
      color: var(--text-color);
      padding: 1em .5em;
      transition: background-color 150ms ease;
      text-transform: uppercase;
      /*flex-direction: row;*/
  }

   nav ul{
    background-color: var(--secondary-color);
    color: var(--text-color);
    list-style: none;
    display: flex; 
    flex-direction: row;
   }

   /*nav li{
    display: flex;
    flex-direction: row;
   }*/

      nav a.active-link{
  border-bottom: 2px solid var(--text-color);

      }

.col-md-one-half {
		width: 50%;
	}
	
	.col {
		float: left;
		padding: 0px;
	}
     .row {
    display: flex; /* Makes the child elements (the tables) flexible */
    align-items: stretch; /* This is the default value, but ensures children stretch to the height of the tallest sibling */
    gap: 0px; /* Optional: adds space between the tables */
}
    
    .info-box-tan, .info-box-dark {
    height: 100%; 
    /* Additional table styling (border, padding, etc.) */
    border-collapse: collapse; 
}

}

/*Large View*||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/
@media and (min-width: 900px){
	
   
  
   /* h1 {
      margin: 1em;
      padding: 10px 20px 10px 10px;
      }  */

      .info-box-tan{
        height: 16em;
     }
 	
	.col-md-one-half {
		width: 50%;
	}
   .col-list-width{
         width: 16%;
       
     }
	
	.col {
		float: left;
		padding: 0px 7px 14px;
	} 

     .row {
    display: flex; /* Makes the child elements (the tables) flexible */
    align-items: stretch; /* This is the default value, but ensures children stretch to the height of the tallest sibling */
    gap: 20px; /* Optional: adds space between the tables */
}
   
.col-md-one-half{
  height: 18em;
}

  
  }
/*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/
/*Desktop View*/
@media and (min-width: 1024px){
	

 body {
        
		max-width: 2200px;
	}
	
 h1 {
     
	  margin: .1em;   
    padding: .1em;
      }    
         
	
	  .col-lg-one-fourth {
		  width: 25%;
	}
    .col-list-width{
         width: 12%;
  }

}