.root{

  --site-colour-01: brown;
  --site-colour-01-hover: #7B1F1F;
}

html{
  font-size: 62.5%;
}


body{
  background-color: white;
}

body::after{
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  z-index: -1;
  content: url(../img/instagram-color.png) url(../img/facebook-color.png) url(../img/LI-In-Bug.png)

}

/* Styling for main sections outside of main page*/


main p{
  font-size: 1.8rem;
  line-height: 2.75rem;
  color: #111;
}


.wrapper-main{
  width:90%;
margin: 0 auto;}

h1{
  font-size: 1.6rem;
  line-height: 1.5;
  color: #000;
  font-family:  'Segoe UI', Tahoma, Geneva, Verdana, sans-serif ,sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}


h2{
  font-size: 3rem;
  line-height: 1.5;
  color: #000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif ,sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}


h3{
  font-size: 3.6rem;
  line-height: 1.5;
  color: #000;
  font-family: sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

p{
  font-size: 1.8rem;
  line-height: 2.75rem;
  color: #000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif ,sans-serif;
  font-weight: 400;
}

a{
  font-size: 1.4rem;
  line-height: 1.75rem;
  color: #000;
    font-family: sans-serif;
    font-weight: 600;
  cursor: pointer;
}

.index-about{
  width: 100%;
  background-color: white;
}

/*______________________________________________________________________________________________________________________________________
                                                                     HEADER
________________________________________________________________________________________________________________________________________*/
.header-main{
  position:fixed;
  top: 0;
  width: 100%;
  height: 60px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  z-index: 1000;
}

/* Logo and link to home page - far left of header box*/

.header-main-logo{
width: fit-content;
height: 100%;
padding-left: 60px;
display: flex;
}

.header-main-logo img {
  height: 70px;
  align-self: center;

}

/* Navigation through the website - second right order of header box*/

.header-main-nav{
width: fit-content;
height: 100%;}


.header-main-nav ul{
list-style: none;
margin-left: 30px;
}

.header-main-nav ul li{
  display: inline;
  float: left;
}

.header-main-nav ul li a{
  padding: 0 10px;
  font-family: sans-serif;
  line-height: 60px;
  color: #000;
  display: block;
  height: 100%;
}

.header-main-nav ul li a:hover{
color: #ef4d5c;
}

/* Social Media box - Far top right with links to various social media accounts*/

.header-main-sm{
  width: fit-content;
  height: 100%;
  padding-right: 60px;
  display: flex;
  align-items: center;
  column-gap: 10px;
}


.header-main-sm-fb{
width: 20px;
height: 20px;
background-image: url(../img/facebook.png);
background-repeat: no-repeat;
background-size: cover;

}

.header-main-sm-fb:hover{
  background-image: url(../img/facebook-color.png);
 }

.header-main-sm-in{
  width: 20px;
  height: 20px;
  background-image: url(../img/instagram.png);
  background-repeat: no-repeat;
  background-size: cover;
  }

  .header-main-sm-in:hover{
    background-image: url(../img/instagram-color.png);
    }

  .header-main-sm-ln{
    width: 20px;
    height: 20px;
    background-image: url(../img/LI-In-Bug\ \(black\).png);
    background-repeat: no-repeat;
    background-size: cover;
    }

  .header-main-sm-ln:hover{

    background-image: url(../img/LI-In-Bug.png);
    }


/* Footer*/

.footer-main {
  width: 100%;
  padding: 60px 0 0 0;
  background-color: white;
}

.footer-main-flex{
 display: flex;
 justify-content: center;
 flex-wrap: wrap;
}

.footer-sponsers {
 flex-basis: 40%;
 display: flex;
 justify-content: center;
 flex-wrap: wrap;
 padding: 10px;

}

.footer-sponsers-m{
  flex-basis: 0%;
  display: flex;
  justify-content: center;
  padding: 0px;
}


.footer-sponsers img{
  width: 80%;
  max-height: 170px;
  border-radius: 5px;

}


.footer-sponsers img ul:nth-child(3){
width: 50%;
}

.footer-sitemap{
  flex-basis: 100%;
  display: flex;
  justify-content: center;
  background-color: #DCDCDC;
  column-gap: 4%;
  padding: 40px;
}

.footer-sitemap p{
  color: #000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif ,sans-serif;
  line-height: 2rem;
  
}


.footer-sitemap a{
  line-height: 3rem;
  font-size: 1.5rem;
  color: #000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif ,sans-serif;;
}

.footer-sitemap a:hover{
  opacity: 0.7;
}
.footer-sitemap ul:nth-child(1), .footer-sitemap ul:nth-child(2){
  flex-basis: 20%;

}

.footer-sitemap ul:nth-child(3){
  flex-basis: 20%;
}

.footer-sitemap ul:nth-child(3) p{
  text-align: right;
}

.footer-sitemap ul:nth-child(2){
  text-align: center;
}

/* Burger function */
.burger-menu, .burger-menu-btn {
  display: none;
}

/* Responsive website _ MOBILE*/ 


@media only screen and (max-width: 1080px) {

  .burger-menu-btn{
    display: block;
    width: 50px;
    height: 50px;
    background-image: url(/HTML/img/menu.png), url(/HTML/img/cancel.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center, center left 50px;
    margin-left: 20px;
   } 

   .burger-menu{
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 900;
    background-color: #383737;
    margin-top: 60px;
   }

   .burger-menu ul{
    width: 100%;
    height: calc(100vh - 60px);
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
   }
  
   .burger-menu ul li{
  flex-basis: 100%;
  border-top: 2px solid #000;
   }

   .burger-menu ul li:last-child{
border-bottom: 2px solid #000;
     }

   .burger-menu ul li a{
  display: block;
  height: 100%;
  font-size: 3rem;
  padding: 30px 0;
  flex-basis: 100%;
  text-align: center;

     }

     .wrapper-main{
      width:calc(100% - 20px);
  }
   
  
  .header-main-logo{
    width: fit-content;
    height: 100%;
    padding-left: 0px;
    display: flex;
    }
  
    .header-main-logo img {
      height: 50px;
      align-self: center;
    
    }
  
    .header-main-sm{
      padding-right: 10px;
   
    }
  
    .header-main-nav{
      display: none;
    }
  
    .footer-main{
      padding-top: 90px;
    }
  
    .footer-sitemap{
     flex-wrap: wrap;
    }
    .footer-sitemap ul:nth-child(1), .footer-sitemap ul:nth-child(2){
      flex-basis: 100%;
    
    }
    .footer-sitemap ul:nth-child(3){
      flex-basis: 100%;
    }
  
    .footer-sitemap a{
      font-size: 1.4rem;
      color: #fff;
     }
     .footer-sitemap p{
       font-size: 1.2rem;
       color: #fff;
      }
  
      .footer-sitemap{
        background-color: #111;
      }
  
      
      .footer-sitemap ul:nth-child(2),   .footer-sitemap ul:nth-child(3),   .footer-sitemap ul:nth-child(1){
        text-align: center;
        padding: 20px;
      }
  
      .footer-sitemap ul:nth-child(3) p{
        text-align: center;
      }
  }

