*{
  padding:0px;
  margin:0px;
  box-sizing: border-box;
  
}
*, *::before, *::after {
  box-sizing: inherit;
}
html {
  box-sizing: border-box;
}
:root {
	--c1: #00b7ff;/**Use var(--c1) to call elsewhere**/

  --x1:
}
html,body{
  overflow-x: hidden;
}
.preload{display:none;}

body {
  
 max-height: fit-content;
  
  background-attachment: fixed;
  background-image: linear-gradient(#121212, #101010);
  
  margin-top:80px;/*compensate for fixed header*/
  overflow-x: hidden; /*  Hide scrollbars */
  
}
body.stop-transitions * {
  transition: none !important;
  /*https://stackoverflow.com/questions/38526764/disable-css-transitions-on-window-resize#:~:text=When%20the%20window%20is%20resizing*/
}

header{
  width:100vw;
  height:10vh;
  min-height:80px;
  
  position:fixed;
  display:flex;
  top:0;
  background-color:#121212;
  background-color:#121212;
  padding-right:2em;
  padding-left:2em;
  justify-content:center;
  align-items: center;
  
  z-index:90;
  
  
  
} 
.company-name-wrap{
  height:fit-content;
  width:200px; /*set at 200px to match icons*/
  display:flex;
  align-items:center;
  justify-content:center;
  
}
.company-name{
  color:white;
  font-family: 'Sinkin Sans 300 Light', sans-serif;
  font-weight:200;
  font-size: 30px;;
  opacity:1;
  
}
.company-name a{
  text-decoration: none;
  color:rgb(255, 255, 255);
}
.company-name span{
  color:var(--c1);
  transition-property: color;
  transition-duration:1.3s;
}



nav {
  
  margin:auto;
  white-space: nowrap;
  z-index:91;
  
}

header nav ul {
  display:flex;
  list-style-type: none;
}
header nav ul li{
 margin:1.1em;
 position:relative;
}

header nav ul li a{
  text-decoration: none;
  color:white;
  text-transform: uppercase;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight:200;
}
header nav ul li a:hover{
  position:relative;
  transition: all 0.3s ease-in-out;
}
header nav ul li a:hover::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px; /*  distance between underline and characters */
  width: 100%;
  height: 2px; /*underline thickness */
  background-color:var(--c1); /* Adjust this value to set the underline color */

}
.underline-effect::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px; /*  distance between underline and characters */
  width: 100%;
  height: 2px; /*underline thickness */
  background-color:var(--c1); /* Adjust this value to set the underline color */

}
.icons{
  width:200px;;
  background-color:rgba(0, 0, 255, 0);
  display:flex;
  justify-content: flex-end;/* to give room for expansion*/
  transition: opacity 0.5s, background-color 0.5s, border-color 0.5s, width 1s;
}
.search-wrap, .user-wrap, .cart-wrap{
  display:inline-flex;
  border-radius: 22px;
  border-style:solid;
  border-color:rgba(255, 255, 255, 0.6);
  border-width:3.0px;
  transition: opacity 0.5s, background-color 0.5s, border-color 0.5s, width 0.5s;
  height:45px;
  width:45px;
  min-height:45px;
  min-width:45px;
  margin:0 0.3em 0;
  justify-content:center;
  align-items: center;
  
  background-color:rgba(0, 255, 85, 0);
  }

  .basket-count{
    background-color:rgba(255, 0, 0, 0);
    color:var(--c1);
    
    
    height:fit-content;
    width:fit-content;
    padding:2px;
    text-align: center;
    font-size:x-small;
    
    
  }
  
  
  .input-bar{
    opacity:0;
    transition:0.5s;
    border: none;
    outline: none;
    background-color:rgba(234, 8, 8, 0);
    color:white;
    font-size:1.2em;
    width:100%;
    
   
    
  }
  .submit-btn{display:none}
  .submit-btn:hover{cursor:pointer}
  
  
  .icons div:hover{
    border-color:rgb(255, 255, 255) 
  }
  
  .icons img{
  height:110%;
  transition:0.5s;
  opacity:0.6;
  border-style:solid;
  border-color:rgba(255, 0, 0, 0);
  margin:0.001em;
   
    
  }
  .icons a img{
    display:flex;
    justify-content: center;
    align-items: center;
  }
 .icons img:hover{opacity:1; cursor:pointer;}
 
 
 
 .search-bar-expanded{
  width:30vw;;
  border-color:rgba(255, 255, 255, 0.2);
  background-color:rgba(255, 0, 0, 0);
  
}

.input-when-search-wrap-expanded{
  opacity:1;
  padding-right:0.5em;
}
.icons-when-expanded{
  background-color:rgba(0, 255, 68, 0);
  width:30vw;
  
}
.preview-wrap{
  position:absolute;;
  width:100vw;
  height:10%;
  left:0;right:0;
  background-color:rgba(0, 0, 255, 0);
  display:flex;
  
  top:100%;
  align-items: flex-start;
  justify-content: center;
  
}
.preview{
  
  width:fit-content;
  min-height: 30px;;
  
  background-color:#f2f1f3;
  
  transform:scale(1,0);
  transition:0.1s ease-in-out;
  transform-origin: 50% 0%;
  color:black;
  font-size:20px;
  font-family:'roboto condensed', sans-serif;
  
  text-transform:uppercase;
  
  
  
}
.preview-show{
  transform:scale(1,1);
  
  
  
}
.preview-show div{
  padding:5px;
  display:flex;
  align-items: center;
  
  
}
.preview-show div img{
  height:50px;; 
  }
  
.preview-show div:hover{
  background-color:rgb(186, 186, 186);
  cursor:pointer;
}
.submit-btn-when-searchWrap-expanded{display:block;}
.search-icon-when-searchWrap-expanded:active{
 
  content:url("searchEnd.png");
  
}
.search-icon-when-searchWrap-expanded{
  
  content:url("searchEnd.png");
  
}
.clear-input{display:none; }
.clear-input-icon-when-search-bar-expanded{
  color:white;
  font-family:'roboto', sans-serif;
  font-size:0.7em;
  opacity:1;
  display:block;
  
}
.clear-input-icon-when-search-bar-expanded:hover{opacity:1; cursor:pointer;}


.landing-content{
  /*pushed down 10vh by margin in body*/
  height:90vh;
  overflow-y: hidden;
  overflow-x: hidden;
  width:100%;
  
  display:flex;
  flex-direction:column;

}

.forwardx{
  position:absolute;;;
  top:50%;
  transform:translate(-50%, -50%);
  right:2%;
  
  
  
}
.forwardx img {
  
  width:20px;
  opacity:0.1;
  transition:0.05s;
  
}
#forwardx img:hover {
  opacity:1;
  
}

h2{
  color:rgb(255, 255, 255);
  text-transform:uppercase;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight:200;
  font-size: calc(20px + 0.5vw);
  min-height: fit-content;
  background-color:rgba(255, 255, 0, 0);
}
h2 span{
  color:var(--c1);
  transition-property: color;
  transition-duration:1.2s;
}

.flex-top-padding{
  flex-grow:1.5;
  background-color:rgba(255, 234, 0, 0);
  min-height:80px;
 display:flex;
 justify-content:center;
 align-items:center;
 overflow-y: hidden;
 
}
.flex-bottom-padding{
  flex-grow:1.5;
  background-color:rgba(211, 19, 192, 0);
  
  
  
}
.movable{
  display:flex;
  align-items: center;
  flex-basis: 50%;
  flex-grow: 0.0;
  width:400vw;
  
  transition:1.0s;
  background-color: #ea481200;
  


  
}

  
.landing-row{
  display:flex;
  justify-content:center;
  color:white;
  column-gap:2%;
  align-items:center;
  width:100vw;
  position:relative;
  height:86%;
  flex-grow: 1;
  
  background-color:rgba(255, 166, 0, 0);
  
  
  
  
  
  
}
.blocks{
  flex-basis: 2%;
  height:100%;
  background-image:linear-gradient(#f9183a,#ea4912, #1e3e50, #0d1b23);
  align-self:flex-start;
 
  display:flex;
  flex-direction:column;
  justify-content: space-evenly;
  
  

}
#blocks-kyrie7{
  
  background-image:linear-gradient(#00b7ff,#00a1e1,#006289,#00212d);
}
#kswiss .blocks{
  background-image:linear-gradient(#f9183a,#ea4912, #1e3e50, #0d1b23);}

#ultraMoire .blocks{
  background-image:linear-gradient(rgb(255, 51, 0),  rgb(215, 19, 55),  rgb(40, 4, 10));
}

#superrep .blocks{
  background-image:linear-gradient(#b7ff00,#b7ff00,#658d00,#3c5400,#161f00);
}
.block{
  width:100%;
  height:0.5vw;
  background-color:#121212;
}
.shutter{
  width:100%;
  opacity:0;
  flex-grow:1;
  background-color:#121212;
  
  transition-duration:0.9s;
}
.blocks .shutter-closed:nth-child(11){opacity:1;transition:1.85s ease-out}
.blocks .shutter-closed:nth-child(9){opacity:1;transition:1.83s ease-out}
.blocks .shutter-closed:nth-child(7){opacity:1;transition:1.5s ease-out}
.blocks .shutter-closed:nth-child(5){opacity:1;transition:1.3s ease-out}
.blocks .shutter-closed:nth-child(3){opacity:1;transition:1s ease-out}
.blocks .shutter-closed:nth-child(1){opacity:1;transition:0.8s ease-out}



.landing-shoe-text{
  flex-basis:25%;
  max-width:25%;
  background-color:rgba(6, 6, 241, 0);
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-self: flex-start;
  
  
}
.landing-shoe-text .brand-name{
  color:white;
  font-family: 'Sinkin Sans 900 X Black Italic', sans-serif;
  font-weight:900;
  font-size: 5vw;
  text-transform: uppercase;
  font-style: italic ;
  line-height:1
  
}
.landing-shoe-text .shoe-name{
  color:rgb(144, 144, 144);
  font-family: 'Sinkin Sans 900 X Black Italic', sans-serif;
  font-size: 3.0vw;
  text-transform: uppercase;
  font-weight:bold;
  white-space: nowrap; 
  
  
}


.landing-shoe-text .small-text{
  color:rgb(224, 224, 224);
  font-family: 'Roboto', sans-serif;
  font-size: 1.4vw;
  margin-top:1.8em;
  font-weight:400;
  
}
.landing-shoe{
  flex-basis:55%;
  height:fit-content;
  background-color:rgba(244, 3, 3, 0);
  align-self:center;
  display:flex;
  justify-content: center;
  align-items:flex-end;
  
  
}
.landing-shoe img{
 width:90%;
  align-self:center;
  
  border-style:solid;
  border-color:rgba(41, 7, 234, 0);
  
  
  
}
.buy-now-button {
  
  padding: 10px 25px;
  background: linear-gradient(to right, #696969, #2e2e2e);
  border: none;
  border-radius: 100px;
  color: white;
  font-family: 'Roboto Condensed', sans-serif;
  font-size:1.5vw;
  text-align: center;
  text-decoration:none;
  
  cursor: pointer;
  transition: background 0.3s ease;
  
  position:absolute;
  
  bottom:3%;;
  left:11%;
  width:20%;
  
}
.buy-now-button:hover {
  background: radial-gradient(to right, #3b3b3b, #1b1b1b);
  opacity:0.8
}
.buy-now-button a, .buy-now-button2 a{
  text-decoration: none;; color: white;
}


/*begginning of tablet+ phone design components*/
.portrait-pane{
  /*contains row of the landing shoe images*/
  width:400vw;
  flex-grow:0;
  display:none;
  justify-content: space-around;
  transition:1.0s;
}
.portrait-pane img{
  width:90vw;
}
.portrait-button-pane{
  display:none;/*visible in phone+ size*/
  transition:1.0s;
}
.buy-now-button2{
  /*tablet*/
  display:none;/*visible in phone+ size*/
  
}



.mobile-nav{
  width:100vw;
  height:100vh;
  background-color:#121212;
  z-index:71;
  position:fixed;
  transform-origin: top;
  transition: transform 400ms ease-in-out;
  transform: scale(0,1);
}
.mobile-nav2{
  display:block;
  transform: scale(1,1);
}
.mobile-nav ul {
  display:flex;
  flex-direction:column;
  justify-content: space-around;
  list-style-type: none;
  align-items: center;
  margin-top:1em;
  
 
}
.mobile-nav ul li{
 margin:1.1em
}
.mobile-nav ul li:last-child a
{ /*TRKICKS home link*/
  font-size:2.0em;
  font-family: 'Sinkin Sans 300 Light', sans-serif;
  font-weight:200;
  
  
}
.mobile-nav ul li span{
  /*TRKICKS home link*/
  color:var(--c1);
  
}
.mobile-nav ul li a{
  text-decoration: none;
  color:white;
  text-transform: uppercase;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight:200;
  position:relative;
  font-size:xx-large;
  
}



.hamburger{display:none;}


.hamburger div
{
  width: 35px;
  height: 2px;
  background-color: var(--c1);
  margin: 5px 0;
  transition: all 0.3s cubic-bezier(.08,.81,.87,.71);
  
}
.hamburger div:nth-child(1){
transform-origin: 50% 50%;

}

.hamburger div:nth-child(3){
transform-origin: bottom right;
}

#toggle{display:none;}
#toggle:checked ~ .hamburger div:nth-child(1){
transform: translate(0px, 7.18px) rotate(45deg) ;

}
#toggle:checked ~ .hamburger div:nth-child(2){
transform: rotate(495deg) ;
}
#toggle:checked ~ .hamburger div:nth-child(3){
transform: rotate(45);
opacity: 0;
}
@media (max-width:1200px) and (min-width:501px){
  /* tablets width change only*/
  header{
    /* tablets width change only*/
    min-height:120px;
    height:15vh;
    align-items:flex-end;
    background-color:#121212;
    
    
  }
  body{
    margin-top:120px;
  }
  .company-name-wrap{
    /* tablets*/
    /* tablets width change only*/

    /*align it absolutely in top left corner*/
     
     position:absolute;
     left:5vw;
     width:fit-content;
     height:fit-content;
     top:1em;
     transition:1.5s;/*for when search bar expands*/
     transform:scale(1,1)
    }
  
  .icons{
    /* tablets width change only*/
    width:fit-content;
    height:fit-content;
    position:absolute;
    right:2em;
    top:1em;
    
    
    background-color:rgba(255, 0, 0, 0);
  }
  nav{
    /* tablets width change only*/
    background-color:rgba(0, 0, 255, 0);
    /*because header is increased by 5vh nav dropped by accordingly by changes in header. See above.
    margin:0
  }


nav ul li a {
  /* tablets width change only*/
  font-size:16px;
}
nav ul li a:active{
  /* tablets width change only*/
  color:var(--c1)}
  

  
}


@media (max-width:1030px) and (min-width:500px){
  /*width only*/
  
  
    nav{
      /* tablets*/
      
      /*because header is increased by 5vh nav dropped by..*/
      margin:0;
    }
  

  nav ul li a {
    /* tablets*/
    font-size:2.0vw;
  }

}


@media (orientation: portrait) 
{
    
   
    
  
  

    
  
  .landing-content{
    /* tablets*/
    height:90vh;
    background-color:rgba(255, 166, 0, 0);
    flex-direction:column;
    justify-content:flex-start;
  }
  
  .portrait-pane{
    /*contains row of the landing shoe images*/
    /* tablets*/
    width:400vw;
    
    flex-grow:0;
    display:flex;
    align-content:center;
    justify-content: space-around;
    
  }
  .portrait-pane div{
    width:90vw;
    max-width: 600px;;
    background-color:rgba(128, 0, 113, 0);
    display:flex;
    align-items:center;
    flex-grow:0;
    justify-content: center;
    
    
  }
  .portrait-pane img{
    
    width:100%;
    border-style:solid;
    border-color:rgba(0, 255, 38, 0);
    flex-grow:0;
    
    
  }
  .portrait-button-pane{
    width:400vw;
    display:flex;
    justify-content: space-around;
    
    background-color:rgba(255, 0, 0, 0);
    
    align-items:center;
    flex-grow:1;

  }
  .buy-now-button2{
    /*tablet*/
    width:90vw;;
    color:white;
    background-color:rgba(0, 128, 0, 0);
    display:block;
    padding: 10px 25px;
    background: linear-gradient(to right, #696969, #2e2e2e);
    border: none;
    border-radius: 50px;
    color: white;
    font-family: 'Roboto Condensed', sans-serif;
    font-size:4vw;
    
    text-align: center;
    text-decoration:none;
    height:fit-content;
    
    cursor: pointer;
    transition: background 0.3s ease;
    
  }
    .flex-top-padding{
      /* tablets*/
      flex-grow:1;
      align-items:center;
      background-color:rgba(0, 0, 255, 0);
      
    }
    h2{
      /* tablets*/
      font-size: 2.6vh;
      
    }
    .flex-bottom-padding{
      /* tablets*/
      pointer-events: none;
      border-style:solid;
      border-color:rgba(0, 0, 255, 0);
      flex-grow:0;
    }
    .movable{
      /* tablets*/
      display:flex;
      align-items: center;
      flex-basis:30%;
      flex-grow: 0.0;
      
    }
    .landing-row{
      
      justify-content:center;
      margin-left:1.3em;
      margin-right:1.3em;
      column-gap:3%;
      height:100%;
      
    }
    
   
    .blocks{
      /* tablets*/
      height:100%;
      flex-basis: 5%;
      
      
    
      
      
      
    }
    .block{
      /* tablets*/
      height:1vw;
    }
    .landing-shoe-text{
      /* tablets*/
      flex-basis:90%;
      max-width:90%;
      background-color:rgba(6, 6, 241, 0);
      display:flex;
      flex-direction:column;
      justify-content:flex-start;
      align-self:flex-start;
      text-align:left;
      margin-left:0.4em;
      position:relative;
      height:100%;

      
      
      
      
    }
  .landing-shoe-text .brand-name{
    /* tablets*/
    font-size: calc(25px + 5vh);
    
  }
  .landing-shoe-text .shoe-name{
    /* tablets*/
    color:rgb(144, 144, 144);
    font-family: 'Sinkin Sans 900 X Black Italic', sans-serif;
    font-size: calc(10px + 3vh);
    text-transform: uppercase;
    font-weight:bold;
    white-space:wrap;
    
    
    
  }
  
  
  .landing-shoe-text .small-text{
    /* tablets*/
    
    font-size: 2vh;
    margin-top:1.0em;
    
    
  }
  
  .landing-shoe{
    /* tablets*/
    /*position:absolute;
    top:60%;
    left:50%;
    transform:translate(-50%,0);
    width:90%;*/
    display:none;
  }
  .buy-now-button {
    /* tablets*/
    /*disable desktop btns*/
    
    display:none;
  }
   
  .buy-now-button2:hover {
    /* tablets*/
    background: radial-gradient(to right, #3b3b3b, #1b1b1b);
    opacity:0.8;
  }  
   
}




@media (max-width:500px) and (min-width:0px){
  header{
    /* phone */
    
    height:10vh;
    min-height:80px;
    
    display:flex;
    justify-content:space-between;
    
    transition:0.5s;
    align-items:center;
    
   
    
  }
  body{
    margin-top:80px;
  }
  .company-name-wrap{
    /* phone */
   DISPLAY:NONE;
   
    
     
     
    }
 
  .icons{
    /* phone */
    
    position:static;
    order:2;
    
    
    
    
  }
  .hamburger-wrap{
    /* phone */
    transform:scale(1,1);
    background-color:rgba(0, 122, 128, 0);
    width:5vh;
    height:5vh;
    
    display:flex;
    justify-content: center;
    align-items: center;
    order:1;
    transition-property: transform 1s;
    transition:1.0s;/*for when search bar expands*/
  } 
  
  #toggle{
    /* phone */
    display:block;
    position:absolute;
    width:5vh;height:5vh;
    opacity:0;
    z-index:10;
    background-color:orange;
    
  }
  .hamburger{
    /* phone */
    display:inline-block; 
    background-color:rgba(252, 2, 181, 0);
    
    
  }
  

nav{display:none;}
.landing-shoe-text .brand-name{
  /* phone*/
  font-size: calc(30px + 1vh);
  
  
}
.landing-shoe-text .shoe-name{
  /* phone*/
  
  font-size: calc(10px + 1vh);
  
  white-space:wrap;
  
  
  
}
.preview{
  
  
  font-size:3vw;
  
  
  
}

.landing-content{
/* tablets*/
height:90vh;
background-color:rgba(255, 166, 0, 0);
flex-direction:column;
justify-content:flex-start;
}

.portrait-pane{
/*contains row of the landing shoe images*/
/* tablets*/
width:400vw;

flex-grow:0;
display:flex;
align-content:center;
justify-content: space-around;

}
.portrait-pane div{
width:90vw;
max-width: 600px;;
background-color:rgba(128, 0, 113, 0);
display:flex;
align-items:center;
flex-grow:0;
justify-content: center;


}
.portrait-pane img{

width:100%;
border-style:solid;
border-color:rgba(0, 255, 38, 0);
flex-grow:0;


}
.portrait-button-pane{
width:400vw;
display:flex;
justify-content: space-around;

background-color:rgba(255, 0, 0, 0);

align-items:center;
flex-grow:1;

}
.buy-now-button2{
/*tablet*/
width:90vw;;
color:white;
background-color:rgba(0, 128, 0, 0);
display:block;
padding: 10px 25px;
background: linear-gradient(to right, #696969, #2e2e2e);
border: none;
border-radius: 50px;
color: white;
font-family: 'Roboto Condensed', sans-serif;
font-size:4vw;

text-align: center;
text-decoration:none;
height:fit-content;

cursor: pointer;
transition: background 0.3s ease;

}
.flex-top-padding{
  /* tablets*/
  flex-grow:1;
  align-items:center;
  background-color:rgba(0, 0, 255, 0);
  
}
h2{
  /* tablets*/
  font-size: 2.6vh;
  
}
.flex-bottom-padding{
  /* tablets*/
  pointer-events: none;
  border-style:solid;
  border-color:rgba(0, 0, 255, 0);
  flex-grow:0;
}
.movable{
  /* tablets*/
  display:flex;
  align-items: center;
  flex-basis:30%;
  flex-grow: 0.0;
  
}
.landing-row{
  
  justify-content:center;
  margin-left:1.3em;
  margin-right:1.3em;
  column-gap:3%;
  height:100%;
  
}


.blocks{
  /* tablets*/
  height:100%;
  flex-basis: 5%;
  
  

  
  
  
}
.block{
  /* tablets*/
  height:1vw;
}
.landing-shoe-text{
  /* tablets*/
  flex-basis:90%;
  max-width:90%;
  background-color:rgba(6, 6, 241, 0);
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-self:flex-start;
  text-align:left;
  margin-left:0.4em;
  position:relative;
  height:100%;

  
  
  
  
}
.landing-shoe-text .brand-name{
/* tablets*/
font-size: calc(25px + 5vh);

}
#kswiss .landing-shoe-text .brand-name{
  font-size: calc(25px + 3.5vh);
}
.landing-shoe-text .shoe-name{
/* tablets*/
color:rgb(144, 144, 144);
font-family: 'Sinkin Sans 900 X Black Italic', sans-serif;
font-size: calc(10px + 2.5vh);
text-transform: uppercase;
font-weight:bold;
white-space:wrap;



}


.landing-shoe-text .small-text{
/* tablets*/

font-size: 1.8vh;
margin-top:1.0em;


}

.landing-shoe{
/* tablets*/
/*position:absolute;
top:60%;
left:50%;
transform:translate(-50%,0);
width:90%;*/
display:none;
}
.buy-now-button {
/* tablets*/
/*disable desktop btns*/

display:none;
}

.buy-now-button2:hover {
/* tablets*/
background: radial-gradient(to right, #3b3b3b, #1b1b1b);
opacity:0.8;
} 
.landing-content{
  min-height:400px;
} 
h2{
  font-size:16px;
}
}
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/

/*                                                   */


#top-brands{
  height:auto;
  width:100vw;
  min-width:300px;
  font-family:'arial condensed';
  
  background-color:#121212;
  padding-top:2.0em;
  padding-bottom:2.0em;
  
  color:#fbfbfb;
  overflow-y: hidden;
  
}
.brand-row{
  display:flex;
  justify-content:center;;
  align-items:center;
  overflow-x: hidden;
  width:100%;
  column-gap:50px;
  
}


.brand-row p{
  font-size:calc(1em + 2vw);
  text-transform: uppercase;
  font-family:'arial condensed';
  margin:auto;
  white-space: nowrap;
  
}
.brand-row  div {
  
  flex-basis:12%;
  

}
.brand-row  div img{
width:100%;
}
@media (orientation: portrait) {
  .brand-row{
    flex-direction:column;
    row-gap:100px;
    margin-top:50px;
    margin-bottom:150px;
  }
  .brand-row p{
    font-size:calc(1em + 7vw);
    
  }
  .brand-row div{
    width:70%;
    display:flex;
    justify-content: center;
    align-items:center;
  }
  
}

.brand-pics{
  display:flex;
  justify-content: space-around;
  margin-top:3em;
  
}
.brand-pics div{
  flex-basis: 25%;
  position:relative;/*exists for inner anchor*/
  display:flex;
  justify-content: center;
  align-items:center;
}
.brand-pics div img{
  width:100%;
  
}
.brand-pics div a{
  width:100%;
  height:100%;
  position:absolute;
}

@media (orientation: portrait) or (max-width:500px){
  .brand-pics{
    flex-direction:column;
  }
  .brand-pics div  {
    width:80%;
    margin:auto;
  }
  
}



#top-collections{
  min-width:300px;
  height:auto;
  width:100vw;
  font-family:'arial condensed';
  
  background-color:#121212;
  padding-top:2.0em;
  padding-bottom:2.0em;
  
  color:#fbfbfb;
  overflow-y: hidden;
  
}
#top-collections h1{
  
  text-transform: uppercase;
  font-family:'arial condensed';
  font-size:calc(2em + 2vw);
  margin-left:40px;;
  font-weight:normal;
}
.tc-flex{
  display:flex;
  justify-content: flex-start;
  
  column-gap:3em;
  padding-left:3em;
  padding-right:3em;
  margin-left:1em;
  padding-top:2em;
  background-color:rgba(0, 0, 255, 0);
  
 

}
#top-collections .card{
  flex-basis:60%;
  font-size:1.3vw;
  
  
  
}
#top-collections img{
  width:100%;
  
}
#top-collections p {
  
  font-family:'roboto';
  width:80%;
  text-align: center;
  margin:auto;
  padding:1em;
  text-transform: uppercase;
}
.tc-flex div{
  position:relative;/*for inner links*/
}
.tc-flex div a{
  position:absolute;
  width:100%;
  height:100%;
  background-color:rgba(0, 0, 255, 0);
  top:0;
}

#top-collections-paragraph{
  width:0%;
  font-size:20em;
  margin:0;
  font-size:2.5vw;
  
  
}

@media (orientation: portrait) or (max-width:500px){
  .tc-flex{
    flex-direction:column;
    align-items:center;
    margin:2.5em;;
    padding:0;
    row-gap:4em;
  }
  #top-collections p{
    font-size:calc(2em + 1vw)
  }
  #top-collections-paragraph{
    width:100%;
    font-size:calc(1.8em + 1vw);
  }
  
}

#addidas-ad{
  background-image: url('addidas-ad/fachry-zella-devandra-bNSdIkCBJOs-unsplash.jpg');
  width:100vw;
  height:90vh;
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover;
  position:relative;
  font-family:'arial';
  border-style:solid;
  border-color:rgba(0, 0, 255, 0);
  
  
}
.addidas-text{
  background-color:rgba(255, 0, 166, 0);
  position:absolute;
  left:4%;
  top:0%;
  transform:translateY(-0%);
  color:#e7e7e7;
  display:flex;
  flex-direction:column;
  height:fit-content;
  row-gap:20px;;
  justify-content: space-around;
  align-items:flex-start;
  width:fit-content;
}
.addidas-text p:nth-child(1){
  font-family:'arial';
  font-size:11vw;
  line-height:normal;
  font-style: italic;
 
}
.addidas-text p:nth-child(2){
  font-family:'arial';
  font-size:3vw;
  text-transform: uppercase;
  text-align: center;
  font-style: italic;
}

.btn-price-wrap{
  position:absolute;
  right:5%;
  top:40%;
  transform:translateY(-50%);
  display:flex;
  justify-content: center;
  flex-direction:column;
  align-items:center;
  row-gap:3em;
}
#addidas-poster-price{
  font-family:'arial';
  font-size:2.5vw;
  text-transform: uppercase;
  
  
  color:#e7e7e7;
  
  
}
.addidas-btn{
  
  color:red;
  display:inline-block;
  color:#e7e7e7;
  font-size:2.5vw;
  text-transform: uppercase;
  border-style:solid;
  border-width:2px;
  color:#e7e7e7;
  padding: 2.0vw 6vw;
  transition:0.2s;
  position:relative;
  background-color:rgba(0, 128, 0, 0);
  
  


}
.addidas-btn:hover{
  
  cursor:pointer;
  color:var(--c1)
}
.addidas-btn a{
  position:absolute;
  width:100%;
  height:100%;
  background-color:rgba(255, 0, 0, 0);
  top:0;
  left:0;
  
  
  
  color:var(--c1)
}
@media (orientation: portrait) or (max-width:500px){
  .addidas-text{
    
    row-gap:5px;;
    
  }
  .addidas-text p:nth-child(1){
    
    font-size:20vw;
    
   
  }
  .addidas-text p:nth-child(2){
    
    font-size:5vw;
    
  }
  
  .btn-price-wrap{
    
    top:87%;
    
    
    
  }
  #addidas-poster-price{
    font-family:'arial';
    font-size:4vw;
    text-transform: uppercase;
    
    
    color:#e7e7e7;
    
    
  }
  .addidas-btn{
    font-size:5vw;
  }
}


#inspiration{
  width:100vw;
  
  background-color:rgb(248, 248, 248);
  padding:2em;
  
  
}
#inspiration h1{
  text-transform: uppercase;
  font-family:'arial condensed';
  
  font-size:calc(2em + 2vw);
  margin-left:40px;;
  margin-top:0.5em;
  margin-bottom:0.5em;
  font-weight:normal;
  color:#e7e7e7;
  color:black;
  font-weight: bold;
  
}
.inspiration-flex img{
  width:100%;
  margin-bottom:1em;
}

.inspiration-flex{
  display:flex;
  width:100%;
  justify-content: space-around;
  color:#e7e7e7;
  text-align:center;
  text-transform: capitalize;
  font-size:calc(8px + 1.5vw);
  font-family:'roboto'; 
  color:black;
  
  


}
.inspiration-flex div{
  flex-basis:20%;
}

@media (orientation: portrait) or (max-width:500px){
 
  #inspiration h1{
    text-transform: uppercase;
    font-family:'arial condensed';
    
    font-size:calc(2.5em + 2vw);
    margin-left:0;
    margin-top:0.5em;
    margin-bottom:0.5em;
    font-weight:normal;
    color:#e7e7e7;
    color:black;
    font-weight: bold;
    
  }
  .inspiration-flex img{
    width:100%;
    margin-bottom:1em;
  }
  .inspiration-flex div p{
    font-size:calc(2em + 1vw);
    margin-bottom:1.5em;
    font-weight:bold;
  }
  
  .inspiration-flex{
    display:flex;
    flex-direction:column;
    width:100%;
    justify-content: space-around;
    color:#e7e7e7;
    text-align:center;
    text-transform: capitalize;
    font-size:calc(8px + 1.5vw);
    font-family:'roboto'; 
    color:black;
    
    
  
  
  }
  .inspiration-flex div{
    flex-basis:20%;
  }
}
.customer-service{
  display:flex;
  flex-direction:row;
  justify-content: space-around;
  padding:1em;
  padding-top:100px;;
  height:fit-content;
  background-color:#121212;
  padding-bottom:100px;
  

}
.cus-ser-box{
  background-color:#303030;
  width:25%;
  height:10%;
  min-height:130px;
  display:flex;
  flex-direction:column;
  justify-content: center;
  align-items: center;
  color:#e7e7e7;
  text-align:center;
  font-family:'roboto';
  padding:0.5em;
  position:relative;
  
}
.cus-ser-box a{
  position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        text-decoration: none; /* No underlines on the link */
        z-index: 10; /* Places the link above everything else in the div */
        background-color: #FFF; /* Fix to make div clickable in IE */
        opacity: 0; /* Fix to make div clickable in IE */
        filter: alpha(opacity=1); /* Fix to make div clickable in IE */
}
.cus-ser-box:hover >.cus-ser-icon-n-text img {
  opacity:1;
}
.cus-ser-box:hover >.cus-ser-icon-n-text div {
  color:#e7e7e7;
}
.cus-ser-icon-n-text{
  width:33%;
  height:80%;
  background-color:rgba(0, 0, 255, 0);
  display:flex;
  flex-direction:column;
  justify-content: center;
  align-items: center;
}
.cus-ser-icon-n-text img{
  width:100%;
  opacity:0.3;
  height:100%;
  
  
  
}

.cus-ser-icon-n-text div{
  
  text-align:center;
  background-color:rgba(0, 0, 255, 0);
  color:#e7e7e754;
  white-space: nowrap;
  
}

@media (orientation: portrait) or (max-width:500px){
  .cus-ser-icon-n-text div{
  
   
    white-space: wrap;
    
  }
}
.information{
  position:relative;
  display:block;
  background-color:#000000;
}
.information h1{
  color:#e7e7e7;
  padding-left:1.5em;
  margin-top:1.5em;
  margin-bottom:1.5em;
  font-family:'roboto';
  
  
  
}
.info-links{
  display:flex;
  flex-direction:column;
  padding-left:1.5em;
  

}
.info-links a{
  text-decoration: none;
  color:#e7e7e7;
  padding:0;
  margin:10px;
  font-family:'roboto';
  
  width:fit-content;
  
}
.info-links a:hover{
  text-decoration: underline;
  
}
.information .footer{
 text-align:center;
 color:#e7e7e7;
 font-family: 'roboto';
 padding:1.5em;
}
.icon-tray{
  
  display:flex;
  position:absolute;
  right:0;
  top:0;
  padding:2em;
  background-color:rgba(0, 0, 255, 0);

}
.icon-tray div img{
  -webkit-filter:invert(100%);
     filter:progid:DXImageTransform.Microsoft.BasicImage(invert='1');
     width:100%;
     }
.icon-tray div{
      position:relative;
      width:fit-content;
      height:fit-content;
      background-color:rgba(255, 0, 0, 0);
      margin:10px;
      transition: all 0.3s ease-in-out;
      
     }
.icon-tray div a{
  position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        text-decoration: none; /* No underlines on the link */
        z-index: 10; /* Places the link above everything else in the div */
        background-color: #ff00b7; /* Fix to make div clickable in IE */
        opacity: 0; /* Fix to make div clickable in IE */
        filter: alpha(opacity=1); /* Fix to make div clickable in IE */
        
}


.icon-tray div::after{
  content:'';
  background-color:var(--c1);
  width:0%;
  height:0px;
  position:absolute;
  left:0;
  bottom:-4px;;
  transition: width 0.1s ease ease-in-out;
  transition: height 0.2s ease-in-out;
 }


.icon-tray div:hover::after{
  /*element 'after' grows when hovering over div*/
  width:100%;
  height:4px;


}
@media (orientation: portrait) or (max-width:500px){
  
  
  .icon-tray{
    flex-direction:column;
    margin-bottom:20em;
    background-color:rgba(0, 0, 255, 0);
  }
  .footer{
    margin-top:5em;
    
  }
}

@media(max-width:1200px) and (min-width:501px){

  .search-bar-expanded{
    width: calc(100% - 2em - 5*0.3em - 100px - 30px );
    border-color:rgba(255, 255, 255, 0.2);
    background-color:#121212;
    
    
  }
  .icons-when-expanded{
  
    width: 100%;
    background-color:rgba(9, 232, 39, 0);
  }

  .company-name-wrap-when-searchbar-expands-in-tablet-mode{
    opacity:0;
    transform:scale(0,0)
  }
  
}

/*mobile searchbar adjustments*/
@media (min-width:0px) and (max-width:500px){
  /*removes cart and user icons plus hamburger*/
.user-wrap-when-bar-expanded-in-mobile-mode{display:none}
.cart-wrap-when-bar-expanded-in-mobile-mode{display:none}
.hamburger-wrap-when-bar-expanded-in-mobile-mode{
  position:absolute;
  opacity:0;
  transform:scale(0,0)
}

/*also expand icon tray (.icons) and search bar*/

.icons-when-expanded{width:100%;background-color:rgba(128, 0, 102, 0);}
  
  
  

.search-bar-expanded{width:100%;background-color:rgba(255, 255, 0, 0);}

}



