@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600&display=swap');

body {
  	color: #2E2E2E;
  	-webkit-text-size-adjust: 100%;
  	background-color:#ffffff;
    font-size: 1.1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

:target:before
{
   content: "";
   display: block;
   height: 120px; //Height of header
   margin-top: -120px;
}

/*BASIC--------------------*/
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 100%;
  }
}

@media (min-width: 1320px) {
  .container {
    max-width: 1280px;
  }
}

.pt-6 {padding-top: 4rem !important;}
.pt-7 {padding-top: 5rem !important;}
.pt-8 {padding-top: 6rem !important;}
.pt-9 {padding-top: 7rem !important;}
.pt-10 {padding-top: 8rem !important;}

.pb-6 {padding-bottom: 4rem !important;}
.pb-7 {padding-bottom: 5rem !important;}
.pb-8 {padding-bottom: 6rem !important;}
.pb-9 {padding-bottom: 7rem !important;}
.pb-10 {padding-bottom: 8rem !important;}

.mt-6 {margin-top: 4rem !important;}
.mt-7 {margin-top: 5rem !important;}
.mt-8 {margin-top: 6rem !important;}
.mt-9 {margin-top: 7rem !important;}
.mt-10 {margin-top: 8rem !important;}

.mb-6 {margin-bottom: 4rem !important;}
.mb-7 {margin-bottom: 5rem !important;}
.mb-8 {margin-bottom: 6rem !important;}
.mb-9 {margin-bottom: 7rem !important;}
.mb-10 {margin-bottom: 8rem !important;}

@media (min-width: 1921px){
.col-xxxl-6 {
  flex: 0 0 auto;
  width: 50%;
}
}

.section-padding-xs{
	padding:2vh 0;
	width: 100%;
}

.section-padding-s{
	padding:6vh 0;
	width: 100%;
}

.section-padding-m{
	padding:8vh 0;
	width: 100%;
}

.section-padding-l{
	padding:10vh 0;
	width: 100%;
}

.section-padding-t-l{
	padding:10vh 0 0 0;
	width: 100%;
}

.section-padding-b-l{
	padding:0 0 10vh 0;
	width: 100%;
}

.section-padding-xl{
	padding:12vh 0;
	width: 100%;
}

.section-padding-t-xl{
	padding:12vh 0 0 0;
	width: 100%;
}

.section-padding-b-xl{
	padding:0 0 12vh 0;
	width: 100%;
}

hr {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    border: 0;
    border-top-width: 0px;
    border-top-style: none;
    border-top-color: currentcolor;
    border-top: 1px solid #e3e5e8;
}

.lightgrey-bg{
  background-color:#F9F9F9;
  background-image: url(../img/dot-bg.svg);
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
}
.lightgrey-bg-arrow{
  background-color:#F9F9F9;
  background: url(../img/shopper/violet-arrow.svg) top center no-repeat, url(../img/shopper/dot-bg.svg) top center no-repeat #F9F9F9;
  background-size: auto, contain;
}
.b-top{border-top: 1px solid #F3F3F3;}
.b-bottom{border-bottom: 1px solid #F3F3F3;}
.white-bg{background:#ffffff;}


.btn{
	border-radius: 100em;
	padding: 1.15rem 2.25rem;
	font-weight: 500;
}

button:focus {
    outline: none;
}

.btn:active {
  color: #ffffff;
  background-color: inherit;
  border-color: transparent !important;
}

.btn-small{
	padding: .75rem 1.75rem;
	font-size: 1em;
}

.btn-orange{
	background-color: #F39003;
	color: white !important;
}

.btn-orange:hover, .btn-orange:active{
	background-color: #d27c02 !important;
	color: white !important;
}

.btn-green{
	background-color: #93D500;
	color: white !important;
}

.btn-green:hover, .btn-green:active{
	background-color: #7ab100 !important;
	color: white !important;
}

.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: none;
}

.link{
	color: #472784;
}

.link:hover{
	color: #5931a5;
}

.small{
	font-size: 85%;
}

/*NAV--------------------*/
.top{
	height: auto;
	width: 100%;
	top: 0;
	position: absolute;
	z-index: 99;
	margin: 0 auto;
  padding: 0;
}

.navbar{
	padding: 0;
	margin: 0 auto;
  background-color: white;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.4);
}

.navbar-brand {
  padding: 0 5rem;
  background-color: #472784;
  margin-left: -15px;
}

.nav-link {
  display: block;
  padding: 2.4em 1.1rem 2.4em 1.1rem;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.5s ease 0s;
	margin: 0 0.25em;
	color: #2E2E2E;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: .85rem;
    padding-left: .85rem;
}

.nav-link:focus, .nav-link:hover {
  color: #472784;
}

.navbar-text {
    display: inline-block;
    padding-top: 0rem;
    padding-bottom: 0rem;
}

.navbar .btn{
	margin-left: 0.75em;
}

@media screen and (min-width: 992px) {
.navbar {
  	padding-top:0em;
  	padding-bottom:0em;
}
}


/*HEADER---------------------*/
.hero-wrap{
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  padding-top: 100px;
}

.hero{
	width: 100%;
	height: 75vh;
  	min-height: 600px;
	position: relative;
	z-index: 1;
	background-image: url(../img/shopper/header-bg.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	background-attachment: scroll;
}

.hero p{
  max-width: 800px;
  font-size: 1.25rem;
}

/*CONTENT--------------------*/
.content{
  position: relative;
}

.violet-bg{
  background-color: #472784;
  background: #472784 url(../img/shopper/half-violet-bg.svg) top left repeat-x;
  text-align: center;
  padding-bottom: 2rem;
}

.violet-bg p{
  color: #ffffff;
  font-size: 140%;
  font-weight: 600;
  line-height: 1.4
}

.violet-bg .mb-4 {
  margin-bottom: 2.4rem !important;
}

.shop-bg{
  background: url(../img/shopper/shop-bg.png) 80% 50%  no-repeat;
}

.nav-tabs .nav-link {
  display: block;
  padding: 1.2em 2.1rem 1.2em 2.1rem;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.5s ease 0s;
  color: #2E2E2E;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: #472784;
  background-color: var(--bs-nav-tabs-link-active-bg);
  border-color: var(--bs-nav-tabs-link-active-border-color);
}

.nav-tabs .nav-link {
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  border: var(--bs-nav-tabs-border-width) solid transparent;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.tab-content{
  padding: 2rem 1rem;
}

.accordion-button:not(.collapsed) {
  color: #472784;
  background-color: white;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordion-button {
  font-size: 1.2rem;
  padding:1.5rem 0;
}

.accordion-button:focus {
  z-index: 3;
  border-color: #dee2e6;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

/*FOOTER--------------------*/
footer{
  position: relative;
	background-color: #472784;
	color: #ffffff;
	padding-left: 1em;
	padding-right: 1em;
  font-size: 90%;
}

footer p{
  color: #ffffff;
  opacity: 0.6;
}

footer .link{
  text-decoration: none;
  opacity: 1 !important;
  color: #ffffff;
  font-weight: 600;
}

footer .link:hover{
  text-decoration: underline;
  color: #ffffff;
}

footer h2, footer h3{
  color: #ffffff;
}

.copyright{
	font-size: 0.8em;
	color: #ffffff;
  opacity: 0.6;
	line-height: 40px;
}

/*TYPOGRAPHY--------------------*/
h1, h2, h3, h4,.h1, .h2, .h3, .h4 {
	margin-top: 0;
	margin-bottom: 1.5rem;
	font-weight: 600;
	color: inherit;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{
	text-decoration: none;
	transition: all 0.2s ease 0s;
	margin-bottom: 0.75em;
}

h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover{
	color: #472784;
	text-decoration: none;
}

h1, .h1 {font-size: calc(1.6rem + 1.8vw); letter-spacing: -0.05rem; line-height: 1.15; margin-bottom: 2.4rem; color: #472784;}
h2, .h2 {font-size: calc(1.2rem + 1vw); color: #472784;}
h3, .h3 {font-size: calc(1.1rem + 0.35vw); color: #472784; font-weight: 600;}
h4, .h4 {font-size: calc(1rem + 0.3vw); color: #472784;}

p {
  	margin-top: 0;
  	margin-bottom: 1rem;
  	font-weight: normal;
  	line-height: 1.75;
  	color: #2E2E2E;
    -moz-osx-font-smoothing: grayscale;
}

a{
	color: inherit;
	transition: color 0.2s ease 0s;
}

a:hover{
	text-decoration: none;
	color: #472784;
}

b, strong{font-weight:600;}

ul, ol{margin: 0 0 1.25em 0; padding: 0; list-style: none;}

.large{
	font-size: 1.6em;
	margin: 1.5em 0 2.5em 0;
}

.contact ul li{
	padding: 0.3em 0;
}

.simple-list{
	margin-bottom: 3em;
  margin-left: 20px;
}

.simple-list li{
	padding: 0.25em 0;
  list-style: disc;
}

.simple-list li a{
  text-decoration: none;
  color: #2E2E2E;
}

.accordion-body .simple-list li a{
  text-decoration: underline;
  color: #2E2E2E;
}

.simple-list li a:hover{
  color: #472784;
}

/*MEDIA QUERIES--------------------*/
@media (max-width:1280px){
  .navbar {
      padding: 0rem 0.25rem 0rem 0rem;
  }
  .navbar-brand {
    padding: 0;
    background-color: #472784;
    margin-left: -15px;
  }
  .navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: var(--bs-navbar-color);
    background-color: transparent;
    border: transparent;
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
}

@media (max-width: 767px) {
  .hero {
    height: 150vh;
  }
  .top {
      height: auto;
      padding: 0;
  }
  .copyright{
  	text-align: center;
  	margin-bottom: 2em;
  }
  .footer-menu{
  	text-align: center;
  }
  .footer .social {
      margin: 0 0 2em 0;
      text-align: center;
  }
  .price-section h3{
  	min-height:inherit;
  }
  .hero-wrap{
    padding-top: 150px;
  }
}
@media (max-width: 480px){
  .footer{
  	padding-left: 0; padding-right: 0;
  }
  .footer-menu li a, .footer-links li a {
    display: block;
  }
  .btn-sm-block{width: 100%; display: block;}

  h1{
  	font-size: 2rem;
  	line-height:1.2;
  }

  h2{
  	font-size: 1.85rem;
  	line-height:1.2;
  }

  h3, .h3 {
      font-size: 1.45rem;
      line-height:1.2;
  }
}
