*, *:before, *:after {
  box-sizing: border-box;
}
html {
  -webkit-font-smoothing: antialiased;
}
body {
  margin: 0 auto;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
  text-rendering: optimizeLegibility;
  font-weight: 500;
}
div, section, footer, main {
  position: relative;
}
input, textarea, select {
  outline: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
}
a {
  transition: .2s;
}
button, .button {
  padding: 15px 20px;
  border: none;
  font-weight: 700;
  min-width: 200px;
  outline: none;
  font-family: 'Montserrat', sans-serif;
  transition: .2s;
  text-decoration: none;
  position: relative;
  text-align: center;
  box-shadow: 0 0 0 0 rgba(90, 153, 212, 0.502);
}
button:hover, .button:hover {
  cursor: pointer;
  background-color: #D86782;
}
button:active, .button:active {
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-name: pulse;
  animation-duration: .5s;
}
button:active, .button:active, a:active {
  transform: scale(.9);
}
body, section, header, footer, main {
  min-width: 1200px;
}
main {
  min-height: 80vh;
}
main {
  z-index: 1;
  padding: 0;
  margin: 0;
}
header, main, footer {
  overflow: hidden;
}
a:hover, .active {
  color: #D86782;
}
#menu-btn, #cart-btn {
  display: none;
}
.mobile-menu {
  display: none;
}
#cart-count {
	position: absolute;
	border-radius: 3px;
	right: 55px;
	padding: 2px 3px;
	font-size: 10px;
	top: 20px;
	color: #fff;
	z-index: 40;
}
form .row {
  display: flex;
  column-gap: 20px;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 20px;
}
form .half {
  width: 50%;
  border: 1px #eee solid;
  padding: 8px 10px;
}
form .half, form .fullwidth {
  display: flex;
  flex-wrap: nowrap;
  column-gap: 10px;
  align-items: center;
  transition: .3s;
}
form .half:focus-within,
form .fullwidth:focus-within {
  background: #D86782;
}
form .half:focus-within input,
form .fullwidth:focus-within input,
form .half:focus-within textarea,
form .fullwidth:focus-within textarea {
  color: #fff;
}
form .half:focus-within input::placeholder,
form .fullwidth:focus-within input::placeholder,
form .half:focus-within textarea::placeholder,
form .fullwidth:focus-within textarea::placeholder {
  color: #fff;
}
form .fullwidth {
  width: 100%;
  border: 1px #eee solid;
  padding: 8px 10px;
}
form input, form textarea, form select {
  border: none;
  width: 82%;
  padding: 10px;
  background: transparent;
}
form .half img, form .fullwidth img {
  height: 26px;
}
form textarea {
  width: 90%;
  min-height: 100px;
  align-self: flex-start;
}
form .special img {
  align-self: flex-start;
}
.thin-txt {
  font-weight: 300;
}
.m-right {
  margin-right: 5%;
}
.m-left {
  margin-left: 5%;
}
.m-bottom {
  margin-bottom: 5%;
}
.m-top {
  margin-top: 5%;
}
.hidden {
  display: none;
}
.center {
  text-align: center;
}
.align-vert {
  top: 50%;
  transform: translateY(-50%);
}
.align-left {
  text-align: left;
}
.align-right {
  text-align: right;
}
.img-bg {
  background-position: center;
  background-size: cover;
}
.overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  filter: opacity(.4);
  transition: .3s;
}
#modal {
  display: none;
  max-width: 1000px;
  padding: 30px;
}
#modal h3 {
  font-size: 1.8em;
}

/* Colors */
.gray-bg {
  background-color: #f2f2f2;
}
.gray-txt {
  color: #f2f2f2;
}
.dark-gray-txt {
  color: #636363;
}
.white-bg {
  background-color: #fff;
}
.white-txt {
  color: #fff;
}
.black-bg {
  background-color: #000;
}
.black-txt {
  color: #000;
}
.light-pink-bg {
  background-color: #fff0fa;
}
.light-pink-txt {
  color: #fff0fa;
}
.pink-bg {
  background-color: #D86782;
}
.pink-txt {
  color: #D86782;
}
.dark-pink-bg {
  background-color: #b4435e;
}
.dark-pink-txt {
  color: #b4435e;
}
/* Animations */
.invisible {
  opacity: 0;
  transition: 1s;
}
.visible {
  opacity: 1;
}
.hide-left {
  transition: 1.5s;
  left: -100vw;
}
.reveal-left {
  left: 0 !important;
}
.hide-right {
  transition: 1.5s;
  right: -110vw;
}
.reveal-right {
  right: 0 !important;
}
.slide-left {
  left: 0 !important;
}
@-webkit-keyframes pulse {
  0% {
  	-webkit-box-shadow: 0 0 0 0  rgb(216, 103, 130, 0.5);
  }
  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
  }
}
@keyframes pulse {
  0% {
  	box-shadow: 0 0 0 0  rgb(216, 103, 130, 0.5);
  }
  70% {
    box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
  }
}

/* header */
header {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 5px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
  z-index: 3;
  flex-wrap: nowrap;
}
header .logo-link {
  position: relative;
  display: flex;
}
header .logo {
  height: 60px;
  position: relative;
}
header nav {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 75%;
}
header nav menu {
  padding: 0;
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
  column-gap: 40px;
  justify-content: center;
}
header nav menu a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
}
header nav .icons {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
header nav .icons .icon {
  height: 24px;
}

/* footer */
footer .wrapper {
  display: flex;
  column-gap: 5%;
  align-items: flex-start;
  padding: 40px 5%;
  border-top: 1px #D86782 solid;
}
footer .wrapper > div {
  width: 20%;
}
footer .legal {
  padding: 20px 5%;
  
  a {
    color: #fff;
    text-decoration: none;
    
    &:hover {
      color: #D86782;
    }
  }
}
footer .wrapper > div h4 {
  font-size: 1.2em;
  margin-top: 0;
  margin-bottom: 10px;
}
footer .wrapper > div a {
  display: block;
  text-decoration: none;
  color: #000;
  line-height: 180%;
  position: relative;
  text-transform: capitalize;
}
footer .wrapper > div a:hover {
  color: #D86782;
}
footer .wrapper > div.social a {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
footer .wrapper > div.social a:last-of-type {
  margin-right: 0;
}
footer .wrapper > div.social a img {
  height: 24px;
  transition: .2s;
}
footer .wrapper > div.social a img:hover, .contact .sec1 .left > span .icon:hover  {
  transform: scale(1.1);
}
footer .social a.button {
  transition: .2s;
  min-width: 0;
  margin-right: 10px;
  padding: 10px 20px;
  font-size: .9em;
  color: #fff;
  margin-top: 20px;
}
footer .social a.button:hover {
  color: #fff;
}

/* Page */
.page .banner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  padding: 20px 3%;
  overflow: hidden;
}
.page .banner h1 {
  font-size: 3em;
  margin: 0 auto;
  z-index: 1;
  text-transform: uppercase;
}
.page .banner .overlay {
  filter: opacity(.7);
}

/* Home Page */
.home .banner {
  overflow: hidden;
  width: 100%;
}
.home .banner img {
  width: 100%;
}
.home .sec2 {
  padding: 5% 3%;
}
.home .sec2 h2 {
  font-size: 2em;
  margin-top: 0;
}
.home .sec2 h2 span {
  font-weight: 300;
}
.home .sec2 p {
  display: flex;
  font-size: 1.1em;
  flex-direction: column;
}
.home .sec2 button {
  margin-top: 20px;
}

.home .sec3 {
  padding: 40px 0;
}
.home .sec3 h2 {
  font-size: 2em;
}
.home .sec3 .scroller {
  padding-left: 1%;
  padding-right: 1%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.home .sec3 .scroller .item {
  flex-basis: calc(20%); /* Adjust the width as per your preference */
  text-align: center;
  padding: 10px;
}
.home .sec3 .scroller .item .img {
  height: 350px;
  cursor: pointer;
  transition: .3s;
}
.home .sec3 .scroller .item .img:active {
  transform: scale(.96);
}
.home .sec3 .scroller .item .img2 {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  transition: .3s;
  filter: opacity(0);
}
.home .sec3 .scroller .item .img:hover .img2 {
  filter: opacity(1);
}
.home .sec3 .scroller .item h3 {
  margin-bottom: 0;
  cursor: pointer;
  font-size: .9em;
  font-weight: 500;
}
.home .sec3 .scroller .item p {
  margin-top: 5px;
  font-size: 1.2em;
  font-weight: 700;
  color: #D86782;
}
.home .sec3 .scroller .scroll-wrapper {
  margin-bottom: 20px;
}
.home .sec3 button {
  font-size: 1.2em;
}
.ws_controls {
  position: absolute;
  top: 50%;
  width: 100%;
}

/* About Us Page */
.about .sec1 {
  display: flex;
  column-gap: 5%;
  align-items: center;
  padding-left: 5%;
  padding-right: 5%;
  border-top: 0px #fff solid;
}
.about .sec1 .left {
  width: 65%;
  overflow: hidden;
  z-index: 1;
}
.about .sec1 .right {
  width: 35%;
  overflow: hidden;
  z-index: 1;
}
.about .sec1 .left h2 {
  font-size: 4em;
  line-height: 100%;
}
.about .sec1 .left p {
  font-size: 1.1em;
}
.about .sec1 .right {
  display: flex;
  justify-content: center;
}
.about .sec1 .right img {
  height: 50vh;
  max-height: 450px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.about .sec2, .careers .sec2 {
  display: flex;
  align-items: center;
}
.about .sec2 .left, .about .sec2 .right, .careers .sec2 .left, .careers .sec2 .right {
  width: 50%;
}
.about .sec2 .left, .careers .sec2 .left {
  display: flex;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  padding: 5% 0 5% 5%;
}
.about .sec2 .right, .careers .sec2 .right {
  padding: 40px 5%;
  z-index: 0;
}
.about .sec2 .right h2 {
  font-size: 4em;
  line-height: 100%;
}
.about .sec2 .right h2 span {
  font-size: .9em;
  font-weight: 300;
}
.about .sec2 .right p {
  font-size: 1.1em;
}
.about .sec2 .left img, .careers .sec2 .left img {
  width: 100%;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

/* Careers Page */
.careers .sec2 .right p {
  font-size: 1.1em;
}
.careers .sec2 .right p:first-of-type {
  margin-bottom: 30px;
}
.careers .sec2 .right p:last-of-type {
  margin-top: 30px;
}
.careers .sec2 .right ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding-left: 10px;
}
.careers .sec2 .right ul li {
  display: flex;
  column-gap: 15px;
  align-items: center;
}
.careers .sec2 .right ul li span img {
  height: 32px;
  margin-bottom: -3px;
}
.careers .sec2 .right ul li span:last-of-type {
  padding: 10px;
  border: 1px #000 solid;
}

/* Contact Page */
.contact .sec1 {
  display: flex;
  column-gap: 5%;
  padding: 60px 5% 70px;
  align-items: center;
}
.contact .sec1 .left, .contact .sec1 .right {
  width: 50%;
}
.contact .sec1 .left h2, .gifting .sec1 .left h2 {
  font-size: 2em;
  margin-top: 0;
}
.contact .sec1 .left > div {
  display: flex;
  column-gap: 15px;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.1em;
}
.contact .sec1 .left > div img {
  width: 24px;
}
.contact .sec1 .left > h3 {
  margin-top: 50px;
  line-height: 100%;
  font-size: 1.6em;
}
.contact .sec1 .left > span {
  position: relative;
  display: flex;
  column-gap: 10px;
  align-items: center;
}
.contact .sec1 .left > span .icon {
  height: 24px;
  transition: .2s;
}
.contact .sec1 .right h2 {
  margin-top: 0;
  line-height: 100%;
}

/* Gifting Page */
.gifting .sec1 {
  display: flex;
  align-items: flex-start;
  padding: 60px 5%;
  column-gap: 5%;
}
.gifting .sec1 .right, .gifting .sec1 .left {
  width: 50%;
}
.gifting .sec1 p {
  font-size: 1.1em;
}
.gifting .sec1 p.bigger-text {
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 40px;
}
.gifting .sec1 .right {
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 40px;
}
.gifting .sec1 .right img {
  position: relative;
  max-width: 300px;
  width: 100%;
}
.gifting .sec1 .left h1 {
  margin-bottom: 10px;
  line-height: 100%;
}
.gifting .sec1 p.padding {
  padding: 30px;
}

/* How To Place An Order Page */
.ordering .sec1 {
  display: flex;
  padding: 70px 5%;
  column-gap: 5%;
  align-items: center;
}
.ordering .sec1 .left, .brand_promise .sec1 .right, .payment_methods .sec1 .left, .return_policy .sec1 .left {
  width: 55%;
  z-index: 1;
}
.ordering .sec1 .right, .brand_promise .sec1 .left, .payment_methods .sec1 .right {
  width: 45%;
  display: flex;
  justify-content: center;
  z-index: 1;
}
.ordering .sec1 .right img, .brand_promise .sec1 .left img, .payment_methods .sec1 .right img {
  width: 100%;
  height: auto;
}
.ordering .sec1 .left h1, .payment_methods .sec1 .left h1 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 4em;
  line-height: 100%;
}
.ordering .sec1 .left p.bigger-text, .brand_promise .sec1 .right p.bigger-text, .return_policy .sec1 .left p.bigger-text {
  font-size: 1.4em;
  font-weight: 700;
}
.ordering .sec1 .left p, .brand_promise .sec1 .right p, .payment_methods .sec1 .left p, .return_policy .sec1 .left p, .return_policy .sec1 .left li {
  font-size: 1.1em;
}
.ordering .sec1 .left ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding-left: 0;
  margin-top: 40px;
  margin-bottom: 40px;
}
.ordering .sec1 .left ul li {
  display: flex;
  column-gap: 15px;
  align-items: center;
  padding: 10px;
}
.ordering .sec1 .left ul li img {
  height: 24px;
}
.ordering .sec2 {
  display: flex;
  padding: 0 5%;
  column-gap: 5%;
  align-items: center;
  overflow: hidden;
}
.ordering .sec2 .left, .ordering .sec2 .right {
  width: 50%;
  z-index: 1;
}
.ordering .sec2 .right {
  padding-top: 70px;
  padding-bottom: 70px;
}
.ordering .sec2 .right h2 {
  font-size: 4em;
  margin-top: 0;
  line-height: 100%;
}
.ordering .sec2 .right p {
  font-size: 1.2em;
}
.ordering .sec2 .left {
  display: flex;
  justify-content: center;
}
.ordering .sec2 .left img {
  width: 90%;
  height: auto;
}
.ordering .sec2 .strip {
  z-index: 0;
  position: absolute;
  left: 10%;
  top: -33%;
  height: 170%;
  width: 25%;
  transform: rotate(35deg);
}

/* Brand Promise Page */
.brand_promise .sec1 {
  display: flex;
  padding: 50px 5% 0 5%;
  column-gap: 5%;
  align-items: center;
  overflow: hidden;
}
.brand_promise .sec1 .strip {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45%;
  height: 100%;
  z-index: 0;
}
.brand_promise .sec1 .left img {
  z-index: 1;
  position: relative;
}

/* Payment Methods Page */
.payment_methods .sec1 {
  display: flex;
  padding: 50px 5%;
  column-gap: 5%;
  align-items: center;
  overflow: hidden;
}
.payment_methods .sec1 .left a {
  text-decoration: none;
}
.payment_methods .sec1 .left p.bigger-text {
  font-size: 2em;
  font-weight: 700;
}
.payment_methods .sec1 .right img {
  max-width: 400px;
  position: relative;
}
.payment_methods .sec1 .right {
  padding: 40px;
}

/* Returns Policy Page */
.return_policy .sec1 {
  display: flex;
  padding: 70px 5%;
  column-gap: 5%;
  align-items: center;
  overflow: hidden;
}
.return_policy .sec1 .left h1 {
  margin-top: 0;
  font-size: 4em;
  line-height: 100%;
}
.return_policy .sec1 .left h2, .return_policy .sec1 .left h3, .return_policy .sec1 .left h4, .return_policy .sec1 .left h5 {
  font-size: 1.6em;
  margin-top: 40px;
}

/* Size Chart Page */
.size_chart .sec1 {
  overflow: hidden;
  padding: 70px 5%;
}
.size_chart h1 {
  font-size: 4em;
  margin-top: 0;
}
.size_chart img {
  max-width: 1280px;
}