@charset "UTF-8";
@font-face {
  font-family: "方正启体简体";
  src: url(../fonts/方正启体简体.ttf);
}
@font-face {
  font-family: "FZY1FW";
  src: url(../fonts/FZY1FW.TTF);
}
@font-face {
  font-family: "FZY1JW";
  src: url(../fonts/FZY1JW.TTF);
}
@font-face {
  font-family: FZQTFW;
  src: url(../fonts/FZQTFW.TTF);
}

/* CSS used here will be applied after bootstrap.css */

html,
body {
  height: 100%;
}

* {
  box-sizing: border-box
}

body {
  min-width: 100%;
  width: auto;
  height: auto;
  margin: 0;
}

main {
  margin: 0;
  padding: 0;
  background-color: #9f85aa;
  transition: background 1s ease;
  z-index: -1;
}

main:before {
  content: '';
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 0;
  background: -moz-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0.74) 47%, rgba(255, 255, 255, 0.71) 49%, rgba(255, 255, 255, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0.74) 47%, rgba(255, 255, 255, 0.71) 49%, rgba(255, 255, 255, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.74) 47%, rgba(255, 255, 255, 0.71) 49%, rgba(255, 255, 255, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bdffffff', endColorstr='#00ffffff', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}

main:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  background: -moz-linear-gradient(-45deg, rgba(112, 171, 189, 1) 0%, rgba(237, 204, 211, 0.64) 35%, rgba(175, 194, 223, 0) 66%, rgba(125, 185, 232, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, rgba(112, 171, 189, 1) 0%, rgba(237, 204, 211, 0.64) 35%, rgba(175, 194, 223, 0) 66%, rgba(125, 185, 232, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(165deg, rgba(112, 171, 189, 1) 0%, rgba(237, 204, 211, 0.64) 40%, rgba(175, 194, 223, 0) 60%, rgba(125, 185, 232, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#70abbd', endColorstr='#007db9e8', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}

h1 {
  font-size: 1.8rem!important;
  color: #1c5493!important;
}

h2 {
  font-size: 2rem!important;
  text-transform: uppercase!important;
}

h3 {
  font-size: 1rem!important;
}

p {
  font-size: 1rem!important;
  line-height: 2rem!important;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none!important;
}

ol,
ul,
dl {
  margin-bottom: 0!important;
}


/* ==========================================================================
  Navbar
========================================================================== */

.lang-menu {
  display: block;
  text-align: left;
  top: 2%;
  left: 2%;
  font-size: 0.8rem;
  line-height: 25px;
  position: fixed;
  z-index: 10;
}

.lang-menu>a {
  color: #000;
  padding-right: 10px;
}

.lang-menu>a:hover {
  color: #1c5493;
}

.lang-menu>a:hover:first-child:after {
  color: #000;
}

.lang-menu>a:last-child:before {
  content: "|";
  padding-right: 10px;
}

.menu {
  width: 100%;
  background-color: #fff;
}

.button_container {
  position: fixed;
  top: 2%;
  right: 2%;
  height: 27px;
  width: 35px;
  cursor: pointer;
  z-index: 100;
  transition: opacity .25s ease;
}

.button_container:hover {
  opacity: .7;
}

.button_container.active .top {
  transform: translateY(11px) translateX(0) rotate(45deg);
  background: #000;
}

.button_container.active .middle {
  opacity: 0;
  background: #000;
}

.button_container.active .bottom {
  transform: translateY(-11px) translateX(0) rotate(-45deg);
  background: #000;
}

.button_container span {
  background: #000;
  border: none;
  height: 5px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .35s ease;
  cursor: pointer;
}

.button_container span:nth-of-type(2) {
  top: 11px;
}

.button_container span:nth-of-type(3) {
  top: 22px;
}

.overlay {
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s, height .35s;
  overflow: hidden;
}

.overlay.open {
  opacity: .9;
  visibility: visible;
  height: 100%;
  z-index: 6;
}

.overlay.open li {
  animation: fadeInRight .5s ease forwards;
  animation-delay: .35s;
}

.overlay.open li:nth-of-type(2) {
  animation-delay: .4s;
}

.overlay.open li:nth-of-type(3) {
  animation-delay: .45s;
}

.overlay.open li:nth-of-type(4) {
  animation-delay: .50s;
}

.overlay nav {
  position: relative;
  height: 70%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  font-family: 'Varela Round', serif;
  font-weight: 400;
  text-align: center;
}

.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
}

.overlay ul li {
  display: block;
  height: 25%;
  height: calc(100% / 7);
  min-height: 30px;
  position: relative;
  opacity: 0;
}

.overlay ul li a {
  display: block;
  position: relative;
  color: #000;
  text-decoration: none;
  overflow: hidden;
}

.overlay ul li a:hover:after,
.overlay ul li a:focus:after,
.overlay ul li a:active:after {
  width: 100%;
}

.overlay ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  transform: translateX(-50%);
  height: 3px;
  background: #FFF;
  transition: .35s;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}


/* ==========================================================================
  Home
========================================================================== */

#home {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.layer {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 45%;
  width: 100%;
  height: 90vh!important;
  position: absolute;
  left: 0;
}

.layer-0 {
  top: 15%;
  left: 5%;
  z-index: 3;
  position: absolute;
}

.layer-0>p {
  margin-left: 25%;
  font-size: 0.7rem!important;
  line-height: 0.9rem!important;
}

.layer-0>h3 {
  margin-left: 35%;
  font-size: 2rem!important;
}

#tagline,
#river-name,
.confortable,
.confortable-2 {
  font-family: "方正启体简体";
}

.layer-01 {
  background-image: url('../img/bg-effect.png');
  background-size: cover!important;
  z-index: 2;
}

.layer-02 {
  background-image: url('../img/river-home.png');
  z-index: 2;
}

.layer-04 {
  background-image: url('../img/spongetowels1.png');
  z-index: 2;
}

.layer-05 {
  background-image: url('../img/cashmere.png');
  z-index: 2;
}

.layer-06 {
  background-image: url('../img/scotties.png');
  z-index: 2;
}

.copy-home {
  width: 100%;
  display: block;
  padding: 5%;
}

.copy {
  width: 100%;
  position: relative;
  z-index: 5;
  margin-top: 65vh;
  text-align: center;
}

.copy p {
  font-size: 1rem!important;
  text-align: center;
  line-height: 1.5rem!important;
}

.circle {
  width: 130px;
  height: 130px;
  display: inline-block;
  position: fixed;
  top: 45%;
  display: none;
  z-index: 5;
}

.right-circle {
  background: #ffb8b6;
  left: -75px;
  border-bottom-right-radius: 200px;
  border-top-right-radius: 200px;
  transition: 1s ease;
}
.left-circle {
  background: #8599fd;
  right: -75px;
  border-bottom-left-radius: 200px;
  border-top-left-radius: 200px;
  transition: 1s ease;
}

.right-circle>a>img {
  width: 30px;
  margin-top: 45px;
  margin-left: 80px;
  transition: 1s ease;
}

.left-circle>a>img {
  width: 30px;
  margin-top: 50px;
  margin-left: 15px;
  transition: 1s ease;
}

.right-circle:hover {
  transition: 1s ease;
}

.right-circle:hover>a>img {
  transition: 1s ease;
}

.right-circle>a>p {
  margin-left: 85px;
  color: white;
  font-size: 0.6rem!important;
}

.left-circle>a>p {
  color: white;
  margin-left: 15px;
  font-size: 0.6rem!important;
}

.right-circle:hover>a>p {
  transition: 1s ease;
}

.left-circle:hover {
  transition: 1s ease;
}

.left-circle:hover>a>img {

  transition: 1s ease;
}

.left-circle:hover>a>p {
  transition: 1s ease;
}

/* ==========================================================================
  Cashmere
========================================================================== */

#cashmere {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.layer-07 {
  background-image: url('../img/river-cashmere.png');
  top: 5vh;
}

.layer-08>img {
  width: 15vh;
  position: relative;
  margin: 15vh 0 0 0;
}

.copy-cashmere {
  width: 100%;
  z-index: 2;
  margin: 10vh 0 0 10%;
  position: relative;
}

.copy-cashmere>h2 {
  font-size: 3rem!important;
  position: relative;
  padding-left: 5%;
  color: #1c5493;
}

.copy-cashmere>h3 {
  position: relative;
  font-size: 2rem!important;
  color: #1c5493;
}

.copy-cashmere>h4 {
  font-size: 1rem;
  position: relative;
}

.copy-2 {
  position: absolute;
  bottom: 20%;
  left: 10%;
  z-index: 2;
}

.copy-2>h3 {
  font-size: 2rem!important;
}


/* ==========================================================================
   Scotties
========================================================================== */

#scotties {
  min-height: 110vh;
  overflow: hidden;
  position: relative;
}

.layer-11 {
  background-image: url('../img/river-scotties.png');
  top: 5vh;
}

.layer-12>img {
  position: relative;
  width: 15vh;
  margin: 25vh 0 0 55%;
}

.copy-scotties {
  z-index: 2;
  margin: 20% 0 0 10%;
}

.copy-scotties>h2 {
  font-size: 3rem!important;
  margin-left: 5%;
  position: relative;
  color: #1c5493;
}

.copy-scotties>h3 {
  position: relative;
  font-size: 2rem!important;
  color: #1c5493;
}

.copy-scotties>h4 {
  font-size: 1rem;
  margin: -20% 0 0 57%;
}


/* ==========================================================================
   Spongetowels
========================================================================== */

#sponge {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.layer-13 {
  background-image: url('../img/river-sponge.png');
  top: 5vh;
}

.copy-sponge {
  z-index: 2;
  margin: 20% 0 0 10%;
}

.layer-14>img {
  position: relative;
  width: 15vh;
  margin: 25vh 0 0 5%;
}

.copy-sponge>h2 {
  font-size: 3rem!important;
  margin-left: 5%;
  position: relative;
  color: #1c5493;
}

.copy-sponge>h3 {
  position: relative;
  font-size: 2rem!important;
  color: #1c5493;
}

.copy-sponge>h4 {
  font-size: 1rem;
  margin-top: -15%;
}


/* ==========================================================================
   Coupons
========================================================================== */

.coupons {
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 3;
  text-align: center;
}

.coupons>h2 {
  margin: 0!important;
  padding: 5% 0 0 10%;
  z-index: -4!important;
  color: #1c5493;
}

.coupons>iframe {
  width: 80%;
  height: 60vh;
  background-color: #fff;
  border: 0;
  margin-top: 5%;
}

.back>a>img {
  width: 15px;
  margin: 35px 0 0 25px;
}


.where-button>a>p {
  margin-left:80px;
}

/* ==========================================================================
   Where to buy
========================================================================== */

.main-where {
  background-color: #cdb7d6;
}

.main-where:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  background: -moz-linear-gradient(-45deg, rgba(112, 171, 189, 1) 0%, rgba(237, 204, 211, 0.64) 35%, rgba(175, 194, 223, 0) 66%, rgba(125, 185, 232, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, rgba(112, 171, 189, 1) 0%, rgba(237, 204, 211, 0.64) 35%, rgba(175, 194, 223, 0) 66%, rgba(125, 185, 232, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(165deg, rgba(112, 171, 189, 1) 0%, rgba(237, 204, 211, 0.64) 40%, rgba(175, 194, 223, 0) 60%, rgba(125, 185, 232, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#70abbd', endColorstr='#007db9e8', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}

#where {
  position: relative;
  z-index: 5;
  min-height: 100vh;
  height: auto;
  padding-top: 10%;
}

.where-content {
  padding-top: 5%;
}

.where-content>div>h2 {
  color: #1c5493;
}

.products-img {
  width: 70%;
  margin: 10% 0 0 15%;
  text-align: center;
}

ul>li {
  list-style: none;
}

.locations>a {
  display: block;
  border-radius: 30px;
  border: 1px solid #FFF;
  text-align: center;
  text-decoration: none;
  color: #fff;
  padding: 5px;
  margin: 5px 0;
}

.locations>a:hover {
  text-decoration: none;
  background-color: rgba(255, 255, 255, 1);
  color: #95a5f8;
}

.locations>a>i {
  position: absolute;
  right: 15%;
  padding-top: 2%;
}

.loc-options {
  margin-top: 30px;
}

.loc-options>.row {
  margin-bottom: 10%;
}

.loc-options>.row>p {
  width: 100%;
  color: #fff;
  padding-left: 10%;
  font-size: 1.5rem!important;
}

.locations-content {
  position: relative;
  height: 400px;
}

.locations-content div {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.locations-content>div>ul>li>a,
.locations-content>div>ul>li {
  color: #fff;
  font-weight: 300;
  font-size: 1rem!important;
}

.locations-content>div>ul>li>a:hover {
  color: #95a5f8;
}

.back>a>p {
  margin-left: 25px;
}

#west>ul,
#online>ul,
#atlantic>ul,
#quebec>ul,
#ontario>ul {
  display: inline-block;
  width: 45%;
  padding-bottom: 5%;
}


/* ==========================================================================
   Media Queries
========================================================================== */


/* Small devices (landscape phones, 546px and up)*/

@media (min-width: 546px) {
  .layer {
    background-size: auto 100%;
    height: 100vh!important;
    margin-top: 5vh;
  }
  .layer-0 {
    margin-top: 10vh;
  }
  .layer-0 > p {
    margin-bottom: 0;
  }
  .copy {
    margin-top: 85vh;
  }
  .copy-home p {
    font-size: 0.7rem!important;
    padding: 0 0 0 0;
    line-height: 1rem;
  }
  .copy-2 {
    bottom: 10%;
  }
  .copy-cashmere>h2,
  .copy-scotties>h2,
  .copy-sponge>h2 {
    font-size: 2.5rem!important;
    left: 2%;
    font-weight: 300!important;
    line-height: 2.5rem;
  }
  .copy-cashmere>h3,
  .copy-scotties>h3,
  .copy-sponge>h3 {
    font-size: 1.5rem!important;
    text-align: left;
    padding-left: 18%;
  }
  .copy-2>h3 {
    font-size: 1.5rem!important;
  }
  .layer-0 {
    top: 5%;
    left: 10%;
  }
  .layer-0>h3 {
    font-size: 2rem!important;
    margin-left: 28%;
  }
  .layer-0>p {
    font-size: 0.5rem!important;
    line-height: 1rem!important;
  }
  .copy-cashmere,
  .copy-sponge {
    margin: 10vh 0 0 5%;
    text-align: center;
    width: 50%;
  }
  .layer-08>img {
    width: 30vh;
    margin: 10% 0 0 0;
  }
  .copy-scotties {
    width: 50%;
    text-align: center;
    margin: 10% 0 0 50%;
  }
  .copy-scotties>h4 {
    margin: -10% 0 0 0%;
  }
  .layer-12>img {
    margin: 20% 0 0 0;
    width: 30vh;
  }
  #sponge {
    min-height: 110vh;
  }
  .layer-14>img {
    margin: 30vh 0 0 5%;
    width: 35vh;
  }
  .copy-sponge>h4 {
    margin: -10vh 0 0 0;
  }
  .layer-09,
  .layer-11,
  .layer-13 {
    left: 0;
  }
}


/* Medium devices (tablets, 768px and up)*/

@media (min-width: 768px) {
  .layer {
    background-size: auto 65%;
    margin-top: 0;
  }
  .layer-0 {
    top: 15%;
    left: 10%;
  }
  .layer-0>h1 {
    font-size: 3rem!important;
  }
  .layer-0>h3 {
    font-size: 2.5rem!important;
    margin-left: 40%;
  }
  .layer-0>p {
    font-size: 1rem!important;
    line-height: 1.7rem!important;
    margin: 0 0 1% 35%;
  }
  .copy {
    margin-top: 80vh;
  }
  .copy-home {
    width: 100%;
  }
  .copy-home p {
    font-size: 1rem!important;
    padding: 0 10% 0 10%;
  }
  .copy-cashmere{
    margin-top: 10%;
  }
  .copy-cashmere>h2,
  .copy-scotties>h2,
  .copy-sponge>h2 {
    font-size: 4rem!important;
    left: 2%;
    line-height: 4.5rem;
  }
  .copy-cashmere>h3,
  .copy-scotties>h3,
  .copy-sponge>h3 {
    font-size: 2.5rem!important;
  }
  .layer-08>img {
    width: 20vh;
    margin: 25vh 0 0 -10%
  }
  .copy-cashmere>h4 {
    margin: 5vh 0 0 -10%;
  }
  .copy-scotties {
    margin: 25% 0 0 40%;
  }
  .layer-12>img {
    width: 25vh;
    margin: 30vh 0 0 40%;
  }
  .copy-scotties>h4 {
    margin: -10vh 0 0 37%;
  }
  .layer-14>img {
    width: 25vh;
    margin: 40vh 0 0 5%;
  }
  .copy-sponge {
    margin-top: 25%;
  }
  .copy-sponge>h4 {
    margin: -10vh 0 0 0;
  }
  .layer-11,
  .layer-13 {
    top: 15vh;
  }
  .layer-11,
  .layer-13 {
    left: 5%;
  }
  .circle {
    display: block;
  }
}

/* Medium devices (tablets, 992px and up)*/

@media (min-width: 992px) {

  .layer {
    background-size: auto 100%;
  }

  .copy-purex, .copy-scotties, .copy-sponge {
    margin-top: 10vh;
  }
  .layer-10>img, .layer-12>img, .layer-14>img {
    width: 35vh;;
  }
  .layer-14>img {
    margin-top: 30vh;
  }
}

/* Large devices (Ipad, Portrait )*/
@media (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {

  .layer-14>img {
    width: 20vh;
    margin-top: 30vh;
  }
  .layer-12>img {
    width: 20vh;
  }
}

/* Large devices (Ipad, Landscape)*/
@media (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .layer {
    background-size: auto 90%;
  }

  .copy {
    margin-top: 80vh;
  }
  .copy-cashmere {
    margin-top: 20vh;
  }
  .copy-scotties,
  .copy-sponge {
    margin-top: 20vh;
  }
  .copy-scotties {
    margin-left: 45%;
  }
  .copy-cashmere>h3,
  .copy-scotties>h3,
  .copy-sponge>h3 {
    font-size: 3rem!important;
  }
  .copy-cashmere>h2,
  .copy-scotties>h2,
  .copy-sponge>h2 {
    font-size: 4rem!important;
    margin-left: 0!important;
  }
  .layer-08>img {
    width: 25vh;
    margin-top: 10vh;
  }
  .layer-12>img {
    margin: 30vh 0 0 0;
    width: 30vh;
  }
  .copy-scotties>h4 {
    margin: -20% 0 0 0;
  }

  #sponge {
    min-height: 130vh;
  }
  .layer-14>img {
    margin-top: 25vh;
    width: 30vh;
  }
  .copy-sponge>h4 {
    margin-top: -10vh;
  }
  .locations-content {
    margin-left: 10%;
  }
  #west>ul,
  #online>ul,
  #atlantic>ul,
  #quebec>ul,
  #ontario>ul {
    width: 25%;
  }
}
/* Large devices (Ipad Pro, Portrait)*/
@media (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation: portrait) {
  .layer {
    background-size: auto 65%;
  }
  .layer-08>img {
    width: 20vh;
    margin-top: 10vh;
  }
  .locations-content {
    margin-left: 15%;
  }
 .copy-scotties, .copy-sponge {
    margin-top: 40vh;
  }
  .copy-cashmere {
    margin-top: 25vh;
  }
  .copy-cashmere>h4 {
    font-size: 1.5rem!important;
    margin-top: 5vh;
  }
  .copy-scotties>h4 {
    font-size: 1.5rem!important;
    margin-top: -15vh;
  }
  .copy-sponge>h4 {
    font-size: 1.5rem!important;
    margin-top: -10vh!important;
  }
  .layer-14>img {
    margin-top: 15vh;
    width: 20vh;
  }
  .layer-12>img {
    margin-top: 20vh;
    width: 20vh;
  }
}
/* Large devices (Ipad Pro, Landscape)*/
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation: landscape) {
  .layer-0>h1 {
    font-size: 4rem!important;
  }
  .copy {
    margin-top: 80vh;
  }
  .layer-12>img {
    margin-top: 30vh!important;
  }
  .layer-14>img {
    margin-top: 35vh!important;
  }

  .right-circle > a > p,
  .left-circle > a > p {
    display: block!important;
  }
  .locations-content {
    margin-left: 15%;
  }
}


/* Extra large devices (large desktops, 1200px and up)*/

@media (min-width: 1200px) {
  .layer {
    background-size: auto 100%;
    left: 0;
  }
  .layer-0 {
    top: 10%;
  }
  .layer-0>h1 {
    font-size: 3.2rem!important;
    margin-left: 25%;
  }
  .layer-0>p {
    font-size: 1rem!important;
    margin-left: 48%;
  }
  .layer-0>h3 {
    font-size: 3rem!important;
    margin-left: 50%;
  }
  .copy {
    margin-top: 80vh;
  }
  .circle {
    width: 180px;
    height: 180px;
  }
  .right-circle{
    left: -115px;
  }
  .left-circle {
    right: -115px;
  }
 .left-circle:hover {
    right: -100px;
  }
  .right-circle:hover {
    left: -100px;
  }
  .right-circle>a>img,
  .left-circle>a>img {
    width: 40px;
    margin-top: 75px;
  }
  .right-circle:hover>a>img {
    width: 50px;
    margin: 60px 0 0 110px;
  }
  .left-circle:hover>a>img {
    width: 50px;
    margin-top: 60px;
  }
  .right-circle>a>p,
  .left-circle>a>p {
    display: none!important;
    margin-right: 40px;
  }
  .right-circle:hover>a>p {
    display: block!important;
    margin: 0 0 0 110px;
    font-size: 0.8rem!important;
  }
   .left-circle:hover>a>p {
    display: block!important;

    font-size: 0.8rem!important;
  }
  .right-circle>a>img {
    margin-left: 70%;
  }
  .back>a>img {
    width: 15px;
    margin-top: 75px;
  }
  .back:hover>a>img {
    width: 20px;
    margin-top: 55px;
  }
  .copy-cashmere {
    margin: 10vh 0 0 10%;
  }
  .copy-cashmere>h4 {
    margin: -2% 0 0 2%
  }

  .copy-home>p {
    font-size: 1rem!important;
    text-align: center;
  }
  .copy-cashmere,
  .copy-scotties,
  .copy-sponge {
    text-align: center;
  }
  .copy-cashmere>h2,
  .copy-scotties>h2,
  .copy-sponge>h2 {
    font-size: 4rem!important;
    text-align: center;
  }
  .copy-cashmere>h3,
  .copy-scotties>h3,
  .copy-sponge>h3 {
    font-size: 3rem!important;
    text-align: center;
    margin-left: -15%;
  }
  .copy-2>h3 {
    font-size: 2rem!important;
  }
  .copy-cashmere>h4,
  .copy-scotties>h4,
  .copy-sponge>h4 {
    font-size: 1.5rem!important;
  }
  .layer-08>img {
    width: 30vh;
    margin: 20vh 0 0 0;
  }
  .copy-scotties {
    margin: 25vh 0 0 45%;
  }
  .layer-12>img {
    width: 30vh;
    margin: 20vh 0 0 5%;
  }
  #scotties {
    height: 130vh;
  }
  .copy-scotties>h4 {
    margin: -10vh 0 0 0;
  }
  .copy-sponge {
    margin: 25vh 0 0 10%;
  }
  .layer-14>img {
    width:30vh;
    margin: 20vh 0 0 0;
  }
  .copy-sponge>h4 {
    margin: -10vh 0 0 2%;
  }
  #west>ul,
  #online>ul,
  #atlantic>ul,
  #quebec>ul,
  #ontario>ul {
    width: 23%;
  }
  #where {
    padding: 0;
  }
  .locations-content {
    margin-left: 10%;
  }
}

@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: portrait) {
  .copy-cashmere,
  .copy-scotties,
  .copy-sponge {
    margin-top: 15vh;
  }
  .layer-08>img {
    margin-top: 15vh;
  }
  .layer-12>img {
    margin-top: 25vh;
  }
  .layer-14>img {
    margin-top: 20vh;
  }
  .layer {
    background-size: auto 40%;
  }
}

@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3)and (orientation: landscape) {
  .layer {
    background-size: auto 100%;
    margin-top: 5vh;
  }
  .layer-0 {
    top: 10vh;
  }
  .layer-0>h1 {
    font-size: 2.5rem!important;
    line-height: 2rem;
  }
  .layer-0>p {
    font-size: 0.7rem!important;
    margin-left: 25%;
  }
  .layer-0>h3 {
    font-size: 2rem!important;
    margin-left: 28%;
    line-height: 3rem;
  }
  .copy {
    margin-top: 85vh;
  }
  .circle {
    display: none;
  }
  .copy-cashmere>h3,
  .copy-scotties>h3,
  .copy-sponge>h3 {
    font-size: 2rem!important;
    text-align: center;
    margin-left: -30%;
  }
  .copy-cashmere>h2,
  .copy-scotties>h2,
  .copy-sponge>h2 {
    font-size: 3rem!important;
    text-align: center;
    left: 0!important;
  }
  .copy-scotties {
    text-align: center;
    margin-left: 45%;
  }
  .copy-scotties>h4 {
    margin-left: 0;
  }
  .layer-11 {
    left: 0;
  }
  .layer-08>img {
    width: 30vh;
  }
  .layer-14>img {
    width: 35vh;
  }
  .layer-12>img {
    width: 35vh;
    margin: 20vh 0 0 0;
  }
  .layer-14>img {
    margin-top: 20vh;
  }
  #sponge {
    min-height: 130vh;
  }
  .copy-sponge>h4 {
    margin-top: -10vh;
  }
}


/* Extra large devices (large desktops, 1500px and up)*/

@media (min-width: 1500px) {
  .layer-0 {
    width: 70%;
    margin-left: 20%;
  }
  
  .layer-0>h1 {
    font-size: 4.5rem!important;
    margin-left: 10%;
  }
  .layer-0>p {
    margin-left: 42%;
  }
  .layer-0>h3 {
    margin-left: 45%;
  }
  .copy-home {
    padding-top: 20vh;
  }
  .right-circle>a>img,
  .left-circle>a>img {
    margin-top: 45%;
  }
  .back>a>img {
    width: 20px!important;
    margin-left: 15%;
  }
  .back>a>p {
    margin-left: 50px!important;
  }
  .back:hover>a>img {
    width: 20px!important;
    margin-left: 55px!important;
  }

  .right-circle:hover>a>img{
    width: 50px;
    margin: 80px 0 0 145px;
  }
  .left-circle:hover>a>img{
    width: 50px;
    margin: 80px 0 0 30px;
  }
  .right-circle>a>p,
  .left-circle>a>p {
    font-size: 1.5rem!important;
    margin-left: 30px;
  }
  .right-circle>a>p {
    margin-right: 20%;
  }

  .right-circle:hover>a>p {
    margin: 0 0 0 140px;
  }
  .copy {
    margin-top: 65vh;
  }
  
  .copy-cashmere,
  .copy-sponge {
    margin: 5% 0 0 10%;
  }
  .copy-scotties {
    margin: 10% 0 0 40%;
  }
  .copy-cashmere>h2,
  .copy-scotties>h2,
  .copy-sponge>h2 {
    font-size: 4rem!important;
    line-height: 6rem;
    margin-left: 0;
  }
  .copy-cashmere>h3,
  .copy-scotties>h3,
  .copy-sponge>h3 {
    font-size: 3rem!important;
    text-align: center;
    margin-left: -25%;
  }
  .layer-12 {
    margin-top: 10%;
  }
  .layer-12>img {
    width: 25vh;
    margin: 30vh 0 0 0;
  }
  .copy-scotties>h4 {
    margin: -15vh 0 0 -3%;
  }
  .copy-sponge>h4 {
    margin: -5vh 0 0 0;
  }
  .layer-13 {
    top: 5vh;
  }
  .layer-14>img {
    margin-top: 25vh;
    width: 25vh;
  }
  .container {
    max-width: 1500px!important;
  }
  .circle {
    width: 230px;
    height: 230px;
  }
  .right-circle {
    left: -150px;
  }
   .left-circle {
    right: -150px;
  }
  .right-circle:hover {
    left: -125px;
  }
  .left-circle:hover {
    right: -125px;
  }
  .right-circle>a>img,
  .left-circle>a>img {
    margin-top: 100px;
  }
  .right-circle>a>img,
  .left-circle>a>img {
    width: 50px;
  }
  .where-button>a>p {
    margin-right: 20px;
  }
  .locations-content {
    margin-left: 15%;
  }
}

@media (min-width: 2200px) {
  .layer-0>h1 {
    margin-left: 20%;
  }
  .right-circle {
    left: -6%;
  }
  .left-circle {
    right: -6%;
  }
  .right-circle>a>p,
  .left-circle>a>p {
    font-size: 1rem!important;
  }
  .right-circle:hover>a>img,
  .left-circle:hover>a>img {
    width: 50px;
    margin-top: 90px;
  }
  .right-circle>a>img {
    margin-left: 70%;
  }
  .layer-12>img {
    margin-top: 20vh;
  }
}

@media (min-width: 1500px) and (min-height: 900px) {
  .copy-cashmere,
  .copy-sponge {
    margin-top: 12%;
  }
  .copy-scotties {
    margin-top: 15%;
  }
}