/* set variables */
:root {
  --heading: 'Paytone One', serif;
  --text: 'Lato', sans-serif;
  --icons: 'Font Awesome 6 Pro';
  --white: #ffffff;
  --black: #1e1e1e;
  --purple: #262262;
  --dark-purple: #141239;
  --light-purple: #bfbed8;
  --orange: #ffa749;
  --dark-orange: #f28b1d;
  --green: #4ace8d;
  --transition-fast: all 100ms ease-out;
  --transition-normal: all 200ms ease-out;
  --transition-slow: all 400ms ease-out;
}

/* box sizing rules */
*,*::before,*::after {
  box-sizing: border-box;
}

/* set html core defaults */
html {
  min-height: 100%;
  overflow-y: scroll;
	scroll-behavior: smooth;
}

/* remove default margin */
body,body h1,body h2,body h3,body h4,body h5,body h6,body p,body ul,body ol,body li,figure,figcaption,blockquote,dl,dd {
  padding-bottom: 0;
  margin: 0;
}

/* set core body defaults */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
	height: 100%;
  margin: 0 auto;
  text-rendering: optimizeSpeed;
  background: var(--white);
  font-family: var(--text);
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.6;
}
body .main {
  font-size: 18px;
  line-height: 1.6;
 }
body.search {
  background: #F0F0F3;
}

/* change focus outline */
:focus {
  outline: 1px dotted var(--dark-orange);
}

/* remove list styles, padding, and margins on ul, ol elements without a class attribute */
ul:not([class]),ol:not([class]) {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* remove list styles on ul, ol elements with a class attribute */
ul[class],ol[class] {
  list-style-type: none;
	padding: 0;
}

/* make images easier to work with */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* inherit fonts for inputs and buttons */
input,button,textarea,select {
  font: inherit;
}

/* remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* global heading styles */

h1,
#hp-hero h1 {
  font-family: var(--heading);
	font-size: 66px;
  font-weight: 400;
  color: var(--orange);
	line-height: 1;
  margin: 0;
}
body.error404 h1 {
  color: var(--purple);
  margin: 0 0 25px;
}
h2 {
  font-family: var(--heading);
  font-size: clamp(2.25rem, 1.9971rem + 0.6977vw, 2.625rem);
  font-weight: 400;
  color: var(--purple);
  line-height: 1.1;
  margin: 0 0 30px;
}
h3 {
  font-family: var(--heading);
  font-size: 36px;
  font-weight: 400;
  color: var(--purple);
  line-height: 1.1;
  margin: 0 0 20px;
}
h4 {
  font-family: var(--text);
  font-size: 28px;
  font-weight: 600;
  color: var(--purple);
  line-height: 1.2;
  margin: 0 0 20px;
}
h5 {
  font-family: var(--heading);
  font-size: 26px;
  font-weight: 500;
  color: var(--purple);
  line-height: 1.2;
  margin: 0 0 20px;
}
h6 {
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
  margin: 0 0 20px;
}
section a:not(.button) {
  font-weight: 700;
  text-decoration: 1px underline solid;
}

@media screen and (max-width: 580px) {
  h1,h2,h3,h4,h5,h6 {
    word-break: break-word;
  }
}

/* default link styles */

a {
  color: var(--purple);
  text-decoration: underline !important;
  text-decoration-skip-ink: auto;
	transition: var(--transition-normal);
}
a:hover,
a:focus {
  color: var(--purple);
  text-decoration: none !important;
}
@media screen and (max-width: 400px) {
	a {
    word-break: break-word;
  }
}

/* default element styles */

body .container {
  position: relative;
  width: auto;
  max-width: 1400px;
  padding: 0 40px;
  margin: 0 auto;
}
.main:after {
  content: '';
  clear: both;
  display: table;
}
hr {
  width: 100%;
  height: 2px;
  color: var(--grey);
  background: var(--grey);
  border: 0;
  padding: 0;
  margin: 80px 0;
}
  hr::after {
    content: '';
    clear: both;
    display: table;
  }
.wp-block-image .alignleft {
  float: left;
  margin: 0 40px 40px 0;
}
.wp-block-image .aligncenter {
  float: none;
}
.wp-block-image img.aligncenter {
  margin: 0 auto 40px;
}
  .wp-block-image .aligncenter > img {
    margin: 0 auto 40px;
  }
.wp-block-image .alignright {
  float: right;
  margin: 0 0 40px 40px;
}
.wp-block-image figcaption {
  font-size: 14px;
  font-style: italic;
}
.centered:not(.main) {
  grid-column: 1 / -1;
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin: 0 0 40px;
}
.wp-block-image .alignleft,
.wp-block-image .aligncenter,
.wp-block-image .alignright,
embed,
iframe,
object {
  max-width: 100%;
}
embed,
iframe,
object {
  display: block;
  margin: 0 auto;
}
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 35px;
  margin: 0 0 0.25em;
  border: 0;
  font-family: var(--text);
  font-size: 20px;
  font-weight: 600;
  color: var(--purple);
  line-height: 1.1;
  background: var(--orange);
  border-radius: 12px;
  box-shadow: inset 0 -4px 0 var(--dark-orange);
  text-align: center;
  text-decoration: none !important;
  transition: var(--transition-fast);
  cursor: pointer;
}
.button.login-button {
  background: var(--green);
  box-shadow: inset 0 -4px 0 #37b377;
}
.button.small {
  padding: 12px 20px;
  font-size: 16px;
}
  .button:hover,
  .button:focus {
    transform: scale(1.05);
  }
  .button:active {
    margin: 0.25em 0 0 !important;
    box-shadow: inset 0 0 0 var(--dark-orange);
  }
@media screen and (max-width: 1366px) {
  .container {
    padding: 0 30px;
  }
}
@media screen and (max-width: 1200px) {
	.container {
    padding: 0 40px;
  }
	img {
	  max-width: 100%;
	  height: auto;
	}
	.attachment-post-thumbnail {
	  max-width: 100%;
	  height: auto;
	}
}
@media screen and (max-width: 1024px) {
	.wp-block-image .alignleft,
  .wp-block-image .aligncenter,
  .wp-block-image .alignright {
    float: none;
    width: 100%;
    margin: 0 auto 40px;
  }
}
@media screen and (min-width: 1201px) {
  
}
@media screen and (min-width: 1025px) {
	.slide-up {
    position: relative;
	  top: 90px;
	  opacity: 0;
	}
	.slide-up.in-view {
	  animation: slideUp 1s 1 ease-out forwards;
	}
    .slide-up.delayed.in-view {
      animation-delay: 200ms !important;
    }
    .slide-up.delayed-02.in-view {
      animation-delay: 400ms !important;
    }
    .slide-up.delayed-03.in-view {
      animation-delay: 600ms !important;
    }
    .slide-up.delayed-04.in-view {
      animation-delay: 800ms !important;
    }
  .blur-in {
	  opacity: 0;
	}
	.blur-in.in-view {
	  animation: blurIn 750ms 1 ease-out forwards;
	}
  .slide-up.blur-in.in-view {
	  animation: blurIn 750ms 1 ease-out forwards, slideUp 1s 1 ease-out forwards;
	}
  .fade-in {
    filter: blur(4px);
	  opacity: 0;
	}
	.fade-in.in-view {
	  animation: fadeIn 1s 1 ease-out forwards;
	}
  .fade-in.delayed.in-view {
    animation-delay: 200ms;
	}
  .fade-in.delayed.in-view.more {
    animation-delay: 400ms;
	}
  .fade-in.delayed.in-view.most {
    animation-delay: 600ms;
	}
	@keyframes slideUp {
		0% {
      filter: blur(5px);
		  top: 90px;
		  opacity: 0;
		}
    40% {
		  top: 70px;
		  opacity: 0;
		}
		100% {
      filter: blur(0px);
		  top: 0;
		  opacity: 1;
		}
	}
  @keyframes fadeIn {
		0% {
      filter: blur(4px);
		  opacity: 0;
		}
		100% {
      filter: blur(0);
		  opacity: 1;
		}
	}
  @keyframes blurIn {
		0% {
		  filter: blur(6px);
      opacity: 0;
		}
		100% {
		  filter: blur(0px);
      opacity: 1;
		}
	}
}
@media screen and (max-width: 1200px) {
	.attachment-post-thumbnail,
	.alignleft,
	.aligncenter,
	.alignright {
	  float: none;
	  display: block;
    width: auto !important;
	  max-width: 100%;
	  margin: 0 auto 30px;
	}
  .alignleft img,
	.aligncenter img,
	.alignright img {
	  margin: 0 auto;
	}
}
@media screen and (max-width: 580px) {
  .to-top-btn {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  body .container {
    padding: 0 20px;
  }
  .button {
    padding: 15px 20px;
	margin: 0;
    font-size: 18px;
  }
}

/* main content styles */

.main {
  padding: 60px 0;
  background: #f0f0f3;
}
.main > .container {
  background: var(--white);
  padding: 48px 60px;
  border-radius: 16px;
}
.main p,
.main ul,
.main ol {
  margin-bottom: 30px;
}
@media screen and (min-width: 1201px) {
  .main {
    padding: 80px 0 60px;
  }
}
@media screen and (max-width: 768px) {
  .main > .container {
    padding: 36px 32px;
  }
}
@media screen and (max-width: 580px) {
  .main {
    padding: 24px 0;
  }
  .main > .container {
    padding: 28px 20px;
    border-radius: 10px;
  }
}

/* drawer */

#drawer {
  padding: 10px 0;
  background: var(--green);
}
#drawer.variant-b {
  background: var(--light-purple);
}
  #drawer .container {
    display: flex;
    justify-content: space-between;
  }
  @media screen and (max-width: 768px) {
    #drawer .container {
      flex-direction: column;
      gap: 20px;
    }
  }
    p.drawer-cta-text {
      font-size: 18px;
      font-weight: 600;
      color: var(--purple);
    }
    @media screen and (max-width: 767px) {
      p.drawer-cta-text {
        display: none;
      }
    }
    @media screen and (min-width: 768px) and (max-width: 1200px) {
      p.drawer-cta-text {
        text-align: center;
      }
    }

    span.drawer-cta-text-highlight {
      font-weight: 700;
    }
#drawer .scores {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 20px;
  font-weight: 700;
  color: var(--purple);
  line-height: 1.2;
}
  #drawer .scores svg {
    margin-top: 2px;
  }
#drawer ul {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
}
  #drawer a {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    font-weight: 600;
    color: var(--purple);
    line-height: 1.2;
    letter-spacing: 1px;
    text-decoration: none !important;
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0);
  }
  #drawer svg {
    width: 21px;
  }
    #drawer a:hover,
    #drawer a:focus {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.15);
      color: var(--purple);
    }
@media screen and (max-width: 768px) {
  #drawer ul,
  #drawer .scores {
    justify-content: center;
    text-align: center;
  }
  #drawer .scores svg {
    display: none;
  }
}
@media screen and (max-width: 580px) {
  #drawer .container {
    padding: 0 10px;
  }
  #drawer a {
    display: flex;
    gap: 5px;
    align-items: center;
  }
}

/* header */

#header {
  position: relative;
  z-index: 10;
  padding: 30px 0;
  background: var(--purple);
  transition: var(--transition-normal);
}
#header.sticky {
  position: fixed;
  z-index: 11;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  box-shadow: 0 6px 12px 0 rgba(0,0,0,0.35);
}
#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
  #header .logo__nav {
    display: flex;
    align-items: center;
    gap: 50px;
  }
  #header .logo {
    position: relative;
    z-index: 9;
    display: block;
    width: 250px;
    height: auto;
  }
    #header .logo img {
      width: 100%;
      max-width: none;
    }
  #header .button-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  #header .button {
    margin: 0;
  }
  #header.variant-b .button {
    padding: 15px 25px;
    font-size: 18px;
  }
@media screen and (max-width: 768px) {
  #header .button-wrap {
    display: none;
  }
}
@media screen and (max-width: 580px) {
  #header .logo {
    width: 200px;
  }
}

/* hero banner */

#hp-hero {
  position: relative;
  background: var(--purple);
  padding: 60px 0 80px;
}
#hp-hero.variant-b {
  padding: 80px 0;
}
#hp-hero.dsst-landing .container {
  min-height: 55vh;
}
#hp-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 40px;
  align-items: center;
}
#hp-hero.variant-b .container {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: center;
  padding: 0 20vw;
}
#hp-hero.variant-b.dsst-landing .container {
  padding: 0 10vw;
}
#hp-hero.variant-b img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
  #hp-hero.variant-b .text {
    text-align: center;
    padding-bottom: 0;
  }
  #hp-hero .text {
    gap: 20px;
    padding-bottom: 30px;
  }
  #hp-hero.interior .text {
    display: flex;
    justify-content: space-between;
	  align-items: center;
    text-align: left;
  }
  #hp-hero .text h1 {
    margin-bottom: 15px;
  }
  #hp-hero.variant-b.dsst-landing .text h1 {
    font-size: clamp(3.875rem, 3.2917rem + 1.2153vw, 4.75rem);
  }
  #hp-hero .text p {
    font-size: 24px;
    color: var(--white);
    line-height: 1.4;
    letter-spacing: 1px;
  }
  #hp-hero.variant-b .text .reviews-bubble {
    display: inline-flex;
    align-items: center;
    padding: 7px 20px;
    margin-bottom: 10px;
    text-align: center;
    font-size: clamp(0.75rem, 0.5rem + 0.5208vw, 1.125rem);
    color: var(--white);
    line-height: 1.1;
    border-radius: 28px;
    background: #262262;
    border: 1px solid #393483;
  }
    #hp-hero.variant-b .text .reviews-bubble i {
      font-size: 15px;
      color: var(--orange);
      margin-right: 8px;
    }
    #hp-hero.variant-b .text .reviews-bubble svg {
      width: 18px;
      margin-right: 8px;
      flex-shrink: 0;
    }
  #hp-hero.variant-b .text h1 {
    line-height: 1.05;
  }
  #hp-hero.variant-b .text p {
    line-height: 1.3;
    text-wrap: balance;
  }
  #hp-hero .buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    padding-top: 10px;
  }
  #hp-hero.variant-b .buttons {
    flex-direction: column;
    gap: 10px;
    padding-top: 30px;
  }
    #hp-hero.variant-b .button {
      padding: 26px 30px;
      background: #B22424;
      box-shadow: inset 0 -4px 0 #871212;
      color: var(--white);
    }
      #hp-hero.variant-b .button:after {
        content: '\f178';
        font-family: var(--icons);
        font-weight: 300;
        margin: 2px 0 0 10px;
      }
    #hp-hero .buttons p {
      font-size: 16px;
      font-weight: 600;
      color: var(--white);
      line-height: 1.2;
      text-transform: uppercase;
    }
    #hp-hero.interior .buttons p {
      font-size: 20px;
    }
    #hp-hero.interior .block {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
      padding: 20px 25px;
      background: rgba(255,255,255,0.1);
      border: 2px solid #ffffff;
      border-color: rgba(255,255,255,0.2);
      border-radius: 30px;
      text-align: center;
    }
    #hp-hero.interior span.large {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      font-size: 76px;
      font-weight: 700;
      line-height: 1;
      color: white;
    }
  #hp-hero p.mobile-only {
    display: none;
  }
    #hp-hero.interior i.fas.fa-star {
      font-size: 54px;
      line-height: 1;
      color: var(--orange);
    }
    #hp-hero.interior span:not(.large) {
      display: block;
      line-height: 1.1;
      margin-top: 10px;
      color: white;
    }
    .slider-wrap {
      text-align: center;
    }
    .slider-wrap > a {
      display: inline-block;
      padding-top: 5px;
      font-size: 14px;
      font-weight: 600;
      color: var(--orange);
      letter-spacing: 2px;
      text-decoration: none !important;
      text-transform: uppercase;
    }
      .slider-wrap > a:hover,
      .slider-wrap > a:focus {
        color: var(--white);
      }
    .testimonial-slider {
	  display: flex;
      margin-bottom: 15px;
      text-align: left;
    }
    .testimonial-slider .slide {
      position: relative;
      z-index: 8;
      display: flex;
      flex-direction: column;
      background: #DBDBE4;
      border-radius: 12px;
      min-height: 330px;
      padding: 20px;
      margin-right: -10px;
      margin-left: -10px;
      transition: var(--transition-normal);
    }
    .testimonial-slider .slide:not(.slick-center),
    .testimonial-slider .slide:nth-child(1),
    .testimonial-slider .slide:nth-child(3) {
      transform: scale(0.9);
    }
    .testimonial-slider .slide.slick-center,
    .testimonial-slider .slide:nth-child(2) {
      z-index: 9;
      background: var(--white);
      transform: scale(1);
    }
      .testimonial-slider .slide i {
        font-size: 20px;
        color: var(--orange);
      }
      .testimonial-slider .slide p {
        font-size: 15px;
        line-height: 1.4;
        padding-top: 10px;
      }
      .testimonial-slider .slide img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
      }
      .testimonial-slider .slide .author {
        display: flex;
        gap: 10px;
        align-items: center;
        margin-top: auto;
      }
      .testimonial-slider .slide span {
        font-size: 15px;
        font-weight: 600;
        line-height: 1.1;
      }
    .slider-arrows {
      display: none;
      justify-content: center;
      gap: 7px;
      padding: 0 0 30px;
    }
      .slider-arrows button {
        background: none;
        border: 0;
        font-size: 0px;
        color: var(--purple);
        background: var(--orange);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        transition: var(--transition-normal);
        cursor: pointer;
      }
      .slider-arrows .slick-prev:before {
        font-family: var(--icons);
        font-size: 22px;
        line-height: 36px;
        content: '\f104';
      }
      .slider-arrows .slick-next:before {
        font-family: var(--icons);
        font-size: 22px;
        line-height: 36px;
        content: '\f105';
      }
        .slider-arrows button:hover {
          background: var(--white);
        }
@media screen and (max-width: 1024px) {
  #hp-hero .container {
    grid-template-columns: minmax(0, 1fr);
  }
  #hp-hero .text {
    align-items: center;
    text-align: center;
  }
  #hp-hero .text p {
    line-height: 1.3;
  }
  #hp-hero .buttons {
	margin-top: 20px;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  #hp-hero .text h1 {
    font-size: 46px;
  }
  #hp-hero .text > p {
    font-size: 20px;
  }
}
@media screen and (max-width: 580px) {
  #hp-hero {
    padding: 30px 0 30px;
  }
  #hp-hero.variant-b .container {
    padding: 0 10vw;
  }
  #hp-hero p.mobile-only {
    display: block;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding-top: 15px;
  }
  #hp-hero .slider-wrap {
    padding-bottom: 0;
  }
  .testimonial-slider {
	flex-direction: column;
	gap: 20px;
  }
  .testimonial-slider .slick-track {
    display: flex !important;
  }
  .testimonial-slider .slick-slide {
    height: inherit !important;
  }
  .testimonial-slider .slide:not(.slick-center),
  .testimonial-slider .slide:nth-child(1),
  .testimonial-slider .slide:nth-child(3) {
    transform: scale(1);
  }
  .testimonial-slider .slide {
    background: var(--white);
    margin: 0 5px;
	min-height: 0;
  }
  .testimonial-slider .slide:not(:first-of-type) {
    display: none;
  }
  .slider-arrows {
    display: none;
  }
  .testimonial-slider .slide .author {
    margin-top: auto;
	padding-top: 20px;
	text-align: center;
  }
  #hp-hero.interior span.large {
	transform: scale(0.8);
  }
  #hp-hero .buttons p {
    font-size: 14px;
	line-height: 1.2;
	text-align: left;
  }
  #hp-hero.interior .buttons p {
    flex-shrink: 0;
  }
  #hp-hero.interior .block {
    padding: 10px;
  }
  #hp-hero.interior span:not(.large) {
    margin-top: 0;
  }
  #hp-hero .container {
    gap: 20px;
  }
}
@media screen and (max-width: 420px) {
  .testimonial-slider .slide i {
	font-size: 16px;
  }
}

/* interior hero */

#hp-hero.interior .container {
  grid-template-columns: 1fr;
  text-align: center;
}
#hp-hero.interior .buttons {
  justify-content: center;
  align-items: center;
  text-align: left;
}
@media screen and (max-width: 1200px) {
  #hp-hero.interior .container {
    grid-template-columns: 100%;
  }
  #hp-hero.interior .text {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  #hp-hero.interior .slider-wrap .sg-slider {
    max-width: 600px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  #hp-hero.interior .text > div:not(.buttons) > p {
    font-size: 20px;
  }
}
@media screen and (max-width: 580px) {
  #hp-hero.interior .buttons {
    text-align: center;
  }
}

/* hp features */

#hp-features {
  padding: 60px 0;
  background: var(--white);
}
#hp-features .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 60px;
  justify-items: center;
}
#hp-features.dsst-landing .container {
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 20px;
}
  #hp-features h2 {
    grid-column: 1 / -1;
    text-align: center;
    margin: 0;
  }
  #hp-features .button {
    grid-column: 1 / -1;
    text-align: center;
  }
  #hp-features .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }
  #hp-features .feature > div {
    display: flex;
    flex-direction: column;
	  align-items: center;
    gap: 10px;
  }
  #hp-features .feature .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--orange);
    font-size: 56px;
    color: var(--white);
  }
  #hp-features.dsst-landing .feature .icon {
    width: 120px;
    height: 120px;
  }
  #hp-features .feature .icon svg {
    height: 70px;
  }
  #hp-features.variant-b .feature .icon {
    font-size: 48px;
    background: var(--purple);
  }
  #hp-features .feature h3 {
    font-size: 30px;
    margin: 0 0 10px;
  }
  #hp-features .feature span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 15px;
  }
  #hp-features .feature p {
    font-size: 17px;
    line-height: 1.4;
    color: var(--black);
    text-wrap: balance;
  }
@media screen and (max-width: 768px) {
  #hp-features .container,
  #hp-features.dsst-landing .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media screen and (max-width: 580px) {
  #hp-features {
    padding: 30px 0;
  }
  #hp-features:not(.dsst-landing) .feature {
	  text-align: left;
  }
  #hp-features .feature {
	  margin-top: 20px;
  }
  #hp-features:not(.dsst-landing) .feature > div.icon__titles {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
  }
  #hp-features .feature .icon {
    width: 80px;
    height: 80px;
    font-size: 40px;
	  flex-shrink: 0;
  }
  #hp-features .feature p {
    text-wrap: auto;
  }
	#hp-features .feature span {
    line-height: 1.2;
  }
}

/* call-out cta  */

.call-out {
  padding: 40px 0;
  background: var(--green);
}
.call-out h2 {
  font-size: 32px;
  color: var(--purple);
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .call-out h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 580px) {
  .call-out {
    padding: 20px 0;
  }
  .call-out h2 {
    font-size: 22px;
  }
}

/* popular guides / exam search */

#popular-guides__exam-search {
  padding: 60px 0;
  background: #f0f0f3;
}
#popular-guides__exam-search .container {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 40px 60px;
}
  #popular-guides__exam-search .popular-guides {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 20px 40px;
  }
  #popular-guides__exam-search .popular-guides h2 {
    grid-column: 1 / -1;
  }
  #popular-guides__exam-search .popular-guides h3 {
    font-family: var(--text);
    font-size: 24px;
    font-weight: 700;
  }
  #popular-guides__exam-search .popular-guides {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 20px 40px;
  }
  #popular-guides__exam-search.dsst-landing .popular-guides {
    align-content: baseline;
  }
  #popular-guides__exam-search .popular-guides .study-guide-list a {
    display: inline-block;
    font-size: 18px;
    color: var(--black);
    padding: 5px 0;
  }
  #popular-guides__exam-search .popular-guides .text-link {
    display: inline-block;
    margin-top: 20px;
    font-size: 18px;
    color: var(--purple);
  }
  #popular-guides__exam-search .popular-guides .text-link:hover,
  #popular-guides__exam-search .popular-guides .text-link:focus {
    color: var(--black);
  }
    #popular-guides__exam-search .popular-guides .text-link:after {
      content: '\f178';
      font-family: var(--icons);
      margin-left: 4px;
    }
  #popular-guides__exam-search .popular-guides .sg-list {
    padding-bottom: 30px;
  }
  #popular-guides__exam-search .popular-guides .sg-list a {
    display: block;
    color: var(--black);
    line-height: 1.2;
    padding: 5px 0;
  }
  #popular-guides__exam-search .popular-guides .sg-list a:hover,
  #popular-guides__exam-search .popular-guides .sg-list a:focus {
    color: var(--purple);
  }
  #popular-guides__exam-search .exam-search {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
    #popular-guides__exam-search .exam-search blockquote {
      display: flex;
      flex-direction: column;
      gap: 20px;
      padding: 20px;
      margin: 0;
      border-radius: 12px;
      border: 0;
      background: var(--white);
    }
    #popular-guides__exam-search .exam-search p {
      font-size: 22px;
      line-height: 1.4;
      color: var(--black);
    }
    #popular-guides__exam-search .exam-search .author {
      display: flex;
      gap: 0 20px;
      align-items: center;
    }
    #popular-guides__exam-search .exam-search .author img {
      width: 70px;
      height: 70px;
      border: 3px solid var(--orange);
      border-radius: 50%;
    }
    #popular-guides__exam-search .exam-search .author span {
      display: inline-flex;
      align-items: center;
      width: 180px;
      height: 83px;
      font-family: var(--text);
      font-size: 18px;
      font-weight: 700;
      color: var(--black);
      text-transform: uppercase;
      background: url('../images/signature.png') no-repeat center left;
    }
    #popular-guides__exam-search .exam-search-form {
      display: flex;
      flex-direction: column;
    }
      #popular-guides__exam-search .exam-search-form form {
        display: flex;
        align-items: center;
        padding: 10px;
        border-radius: 8px;
        background: var(--white);
      }
      #popular-guides__exam-search .exam-search-form form input {
        flex: 1;
        border: 0;
        padding: 10px;
        font-size: 18px;
      }
      #popular-guides__exam-search .exam-search-form form button {
        border: 0;
        padding: 18px 30px;
        font-size: 18px;
        box-shadow: none;
      }
        #popular-guides__exam-search .exam-search-form form button:hover,
        #popular-guides__exam-search .exam-search-form form button:focus {
          background: var(--purple);
          color: var(--white);
          transform: none;
        }
        #popular-guides__exam-search .exam-search-form form button:active {
          margin-top: 0 !important;
        }
  #popular-guides__exam-search .exam-search .recent-scores {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: 12px;
    align-self: stretch;
  }
  #popular-guides__exam-search .exam-search .recent-scores h2 {
    font-size: 28px;
    margin: 0;
    text-align: center;
  }
  #popular-guides__exam-search .exam-search .recent-scores ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  #popular-guides__exam-search .exam-search .recent-scores ul li > div {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }
  #popular-guides__exam-search .exam-search .recent-scores ul li img {
    border-radius: 6px;
    width: 40px;
    height: 40px;
  }
  #popular-guides__exam-search .exam-search .recent-scores ul li p {
    font-size: 18px;
    margin: 0;
    line-height: 1.4;
  }
  #popular-guides__exam-search .exam-search .recent-scores ul li p span:first-of-type,
  #popular-guides__exam-search .exam-search .recent-scores ul li p span:last-of-type {
    color: var(--purple) !important;
  }
  #popular-guides__exam-search .exam-search .recent-scores ul li {
    padding-bottom: 24px;
    border-bottom: 1px solid #e0e0e0;
  }
  #popular-guides__exam-search .exam-search .recent-scores ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  #popular-guides__exam-search .exam-search .recent-scores ul li h6 {
    display: block;
    font-family: var(--text);
    font-size: 14px;
    font-weight: 700;
    color: #888 !important;
    margin: 4px 0 0;
    padding: 0;
  }
.full-list-wrap {
  position: relative;
  padding: 15px 0;
}
#menu-study-guides > li:first-child > a {
  font-size: 16px;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none !important;
  padding-left: 0;
  cursor: pointer;
}
  #menu-study-guides > li:first-child > a:after {
    content: '\f107';
    font-family: var(--icons);
    margin-left: 4px;
  }
  #menu-study-guides > li:first-child > a.active:after {
    transform: rotate(180deg);
  }
#menu-study-guides > li:first-child a + .sub-menu {
  position: absolute;
  top: 44px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: start;
  width: 380px;
  max-height: 380px;
  padding: 20px 0;
  border-radius: 12px;
  border: 1px solid #DBDBE4;
  box-shadow: 0 6px 10px 0 rgba(0,0,0,0.4);
  white-space: nowrap;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--white);
  text-align: left;
  transition: var(--transition-normal);
  visibility: unset !important;
  opacity: unset !important;
}
#menu-study-guides > li:first-child a + .sub-menu li {
  display: block;
  padding: 0;
}
#menu-study-guides > li:first-child a + .sub-menu li.menu-category {
  padding: 15px 0 10px;
}
  #menu-study-guides > li:first-child a + .sub-menu li.menu-category a,
  #menu-study-guides > li:first-child a + .sub-menu li.menu-category a:hover,
  #menu-study-guides > li:first-child a + .sub-menu li.menu-category a:focus {
    font-size: 14px !important;
    font-weight: 400;
    text-decoration: none !important;
    color: var(--black);
  }
#menu-study-guides > li:first-child a + .sub-menu li,
#menu-study-guides > li:first-child a + .sub-menu li a {
  line-height: 1.6em;
}
#menu-study-guides > li:first-child a + .sub-menu li.menu-category:first-of-type {
  padding: 0 0 10px;
}
#menu-study-guides > li:first-child a + .sub-menu li:not(.menu-category) a {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none !important;
}
  #menu-study-guides > li:first-child a + .sub-menu li:not(:first-of-type) a:hover,
  #menu-study-guides > li:first-child a + .sub-menu li:not(:first-of-type) a:focus,
  #menu-study-guides ul li a:hover {
    background-color: transparent;
    opacity: 1;
    color: var(--black) !important;
  }
#menu-study-guides a {
  padding: 0px 20px;
}
#menu-study-guides li:hover a:not(.active) + ul {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  #popular-guides__exam-search .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  #popular-guides__exam-search .popular-guides {
    justify-items: center;
  }
  .exam-search-form h2,
  .full-list-wrap {
    display: flex;
    justify-content: center;
  }
  .exam-search-form {
    text-align: center;
  }
  #menu-study-guides > li:first-child a + .sub-menu {
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
  }
}
@media screen and (max-width: 580px) {
  #popular-guides__exam-search {
    padding: 30px 0;
  }
  #popular-guides__exam-search .exam-search {
    gap: 30px;
  }
  #popular-guides__exam-search .exam-search-form form {
    flex-direction: column;
    align-items: unset;
    text-align: center;
  }
  #popular-guides__exam-search .popular-guides {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  #popular-guides__exam-search .popular-guides .column:last-child {
    padding-top: 40px;
  }
}

/* recent scores / latest articles */

#recent-scores__latest-articles {
  padding: 60px 0;
  background: var(--green);
}
#recent-scores__latest-articles .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  justify-items: center;
}
  #recent-scores__latest-articles .recent-scores {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
  }
    #recent-scores__latest-articles .recent-scores > .tooltip a {
      position: relative;
      display: inline-block;
      font-size: 18px;
      color: var(--purple);
    }
/* tooltip container */
.recent-scores .tooltip {
  position: relative;
  display: inline-block;
}
/* tooltip text */
.recent-scores .tooltip .tooltiptext {
  visibility: hidden;
  width: 320px;
  background: var(--purple);
  text-align: center;
  border-radius: 12px;
  padding: 15px 10px;
  position: absolute;
  z-index: 1;
  top: calc(100% + 30px);
  left: 0;
  opacity: 0;
  transition: all 0.8s;
  transition-delay: 600ms;
}
/* tooltip arrow */
.recent-scores .tooltip .tooltiptext:before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  margin-left: -5px;
  border: 5px solid;
  border-color: transparent transparent var(--purple) ;
}
/* show the tooltip text when clicking on the link */
.recent-scores .tooltip .tooltiptext.show {
  visibility: visible;
  opacity: 1;
  transition: all 0.3s;
}
.recent-scores .tooltip .tooltiptext h4 {
  font-size: 22px;
  color: var(--green);
  margin-bottom: 10px;
}
.recent-scores .tooltip .tooltiptext p {
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  text-wrap: balance;
}
  #recent-scores__latest-articles .recent-scores h2 {
    font-size: 36px;
    margin: 0;
  }
  #recent-scores__latest-articles .recent-scores ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  #recent-scores__latest-articles .recent-scores ul li > div {
    display: flex;
    align-items: start;
    gap: 20px;
  }
  #recent-scores__latest-articles .recent-scores ul li img {
    border-radius: 6px;
  }
  #recent-scores__latest-articles .recent-scores ul li p span:first-of-type,
  #recent-scores__latest-articles .recent-scores ul li p span:last-of-type {
    color: var(--purple) !important;
  }
  #recent-scores__latest-articles .recent-scores ul li h6 {
    display: block;
    font-family: var(--text);
    font-size: 18px;
    color: var(--black) !important;
  }
  #recent-scores__latest-articles .recent-scores .media-body h6 {
    padding-top: 0;
    margin: 0;
  }
  #recent-scores__latest-articles .latest-articles {
    display: grid;
    gap: 25px;
  }
  #recent-scores__latest-articles .latest-articles > h2 {
    margin: 0;
    text-align: center;
  }
  #recent-scores__latest-articles .latest-articles .article {
    display: grid;
    grid-template-columns: 1fr 4fr;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    background: var(--white);
  }
  #recent-scores__latest-articles .latest-articles .article > picture,
  #recent-scores__latest-articles .latest-articles .article img {
    width: 120px;
    height: 120px;
  }
  #recent-scores__latest-articles .latest-articles .article img {
    object-fit: cover;
  }
  #recent-scores__latest-articles .latest-articles .article h2 {
    font-size: 24px;
    line-height: 1.1;
    margin: 0;
  }
  #recent-scores__latest-articles .latest-articles .article .text {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  #recent-scores__latest-articles .latest-articles .article .post-meta {
    font-size: 15px;
    line-height: 1.1;
  }
  #recent-scores__latest-articles .latest-articles .article .post-content {
    font-size: 16px;
    line-height: 1.4;
  }
  #recent-scores__latest-articles .latest-articles .article .post-content p {
    margin: 0;
  }
  #recent-scores__latest-articles .latest-articles .none-found {
    font-size: 22px;
    color: var(--purple);
    text-align: center;
  }
#recent-scores__latest-articles .button {
  grid-column: 1 / -1;
  justify-items: center;
}
@media screen and (max-width: 768px) {
  #recent-scores__latest-articles .container {
    grid-template-columns: 1fr;
  }
  #recent-scores__latest-articles .latest-articles .article {
    grid-template-columns: 1fr;
    justify-content: center;
    text-align: center;
  }
  #recent-scores__latest-articles .latest-articles .article img {
    min-width: 120px;
	margin: 0 auto;
  }
}
@media screen and (max-width: 580px) {
  .recent-scores a {
    display: block;
    text-align: center;
  }
}

/* new to clep intro section */

#new-to-clep {
  padding: 60px 0;
  background: var(--white);
  text-align: center;
}
#new-to-clep .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
#new-to-clep .new-to-clep-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  border: 2px solid var(--light-purple);
  border-radius: 16px;
  overflow: hidden;
}
#new-to-clep .clep-intro {
  padding: 40px;
  text-align: left;
  border-right: 2px solid var(--light-purple);
}
#new-to-clep .clep-from-steven {
  display: flex;
  align-items: center;
  padding: 40px;
  text-align: left;
  background: #f5f4fb;
}
#new-to-clep h2 {
  color: var(--purple);
  margin-bottom: 16px;
}
#new-to-clep .clep-intro > p {
  font-size: 18px;
  margin: 0 0 24px;
}
#new-to-clep .clep-intro-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
#new-to-clep .clep-intro-links li a {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
  padding: 6px 0;
  transition: var(--transition-fast);
}
#new-to-clep .clep-intro-links li a::after {
  content: '\f178';
  font-family: var(--icons);
  margin-left: 8px;
  font-size: 14px;
}
#new-to-clep .clep-intro-links li a:hover,
#new-to-clep .clep-intro-links li a:focus {
  color: var(--dark-orange);
}
#new-to-clep .clep-from-steven blockquote {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
  padding: 0 0 0 20px;
  border-left: 4px solid var(--orange);
}
#new-to-clep .clep-from-steven blockquote > p {
  font-size: 19px;
  line-height: 1.55;
  color: var(--black);
  margin: 0;
}
#new-to-clep .clep-from-steven blockquote > p strong {
  color: var(--purple);
}
#new-to-clep .clep-from-steven .author {
  display: flex;
  align-items: center;
  gap: 16px;
}
#new-to-clep .clep-from-steven .author .profile-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid var(--orange);
  object-fit: cover;
  flex-shrink: 0;
}
#new-to-clep .clep-from-steven .author .author-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
#new-to-clep .clep-from-steven .author .signature {
  max-height: 40px;
  width: auto;
}
#new-to-clep .clep-from-steven .author span {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  opacity: 0.55;
}
@media screen and (max-width: 768px) {
  #new-to-clep .new-to-clep-columns {
    grid-template-columns: 1fr;
  }
  #new-to-clep .clep-intro {
    border-right: none;
    border-bottom: 2px solid var(--light-purple);
  }
}
@media screen and (max-width: 580px) {
  #new-to-clep {
    padding: 40px 0;
  }
  #new-to-clep .clep-intro,
  #new-to-clep .clep-from-steven {
    padding: 28px 24px;
  }
}

/* footer */

#footer-stats {
  padding: 20px 0;
  background: #141239;
}
#footer-stats .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px 80px;
}
  #footer-stats * {
    color: var(--white);
  }
  #footer-stats .stat {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  #footer-stats .stat i {
    font-size: 22px;
  }
  #footer-stats .stat svg {
    width: 30px;
  }
  #footer-stats .stat p {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
  }
@media screen and (max-width: 1024px) {
  #footer-stats .container {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    align-items: baseline;
    gap: 50px;
  }
  #footer-stats .stat {
    align-items: center;
  }
  #footer-stats .stat i {
    font-size: 18px;
  }
  #footer-stats .stat p {
    font-size: 15px;
  }
}
@media screen and (max-width: 580px) {
  #footer-stats .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  #footer-stats .stat {
    flex-direction: column;
    text-align: center;
  }
}
#footer {
  padding: 60px 0;
  background: var(--purple);
}
#footer .container {
  display: grid;
  grid-template-columns: minmax(33%, 1fr) minmax(33%, 1fr) minmax(28%, 1fr);
  gap: 2%;
}
  #footer .logo__contact-info,
  #footer .logo__contact-info .contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  #footer .logo__contact-info .logo {
    position: relative;
    z-index: 9;
    display: block;
    width: 250px;
    height: auto;
  }
    #footer .logo__contact-info .logo img {
      width: 100%;
      max-width: none;
    }
  #footer .logo__contact-info .contact-info {
    gap: 10px;
  }
  #footer .logo__contact-info .contact-info *,
  #footer .logo__contact-info .meta-links {
    color: var(--white);
  }
  #footer .logo__contact-info .contact-info li {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  #footer .logo__contact-info .contact-info i {
    color: var(--green);
  }
  #footer .logo__contact-info .contact-info a {
    font-weight: 400;
    text-decoration: none !important;
  }
    #footer .logo__contact-info .contact-info a:hover,
    #footer .logo__contact-info .contact-info a:focus {
      color: var(--orange);
    }
  #footer .logo__contact-info .meta-links {
    display: flex;
    gap: 10px;
  }
  #footer .logo__contact-info .meta-links a {
    font-weight: 400;
    color: var(--white);
  }
  #footer .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }
    #footer .footer-nav ul {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    #footer .footer-nav ul#footer-menu {
      padding-top: 5px;
    }
    #footer .footer-nav h2 {
      font-family: var(--text);
      font-size: 24px;
      font-weight: 700;
      color: var(--green);
      line-height: 1.3;
      margin: 0;
    }
    #footer .footer-nav a {
      font-size: 20px;
      font-weight: 400;
      color: var(--white);
      line-height: 1.2;
      text-decoration: none !important;
    }
      #footer .footer-nav a:hover,
      #footer .footer-nav a:focus {
        color: var(--orange);
      }
  #footer .info__button {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: baseline;
    max-width: 60%;
    justify-self: end;
  }
  #footer .info__button p {
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    text-wrap: balance;
  }
@media screen and (max-width: 1024px) {
  #footer .container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: 'logo nav' 'info info';
    gap: 40px;
  }
  #footer .logo__contact-info {
    grid-area: logo;
  }
  #footer .footer-nav {
    grid-area: nav;
    grid-template-columns: repeat(2, auto);
  }
  #footer .info__button {
    grid-area: info;
    align-items: center;
    max-width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  #footer .container {
    grid-template-columns: 1fr;
    grid-template-areas: 'info' 'nav' 'logo';
  }
  #footer .logo__contact-info {
    align-items: center;
  }
  #footer .logo__contact-info .contact-info {
    align-items: center;
  }
  #footer .footer-nav {
    text-align: center;
  }
  #footer .info__button {
    flex-direction: column-reverse;
    grid-area: info;
    align-items: center;
    max-width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 420px) {
  #footer .footer-nav {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  #footer .logo__contact-info {
    flex-direction: column-reverse;
    gap: 40px;
  }
  #footer .logo__contact-info .contact-info {
    gap: 15px;
  }
  #footer .logo__contact-info .contact-info li {
    flex-direction: column;
    text-align: center;
    line-height: 1.2;
  }
  #footer .logo__contact-info .contact-info li i {
    display: none;
  }
}

/* search results page */

blockquote.search-result {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  margin: 0;
  border-radius: 12px;
  border: 0;
  background: var(--white);
}
blockquote.search-result:not(:last-child) {
  margin: 0 0 30px;
}
  blockquote.search-result h2 {
    font-size: 34px;
    margin: 0 0 10px;
  }
	blockquote.search-result h2 a {
      color: var(--purple);
  	}
nav.pagination {
  display: flex;
  justify-content: center;
  margin: 40px 0;
  list-style: none;
  padding: 0;
}
nav.pagination-links {
  display: flex;
  gap: 10px;
}
nav.pagination li {
  display: inline-flex;
}
nav.pagination a,
nav.pagination span {
  color: var(--purple);
  padding: 10px 20px;
  text-decoration: none !important;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background-color: var(--orange);
  transition: all 0.3s, color 0.3s;
}
nav.pagination span.pagination-toggle {
  padding: 5px 10px;
  margin: 0;
  background-color: var(--grey);
  font-size: 0.9375rem;
  color: var(--black);
  border-color: #cecece;
  transition: var(--transition-fast);
  cursor: pointer;
}
  nav.pagination span.pagination-toggle.open {
    color: var(--dark-grey);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-color: var(--grey);
  }
nav.pagination a:hover,
nav.pagination a:focus {
  background-color: var(--purple);
  border-color: var(--purple);
  color: var(--white);
}
nav.pagination .current {
  background-color: var(--grey);
  color: var(--dark-grey);
  border-color: #b6b6b6;
}
nav.pagination .prev,
nav.pagination .next {
  font-weight: 600;
}
nav.pagination .prev:hover,
nav.pagination .next:hover {
  background-color: var(--purple);
  border-color: var(--purple);
}

/* single study guides */

.single-study-guide #sg-content main h2.wp-block-heading {
  font-size: 30px;
  padding-top: 20px;
  margin-top: 20px;
}
.slider-wrap {
  position: relative;
  padding-bottom: 40px;
}
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
}
  .video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
.sg-slider {
  padding: 0 50px;
}
.sg-slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  background: none;
  border: 0;
  font-size: 0px;
  color: var(--white);
  width: 50px;
  height: 50px;
  transition: var(--transition-normal);
  cursor: pointer;
}
.sg-slider .slick-prev {
  left: 0;
}
.sg-slider .slick-next {
  right: 0;
}
.sg-slider .slick-prev:before {
  font-family: var(--icons);
  font-size: 42px;
  line-height: 42px;
  content: '\f053';
}
.sg-slider .slick-next:before {
  font-family: var(--icons);
  font-size: 42px;
  line-height: 42px;
  content: '\f054';
}
  .sg-slider button:hover,
  .sg-slider button:focus {
    color: var(--orange);
  }
.sg-slider-dots {
  position: absolute;
  bottom: 0;
  width: 100%;
}
  .sg-slider-dots ul {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  .sg-slider-dots button {
    font-size: 0px;
    width: 18px;
    height: 18px;
    background: #6E6E7E;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-normal);
  }
    .sg-slider-dots button:hover {
      transform: scale(1.1);
    }
  .sg-slider-dots .slick-active button {
    background: var(--white);
  }
#sg-content {
  background: #F0F0F3;
}
#sg-content > .container {
  background: transparent;
  padding: 60px 40px;
  border-radius: 0;
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 60px;
  align-items: start;
}
#sg-content .sg-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
  height: 100%;
}
  #sg-content .sg-sidebar aside {
    display: flex;
    flex-direction: column;
    padding: 20px 20px 40px;
    background: var(--white);
    border: 1px solid #BFBED8;
    border-radius: 12px;
  }
    #sg-content .sg-sidebar aside h2 {
      font-size: 32px;
      margin: 0 0 30px;
    }
    #sg-content .sg-sidebar aside h2.large {
      font-size: clamp(2rem, 1.4942rem + 1.3953vw, 2.75rem);
    }
#sg-overview *:not(h2) {
  font-size: 24px;
  line-height: 1.4;
  margin: 0;
}
#sg-customer-results p {
  font-size: 24px;
  margin: 0;
}
#sg-customer-results p br {
  display: none;
}
#sg-customer-results .wp-block-group > p {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#sg-customer-results .customer-test-results > p > .row {
  position: relative;
  padding-left: 80px;
  min-height: 42px;
}
#sg-customer-results .row div {
  display: inline-block;
  min-height: 42px;
  vertical-align: middle;
}
#sg-customer-results .row:last-child div {
  display: inline;
}
#sg-customer-results .row > span:first-child {
  position: absolute;
  top: 0;
  left: 0;
  width: 68px;
  padding: 4px 0 4px 4px;
  margin: 0 10px 10px 0;
  background: var(--purple);
  border-radius: 12px;
  font-weight: 700;
  color: var(--orange) !important;
  text-align: center;
}
#sg-customer-results .row strong {
  color: var(--purple);
}
@media screen and (max-width: 580px) {
  #sg-customer-results .row {
    padding-left: 0;
    text-align: center;
  }
  #sg-customer-results .row:not(:last-child) {
    margin-bottom: 20px;
  }
  #sg-customer-results .row > span:first-child {
    position: relative;
    display: block;
    width: 100%;
  }
}
#sg-testimonials .testimonial-text {
  position: relative;
  font-size: 22px;
  font-style: italic;
  line-height: 1.2;
  text-wrap: balance;
}
#sg-testimonials .testimonial-text .fa-quote-left,
#sg-testimonials .testimonial-text .fa-quote-right {
  position: absolute;
  font-family: var(--icons);
  font-size: 48px;
  color: var(--purple);
  filter: opacity(0.15);
}
#sg-testimonials .testimonial-text .fa-quote-left {
  top: -20px;
  left: 0;
}
#sg-testimonials .testimonial-text .fa-quote-right {
  bottom: 40px;
  right: 0;
}
#sg-testimonials .testimonial-text p {
  padding: 0 20px;
}
#sg-testimonials .testimonial-author {
  font-weight: 600;
  font-style: normal;
}
#sg-testimonials a {
  text-decoration: none !important;
}
#sg-guarantee {
  position: sticky;
  top: 120px;
}
#sg-guarantee div {
  display: flex;
  gap: 20px;
  align-items: center;
}
#sg-guarantee p {
  font-size: 24px;
  line-height: 1.4;
  text-wrap: balance;
  margin: 0 0 30px;
}
#sg-guarantee .button {
  align-self: center;
  padding: 20px 60px;
}
#sg-practice-tests .text {
  display: flex;
  gap: 20px;
  align-items: start;
}
  #sg-practice-tests .text img {
    display: block;
    width: 70px;
    height: 70px;
    object-fit: cover;
  }
  #sg-practice-tests .text h3,
  #sg-practice-tests .text h3 a {
    font-family: var(--text);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
  }
  #sg-practice-tests .text p {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  #sg-practice-tests .text .text-link {
    display: inline-block;
    font-size: 18px;
    color: var(--purple);
  }
    #sg-practice-tests .text .text-link:hover,
    #sg-practice-tests .text .text-link:focus {
      color: var(--black);
    }
      #sg-practice-tests .text .text-link:after {
        content: '\f178';
        font-family: var(--icons);
        margin-left: 4px;
      }
@media screen and (max-width: 1024px) {
  #sg-guarantee div {
    flex-direction: column;
  }
}
@media screen and (max-width: 580px) {
  #sg-content .container {
    gap: 30px;
  }
  #sg-practice-tests .text {
    flex-direction: column;
  }
  #sg-practice-tests .text img {
    display: none;
  }
}
p.meta {
  font-size: 12px;
  color: #727272;
  line-height: 1.2;
}
.wp-block-group.accordion {
  display: flex;
  flex-direction: column;
}
.wp-block-group.accordion h3 {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 9px 20px;
  margin: 0;
  background: var(--orange);
  font-family: var(--text);
  font-size: 22px;
  font-weight: 700;
  color: var(--purple);
  line-height: 1.4;
  border-radius: 12px;
  transition: var(--transition-fast);
  cursor: zoom-in;
}
  .wp-block-group.accordion h3:hover,
  .wp-block-group.accordion h3:focus {
    background: var(--purple);
    color: var(--white);
  }
.wp-block-group.accordion h3:not(:first-of-type) {
  margin-top: 20px;
}
.wp-block-group.accordion h3.ui-accordion-header-active {
  border-radius: 12px 12px 0 0;
  cursor: zoom-out;
}
.wp-block-group.accordion h3 > span + br:first-of-type {
  display: none !important;
}
div.accordion-content {
  margin-left: 0 !important;
  margin-right: 0 !important
}
.accordion .ui-accordion-content {
  width: 100%;
  padding: 20px;
  background: var(--white);
  border-radius: 0 0 12px 12px;
}
  .accordion .ui-accordion-content p {
    margin: 0;
  }
  .wp-block-group.accordion .ui-accordion-content p br:first-of-type {
    display: none;
  }
h2.results-start {
  font-size: 32px;
  margin: 0 0 20px;
}
main > #sg-recent-results {
  display: block;
  padding: 20px 20px 10px;
  margin-top: 40px;
  background: var(--white);
  border: 1px solid #BFBED8;
  border-radius: 12px;
}
#sg-recent-results .table-striped {
  margin-bottom: 10px;
}
#sg-recent-results .table-striped + p {
  color: #727272;
}
  #sg-recent-results .table-striped tbody tr:first-child {
    background: var(--purple);
    color: var(--green)
  }
    #sg-recent-results .table-striped tbody tr:not(:first-child) td {
      font-size: 18px;
      line-height: 1;
      padding: 12px 10px;
    }
    #sg-recent-results .table-striped tbody tr:first-child td {
      font-size: 18px;
      font-weight: 700;
      line-height: 1;
      padding: 15px 10px;
    }
    #sg-recent-results .table-striped .text-success {
      color: #A86513;
    }
@media screen and (max-width: 768px) {
  #sg-content .container {
    grid-template-columns: 1fr;
  }
  #sg-recent-results .table-striped tbody tr:first-child td {
      font-size: 16px;
    }
  #sg-recent-results .table-striped tbody tr:not(:first-child) td {
    font-size: 15px;
  }
}


/* navigation */

.menu-icon,
.menu-closer {
  display: none;
}
.menu-icon svg,
.menu-closer svg {
  width: 60px;
}
.menu-back svg {
  width: 24px;
}
#main-menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
	#main-menu li a {
    position: relative;
    display: flex;
    align-items: center;
    font-family: var(--text);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    text-decoration: none !important;
    transition: var(--transition-normal);
    padding: 10px 20px;
	}
  #main-menu > li.current-menu-item > a:after,
  #main-menu > li.current-menu-parent a:after {
    color: var(--blue);
  }
@media screen and (min-width: 1201px) {
  #main-menu > ul > li.login-mobile-item {
    display: none;
  }
  #main-menu > ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  #main-menu > li.menu-item-has-children:hover > a:after,
  #main-menu > li.menu-item-has-children > a:after {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-left: 4px;
    background: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'>\<path fill='%23ffffff' d='M337.5 433C328.1 442.4 312.9 442.4 303.6 433L143.5 273C134.1 263.6 134.1 248.4 143.5 239.1C152.9 229.8 168.1 229.7 177.4 239.1L320.4 382.1L463.4 239.1C472.8 229.7 488 229.7 497.3 239.1C506.6 248.5 506.7 263.7 497.3 273L337.3 433z'/>\</svg>") no-repeat center;
    background-size: contain;
  }
	#main-menu li {
	  position: relative;
    display: flex;
	}
  #main-menu > li:not(.button):hover > a,
  #main-menu > li:not(.button).current-menu-item > a,
  #main-menu li.menu-item-has-children:hover > a:after {
    color: var(--green);
  }
  #main-menu li.menu-item-has-children:hover > a:after {
    background: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'>\<path fill='%234ace8d' d='M337.5 433C328.1 442.4 312.9 442.4 303.6 433L143.5 273C134.1 263.6 134.1 248.4 143.5 239.1C152.9 229.8 168.1 229.7 177.4 239.1L320.4 382.1L463.4 239.1C472.8 229.7 488 229.7 497.3 239.1C506.6 248.5 506.7 263.7 497.3 273L337.3 433z'/>\</svg>") no-repeat center;
  }

  /* second level */
	#main-menu .sub-menu {
    position: absolute;
    z-index: 15;
    /* offset = header padding-bottom (30px) + half the leftover row height (~17px),
       so the bubble hangs just below the header bar */
    top: calc(100% + 47px);
    left: -5px;
    display: block;
    min-width: 260px;
    padding: 8px;
    margin: 0;
    opacity: 0;
    background: var(--white);
    border: 1px solid #DBDBE4;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(30, 30, 30, 0.18);
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.15s linear;
	}
  /* invisible bridge so hover survives the gap between link and dropdown */
  #main-menu li.menu-item-has-children:hover::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 47px;
  }
  /* sticky header has 10px padding instead of 30px, so the gap shrinks by 20px */
  #header.sticky #main-menu .sub-menu {
    top: calc(100% + 27px);
  }
  #header.sticky #main-menu li.menu-item-has-children:hover::before {
    height: 27px;
  }
  #main-menu .sub-menu:before {
		content: '';
		position: absolute;
		left: 40px;
		top: -10px;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0 10px 10px 10px;
		border-color: transparent transparent var(--white) transparent;
		z-index: 9999;
    transform: translateX(-50%);
	}
		#main-menu li:hover > .sub-menu,
    #main-menu li.menu-item-has-children:focus-within > .sub-menu,
    .show-menu {
      opacity: 1 !important;
      height: auto;
      visibility: visible !important;
      transform: translateY(0);
		}
		#main-menu .sub-menu li {
      position: relative;
      display: block;
      margin: 0;
		}
		#main-menu .sub-menu li a {
      display: block;
      font-size: 17px;
      font-weight: 400;
      color: var(--purple);
      line-height: 1.4;
      letter-spacing: 0;
      text-transform: none;
      padding: 12px 16px;
      border-radius: 8px;
      transition: all 0.05s linear;
		}
			#main-menu li:not(.menu-item-has-children) a:after {
			  display: none;
			}
			#main-menu .sub-menu li:hover > a,
      #main-menu .sub-menu > li.current-menu-item > a {
        color: var(--white);
        background: var(--purple);
			}
			#main-menu .sub-menu li.menu-item-has-children:hover > a:after {
        color: var(--green);
        transition: all 0.05s linear;
			}
      #main-menu .sub-menu li.menu-item-has-children > a:after {
        font-family: var(--icons);
        content: '\f105';
        color: var(--black);
        margin: 0 0 0 4px;
        transition: var(--transition-normal);
      }
}
@media screen and (max-width: 1200px) {
  #main-menu a.menu-closer {
    display: none;
  }
  .far.navicon {
    font-weight: 100;
	}
	.menu-icon,
  .menu-close,
  .menu-icon:hover,
	.menu-close:hover,
  .menu-icon:focus,
	.menu-close:focus {
    align-self: center;
    display: flex;
    align-items: center;
    font-size: 55px;
    color: var(--white);
    line-height: 1;
    text-transform: uppercase;
    text-align: right;
    cursor: pointer;
    transition: var(--transition-normal);
	}
  .menu-icon *,
  .menu-close *,
  .menu-closer {
    font-weight: 100 !important;
  }
	#main-menu {
    position: fixed;
    z-index: 100;
    top: 0;
    left: -150vw;
    margin: 0;
    width: 100%;
    height: 100vh;
    background: var(--purple);
    transition: var(--transition-normal);
	}
		#main-menu li a,
    #main-menu li:hover > a,
    #main-menu li.current-menu-item > a {
      font-family: var(--text);
      font-size: 2rem;
      line-height: 1.2;
      font-weight: 400;
		  color: var(--white);
      text-align: center;
      padding: 15px 0;
      opacity: 1;
		}
    #main-menu > li.menu-item-has-children > a:after {
      content: '';
      width: 28px;
      height: 28px;
      background: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'>\<path fill='%23ffffff' d='M433.5 303C442.9 312.4 442.9 327.6 433.5 336.9L273.5 497C264.1 506.4 248.9 506.4 239.6 497C230.3 487.6 230.2 472.4 239.6 463.1L382.6 320.1L239.6 177.1C230.2 167.7 230.2 152.5 239.6 143.2C249 133.9 264.2 133.8 273.5 143.2L433.5 303.2z'/>\</svg>") no-repeat center;
      background-size: contain;
    }
    #main-menu .sub-menu > li.menu-item-has-children:hover > a:after,
    #main-menu .sub-menu > li.menu-item-has-children > a:after {
      font-family: var(--icons);
      content: '\f105';
      color: var(--white);
      margin-left: 20px;
      transition: var(--transition-normal);
    }
    #main-menu .sub-menu .sub-menu > li.menu-item-has-children > a:after {
      display: none;
    }
	#main-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    align-items: center;
	}
	#main-menu.show-menu .menu-closer {
    position: absolute;
    top: 78px;
    right: 44px;
    display: flex !important;
    align-items: center;
    cursor: pointer;
    font-size: 52px;
    font-weight: 100;
    color: var(--white);
	}
	#main-menu.show-menu .menu-back {
    top: 90px;
    left: 28px;
	  right: auto;
    font-weight: 700 !important;
	}
	.menu-closer.fa-times {
	  z-index: 9999;
    right: 4%;
	  left: auto;
	}
	.menu-back {
	  z-index: 102;
	}
		.menu-back:before {
      font-size: 24px;
		}
    .menu-back:after {
      font-family: var(--text);
      font-size: 24px;
      font-weight: 400;
      content: 'Back';
      margin: 0 0 0 5px;
		}
		.menu-closer:hover {
		  color: var(--white);
		}
	#header .show-menu {
	  left: 0 !important;
	}
	#header .hide-menu {
	  left: -150vw !important;
	}
  .sub-menu,
	.sub-menu .sub-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
	}
  #main-menu,
	#main-menu .sub-menu {
    display: flex;
    flex-direction: column;
    justify-content: start;
    height: 100vh;
    align-items: center;
	}
    #main-menu li:first-of-type {
      margin-top: 140px;
    }
	#main-menu .sub-menu {
    position: absolute;
    z-index: 1002;
    top: 0;
    left: -100vw;
    margin: 0;
    padding: 20px;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    list-style: inherit;
    background-color: #141239;
    transition: var(--transition-normal);
	}
  #main-menu li:hover > a,
  #main-menu > li.current-menu-item > a,
  #main-menu > li.current-menu-parent > a,
  #main-menu > li.current_page_parent > a,
  #main-menu li.menu-item-has-children:hover a:after {
    color: var(--white);
  }
}
@media screen and (min-width: 0px) and (max-width: 581px) {
  .menu-icon,
  .menu-close,
  .menu-icon:hover,
	.menu-close:hover,
  .menu-icon:focus,
	.menu-close:focus {
    font-size: 44px;
	}
}
@media screen and (max-width: 768px) {
  #main-menu.show-menu .menu-closer {
    top: 36px;
  }
  #main-menu.show-menu .menu-closer.menu-back {
    top: 52px;
  }
}
@media screen and (max-width: 580px) {
  #main-menu.show-menu .menu-closer {
    right: 15px;
  }
  #main-menu li a,
  #main-menu li:hover > a,
  #main-menu li.current-menu-item > a {
    font-size: 22px;
  }
}

/* ── Study Guide: inline test-results widget ──────────────── */
.sg-test-results {
  background: #f5f5fb;
  border: 1px solid #e0e0ef;
  border-radius: 10px;
  padding: 20px 24px;
  margin: 24px 0;
}
.sg-test-results h3 {
  font-size: 20px;
  margin: 0 0 16px;
  color: var(--purple);
  text-align: center;
}
.sg-scores-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sg-scores-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}
.sg-scores-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.sg-scores-list p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}
.sg-scores-list h6 {
  display: block;
  font-family: var(--text);
  font-size: 13px;
  font-weight: 700;
  color: #888;
  margin: 3px 0 0;
}
.sg-test-results__note {
  font-size: 12px;
  color: #aaa;
  margin: 0;
  font-style: italic;
  text-align: center;
}

/* Test results table */
.sg-scores-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 15px;
}

.sg-scores-table thead tr {
  background-color: #262262;
}

.sg-scores-table thead th {
  color: #3ecfaa;
  font-weight: 700;
  text-align: left;
  padding: 12px 16px;
  font-size: 14px;
}

.sg-scores-table tbody tr:nth-child(odd) {
  background-color: #f5f5fb;
}

.sg-scores-table tbody tr:nth-child(even) {
  background-color: #ebebf5;
}

.sg-scores-table tbody td {
  padding: 10px 16px;
  color: #1e1e1e;
  border-bottom: 1px solid #e0e0ef;
}

.sg-scores-table .result-pass {
  color: #ffa749;
  font-weight: 600;
}

.sg-scores-table .result-fail {
  color: #1e1e1e;
  font-weight: 400;
}
