/*!
Theme Name: EM Official
Theme URI: http://underscores.me/
Author: EM
Author URI: http://EM.hussain@enhancemedia.co.uk
Description: Description
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: em-official
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.

EM Official 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.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Variables
	- Variables
# Components
	- Navigation
# Blocks
# Plugins
	- Jetpack infinite scroll

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Posts and Pages
--------------------------------------------- */
.c__btn {
  display: inline-block;
  padding: 12px 1.5em;
  text-align: center;
  outline: 0;
  border: 2px solid #E03100;
  border-radius: 0;
  transition: 0.3s ease-in-out;
  font-weight: 700;
  text-decoration: none;
  min-width: 190px;
  border-radius: 6px;
}
.c__btn span {
  color: inherit;
  position: relative;
}
.c__btn span::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s ease-in-out;
}
.c__btn:hover {
  text-decoration: none;
}
.c__btn:hover span::before {
  width: 100%;
}
.c__btn--primary {
  color: #FFFFFF;
  background-color: #E03100;
}
.c__btn--secondary {
  color: #E03100;
  border-color: #E03100;
  background-color: transparent;
}
.c__btn--secondary:hover {
  background-color: #E03100;
  color: #FFFFFF;
}
.c__btn--primary span::before, .c__btn--secondary span::before {
  background-color: #FFFFFF;
}

#top-link {
  background: #E03100;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  position: fixed;
  bottom: 20px;
  right: 20px;
  transition: background 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  z-index: 1;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  box-shadow: 0 2px 28px 0 rgba(135, 135, 135, 0.5);
}
#top-link.show {
  opacity: 1;
  visibility: visible;
}
#top-link::after {
  content: "";
  position: absolute;
  top: 27px;
  left: 24px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  transform: rotate(-45deg);
}
@media (max-width: 768px) {
  #top-link {
    width: 40px;
    height: 40px;
  }
  #top-link::after {
    top: 17px;
    left: 14px;
  }
}
#top-link:hover {
  background-color: #FFFFFF;
}
#top-link:hover::after {
  border-color: #E03100;
}

body.dark-theme .c__btn--primary {
  background-color: #FFFFFF;
  color: #E03100;
  border-color: #FFFFFF;
}
body.dark-theme .c__btn--primary span::before {
  background-color: #E03100;
}

.c__link {
  color: unset;
  font-weight: 500;
  display: inline-block;
  transition: 0.3s ease-in-out;
  text-decoration: none;
  position: relative;
  padding-right: 10px;
  margin-top: 20px;
}
.c__link.orange {
  color: #E03100;
  margin-top: 0;
}
.c__link.orange:visited {
  color: #E03100;
}
.c__link::after {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  border-right: 2px solid #E03100;
  border-top: 2px solid #E03100;
  right: 0;
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
}
.c__link:hover {
  text-decoration: underline;
}
.c__link:visited {
  color: unset;
}

h1, h2, h3, h4, h5 {
  line-height: 1.2571;
  margin: 0 0 0.5em;
  font-weight: 700;
}
h1 span, h2 span, h3 span, h4 span, h5 span {
  color: #E03100;
}
h1 a, h2 a, h3 a, h4 a, h5 a {
  color: #E03100;
  text-decoration: none;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover {
  text-decoration: underline;
}

p span {
  color: #E03100;
}
p span.issue-level {
  font-weight: 500;
}
p span.issue-level--critical {
  color: #ED1A3B;
}
p span.issue-level--high {
  color: #BE5014;
}
p span.issue-level--medium {
  color: #0070C0;
}
p span.issue-level--low {
  color: #3C7D22;
}

h1 {
  font-size: 48px;
  line-height: 50px;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
    line-height: 36px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 24px;
    line-height: 28px;
  }
}

h2 {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.036em;
  margin-bottom: 0.85em;
}
@media (max-width: 768px) {
  h2 {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  h2 {
    font-size: 18px;
  }
}

h3 {
  font-size: 30px;
}
@media (max-width: 768px) {
  h3 {
    font-size: 24px;
  }
}

h4 {
  font-size: 22px;
}
@media (max-width: 768px) {
  h4 {
    font-size: 16px;
  }
}

h5 {
  font-size: 1.2em;
}

p {
  margin: 0 0 1.618em 0;
}

ul, ol {
  margin-left: 0;
}

.c__page {
  position: relative;
  padding-right: 30px;
}
@media (max-width: 1024px) {
  .c__page {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .c__page {
    padding: 0 20px;
  }
}
.c__page .l__container {
  padding-left: 0;
  margin-left: 0;
  display: flex;
  gap: 85px;
}
@media (min-width: 1025px) {
  .c__page .l__row {
    padding-top: 50px;
  }
}
@media (min-width: 1025px) {
  .c__page__items {
    margin-top: 60px;
  }
}
.c__page__content {
  padding: 20px 40px 0;
  position: relative;
}
@media (min-width: 1367px) {
  .c__page__content {
    padding: 40px 80px 0;
    position: relative;
  }
}
@media (max-width: 1024px) {
  .c__page__content {
    padding: 0;
    margin-bottom: 60px;
  }
}
.c__page__content h2 {
  font-weight: 300;
}
@media (max-width: 1024px) {
  .c__page__content h2 {
    font-weight: 500;
  }
}
@media (min-width: 1025px) {
  .c__page__content__main {
    margin-bottom: 60px;
  }
}
@media (max-width: 1024px) {
  .c__page__content__main {
    margin-bottom: 30px;
  }
}
.c__page__content__tags {
  position: absolute;
  top: -30px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .c__page__content__tags {
    position: static;
    top: auto;
    margin-bottom: 30px;
  }
}
.c__page__content__tags--item {
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #E9E4E1;
  border-radius: 12.5px;
  padding: 2.5px 30px;
}
@media (max-width: 480px) {
  .c__page__content__tags--item {
    width: 100%;
  }
}
.c__page__nav {
  position: relative;
}
@media (max-width: 1024px) {
  .c__page__nav {
    display: flex;
    margin-bottom: 60px;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .c__page__nav {
    display: none;
  }
}
.c__page__nav--title {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1em;
}
.c__page__nav--title span {
  position: relative;
  padding-right: 20px;
  color: inherit;
}
.c__page__nav--title span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  background-image: url(images/assets/img/icons/arrow-down.png);
  background-size: cover;
}
@media (min-width: 1025px) {
  .c__page__nav--title {
    position: absolute;
    top: -2em;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
}
@media (max-width: 1024px) {
  .c__page__nav--title {
    width: 100%;
  }
}
.c__page__nav a {
  color: unset;
  text-decoration: none;
}
@media (max-width: 1024px) {
  .c__page__nav a {
    flex: 1 1 0;
    height: inherit;
  }
  .c__page__nav a .c__page__nav--item {
    height: 100%;
  }
}
.c__page__nav--item {
  background-color: #E9E4E1;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: center;
}
@media (max-width: 1024px) {
  .c__page__nav--item {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 10px;
    gap: 10px;
    width: 100%;
    height: inherit;
    flex: 1 1 0;
  }
}
.c__page__nav--item:not(.end) {
  transition: opacity 0.3s ease-in-out;
}
.c__page__nav--item:not(.end):hover {
  opacity: 1 !important;
}
.c__page__nav--item.end:not(.grey) {
  color: #FFFFFF;
  background-color: #E03100;
}
.c__page__nav--item.end:not(.grey) img {
  filter: invert(1) brightness(1000%) grayscale(100%);
}
.c__page__nav--item p {
  margin: 0;
}
.c__page__nav--item img {
  height: 50px;
  width: auto;
}
@media (max-width: 1024px) {
  .c__page__nav--item img {
    height: 30px;
  }
}
.c__page__item {
  color: unset;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .c__page__item {
    gap: 15px;
  }
  .c__page__item:first-of-type {
    margin-top: 40px;
  }
}
.c__page__item--icon {
  background-color: #E9E4E1;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  position: relative;
}
@media (max-width: 1024px) {
  .c__page__item--icon {
    height: 40px;
    width: 40px;
  }
  .c__page__item--icon img {
    height: 18px;
  }
}
@media (max-width: 480px) {
  .c__page__item--icon {
    display: none;
  }
}
.c__page__item--icon img {
  height: 30px;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c__page__item p {
  margin: 0;
  position: relative;
  padding-right: 40px;
}
.c__page__item p svg {
  height: 30px;
  width: 30px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  fill: #E03100;
}
.c__page__item p span {
  font-weight: 600;
  color: #E03100;
}
.c__page__item span.sub {
  font-weight: 300;
  font-size: 0.8em;
}

@media (min-width: 1025px) {
  .c__sidebar {
    padding-top: 30px;
  }
}
@media (min-width: 1367px) {
  .c__sidebar {
    padding-left: 50px;
  }
}
.c__sidebar__item:not(:first-of-type) {
  margin-top: 2em;
}
@media (max-width: 1024px) {
  .c__sidebar__item {
    margin-top: 20px;
  }
}
.c__sidebar__item--title {
  font-weight: 500;
  position: relative;
  padding-left: 20px;
}
.c__sidebar__item--title::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  background-color: #E03100;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.c__sidebar__item--inner {
  padding: 40px 20px;
  border: 1px solid #E9E4E1;
  border-radius: 5.5px;
}
.c__sidebar__item--inner .ats {
  list-style: none;
  padding: 0;
  margin: 0;
}
.c__sidebar__item--inner .ats li {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
}
.c__sidebar__item--inner .ats li p, .c__sidebar__item--inner .ats li a {
  text-align: center;
  width: calc(45% - 15px);
  margin: 0;
  padding: 0 10px;
  font-size: 16px;
}
.c__sidebar__item--inner .ats li a {
  text-decoration: none;
  color: unset;
}
.c__sidebar__item--inner .ats li a span {
  position: relative;
}
.c__sidebar__item--inner .ats li a span::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  height: 7px;
  width: 7px;
  border-top: 1px solid #E03100;
  border-right: 1px solid #E03100;
}
.c__sidebar__item--inner .ats li div {
  width: 30px;
  height: 30px;
}
.c__sidebar__item--inner .ats li svg {
  fill: #E03100;
  height: 25px;
  width: 25px;
}
.c__sidebar__item--inner p:last-of-type {
  margin-bottom: 0;
}
.c__sidebar__item--inner p span {
  color: #E03100;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Blocks
--------------------------------------------------------------*/
.b__text__block p:last-of-type {
  margin-bottom: 0;
}

.b__issues {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}
.b__issues__item {
  width: 35%;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .b__issues__item {
    width: 100% !important;
  }
}
.b__issues__item--1, .b__issues__item--2 {
  width: 45%;
}
.b__issues__item--1 img, .b__issues__item--2 img {
  height: 60px;
  width: auto;
}
.b__issues__item--1 .b__issues__item--wrap, .b__issues__item--2 .b__issues__item--wrap {
  padding-right: 100px;
}
.b__issues__item--1 .b__issues__item--wrap:hover .b__issues__item--btn, .b__issues__item--2 .b__issues__item--wrap:hover .b__issues__item--btn {
  background-color: #E03100;
}
.b__issues__item--1 .b__issues__item--wrap:hover .b__issues__item--btn svg, .b__issues__item--2 .b__issues__item--wrap:hover .b__issues__item--btn svg {
  fill: #FFFFFF;
}
.b__issues__item--1 .b__issues__item--btn, .b__issues__item--2 .b__issues__item--btn {
  height: 50px;
  width: 50px;
  background-color: #E9E4E1;
  border-radius: 100%;
}
.b__issues__item--3, .b__issues__item--4 {
  font-size: 0.9em;
}
.b__issues__item--3 img, .b__issues__item--4 img {
  height: 30px;
}
.b__issues__item--wrap {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 2px solid #E9E4E1;
  border-radius: 11px;
  padding: 23px 40px;
  position: relative;
  transition: 0.3s ease-in-out;
}
.b__issues__item--wrap:hover {
  border-color: #E03100;
}
.b__issues__item--wrap p {
  margin: 0;
}
.b__issues__item--wrap img {
  margin-right: 20px;
  width: auto;
}
.b__issues__item a {
  color: unset;
  text-decoration: none;
}
.b__issues__item--btn {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}
.b__issues__item--btn svg {
  fill: #E03100;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 40px;
  width: 40px;
  transition: 0.3s ease-in-out;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
.animate {
  transition: 0.75s;
}
.animate.hidden {
  opacity: 0;
}
.animate.slideLeft.hidden {
  transform: translateX(-200px);
}
.animate.slideRight.hidden {
  transform: translateX(200px);
}
.animate.slideDown.hidden {
  transform: translateY(-200px);
}
.animate.slideUp.hidden {
  transform: translateY(200px);
}
.animate.fadeIn.hidden {
  opacity: 0;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
.l__container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
}
@media (max-width: 1024px) {
  .l__container {
    padding: 0 20px;
  }
}
.l__container--full {
  padding: 0;
}
.l__container--narrow {
  max-width: 1200px;
}
.l__aligncenter {
  text-align: center;
}
.l__alignright {
  text-align: right;
}
.l__matchHeight {
  display: flex;
  flex-wrap: wrap;
}
.l__maintainGrid {
  height: 100%;
}
.l__space {
  margin-bottom: 4em;
}
.l__space--small {
  margin-bottom: 2em;
}

.l__row {
  clear: both;
}
.l__row::after {
  content: "";
  display: table;
  clear: both;
}
.l__row__margin5 {
  margin: 0 -5px;
}
.l__row__margin5 > .l__col > .l__col__inner, .l__row__margin5 > .l__matchHeight > .l__col > .l__col__inner {
  margin: 0 5px;
}
.l__row__margin10 {
  margin: 0 -10px;
}
.l__row__margin10 > .l__col > .l__col__inner, .l__row__margin10 > .l__matchHeight > .l__col > .l__col__inner {
  margin: 0 10px;
}
.l__row__margin15 {
  margin: 0 -15px;
}
.l__row__margin15 > .l__col > .l__col__inner, .l__row__margin15 > .l__matchHeight > .l__col > .l__col__inner {
  margin: 0 15px;
}
.l__row__margin20 {
  margin: 0 -20px;
}
.l__row__margin20 > .l__col > .l__col__inner, .l__row__margin20 > .l__matchHeight > .l__col > .l__col__inner {
  margin: 0 20px;
}
.l__row__margin30 {
  margin: 0 -30px;
}
.l__row__margin30 > .l__col > .l__col__inner, .l__row__margin30 > .l__matchHeight > .l__col > .l__col__inner {
  margin: 0 30px;
}
.l__row__altlayout > [class*=l__col], .l__row__altlayout .l__matchHeight > [class*=l__col] {
  float: right;
}
@media (max-width: 1366px) {
  .l__row .l__row[data-largest*=margin20] {
    margin: 0 -20px;
  }
  .l__row .l__row[data-largest*=margin20] > .l__col > .l__col__inner, .l__row .l__row[data-largest*=margin20] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 20px;
  }
  .l__row .l__row[data-largest*=margin15] {
    margin: 0 -15px;
  }
  .l__row .l__row[data-largest*=margin15] > .l__col > .l__col__inner, .l__row .l__row[data-largest*=margin15] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 15px;
  }
  .l__row .l__row[data-largest*=margin10] {
    margin: 0 -10px;
  }
  .l__row .l__row[data-largest*=margin10] > .l__col > .l__col__inner, .l__row .l__row[data-largest*=margin10] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 10px;
  }
  .l__row .l__row[data-largest*=margin5] {
    margin: 0 -5px;
  }
  .l__row .l__row[data-largest*=margin5] > .l__col > .l__col__inner, .l__row .l__row[data-largest*=margin5] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 5px;
  }
}
@media (max-width: 1024px) {
  .l__row .l__row[data-netbook*=margin20] {
    margin: 0 -20px;
  }
  .l__row .l__row[data-netbook*=margin20] > .l__col > .l__col__inner, .l__row .l__row[data-netbook*=margin20] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 20px;
  }
  .l__row .l__row[data-netbook*=margin15] {
    margin: 0 -15px;
  }
  .l__row .l__row[data-netbook*=margin15] > .l__col > .l__col__inner, .l__row .l__row[data-netbook*=margin15] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 15px;
  }
  .l__row .l__row[data-netbook*=margin10] {
    margin: 0 -10px;
  }
  .l__row .l__row[data-netbook*=margin10] > .l__col > .l__col__inner, .l__row .l__row[data-netbook*=margin10] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 10px;
  }
  .l__row .l__row[data-netbook*=margin5] {
    margin: 0 -5px;
  }
  .l__row .l__row[data-netbook*=margin5] > .l__col > .l__col__inner, .l__row .l__row[data-netbook*=margin5] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 5px;
  }
}
@media (max-width: 768px) {
  .l__row .l__row[data-tablet*=margin20] {
    margin: 0 -20px;
  }
  .l__row .l__row[data-tablet*=margin20] > .l__col > .l__col__inner, .l__row .l__row[data-tablet*=margin20] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 20px;
  }
  .l__row .l__row[data-tablet*=margin15] {
    margin: 0 -15px;
  }
  .l__row .l__row[data-tablet*=margin15] > .l__col > .l__col__inner, .l__row .l__row[data-tablet*=margin15] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 15px;
  }
  .l__row .l__row[data-tablet*=margin10] {
    margin: 0 -10px;
  }
  .l__row .l__row[data-tablet*=margin10] > .l__col > .l__col__inner, .l__row .l__row[data-tablet*=margin10] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 10px;
  }
  .l__row .l__row[data-tablet*=margin5] {
    margin: 0 -5px;
  }
  .l__row .l__row[data-tablet*=margin5] > .l__col > .l__col__inner, .l__row .l__row[data-tablet*=margin5] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 5px;
  }
}
@media (max-width: 480px) {
  .l__row .l__row[data-mobile*=margin20] {
    margin: 0 -20px;
  }
  .l__row .l__row[data-mobile*=margin20] > .l__col > .l__col__inner, .l__row .l__row[data-mobile*=margin20] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 20px;
  }
  .l__row .l__row[data-mobile*=margin15] {
    margin: 0 -15px;
  }
  .l__row .l__row[data-mobile*=margin15] > .l__col > .l__col__inner, .l__row .l__row[data-mobile*=margin15] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 15px;
  }
  .l__row .l__row[data-mobile*=margin10] {
    margin: 0 -10px;
  }
  .l__row .l__row[data-mobile*=margin10] > .l__col > .l__col__inner, .l__row .l__row[data-mobile*=margin10] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 10px;
  }
  .l__row .l__row[data-mobile*=margin5] {
    margin: 0 -5px;
  }
  .l__row .l__row[data-mobile*=margin5] > .l__col > .l__col__inner, .l__row .l__row[data-mobile*=margin5] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 5px;
  }
}
@media (max-width: 360px) {
  .l__row .l__row[data-smallest*=margin20] {
    margin: 0 -20px;
  }
  .l__row .l__row[data-smallest*=margin20] > .l__col > .l__col__inner, .l__row .l__row[data-smallest*=margin20] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 20px;
  }
  .l__row .l__row[data-smallest*=margin15] {
    margin: 0 -15px;
  }
  .l__row .l__row[data-smallest*=margin15] > .l__col > .l__col__inner, .l__row .l__row[data-smallest*=margin15] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 15px;
  }
  .l__row .l__row[data-smallest*=margin10] {
    margin: 0 -10px;
  }
  .l__row .l__row[data-smallest*=margin10] > .l__col > .l__col__inner, .l__row .l__row[data-smallest*=margin10] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 10px;
  }
  .l__row .l__row[data-smallest*=margin5] {
    margin: 0 -5px;
  }
  .l__row .l__row[data-smallest*=margin5] > .l__col > .l__col__inner, .l__row .l__row[data-smallest*=margin5] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 5px;
  }
}
.l__row .l__col__inner {
  margin: 0 10px;
}
.l__row .l__col__width1, .l__row .l__col__width2, .l__row .l__col__width3, .l__row .l__col__width4, .l__row .l__col__width5, .l__row .l__col__width6, .l__row .l__col__width7, .l__row .l__col__width8, .l__row .l__col__width9, .l__row .l__col__width10, .l__row .l__col__width11, .l__row .l__col__width12 {
  float: left;
}
.l__row .l__col__width1 {
  width: 8.3333333333%;
}
@media (max-width: 1366px) {
  .l__row .l__col[data-largest*="1"] {
    width: 8.3333333333%;
  }
}
@media (max-width: 1024px) {
  .l__row .l__col[data-netbook*="1"] {
    width: 8.3333333333%;
  }
}
@media (max-width: 768px) {
  .l__row .l__col[data-tablet*="1"] {
    width: 8.3333333333%;
  }
}
@media (max-width: 480px) {
  .l__row .l__col[data-mobile*="1"] {
    width: 8.3333333333%;
  }
}
@media (max-width: 360px) {
  .l__row .l__col[data-smallest*="1"] {
    width: 8.3333333333%;
  }
}
.l__row .l__col__width2 {
  width: 16.6666666667%;
}
@media (max-width: 1366px) {
  .l__row .l__col[data-largest*="2"] {
    width: 16.6666666667%;
  }
}
@media (max-width: 1024px) {
  .l__row .l__col[data-netbook*="2"] {
    width: 16.6666666667%;
  }
}
@media (max-width: 768px) {
  .l__row .l__col[data-tablet*="2"] {
    width: 16.6666666667%;
  }
}
@media (max-width: 480px) {
  .l__row .l__col[data-mobile*="2"] {
    width: 16.6666666667%;
  }
}
@media (max-width: 360px) {
  .l__row .l__col[data-smallest*="2"] {
    width: 16.6666666667%;
  }
}
.l__row .l__col__width3 {
  width: 25%;
}
@media (max-width: 1366px) {
  .l__row .l__col[data-largest*="3"] {
    width: 25%;
  }
}
@media (max-width: 1024px) {
  .l__row .l__col[data-netbook*="3"] {
    width: 25%;
  }
}
@media (max-width: 768px) {
  .l__row .l__col[data-tablet*="3"] {
    width: 25%;
  }
}
@media (max-width: 480px) {
  .l__row .l__col[data-mobile*="3"] {
    width: 25%;
  }
}
@media (max-width: 360px) {
  .l__row .l__col[data-smallest*="3"] {
    width: 25%;
  }
}
.l__row .l__col__width4 {
  width: 33.3333333333%;
}
@media (max-width: 1366px) {
  .l__row .l__col[data-largest*="4"] {
    width: 33.3333333333%;
  }
}
@media (max-width: 1024px) {
  .l__row .l__col[data-netbook*="4"] {
    width: 33.3333333333%;
  }
}
@media (max-width: 768px) {
  .l__row .l__col[data-tablet*="4"] {
    width: 33.3333333333%;
  }
}
@media (max-width: 480px) {
  .l__row .l__col[data-mobile*="4"] {
    width: 33.3333333333%;
  }
}
@media (max-width: 360px) {
  .l__row .l__col[data-smallest*="4"] {
    width: 33.3333333333%;
  }
}
.l__row .l__col__width5 {
  width: 41.6666666667%;
}
@media (max-width: 1366px) {
  .l__row .l__col[data-largest*="5"] {
    width: 41.6666666667%;
  }
}
@media (max-width: 1024px) {
  .l__row .l__col[data-netbook*="5"] {
    width: 41.6666666667%;
  }
}
@media (max-width: 768px) {
  .l__row .l__col[data-tablet*="5"] {
    width: 41.6666666667%;
  }
}
@media (max-width: 480px) {
  .l__row .l__col[data-mobile*="5"] {
    width: 41.6666666667%;
  }
}
@media (max-width: 360px) {
  .l__row .l__col[data-smallest*="5"] {
    width: 41.6666666667%;
  }
}
.l__row .l__col__width6 {
  width: 50%;
}
@media (max-width: 1366px) {
  .l__row .l__col[data-largest*="6"] {
    width: 50%;
  }
}
@media (max-width: 1024px) {
  .l__row .l__col[data-netbook*="6"] {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .l__row .l__col[data-tablet*="6"] {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .l__row .l__col[data-mobile*="6"] {
    width: 50%;
  }
}
@media (max-width: 360px) {
  .l__row .l__col[data-smallest*="6"] {
    width: 50%;
  }
}
.l__row .l__col__width7 {
  width: 58.3333333333%;
}
@media (max-width: 1366px) {
  .l__row .l__col[data-largest*="7"] {
    width: 58.3333333333%;
  }
}
@media (max-width: 1024px) {
  .l__row .l__col[data-netbook*="7"] {
    width: 58.3333333333%;
  }
}
@media (max-width: 768px) {
  .l__row .l__col[data-tablet*="7"] {
    width: 58.3333333333%;
  }
}
@media (max-width: 480px) {
  .l__row .l__col[data-mobile*="7"] {
    width: 58.3333333333%;
  }
}
@media (max-width: 360px) {
  .l__row .l__col[data-smallest*="7"] {
    width: 58.3333333333%;
  }
}
.l__row .l__col__width8 {
  width: 66.6666666667%;
}
@media (max-width: 1366px) {
  .l__row .l__col[data-largest*="8"] {
    width: 66.6666666667%;
  }
}
@media (max-width: 1024px) {
  .l__row .l__col[data-netbook*="8"] {
    width: 66.6666666667%;
  }
}
@media (max-width: 768px) {
  .l__row .l__col[data-tablet*="8"] {
    width: 66.6666666667%;
  }
}
@media (max-width: 480px) {
  .l__row .l__col[data-mobile*="8"] {
    width: 66.6666666667%;
  }
}
@media (max-width: 360px) {
  .l__row .l__col[data-smallest*="8"] {
    width: 66.6666666667%;
  }
}
.l__row .l__col__width9 {
  width: 75%;
}
@media (max-width: 1366px) {
  .l__row .l__col[data-largest*="9"] {
    width: 75%;
  }
}
@media (max-width: 1024px) {
  .l__row .l__col[data-netbook*="9"] {
    width: 75%;
  }
}
@media (max-width: 768px) {
  .l__row .l__col[data-tablet*="9"] {
    width: 75%;
  }
}
@media (max-width: 480px) {
  .l__row .l__col[data-mobile*="9"] {
    width: 75%;
  }
}
@media (max-width: 360px) {
  .l__row .l__col[data-smallest*="9"] {
    width: 75%;
  }
}
.l__row .l__col__width10 {
  width: 83.3333333333%;
}
@media (max-width: 1366px) {
  .l__row .l__col[data-largest*="10"] {
    width: 83.3333333333%;
  }
}
@media (max-width: 1024px) {
  .l__row .l__col[data-netbook*="10"] {
    width: 83.3333333333%;
  }
}
@media (max-width: 768px) {
  .l__row .l__col[data-tablet*="10"] {
    width: 83.3333333333%;
  }
}
@media (max-width: 480px) {
  .l__row .l__col[data-mobile*="10"] {
    width: 83.3333333333%;
  }
}
@media (max-width: 360px) {
  .l__row .l__col[data-smallest*="10"] {
    width: 83.3333333333%;
  }
}
.l__row .l__col__width11 {
  width: 91.6666666667%;
}
@media (max-width: 1366px) {
  .l__row .l__col[data-largest*="11"] {
    width: 91.6666666667%;
  }
}
@media (max-width: 1024px) {
  .l__row .l__col[data-netbook*="11"] {
    width: 91.6666666667%;
  }
}
@media (max-width: 768px) {
  .l__row .l__col[data-tablet*="11"] {
    width: 91.6666666667%;
  }
}
@media (max-width: 480px) {
  .l__row .l__col[data-mobile*="11"] {
    width: 91.6666666667%;
  }
}
@media (max-width: 360px) {
  .l__row .l__col[data-smallest*="11"] {
    width: 91.6666666667%;
  }
}
.l__row .l__col__width12 {
  width: 100%;
}
@media (max-width: 1366px) {
  .l__row .l__col[data-largest*="12"] {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .l__row .l__col[data-netbook*="12"] {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .l__row .l__col[data-tablet*="12"] {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .l__row .l__col[data-mobile*="12"] {
    width: 100%;
  }
}
@media (max-width: 360px) {
  .l__row .l__col[data-smallest*="12"] {
    width: 100%;
  }
}

@media (max-width: 1366px) {
  .l__row[data-largest*=margin20] {
    margin: 0 -20px;
  }
  .l__row[data-largest*=margin20] > .l__col > .l__col__inner, .l__row[data-largest*=margin20] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 20px;
  }
  .l__row[data-largest*=margin15] {
    margin: 0 -15px;
  }
  .l__row[data-largest*=margin15] > .l__col > .l__col__inner, .l__row[data-largest*=margin15] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 15px;
  }
  .l__row[data-largest*=margin10] {
    margin: 0 -10px;
  }
  .l__row[data-largest*=margin10] > .l__col > .l__col__inner, .l__row[data-largest*=margin10] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 10px;
  }
  .l__row[data-largest*=margin5] {
    margin: 0 -5px;
  }
  .l__row[data-largest*=margin5] > .l__col > .l__col__inner, .l__row[data-largest*=margin5] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 5px;
  }
}
@media (max-width: 1024px) {
  .l__row[data-netbook*=margin20] {
    margin: 0 -20px;
  }
  .l__row[data-netbook*=margin20] > .l__col > .l__col__inner, .l__row[data-netbook*=margin20] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 20px;
  }
  .l__row[data-netbook*=margin15] {
    margin: 0 -15px;
  }
  .l__row[data-netbook*=margin15] > .l__col > .l__col__inner, .l__row[data-netbook*=margin15] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 15px;
  }
  .l__row[data-netbook*=margin10] {
    margin: 0 -10px;
  }
  .l__row[data-netbook*=margin10] > .l__col > .l__col__inner, .l__row[data-netbook*=margin10] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 10px;
  }
  .l__row[data-netbook*=margin5] {
    margin: 0 -5px;
  }
  .l__row[data-netbook*=margin5] > .l__col > .l__col__inner, .l__row[data-netbook*=margin5] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 5px;
  }
}
@media (max-width: 768px) {
  .l__row[data-tablet*=margin20] {
    margin: 0 -20px;
  }
  .l__row[data-tablet*=margin20] > .l__col > .l__col__inner, .l__row[data-tablet*=margin20] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 20px;
  }
  .l__row[data-tablet*=margin15] {
    margin: 0 -15px;
  }
  .l__row[data-tablet*=margin15] > .l__col > .l__col__inner, .l__row[data-tablet*=margin15] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 15px;
  }
  .l__row[data-tablet*=margin10] {
    margin: 0 -10px;
  }
  .l__row[data-tablet*=margin10] > .l__col > .l__col__inner, .l__row[data-tablet*=margin10] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 10px;
  }
  .l__row[data-tablet*=margin5] {
    margin: 0 -5px;
  }
  .l__row[data-tablet*=margin5] > .l__col > .l__col__inner, .l__row[data-tablet*=margin5] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 5px;
  }
}
@media (max-width: 480px) {
  .l__row[data-mobile*=margin20] {
    margin: 0 -20px;
  }
  .l__row[data-mobile*=margin20] > .l__col > .l__col__inner, .l__row[data-mobile*=margin20] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 20px;
  }
  .l__row[data-mobile*=margin15] {
    margin: 0 -15px;
  }
  .l__row[data-mobile*=margin15] > .l__col > .l__col__inner, .l__row[data-mobile*=margin15] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 15px;
  }
  .l__row[data-mobile*=margin10] {
    margin: 0 -10px;
  }
  .l__row[data-mobile*=margin10] > .l__col > .l__col__inner, .l__row[data-mobile*=margin10] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 10px;
  }
  .l__row[data-mobile*=margin5] {
    margin: 0 -5px;
  }
  .l__row[data-mobile*=margin5] > .l__col > .l__col__inner, .l__row[data-mobile*=margin5] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 5px;
  }
}
@media (max-width: 360px) {
  .l__row[data-smallest*=margin20] {
    margin: 0 -20px;
  }
  .l__row[data-smallest*=margin20] > .l__col > .l__col__inner, .l__row[data-smallest*=margin20] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 20px;
  }
  .l__row[data-smallest*=margin15] {
    margin: 0 -15px;
  }
  .l__row[data-smallest*=margin15] > .l__col > .l__col__inner, .l__row[data-smallest*=margin15] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 15px;
  }
  .l__row[data-smallest*=margin10] {
    margin: 0 -10px;
  }
  .l__row[data-smallest*=margin10] > .l__col > .l__col__inner, .l__row[data-smallest*=margin10] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 10px;
  }
  .l__row[data-smallest*=margin5] {
    margin: 0 -5px;
  }
  .l__row[data-smallest*=margin5] > .l__col > .l__col__inner, .l__row[data-smallest*=margin5] > .l__matchHeight > .l__col > .l__col__inner {
    margin: 0 5px;
  }
}
.g__header {
  background-color: #FFFFFF;
  position: fixed;
  width: 100%;
  z-index: 999999;
  top: 0;
  transition: box-shadow 0.3s ease-in-out;
  border-top: 1px solid #E9E4E1;
  border-bottom: 1px solid #E9E4E1;
}
@media (min-width: 1025px) {
  .g__header .l__container {
    display: flex;
    justify-content: flex-end;
  }
}
@media (max-width: 1024px) {
  .g__header .l__container {
    padding: 0;
  }
}
.g__header.sticky {
  box-shadow: 0 10px 20px -10px #6C6460;
}
.g__header__search {
  width: 82px;
  position: relative;
  border-left: 1px solid #E9E4E1;
  border-right: 1px solid #E9E4E1;
  cursor: pointer;
  margin-left: 60px;
}
.g__header__search svg {
  height: 30px;
  width: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.g__header__top {
  background-color: #ED1A3B;
  text-align: right;
  height: 40px;
  line-height: 40px;
  font-size: 0.7em;
  overflow: hidden;
  font-weight: 300;
  border-bottom: 1px solid #ED1A3B;
}
@media (max-width: 1024px) {
  .g__header__top.desktop {
    display: none;
  }
}
.g__header__top.mobile {
  position: relative;
  padding: 10px 20px;
  overflow: visible;
  text-align: center;
}
.g__header__top.mobile::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100vh;
  top: 0;
  background-color: inherit;
}
@media (min-width: 1025px) {
  .g__header__top.mobile {
    display: none;
  }
}
.g__header__top ul {
  margin: 0;
  padding: 0;
}
.g__header__top ul li {
  display: inline-block;
}
.g__header__top ul li:not(:last-of-type) {
  margin-right: 10px;
}
.g__header__top ul li a {
  color: #FFFFFF;
  text-decoration: none;
  position: relative;
  transition: 0.3s ease-in-out;
}
.g__header__top ul li a:hover {
  color: #ED1A3B;
}
.g__header__top ul li a:hover svg {
  fill: #ED1A3B;
}
.g__header__top ul li a.has-img {
  padding-left: 30px;
}
.g__header__top ul li a svg {
  height: 20px;
  width: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  fill: #FFFFFF;
  transition: 0.3s ease-in-out;
}
.g__header #menu-toggle {
  display: block;
  float: right;
  width: 30px;
  height: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
}
@media (min-width: 1025px) {
  .g__header #menu-toggle {
    display: none;
  }
}
.g__header #menu-toggle .menu-line {
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  display: block;
  position: absolute;
  left: 0;
  transition: 0.3s ease-in-out;
}
.g__header #menu-toggle .menu-line-1 {
  top: 0;
}
.g__header #menu-toggle .menu-line-2 {
  top: 50%;
  transform: translateY(-50%);
}
.g__header #menu-toggle .menu-line-3 {
  bottom: 0;
}

#mobile-toggle {
  display: none;
}
@media (max-width: 1024px) {
  #mobile-toggle:checked ~ .g__header #menu-toggle .menu-line-2 {
    width: 0;
  }
  #mobile-toggle:checked ~ .g__header #menu-toggle .menu-line-1, #mobile-toggle:checked ~ .g__header #menu-toggle .menu-line-3 {
    top: 0;
  }
  #mobile-toggle:checked ~ .g__header #menu-toggle .menu-line-1 {
    transform: rotate(45deg);
  }
  #mobile-toggle:checked ~ .g__header #menu-toggle .menu-line-3 {
    transform: rotate(-45deg);
  }
  #mobile-toggle:checked ~ .g__header .g__nav {
    height: 100vh;
    overflow: auto;
  }
}

.g__nav {
  color: #FFFFFF;
}
.g__nav__wrap {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
}
@media (max-width: 1024px) {
  .g__nav__wrap {
    display: flex;
    padding: 0 10px;
    gap: 10px;
  }
}
.g__nav__item {
  position: relative;
  display: inline-block;
  padding: 30px 0 20px;
  text-align: center;
}
@media (min-width: 1025px) {
  .g__nav__item.home {
    padding-left: 35px;
  }
}
.g__nav__item.home::after {
  content: "";
  position: absolute;
  top: calc(50% + 4px);
  left: 0;
  transform: translateY(-50%);
  height: 30px;
  width: 30px;
  background: url(images/assets/img/icons/home-icon.svg) center/contain no-repeat;
}
@media (max-width: 1024px) {
  .g__nav__item.home::after {
    display: none;
  }
}
@media (max-width: 1024px) {
  .g__nav__item {
    display: block;
    width: 50%;
  }
}
.g__nav__item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background-color: #E03100;
  transition: 0.3s ease-in-out;
}
.g__nav__item a, .g__nav__item label {
  color: #6C6460;
  text-decoration: none;
  cursor: pointer;
}
.g__nav__item:hover::before, .g__nav__item.active::before {
  width: 100%;
}
.g__nav__item.bold {
  font-weight: 700;
}
@media (min-width: 1025px) {
  .g__nav__wrap {
    display: flex;
    justify-content: flex-end;
    gap: 60px;
  }
}

.subnav-toggle {
  display: none;
}
.subnav-toggle:checked ~ .g__nav__sub {
  display: block;
}

.g__footer {
  padding: 3em 0 5em;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  margin: 0 !important;
  padding: 0;
  overflow-x: hidden;
}
html.nav-open {
  overflow: hidden;
}

input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px #E03100;
}

body:not(.wp-admin) {
  font-family: Century "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  -webkit-font-smoothing: antialised;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: #3D4146;
  font-weight: 300;
  letter-spacing: 0.02em;
}
body:not(.wp-admin) #wpadminbar {
  z-index: 9999999;
}
@media (max-width: 768px) {
  body:not(.wp-admin) {
    font-size: 16px;
    line-height: 20px;
  }
}

#primary {
  min-height: 500px;
  overflow: hidden;
  margin-top: 139px;
}
@media (max-width: 1024px) {
  #primary {
    margin-top: 100px;
  }
}
@media (max-width: 480px) {
  #primary {
    margin-top: 120px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

ul.no-style {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 1025px) {
  body.home #primary {
    margin-top: 250px;
  }
  body.home #primary h1 {
    margin-bottom: 85px;
  }
}

@media (min-width: 1025px) {
  body.page-template-page-confirmation #primary {
    display: flex;
    align-items: center;
  }
}

input.hidden {
  display: none;
}

input, textarea, button, select {
  font-family: Century "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
}

select {
  appearance: none;
  background-position: 94% center;
  background-repeat: no-repeat;
  background-size: 12px;
}

fieldset {
  padding: 0;
  appearance: none;
  border: 0;
  margin: 0;
}
fieldset legend {
  display: none;
}

.frm_forms .frm_form_field {
  display: block;
  margin-bottom: 20px;
}
.frm_forms .frm_form_field label {
  display: block;
  margin-bottom: 10px;
}
.frm_forms .frm_form_field label .frm_required {
  color: #ED1A3B;
}
.frm_forms .frm_form_field input, .frm_forms .frm_form_field select, .frm_forms .frm_form_field textarea {
  max-width: 357px;
  width: 100%;
  padding: 15px 10px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid #E9E4E1;
}
.frm_forms .frm_form_field .frm_description {
  max-width: 357px;
  font-size: 0.8em;
  margin-top: 4px;
}
.frm_forms .frm_form_field select {
  cursor: pointer;
}
.frm_forms .frm_form_field textarea {
  width: 100%;
  max-width: 585px;
  resize: none;
}
.frm_forms .frm_form_field .frm_submit {
  display: block;
  position: relative;
  height: 47px;
  width: 142px;
  overflow: hidden;
  cursor: pointer;
}
.frm_forms .frm_form_field .frm_submit:hover button {
  background-color: #d64102;
}
.frm_forms .frm_form_field .frm_submit::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  width: 30px;
  right: 10px;
  border-radius: 100%;
  background-color: #FFFFFF;
  z-index: 2;
  background-image: url(images/assets/img/icons/grey-chevron-right.png);
  background-repeat: no-repeat;
  background-size: 6px 10px;
  background-position: center;
}
.frm_forms .frm_form_field .frm_submit button {
  appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: transparent;
  color: #FFFFFF;
  text-transform: uppercase;
  border: 0;
  font-size: 14px;
  padding-right: 50px;
  cursor: pointer;
  background-color: #E03100;
  border-radius: 24px;
  z-index: 1;
  transition: 0.3s ease-in-out;
}
.frm_forms .frm_form_field .frm_submit button:hover {
  background-color: #d64102;
}

.frm_error_style {
  color: #ED1A3B;
  display: none;
}

.frm_error {
  color: #ED1A3B;
  font-size: 14px;
}

.frm_message {
  text-transform: none;
  font-size: 25px;
  line-height: 28px;
  letter-spacing: 0.02em;
}

.frm_dropzone svg {
  width: 30px;
  height: 30px;
}

.password-form .frm_error {
  text-align: left;
  padding-top: 10px;
}
.password-form .frm_form_field {
  max-width: 357px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.password-form .frm_form_field.submit-wrap {
  display: flex;
  justify-content: center;
}

.frm__67bc776ae30c2 {
  display: none;
}

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