@charset "UTF-8";
html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, a, address, em, img, small, strike, strong, sub, sup, tt, var, b, u, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, embed, figure, figcaption, footer, header, hgroup, menu, nav, section, summary, time, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 2.4rem; /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  position: relative;
  min-height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

@media only screen and (min-width: 320px) and (-webkit-min-device-pixel-ratio: 2) {
  html {
    font-size: 68.75%;
  }
}
@media only screen and (min-width: 375px) and (-webkit-min-device-pixel-ratio: 2) {
  html {
    font-size: 75%;
  }
}
@media only screen and (min-width: 1200px) and (-webkit-min-device-pixel-ratio: 2) {
  html {
    font-size: 84%;
  }
}
@media only screen and (min-width: 1200px) and (min-resolution: 192dpi) {
  html {
    font-size: 84%;
  }
}
@media only screen and (min-width: 1300px) {
  html {
    font-size: 84%;
  }
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  -webkit-text-size-adjust: none;
  line-height: 1;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  background-color: #fff;
  transition: all 0.3s ease;
}

a {
  text-decoration: none;
  color: #4E2A84;
  cursor: pointer;
}
a:hover, a:focus, a:active {
  color: #666;
}

span {
  font-weight: inherit;
}

section + section {
  padding: 5.6rem 0 11.2rem;
}

@media only screen and (min-width: 768px) {
  section + section {
    padding: 11.2rem 0 11.2rem;
  }
}
button, .btn {
  background-color: transparent;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 600;
  line-height: 1;
  border-radius: 500px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  position: relative;
  border: 2px solid transparent;
  margin: 0;
  max-height: 4.8rem;
  border: 0.22rem solid transparent;
  color: #e0e5e9;
  padding: 1.2rem 3.2rem;
  font-size: 1.5rem;
  overflow: hidden;
  transition: all 0.16s ease-out;
}
button[disabled], button[disabled=disabled], button[disabled=true], .btn[disabled], .btn[disabled=disabled], .btn[disabled=true] {
  background-color: #ccc;
  color: #fff;
  cursor: not-allowed;
  box-shadow: none;
}
button[disabled]:hover, button[disabled=disabled]:hover, button[disabled=true]:hover, .btn[disabled]:hover, .btn[disabled=disabled]:hover, .btn[disabled=true]:hover {
  cursor: not-allowed;
}

button + button {
  margin-left: 0.8rem;
}

button, a {
  outline: 0;
  cursor: pointer;
}

button:hover, button:focus, button:active, .btn:hover, .btn:focus, .btn:active {
  background-color: #fff !important;
  color: #191718 !important;
  box-shadow: 0 0 11px rgba(0, 0, 0, 0.22);
  transition: all 0.2s ease;
}

label {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1.7;
  font-size: 1.5rem !important;
  font-weight: 600 !important;
}

input[type=text], input[type=number], input[type=tel], input[type=password], input[type=date], input[type=search], input[type=email], input[type=datetime-local], select {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  min-width: 35px;
  padding: 1.2rem 3.2rem 1.2rem 0.8rem;
  line-height: 1;
  background-color: #fff;
  border-width: 3px;
  border-style: solid;
  border-radius: 0.8rem;
  vertical-align: middle;
  font-size: 1.5rem;
  font-weight: 600;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  border-color: inherit;
  outline: 0;
  -o-transition: border 0.15s ease-in;
  -ms-transition: border 0.15s ease-in;
  -moz-transition: border 0.15s ease-in;
  -webkit-transition: border 0.15s ease-in;
  transition: border 0.15s ease-in;
}
input[type=text]:focus, input[type=number]:focus, input[type=tel]:focus, input[type=password]:focus, input[type=date]:focus, input[type=search]:focus, input[type=email]:focus, input[type=datetime-local]:focus, select:focus {
  outline: 0;
  border-color: #f3d849;
  box-shadow: inset 0 0 0.4rem rgba(0, 0, 0, 0.1);
}
input[type=text][disabled], input[type=text][disabled=disabled], input[type=text][disabled=true], input[type=number][disabled], input[type=number][disabled=disabled], input[type=number][disabled=true], input[type=tel][disabled], input[type=tel][disabled=disabled], input[type=tel][disabled=true], input[type=password][disabled], input[type=password][disabled=disabled], input[type=password][disabled=true], input[type=date][disabled], input[type=date][disabled=disabled], input[type=date][disabled=true], input[type=search][disabled], input[type=search][disabled=disabled], input[type=search][disabled=true], input[type=email][disabled], input[type=email][disabled=disabled], input[type=email][disabled=true], input[type=datetime-local][disabled], input[type=datetime-local][disabled=disabled], input[type=datetime-local][disabled=true], select[disabled], select[disabled=disabled], select[disabled=true] {
  color: #191718;
  background-color: #fff;
  border-color: #ccc;
}

/*
textarea {
  font-family: $font-default;
  border: 3px solid $color-light;
  font-size: 1.4rem;
  border-radius: $border-radius-button;
  padding: 0.6rem;
  &:focus {
    outline: 0;
    border-color: $color-brand-primary;
    //box-shadow: 0 0px 24px 0 rgba(74,68,160,0.5);
 }
}


input::placeholder,textarea::placeholder {
  font-family: $font-default;
  font-size: 1.3rem;
  font-weight: 400;
}



//Base Styles


b, strong {
  font-weight: $font-bold;
}

input[type="checkbox"], input[type="radio"] {
  margin: 0;
}

input[disabled] {
  background-color: $color-disable;
  pointer-events: none;
}

input[readonly] {
  &:focus {
    outline: 0;
  }
}

a[href^=tel] { color: inherit; text-decoration: none;}

address {
  font-size: 1.1em;
  font-weight: $font-regular;
}

ul, ol {
  padding-left: 1.5rem;
  font-size: 1.2rem;
  font-weight: $font-regular;
}

ul {
  list-style-type: disc;
}

li {
  padding-top: 0.6rem;

  &:first-child {
    padding-top: 0;
  }
}

dl {
  margin-bottom: 1.2em;
  &:last-child{
    margin-bottom: 0;
  }
}

table {
  width: 100%;
  margin-bottom: 0.6rem;
}

th {
  text-align: left;
  font-weight: $font-semibold;
  color: $color-dark;
  padding: 0.6rem 0;
  font-size: 1.2em;
}

th, td {
  border-bottom: 1px solid $color-border;
}

small {
  font-size: 1rem;
}

td {
  font-weight: $font-regular;
   padding: 1.2rem 0;
   font-size: 1.2em;
}

tr:last-child {
  td {
    border-bottom: 0;
  }
}

video {
  display: block;
}*/
.container {
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.6rem;
  padding-left: 1.6rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.8rem;
  margin-left: -0.8rem;
}

.row--reverse {
  flex-direction: row-reverse;
}
.row--middle {
  align-items: center;
}
.row--nowrap {
  flex-wrap: nowrap;
}

.row--column-xs {
  flex-direction: column;
}
.row--column-xs > .column {
  width: 100%;
}

.column {
  box-sizing: border-box;
  flex: 0 0 auto;
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

.row, .column {
  font-size: 0;
  line-height: 1;
}

@media screen and (max-width: 320px) {
  .container {
    padding-right: 0.8rem;
    padding-left: 0.8rem;
  }
}
.wrapper {
  padding-right: 1.6rem;
  padding-left: 1.6rem;
}
.wrapper--vertical {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
.wrapper--content {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}
.wrapper--negative-h {
  margin-right: -1.6rem;
  margin-left: -1.6rem;
}

.column--xs {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
}
.column--xs-1 {
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}
.column--xs-2 {
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}
.column--xs-3 {
  flex-basis: 25%;
  max-width: 25%;
}
.column--xs-4 {
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}
.column--xs-5 {
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}
.column--xs-6 {
  flex-basis: 50%;
  max-width: 50%;
}
.column--xs-7 {
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}
.column--xs-8 {
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}
.column--xs-9 {
  flex-basis: 75%;
  max-width: 75%;
}
.column--xs-10 {
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}
.column--xs-11 {
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}
.column--xs-12 {
  flex-basis: 100%;
  max-width: 100%;
}

.start-xs {
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  justify-content: center;
}

.end-xs {
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  align-items: flex-start;
}

.middle-xs {
  align-items: center;
}

.bottom-xs {
  align-items: flex-end;
}

.around-xs {
  justify-content: space-around;
}

.between-xs {
  justify-content: space-between;
}

.first-xs {
  order: -1;
}

.last-xs {
  order: 1;
}

@media only screen and (min-width: 640px) {
  .row--column-s {
    flex-direction: column;
  }
  .row--column-s > .column {
    width: 100%;
  }
  .row--reset-s {
    flex-direction: row;
  }
  .column--s {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .column--s-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .column--s-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .column--s-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .column--s-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .column--s-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .column--s-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .column--s-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .column--s-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .column--s-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .column--s-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .column--s-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .column--s-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .start-s {
    justify-content: flex-start;
    text-align: start;
  }
  .center-s {
    justify-content: center;
  }
  .end-s {
    justify-content: flex-end;
    text-align: end;
  }
  .top-s {
    align-items: flex-start;
  }
  .middle-s {
    align-items: center;
  }
  .bottom-s {
    align-items: flex-end;
  }
  .around-s {
    justify-content: space-around;
  }
  .between-s {
    justify-content: space-between;
  }
  .first-s {
    order: -1;
  }
  .last-s {
    order: 1;
  }
}
@media only screen and (min-width: 768px) {
  .row--column-m {
    flex-direction: column;
  }
  .row--column-m > .column {
    width: 100%;
  }
  .row--reset-m {
    flex-direction: row;
  }
  .column--m {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .column--m-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .column--m-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .column--m-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .column--m-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .column--m-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .column--m-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .column--m-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .column--m-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .column--m-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .column--m-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .column--m-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .column--m-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .start-m {
    justify-content: flex-start;
    text-align: start;
  }
  .center-m {
    justify-content: center;
  }
  .end-m {
    justify-content: flex-end;
    text-align: end;
  }
  .top-m {
    align-items: flex-start;
  }
  .middle-m {
    align-items: center;
  }
  .bottom-m {
    align-items: flex-end;
  }
  .around-m {
    justify-content: space-around;
  }
  .between-m {
    justify-content: space-between;
  }
  .first-m {
    order: -1;
  }
  .last-m {
    order: 1;
  }
}
@media only screen and (min-width: 1024px) {
  .row--column-l {
    flex-direction: column;
  }
  .row--column-l > .column {
    width: 100%;
  }
  .row--reset-l {
    flex-direction: row;
  }
  .container {
    max-width: 1366px;
  }
  .column--l {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .column--l-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .column--l-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .column--l-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .column--l-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .column--l-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .column--l-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .column--l-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .column--l-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .column--l-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .column--l-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .column--l-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .column--l-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .start-l {
    justify-content: flex-start;
    text-align: start;
  }
  .center-l {
    justify-content: center;
  }
  .end-l {
    justify-content: flex-end;
    text-align: end;
  }
  .top-l {
    align-items: flex-start;
  }
  .middle-l {
    align-items: center;
  }
  .bottom-l {
    align-items: flex-end;
  }
  .around-l {
    justify-content: space-around;
  }
  .between-l {
    justify-content: space-between;
  }
  .first-l {
    order: -1;
  }
  .last-l {
    order: 1;
  }
}
@media only screen and (min-width: 1170px) {
  .row--column-xl {
    flex-direction: column;
  }
  .row--column-xl > .column {
    width: 100%;
  }
  .row--reset-xl {
    flex-direction: row;
  }
  .container {
    max-width: 1366px;
  }
  .column--xl {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .column--xl-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .column--xl-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .column--xl-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .column--xl-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .column--xl-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .column--xl-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .column--xl-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .column--xl-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .column--xl-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .column--xl-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .column--xl-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .column--xl-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .start-xl {
    justify-content: flex-start;
    text-align: start;
  }
  .center-xl {
    justify-content: center;
  }
  .end-xl {
    justify-content: flex-end;
    text-align: end;
  }
  .top-xl {
    align-items: flex-start;
  }
  .middle-xl {
    align-items: center;
  }
  .bottom-xl {
    align-items: flex-end;
  }
  .around-xl {
    justify-content: space-around;
  }
  .between-xl {
    justify-content: space-between;
  }
  .first-xl {
    order: -1;
  }
  .last-xl {
    order: 1;
  }
}
.row--nogutters {
  margin-right: 0;
  margin-left: 0;
}

.row--nogutters > .column {
  padding-right: 0;
  padding-left: 0;
}

.row--vertical-gutters {
  margin-top: -0.8rem;
  margin-bottom: -0.8rem;
}

.row--vertical-gutters > .column {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

/* ** *********** Old Grid starts ************ ** */
/*.row {
  display: flex;
  justify-content: flex-start;
}
.row--equal > .column {
  box-sizing: border-box;
  flex: 1 0 0%;
}

.row--reverse-row {
  flex-direction: row-reverse;
}

.row--middle {
  align-items: center;
}

.row--wrap {
  flex-wrap: wrap;
  justify-content: initial;
}

.row--center {
  justify-content: center;
}

.row--space-around {
  justify-content: space-around;
}
.row--space-evenly {
  justify-content: space-evenly;
}

.row--bottom {
  align-items: flex-end;
}
.row--right {
  justify-content: flex-end;
}

.row--space-between {
  justify-content: space-between
}

.row--gutter {
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.row--gutter > .column {
  padding: 0 0.6rem;
}

.row--full-gutter {
  margin: -0.6rem;
}
.row--full-gutter > .column {
  padding: 0.6rem;
}*/
h1 {
  font-size: 5.4rem;
}

h2 {
  font-size: 4.8rem;
}

h3 {
  font-size: 4rem;
}

h4 {
  font-size: 3.2rem;
}

h5 {
  font-size: 2.4rem;
}

h6 {
  font-size: 1.9rem;
}

small {
  font-size: 1.2rem;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  line-height: 1.4;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Merriweather", "Times New Roman", serif;
  font-weight: 300;
}
h1.font-regular, h2.font-regular, h3.font-regular, h4.font-regular, h5.font-regular, h6.font-regular {
  font-weight: 300;
}
h1.font-medium, h2.font-medium, h3.font-medium, h4.font-medium, h5.font-medium, h6.font-medium {
  font-weight: 400;
}
h1.font-bold, h2.font-bold, h3.font-bold, h4.font-bold, h5.font-bold, h6.font-bold {
  font-weight: 700;
}

p {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  word-wrap: break-word;
  font-size: 1.6rem;
  line-height: 1.7;
}
p + p {
  margin-top: 0.8rem;
}

p {
  font-weight: 400;
}

span {
  line-height: 1.7;
}

p.font-regular, span.font-regular {
  font-weight: 400;
}
p.font-medium, span.font-medium {
  font-weight: 600;
}
p.font-bold, span.font-bold {
  font-weight: 700;
}

.h1 {
  font-size: 5.4rem !important;
}

.h2 {
  font-size: 4.8rem !important;
}

.h3 {
  font-size: 4rem !important;
}

.h4 {
  font-size: 3.2rem !important;
}

.h5 {
  font-size: 2.4rem !important;
}

.h6 {
  font-size: 1.9rem !important;
}

.p {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
}
.p.font-regular {
  font-weight: 400;
}
.p.font-medium {
  font-weight: 600;
}
.p.font-bold {
  font-weight: 700;
}

.small {
  font-size: 1.2rem !important;
}

.xsmall {
  font-size: 1.1rem !important;
}

.xxsmall {
  font-size: 1rem !important;
}

.q {
  quotes: "“" "”" "‘" "’";
  line-height: 1.9;
  font-family: "Merriweather", "Times New Roman", serif;
  font-weight: 300;
}
.q:before {
  content: open-quote;
  line-height: 0.2;
  font-size: 4rem;
  font-family: "Times New Roman", serif;
  font-weight: 700;
  display: inline-block;
  transform: translateY(140%);
  margin-right: 0.8rem;
  font-weight: bold;
}
.q:after {
  content: close-quote;
  line-height: 0.2;
  font-size: 4rem;
  font-family: "Times New Roman", serif;
  font-weight: 700;
  display: inline-block;
  transform: translateY(140%);
  margin-left: 0.8rem;
  font-weight: bold;
}

.icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.15em 0.16em 0.13em 0.16em;
  border-radius: 50%;
  font-size: 2rem;
  min-width: 2rem;
  min-height: 2rem;
}
.icon .material-icons {
  font-size: 1em;
}
.icon--xs {
  font-size: 0.8rem;
  min-width: 0.8rem;
  min-height: 0.8rem;
}
.icon--s {
  font-size: 1.6rem;
  min-width: 1.6rem;
  min-height: 1.6rem;
}
.icon--m {
  font-size: 2.4rem;
  min-width: 2.4rem;
  min-height: 2.4rem;
}
.icon--l {
  font-size: 3.2rem;
  min-width: 3.2rem;
  min-height: 3.2rem;
}
.icon--xl {
  font-size: 4.8rem;
  min-width: 4.8rem;
  min-height: 4.8rem;
}

.icon img {
  min-height: 1em;
  max-height: 1em;
  width: auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  z-index: 4;
}
.header--primary {
  padding: 0.4rem 0;
}
@media only screen and (min-width: 1024px) {
  .header--primary {
    padding: 0;
  }
}

footer {
  padding: 4rem 0 0;
}

.sidebar {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 6;
  transform: translate3d(105%, 0, 0);
  opacity: 0;
  transition: opacity 0.2s linear 0.15s, transform 0s ease 0.4s;
}
.sidebar__backdrop {
  background-color: rgba(0, 0, 0, 0.9);
  width: 100%;
  height: 100%;
  padding-left: 0.8rem;
}
.sidebar__container {
  border-radius: 1.6rem 0 0 1.6rem;
  width: 100%;
  height: 100%;
  float: right;
  max-width: 40em;
  transform: translate3d(105%, 0, 0);
  opacity: 0;
  transition: all 0.15s ease;
}
.sidebar__header {
  padding: 0.8rem 1.6rem;
}

.sidebar.show {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  transition: opacity 0.1s linear, transform 0s linear;
}
.sidebar.show .sidebar__container {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  transition: all 0.2s ease 0.15s;
}

.sidebar--signup .sidebar__backdrop {
  padding-left: 0;
}
.sidebar--signup .sidebar__container {
  border-radius: 0;
}
.sidebar--signup .sidebar__header {
  border-bottom: 1px solid #e0e0e0;
}

nav .nav__element {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  background-color: rgba(0, 0, 0, 0.1);
  color: #0862d0;
  border-radius: 0;
  text-align: left;
  display: block;
  padding: 1.6rem 0.8rem;
  font-size: 1.4rem;
  font-weight: 600;
  transition: all 0.12s ease-out;
}
nav .nav__element:hover {
  background-color: #f3d849;
  color: #191718;
  transition: all 0.12s ease;
}

.nav-primary {
  margin-left: 6.4rem;
  border-right: 2px solid #2a2a2a;
}
.nav-primary .nav__element {
  font-size: 1.3rem;
  padding-left: 1.6rem;
  padding-right: 1.6rem;
  color: #e0e5e9;
  background-color: transparent;
  position: relative;
  font-weight: 600;
  height: 100%;
}
.nav-primary .nav__element:after {
  content: "";
  width: 40%;
  height: 0.2rem;
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  background-color: #f3d848;
  transform: translate(-50%, -110%);
  transition: all 0.16s ease;
}
.nav-primary .nav__element:hover, .nav-primary .nav__element:active, .nav-primary .nav__element:focus {
  background-color: transparent;
  color: #f3d849;
  text-shadow: 1px 1px 87px #f3d848;
}
.nav-primary .nav__element.active {
  border-radius: 200px;
  color: #f3d849;
  text-shadow: 1px 1px 87px #f3d848;
}
.nav-primary .nav__element.active:after {
  content: "";
  transform: translate(-50%, 0%);
  box-shadow: 0 0 32px #f3d848;
}

.nav-secondary .nav__element {
  font-size: 1.9rem;
  background-color: transparent;
  color: #191718;
  font-family: "Merriweather", "Times New Roman", serif;
  font-weight: 500;
  text-align: left;
  padding: 2.4rem 1.6rem;
}
.nav-secondary li .nav__element {
  border-bottom: 1px solid #e0e0e0;
}
.nav-secondary li:last-child .nav__element {
  border-bottom: 0;
}

.nav-tertiary .nav__element {
  background-color: transparent;
  color: #fff;
}
.nav-tertiary .nav__element:hover, .nav-tertiary .nav__element:active, .nav-tertiary .nav__element:focus {
  background-color: transparent;
  color: #f3d849;
}

.btn-sticky {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translate3d(-50%, 110%, 0);
  z-index: 5;
  border: 0.3rem solid #f3d849 !important;
  box-shadow: 0 0.4rem 3.6rem 0.8rem rgba(0, 0, 0, 0.4), 0 0 1.6rem 0.2rem rgba(0, 0, 0, 0.3);
}
.btn-sticky.show {
  transform: translate3d(-50%, -3.2rem, 0);
}
.btn-sticky--home {
  border-radius: 0.8rem;
  padding: 0.8rem 1.2rem;
}
@media only screen and (min-width: 640px) {
  .btn-sticky--home {
    padding: 2.4rem 1.6rem;
  }
}

.accordian__item {
  border-top: 1px solid;
  padding: 2rem 0;
  position: relative;
  padding-right: 2.4rem;
  cursor: pointer;
}
.accordian__item:before {
  content: "\e5cf";
  font-family: "Material Icons";
  font-size: 2.4rem;
  width: 2.4rem;
  height: 2.4rem;
  display: block;
  position: absolute;
  right: 0;
  top: 1.8rem;
  line-height: 1;
}

/*Card Styles*/
.card {
  border-radius: 1.6rem;
}
.card__image {
  position: relative;
  overflow: hidden;
}
.card__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: block;
  border-radius: 1.6rem 1.6rem 0 0;
}
.card__image--landscape {
  padding-top: 56.25%;
}
.card__image--portrait {
  padding-top: 117.78%;
}
.card__image--square {
  padding-top: 50%;
}

.card--circle {
  padding-top: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  min-width: 40rem;
}
.card--circle__content {
  position: absolute;
  margin: -1.6rem;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16%;
}

.is-clickable {
  cursor: pointer;
  outline: 0;
}
.is-clickable.card {
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.2s ease;
}
.is-clickable.card:hover, .is-clickable.card:active, .is-clickable.card:focus {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}
.is-clickable.card.bg-brand-primary:hover, .is-clickable.card.bg-brand-secondary:hover, .is-clickable.card.bg-brand-tertiary:hover, .is-clickable.card.bg-white:hover, .is-clickable.card.bg-lightest:hover {
  box-shadow: 0 0 2.4rem rgba(0, 0, 0, 0.2);
}

.hero {
  background-size: cover;
  background-attachment: fixed;
  padding: 6rem 0 2rem;
  background-repeat: no-repeat;
  background-position: center top;
  background-image: url("https://images.unsplash.com/photo-1635830625698-3b9bd74671ca?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=1932");
}

.hero .container > .row {
  min-height: 60vh;
}

.review {
  background: url("https://images.unsplash.com/photo-1594928274321-4497d98e4f48?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=1932") no-repeat;
  background-position: right bottom;
  background-size: auto 100%;
  background-attachment: fixed;
  padding: 0;
}
.review > div {
  background-color: rgba(0, 0, 0, 0.8);
  padding-top: 13.6rem;
  padding-bottom: 13.6rem;
}

@media only screen and (min-width: 640px) {
  .hero {
    padding: 8rem 0 8rem;
  }
  .hero .container > .row {
    min-height: 48vh;
  }
}
@media only screen and (min-width: 768px) {
  .hero {
    padding: 8rem 0 8rem;
  }
  .hero .container > .row {
    min-height: 48vh;
  }
}
@media only screen and (min-width: 1024px) {
  .hero .container > .row {
    min-height: 48vh;
  }
  .review {
    background-size: 100% auto;
    background-position: center center;
  }
}
@media only screen and (min-width: 1170px) {
  .hero {
    height: 75vh;
  }
}
/*
Utility styles
*/
strike {
  color: #666;
  font-weight: 100;
  font-size: 0.9em;
}

/*--------------------- Container */
.lineheight-reset {
  line-height: 1 !important;
}

.lineheight-default {
  line-height: 1.4 !important;
}

.top-reset {
  top: 0;
}

/*--------------------- Colors */
.color-brand-primary {
  color: #f3d849 !important;
}
.color-brand-secondary {
  color: #0862d0 !important;
}
.color-brand-tertiary {
  color: #191718 !important;
}
.color-dark {
  color: #191718 !important;
}
.color-darker {
  color: #707070 !important;
}
.color-darkest {
  color: #191718 !important;
}
.color-light {
  color: #666 !important;
}
.color-lighter {
  color: #e0e0e0 !important;
}
.color-lightest {
  color: #e0e5e9 !important;
}
.color-black {
  color: #000 !important;
}
.color-white {
  color: #fff !important;
}
.color-success {
  color: #2E7D32;
}
.color-warning {
  color: #E6A200;
}
.color-error {
  color: #D82323;
}
.color-link {
  color: #4E2A84 !important;
}
.color-link:hover, .color-link:focus, .color-link:active {
  color: #666 !important;
}

.bg-transparent {
  background-color: rgba(0, 0, 0, 0) !important;
}
.bg-white {
  background-color: #fff !important;
  color: #191718;
}
.bg-brand-primary {
  background-color: #f3d849 !important;
  color: #191718;
}
.bg-brand-secondary {
  background-color: #0862d0 !important;
  color: #fff;
}
.bg-brand-tertiary {
  background-color: #191718 !important;
  color: #e0e5e9;
}
.bg-lightest {
  background-color: #e0e5e9 !important;
  color: #191718;
}
.bg-dark {
  background-color: #191718 !important;
}
.bg-light {
  background-color: #e0e5e9 !important;
}
.bg-google {
  background-color: #4285f4 !important;
  color: #fff;
}
.bg-google .icon {
  background-size: 100% auto;
  background-color: #fff;
}

button.bg-brand-primary {
  border-color: #f3d849;
}
button.bg-brand-primary:hover, button.bg-brand-primary:focus, button.bg-brand-primary:active {
  background-color: #191718 !important;
  color: #f3d849 !important;
}
button.bg-brand-secondary {
  border-color: #0862d0;
}
button.bg-brand-secondary:hover, button.bg-brand-secondary:focus, button.bg-brand-secondary:active {
  background-color: #191718 !important;
  color: #0862d0 !important;
}
button.bg-brand-tertiary {
  border-color: #191718;
}
button.bg-brand-tertiary:hover, button.bg-brand-tertiary:focus, button.bg-brand-tertiary:active {
  background-color: #f3d849 !important;
  color: #191718 !important;
  border-color: #ffe660 !important;
}
button.bg-google {
  border-color: #4285f4;
}
button.bg-google:hover, button.bg-google:focus, button.bg-google:active {
  background-color: #fff !important;
  color: #191718 !important;
}
button.bg-google:hover .icon, button.bg-google:focus .icon, button.bg-google:active .icon {
  background-color: #e0e5e9;
}

/*--------------------- Float Properties */
.flt-right {
  float: right;
}

.flt-left {
  float: left;
}

.txt-right {
  text-align: right;
}

.txt-left {
  text-align: left;
}

.txt-center {
  text-align: center;
}

/*--------------------- Divider */
.divider {
  border-width: 1px;
  border-color: #e0e0e0;
}
.divider--left {
  border-left-style: solid;
}
.divider--top {
  border-top-style: solid;
}
.divider--bottom {
  border-bottom-style: solid;
}
.divider--right {
  border-right-style: solid;
}
.divider--secondary {
  border-color: #f1f1f1;
}

/*--------------------- Text Sizes */
/*--------------------- Font Weight */
/*---------------------Text Style */
.txt-no-wrap {
  white-space: nowrap;
}
.txt-wrap-normal {
  white-space: normal;
}
.txt-uppercase {
  text-transform: uppercase;
}
.txt-capitalize {
  text-transform: capitalize !important;
}
.txt-lowercase {
  text-transform: lowercase !important;
}
.txt-defaultcase {
  text-transform: none !important;
}
.txt-first-uppercase:first-letter {
  text-transform: uppercase;
}
.txt-ellipsis {
  max-width: 20ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.txt-underline {
  text-decoration: underline;
}
.txt-italic {
  font-style: italic;
}

/*--------------------- Display properties */
.block {
  display: block;
}

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

.v-center {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.h-center {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.hidden {
  display: none;
}

/*--------------------- List */
.list--comfortable li + li {
  padding-top: 1em;
}
.list--comfortable li {
  line-height: 1.5;
}
.list--cozy li + li {
  padding-top: 0.6em;
}
.list--compact li + li {
  padding-top: 0.3em;
}

.list--reset {
  list-style: none;
  padding-left: 0;
}

/*--------------------- Padding Reset */
.padding-reset {
  padding: 0 !important;
}
.padding-reset-l {
  padding-left: 0 !important;
}
.padding-reset-r {
  padding-right: 0 !important;
}
.padding-reset-t {
  padding-top: 0 !important;
}
.padding-reset-b {
  padding-bottom: 0 !important;
}

/*--------------------- Margin Reset */
.margin-reset {
  margin: 0 !important;
}
.margin-reset-l {
  margin-left: 0 !important;
}
.margin-reset-r {
  margin-right: 0 !important;
}
.margin-reset-t {
  margin-top: 0 !important;
}
.margin-reset-b {
  margin-bottom: 0 !important;
}

/*--------------------- Margin Top */
.margin-top-xs {
  margin-top: 0.4rem !important;
}
.margin-top-s {
  margin-top: 0.8rem !important;
}
.margin-top-m {
  margin-top: 1.2rem !important;
}
.margin-top-l {
  margin-top: 1.6rem !important;
}
.margin-top-xl {
  margin-top: 2.4rem !important;
}
.margin-top-xxl {
  margin-top: 3.2rem !important;
}
.margin-top-xxxl {
  margin-top: 6rem !important;
}

/*--------------------- Image */
.img-responsive {
  max-width: 100%;
  height: auto;
  width: 100%;
}

img:not([src]) {
  opacity: 0;
}

/*--------------------- Overflow */
.overflow-auto {
  overflow: auto;
}

@media screen and (-ms-high-contrast: active) and (min-width: 768px), screen and (-ms-high-contrast: none) and (min-width: 768px) {
  .img-responsive {
    max-width: 100%;
    height: auto;
    width: auto;
  }
}
/*! Utilizes lazysizes - v5.2.2 for removing this class */
.lazyload {
  background-image: none !important;
}

@media only screen and (min-width: 320px) {
  .txt-right--xs {
    text-align: right;
  }
  .txt-left--xs {
    text-align: left;
  }
  .txt-center-xs {
    text-align: center;
  }
}
@media only screen and (min-width: 640px) {
  .txt-right--s {
    text-align: right;
  }
  .txt-left--s {
    text-align: left;
  }
  .txt-center-s {
    text-align: center;
  }
}
@media only screen and (min-width: 768px) {
  .txt-right--m {
    text-align: right;
  }
  .txt-left--m {
    text-align: left;
  }
  .txt-center-m {
    text-align: center;
  }
}
@media only screen and (min-width: 1024px) {
  .txt-right--l {
    text-align: right;
  }
  .txt-left--l {
    text-align: left;
  }
  .txt-center-l {
    text-align: center;
  }
}
.full-height {
  height: 100%;
}

.full-width {
  width: 100%;
}

@media only screen and (min-width: 320px) {
  .show-xs {
    display: block;
  }
  .hide-xs {
    display: none;
  }
}
@media only screen and (min-width: 640px) {
  .show-s {
    display: block;
  }
  .hide-s {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .show-m {
    display: block;
  }
  .hide-m {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .show-l {
    display: block;
  }
  .hide-l {
    display: none;
  }
}
@media only screen and (min-width: 1170px) {
  .show-xl {
    display: block;
  }
  .hide-xl {
    display: none;
  }
}
.section {
  padding: 5.6rem 0;
}

.btn > .btn__label, button > .btn__label {
  line-height: 1;
}

.btn-inline {
  display: flex;
  align-items: center;
}

.btn__label + .icon, .icon + .btn__label {
  margin-left: 0.8rem;
}

.btn--text {
  padding: 0.8rem;
  border: 0;
  text-decoration: underline;
}
.btn--text:hover, .btn--text:active, .btn--text:focus {
  text-decoration: none;
}

.bg-brand-tertiary .btn--text, .bg-brand-secondary .btn--text {
  color: #fff;
}

.bg-white .btn--text, .bg-brand-primary .btn--text {
  color: #191718;
}

.separator {
  padding: 1.6rem 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  padding: 2.4rem 0;
}
.separator:after, .separator:before {
  content: "";
  border-width: 1px;
  max-height: 2px;
  border-style: solid;
  display: block;
  opacity: 0.18;
  width: 30%;
}
.separator:before {
  content: "";
  margin-right: 0.8rem;
}
.separator:after {
  content: "";
  margin-left: 0.8rem;
}

#day-light-toggle {
  color: #f3d849 !important;
}
#day-light-toggle .material-icons {
  opacity: 1;
}
#day-light-toggle:hover, #day-light-toggle:active, #day-light-toggle:focus {
  background-color: rgba(255, 255, 255, 0.2) !important;
}
#day-light-toggle:hover .material-icons, #day-light-toggle:active .material-icons, #day-light-toggle:focus .material-icons {
  opacity: 1;
}

.dark-icons img:last-child {
  display: none;
}
.dark-icons img:first-child {
  display: inline-block;
}

.dark {
  background-color: #191718;
  color: #d9d9d9;
  transition: all 0.3s ease;
}
.dark #day-light-toggle {
  color: #e0e5e9 !important;
}
.dark #day-light-toggle .material-icons {
  opacity: 0.8;
}
.dark .bg-light {
  background-color: #1a1a1a !important;
  color: #e0e5e9 !important;
}
.dark button {
  background-color: rgba(255, 255, 255, 0.1);
}
.dark .hero {
  color: #191718;
}
.dark .dark-icons img:last-child {
  display: inline-block;
}
.dark .dark-icons img:first-child {
  display: none;
}

/*# sourceMappingURL=style.css.map */
