/*!
Theme Name: eleven_eight
Theme URI: http://underscores.me/
Author: Infinity Creative
Author URI: http://www.infinity-creative.co.uk
Description: Copywriting
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: eleven-eight
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

eleven_eight is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Infinity CSS
# Layout
# Modules 

--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;600&display=swap");
@font-face {
  font-family: DolceHeavyBold; 
  src: url("./src/fonts/DolceVitaHeavyBold.woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: DolceVita;
  src: url("./src/fonts/DolceVita.woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
.mainHeading {
  background: rgba(148, 105, 191, 0.3);
  display: table;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
  color: #372573;
  font-size: 2.8rem;
  letter-spacing: 1px;
}
@media (max-width: 1100px) {
  .mainHeading {
    font-size: 2.5rem;
  }
}
@media (max-width: 380px) {
  .mainHeading {
    letter-spacing: 0.5px;
  }
}

/*--------------------------------------------------------------
# Infinity CSS
--------------------------------------------------------------*/
/*!
 * Infinity CSS 
 * https://infinity-creative.co.uk
 *
 */
*,
*:after,
*:before {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  color: #111;
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
}

.iemessage {
  padding: 2rem;
  text-align: center;
}
.iemessage h2 {
  color: #372573;
}

.btn,
button,
input[type=button],
input[type=reset],
input[type=submit] {
  background-color: rgba(148, 105, 191, 0.3);
  border: 0.3rem solid #372573;
  border-radius: 0;
  color: #372573;
  cursor: pointer;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
  height: 5.3rem;
  letter-spacing: 0.1rem;
  line-height: 4.8rem;
  padding: 0 2rem;
  text-align: center;
  text-decoration: none;
  text-transform: capitalize;
  white-space: nowrap;
}

.btn:focus,
.btn:hover,
button:focus,
button:hover,
input[type=button]:focus,
input[type=button]:hover,
input[type=reset]:focus,
input[type=reset]:hover,
input[type=submit]:focus,
input[type=submit]:hover {
  border-color: #606c76;
  color: #fff;
  outline: 0;
}

.btn[disabled],
button[disabled],
input[type=button][disabled],
input[type=reset][disabled],
input[type=submit][disabled] {
  cursor: default;
  opacity: 0.5;
}

.btn[disabled]:focus,
.btn[disabled]:hover,
button[disabled]:focus,
button[disabled]:hover,
input[type=button][disabled]:focus,
input[type=button][disabled]:hover,
input[type=reset][disabled]:focus,
input[type=reset][disabled]:hover,
input[type=submit][disabled]:focus,
input[type=submit][disabled]:hover {
  background-color: rgba(148, 105, 191, 0.3);
  border-color: #372573;
}

.btn.btn--outline,
button.btn--outline,
input[type=button].btn--outline,
input[type=reset].btn--outline,
input[type=submit].btn--outline {
  background-color: transparent;
  color: #372573;
}

.btn.btn--outline:focus,
.btn.btn--outline:hover,
button.btn--outline:focus,
button.btn--outline:hover,
input[type=button].btn--outline:focus,
input[type=button].btn--outline:hover,
input[type=reset].btn--outline:focus,
input[type=reset].btn--outline:hover,
input[type=submit].btn--outline:focus,
input[type=submit].btn--outline:hover {
  background-color: transparent;
  border-color: #372573;
  color: #372573;
}

.btn.btn--outline[disabled]:focus,
.btn.btn--outline[disabled]:hover,
button.btn--outline[disabled]:focus,
button.btn--outline[disabled]:hover,
input[type=button].btn--outline[disabled]:focus,
input[type=button].btn--outline[disabled]:hover,
input[type=reset].btn--outline[disabled]:focus,
input[type=reset].btn--outline[disabled]:hover,
input[type=submit].btn--outline[disabled]:focus,
input[type=submit].btn--outline[disabled]:hover {
  border-color: inherit;
  color: #372573;
}

hr {
  border: 0;
  border-top: 0.1rem solid #f4f5f6;
  margin: 3rem 0;
}

input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=url],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 0.1rem solid #d1d1d1;
  border-radius: 0;
  box-shadow: none;
  box-sizing: inherit;
  height: 3.8rem;
  padding: 0.6rem 1rem;
  width: 100%;
}

input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=url]:focus,
textarea:focus,
select:focus {
  border-color: transparent;
  outline: 0;
  height: 100%;
}

textarea {
  min-height: 6.5rem;
}

label,
legend {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

input[type=checkbox],
input[type=radio] {
  display: inline;
}

.container {
  margin: 0 auto;
  max-width: 1150px;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
  width: 100%;
}

:focus {
  outline: none;
}

section {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media (max-width: 650px) {
  section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.widget {
  padding-top: 0;
  padding-bottom: 0;
}

.entry-content strong {
  margin-bottom: 0.5rem;
  color: #372573;
  font-size: 2rem;
  letter-spacing: 0.75px;
}

.grid {
  display: flex;
  width: 100%;
}

.grid.grid--wrap {
  flex-wrap: wrap;
}

.grid .col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.grid .col-10 {
  flex: 0 0 10%;
  max-width: 10%;
  margin-bottom: inherit;
  padding: 0 1rem;
}

.grid .col-20 {
  flex: 0 0 20%;
  max-width: 20%;
  margin-bottom: inherit;
  padding: 0 1rem;
}

.grid .col-25 {
  flex: 0 0 25%;
  max-width: 25%;
  margin-bottom: inherit;
  padding: 0 1rem;
}

.grid .col-33 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  margin-bottom: inherit;
  padding: 0 1rem;
}

.grid .col-40 {
  flex: 0 0 40%;
  max-width: 40%;
  margin-bottom: inherit;
  padding: 0 1rem;
}

.grid .col-50 {
  flex: 0 0 50%;
  max-width: 50%;
  margin-bottom: inherit;
  padding: 0 1rem;
}

.grid .col-60 {
  flex: 0 0 60%;
  max-width: 60%;
  margin-bottom: inherit;
  padding: 0 1rem;
}

.grid .col-66 {
  flex: 0 0 66.6666%;
  max-width: 66.6666%;
  margin-bottom: inherit;
  padding: 0 1rem;
}

.grid .col-75 {
  flex: 0 0 75%;
  max-width: 75%;
  margin-bottom: inherit;
  padding: 0 1rem;
}

.grid .col-80 {
  flex: 0 0 80%;
  max-width: 80%;
  margin-bottom: inherit;
  padding: 0 1rem;
}

.grid .col-90 {
  flex: 0 0 90%;
  max-width: 90%;
  margin-bottom: inherit;
  padding: 0 1rem;
}

.grid .col-100 {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: inherit;
  padding: 0 1rem;
}

@media (max-width: 650px) {
  .grid {
    flex-direction: column;
  }

  .grid .col,
.grid .col-10,
.grid .col-20,
.grid .col-25,
.grid .col-33,
.grid .col-40,
.grid .col-50,
.grid .col-60,
.grid .col-66,
.grid .col-75,
.grid .col-80,
.grid .col-90 {
    display: block;
    flex: 1 1 auto;
    margin-left: 0;
    max-width: 100%;
    width: 100%;
  }
}
a {
  color: #111;
  text-decoration: none;
}

a:focus,
a:hover {
  color: #606c76;
}

dl,
ol,
ul {
  list-style: none;
  margin-top: 0;
  padding-left: 0;
}

dl dl,
dl ol,
dl ul,
ol dl,
ol ol,
ol ul,
ul dl,
ul ol,
ul ul {
  font-size: 90%;
  margin: 1.5rem 0 1.5rem 3rem;
}

ol {
  list-style: decimal inside;
}

ul {
  list-style: disc;
}

.btn,
button,
dd,
dt,
li {
  margin-bottom: 1rem;
}

input,
select,
textarea {
  margin-bottom: 1.5rem;
}

dl,
figure,
form,
ol,
p,
table,
ul {
  margin-bottom: 1rem;
}

table {
  border-spacing: 0;
  width: 100%;
}

td,
th {
  border-bottom: 0.1rem solid #e1e1e1;
  padding: 1.2rem 1.5rem;
  text-align: left;
}

td:first-child,
th:first-child {
  padding-left: 0;
}

td:last-child,
th:last-child {
  padding-right: 0;
}

b,
strong {
  font-weight: bold;
}

p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: -0.1rem;
  margin-bottom: 2rem;
  margin-top: 0;
}

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

h2 {
  font-size: 3.6rem;
  line-height: 1.25;
}

h3 {
  font-size: 2.8rem;
  line-height: 1.3;
}

h4 {
  font-size: 2.2rem;
  letter-spacing: -0.08rem;
  line-height: 1.35;
}

h5 {
  font-size: 1.8rem;
  letter-spacing: -0.05rem;
  line-height: 1.5;
}

h6 {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.4;
}

img {
  max-width: 100%;
  height: auto;
}

.btnWrapper {
  text-align: center;
  margin-top: 8rem;
}

.ml-auto {
  margin-left: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 650px) {
  .grecaptcha-badge {
    visibility: hidden;
  }
}
/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
.nav {
  background: #fff;
  position: relative;
}
@media (max-width: 1150px) {
  .nav {
    border-bottom: 1px solid #111;
    margin-bottom: 1rem;
  }
}
.nav__logoWrapper {
  display: none;
}
@media (max-width: 1150px) {
  .nav__logoWrapper {
    display: flex;
    justify-content: flex-end;
    margin: 1rem;
  }
}
.nav__logo {
  width: 120px;
}
.nav ul {
  display: none;
}
.nav__toggle {
  position: absolute;
  top: 25%;
  left: 60px;
  transform: translateX(-100%);
  background-color: transparent;
  padding: 1em 0.5em;
  border: 0;
  border-radius: 0.25em 0 0 0.25em;
  z-index: 10;
  display: none;
  outline: none;
}
@media (max-width: 1150px) {
  .nav__toggle {
    display: block;
  }
}
.nav__toggle:focus {
  background-color: transparent;
}
.nav .hamburger {
  display: block;
  position: relative;
}
.nav .hamburger,
.nav .hamburger::before,
.nav .hamburger::after {
  width: 3rem;
  height: 3px;
  background: #333;
  transition: transform 350ms ease-in-out, opacity 200ms linear;
}
.nav .hamburger::before,
.nav .hamburger::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav .hamburger::before {
  bottom: 6px;
}
.nav .hamburger::after {
  top: 6px;
}
.nav .menu-menu-1-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.nav .menu-menu-1-container .menu {
  display: flex;
  list-style: none;
  align-items: center;
  margin-bottom: 0;
}
@media (max-width: 1150px) {
  .nav .menu-menu-1-container .menu {
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    position: absolute;
    top: 1px;
    background: #fff;
    border: 1px solid;
    max-height: 0;
    overflow: hidden;
    padding-left: 0px;
    -webkit-transform: perspective(400) rotate3d(1, 0, 0, -90deg);
    -webkit-transform-origin: 50% 0;
    transition: 350ms;
    z-index: 5;
    padding: 0 0.75rem;
  }
}
.nav .menu-menu-1-container .menu li {
  width: 212px;
  display: inline-block;
  text-align: center;
  color: #372573;
  font-weight: 600;
  line-height: 1;
  padding: 2rem;
  margin: 0;
  position: relative;
  border-top: 2px solid #111;
  border-bottom: 2px solid #111;
}
@media (max-width: 1650px) {
  .nav .menu-menu-1-container .menu li {
    padding: 2rem 1rem;
    width: 192px;
  }
}
@media (max-width: 1300px) {
  .nav .menu-menu-1-container .menu li {
    width: 171px;
    font-size: 1.4rem;
  }
}
@media (max-width: 1150px) {
  .nav .menu-menu-1-container .menu li {
    margin-right: 1rem;
    width: 100%;
    text-align: left;
    padding: 1rem;
    border-top: none;
    border-bottom: none;
  }
}
@media (max-width: 650px) {
  .nav .menu-menu-1-container .menu li {
    margin-left: 1rem;
  }
}
.nav .menu-menu-1-container .menu li a {
  color: inherit;
}
.nav .menu-menu-1-container .menu li .sub-menu {
  display: none;
  z-index: 999;
}
@media (min-width: 1150px) {
  .nav .menu-menu-1-container .menu li .sub-menu li {
    border-top: none;
    background: #fff;
  }
}
@media (max-width: 1150px) {
  .nav .menu-menu-1-container .menu li .sub-menu.show {
    display: block;
    width: 100%;
    position: relative;
    margin-left: 0;
    margin-bottom: 0;
  }
  .nav .menu-menu-1-container .menu li .sub-menu.show li {
    margin: 0;
  }
}
.nav .menu-menu-1-container .menu .menu-item-10 {
  border: none;
  width: 350px;
  padding: 0 2rem;
}
@media (max-width: 1560px) {
  .nav .menu-menu-1-container .menu .menu-item-10 {
    width: 325px;
  }
}
@media (max-width: 1460px) {
  .nav .menu-menu-1-container .menu .menu-item-10 {
    width: 260px;
  }
}
@media (max-width: 1300px) {
  .nav .menu-menu-1-container .menu .menu-item-10 {
    width: 235px;
  }
}
@media (max-width: 1150px) {
  .nav .menu-menu-1-container .menu .menu-item-10 {
    display: none;
  }
}
@media (max-width: 1150px) {
  .nav .menu-menu-1-container .menu li:last-of-type {
    border-bottom: 0;
  }
}
@media (min-width: 1151px) {
  .nav .menu-menu-1-container .menu li:hover {
    cursor: pointer;
    color: #27093b;
  }
  .nav .menu-menu-1-container .menu li:hover .sub-menu {
    display: block;
    position: absolute;
    left: 0;
    top: 47px;
    width: 190px;
    margin: 1rem 0;
  }
  .nav .menu-menu-1-container .menu li:hover .sub-menu li {
    display: block;
    left: 0;
  }
}
@media (min-width: 1151px) and (max-width: 650px) {
  .nav .menu-menu-1-container .menu li:hover .sub-menu li {
    width: 100%;
  }
}
@media (min-width: 1151px) {
  .nav .menu-menu-1-container .menu li:hover .sub-menu li a {
    color: #372573;
  }
}

.nav .menu li:hover .sub-menu li:hover a {
  color: #809390;
}

/* Navigation open styles */
.nav--open .menu-menu-1-container .menu {
  max-height: 1000px;
  -webkit-transform: perspective(400) rotate3d(0, 0, 0, 0);
}

.nav--open .hamburger {
  transform: rotate(45deg);
}

.nav--open .hamburger::before {
  opacity: 0;
}

.nav--open .hamburger::after {
  transform: rotate(90deg) translate(-6px);
}

.nav .menu li:hover .sub-menu li:hover a {
  color: #809390;
}

.intro {
  padding-top: 20rem;
  padding-bottom: 20rem;
}
@media (max-width: 800px) {
  .intro {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
@media (max-width: 650px) {
  .intro {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media (max-width: 800px) {
  .intro .mainHeading {
    font-size: 1.8rem;
  }
}
.intro__textWrapper {
  padding-right: 2rem;
}
@media (max-width: 1100px) {
  .intro__textWrapper {
    padding-right: 0;
  }
}
.intro__title {
  background: rgba(148, 105, 191, 0.3);
  display: inline-block;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
  color: #372573;
  font-size: 3rem;
}
@media (max-width: 1100px) {
  .intro__title {
    font-size: 2.8rem;
  }
}
@media (max-width: 800px) {
  .intro__title {
    font-size: 2rem;
  }
}
.intro__btnWrapper {
  margin-top: 6rem;
  text-align: center;
}
@media (max-width: 650px) {
  .intro__img {
    display: none;
  }
}

.download {
  padding-top: 0rem;
  padding-bottom: 0rem;
  text-align: center;
  position: relative;
  height: 50vh;
  margin-bottom: 10rem;
}
@media (min-width: 2400px) {
  .download {
    height: 55vh;
  }
}
@media (max-width: 1300px) {
  .download {
    background-position: 75% 50% !important;
  }
}
@media (max-width: 1100px) {
  .download {
    height: 30vh;
    background-position: 90% 50% !important;
  }
}
@media (max-width: 650px) {
  .download {
    height: 45vh;
    margin-bottom: 5rem;
    background-position: 61% 50% !important;
  }
}
.download__wrapper {
  margin: 0 auto;
  max-width: 1150px;
  padding: 0 2rem;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
}
.download__content {
  width: 70%;
  margin: 0 auto;
  position: relative;
  top: -30px;
}
@media (max-width: 650px) {
  .download__content {
    width: 100%;
  }
}
.download__content img {
  border-radius: 50%;
  max-width: 300px;
}
@media (max-width: 1200px) {
  .download__content img {
    max-width: 250px;
    position: relative;
    left: 45px;
  }
}
@media (max-width: 800px) {
  .download__content img {
    max-width: 205px;
  }
}
@media (max-width: 650px) {
  .download__content img {
    display: none;
  }
}
.download__content h2 {
  margin-bottom: 0;
}
@media (max-width: 650px) {
  .download__content h2 {
    padding: 0;
  }
}
.download__title {
  background: #372573;
  display: inline-block;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
  color: #dad6e4;
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 1100px) {
  .download__title {
    font-size: 2.8rem;
  }
}
@media (max-width: 800px) {
  .download__title {
    font-size: 2rem;
  }
}
@media (max-width: 650px) {
  .download__title {
    font-size: 1.8rem;
  }
}
@media (max-width: 360px) {
  .download__title {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
}
.download__form {
  position: absolute;
  bottom: -40px;
  width: 100%;
  left: 0;
}
@media (max-width: 650px) {
  .download__form {
    bottom: -55px;
  }
}
.download__form .wpcf7-not-valid-tip {
  display: inline-block;
}
.download__form .wpcf7 form.invalid .wpcf7-response-output,
.download__form .wpcf7 form.unaccepted .wpcf7-response-output,
.download__form .wpcf7 form.sent .wpcf7-response-output {
  position: absolute;
  left: 0;
  right: 0;
}
.download input[type=text],
.download input[type=email] {
  width: 25%;
  text-align: center;
  height: 4.8rem;
  margin-left: 2rem;
  background: #dad6e4;
  border: 2px solid #372573;
}
@media (max-width: 650px) {
  .download input[type=text],
.download input[type=email] {
    margin-left: 0.5rem;
    width: 45%;
    font-size: 1rem;
  }
}
.download input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}
.download .btn {
  width: 25%;
  background-color: #372573;
  color: #fff;
  margin-left: 2rem;
}
@media (max-width: 650px) {
  .download .btn {
    margin-left: 0.5rem;
    width: unset;
  }
}

.kind {
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 20rem;
}
@media (max-width: 650px) {
  .kind {
    padding-top: 3rem;
    padding-bottom: 5rem;
  }
}
.kind__heading {
  margin-bottom: 4rem;
}
@media (max-width: 650px) {
  .kind__heading img {
    width: 275px;
  }
}
.kind__img img {
  border-radius: 50%;
  margin-bottom: 2rem;
}
.kind__text {
  align-self: center;
}
.kind__name {
  color: #372573;
  font-weight: 600;
  margin-top: 4rem;
}
.kind .btn {
  margin-top: 4rem;
}
.kind .col-33 {
  margin-bottom: 8rem;
}
@media (max-width: 650px) {
  .kind .col-33 {
    margin-bottom: 2rem;
    margin-top: 2rem;
  }
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4rem;
}
@media (max-width: 650px) {
  .about {
    grid-template-columns: 1fr;
    grid-gap: 2rem;
  }
}
.about__imgWrapper img {
  position: relative;
  top: -20px;
}
@media (max-width: 650px) {
  .about__imgWrapper {
    order: 1;
  }
}
.about__textWrapper h2 {
  position: relative;
  margin-bottom: 4rem;
}
.about__textWrapper .mainHeading {
  position: relative;
  left: 25%;
  font-size: 3.8rem;
}
@media (max-width: 800px) {
  .about__textWrapper .mainHeading {
    left: 10%;
    font-size: 2.5rem;
  }
}
.about__textWrapper .about--left {
  left: 30%;
}
@media (max-width: 800px) {
  .about__textWrapper .about--left {
    left: 15%;
  }
}
.about__textWrapper .btn {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 6rem;
}
.about__quote {
  color: #372573;
  font-size: 2.5rem;
  font-weight: 600;
  padding: 3rem 0;
  line-height: 1.4;
}

.core {
  background: #dad6e4;
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}
.core .mainHeading {
  color: #dad6e4;
  background: #27093b;
  margin-bottom: 2rem;
  font-size: 3.5rem;
}
.core__wrapper {
  margin: 0 auto;
  max-width: 1150px;
  padding: 0 2rem;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
}
@media (max-width: 650px) {
  .core__wrapper {
    display: block;
  }
}
.core__text {
  position: relative;
  top: -23px;
}
@media (max-width: 650px) {
  .core__text {
    top: -13px;
  }
}
.core__text h3 {
  margin-bottom: 0.5rem;
  color: #372573;
  font-size: 2.5rem;
  letter-spacing: 0.75px;
}
@media (max-width: 650px) {
  .core__text .grid {
    flex-direction: row;
  }
}
@media (max-width: 650px) {
  .core__text .grid .col-10 {
    flex: 0 0 12%;
    max-width: 12%;
  }
}
@media (max-width: 650px) {
  .core__text .grid .col-90 {
    flex: 0 0 87%;
    max-width: 87%;
  }
}
.core__firstP {
  margin-bottom: 5rem;
}
.core__para {
  margin-bottom: 3rem;
}
.core__imgWrapper {
  position: relative;
  top: -42px;
  text-align: center;
}

.behind__textSection {
  padding-right: 5rem;
}
@media (max-width: 650px) {
  .behind__textSection {
    padding-right: 0;
    order: 1;
  }
}
.behind__textSection h2 {
  margin-bottom: 4rem;
}
.behind__textSection p {
  margin-bottom: 3rem;
}
.behind .mainHeading {
  font-size: 3.5rem;
}
@media (max-width: 650px) {
  .behind .mainHeading {
    font-size: 2.5rem;
  }
}
.behind__imgSection {
  text-align: right;
}
@media (max-width: 650px) {
  .behind__imgSection {
    text-align: center;
  }
}
@media (max-width: 650px) {
  .behind__imgSection img {
    margin-bottom: 2rem;
  }
}
.behind__btnWrapper {
  margin-top: 4rem;
  position: relative;
}
.behind__btnWrapper img {
  width: 65px;
  height: 65px;
  position: relative;
  left: 30px;
}

.slider {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.slider__about img {
  padding: 1rem;
}

.want {
  padding-bottom: 0rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  align-items: center;
  text-align: center;
}
@media (max-width: 650px) {
  .want {
    display: block;
  }
}
.want .mainHeading {
  display: inline-block;
}
.want .btn {
  margin-top: 4rem;
}
@media (max-width: 650px) {
  .want .btn {
    margin-top: 2rem;
    margin-bottom: 4rem;
  }
}
.want__imgSection img {
  position: relative;
  bottom: -69px;
}
@media (max-width: 650px) {
  .want__imgSection img {
    bottom: 0;
    margin-bottom: 2rem;
  }
}
.want__textSection p {
  width: 70%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 650px) {
  .want__textSection p {
    width: 100%;
  }
}

.bespoke {
  padding-top: 20rem;
  padding-bottom: 20rem;
}
@media (max-width: 800px) {
  .bespoke {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
@media (max-width: 650px) {
  .bespoke {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.bespoke h2 {
  margin-bottom: 4rem;
}
.bespoke .btnWrapper {
  text-align: center;
}

.blogPrices__priceWrapper {
  text-align: center;
  margin-top: 15rem;
}
@media (max-width: 650px) {
  .blogPrices__priceWrapper {
    margin-top: 0rem;
  }
}
.blogPrices__priceWrapper .card {
  position: relative;
  height: 530px;
}
@media (max-width: 800px) {
  .blogPrices__priceWrapper .card {
    height: 495px;
  }
}
@media (max-width: 650px) {
  .blogPrices__priceWrapper .card {
    margin-top: 2rem;
    height: 415px;
  }
}
.blogPrices__priceWrapper .card h4 {
  margin-top: 3rem;
  font-size: 4.5rem;
  font-weight: 400;
}
.blogPrices__priceWrapper .card ul {
  text-align: left;
  padding-left: 3rem;
  list-style: disc;
}
.blogPrices__priceWrapper .card__header {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.blogPrices__priceWrapper .card__header h3 {
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  margin-bottom: 0;
  letter-spacing: 1px;
}
@media (max-width: 650px) {
  .blogPrices__priceWrapper .card__header h3 {
    font-size: 2rem;
  }
}
.blogPrices__priceWrapper .card__img {
  position: absolute;
  top: -75px;
  left: 25%;
  right: 0;
  bottom: 0;
}
@media (max-width: 800px) {
  .blogPrices__priceWrapper .card__img {
    left: 19%;
  }
}
@media (max-width: 650px) {
  .blogPrices__priceWrapper .card__img {
    left: 30%;
  }
}
@media (max-width: 380px) {
  .blogPrices__priceWrapper .card__img {
    left: 27%;
  }
}
@media (max-width: 320px) {
  .blogPrices__priceWrapper .card__img {
    left: 23%;
  }
}
.blogPrices .btnWrapper {
  text-align: center;
  margin-top: 4rem;
}

.bolt-on__heading {
  margin-bottom: 4rem;
}
@media (max-width: 650px) {
  .bolt-on__heading {
    margin-bottom: 2rem;
    font-size: 2rem;
  }
}
.bolt-on .card {
  width: 100%;
}
.bolt-on .card h2 {
  margin-bottom: 2rem;
  margin-left: 2rem;
  letter-spacing: 0.75px;
}
@media (max-width: 650px) {
  .bolt-on .card h2 {
    font-size: 1.8rem;
  }
}
.bolt-on .card hr {
  margin: 1rem 0;
}
.bolt-on .card ul {
  padding: 4rem;
  text-align: left;
  list-style: disc;
}
.bolt-on .card h3 {
  margin-top: 2rem;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.75px;
}
@media (max-width: 650px) {
  .bolt-on .card h3 {
    border-top: 1px solid #9469bf;
    padding-top: 2rem;
    font-size: 1.8rem;
  }
}
@media (max-width: 650px) {
  .bolt-on .card .card__firstHeading {
    border-top: none;
    padding-top: 0;
  }
}
.bolt-on .card h4 {
  margin-top: 2rem;
  font-size: 4.5rem;
  font-weight: 400;
}
.bolt-on .card .col-100 {
  border-bottom: 1px solid #9469bf;
  margin-bottom: 0;
  text-align: left;
}
.bolt-on .card .col-100 h2 {
  margin-top: 2rem;
}
.bolt-on .card .col-33 {
  border-right: 1px solid #9469bf;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
}
.bolt-on .card .col-33:last-of-type {
  border-right: 0;
}
.bolt-on .btnWrapper {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 8rem;
}
@media (max-width: 650px) {
  .bolt-on .btnWrapper {
    margin-bottom: 0;
  }
}

.still {
  padding-bottom: 0;
}
@media (max-width: 650px) {
  .still {
    padding-bottom: 5rem;
  }
}
.still p {
  margin-bottom: 4rem;
}
.still img {
  position: relative;
  bottom: -7px;
}
@media (max-width: 650px) {
  .still img {
    bottom: 0;
  }
}
.still .card__heading {
  margin-top: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.75px;
}
@media (max-width: 650px) {
  .still .card__heading {
    font-size: 1.8rem;
  }
}
.still .card__subHeading {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.75px;
}
@media (max-width: 650px) {
  .still .card__subHeading {
    font-size: 1.8rem;
  }
}
.still .card hr {
  margin: 1rem 0;
}
.still .card h4 {
  font-weight: 400;
  font-size: 4rem;
  margin-top: 2rem;
}
@media (max-width: 650px) {
  .still .card h4 {
    font-size: 3rem;
  }
}
.still .card ul {
  list-style: disc;
  text-align: left;
  padding: 3rem 10rem 3rem 14rem;
}
@media (max-width: 800px) {
  .still .card ul {
    padding: 3rem 8rem 3rem 10rem;
  }
}
@media (max-width: 320px) {
  .still .card ul {
    padding: 3rem 3rem 3rem 6rem;
  }
}
.still .card__header {
  padding: 2rem;
}
.still .card__header h3 {
  margin-bottom: 0;
}
@media (max-width: 650px) {
  .still .card__header h3 {
    font-size: 2rem;
  }
}
.still .btnWrapper {
  text-align: center;
  margin-top: 4rem;
}

.captivating {
  padding-top: 20rem;
  padding-bottom: 20rem;
}
@media (max-width: 800px) {
  .captivating {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
@media (max-width: 650px) {
  .captivating {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.captivating h2 {
  margin-bottom: 4rem;
}

.what-are {
  padding-top: 15rem;
  padding-bottom: 15rem;
}
@media (max-width: 650px) {
  .what-are {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.what-are__wrapper {
  margin-top: 6rem;
}
@media (min-width: 1100px) {
  .what-are__wrapper .card {
    width: 65%;
  }
}
.what-are__wrapper .card__header {
  padding: 2rem;
}
.what-are__wrapper .card__header h3 {
  margin-bottom: 0;
  letter-spacing: 0.75px;
}
@media (max-width: 650px) {
  .what-are__wrapper .card__header h3 {
    font-size: 2rem;
  }
}
.what-are__wrapper .card h4 {
  font-weight: 400;
  font-size: 4rem;
  margin-top: 2rem;
}
.what-are__wrapper .card hr {
  margin: 1rem 0;
}
.what-are__wrapper .card ul {
  padding: 3rem 8rem;
  text-align: left;
  list-style: disc;
}

.need-more {
  padding-bottom: 15rem;
}
.need-more .card {
  margin-top: 4rem;
}
.need-more .card__header {
  padding: 2rem;
  margin-bottom: 0;
}
.need-more .card__header h2 {
  margin-bottom: 0;
}
@media (max-width: 650px) {
  .need-more .card__header h2 {
    font-size: 2rem;
  }
}
.need-more .card h3 {
  margin-top: 2rem;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.75px;
}
@media (max-width: 650px) {
  .need-more .card h3 {
    border-top: 1px solid #9469bf;
    padding-top: 2rem;
  }
}
@media (max-width: 650px) {
  .need-more .card .card__firstHeading {
    border-top: none;
    padding-top: 0;
  }
}
.need-more .card h4 {
  font-weight: 400;
  font-size: 4rem;
}
.need-more .card .col-50 {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
}
.need-more .card ul {
  padding: 4rem 10rem;
  text-align: left;
  list-style: disc;
}

.content {
  padding-top: 20rem;
  padding-bottom: 20rem;
}
@media (max-width: 800px) {
  .content {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
@media (max-width: 650px) {
  .content {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.contentPackages h2 {
  margin-bottom: 4rem;
}
.contentPackages ul {
  text-align: left;
  padding-left: 10rem;
}
.contentPackages__subHeading {
  font-size: 2.5rem;
  color: #9469bf;
  letter-spacing: 0.75px;
}
@media (max-width: 650px) {
  .contentPackages__subHeading {
    font-size: 2rem;
  }
}
.contentPackages .card {
  margin-top: 4rem;
}
.contentPackages .card--br p {
  text-align: left;
  padding-left: 8rem;
  margin-bottom: 2.2rem;
}
@media (max-width: 650px) {
  .contentPackages .card--br p {
    padding-left: 5rem;
  }
}
.contentPackages .card__header {
  padding: 1rem;
  margin-bottom: 2rem;
}
.contentPackages .card__header h3 {
  margin-bottom: 0;
  letter-spacing: 0.75px;
}
@media (max-width: 650px) {
  .contentPackages .card__header h3 {
    font-size: 2rem;
  }
}
.contentPackages .card .col-50 {
  padding: 0;
  margin-bottom: 0;
  padding-bottom: 3rem;
}
.contentPackages .card h4 {
  margin-top: 4rem;
  font-weight: 400;
  font-size: 3.2rem;
  margin-bottom: 4rem;
}

.superhero__subHeading {
  font-size: 2.5rem;
  color: #9469bf;
  letter-spacing: 0.75px;
}
@media (max-width: 650px) {
  .superhero__subHeading {
    font-size: 2rem;
  }
}
.superhero ul {
  text-align: left;
  padding-left: 10rem;
}
.superhero .card {
  margin-top: 4rem;
}
.superhero .card--br p {
  text-align: left;
  padding-left: 8rem;
  margin-bottom: 2.2rem;
}
@media (max-width: 650px) {
  .superhero .card--br p {
    padding-left: 5rem;
  }
}
.superhero .card__header {
  padding: 1rem;
  margin-bottom: 2rem;
}
.superhero .card__header h3 {
  margin-bottom: 0;
  letter-spacing: 0.75px;
}
@media (max-width: 650px) {
  .superhero .card__header h3 {
    font-size: 2rem;
  }
}
.superhero .card .col-50 {
  padding: 0;
  margin-bottom: 0;
  padding-bottom: 3rem;
}
.superhero .card h4 {
  margin-top: 4rem;
  font-weight: 400;
  font-size: 3.2rem;
  margin-bottom: 4rem;
}

.happily {
  padding-bottom: 15rem;
}
.happily__subHeading {
  font-size: 2.5rem;
  color: #9469bf;
  letter-spacing: 0.75px;
}
@media (max-width: 650px) {
  .happily__subHeading {
    font-size: 2rem;
  }
}
.happily ul {
  text-align: left;
  padding-left: 10rem;
}
.happily .card {
  margin-top: 4rem;
}
.happily .card--br p {
  text-align: left;
  padding-left: 8rem;
  margin-bottom: 2.2rem;
}
@media (max-width: 650px) {
  .happily .card--br p {
    padding-left: 5rem;
  }
}
.happily .card__header {
  padding: 1rem;
  margin-bottom: 2rem;
}
.happily .card__header h3 {
  margin-bottom: 0;
  letter-spacing: 0.75px;
}
@media (max-width: 650px) {
  .happily .card__header h3 {
    font-size: 2rem;
  }
}
.happily .card .col-50 {
  padding: 0;
  margin-bottom: 0;
  padding-bottom: 3rem;
}
.happily .card h4 {
  margin-top: 4rem;
  font-weight: 400;
  font-size: 3.2rem;
  margin-bottom: 4rem;
}

.diy {
  padding-top: 20rem;
  padding-bottom: 20rem;
}
@media (max-width: 800px) {
  .diy {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
@media (max-width: 650px) {
  .diy {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.diy__subHeading {
  font-size: 2.5rem;
  color: #9469bf;
  letter-spacing: 0.75px;
}
@media (max-width: 650px) {
  .diy__subHeading {
    font-size: 2rem;
  }
}

.building {
  padding-top: 15rem;
}
.building h2 {
  margin-bottom: 4rem;
}
.building__bullet {
  margin-right: 1rem;
}
.building__text {
  margin-bottom: 3rem;
}

.workshopReview {
  gap: 3rem;
}
.workshopReview .col-60 {
  text-align: center;
}
.workshopReview .col-60 img {
  margin-bottom: 2rem;
}
.workshopReview .col-60 h3 {
  color: #9469bf;
}
.workshopReview__name {
  color: #372573;
  font-weight: 600;
}
.workshopReview .card hr {
  margin: 1rem 0;
}
.workshopReview .card h3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-weight: 400;
}
@media (max-width: 650px) {
  .workshopReview .card h3 {
    font-size: 2rem;
  }
}
.workshopReview .card h4 {
  font-weight: 400;
  font-size: 3.8rem;
  margin-top: 2rem;
}
@media (max-width: 650px) {
  .workshopReview .card h4 {
    font-size: 3rem;
  }
}
.workshopReview .card ul {
  list-style: disc;
  text-align: left;
  padding: 3rem 3rem 3rem 5rem;
}
@media (max-width: 800px) {
  .workshopReview .card ul {
    padding: 3rem 3rem 3rem 4rem;
  }
}
@media (max-width: 320px) {
  .workshopReview .card ul {
    padding: 3rem 3rem 3rem 3rem;
  }
}
.workshopReview .card__header {
  padding: 2rem;
}
.workshopReview .card__header h3 {
  margin-bottom: 0;
}
@media (max-width: 650px) {
  .workshopReview .card__header h3 {
    font-size: 2rem;
  }
}

.sure__form {
  margin-top: 2rem;
}
.sure__form input[type=text],
.sure__form input[type=email] {
  width: 25%;
  text-align: center;
  height: 4.8rem;
  margin-left: 2rem;
}
@media (max-width: 650px) {
  .sure__form input[type=text],
.sure__form input[type=email] {
    width: 100%;
    margin-left: 0;
  }
}
.sure__form .btn {
  width: 25%;
  background-color: #372573;
  color: #fff;
  margin-left: 2rem;
}
@media (max-width: 650px) {
  .sure__form .btn {
    width: 100%;
    margin-left: 0;
  }
}

.whitePaper {
  padding-top: 20rem;
  padding-bottom: 20rem;
}
@media (max-width: 800px) {
  .whitePaper {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
@media (max-width: 650px) {
  .whitePaper {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.whyPublish {
  padding-top: 15rem;
}

.whitePaperReview {
  gap: 3rem;
}
@media (max-width: 800px) {
  .whitePaperReview {
    gap: 1rem;
  }
}
.whitePaperReview .col-60 {
  text-align: center;
}
.whitePaperReview .col-60 img {
  margin-bottom: 2rem;
}
.whitePaperReview .col-60 h3 {
  color: #9469bf;
}
.whitePaperReview__name {
  color: #372573;
  font-weight: 600;
}
.whitePaperReview .card hr {
  margin: 1rem 0;
}
.whitePaperReview .card h3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: 0.75px;
}
@media (max-width: 650px) {
  .whitePaperReview .card h3 {
    font-size: 2rem;
  }
}
.whitePaperReview .card h4 {
  font-weight: 400;
  font-size: 4rem;
  margin-top: 2rem;
}
@media (max-width: 650px) {
  .whitePaperReview .card h4 {
    font-size: 3rem;
  }
}
.whitePaperReview .card ul {
  list-style: disc;
  text-align: left;
  padding: 3rem 3rem 3rem 5rem;
}
@media (max-width: 800px) {
  .whitePaperReview .card ul {
    padding: 3rem 3rem 3rem 4rem;
  }
}
@media (max-width: 320px) {
  .whitePaperReview .card ul {
    padding: 3rem 3rem 3rem 3rem;
  }
}
.whitePaperReview .card__header {
  padding: 2rem;
}
.whitePaperReview .card__header h3 {
  margin-bottom: 0;
}
@media (max-width: 650px) {
  .whitePaperReview .card__header h3 {
    font-size: 2rem;
  }
}

.whitePapers__heading {
  margin-bottom: 4rem;
  color: #9469bf;
}
@media (max-width: 650px) {
  .whitePapers__heading {
    font-size: 2rem;
  }
}
.whitePapers__wrapper {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.whitePapers__link {
  margin: 0 1rem;
  transition: 1.5s;
}
.whitePapers__link:hover {
  transform: translateY(-20px);
}
.whitePapers__link img {
  margin-top: 1.4rem;
}

.slider h3 {
  margin-bottom: 4rem;
  color: #9469bf;
}
@media (max-width: 650px) {
  .slider h3 {
    font-size: 2rem;
  }
}
@media (max-width: 1500px) {
  .slider__whitePapers img {
    width: 270px;
  }
}
@media (max-width: 900px) {
  .slider__whitePapers img {
    width: 210px;
  }
}
@media (max-width: 650px) {
  .slider__whitePapers img {
    width: 260px;
  }
}
@media (max-width: 330px) {
  .slider__whitePapers img {
    width: 215px;
  }
}

.clients__tabs {
  padding-bottom: 10rem;
}
@media (max-width: 650px) {
  .clients__tabs {
    padding-bottom: 5rem;
  }
}
@media (max-width: 650px) {
  .clients__tabs.grid {
    flex-direction: row;
  }
}
@media (max-width: 650px) {
  .clients__tabs.grid .col-25 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.clients__image {
  filter: grayscale(100%) sepia(100%) hue-rotate(-150deg);
  cursor: pointer;
}
.clients__image.current {
  filter: grayscale(0%) sepia(0%);
}
.clients__tabContent {
  display: none;
  padding: 15px;
}
.clients__tabContent h2 {
  color: #9469bf;
}
@media (max-width: 650px) {
  .clients__tabContent h2 {
    font-size: 2rem;
  }
}
.clients__tabContent.current {
  display: inherit;
}
.clients__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  row-gap: 6rem;
}
@media (max-width: 650px) {
  .clients__wrapper {
    display: block;
  }
}
.clients__img {
  text-align: center;
}
.clients__text h3 {
  color: #372573;
}
@media (max-width: 650px) {
  .clients__text h3 {
    font-size: 2rem;
  }
}
@media (max-width: 850px) {
  .clients__text {
    padding-left: 2rem;
  }
}
@media (max-width: 650px) {
  .clients__text {
    padding-left: 0;
    margin-bottom: 2rem;
  }
}
.clients__before {
  background: #27093b;
  color: #fff;
  padding: 6rem;
  position: relative;
}
@media (max-width: 380px) {
  .clients__before {
    padding: 5rem 3rem;
  }
}
@media (max-width: 650px) {
  .clients__before h3 {
    font-size: 2rem;
  }
}
.clients__before:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: 40%;
  right: -99px;
  border-left: 50px solid #27093b;
  border-right: 50px solid transparent;
  border-bottom: 50px solid transparent;
  border-top: 50px solid transparent;
}
@media (max-width: 650px) {
  .clients__before:after {
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 50px solid #27093b;
    bottom: -99px;
    right: 37%;
  }
}
@media (max-width: 320px) {
  .clients__before:after {
    right: 33%;
  }
}
.clients__after {
  background: #372573;
  color: #fff;
  padding: 6rem;
}
@media (max-width: 380px) {
  .clients__after {
    padding: 5rem 3rem;
  }
}
@media (max-width: 650px) {
  .clients__after h3 {
    font-size: 2rem;
  }
}
.clients__review {
  grid-column: -3/-1;
  text-align: center;
  margin-top: 4rem;
}
.clients__review h3 {
  color: #372573;
}
@media (max-width: 650px) {
  .clients__review h3 {
    font-size: 2rem;
  }
}
.clients__reviewContainer {
  border: 4px solid #372573;
  padding: 5rem 10rem;
  position: relative;
}
@media (max-width: 650px) {
  .clients__reviewContainer {
    padding: 5rem 1rem;
  }
}
.clients__reviewQuoteTop {
  position: absolute;
  left: -85px;
  top: -85px;
}
@media (max-width: 1100px) {
  .clients__reviewQuoteTop {
    left: -20px;
    width: 120px;
  }
}
@media (max-width: 650px) {
  .clients__reviewQuoteTop {
    display: none;
  }
}
.clients__reviewQuoteBottom {
  position: absolute;
  right: -60px;
  bottom: -60px;
}
@media (max-width: 1100px) {
  .clients__reviewQuoteBottom {
    right: -20px;
    width: 120px;
  }
}
@media (max-width: 650px) {
  .clients__reviewQuoteBottom {
    display: none;
  }
}

.blogSection {
  margin-top: 4rem;
}
.blogSection.grid {
  gap: 2rem;
}
.blogSection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1.5rem;
  row-gap: 6rem;
}
@media (max-width: 950px) {
  .blogSection-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 650px) {
  .blogSection-grid {
    grid-template-columns: 1fr;
  }
}

.blogHeader {
  margin-top: 4rem;
  margin-bottom: 6rem;
}
.blogHeader p {
  width: 75%;
}

.widget-area {
  text-align: center;
  margin-bottom: 4rem;
}
.widget-area .widget-title {
  font-size: 2rem;
  color: #9469bf;
  margin-top: 4rem;
}

.widget ul {
  list-style: none;
}
.widget ul li {
  background: #372573;
  padding: 1.5rem 1rem;
  color: #fff;
}
.widget ul li a {
  color: inherit;
}

.widget_text h2 {
  font-size: 2rem;
  color: #9469bf;
}
.widget_text p {
  display: flex;
  justify-content: space-evenly;
}
.widget_text p img {
  width: 55px;
  height: 55px;
}

.widget_media_image img {
  border-radius: 50%;
  margin-bottom: 2rem;
}

.blogSingle {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 1rem;
  border: 3px solid #372573;
  padding: 0;
  height: 100%;
}
.blogSingle__img {
  padding: 2rem;
  padding-bottom: 0;
}
.blogSingle__text {
  padding: 2rem;
  position: relative;
  height: 100%;
  text-align: center;
  padding-bottom: 4.5rem;
}
.blogSingle__text .entry-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.blogSingle__text .entry-title a {
  color: #9469bf;
}
.blogSingle .btnWrapper {
  position: absolute;
  bottom: -27px;
  right: 0;
  left: 0;
}
.blogSingle .btnWrapper .btn {
  padding: 0 5rem;
  background-color: #372573;
  color: #fff;
}

.page-title {
  color: #9469bf;
  font-size: 3rem;
}

.blogPageSingle .entry-title {
  font-size: 4.5rem;
  color: #372573;
  margin-top: 4rem;
}
.blogPageSingle h2 {
  font-size: 3rem;
  color: #9469bf;
  margin-top: 4rem;
}
.blogPageSingle h3 {
  font-size: 2.5rem;
  color: #9469bf;
  margin-top: 4rem;
}
.blogPageSingle h4 {
  font-size: 2.2rem;
  color: #9469bf;
  margin-top: 4rem;
}
.blogPageSingle h5 {
  font-size: 2rem;
  color: #9469bf;
  margin-top: 4rem;
}
.blogPageSingle h6 {
  font-size: 1.8rem;
  color: #9469bf;
  margin-top: 4rem;
}
.blogPageSingle ul {
  padding-left: 2rem;
}
.blogPageSingle.grid {
  gap: 4rem;
}

.navigation {
  margin-top: 8rem;
  margin-bottom: 4rem;
}
@media (max-width: 650px) {
  .navigation {
    margin-top: 4rem;
  }
}
.navigation ul {
  display: flex;
  list-style: none;
  justify-content: center;
  align-items: center;
}
.navigation ul li {
  padding: 0 0.5rem;
  border: 1px solid #372573;
  margin: 0 0.25rem;
}
.navigation ul li.active {
  background-color: #372573;
}
.navigation ul li.active a {
  color: #fff;
}
.navigation ul .prev,
.navigation ul .next {
  border: none;
}

.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  margin: 0 auto;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 11rem;
  padding-top: 20rem;
  padding-bottom: 20rem;
  margin-bottom: 10rem;
}
@media (max-width: 930px) {
  .contact {
    display: block;
    margin-bottom: 5rem;
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
@media (max-width: 650px) {
  .contact {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.contact__phone {
  color: #372573;
  margin-top: 2rem;
}
.contact__link {
  color: #372573;
}
.contact__info {
  text-align: center;
}
.contact__info p {
  text-align: left;
}
.contact__img {
  border-radius: 50%;
  margin-bottom: 2rem;
}
.contact__social {
  margin-top: 4rem;
}
.contact__social p {
  display: flex;
  justify-content: space-evenly;
}
.contact__social img {
  width: 70px;
  height: 70px;
}
.contact__form {
  background-color: rgba(55, 37, 115, 0.3);
  padding: 4rem;
  position: relative;
}
@media (max-width: 930px) {
  .contact__form {
    margin-top: 4rem;
  }
}
.contact__form .mainHeading {
  background: #d4c8e6;
}
@media (max-width: 380px) {
  .contact__form .mainHeading {
    font-size: 2.1rem;
  }
}
.contact__form h2 {
  position: relative;
  left: -67px;
}
@media (max-width: 930px) {
  .contact__form h2 {
    left: 0;
  }
}
.contact__form small {
  display: none;
}
@media (max-width: 650px) {
  .contact__form small {
    position: relative;
    top: -25px;
    display: block;
  }
}
.contact form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4rem;
}
.contact form .your-name,
.contact form .your-email {
  flex: 0 0 49%;
  max-width: 49%;
  background-color: #d0cbdd;
  height: 4.8rem;
  border: 2px solid #372573;
}
@media (max-width: 650px) {
  .contact form .your-name,
.contact form .your-email {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.contact form .wpcf7-form-control-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 1.5rem;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.contact form input[type=email],
.contact form input[type=number],
.contact form input[type=password],
.contact form input[type=search],
.contact form input[type=tel],
.contact form input[type=text],
.contact form input[type=url],
.contact form textarea,
.contact form select {
  height: 4.45rem;
}
.contact form input::placeholder,
.contact form textarea::placeholder {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #111;
}
.contact form .your-name {
  margin-right: 1rem;
}
@media (max-width: 650px) {
  .contact form .your-name {
    margin-right: 0rem;
  }
}
.contact form input[type=email],
.contact form input[type=text] {
  border: 2px solid #372573;
  background-color: #d0cbdd;
}
.contact form textarea {
  background-color: #d0cbdd;
  min-height: 28rem;
  border: 2px solid #372573;
}
.contact form .btn {
  position: absolute;
  bottom: -28px;
  padding: 0 10rem;
  background-color: #372573;
  color: #fff;
}
.contact form .btn:hover {
  background-color: #9469bf;
  border-color: #fff;
}

.faq {
  padding-bottom: 15rem;
}
.faq__heading {
  margin-bottom: 3rem;
}
.faq__text {
  width: 60%;
  margin-bottom: 4rem;
}
@media (max-width: 650px) {
  .faq__text {
    width: 100%;
  }
}
.faq__img {
  margin-right: 1rem;
  width: 25px;
}
.faq__question {
  letter-spacing: 0.75px;
}
.faq .accordion-toggle {
  display: block;
  color: #9469bf;
  font-size: 2.5rem;
  margin-bottom: 4rem;
}
@media (max-width: 650px) {
  .faq .accordion-toggle {
    text-indent: -38px;
    margin-left: 38px;
    font-size: 2rem;
  }
}
.faq .accordion-content {
  display: none;
  margin-bottom: 4rem;
  margin-top: -3rem;
}
.faq .accordion-content p {
  width: 80%;
  margin-left: 4rem;
}
.faq .accordion-content.active {
  display: block;
}

.custom-page {
  padding-top: 5rem;
  padding-bottom: 10rem;
}

.social-link {
  padding-bottom: 3rem;
  max-width: 750px;
  margin-inline: auto;
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}
.social-link:first-of-type {
  padding-top: 3rem;
}
.social-link .wp-block-button__link:hover {
  background-color: #9469bf !important;
}

.social-link-heading {
  font-size: 4rem;
  margin-top: 3rem;
}

.footer {
  background: #27093b;
  padding: 1rem;
  color: #fff;
  text-align: center;
}
.footer a {
  color: #fff;
}
.footer .sep {
  margin: 0rem 1rem;
}
.footer li {
  list-style: none;
  display: inline-block;
}
.footer p {
  display: inline-block;
}

/*--------------------------------------------------------------
# Modules
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

.hero {
  margin-top: 2rem;
  position: relative;
  height: 45vh;
  padding-top: 0;
  padding-bottom: 0;
}
@media (min-width: 2300px) {
  .hero {
    height: 50vh;
  }
}
@media (max-width: 1200px) {
  .hero {
    height: 30vh;
  }
}
@media (max-width: 650px) {
  .hero {
    margin-top: 0rem;
  }
}
.hero__wrapper {
  margin: 0 auto;
  max-width: 1150px;
  padding: 0 2rem;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
}
.hero__heading {
  position: absolute;
  left: 175px;
  bottom: 25%;
  width: 22%;
  color: #372573;
  font-family: DolceHeavyBold;
  font-size: 6rem;
}
@media (max-width: 1550px) {
  .hero__heading {
    font-size: 5rem;
  }
}
@media (max-width: 1200px) {
  .hero__heading {
    left: 130px;
  }
}
@media (max-width: 800px) {
  .hero__heading {
    left: 78px;
    bottom: 10%;
  }
}
@media (max-width: 650px) {
  .hero__heading {
    left: 0;
    right: 0;
    width: 100%;
    font-size: 2.2rem;
    top: 0px;
    z-index: 1;
  }
}
.hero__img {
  position: absolute;
  bottom: 20px;
  height: 105%;
}
@media (max-width: 1200px) {
  .hero__img {
    right: 50px;
  }
}
.hero__img--move {
  bottom: 7px;
}
@media (max-width: 650px) {
  .hero__img--move {
    bottom: 0;
  }
}
@media (max-width: 650px) {
  .hero__img--remove {
    display: none;
  }
}

.heroAbout {
  margin-top: 2rem;
  position: relative;
  height: 45vh;
  padding-top: 0;
  padding-bottom: 0;
}
@media (min-width: 2300px) {
  .heroAbout {
    height: 50vh;
  }
}
@media (max-width: 1200px) {
  .heroAbout {
    height: 30vh;
  }
}
@media (max-width: 650px) {
  .heroAbout {
    margin-top: 0rem;
    height: 38vh;
  }
}
.heroAbout__wrapper {
  margin: 0 auto;
  max-width: 1150px;
  padding: 0 2rem;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
}
.heroAbout__heading {
  position: absolute;
  right: 175px;
  bottom: 25%;
  width: 20%;
  color: #372573;
  font-family: DolceHeavyBold;
  z-index: 2;
}
@media (max-width: 800px) {
  .heroAbout__heading {
    right: 75px;
  }
}
@media (max-width: 650px) {
  .heroAbout__heading {
    left: 0;
    right: 0;
    width: 100%;
    font-size: 2.2rem;
    top: 0px;
    z-index: 1;
  }
}
.heroAbout__heading--about {
  width: 30%;
}
@media (max-width: 650px) {
  .heroAbout__heading--about {
    width: 100%;
  }
}
@media (max-width: 1100px) {
  .heroAbout__heading--blogs {
    width: 30%;
  }
}
@media (max-width: 650px) {
  .heroAbout__heading--blogs {
    width: 100%;
  }
}
.heroAbout__heading--case {
  width: 25%;
}
@media (max-width: 900px) {
  .heroAbout__heading--case {
    width: 50%;
  }
}
@media (max-width: 650px) {
  .heroAbout__heading--case {
    width: 100%;
  }
}
.heroAbout__heading--contact {
  width: 30%;
}
@media (max-width: 800px) {
  .heroAbout__heading--contact {
    width: 45%;
  }
}
@media (max-width: 650px) {
  .heroAbout__heading--contact {
    width: 100%;
  }
}
.heroAbout__heading--copy {
  width: 25%;
}
@media (min-width: 2400px) {
  .heroAbout__heading--copy {
    right: 20px;
  }
}
@media (max-width: 800px) {
  .heroAbout__heading--copy {
    width: 40%;
  }
}
@media (max-width: 650px) {
  .heroAbout__heading--copy {
    width: 100%;
  }
}
@media (min-width: 2400px) {
  .heroAbout__heading--workshop {
    right: 70px;
  }
}
@media (max-width: 800px) {
  .heroAbout__heading--workshop {
    width: 35%;
  }
}
@media (max-width: 650px) {
  .heroAbout__heading--workshop {
    width: 100%;
  }
}
.heroAbout__heading--white {
  width: 25%;
}
@media (max-width: 800px) {
  .heroAbout__heading--white {
    width: 45%;
  }
}
@media (max-width: 650px) {
  .heroAbout__heading--white {
    width: 100%;
  }
}
.heroAbout__heading--client {
  width: 25%;
}
@media (max-width: 1100px) {
  .heroAbout__heading--client {
    width: 40%;
  }
}
@media (max-width: 800px) {
  .heroAbout__heading--client {
    width: 50%;
  }
}
@media (max-width: 650px) {
  .heroAbout__heading--client {
    width: 100%;
  }
}
.heroAbout__heading--blog {
  width: 27%;
}
@media (max-width: 800px) {
  .heroAbout__heading--blog {
    width: 50%;
  }
}
@media (max-width: 650px) {
  .heroAbout__heading--blog {
    width: 100%;
  }
}
.heroAbout--top {
  width: 25%;
}
@media (max-width: 650px) {
  .heroAbout--top {
    top: 12px;
  }
}
.heroAbout__img {
  position: absolute;
  bottom: -5px;
  height: 100%;
  left: 0;
}
@media (max-width: 1200px) {
  .heroAbout__img {
    right: 50px;
    left: auto;
  }
}
.heroAbout__img--position {
  bottom: 21px;
}
.heroAbout__img--move {
  bottom: 7px;
}
@media (max-width: 650px) {
  .heroAbout__img--move {
    bottom: 1px;
  }
}
.heroAbout__img--down {
  bottom: -10px;
}
@media (max-width: 650px) {
  .heroAbout__img--down {
    height: auto;
    width: 285px;
  }
}
.heroAbout__img--contact {
  bottom: 16px;
}
@media (min-width: 2400px) {
  .heroAbout__img--contact {
    bottom: 19px;
  }
}
@media (max-width: 650px) {
  .heroAbout__img--contact {
    bottom: 4px;
  }
}
@media (min-width: 2400px) {
  .heroAbout__img--about {
    bottom: -13px;
  }
}
.heroAbout__img--case {
  bottom: 21px;
}
@media (max-width: 650px) {
  .heroAbout__img--case {
    bottom: 7px;
    width: 250px;
    height: auto;
  }
}
.heroAbout__img--copywriting {
  bottom: 21px;
}
@media (min-width: 2400px) {
  .heroAbout__img--copywriting {
    max-width: 840px;
    height: auto;
  }
}
@media (max-width: 650px) {
  .heroAbout__img--copywriting {
    bottom: 7px;
    right: 2px;
  }
}
.heroAbout__img--workshop {
  bottom: 21px;
}
@media (min-width: 2400px) {
  .heroAbout__img--workshop {
    max-width: 840px;
    height: auto;
  }
}
@media (max-width: 650px) {
  .heroAbout__img--workshop {
    bottom: 7px;
    right: 15px;
    width: 340px;
    height: auto;
  }
}
.heroAbout__img--white {
  bottom: 7px;
}
@media (max-width: 650px) {
  .heroAbout__img--white {
    bottom: 1px;
    height: auto;
    width: 310px;
    right: 25px;
  }
}

.card {
  text-align: center;
  margin: 0.5rem auto;
  border: 1px solid #9469bf;
  background: #dad6e4;
  color: #372573;
}
@media (min-width: 1100px) {
  .card {
    width: 80%;
  }
}
.card hr {
  border-color: #9469bf;
}
.card__header {
  background: #372573;
  color: #dad6e4;
}
.card__vat {
  font-size: 1.2rem;
}
.card__img {
  border-radius: 50%;
}
.card--br {
  border-right: 1px solid #9469bf;
}

.didYouKnow {
  background-color: #27093b;
  background-image: url("https://www.infinity-preview.co.uk/wp-content/uploads/2020/10/purple-ombre-background-01.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 45vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: relative;
}
.didYouKnow .wp-block-group__inner-container {
  width: 100%;
}
.didYouKnow h2 {
  font-size: 4rem;
}
.didYouKnow p {
  width: 30%;
  margin: 0.75rem auto;
  text-align: center;
  font-size: 2.2rem;
}
@media (max-width: 800px) {
  .didYouKnow p {
    width: 60%;
  }
}
@media (max-width: 650px) {
  .didYouKnow p {
    width: 90%;
  }
}
.didYouKnow__imgTop {
  position: absolute;
  left: 30px;
  top: -65px;
}
@media (max-width: 650px) {
  .didYouKnow__imgTop {
    display: none;
  }
}
.didYouKnow__imgBottom {
  position: absolute;
  right: 30px;
  bottom: -95px;
}
@media (max-width: 650px) {
  .didYouKnow__imgBottom {
    display: none;
  }
}

.preFooter {
  background: #27093b;
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 3.5rem;
}
.preFooter__img {
  border-right: 2px solid #fff;
}
@media (max-width: 650px) {
  .preFooter__img {
    border-right: none;
    border-bottom: 2px solid #fff;
  }
}
@media (max-width: 650px) {
  .preFooter__img img {
    margin-bottom: 1rem;
  }
}
.preFooter__text {
  align-self: center;
  color: #fff;
}
.preFooter__quote {
  margin: auto;
  width: 80%;
  font-family: DolceVita;
  font-size: 2.5rem;
  letter-spacing: 1px;
}
@media (max-width: 650px) {
  .preFooter__quote {
    margin-top: 4rem;
    width: 100%;
  }
}
.preFooter__name {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  margin-top: 2rem;
}

.show-modal {
  font-size: 2rem;
  font-weight: 600;
  padding: 1.75rem 3.5rem;
  margin: 5rem 2rem;
  border: none;
  background-color: #fff;
  color: #444;
  border-radius: 10rem;
  cursor: pointer;
}

.close-modal {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 3rem;
  color: #333;
  cursor: pointer;
  border: none;
  background: none;
}

.hidden {
  display: none;
}

.modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1000px;
  height: auto;
  text-align: center;
  background-color: white;
  padding: 0;
  border-radius: 5px;
  box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 5;
}

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