

.footertagline {
  
    background-image: url("/staticmedia/DSC_1607_02-scaled.jpg");
    object-fit: cover;
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */

    background-size: cover; /* Resize the background image to cover the entire container */
  }
  .footertagline > div {
    width: 100%;
    background-color: #000000be; /* Used if the image is unavailable */
    padding: 130px 0 130px 0;
  }  


  .footertagline h3 {
    
    font-size: 45px;

    color: var(--lightcolor);
    font-family: var(--logofont);
    font-weight: 700;

    display: block;

    margin-right: 20px;
  }
  .footertagline ul {
  
    display: block;


  }
  .footertagline ul li {
    
    margin: 10px 0;
    display: inline-block;
    margin-right: 5px;
    height: auto;
  }
  .footertagline ul li a {
    font-size: 45px;
    padding: 10px;
    padding-bottom: 0px;
    background-color: var(--accentcolor1);

    color: var(--lightcolor);
    font-family: var(--logofont);
    font-weight: 700;

    display: inline-block;
    position: relative;

    width: auto;

    transition: all 0.2s;

  }

  
  .footertagline ul li:first-child a {
    background-color: var(--accentcolor3);
  }
  .footertagline ul li:last-child a {
    background-color: var(--accentcolor2);

  }
  .footertagline ul li a:hover {
    transform: scale(1.01);
    background-color: var(--accentcolor4);

  }


  .footertagline ul li a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 4px;
    bottom: 0;
    left: 0;
 
    background-color: var(--lightcolor);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
   
  }
  .footertagline ul li a:hover::after {
    transform: scaleX(1);

    transform-origin: bottom left;
  }



















  .footer {
    
    margin: 0;


    background-color: var(--lightcolor);
   

  }
 
 
  .footer ul {


    
    box-shadow: 0px 0px 10px rgba(0,0,0,0.15)!important;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-content: space-evenly;

    padding: 6px 1px 4px 1px;
     
    width: 100%;
  
  }

   
  .footer ul > li {
    

    display: inline-block;
    width: auto;
  }



  .footer ul li > a {
    
  
    color: var(--darkcolor);
    font-family: var(--logofont);
    font-weight: 700;

    font-size: 20px;
  
    padding:3px;
 
    display: inline-block;
    position: relative;
    
    
    transition: all 0.2s ease-out;
  }
  

  

  .footer ul li > a:hover {
    color: var(--accentcolor4);
    transform: scale(1.04);

  }
  
  .footer ul li > a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
 
    background-color: var(--accentcolor4);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
   
  }
  .footer ul li > a:hover::after {
    transform: scaleX(1);

    transform-origin: bottom left;
  }

  .footer .credit {
    opacity: 0.6;

    height: fit-content;
    width: fit-content;


    margin: auto;
    padding: 5px 3px 3px 3px;
    margin-bottom: 15px;
    margin-top: 15px;
    border: 2px solid var(--darkmediumcolor);
  }

  .footer .credit span {
    width: fit-content;
  
    
    color: var(--darkmediumcolor);
    font-family: var(--logofont);
    font-weight: 500;

    font-size: 15px;
 
  }

   
  .footer .credit a{
    transition: all 0.25s ease-out;
    position: relative;
    display: inline-block;
    color: var(--darkcolor);
    font-size: 17px;
  }
  .footer .credit a:hover{
   
    transform: scale(1.04);
    color: var(--accentcolor4);
  }

  .footer .socials {
    
    background-color: #ccc;
    width: calc(100% - 40px);

    margin: 20px;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
   
    padding: 40px 0 34px 0;
  }
 

  .footer .socials a{
    
    text-align: center;
 
    margin: 0 5px;
    color: var(--lightcolor);
    font-family: var(--logofont);
    font-weight: 700;

    font-size: 55px;

    display: inline-block;
    position: relative;

    
    transition: all 0.2s ease-out;

  }
  .footer .socials .fa-youtube  {
    color: #ac6060;
  }
  .footer .socials .fa-instagram{
    color: #8b4d7e;
  }
  .footer .socials .fa-facebook{
    color: #7bc7f3;
  }
  .footer .socials .fa-twitter{
    color: #80aef3;
  }
  .footer .socials a:hover{
   
    transform: scale(1.04);

  }
  .footer .socials a:hover i {
    color: var(--accentcolor4);
  

  }

  @media (max-width: 1000px) {
    .footer .socials {
    
 
      width: calc(100%);
  
      margin: 15px 0 15px 0;
 
      padding: 20px 0 14px 0;
    }
   
  
    .footer .socials a{
      

      font-size: 45px;

    }
  }


  @media (max-width: 400px) {

  
    .footer .socials a{
      

      font-size: 40px;

    }
  }
  
  @media (max-width: 300px) {

  
    .footer .socials a{
      

      font-size: 35px;

    }
  }
  