
.navbar {
    overflow: hidden;
    font-family: Arial;
    display: flex;
  }

  .logo {
    background-image: url(../images/columbialogo.png);
    width: 158px; height: 28px;
    background-size:cover;
    background-repeat: no-repeat;
    margin-top: 20px;
    margin-right: 20px;
  }
  

  .navbar a {
    float: left;
    font-size: 16px;
    color: #333;
    text-align: center;
    padding: 26px 16px;
    text-decoration: none;
  }



  .dropdown {
    float: left;
    overflow: hidden;
  }
  
  /* Dropdown button */
  .dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: #333;
    padding: 26px 16px;
    background-color: inherit;
    font: inherit;
    margin: 0; 
  }
  
  .navbar a:hover, .dropdown:hover .dropbtn {
    border-bottom: 2px solid #333;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    width: 50%;
    left: 0;
    box-shadow: 0px 8px 16px 0px rgb(46, 46, 46);
    z-index: 1;
  }
  

  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  .row {
    display: flex;
  }

  .column {
    float: left;
    width: 50%;
    padding: 10px;
    background-color: white;
    height: 500px;
  }

  .column:nth-child(2) {
    background-image: url(../images/columbia.jpg);
  }
  
  .column a {
    float: none;
    color: black;
    padding: 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    width: 100%;
  }

  .column > a:first-child {
    color: red;
  }
  
  .column a:hover {
    background-color: #cccccca6;
  }

  .under {
    height: 50px; width: 100%;
    background-color: #cccccca6;
    margin-top: 10px;
  }

  .under p{
    text-align: center;
    padding-top: 16px;
  }

  .dropdown2 {
    position: absolute;
    right: 0px; top: 0px;
    width: 50%; height: 90%;
    background-color: #e6e6e6;
    display: none;
  }

  .column a:nth-child(4):hover ~ .dropdown2{
    display: block;
}

.dropdown2 {
    display: none;
}

.dropdown2:hover {
    display: block;
}

a span {
    background-image: url(../images/tri.svg);
}

.winter {
    width: 98%;
    color: white;
    height: 100px;
    background-color: #a30707;
    margin: 0 auto;
    margin-top: 20px;
}

.winter h1, .winter p {
    text-align: center;
}

.winter h1 {
    padding-top: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 25px;
}

.hero {
    width: 100%;
    height: 700px;
    background-image: url(../images/mount2.jpg);
    background-size: cover;
    margin-top: 20px;
}

.hero h1 {
    font-size: 80px;
    font-family:Arial, Helvetica, sans-serif;
    color: white;
    text-align: center;
    padding-top: 300px;
    font-weight: 700;
}

.hero p {
    color: white;
    text-align: center;
    font-size: 20px;
    padding-bottom: 20px;
}

.but {
    width: 200px; height: 38px;
    margin: 0 auto;
    border-radius: 32px;
    background-color: white;
    color: black;
    cursor: pointer;
}

.but p {
    color: black;
    font-size: 14px;
    font-weight: 500;
    padding-top: 10px;
}

.but:hover{
    background-color: rgb(160, 160, 160);
}

.user, .cart {
    position:absolute;
    height: 30px; width: 30px;
    top:27px;
    cursor: pointer;
}

.user {
    right: 20px;
    background-image: url(../images/shopping-bag.svg);
    background-size: cover;
}

.cart {
    right: 70px;
    background-image: url(../images/user.svg);
    background-size: cover;
}

