/*Nav css goes here*/
* *::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 12px;
}
body {
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}
header {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  background-color: #ffffff;
}

.arrow-sorel {
  border: solid #d4af37;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.right-sorel {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.left-sorel {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.up-sorel {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.down-sorel {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.container-sorel-nav {
  width: 100% !important;
  position: flex;
  background-color: #000000;
  max-width: 250rem;
  margin: 0 auto;

  margin-bottom: 20px;
}
.menu-icons {
  color: #fff2b9;
  font-size: 4rem;
  position: absolute;
  top: 75%;
  right: 1rem;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 5000;
  display: none;
}
nav {
  display: flex;
  align-items: center;
  width: 100%;
  height: 8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 15000;
}
.logo {
  width: 7rem;
  height: 5rem;
  background-color: #d4af37;
  display: flex;
  border-radius: 100%;
  margin-right: 5rem;
}

.logo i {
  margin: auto;
  font-size: 3rem;
  color: #f5f5f5;
}

.nav-list {
  display: flex;
  width: 100%;
  align-items: center;
}
.nav-list li {
  line-height: 8rem;
  position: relative;
}
.sub-menu li {
  line-height: 4rem;
}
.nav-list a {
  display: block;
  color: #f5f5f5;
  padding: 0 1.5rem;
  font-size: 1.4rem;
  text-transform: uppercase;
  transition: color 650ms;
}
.nav-list a:hover {
  color: #d4af37;
}

.btn {
  font-family: FontAwesome, "Montserrat", sans-serif !important;
  padding: 0.5rem;
  display: inline-block;
  background-color: #d4af37;
  color: #000000;
  border: 2px solid #d4af37;
  border-radius: 4rem;
  text-align: center;
  transition: background-color 650ms;
}
.btn-2 {
  font-family: "Montserrat", sans-serif !important;
  padding: 0.5rem;
  display: inline-block;
  background-color: #ffffff;
  color: #000000;
  width: 22%;
  border: 2px solid #ffffff;
  border-radius: 2rem;
  text-align: center;
  transition: background-color 650ms;
  -webkit-border-radius: 2rem;
  -moz-border-radius: 2rem;
  -ms-border-radius: 2rem;
  -o-border-radius: 2rem;
  -webkit-transition: background-color 650ms;
  -moz-transition: background-color 650ms;
  -ms-transition: background-color 650ms;
  -o-transition: background-color 650ms;
}

.btn-3 {
  font-family: "Montserrat", sans-serif !important;
  padding: 0.5rem;
  display: inline-block;
  background-color: #d4af37;
  color: #000000;
  border: 2px solid #d4af37;
  border-radius: 2rem;
  text-align: center;
  transition: background-color 650ms;
  -webkit-border-radius: 2rem;
  -moz-border-radius: 2rem;
  -ms-border-radius: 2rem;
  -o-border-radius: 2rem;
}

.btn:hover {
  color: #d4af37;
  background-color: rgba(0, 0, 0, 0.2);
  transition: all 650ms;
}
.btn-2:hover {
  color: #d4af37;
  background-color: #ffffff;
  transition: all 650ms;
}

.btn-3:hover {
  color: #ffffff;
  background-color: #d4af37;
  transition: all 650ms;
}

option {
  height: 35px;
  font-size: 15px;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.sub-menu {
  width: 35rem;
  display: block;
  position: absolute;
  border-top: 3px solid #d4af37;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 4000;
  top: 16rem;
  opacity: 0.8;
  visibility: hidden;
  transition: all 650ms ease;
}

.sub-menu::before {
  content: "";
  position: absolute;
  top: -2.5rem;
  left: 3rem;
  border: 1.2rem solid transparent;
  border-bottom-color: #d4af37;
}

.sub-menu .sub-menu::before {
  top: 0.9rem;
  left: -2.5rem;
  border: 1.2rem solid transparent;
  border-right-color: #d4af37;
}

.sub-menu .sub-menu {
  border-top: none;
  border-left: 3px solid #d4af37;
  top: 0;
  left: 160%;
}

.nav-list li:hover > .sub-menu {
  top: 8rem;
  opacity: 1;
  visibility: visible;
}
.sub-menu li:hover > .sub-menu {
  top: 0;
  left: 100%;
}
li.move-right {
  margin: auto 0 auto auto;
  line-height: initial;
}

@media screen and (max-width: 850px) {
  .container-sorel-nav {
    position: relative;
  }
  .nav-list {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    display: none;
    flex-direction: column;
    align-items: initial;
    background-color: #000000;
    z-index: 1000;
    overflow-y: scroll;
  }

  .container {
    width: 100% !important;
  }
  .nav-list > li {
    line-height: 6rem;
  }
  .sub-menu {
    position: initial;
    border: 3px solid transparent;
    border-left-color: #000000;
    margin-left: 1rem;
    max-height: 0;
  }
  .sub-menu::before {
    display: none;
  }

  .nav-list li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    max-height: initial;
  }

  li.move-right {
    margin: 0 auto 0 0;
    line-height: initial;
  }
  .menu-icons {
    display: block;
  }

  #myMenuLinksX {
    display: none;
  }

  #navlist {
    display: none;
  }
}

/*End nav css*/

/*Hero*/
.hero {
  width: 100%;
  height: 100vh;
  background-size: cover;
}

.text {
  color: #000000;
  text-align: center;
}

.text h1 {
  font-size: 8rem;
  margin: 2rem 0;
  font-family: "Blastimo", sans-serif;
}

.text h2 {
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 300;
}

.text p {
  font-size: 1.6rem;
  margin-bottom: 5rem;
}

.text .btn {
  font-size: 1.6rem;
  padding-left: 3rem;
  padding-right: 3rem;
  color: #000000;
  text-transform: uppercase;
}

@media screen and (max-width: 830px) {
  .text h1 {
    font-size: 4rem;
  }

  .text .btn {
    font-size: 1.2rem;
  }
}

.txt_1-sorel {
  font-family: "Archivo Black", sans-serif;
  color: #000000;
  font-style: italic;
  font-size: 2rem;
}

.txt_2-sorel {
  font-family: "Archivo Black", sans-serif;
  color: #d4af37;
  font-size: 4rem;
  font-weight: bold;
}

.txt_3-sorel {
  font-family: "Archivo Black", sans-serif;
  color: #d4af37;
  font-size: 2.2rem;
  font-weight: bold;
}

.txt_4-sorel {
  font-family: "Archivo Black", sans-serif;
  color: #000000;
  font-size: 2.2rem;
  font-style: bold;
}

.margin-top-arbeq {
  margin-top: -35px !important;
}

.shop-the-look-banner-text2 {
  display: none;
}

.changeimgonsmalldevice1 {
  display: block;
}
.changeimgonsmalldevice2 {
  display: none;
}

@media screen and (max-width: 830px) {
  .txt_1-sorel {
    font-size: 1.25rem;
  }
  .txt_2-sorel {
    font-size: 2.2rem;
  }
  .txt_3-sorel {
    font-size: 1.5rem;
  }
  .txt_4-sorel {
    font-size: 1.25rem;
  }

  .item-shop-post-text {
    display: table-cell;
    content: "";
    height: 100%;
    left: 0;
    padding: 15px 5px;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    top: 100%;
    width: 100%;
    vertical-align: middle;
  }

  .shop-the-look-post {
    margin-top: -40rem;
    margin-bottom: 10rem;
  }

  .footer-top {
    display: inline-block;
  }

  .shop-the-look-banner-text {
    color: #000000;
    left: 0;
    margin-top: -2px;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    top: 50%;
    width: 100%;
  }

  .margin-top-arbeq {
    margin-top: 0px !important;
  }

  .shop-the-look-banner-text2 {
    display: none;
  }

  .changeimgonsmalldevice1 {
    display: none;
  }
  .changeimgonsmalldevice2 {
    display: block;
  }
}

@media screen and (max-width: 460px) {
  .txt_1-sorel {
    font-size: 0.95rem;
  }
  .txt_2-sorel {
    font-size: 1.9rem;
  }
  .txt_3-sorel {
    font-size: 1.2rem;
  }
  .txt_4-sorel {
    font-size: 0.95rem;
  }

  .shop-the-look-post {
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
  }
  .shop-the-look-banner-text {
    display: none;
  }

  .shop-the-look-banner-text2 {
    display: block;
    text-transform: uppercase;
    margin-top: 950px !important;
    text-align: center;
  }
  .shop-the-look-banner-text2 h2 {
    text-transform: uppercase;
    width: 98%;
  }
  .shop-the-look-banner-text2 a {
    text-transform: uppercase;
    width: 98%;
  }

  .btn {
    border: 1px solid #d4af37;
    border-radius: 1rem;
  }
  .btn-2 {
    border: 1px solid #ffffff;
    border-radius: 1rem;
  }

  .btn-3 {
    border: 1px solid #d4af37;
    border-radius: 1rem;
  }

  .item-shop-post-text {
    left: 0;
    padding: 5px 5px;
    top: 40%;
    width: 100%;
  }
}

/* SEARCH BOX SECTION */
.webdesigntuts-workshop {
  background: #151515;
  height: 100%;
  position: relative;
  text-align: center;
}

.webdesigntuts-workshop:before,
.webdesigntuts-workshop:after {
  content: "";
  display: block;
  height: 1px;
  left: 0%;
  margin: 0 0 0 0px;
  position: relative;
}

.webdesigntuts-workshop:before {
  background: #444;
  background: linear-gradient(left, #151515, #444, #151515);
}

.webdesigntuts-workshop:after {
  background: #000;
  background: linear-gradient(left, #151515, #000, #151515);
}

.webdesigntuts-workshop form {
  background: #111;
  background: linear-gradient(#1b1b1b, #111);
  border: 1px solid #000;
  border-radius: 5px;
  box-shadow: inset 0 0 0 1px #272727;
  display: inline-block;
  font-size: 0px;
  margin: 2px auto 0;
  padding: 5px;
  position: relative;
  z-index: 1;
}

.webdesigntuts-workshop input {
  background: #222;
  background: linear-gradient(#333, #222);
  border: 1px solid #444;
  border-radius: 5px 0 0 5px;
  box-shadow: 0 2px 0 #000;
  color: #888;
  display: block;
  float: left;
  font-size: 18px;
  font-weight: 100;
  height: 40px;
  margin: 0;
  padding: 0 5px;
  width: 260px;
}

.ie .webdesigntuts-workshop input {
  line-height: 40px;
}

.webdesigntuts-workshop input::-webkit-input-placeholder {
  color: #888;
}

.webdesigntuts-workshop input:-moz-placeholder {
  color: #888;
}

.webdesigntuts-workshop input:focus {
  animation: glow 800ms ease-out infinite alternate;
  background: #222922;
  background: linear-gradient(#333933, #222922);
  border-color: #393;
  box-shadow: 0 0 5px rgba(0, 255, 0, 0.2), inset 0 0 5px rgba(0, 255, 0, 0.1),
    0 2px 0 #000;
  color: #efe;
  outline: none;
}

.webdesigntuts-workshop input:focus::-webkit-input-placeholder {
  color: #efe;
}

.webdesigntuts-workshop input:focus:-moz-placeholder {
  color: #efe;
}

.webdesigntuts-workshop button {
  background: #222;
  background: linear-gradient(#333, #222);
  box-sizing: border-box;
  border: 1px solid #444;
  border-left-color: #000;
  border-radius: 0 5px 5px 0;
  box-shadow: 0 2px 0 #000;
  color: #fff;
  display: block;
  float: left;
  font-family: "Cabin", helvetica, arial, sans-serif;
  font-size: 13px;
  font-weight: 100;
  height: 40px;
  line-height: 40px;
  margin: 0;
  padding: 0;
  position: relative;
  text-shadow: 0 -1px 0 #000;
  width: 80px;
}

.webdesigntuts-workshop button:hover,
.webdesigntuts-workshop button:focus {
  background: #292929;
  background: linear-gradient(#393939, #292929);
  color: #5f5;
  outline: none;
}

.webdesigntuts-workshop button:active {
  background: #292929;
  background: linear-gradient(#393939, #292929);
  box-shadow: 0 1px 0 #000, inset 1px 0 1px #222;
  top: 1px;
}

@keyframes glow {
  0% {
    border-color: #393;
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.2), inset 0 0 5px rgba(0, 255, 0, 0.1),
      0 2px 0 #000;
  }
  100% {
    border-color: #6f6;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.6),
      inset 0 0 10px rgba(0, 255, 0, 0.4), 0 2px 0 #000;
  }
}

@media screen and (max-width: 850px) {
  .webdesigntuts-workshop input {
    background: #000;
    background: linear-gradient(#333, #222);
    border: 1px solid #444;
    border-radius: 5px 0 0 5px;
    box-shadow: 0 2px 0 #000;
    color: #888888;
    display: block;
    float: left;
    font-size: 18px;
    font-weight: 100;
    height: 40px;
    margin: 0;
    padding: 0 5px;
    width: 160px;
  }

  .webdesigntuts-workshop button {
    background: #222;
    background: linear-gradient(#333, #222);
    box-sizing: border-box;
    border: 1px solid #444;
    border-left-color: #000;
    border-radius: 0 5px 5px 0;
    box-shadow: 0 2px 0 #000;
    color: #fff;
    display: block;
    float: left;
    font-family: "Cabin", helvetica, arial, sans-serif;
    font-size: 13px;
    font-weight: 100;
    height: 40px;
    line-height: 40px;
    margin: 0;
    padding: 0;
    position: relative;
    text-shadow: 0 -1px 0 #000;
    width: 80px;
  }
}

.navigation_text {
  color: #ffffff;
  transition-property: color;
  transition-duration: 0.5s;
  transition-timing-function: ease;
}

.navigation_text:hover {
  color: #d4af37 !important;
}
