/*
Theme Name:     Matchbook Child Theme for Divi
Author:         Matchbook Media
Author URI:     http://www.matchbook.media
Template:       Divi
Version:        1.1.0
*/

/* * * * * * * * * * * * * *
  CSS DIRECTORY
	- ROOT VARIABLES
	- EM SIZING RULES
	- FONTS
	- GLOBAL
* * * * * * * * * * * * * * */

/* * * * * * * * * * * * * *
  DIVI BREAKPOINTS	
	- mobile-s: 480px;
	- mobile-m: 600px;
	- mobile:   782px;
	- tablet:   981px;
	- laptop:   1350px;
	- laptop-l: 1405px;
* * * * * * * * * * * * * * */

/* * * * * * * * * * * * * */
/*  ROOT VARIABLES         */
/* * * * * * * * * * * * * */
/* Edit the values - not the names. */
:root {
	--color-primary                : #0f4c81;
	--color-primary-dark           : #14141c;
	--color-primary-light          : #f3f3f3;
	--color-primary-text           : #14141c;
	--color-primary-text-light     : #f3f3f3;
	--color-secondary              : #ffffff;
	--color-secondary-text         : #00b3ff;
	--border-radius-primary        : 0em;
	--border-radius-secondary      : 0.25em;
	--font-family-heading          : 'Sora', sans-serif;
	--font-family-sub-heading      : 'Sora', sans-serif;
	--font-family-paragraph        : 'Avenir', sans-serif;
	--font-size-heading            : 4.2em;
	--font-size-sub-heading        : 1.8em;
	--font-size-paragraph          : 1.3em;
	--padding-primary              : 1em;
	--padding-secondary            : 0.5em;
	--row-max-width                : none;
	--button-background-color      : var(--color-secondary);
	--button-border-color          : var(--button-background-color);
	--button-text-color            : var(--color-primary-text-light);
	--button-text-color-hover      : var(--color-primary-text);
	--button-background-color-hover: var(--color-primary-light);
	--button-border-color-hover    : var(--button-background-color-hover);
}

/* * * * * * * * * * * * * */
/*  EM SIZING RULES        */
/* * * * * * * * * * * * * */
/* Don't edit these values. */
@media (min-width: 1351px) {
	body {
		font-size: .7vw;
	}
}
@media (max-width: 1350px) {
	body {
		font-size: .9vw;
	}
}
@media (max-width: 981px) {
    body {
        font-size: .9vw;
    }
}
@media (max-width: 767px) {
    body {
        font-size: 1.4vw;
    }
}
@media (max-width: 615px) {
	body {
		font-size: 2vw;
	}
}
@media (max-width: 500px) {
	body {
		font-size: 2.5vw;
	}
}
@media (max-width: 380px) {
	body {
		font-size: 3.3vw;
	}
}

/* * * * * * * * * * * * * */
/*  FONTS                  */
/* * * * * * * * * * * * * */
/* Add all the fonts you want here. */
@font-face {
	font-family: 'Roboto';
	src: url('./fonts/roboto.woff2') format('woff2'),
   url('./fonts/roboto.woff') format('woff');
   font-weight: 400;
   font-style: normal;
}
@font-face {
	font-family: 'Roboto';
	src: url('./fonts/roboto-bold.woff2') format('woff2'),
   url('./fonts/roboto-bold.woff') format('woff');
   font-weight: 700;
   font-style: bold;
}

/* * * * * * * * * * * * * */
/*  GLOBAL                 */
/* * * * * * * * * * * * * */
/* You shouldn't have to edit this. If you do, use a variable and add it in ROOT VARIABLES. */
/* HTML ELEMENTS / DIVI ELEMENTS */
h1 {
	color: var(--color-primary-text-light);
	font-family: var(--font-family-heading);
	font-size: var(--font-size-heading);
	text-transform: uppercase;
    font-weight: 600;
    line-height: 130%;
}
h2 {
	color: var(--color-primary-text);
	font-family: var(--font-family-sub-heading);
	font-size: var(--font-size-sub-heading);
	font-weight: 600;
}
h3 {
	color: var(--color-primary-text);
	font-family: var(--font-family-sub-heading);
	font-size: var(--font-size-sub-heading);
	font-weight: 600;
}
h4 {
	color: var(--color-primary-text);
	font-family: var(--font-family-sub-heading);
	font-size: var(--font-family-sub-heading);
}
span,
p,
.et_pb_text_inner {
	color: var(--color-primary-text);
	font-family: var(--font-family-paragraph);
	font-size: var(--font-size-paragraph);
	line-height: 125%;
}
a,
.woocommerce a {
	color: var(--color-secondary);
}
.et_pb_row {
    max-width: var(--row-max-width);
}
.et_pb_button,
.woocommerce button.woocommerce-button.button,
.et-db #et-boc .et-l .et_pb_button,
.single_add_to_cart_button{
	font-size: var(--font-size-paragraph);
	font-family: var(--font-family-paragraph);
	padding: var(--padding-secondary) var(--padding-primary);
	border-radius: var(--border-radius-secondary);
}
.et_pb_module .et_pb_button:hover,
.woocommerce button.woocommerce-button.button:hover,
.et-db #et-boc .et-l .et_pb_button:hover,
.single_add_to_cart_button:hover {
	font-size: var(--font-size-paragraph);
	font-family: var(--font-family-paragraph);
	padding: var(--padding-secondary) var(--padding-primary);
	border-radius: var(--border-radius-secondary);
}
.et_pb_button:after{
	font-size: var(--font-size-paragraph);	
}
/* DIVI HEADER FIX */
#top-menu {
    display: flex;
    width: 100%;
    justify-content: space-between;
    float: none;
}
#top-menu li {
	padding-right: var(--font-size-paragraph);
	font-size: var(--font-size-paragraph);
}
#mobile_menu li a {
	font-size: var(--font-size-paragraph);
}
@media (max-width: 980px) {
	#top-menu {
		display: none;
	}
}

/* * * * * * * * * */
/*     BUTTONS    */
/* * * * * * * * */

#main-content .button-blue, #main-content .button-gradient {
    border: 0;
    border-radius: 0;
    padding: 0.7em 3em;
    font-size: 1.6em;
    background-color: transparent;
    position: relative
}

#main-content .button-blue:after, #main-content .button-transparent:after, #main-content .button-gradient:after {
    content: "";
    position: absolute;
    transform: skew(-25deg);
    width: 100%;
    height: 100%;
    left: 0%;
    opacity: 1;
    top: 0;
    z-index: -1;
    border: 2px solid white;
    box-sizing: border-box;
}

#main-content .button-blue:after {
	background-color: #002c51de;
	margin-left:0;
}

#main-content .button-transparent {
	border: 0;
    border-radius: 0;
    padding: 0.7em 3em;
    font-size: 1.6em;
    font-weight: 600;
    background-color: transparent;
    position: relative;
    color: var(--color-primary);
}

#main-content .button-transparent:after {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    margin-left:0;
}

#main-content .button-gradient:after {
	background-image: linear-gradient(-57deg, #0f4c81, #1ca5e5);
	margin-left:0;
}
.et_pb_toggle_title:before {
    font-size: 1.6em;
}
/* * * * * * * * * */
/*     MENU       */
/* * * * * * * * */
header#main-header {
    background-color: transparent;
}
.et_fixed_nav.et_show_nav #page-container {
    padding-top: 0 !important;
}
div#et-main-area {
    top: 0;
    position: relative;
}
#logo {
    height: 135%;
    max-height: 135%;
}
#main-header #top-menu a, #top-menu li.current-menu-item>a {
    color: white;
    font-size: 1.1em;
    font-weight: 700;
}
#main-header #top-menu a, #top-menu li.current-menu-item>a {
    padding-bottom: 1.2em;
}
#et_search_icon:before {
    color: white;
}
.container.clearfix.et_menu_container {
    width: 95%;
    max-width: 100%;
    margin: 0 2em;
}
#main-header.et-fixed-header {
    background-color: #002c51de;
}
#top-menu>li:last-child {
    padding-right: var(--font-size-paragraph);
}
#top-menu li:after {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    display: block;
    transition: all 0.3s ease;
    bottom: 25%;   
}
#top-menu li:hover::after{
    width: 85%;
    height: 1px;
    background-color: #fff;
}
#top-menu-nav>ul>li>a:hover {
    opacity:100%;
}
.mobile_menu_bar:hover::before, #et_search_icon:hover::before {
    color: var(--color-primary);
}
.et-search-form input {
    color: white;
    border: 1px solid;
    border-radius: 0.2em;
    height: 50%;
    padding-left: 1em;
}
span.et_close_search_field:after {
    color: white;
}

/* * * * * * * * * */
/*     HOME       */
/* * * * * * * * */



/* Start of Jobscape */

p.menu-link {
    color: #000;
    line-height: 1em;
    padding-bottom: 0;
}
p.menu-link a {
    color: #000;
}
.header-wrapper {
  background: #fff;
  padding: 20px;
  position: relative;
}
.inner-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.the-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.the-logo img {
  width: 25em;
}
.the-links {
  display: flex;
  gap: 1em;
}
.menu-link a {
  text-decoration: none;
  color: #000;
}
.the-consult-button a {
  padding: 10px 20px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}
.menu-toggle {
  display: none;
  font-size: 35px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  position: absolute;
  top: 0;
  right: 0;
  color: #007120;
}
.mobile-menu {
  position: absolute;
  top: 8em;
  right: 0;
  width: 20em;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  flex-direction: column;
  align-items: flex-start;
  padding: 2em;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.mobile-menu .menu-link {
  margin-bottom: 2em;
  font-size: 2em;
}

@media (max-width: 980px) {
    div#jobscape__header-row {
        padding: 0;
    }
    .inner-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    .the-logo {
        position: static;
        transform: none;
        margin-bottom: 20px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .the-links {
        display: none;
    }
    .footer-menu-wrapper .the-links {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .menu-toggle.active + .mobile-menu {
        display: flex;
        opacity: 1;
        visibility: visible;
    }
    .the-consult-button {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }
}

.menu-link {
    margin: 0;
}
.menu-link a:hover {
    text-decoration: underline;
    color: #007120
}
.menu-link a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}
.button.white-button.header-button {
    color: #007120;
    font-weight: 600;
    text-transform: none;
    padding: .8em 2em !important;
    background-color: #fff;
}
.button.white-button.header-button:hover {
    background-color: #00402c;
    color: white;
}
#jobscape__header-row {
    width: 100%;
}
div#jobscape__header {
    padding: 0;
}
div#jobscape__footer {
    padding: 0;
    background-color: #0F1311;
}
div#jobscape__footer-row {
    width: 90%;
}
.inner-footer-wrapper {
    display: flex;
    align-items: center;
    margin: 0 auto;
    box-sizing: border-box;
    justify-content: space-between;
}
p.copyright {
    color: #fff;
    font-size: 1em;
}
#jobscape__footer-row .menu-link a {
    color: #fff;
}
.black-button {
    border: 1px solid;
}
.black-button:hover {
    color: #000;
    background-color: #fff;
}
.black-button {
    border: 1px solid;
}
.black-button:hover {
    color: #000;
    background-color: #fff;
}
.green-button:hover {
    background-color: #fff;
    color: #007210;
}
#jobscape__unveil .wrap-the-button .button.green-button:hover {
    color: #007120;
}
.unlock-grid-how-we-help .button.white-button:hover {
    background-color: #00402C;
    color: #fff;
}
.wrapp-the-unveiling-button .button.white-button:hover {
    color: #fff;
    background-color: #00402C;
}
.green-button:hover a {
    color: #007210;
}
.lime-button:hover {
    background-color: #bcf34d;
    color: #000;
}
#jobscape__journey__row-one #jobscape__journey__button {
    background-color: #007120;
    color: #fff;
    border: 1px solid;
    border-radius: 2em;
    padding: .8em 2em;
}
#jobscape__journey__row-one #jobscape__journey__button:hover {
    color: #007120;
    background-color: #fff;
}
.white-button {
    color: #000;
    background-color: #fff;
    width: max-content;
    padding: .5em 1.1em !important;
    border-radius: 1em;
    border: 1px solid;
    line-height: 1em;
    font-weight: 200;
    text-transform: uppercase;
    font-size: 1.1em;
}
.header-text {
    color: #000;
    text-transform: none;
    line-height: .6em;
    text-align: center;
}
.green-me {
    color: #007120;
}
.highlight-me {
    display: inline-block;
    background: linear-gradient(to bottom, transparent 45%, #BCF34D 25%, #BCF34D 75%, transparent 75%);
    padding: 0px 3px 9px;
    font-size: inherit;
    font-weight: inherit;
}
#jobscape__journey__row-one {
    text-align: center;
    margin-top: 0em;
}
#jobscape__journey__text-three {
    width: 60%;
    text-align: center;
    margin: 0 auto 4em;
}
#jobscape__journey__text-two {
    margin-bottom: 0;
}
#jobscape__journey__text-one .white-button {
    margin: auto;
}
#jobscape__journey {
    border-radius: 0 0 2em 2em;
}
h3 {
    font-size: 2.6em !important;
}
.right-side-wrapper {
    background-color: #0F1311;
    border-radius: 1em;
    display: flex;
    padding: 4em;
}
.empowering-text-wrapper p {
    color: #fff;
}
.green-button {
    background-color: #007120;
    border: 1px solid #007120;
}
.button {
    border-radius: 1.8em;
    padding: .7em 1.5em;
}
.lime-me {
    color: #BCF34D;
}
.white-me {
    color: #fff;
}
.empowering-text-wrapper span {
    font-weight: 800;
}
.empowering-text-wrapper {
    width: 69%;
}
.lime-button {
    color: #BCF34D;
    border: 1px solid;
}
.maximizing-text-wrap h3 {
    margin-top: .5em;
}
#jobscape__maximizing {
    font-size: 1.2em;
    border-radius: 2em 2em 0 0;
}
h4 {
    font-size: 2em;
}
.empowering-text-wrapper h4 {
    color: #fff;
    font-weight: 800;
}
.empowering-button-wrapper {
    margin-top: 3em;
}
.empowering-image-wrapper img {
    width: 68%;
}
.empowering-image-wrapper {
    width: 50%;
    text-align: right;
}
.maximizing-text-wrap h4 {
    font-size: 1.6em;
    font-weight: 600;
}
.button a {
    color: #fff;
    color#: ;
    color#: f;
}
.maximizing-button-wrapper {
    margin-top: 3em;
}
#jobscape__unveiling__row {
    width: 95%;
    margin-right: 0;
    border-radius: 2em 0 0 2em;
    background-color: #00402C;
    padding-left: 4em;
    overflow: hidden;
    padding-bottom: 6em;
}
.unveiling-left-wrapper h3 {
    color: #fff;
    margin-top: .5em;
    margin-bottom: 0;
    padding-bottom: 0;
}
.unveiling-left-wrapper span {
    font-size: inherit;
}
div#jobscape__unveiling {
    font-size: 1.2em;
    background-image: linear-gradient(to bottom, #edf2e1 76%, #fff 24%);
}
.unveiling-header-wrapper {
    display: flex;
    width: 95%;
    align-items: end;
    position: relative;
}
.unveiling-left-wrapper {
    width: 50%;
}
.unveiling-right-wrapper {
    width: 50%;
    position: relative;
}
.unveiling-right-wrapper p {
    color: #fff;
    width: 73%;
}
.swiper-slide {
    border: 1px solid #fff;
    border-radius: 1em;
    padding: 2em;
    margin: 6em 0;
}
.slide-quote {
    color: #fff;
}
.slide-name {
    color: #fff;
    padding-bottom: 0;
}
.slide-reference {
    margin-top: 2em;
}
.slide-jobscape-logo h4 {
    color: #fff;
    padding-bottom: 0;
    padding-top: .5em;
}
.slide-jobscape-logo span {
    font-size: inherit;
}
.slide-jobscape-logo {
    margin-top: 1em;
    border-top: 1px solid #fff;
}
.swiper-pagination-custom {
    position: absolute;
    bottom: -7em;
    left: 0;
    width: 75%;
    height: 1px;
    background: rgb(255 255 255 / 22%);
    z-index: 10;
}
.swiper-pagination-progress {
    height: 100%;
    background-color: #BCF34D;
    transition: width 0.3s ease;
}
.mb-slider-container {
    margin-bottom: 11em;
}
.swiper-button-next {
    background-image: none;
    bottom: -8em;
    top: auto;
    right: 5em;
}
.swiper-button-next:after, .swiper-button-prev:after {
    color: #000;
    background-color: #fff;
    border-radius: 2em;
    font-size: 2em;
    padding: .5em .75em;
    text-align: center;
}
.swiper-button-prev {
    bottom: -8em;
    top: auto;
    right: 11em;
    left: auto;
    background-image: none;
}
.wrapp-the-unveiling-button .button.white-button {
    color: #00402C;
    font-weight: 600;
    text-transform: none;
    padding: .8em 2em !important;
}
.swiper-slide.swiper-slide-active:before {
    content: '';
    background-image: url(/wp-content/uploads/2024/05/shape-1.svg);
    height: 6em;
    width: 7em;
    background-repeat: no-repeat;
    position: absolute;
    display: block;
    top: -5em;
    bottom: auto;
    left: 28em;
}
.swiper-slide.swiper-slide-active:after {
    content: "";
    display: none;
}
.unveiling-right-wrapper:before {
    content: '';
    background-image: url(/wp-content/uploads/2024/05/shape.svg);
    height: 12em;
    width: 10em;
    position: absolute;
    top: auto;
    bottom: -14em;
    background-repeat: no-repeat;
    background-size: contain;
    left: 9em;
}
.mb-slider-container:before {
    content: '';
    background-image: url(/wp-content/uploads/2024/05/Success-small.png);
    position: absolute;
    height: 5em;
    width: 15em;
    top: auto;
    bottom: 1em;
    right: auto;
    left: 7em;
    background-repeat: no-repeat;
    background-size: contain;
}
.swiper-slide:after {
    content: '';
    background-image: url(/wp-content/uploads/2024/05/Hired-small.png);
    height: 10em;
    width: 10em;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    right: 10em;
    bottom: -10em;
}
.mb-slider-container {
    position: relative;
}
div#jobscape__unlock {
    font-size: 1.2em;
    background-image: linear-gradient(to bottom, #fff 28%, #edf2e1 28%);
}
div#jobscape__transform {
    font-size: 1.2em;
    background-color: #edf2e1;
}
div#jobscape__unveil {
    font-size: 1.2em;
    background-image: linear-gradient(to bottom, #edf2e1 95%, #fff 15%);
    padding: 0;
}
div#jobscape__recruiting {
    font-size: 1.2em;
}
#jobscape__unlock .unveiling-left-wrapper h3 {
    color: #000;
}
#jobscape__unlock .unveiling-right-wrapper p {
    color: #000;
}
.unlock-grid-inner-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4em;
    background-image: linear-gradient(to bottom, #00402c, #025c41);
    padding: 4em;
    border-radius: 2em 0 0 0;
    margin-top: -2em;
}
.unlock-grid-inner-wrapper p {
    color: #fff;
}
.unlock-grid-inner-wrapper h4 {
    color: #fff;
}
.unlock-grid-how-we-help {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.unlock-grid-how-we-help p {
    margin-top: -1em;
    margin-bottom: 2em;
}
.unlock-grid-how-we-help .button.white-button {
    font-size: 1em;
    text-transform: none;
    padding: 1em 3em !important;
    border: 1px solid #fff;
    color: #00402C;
}
.unlock-grid-image-wrapper img {
    height: 20em;
}
#jobscape__unveil .maximizing-text-block {
    display: flex;
    justify-content: space-between;
}
#jobscape__unveil .maximizing-text-wrap {
    width: 40%;
}
#jobscape__unveil .the-other-half {
    width: 50%;
}
#jobscape__unveil .maximizing-text-wrap h3 {
    margin-top: -.5em;
    margin-bottom: -1em;
}
#jobscape__unveil .wrap-the-button .button.green-button {
    color: #fff;
    font-weight: 700;
}
#jobscape__unveil .maximizing-text-wrap p {
    margin-bottom: 3em;
}
#jobscape__unveil .maximizing-text-wrap h3 {
    padding-bottom: 1.5em;
}
#jobscape__unlock__row .maximizing-block-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1em;
    width: 90%;
    margin: auto;
}
#jobscape__unlock__row .maximizing-text-wrap {
    width: 45%;
}
#jobscape__unlock__row {
    width: 95%;
    margin-left: auto;
    margin-right: 0;
}
.maximizing-right-wrapper {
    width: 50%;
    position: relative;
}
.the-other-half img {
    border-radius: 1em;
    margin-top: 3em;
    margin-bottom: -3em;
}
.transforming-by-the-numbers {
    background-color: #fff;
    border-radius: 2em;
}
.divide-the-blocks {
    display: flex;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    min-height: 20em;
    position: relative;
}
.transforming-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1;
    padding: 2em 3em;
    position: relative;
}
.transforming-p {
    margin: 0;
    font-weight: 600;
}
.transforming-h3 {
    margin: 0 auto;
    align-self: flex-end;
    padding-bottom: 0;
    font-size: 4em !important;
    font-weight: 400;
}
.transforming-p .lime-me {
    font-size: 1em;
}
.little-k {
    font-size: .6em;
}
.transforming-inner:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 12.5%;
    width: 1px;
    height: 75%;
    background-color: #efefef;
}
.transforming-by-the-numbers:after {
    background-image: url(/wp-content/uploads/2024/05/shape-4.svg);
    position: absolute;
    height: 20em;
    width: 20em;
    top: 0;
    right: -7em;
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
}
#jobscape__questions {
    font-size: 1.2em;
    display: flex;
    width: 80%;
    margin: 1em auto;
}
#questions-row {
    padding-top: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    width: 100%;
}
#questions-toggle {
    background: transparent;
    border: none;
}
#questions-toggle-row {
    border: 1px solid #000;
    border-radius: 1em;
    width: 50%;
}
#questions-toggle:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 7.5%;
    width: 85%;
    height: 1px;
    background-color: lightgrey;
}
.et_pb_toggle_close .et_pb_toggle_title, .et_pb_toggle_close h5.et_pb_toggle_title {
    color: #000;
    font-size: 1.2em;
    font-weight: 600;
}
.questions-wrap-cause-divi {
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    height: 100%;
}
#questions-code-block .et_pb_code_inner {
    height: 100%;
}
.maximizing-text-wrap {
    align-self: flex-start; 
}
.send-me-low {
    align-self: flex-end;
    margin-left: 0;
    margin-right: auto;
}
#questions-code-row {
    height: 100%;
    margin-right: 2em;
}
#questions-code-block {
    height: 100%;
}
.send-me-low h4 {
    padding-bottom: 1em;
}
#jobscape__recruiting {
    background-color: #00402C;
}
#jobscape__recruiting .maximizing-text-wrap h3 {
    color: #fff;
}
.icons-list {
    display: flex;
    margin-top: 2em;
}
.social-icon img {
    width: 3em;
    height: 3em;
    margin-right: .5em;
}
#jobscape__recruiting .send-me-low {
    margin-top: 8em;
}
#jobscape__recruiting {
    padding-bottom: 0;
}
#jobscape__contact {
    padding: 0 0 10em 0;
    margin: 0;
    background-image: linear-gradient(to bottom, #00402C 87%, #0F1311 13%);
}
.contact-wrapper {
    display: flex;
    justify-content: space-between;
}
#jobscape__contact-row {
    padding: 0;
    margin: 0;
    width: 100%;
}
.contact-column-one {
    margin-top: -7em;
    margin-left: 2em;
}
.contact-image-wrapper {
    margin-top: 3em;
}
.contact-column-two {
    width: 48%;
    margin: 5em 3em;
}
.contact-column-three {
    margin-top: auto;
    margin-bottom: -7em;
}
.contact-column-two:before {
    content: '';
    background-image: url(/wp-content/uploads/2024/05/shape-4.svg);
    position: absolute;
    height: 25em;
    width: 25em;
    background-size: contain;
    background-repeat: no-repeat;
    top: -5em;
    right: 20em;
}
#jobscape__blog {
    background-color: #EDF2E1;
}
footer.et-l.et-l--footer {
    padding-top: 7em;
    margin-top: -8em;
}
.footer-button-wrapper {
    text-align: center;
}
.et_pb_post.post.type-post {
    display: flex;
    flex-wrap: wrap;
    padding-top: 2em;
    justify-content: space-between;
}
a.entry-featured-image-url {
    order: 4;
    width: 25%;
    margin-top: -6em;
}
p.post-meta {
    order: 1;
    width: auto;
    display: flex;
    flex-direction: column;
    padding-right: 93%;
}
h3.entry-title {
    order: 2;
    width: 68%;
}
.post-content {
    order: 3;
    width: 68%;
}
a.entry-featured-image-url img {
    border-radius: .5em;
}
.et_pb_blog_0 .et_pb_post p.post-meta a {
    font-size: 1.5em;
    display: inline-block;
    background: linear-gradient(to bottom, transparent 30%, #BCF34D 30%, #BCF34D 75%, transparent 75%);
    padding: 0px 1px 10px;
    line-height: 1em;
}
.jobscape__journey__row-two-background {
    background-image: url(/wp-content/uploads/2024/03/Header-Image.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 33em;
}
#jobscape__journey__row-two {
    width: 100%;
    max-width: 1200px;
}
#jobscape__empowering__row #jobscape__empowering__button {
    border-radius: 1.5em;
}
.maximizing-button-wrapper-mobile {
    display: none;
}
@media (max-width: 980px) {
    #jobscape__journey__row-one {
        margin-top: 0;
    }
    #jobscape__journey__text-three {
        width: 80%;
    }
    #jobscape__empowering__row {
        display: flex;
        justify-content: space-between;
    }
    #jobscape__empowering__row .et_pb_column {
        width: 48%;
    }
    #jobscape__empowering__row.et_pb_row:after {
        display: none;
    }
    #jobscape__maximizing .maximizing-text-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto auto auto;
        gap: 1rem;
    }
    #jobscape__empowering__text-one {
        margin-bottom: 1.5em;
    }
    #jobscape__empowering__text-two {
        margin-bottom: 1em;
    }
    .empowering-image-wrapper {
        display: none;
    }
    .empowering-text-wrapper {
        width: 100%;
    }
    .maximizing-text-wrap h3 {
        padding-bottom: 0;
    }
    .maximizing-text-wrap .white-button {
        grid-column: 1 / 2;
    }
    .maximizing-text-wrap h3 {
        grid-column: 1 / 2;
    }
    .maximizing-text-wrap p:nth-of-type(2) {
        grid-column: 1 / 2;
    }
    .maximizing-text-wrap h4 {
        grid-column: 2 / 2;
        grid-row: 3;
    }
    .maximizing-text-wrap p:nth-of-type(3) {
        grid-column: 2 / 3;
        grid-row: 3;
        align-self: center;
    }
    #jobscape__unlock__row .maximizing-block-wrap {
        flex-direction: column;
        align-items: start;
        margin-bottom: 6em;
    }
    div#jobscape__unlock {
        padding: 0;
    }
    .unlock-grid-inner-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 1em;
        grid-template-rows: auto auto auto auto auto;
    }
    .unlock-grid-consult {
        grid-column: 1 / 2;
    }
    .unlock-grid-how-we-help {
        grid-column: 1 / 2;
    }
    .unlock-grid-image-wrapper {
        grid-column: 2 / 2;
        margin-right: 0;
        margin-left: auto;
    }
    .unlock-grid-inner-wrapper h4 br {
        display: none;
    }
    .unlock-grid-image-wrapper img {
        height: 27em;
    }
    div#jobscape__transform {
        padding: 0;
    }
    .divide-the-blocks {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .transforming-h3 {
        align-self: flex-start;
        margin: 2em 0 0;
    }
    .transforming-inner {
        border: 1px solid #efefef;
    }
    .transforming-inner:not(:last-child)::after {
        display: none;
    }
    #questions-code-row {
        height: auto;
        width: 50%;
        margin-bottom: 4em;
    }
    .send-me-low {
        margin-top: 2em;
    }
    #questions-toggle-row {
        width: 100%;
    }
    .divide-the-blocks {
        margin-top: 1em;
    }
    .maximizing-button-wrapper {
        display: none;
        margin-top: 0;
        padding: 0;
    }
    .maximizing-button-wrapper-mobile {
        display: block;
    }
    #jobscape__maximizing__row .et_pb_column.et_pb_column_1_2.et_pb_column_4 {
        margin-bottom: 0;
    }
    .maximizing-text-wrap p {
        padding-bottom: 0;
    }
    #jobscape__maximizing__row {
        padding-bottom: 0;
    }
    #jobscape__unveiling {
        padding-top: 1em;
    }
    .divide-the-blocks {
        margin-top: 1em;
    }
    .swiper-slide.swiper-slide-active:before {
        left: 26em;
    }
}

@media (max-width: 767px) {
    h1.header-text {
        font-size: 2.8em;
    }
    #jobscape__unlock__row .maximizing-text-wrap {
        width: 100%;
    }
    .jobscape__journey__row-two-background {
        height: 26em;
        background-position: -10em 0;
    }
    #jobscape__empowering__row {
        flex-direction: column;
    }
    #jobscape__empowering__row .et_pb_column {
        width: 100%;
    }
    .unlock-grid-inner-wrapper {
        display: flex;
        flex-direction: column;
    }
    .unlock-grid-how-we-help {
        display: block;
    }
    .unlock-grid-how-we-help p {
        margin-top: 0;
    }
    .unlock-grid-image-wrapper {
        margin: 2em 0;
    }
    .divide-the-blocks {
        display: flex;
        flex-direction: column;
    }
    .transforming-by-the-numbers:after {
        display: none;
    }
    .maximizing-text-block {
        flex-direction: column;
    }
    #jobscape__unveil .maximizing-text-wrap {
        width: 100%;
    }
    #jobscape__unveil .the-other-half {
        width: 100%;
    }
    #questions-code-row {
        width: 100%;
    }
    .contact-column-one {
        display: none;
    }
    .contact-column-three {
        display: none;
    }
    .contact-column-two {
        width: 100%;
    }
    .contact-column-two:before {
        right: 0;
    }
    .unveiling-right-wrapper:before {
        display: none;
    }
    #jobscape__maximizing .maximizing-text-wrap {
        display: block;
    }
    .maximizing-right-wrapper {
        width: 100%;
    }
    .et_pb_post.post.type-post {
        display: block;
    }
    a.entry-featured-image-url {
        width: 100%;
        margin-top: 0;
    }
    h3.entry-title {
        width: 100%;
    }
    p.post-meta {
        display: block;
        width: 100%;
        padding-right: 0;
    }
    .post-content {
        width: 100%;
    }
    .inner-footer-wrapper {
        flex-direction: column;
    }
    footer.et-l.et-l--footer {
        padding-top: 0;
        margin-top: -8em;
    }
    .footer-logo-wrapper {
        margin-bottom: 2em;
    }
    .footer-icons-wrapper {
        margin-bottom: 1em;
    }
}
@media (max-width: 600px) {
    h1.header-text {
        line-height: .9em;
    }
    .unveiling-header-wrapper {
        display: block;
    }
    .unveiling-left-wrapper {
        width: 100%;
    }
    .unveiling-right-wrapper {
        width: 100%;
    }
    div#jobscape__journey__text-three {
        width: 100%;
    }
    div#jobscape__unveiling__row {
        padding-left: 1.5em;
    }
    .unveiling-right-wrapper p {
        width: 100%;
        margin-top: 1em;
    }
    .mb-slider-container {
        margin-bottom: 5em;
    }
    .swiper-slide {
        margin: 3em 0;
    }
    .mb-slider-container:before {
        display: none;
    }
    .swiper-slide.swiper-slide-active:before {
        display: none;
    }
    .swiper-pagination-custom {
        bottom: 0em;
        width: 50%;
        left: 23%;
    }
    .swiper-button-prev {
        bottom: -2em;
        right: auto;
        left: 3em;
    }
    .swiper-button-next {
        bottom: -2em;
        right: 5em;
    }
    div#jobscape__unveiling__row {
        padding-bottom: 3em;
    }
}
@media (max-width: 500px) {
    div#jobscape__journey__text-three {
        width: 100%;
    }
    .header-wrapper {
        padding: 2em 0;
    }
}