/*

#5E6D6E - Dark blue (header and footer)
#AAC6CE - Light blue 
#74AFB3 - Teal blue (buttons)
*/

@font-face {
    font-family: "Big Shoulders Display";
    src: url("big-shoulders-display/BigShouldersDisplay-SemiBold.ttf") format("woff2");
}

*, *::before, *::after
{
    box-sizing: border-box;
}

body
{
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: #363C3C;
}

.flex-center
{
    display: flex;
    justify-content: center;
    align-items: center;
}

h6, h5, h4, h3, h2, h1
{
    font-family: "Big Shoulders Display", sans-serif;
    color: #AAC6CE;
}

h3
{
    font-size: 1.8rem;
    text-decoration: underline;
    text-underline-offset: 15px;
    text-decoration-color: #74AFB3;
    color:#AAC6CE;
}

.text-color
{
    color: #74AFB3;
}

.text-color a
{
    text-decoration: none;
    color:#74AFB3;
}

.text-color a:hover
{
    color:#5E6D6E;
    text-decoration: underline;
    text-decoration-color: #74AFB3;
}

button
{
    position: relative;
    height: 2.2rem;
    width: 5.5rem;
    background-color: #74AFB3;
    color: white;
    outline: none;
    overflow: hidden;
    border-radius: 15px;
}

button::before
{
    content: "";
    position: absolute;
    width: 5px;
    background-color: #AAC6CE;
    left: -5px;
    top: 0;
    bottom: 0;
    outline: none;
}

button:hover::before
{
    left: calc(100% + 10px);
    transition: left 500ms;
    outline: none;
}


table
{
    color:#363C3C;
}

p
{
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color:gainsboro;
    font-weight: 550;
}

main
{
    padding-top: 5rem;
    height: 100vh;
}

.logo
{
    font-family: "Big Shoulders Display", sans-serif;
    font-size: 1.5rem;
    color: #363C3C;
}

a, .logo
{
    text-decoration: none;
}

.container 
{
    padding: 1.2rem;
}

/*Navigation styling*/

header
{
    background-color: #AAC6CE;
    text-align: right;
    position: fixed;
    height: 3rem;
    width: 100vw;
    opacity: 95%;
    /*ensures the nav stays on top of everything*/
    z-index: 9999;

}

nav
{
    position: absolute;
    text-align: right;
    top: 100%;
    right: 0;
    background-color: #AAC6CE;
    width: 100%;
    transform: scale(1, 0); /*keeps width at 100% but squishes the nav bar vertically. for the animation*/
    transform-origin: top; /*makes the animation begin from the top*/
    transition: transform 400ms ease-in-out;
}

nav ul
{
    margin: 0;
    padding: 0;
    list-style: none;
}

nav li
{
    margin-bottom: 1rem;
    margin-right: 1rem;
    font-family: "Big Shoulders Display", sans-serif;
}

nav a
{
    color: #363C3C;
    text-decoration: none;
    font-size: 1.2rem;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 150ms ease-in-out;
}

nav a:hover
{
    color: white;
}

/*Pseudo class check is looking to see if checkbox is checked or not*/
/*the ~ is looking for a SIBLING of nav-toggle, not a child*/
.nav-toggle:checked ~ nav
{
    transform: scale(1,1); /*keeping width and height at 100%*/
}

.nav-toggle:checked ~ nav a
{
    opacity: 1;
    transition: opacity 250ms ease-in-out 250ms;
}

.nav-toggle
{
    display: none;  /*hides the checkbox input*/
}

/*hamburger icon*/
.nav-toggle-label
{
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 1rem;
    /*these 3 properties will center the icon in the middle of the header.*/
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after
{
    display: block;
    background: #5E6D6E;
    height: 2px;
    width: 2rem;
    border-radius: 5px;
    position: relative;
}

/*these next 3 sections display the other 2 lines of the hamburger icon*/
.nav-toggle-label span::before,
.nav-toggle-label span::after
{
    content: ''; /*necessary*/
    position: absolute;
}

.nav-toggle-label span::before
{
    bottom: 7px;
}

.nav-toggle-label span::after
{
    top: 7px;
}


/*DROP DOWN BIKE MENU*/

.dropdown-label 
{
    font-size: 1.2rem;
    font-family: "Big Shoulders Display", sans-serif !important;
    color: #363C3C;
    background-color: #AAC6CE;
}

.dropdown-label:hover
{
    color: white;
}

.dropdown-options 
{
    top: 100%;
    padding: 10px;
    display: none;
}

/*end of navigation styling*/


/*BIKE BRANDS*/

.banner
{
    display: flex;
    margin-top: -2rem;
    overflow: hidden;
}

.banner-img
{
    object-fit: cover;
    width: 100%;
    height: 18rem;
    filter:brightness(80%);
}

/*needed for the image to cover the entire height of div*/
.img-container
{
    height: 20rem;
    width:100%;
    background-color: #5B7072;
}

.img-container img
{
    opacity: 0.5;
}

.hero-img
{
    width: 100%;
    justify-content: center; 
    align-items: center;
    display: flex;
    overflow: hidden;
    position: relative;
}

.banner-content
{
    width: 100%;
    height: 60%;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: end;
    overflow-x: hidden;
}

.bike-king-title
{
    overflow: hidden;
    padding: 2rem 1.8rem 0rem 0rem;
    width: 50%;;
    font-size: 1.3rem !important;
    margin-top: 0;
    color: white;
    text-shadow: 0px 5px 5px rgb(107, 107, 107);
    height: 100%;
}



.home-text
{
    display: flex;
    align-items: start;
    justify-content: end;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.coloured-band1, .coloured-band-home1
{
    height: 10rem;
    margin-top: -3rem;
    background-color: #74AFB3;
    clip-path: polygon(50% 0%, 100% 0, 100% 38%, 67% 25%, 0 0);
}

.coloured-band2, .coloured-band-home2
{
    margin-top: -11rem;
    width: 50%;
    height: 10rem;
    background-color: aqua;
    clip-path: polygon(50% 0%, 100% 0, 36% 11%, 0 17%, 0 0);
}

/*BIO*/
.help-heading
{
    display: flex;
    justify-content: center;
    margin-top: -6rem;
}

.bio h4
{
    text-align: center;
    font-size: 2rem;
    border-bottom: 2px white solid;
    width: 50%;
    padding-bottom: 1rem;
}

.bio-text
{
    text-align: center;
    margin-top: 0.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/*TEAM SECTION*/
.team
{
    margin-bottom: 2rem;
    margin-top: 7rem;
    background-image: linear-gradient(to bottom right, #74afb328, #2e575b25);
    padding: 2rem 1rem 2rem 1rem;
    clip-path: polygon(0 8%, 100% 0%, 100% 91%, 0% 100%);
}

.team-sub-heading
{
    color: gainsboro !important;
    font-size: 2rem;
    text-decoration: underline;
    margin-top: 5rem;
}

.bike-img
{
    width: 100%;
    margin-top: -2rem;
}

.team div p
{
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: gainsboro;
    font-weight: 300;
}

.team-flex
{
    overflow-x: hidden;
}

/*TOP BRANDS*/

.brands-container
{
    margin-bottom: 2rem;
    margin-top: 6rem;
}
.brands-container h3
{
    text-align: center;
}
.text-overlay
{
    position: relative;
    text-align: center;
    color: white;
    font-family: "Big Shoulders Display", sans-serif;
}

.centered
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -190%); /*centering the text in the middle using x and y axis*/
    font-weight: 800;
    font-size: 2.5rem;
    text-shadow: 0px 2px 2px gray;
    color:gainsboro;
}

.home-brands
{
    filter:brightness(70%);
    object-fit: cover;
    width:100%;
    height: 10rem;
    margin-top: 0.5rem;
    border-radius: 5px;
}
/*NEWSLETTER*/
.newsletter-container
{
    border-top: 2px solid #74AFB3;
    border-bottom: 2px solid #74AFB3;
    padding-top: 2rem;
    margin-top: 8rem;
    display: flex;
    justify-content: center;
    align-content:center;
    margin-bottom: 8rem;
}

.newsletter-container section
{
    height: 16rem;
}

.newsletter-heading
{
    font-size: 2rem;
    text-align: center;
}

.newsletter-heading h4
{
    color:gainsboro;
}

.email-input form
{
    margin-top: -1rem;
    display: flex;
    justify-content: center;
}

.email-input input
{
    border-radius: 15px;
    border: none;
    background-color: #AAC6CE;
    color:#363C3C;
    margin-right: 1rem;
    padding: 0.5rem 1.5rem 0.5rem 1.5rem;
}

.email-input input:focus
{
    outline: none;
}

/*MAP LOCATION*/

.location
{
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.location h3
{
    text-align: center;
}

.map-iframe
{
    width: 100%;
    height: 15rem;
    margin-top: 1.5rem;
    border-radius: 5px;
}

/*FOOTER*/
footer
{
    background-color: #5B7072;
    padding: 1rem 0.5rem 1rem 0.5rem;
}
footer a
{
    text-decoration: none;
}
footer a:hover
{
    text-decoration: underline;
    text-decoration-color: white;
}

.payment-icons
{
    display: flex;
    justify-content: space-evenly;
}
.payment-icons img
{
    height: 3rem;
    width: 3rem;
}
.footer-links
{
    margin-top: 2rem;
}
.footer-bottom
{
    text-align: center;
    margin-top: 4rem;
}
.footer-bottom a
{
    color: gainsboro;
}
.footer-text
{
    text-align: center;
    display: flex;
    justify-content: space-around;
}

/*BANNER IMAGES*/
/*USED FOR ALL PAGES (OTHER THAN HOME)*/
.page-header
{
    position: relative;
    clip-path: polygon(50% 0%, 100% 0, 100% 43%, 100% 81%, 68% 83%, 32% 92%, 0 85%, 0% 43%, 0 0);
}

.header-overlay
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 8888;
    color: white;
    text-shadow: 0px 2px 2px gray;
    font-size: 2.5rem;
}

.page-header-img
{
    width: 100%;
    display: block;
    height: 22rem;
    object-fit: cover;
    filter:brightness(60%);
}

/*BEGINNING OF SERVICES PAGE*/

.book-services, .apparel-info
{
    text-align: center;
    margin-top: -3rem;
    margin-bottom: 3rem;
}

.rental-img img
{
    height: 20rem;
    margin-bottom: 3rem;
}

.rental-bike
{
    width: 100%;
}

.rental-text
{
    width: 90%;
    margin-right: 1.5rem;
}

.rental-bike
{
    height: 90%;
    object-fit: cover;
    border-radius: 5px;
}

.rental-table
{
    font-family: sans-serif;
    margin-top: 2.5rem;
    color: white;
    padding-right: 1rem;
    margin-bottom: 3rem;
}

td
{
    padding-bottom: 0.5rem;
}


/*REPAIR SECTIONS*/

.repairs-container h3
{
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.repair-bio
{
    margin-bottom: 5rem;
    line-height: 1.5;
}

.repair1
{
    display: flex;
    justify-content: space-between;
    background-color: #74AFB3;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
    height: 13rem;
    margin-bottom: 3rem;
}

.repair-img
{
    width:50%;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 89% 100%, 0% 100%);
}

.repair-info
{
    padding: 1rem;
}

.repair-info p
{
    color: #363C3C;
    font-weight:300 !important;
    font-size: 0.9rem;
}

.repair-name
{
    font-size: 1.5rem;
    margin-bottom: 0;
    margin-top: 0.5rem;
    color: #363C3C;

}

.repair-price
{
    color: white !important;
}

/*BEGINNING OF TRAILS PAGE*/
.trails {
    margin-top: 7rem;
  }
  
.trails a
{
    text-decoration: none;
}

  .trail-bio {
    margin-top: -4.5rem;
    text-align: center;
    padding: 0rem 4rem 0rem 4rem;
  }

  /*TRAILS GRID*/
  .trails
{
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    grid-gap: 3rem;
} 
  
  .bike-trail-container {
    background-color: #74AFB3;
    border-radius: 5px;
    /*width: 13.5rem;*/
    display: flex;
    flex-direction: column;
    /*height: 100%;*/
  }
  
  .trail-image 
  {
    width: 100%;
    height: 17rem;
    object-fit: cover;
    border-radius: 5px 5px 0px 0px;
    clip-path: polygon(0 0, 100% 0, 100% 83%, 0 100%, 0 100%, 0% 50%);
  }

  
  .trail-title {
    font-size: 1.7rem;
    color:#363C3C;
  }
  
  .trail-info {
    padding: 1rem;
    margin-top: -2rem;
    flex-grow: 1;
    /*height: 50%;*/
    position: relative;
  }

  .trail-description
  {
    color:#363C3C;
  }

  .trail-description strong
  {
    color: white;
    position: absolute;
    bottom: 0.8rem;
  }

  /*testing new layout*/
  
  .shape-div {
    display: flex;
    background-color: lightblue;
    clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 13% 50%, 0% 0%);
    height: 20rem;
    border-radius: 0px 5px 0px 5px;
  }
  
  .shape-div img {
    width: 15rem;
    height: 20rem;
    object-fit: cover;
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 14% 49%, 0% 0%);
  }
  
   .highlight-trail-text {
    display: block;
    text-align: right;
    padding-right: 2rem;
    padding-top: 2rem;
    padding-left: 0.5rem;
  }
  
  .shape-div a {
    text-decoration: underline;
    text-decoration-color: #74AFB3;
    font-weight: 550;
  }
  
/*CONTACT PAGE BEGINS HERE*/
.contact-heading
{
    margin-top: -3rem;
}

.contact-banner
{
    filter:brightness(70%);
}

form
{
    margin-top: 5rem;
    margin-bottom: 8rem;
    position: relative;
}

label
{
    color: white;
    font-family: sans-serif;
    font-size: large;
}

.name-field, .email-field, .message-field
{
    border-radius: 50px;
    border: 2.5px solid #5B7072;
    outline: none;
    font-family: sans-serif;
    font-size: large;
    width: 20rem;
}

.email-field:focus, .name-field:focus, .message-field:focus
{
    background-color: #AAC6CE;
}

.name-field
{
    padding-left: 1rem;
}

.email-field
{
    width: 20rem;
    padding-left: 1rem;
}

.message-field
{
    text-align: left;
    border-radius: 15px;
    height: 8rem;
    width: 20rem;
    padding: 1rem;
}

.contact-text
{
    margin-top: 3.5rem;
}


.contact-details
{
    margin-bottom: 3.5rem;
}

.contact-map
{
    margin-bottom: 3.5rem;
}


.contact-button
{
    position: absolute;
    left: 0rem;
    bottom: -2.5rem;
}

.social-container img 
{
    width: 2rem;
    height: 2rem;
    margin-right: 1rem;
    margin-bottom: 5rem;
}

.x-icon
{
    border-radius: 10px;
}


/*END*/



/*BIKE PAGE*/

.filter-menu
{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0rem 1rem 0rem;
    margin-top: 2rem;
    text-align: center;
    background-color: #363C3C;
}

.filter-menu label
{
    font-size: 0.9rem;
    padding-right: 1rem;
    margin-bottom: 0.5rem;
}

.filter-menu select
{
    width: 15rem;
    margin-right: 0.5rem;
    margin-bottom: 1.6rem;
    background-color: #444a4a;
    color: gainsboro;
    border-radius: 5px;
    outline: none;
    border: none;
    padding: 0.2rem;
    box-shadow: 2px 2px #5E6D6E;
    padding-left: 1rem;
}
.apply-filters
{
    margin-top: 0.5rem;
    background-color: #465657 !important;
    border-radius: 5px;
    width: 10rem;
    text-wrap: nowrap;
    font-family: "Big Shoulders Display", sans-serif;
    font-size: 1.2rem;
    border: none;
    box-shadow: 2px 2px #5E6D6E;
    cursor: pointer;
}


/*BIKE GRID*/

.all-bikes
{
    margin-top: 5rem;
    display: grid;
    grid-template-rows: repeat(4, 23rem);
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    grid-gap: 1.8rem;
    padding: 0 20px; 
} 

.results-div
{
    display: flex;
    justify-content: center;
    align-items: center;
}

.bike:hover
{
    cursor: pointer;
}

/*setting width and height of the product image*/
.bike img
{
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: 5px;
}

.bike-title
{
    margin-top: 0.4rem;
    font-size: 1.7rem;
    font-style: italic;
}

.bike-text
{
    margin-top: -1rem;
    width: 95%;
    font-size: smaller;
    padding: 0rem 2rem 2rem 0rem;
    border-bottom: 1px solid white;
}

.details-div
{
    display: flex;
    justify-content: space-around;
    font-size: small;
    margin-top: -1rem;
    margin-left: -0.8rem;
    padding-bottom: 2rem;
}

.bike-price
{
    padding-bottom: 2rem;
}

/*END*/



/*highlight bike section*/

.highlight-bike
{
    width: 100%;
    margin-top: -9.5rem;
    height: 18rem;
    background-image: url("images/bikes/bike11.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: end;
}

.highlight-bike-text
{
   margin: 0;
   font-size: 2.5rem;
   color: white;
   text-shadow: 2px 2px #5E6D6E;
}

/*Slick track*/
.responsive {
    width: 100%;
    height: auto;
}

.slider {
    width: 100%;      
    padding: 0;
  }
  
  .slick-slide img {
  width: 100%;
  height: 8rem;
  object-fit: cover;
  filter: brightness(50%);
  }
  
  .slick-slide {
  transition: all ease-in-out .3s;
  opacity: 1;
  }
  
  /*end of slick track*/

 

/*end*/


/*APPAREL GRID*/

.apparel, .accessories
{
    margin-top: 5rem;
    display: grid;
    grid-template-rows: repeat(4, 23rem);
    grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
    grid-gap: 1rem;
    padding: 0 20px; 
} 

/*setting width and height of the product image*/
.apparel-img, .accessories-img
{
    width: 100%;
    height: 15rem;
    object-fit: cover;
    border-radius: 5px;
}

.apparel-title, .accessories-title
{
    font-size: 1.7rem;
    margin-top: 0.4rem;
}

.apparel-price, .accessories-price
{
    width: 95%;
    font-size: small;
    padding-bottom: 1rem;
    border-bottom: 1px solid white;
    margin-top: -1rem;
    margin-bottom: 3rem;
}

/*END*/

/*Apparel image carousel*/

.image-carousel 
{
    position: relative;
    width: 300px;
    height: 200px; 
}

.image-carousel img 
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s; 
}

.image-carousel img.active 
{
    opacity: 1;
}
  

@keyframes fade 
{
from {
    opacity: 0;
     }
to   {
    opacity: 1;
     }
}

.apparel-link, .heading-link
{
    text-decoration: none;
}

.apparel-highlight
{
    margin-top: 5rem;
    background-color: #5B7072;
}
.apparel-highlight-img img
{
    width: 100%;
    height: 15rem;
    object-fit: cover;
}
.apparel-highlight-text
{
    text-align: center;
}
.apparel-highlight-text h4
{
    font-size: 3rem;
    margin: 0;
    color: #AAC6CE;
    text-shadow: 2px 2px black;
}
.apparel-showcase
{
    display: flex;
}
.apparel-showcase img
{
    width: 50%;
    height: 10rem;
    object-fit: cover;
}

/*PHP OUTPUT STYLING*/
.php-output-contact
{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10rem;
    margin-top: 12.5rem;
}
.php-contact
{
    background-color: #74AFB3;
    color: white;
    width: 40rem;
    font-family: "Big Shoulders Display", sans-serif;
    font-size: 2rem;
    padding: 5rem;
    border-radius: 10px;
    text-shadow: 2px 2px #363C3C;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.php-button
{
    margin-top: 2rem;
    text-align: center;
    border-radius: 10px;
    background-color: #AAC6CE;
    padding: 0.5rem 2rem 1rem 2rem;
    border: 2px solid #5E6D6E;
}


/*TABLET DEVICES*/
@media screen and (min-width: 500px)
{
    .bike-king-title
    {
        font-size: 2rem !important;
    }

    .repair-info p
    {
        font-size: 1.2rem;
    }
    nav ul
    {
        margin-top: 0.5rem;
    }

    .highlight-bike
    {
        height: 25rem;
    }
    .filter-menu
    {
       flex-direction: row;
       justify-content: center;
       align-items: center;
       padding: 0rem 1rem 0rem 1rem;
    }

    .filter-menu select 
    {
        margin-top: 1rem;
    }

    .filter-menu button
    {
        font-size: 1.1rem;
        width: 8rem;
        height: 1.5rem;
        margin-top: -2rem;
        margin-left: 2rem;
    }

    .apparel, .accessories
    {
        grid-template-rows: repeat(auto, 30rem);
        grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
        grid-row-gap: 6rem;
        grid-column-gap: 3rem;
    } 

    /*setting width and height of the product image*/
    .apparel-img, .accessories-img
    {
        height: 20rem;
        object-fit: cover;
    }

    .apparel-title, .accessories-title
    {
        font-size: 1.8rem;
    }

    .apparel-price, .accessories-price
    {
        font-size: medium;
    }
    .all-bikes
    {
        grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
        grid-template-rows: repeat(4, 26rem);
        grid-gap: 3rem;
    } 

    .home-brands
    {
        margin-top: 3rem;
        height: 15rem;
    }

    .team h3
    {
        margin-left: 2rem;
    }
    .team p
    {
        margin-top: 3rem !important;
        padding: 0rem 2rem 0rem 2rem;
    }
}







/*DESKTOP*/
@media screen and (min-width: 900px)
{

    .highlight-bike
    {
        height: 35rem;
        margin-top: -10rem !important;
    }

    .bike-king-title
    {
        font-size: 3rem !important;
    }
    .nav-toggle-label
    {
        display: none;
    }

    /*CSS GRID*/
    header
    {
        display: grid;
        grid-template-columns: 1fr auto minmax(600px, 1fr) 1fr; /*4 columns in the header*/

    }

    .logo
    {
        grid-column: 2 / 3; /*logo starts at line 2 and ends at line 3*/
    }
    
    nav
    {
        all: unset; /*clears all styling from above*/
        grid-column: 3 / 4; /*nav starts at line 3 and ends line 4*/
        display: flex;
        justify-content: flex-end;
        align-items: center;
        /*margin-right: -5rem;*/
        
    }

    nav a 
    {
        opacity: 1;
        font-size: 1.5rem;
        padding: 0.5rem;
    }

    nav ul
    {
        display: flex;
        justify-content: flex-end;
    }

    nav li
    {
        margin-bottom: 0.5rem;
    }

    .banner
    {
        height: 25rem;
    }

    .banner-img
    {
        width: 100%;
        height: 25rem;
        /*clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);*/
    }
    .img-container
    {
        height: 25rem;
        background-color: #5B7072;
    }

    .coloured-band-home1
    {
       margin-top: -1.1rem;
    }

    .help-heading
    {
        width: 100%;
    }

    .bio
    {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .bio-text
    {
        width: 70%;
    }

    .brands-container h3
    {
        text-align: center;
        font-size: 3rem;
    }

    .home-brands
    {
        height: 20rem;
        width: 80%;
        margin-bottom: 3rem;
    }

    .centered
    {
        font-size: 5rem;
        transform: translate(-50%, -215%);
    }

    .team
    {
        padding: 4rem 0rem 4rem 0rem;
    }

    .team h3
    {
        padding-left: 4.5rem;
        font-size: 3rem;
    }
  
    .bike-img
    {
        height: 30rem;
        width: 100%;
       
    }

    .team p 
    {
        padding-left: 4rem;
        width: 50%;
        line-height: 2 !important;
        font-weight: 550 !important;
    }

    .team-flex
    {
        display: flex;
        justify-content: space-evenly;
    }

    .desktop-newsletter
    {
        margin-top: 8rem;
        display: flex;
        justify-content: center;
    }

    .newsletter-container
    {
        width: 60rem;
    }

    .location h3
    {
        text-align: center;
        font-size: 3rem;
    }

    .map-inner
    {
        display: flex;
        justify-content: center;
    }

    .map-inner iframe
    {
        width: 60rem;
        height: 20rem;
    }



    /*services page*/

    .header-overlay
    {
        font-size: 3rem;
    }

    .rentals h3
    {
        text-align: center;
        margin-bottom: 5rem;
    }
    .rental-info
    {
        display: flex;
        justify-content: space-around;
        padding: 0rem 10rem 0rem 10rem;
    }

    .bike-rentals
    {
        width: 80%;
        line-height: 1.8;
    }

    .rental-img
    {
        width: 70rem;
    }

    .repairs-container
    {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 5rem;
    }

    .repair-bio
    {
       width: 60%;
       text-align: center;
    }

    .repair1
    {
        width: 70%;
        height: 12rem;
    }

    .repair-info
    {
        margin-right: 5rem;
    }

    .repair-info p
    {
        font-size: 1.2rem;
    }



    .contact-heading h3
    {
        position: absolute;
        margin-left: 9rem;
    }

    .desktop-flex
    {
        display: flex;
        justify-content: space-evenly;
    }

    .form
    {
        border-right: 2px white solid;
        height: 30rem;
        padding-top: 2rem;
        padding-right: 8rem;
        margin-bottom: 5rem;

    }
    .form-inner label
    {
        margin-top: 5rem;
    }

    .contact-button 
    {
        position: absolute;
        left: 0rem;
        margin-top: 9rem;
    }
    .social-container img 
    {
        width: 3rem;
        height: 3rem;
        margin-top: 2rem;
    }
    .social-container img:hover
    {
        filter:brightness(50%);
    }

    .main-contact-info
    {
        display: flex;
        justify-content: space-evenly;
    }

    .text-info
    {
        text-align: center;
        margin-top: 3rem;
    }

    /*BIKE PAGE*/

    .highlight-bike
    {
        margin-top: -17rem;
    }

    .highlight-bike-img
    {
        object-fit: fill;
        height: 40rem;
    }

    .highlight-bike-text
    {
        font-size: 5rem;
        padding-top: 30rem;
    }

    .slick-slide img 
    {
        height: 15rem;
    }


    /*BIKE GRID*/

    .all-bikes
    {
        grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
        grid-template-rows: repeat(4, 30rem);
        grid-gap: 3rem;
    } 

    /*setting width and height of the product image*/
    .bike img
    {
        height: 15rem;
    }

    .bike-title
    {
        margin-top: 2rem;
        font-size: 1.8rem;
    }

    .bike-text
    {
        width: 95%;
        font-size: medium;
    }

    /*APPAREL GRID*/

    .apparel, .accessories
    {
        margin-top: 5rem;
        display: grid;
        grid-template-rows: repeat(3, 30rem);
        grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
        grid-gap: 3rem;
    } 

    /*setting width and height of the product image*/
    .apparel-img, .accessories-img
    {
        width: 100%;
        height: 20rem;
        object-fit: cover;
        border-radius: 5px;
    }

    .apparel-title, .accessories-title
    {
        font-size: 1.8rem;
    }

    .apparel-price, .accessories-price
    {
        font-size: medium;
    }

    /*END*/

    /*DROP DOWN BIKE MENU*/

    .dropdown-options 
    {
        text-align: left;
        position: absolute;
        background-color: #AAC6CE;
        right: 33.5rem;
        top: 2.5rem;
        display: none;
        overflow: hidden;
    }

        
   
    .apparel-highlight-img img
    {
        height: 25rem;
    }
    .apparel-highlight-text h4
    {
        font-size: 5rem;
    }
    .apparel-showcase img
    {
        width: 50%;
        height: 18rem;
    }
    .filter-menu
    {
       flex-direction: row;
       justify-content: center;
       align-items: center;
    }

    .filter-menu label
    {
        margin-left: 1rem;
    }

    .filter-menu select 
    {
        margin-top: 1rem;
    }

    .filter-menu button
    {
        font-size: 1.1rem;
        width: 8rem;
        height: 1.5rem;
        margin-top: -2rem;
        margin-left: 2rem;
    }
    .trail-title:hover
    {
        text-decoration: underline;
    }
    /*FOOTER*/
    .payment-icons
    {
        justify-content: center;
        column-gap: 1rem;
    }
    .footer-text
    {
        justify-content: left;
        text-align: left;
        column-gap: 10rem;
        margin-left: 5rem;
    }
}

