/*
Theme Name: Pink Elephant
Description: Customized theme
Author: Eyeworx
Author URI: 
Text Domain: pinkelephant
Company: pinkelephant
Requires at least: 5.3
Tested up to: 5.6
Requires PHP: 7.3
Version: 1.0
Tags: one-column, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, block-patterns, rtl-language-support, sticky-post, threaded-comments,
*/
/* ==============================================
	 Mixins
	 ============================================*/
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Poppins:wght@100;400;600;700&display=swap");
/* ==============================================
	 Web fonts
	 ============================================*/
/* ----------------- VARIABLES CONFIG ------------------- */
:root {
  /* Layout: */
  --container: 1300px;
  --smallcontainer:800px;
  /* Colors: */
  --white: #fff;
  --black: #000;
  --border: #D6D7D7;
  --bcolor: #F8F9FA;
  --pink:#E00A8C;
  /* Font/text values */
  --font-body: "Poppins", sans-serif;
  --font-heading: "Outfit", sans-serif;
}

/* ----------------- FLEX ------------------- */
.close-btn, .site-menu__wrap, .site-header .header__nav-list ul, .site-header .header__nav_sidebar ul, .site-header .header__nav-list, .site-header .header__nav_sidebar, .site-header .header__nav, .site-header-main, .flex-col-50, .flex-col-45, .flex-col-55, .flex-col-30, .flex-col-33, .flex-col-70, .flex-col-75, .flex-col-25 {
  display: -moz-flex;
  display: flex;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: var(--black);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeSpeed;
  overflow-x: hidden;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

::-moz-selection {
  background: #D8D8D8;
  text-shadow: none;
}

::selection {
  background: #D8D8D8;
  text-shadow: none;
}

nav {
  outline: none;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: none;
}

a:focus {
  outline: none;
}

.clear,
.clearboth {
  clear: both;
}

.browsehappy {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

iframe {
  max-width: 100%;
}

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

/* ------------------ FONTS ---------------------*/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--font-body);
  font-weight: 400;
  text-rendering: optimizeLegibility;
  margin: 0 0 0.5em;
  line-height: 1;
  color: var(--black);
}

h1,
.h1 {
  font-size: 30px;
}
@media (max-width: 960px) {
  h1,
  .h1 {
    font-size: 35px;
  }
}

h2,
.h2 {
  font-size: 22px;
}
@media (max-width: 960px) {
  h2,
  .h2 {
    font-size: 20px;
  }
}

h3,
.h3 {
  font-size: 22px;
  font-family: 'outfit';
}

h4,
.h4 {
  font-size: 20px;
}

h5,
.h5 {
  font-size: 18px;
}

h6,
.h6 {
  font-size: 1rem;
}

p {
  margin: 0 0 20px;
}
p:last-child {
  margin: 0;
}

a {
  color: var(--pink);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-out 0s;
}

ul.wp-block-list {
    letter-spacing: normal;
    line-height: normal;
    margin-inline-end: 0;
    margin-inline-start: .1em;
    padding-inline-end: 0;
    padding-inline-start: 1em;
    padding-bottom: 20px;
}
h3.wp-block-heading {
    margin: 20px 0px 5px 0px;
}

a.wp-block-button__link.has-vivid-cyan-blue-to-vivid-purple-gradient-background.has-background.wp-element-button {
    background: #e00a8c !important;
}

:-moz-placeholder {
  /* Firefox 18- */
}

::-moz-placeholder {
  /* Firefox 19+ */
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.wp-caption-text {
  text-align: center;
}

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

#main {
  min-height: 100%;
}

.container,
.clearfix,
.field-set,
section.module,
#container {
  zoom: 1;
  clear: both;
}
.container:before, .container:after,
.clearfix:before,
.clearfix:after,
.field-set:before,
.field-set:after,
section.module:before,
section.module:after,
#container:before,
#container:after {
  content: "";
  display: table;
}
.container:after,
.clearfix:after,
.field-set:after,
section.module:after,
#container:after {
  clear: both;
}

.container,
#container {
  margin: 0 auto;
  max-width: var(--container);
  width: 100%;
}
.container-small,
#container-small {
  zoom: 1;
  clear: both;
  max-width: var(--smallcontainer);
  margin: auto;
}
.container-medium {
  zoom: 1;
  clear: both;
  max-width: 1024px;
  margin: auto;
}
.container-small:before, .container-small:after,
.container-medium:before, .container-medium:after,
#container-small:before,
#container-small:after {
  content: "";
  display: table;
}
.container-small:after,
.container-medium:after,
#container-small:after {
  clear: both;
}
.container-large,
#container-large {
  zoom: 1;
  clear: both;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}
.container-large:before, .container-large:after,
#container-large:before,
#container-large:after {
  content: "";
  display: table;
}
.container-large:after,
#container-large:after {
  clear: both;
}

#container {
  padding: 60px 0px;
}

#sidebar {
  display: none;
}

body.post-type-archive-product .container .row,
body.tax-product_cat .container .row {
  margin-left: -2rem;
  margin-right: -2rem;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 30px;
  text-overflow: "";
  cursor: pointer;
}

.select-box {
  display: block;
  background-image: url(./assets/img/arrow.png);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  position: relative;
}



input[type=file] {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: relative;
  z-index: 3;
}

.file {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  margin-bottom: 20px;
  z-index: 3;
  appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
  cursor: pointer;
}

.file-label {
  position: absolute;
  font-weight: 400 !important;
  top: 14px;
  left: 14px;
}
.file .wpcf7-not-valid-tip {
  margin-top: 10px;
}

form.wpcf7-form p {
  margin-bottom: 0;
}

input[type=text],
input[type=url],
input[type=password],
input[type=tel],
input[type=number],
input[type=email],
textarea,
select, .file {
  outline: 0px;
  height: 60px;
  width: 100% !important;
  display: block;
  border: 0;
  background-color: transparent;
  border: 1px solid #152344;
  padding: 10px 20px;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 24px;
  color: black;
}

input[type=text],
input[type=url],
input[type=password],
input[type=tel],
input[type=number],
input[type=email],
textarea {
  border-radius: 0px;
}

textarea {
  height: 186px;
  padding: 23px 25px;
  border: 1px solid var(--grey);
  border-radius: 4px;
}

input[type=submit],
input[type=reset],
button,
.button {
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease-out 0s;
  padding: 10px 38px;
  color: var(--white);
  text-decoration: none;
  display: inline-block;
  font-family: var(--font-body);
  font-weight: bold;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.24px;
  text-align: center;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
}

.round-img {
  border-radius: 100% 100% 100% 100%;
  overflow: hidden;
}
.round-img img {
  display: block;
}

.wpcf7-spinner {
  width: 0;
  height: 0;
  opacity: 0;
  margin: 0;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.flex-row {
  width: 100%;
  display: -moz-flex;
  display: flex;
}
.flex-center {
  -moz-align-items: center;
  align-items: center;
}
.flex-end {
  -moz-justify-content: flex-end;
  justify-content: flex-end;
}
.flex-jus-between {
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.flex-col-50, .flex-col-45, .flex-col-55, .flex-col-30, .flex-col-33, .flex-col-70, .flex-col-75, .flex-col-25 {
  flex-wrap: wrap;
  -moz-flex-direction: column;
  flex-direction: column;
}
.flex-col-50 {
  width: 50%;
}
.flex-col-45 {
  width: 45%;
}
.flex-col-55 {
  width: 55%;
}
.flex-col-25 {
  width: 25%;
}
.flex-col-30 {
  width: 30%;
}
.flex-col-70 {
  width: 70%;
}
.flex-col-33 {
  width: 33.33%;
}

/* columns */

.section {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.section.no-pad {
  padding: 0;
}

.section.no-pad-bot {
  padding-bottom: 0;
}

.section.no-pad-top {
  padding-top: 0;
}

.row {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.row .col {
  float: left;
  box-sizing: border-box;
  padding: 0 2rem;
  min-height: 1px;
}

.row .col[class*=pull-],
.row .col[class*=push-] {
  position: relative;
}

/* Home pink overlay banner block */
.wp-block-group.hero-section.is-layout-flex:has(.pink-overlay-block) {
  gap: 0;
}

.wp-block-cover.pink-overlay-block .wp-block-cover__background.has-background-dim{
  opacity: 0;
  transition: all 0.2s ease;
}

.wp-block-cover.pink-overlay-block:hover .wp-block-cover__background.has-background-dim{
  opacity: 0.9;
}

.pink-overlay-block .wp-block-cover__inner-container{
  opacity: 0;
  transition: all 0.2s ease;
}

.pink-overlay-block:hover .wp-block-cover__inner-container{
  opacity: 1;
}

.pink-overlay-block:before{
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  z-index: 1;
  color: #fff;
  opacity: 0.7;
  font-size: 350px; 
  font-weight: bolder;
  line-height: 0.9;
  text-transform: uppercase; 
}

.pink-overlay-block:hover:before{
  opacity: 0;
}

.pink-overlay-block.pink-overlay-content-p::before{
  content: "p";
}
.pink-overlay-block.pink-overlay-content-i::before{
  content: "i";
  bottom: 12px;
}
.pink-overlay-block.pink-overlay-content-n::before{
  content: "n";
  bottom: 16px;
}
.pink-overlay-block.pink-overlay-content-k::before{
  content: "k";
  bottom: 12px;
}

.pink-overlay-block .wp-block-button.is-style-outline .wp-block-button__link{
  background: transparent;
}

.pink-overlay-block .wp-block-button.is-style-outline .wp-block-button__link:hover{
  background: white;
  color: var(--pink);
}


.font-weight-300{
  font-weight: 300 !important;
}


.font-weight-400{
  font-weight: 400 !important;
}

.font-weight-500{
  font-weight: 500 !important;
}

.font-weight-600{
  font-weight: 600 !important;
}

.font-weight-700{
  font-weight: 700 !important;
}

.font-weight-800{
  font-weight: 800 !important;
}

.font-weight-900{
  font-weight: 900 !important;
}

.page-section-main .case-blocks-section .wp-block-group {
  margin-top: 0;
  margin-bottom: 0;
}

.page-section-main .case-blocks-section.case-rows ul li {
  padding: 0px;
}

.page-section-main .case-blocks-section.case-rows ul li .wp-block-post-featured-image{
  margin-bottom: 50px;
}

.page-section-main .case-blocks-section.case-rows ul li h3.wp-block-post-title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-section-main .case-blocks-section.case-rows ul li p.wp-block-post-excerpt__excerpt .pink-case-studies-excerpt {
    margin-bottom: 70px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pink-case-studies-grid {
  display: grid;
  gap: 32px;
}

.pink-case-studies-columns-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pink-case-studies-columns-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pink-case-studies-column {
  display: flex;
}

.pink-case-studies-item {
  border: 1px solid #EEEFF1;
  padding: 50px 30px;
}

.pink-case-studies-image {
  width: 90px;
  height: 90px;
  margin-block-end: 50px;
}

h3.pink-case-studies-title {
  margin: 0 0 10px;
  padding: 0 !important;
}

h3.pink-case-studies-title a {
  color: black;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pink-case-studies-excerpt {
    margin-bottom: 70px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pink-case-studies-link {
  border: 2px solid black;
  border-radius: 50px;
  padding: 8px 12px;
  color: black;
}

.pink-case-studies-link:hover{
  background: #000;
  color: #fff;
}

/* Blog Overview */

.pink-posts-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 40px;
}

.pink-posts-columns-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pink-posts-columns-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pink-posts-column {
  display: flex;
}

.pink-posts-item {
  border-top: 1px solid #000;
  padding-top: 20px;
  padding-bottom: 40px;
  position: relative;
}

.pink-posts-item-img{
  margin-bottom: 10px;
}

.pink-posts-item-img a {
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
  display: block;
}

.pink-posts-item-img img{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.pink-posts-item-meta{
  font-size: 13px;
}

.pink-posts-item-meta-item{
  margin-right: 5px;
}

.pink-posts-item-title{
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.pink-posts-item-title-link{
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pink-posts-item-content{
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 15px;
}

.pink-posts-item-action {
  position: absolute;
  bottom: 0;
}

/* Global Search */
.global-search-wrap{
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(224 10 140 / 90%);
  z-index: 9999;
}

body:has(#wpadminbar) .global-search-wrap{
  top: 32px;
}

.show-global-search{
  overflow: hidden;
}

.show-global-search .global-search-wrap{
  display: block;
}

#close-global-search{
  position: absolute;
  right: 10px;
  top: 10px;
  border-radius: 100%;
  border: 1px solid #fff;
  color: #fff;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 24px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.global-search-container {
  max-width: 840px;
  margin: auto;
  padding: 20px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.global-search-content {
  margin-bottom: 40px;
}

.global-search-title {
  font-size: 38px;
  line-height: 48px;
  margin-bottom: 10px;
  color: #fff;
}

.global-search-description {
  color: #FFF;
}

.global-search-form {
  position: relative;
  max-width: 520px;
}

input.global-search-input {
  border: none;
  border-bottom: 1px solid #fff;
  padding: 6px 40px 6px 0px;
  height: 52px;
  color: #fff;
  outline: none;
  box-shadow: none;
}

input.global-search-input::placeholder {
  color: #fff;
}

button.global-search-button {
  position: absolute;
  right: 0;
  top: 11px;
  background: transparent;
  width: 30px;
  height: 30px;
  padding: 0;
  display: block;
}

/* Cart modal and buttons */
.pink-button{
  padding: 6px 18px;
  border-width: 2px;
  border-style: solid;
  border-radius: 50px;
  font-size: 18px;
  line-height: 24px;
}

.pink-button.pink-button-sm{
  font-size: 14px;
  font-weight: 400;
  padding: 3px 12px;
  min-width: 128px;
}

.pink-button.pink-button-fill{
  background: var(--pink);
  color: white;
  border-color: var(--pink);
}

.pink-button.pink-button-fill:hover{
  background: black;
  color: white;
  border-color: black;
}

.pink-button.pink-button-outline{
  background: white;
  color: var(--pink);
  border-color: var(--pink);
}

.pink-button.pink-button-outline:hover{
  background: var(--pink);
  color: white;
  border-color: var(--pink);
}

.pink-button.pink-button-fill-black{
  background: black;
  color: white;
  border-color: black;
}

.pink-button.pink-button-fill-black:hover{
  background: black;
  color: white;
  border-color: black;
}

.pink-button.pink-button-outline-black{
  background: white;
  color: black;
  border-color: black;
}

.pink-button.pink-button-outline-black:hover{
  background: black;
  color: white;
  border-color: black;
}

/* Checkout template */
.checkout-section{
  padding-top: 24px;
  border-top: 1px solid black;
}

.checkout-section > .container{
  max-width: 800px;
}

.checkout-section h1.checkout-page-title{
  font-weight: 900;
  text-transform: uppercase;
  color: #004FA3;
  margin-bottom: 40px;
}
/* End */

.home-services-list.wp-block-columns{
  align-items: stretch !important;
}

.home-services-list.wp-block-columns .wp-block-column{
  position: relative;
  padding-bottom: 62px;
}

.home-services-list.wp-block-columns .wp-block-column .wp-block-buttons{
  position: absolute;
  bottom: 0px;
  left: 0;
}

.search-results-count{
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 30px;
  font-size: 18px;
}

.search-form-content {
  max-width: 680px;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

input.search-form-input {
  height: 42px;
  border-radius: 50px;
  padding: 6px 18px;
  border: 1px solid #CCCCCC;
  background: white;
  font-size: 14px;
  line-height: normal;
}

.search-form-content button.pink-button{
  height: 42px;
  flex-shrink: 0;
  margin-left: 32px;
  font-size: 14px;
  font-weight: normal;
  line-height: normal;
}

.search-item{
  padding-top: 36px;
  border-top: 1px solid #CCCCCC;
  margin-bottom: 48px;
}

.search-item:first-child{
  padding-top: 0px;
  border-top: none;
}

.page-section.page-default-section h3.search-item-title {
  padding-top: 0;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}


.page-section.page-default-section h3.search-item-title a{
  color: #000;
}

.search-item-desc {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 20px;
}

.no-search-results{
  padding: 30px 0px;
}

@media only screen and (max-width: 600px) {
  .row .col {
    padding: 0 1.5rem;
  }
}
.row .col.s1 {
  width: 8.33333%;
}

.row .col.s1,
.row .col.s2 {
  margin-left: auto;
  left: auto;
  right: auto;
}

.row .col.s2 {
  width: 16.66667%;
}

.row .col.s3 {
  width: 25%;
}

.row .col.s3,
.row .col.s4 {
  margin-left: auto;
  left: auto;
  right: auto;
}

.row .col.s4 {
  width: 33.33333%;
}

.row .col.s5 {
  width: 41.66667%;
}

.row .col.s5,
.row .col.s6 {
  margin-left: auto;
  left: auto;
  right: auto;
}

.row .col.s6 {
  width: 50%;
}

.row .col.s7 {
  width: 58.33333%;
}

.row .col.s7,
.row .col.s8 {
  margin-left: auto;
  left: auto;
  right: auto;
}

.row .col.s8 {
  width: 66.66667%;
}

.row .col.s9 {
  width: 75%;
}

.row .col.s9,
.row .col.s10 {
  margin-left: auto;
  left: auto;
  right: auto;
}

.row .col.s10 {
  width: 83.33333%;
}

.row .col.s11 {
  width: 91.66667%;
}

.row .col.s11,
.row .col.s12 {
  margin-left: auto;
  left: auto;
  right: auto;
}

.row .col.s12 {
  width: 100%;
}

.row .col.offset-s1 {
  margin-left: 8.33333%;
}

.row .col.pull-s1 {
  right: 8.33333%;
}

.row .col.push-s1 {
  left: 8.33333%;
}

.row .col.offset-s2 {
  margin-left: 16.66667%;
}

.row .col.pull-s2 {
  right: 16.66667%;
}

.row .col.push-s2 {
  left: 16.66667%;
}

.row .col.offset-s3 {
  margin-left: 25%;
}

.row .col.pull-s3 {
  right: 25%;
}

.row .col.push-s3 {
  left: 25%;
}

.row .col.offset-s4 {
  margin-left: 33.33333%;
}

.row .col.pull-s4 {
  right: 33.33333%;
}

.row .col.push-s4 {
  left: 33.33333%;
}

.row .col.offset-s5 {
  margin-left: 41.66667%;
}

.row .col.pull-s5 {
  right: 41.66667%;
}

.row .col.push-s5 {
  left: 41.66667%;
}

.row .col.offset-s6 {
  margin-left: 50%;
}

.row .col.pull-s6 {
  right: 50%;
}

.row .col.push-s6 {
  left: 50%;
}

.row .col.offset-s7 {
  margin-left: 58.33333%;
}

.row .col.pull-s7 {
  right: 58.33333%;
}

.row .col.push-s7 {
  left: 58.33333%;
}

.row .col.offset-s8 {
  margin-left: 66.66667%;
}

.row .col.pull-s8 {
  right: 66.66667%;
}

.row .col.push-s8 {
  left: 66.66667%;
}

.row .col.offset-s9 {
  margin-left: 75%;
}

.row .col.pull-s9 {
  right: 75%;
}

.row .col.push-s9 {
  left: 75%;
}

.row .col.offset-s10 {
  margin-left: 83.33333%;
}

.row .col.pull-s10 {
  right: 83.33333%;
}

.row .col.push-s10 {
  left: 83.33333%;
}

.row .col.offset-s11 {
  margin-left: 91.66667%;
}

.row .col.pull-s11 {
  right: 91.66667%;
}

.row .col.push-s11 {
  left: 91.66667%;
}

.row .col.offset-s12 {
  margin-left: 100%;
}

.row .col.pull-s12 {
  right: 100%;
}

.row .col.push-s12 {
  left: 100%;
}

@media only screen and (min-width: 601px) {
  .row .col.m1 {
    width: 8.33333%;
  }
  .row .col.m1,
  .row .col.m2 {
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m2 {
    width: 16.66667%;
  }
  .row .col.m3 {
    width: 25%;
  }
  .row .col.m3,
  .row .col.m4 {
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m4 {
    width: 33.33333%;
  }
  .row .col.m5 {
    width: 41.66667%;
  }
  .row .col.m5,
  .row .col.m6 {
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m6 {
    width: 50%;
  }
  .row .col.m7 {
    width: 58.33333%;
  }
  .row .col.m7,
  .row .col.m8 {
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m8 {
    width: 66.66667%;
  }
  .row .col.m9 {
    width: 75%;
  }
  .row .col.m9,
  .row .col.m10 {
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m10 {
    width: 83.33333%;
  }
  .row .col.m11 {
    width: 91.66667%;
  }
  .row .col.m11,
  .row .col.m12 {
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m12 {
    width: 100%;
  }
  .row .col.offset-m1 {
    margin-left: 8.33333%;
  }
  .row .col.pull-m1 {
    right: 8.33333%;
  }
  .row .col.push-m1 {
    left: 8.33333%;
  }
  .row .col.offset-m2 {
    margin-left: 16.66667%;
  }
  .row .col.pull-m2 {
    right: 16.66667%;
  }
  .row .col.push-m2 {
    left: 16.66667%;
  }
  .row .col.offset-m3 {
    margin-left: 25%;
  }
  .row .col.pull-m3 {
    right: 25%;
  }
  .row .col.push-m3 {
    left: 25%;
  }
  .row .col.offset-m4 {
    margin-left: 33.33333%;
  }
  .row .col.pull-m4 {
    right: 33.33333%;
  }
  .row .col.push-m4 {
    left: 33.33333%;
  }
  .row .col.offset-m5 {
    margin-left: 41.66667%;
  }
  .row .col.pull-m5 {
    right: 41.66667%;
  }
  .row .col.push-m5 {
    left: 41.66667%;
  }
  .row .col.offset-m6 {
    margin-left: 50%;
  }
  .row .col.pull-m6 {
    right: 50%;
  }
  .row .col.push-m6 {
    left: 50%;
  }
  .row .col.offset-m7 {
    margin-left: 58.33333%;
  }
  .row .col.pull-m7 {
    right: 58.33333%;
  }
  .row .col.push-m7 {
    left: 58.33333%;
  }
  .row .col.offset-m8 {
    margin-left: 66.66667%;
  }
  .row .col.pull-m8 {
    right: 66.66667%;
  }
  .row .col.push-m8 {
    left: 66.66667%;
  }
  .row .col.offset-m9 {
    margin-left: 75%;
  }
  .row .col.pull-m9 {
    right: 75%;
  }
  .row .col.push-m9 {
    left: 75%;
  }
  .row .col.offset-m10 {
    margin-left: 83.33333%;
  }
  .row .col.pull-m10 {
    right: 83.33333%;
  }
  .row .col.push-m10 {
    left: 83.33333%;
  }
  .row .col.offset-m11 {
    margin-left: 91.66667%;
  }
  .row .col.pull-m11 {
    right: 91.66667%;
  }
  .row .col.push-m11 {
    left: 91.66667%;
  }
  .row .col.offset-m12 {
    margin-left: 100%;
  }
  .row .col.pull-m12 {
    right: 100%;
  }
  .row .col.push-m12 {
    left: 100%;
  }
}
@media only screen and (min-width: 993px) {
  .row .col.l1 {
    width: 8.33333%;
  }
  .row .col.l1,
  .row .col.l2 {
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l2 {
    width: 16.66667%;
  }
  .row .col.l3 {
    width: 25%;
  }
  .row .col.l3,
  .row .col.l4 {
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l4 {
    width: 33.33333%;
  }
  .row .col.l5 {
    width: 41.66667%;
  }
  .row .col.l5,
  .row .col.l6 {
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l6 {
    width: 50%;
  }
  .row .col.l7 {
    width: 58.33333%;
  }
  .row .col.l7,
  .row .col.l8 {
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l8 {
    width: 66.66667%;
  }
  .row .col.l9 {
    width: 75%;
  }
  .row .col.l9,
  .row .col.l10 {
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l10 {
    width: 83.33333%;
  }
  .row .col.l11 {
    width: 91.66667%;
  }
  .row .col.l11,
  .row .col.l12 {
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l12 {
    width: 100%;
  }
  .row .col.offset-l1 {
    margin-left: 8.33333%;
  }
  .row .col.pull-l1 {
    right: 8.33333%;
  }
  .row .col.push-l1 {
    left: 8.33333%;
  }
  .row .col.offset-l2 {
    margin-left: 16.66667%;
  }
  .row .col.pull-l2 {
    right: 16.66667%;
  }
  .row .col.push-l2 {
    left: 16.66667%;
  }
  .row .col.offset-l3 {
    margin-left: 25%;
  }
  .row .col.pull-l3 {
    right: 25%;
  }
  .row .col.push-l3 {
    left: 25%;
  }
  .row .col.offset-l4 {
    margin-left: 33.33333%;
  }
  .row .col.pull-l4 {
    right: 33.33333%;
  }
  .row .col.push-l4 {
    left: 33.33333%;
  }
  .row .col.offset-l5 {
    margin-left: 41.66667%;
  }
  .row .col.pull-l5 {
    right: 41.66667%;
  }
  .row .col.push-l5 {
    left: 41.66667%;
  }
  .row .col.offset-l6 {
    margin-left: 50%;
  }
  .row .col.pull-l6 {
    right: 50%;
  }
  .row .col.push-l6 {
    left: 50%;
  }
  .row .col.offset-l7 {
    margin-left: 58.33333%;
  }
  .row .col.pull-l7 {
    right: 58.33333%;
  }
  .row .col.push-l7 {
    left: 58.33333%;
  }
  .row .col.offset-l8 {
    margin-left: 66.66667%;
  }
  .row .col.pull-l8 {
    right: 66.66667%;
  }
  .row .col.push-l8 {
    left: 66.66667%;
  }
  .row .col.offset-l9 {
    margin-left: 75%;
  }
  .row .col.pull-l9 {
    right: 75%;
  }
  .row .col.push-l9 {
    left: 75%;
  }
  .row .col.offset-l10 {
    margin-left: 83.33333%;
  }
  .row .col.pull-l10 {
    right: 83.33333%;
  }
  .row .col.push-l10 {
    left: 83.33333%;
  }
  .row .col.offset-l11 {
    margin-left: 91.66667%;
  }
  .row .col.pull-l11 {
    right: 91.66667%;
  }
  .row .col.push-l11 {
    left: 91.66667%;
  }
  .row .col.offset-l12 {
    margin-left: 100%;
  }
  .row .col.pull-l12 {
    right: 100%;
  }
  .row .col.push-l12 {
    left: 100%;
  }
}
@media only screen and (min-width: 1201px) {
  .row .col.xl1 {
    width: 8.33333%;
  }
  .row .col.xl1,
  .row .col.xl2 {
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.xl2 {
    width: 16.66667%;
  }
  .row .col.xl3 {
    width: 25%;
  }
  .row .col.xl3,
  .row .col.xl4 {
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.xl4 {
    width: 33.33333%;
  }
  .row .col.xl5 {
    width: 41.66667%;
  }
  .row .col.xl5,
  .row .col.xl6 {
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.xl6 {
    width: 50%;
  }
  .row .col.xl7 {
    width: 58.33333%;
  }
  .row .col.xl7,
  .row .col.xl8 {
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.xl8 {
    width: 66.66667%;
  }
  .row .col.xl9 {
    width: 75%;
  }
  .row .col.xl9,
  .row .col.xl10 {
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.xl10 {
    width: 83.33333%;
  }
  .row .col.xl11 {
    width: 91.66667%;
  }
  .row .col.xl11,
  .row .col.xl12 {
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.xl12 {
    width: 100%;
  }
  .row .col.offset-xl1 {
    margin-left: 8.33333%;
  }
  .row .col.pull-xl1 {
    right: 8.33333%;
  }
  .row .col.push-xl1 {
    left: 8.33333%;
  }
  .row .col.offset-xl2 {
    margin-left: 16.66667%;
  }
  .row .col.pull-xl2 {
    right: 16.66667%;
  }
  .row .col.push-xl2 {
    left: 16.66667%;
  }
  .row .col.offset-xl3 {
    margin-left: 25%;
  }
  .row .col.pull-xl3 {
    right: 25%;
  }
  .row .col.push-xl3 {
    left: 25%;
  }
  .row .col.offset-xl4 {
    margin-left: 33.33333%;
  }
  .row .col.pull-xl4 {
    right: 33.33333%;
  }
  .row .col.push-xl4 {
    left: 33.33333%;
  }
  .row .col.offset-xl5 {
    margin-left: 41.66667%;
  }
  .row .col.pull-xl5 {
    right: 41.66667%;
  }
  .row .col.push-xl5 {
    left: 41.66667%;
  }
  .row .col.offset-xl6 {
    margin-left: 50%;
  }
  .row .col.pull-xl6 {
    right: 50%;
  }
  .row .col.push-xl6 {
    left: 50%;
  }
  .row .col.offset-xl7 {
    margin-left: 58.33333%;
  }
  .row .col.pull-xl7 {
    right: 58.33333%;
  }
  .row .col.push-xl7 {
    left: 58.33333%;
  }
  .row .col.offset-xl8 {
    margin-left: 66.66667%;
  }
  .row .col.pull-xl8 {
    right: 66.66667%;
  }
  .row .col.push-xl8 {
    left: 66.66667%;
  }
  .row .col.offset-xl9 {
    margin-left: 75%;
  }
  .row .col.pull-xl9 {
    right: 75%;
  }
  .row .col.push-xl9 {
    left: 75%;
  }
  .row .col.offset-xl10 {
    margin-left: 83.33333%;
  }
  .row .col.pull-xl10 {
    right: 83.33333%;
  }
  .row .col.push-xl10 {
    left: 83.33333%;
  }
  .row .col.offset-xl11 {
    margin-left: 91.66667%;
  }
  .row .col.pull-xl11 {
    right: 91.66667%;
  }
  .row .col.push-xl11 {
    left: 91.66667%;
  }
  .row .col.offset-xl12 {
    margin-left: 100%;
  }
  .row .col.pull-xl12 {
    right: 100%;
  }
  .row .col.push-xl12 {
    left: 100%;
  }
}
/* end columns */
ul {
  margin: 0;
  padding: 0;
}

.site-header {
  width: 100%;
  position: relative;
  z-index: 999;
  padding: 33px 0;
  background: var(--white);
  transition: all 0.5s ease-out 0s;
}
.site-header.fixed {
  background: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.site-header-main {
  position: relative;
  width: 100%;
  -moz-align-items: center;
  align-items: center;
}
.site-header-main .logo {
  width: 180px;
}
.site-header .header__nav {
  width: calc(100% - 180px);
  position: relative;
}
.site-header .header__nav-list, .site-header .header__nav_sidebar {
  -moz-align-items: center;
  align-items: center;
}
.site-header .header__nav-list ul, .site-header .header__nav_sidebar ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.site-header .header__nav_sidebar {
  width: 22%;
  -moz-justify-content: space-around;
  justify-content: space-around;
}
.site-header .header__nav_sidebar a.mail {
  font-weight: 400;
  line-height: 1.2;
  color: var(--bcolor);
  padding-bottom: 5px;
  border-bottom: 5px solid rgba(255, 144, 77, 0.63);
}
.site-header .header__nav-list {
  -moz-justify-content: center;
  justify-content: center;
  width: 78%;
}
.site-header .header__nav-list ul li {
  display: inline-block;
  padding: 0 25px;
  position: relative;
}
.site-header .header__nav-list ul li.current-menu-item a {
  color: var(--yellow);
}
.site-header .header__nav-list ul li a {
  font-size: 15px;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  transition: 0.5s;
  display: block;
  position: relative;
  color: var(--blue);
}
.site-header .header__nav .burger {
  display: block;
  background: none;
  border: 0;
  height: 17px;
  padding: 0;
  pointer-events: auto;
  width: 27px;
  outline: 0;
  will-change: transform;
  position: relative;
  box-shadow: none;
}
.site-header .header__nav .burger span {
  display: block;
  position: absolute;
  border-radius: 20px;
  height: 3px;
  width: 100%;
  background-color: var(--bcolor);
  opacity: 1;
  right: 0;
  transform: rotate(0deg);
  transition: background-color 0.05s ease-in-out, transform 0.2s ease-in-out, top 0.2s ease-in-out;
}
.show-site-menu .site-header .header__nav .burger span {
  transition: transform 0.5s ease, opacity 0ms linear 0.5s, background-color 0.5s;
}
.site-header .header__nav .burger span:nth-child(1) {
  top: 0;
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.show-site-menu .site-header .header__nav .burger span:nth-child(1) {
  top: unset;
  transform: translate3d(0, 7px, 0);
  transform: rotate(45deg);
  background-color: var(--yellow);
}
.site-header .header__nav .burger span:nth-child(2) {
  top: 6px;
}
.show-site-menu .site-header .header__nav .burger span:nth-child(2) {
  width: 0%;
  opacity: 0;
  transition: all 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.site-header .header__nav .burger span:last-child {
  top: 12px;
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
}
.show-site-menu .site-header .header__nav .burger span:last-child {
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
  transform: rotate(-45deg);
  top: unset;
  background-color: var(--yellow);
}
.site-menu {
  position: fixed;
  left: 0;
  top: 30px;
  width: 100%;
  height: calc(100vh - 30px);
  visibility: visible;
  pointer-events: none;
  opacity: 0;
  transition: all 0.2s ease-in 0.6s;
  z-index: 1;
}
.show-site-menu .site-menu {
  visibility: visible;
  pointer-events: initial;
  opacity: 1;
  transition: all 0.2s ease-out;
  background: var(--bcolor);
  z-index: 99;
}
.site-menu__wrap {
  opacity: 0;
  overflow-y: auto;
  transform: translate3d(100px, 0, 0);
  transition: all 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  width: 100%;
  padding: 30px;
  text-align: center;
  -moz-flex-direction: column;
  flex-direction: column;
  -moz-justify-content: space-around;
  justify-content: space-around;
}
.show-site-menu .site-menu__wrap {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: all 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}
.site-menu__wrap ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.site-menu__wrap ul li {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
}
.site-menu__wrap ul li a {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  padding: 15px;
  text-transform: uppercase;
  width: 100%;
  color: var(--white);
}

.page-section-main {
  position: relative;
}

.br_btn {
  position: relative;
  -moz-align-items: center;
  align-items: center;
}
.br_btn:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 180px);
  height: 1px;
  background: var(--white);
}
.br_btn a, .br_btn .button {
  max-width: 170px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.3;
  padding: 7px 18px;
  border-radius: 15px;
  margin-left: 10px;
}

.textarea_blk label {
  margin: 23px auto;
}

.input_blk {
  position: relative;
  width: 100%;
}
.input_blk label {
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
}

body.popup-open {
  position: fixed;
  height: 100vh;
  overflow: hidden;
}

.close-btn {
  width: 60px;
  height: 60px;
  cursor: pointer;
  border-radius: 100%;
  background-color: var(--whiteF0);
  -moz-align-items: center;
  align-items: center;
  -moz-justify-content: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  right: 20px;
}

#footer-pinkelephant {
  padding: 4px 0px;
}

[class*=" ppicon-"],
[class^=ppicon-] {
  font-family: pinkelephant !important;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#pinkelephant-copyright-footer a {
  text-decoration: none;
  color: var(--greyA5);
  vertical-align: middle;
}
#pinkelephant-copyright-footer a.phover:hover {
  color: var(--yellow);
}

.pinkelephant-fadeinanim:hover {
  opacity: 1;
  transition: ease-in-out 2.5s;
  animation-name: pinkelephant-fadeinanim;
  animation-duration: 2.5s;
}

@keyframes pinkelephant-fadeinanim {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.pinkelephant-fadeoutanim {
  opacity: 1;
  transition: ease-in-out 2.5s;
  animation-name: pinkelephant-fadeoutanim;
  animation-duration: 2.5s;
}

@keyframes pinkelephant-fadeoutanim {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mymove {
  from {
    background-position: 0% 0%;
  }
  to {
    background-position: 0% -100%;
  }
}
.skiptocontent {
  position: absolute;
  top: -99vh;
  background: #fafafa;
  padding: 10px;
  cursor: pointer;
  z-index: 9999;
}

.page-section-main {
  background-color: var(--white);
  padding: 0px 0px 20px;
}
.page-section-main .wp-block-group {
  margin-top: 30px;
  margin-bottom: 40px;
}
.page-section-main .wp-block-group .wp-block-group__inner-container {
  max-width: 1300px;
  margin: auto;
}
.hero-section {
  margin: 40px 0px;
}
.page-section-main .hero-section .hero1 {
  position: relative;
  top: -40px;
}
.page-section-main .hero-section .hero2 {
  position: relative;
  top: 0px;
}
.page-section-main .hero-section .hero3 {
  position: relative;
  top: -25px;
}
.page-section-main .hero-section .hero4 {
  position: relative;
  top: -35px;
}
.page-section-main .courses-section {
  padding: 90px 0px 40px;
  margin: 0px !important;
}
.page-section-main .courses-section h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 24px;
  color: var(--black);
  font-weight: 600;
  margin-bottom: 15px;
}
.page-section-main .courses-section h2 {
  font-size: 48px;
  line-height: 58px;
  font-weight: normal;
  color: var(--black);
  margin-bottom: 30px;
  display: block;
}
.page-section-main .courses-section .wp-block-columns {
  padding: 25px 0px;
}
.page-section-main .courses-section .wp-block-column:not(.courses-section-header) {
  border-top: 1px solid var(--black);
  padding-top: 40px;
}
.page-section-main .courses-section .wp-block-column h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
}
.page-section-main .courses-section .wp-block-buttons .wp-block-button__link {
  margin: 5px 0px;
}
.page-section-main .case-detail {
  max-width: var(--container);
  margin: 70px auto 0px;
}
.page-section-main .case-detail h2 {
  font-family: var(--font-body);
  font-size: 38px;
  line-height: 48px;
  font-weight: normal;
}
.page-section-main .case-rows {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid #EEEFF1;
}
.page-section-main .case-rows ul li {
  padding: 30px;
  border: 1px solid #EEEFF1;
}
.page-section-main .case-rows ul li .wp-block-post-featured-image {
  width: 128px;
  height: 128px;
}
.page-section-main .case-rows ul li img {
  max-width: 100%;
}
.page-section-main .case-rows ul li .wp-block-post-date {
  display: none;
}
.page-section-main .case-rows ul li h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 10px;
}
.page-section-main .case-rows ul li h3 a {
  color: var(--black);
}
.page-section-main .case-rows ul li .wp-block-post-excerpt__more-text {
  display: block;
  margin-top: 50px;
}
.page-section-main .case-rows ul li .wp-block-post-excerpt__more-text a {
  border-radius: 25px;
  border: 1px solid var(--black);
  padding: 8px 25px;
  display: inline-block;
  font-size: 18px;
  color: var(--black);
}
.page-section-main .case-rows ul li .wp-block-post-excerpt__more-text:hover a {
  background-color: var(--black);
  color: var(--white);
}
.page-section-main .latest-post {
  margin-top: 56px;
}
.page-section-main .hero-below-section {
  margin-bottom: 0px;
}

.page-section.page-default-section {
  padding-top: 25px;
}
.page-section.page-default-section .wp-block-group__inner-container {
  max-width: var(--smallcontainer);
  margin-left: auto;
  margin-right: auto;
}
.page-section.page-default-section h4 {
  font-size: 19px;
}
.page-section.page-default-section h3 {
  font-size: 20px;
  padding-top: 24px;
}
.page-section.page-default-section h2 {
  font-size: 22px;
  padding-top: 34px;
}
.page-section.page-default-section h2 strong {
  font-weight: 600;
}
.page-section.page-default-section ul.wp-block-list {
  padding-left: 20px;
  margin-bottom: 0px;
}
.page-section.page-default-section .excerpt-readmore {
  display: none;
}
.page-section.page-default-section .hero-section p {
  margin-bottom: 10px;
}
.page-section.page-default-section .hero-section p strong {
  font-weight: 600;
}
.page-section.page-default-section .hero-section pre.wp-block-preformatted, .page-section.page-default-section .hero-section .continue-text {
  display: block;
  margin-top: 30px;
  padding-bottom: 15px;
  font-size: 14px;
  color: #424242;
  font-family: var(--font-body);
  font-weight: normal;
}
.page-section.page-default-section .hero-section pre.wp-block-preformatted a, .page-section.page-default-section .hero-section .continue-text a {
  color: #424242;
}
.page-section.page-default-section .hero-section h1 {
  font-size: 38px;
  line-height: 48px;
}
.page-section.page-default-section .hero-section .wp-block-button.btn a {
  background: white;
  border: 1px solid var(--black);
  font-size: 13px;
  padding: 5px 8px;
  line-height: 1;
  color: #000;
}
.page-section.page-default-section .hero-section .wp-block-button.btn a:before {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 6px;
  height: 7px;
  margin-right: 5px;
  background-image: url("./assets/img/angle-left.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-top: 3px;
}
.page-section.page-default-section .hero-section .wp-block-button.btn:hover a {
  background: #000;
  color: var(--white);
}
.page-section.page-default-section .hero-section .wp-block-button.btn:hover a:before {
  filter: invert(1);
}

.page-default-section .hero-details {
  padding-bottom: 0px !important;
}

.result-count {
  float: left;
  width: 100%;
  margin: 10px 0px 20px;
}

.library-search {
  position: relative;
}
.library-search .button--submit {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  padding: 10px;
}
.library-search .button--submit .icon-search {
  color: var(--black);
}

/* Pagination Container */
.page-navigation {
  text-align: center;
  margin: 20px 0;
}

/* Pagination List */
.page-navigation ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}

/* Pagination Items */
.page-navigation ol li {
  display: inline-block;
  margin: 0 5px;
}

/* Current Page */
.page-navigation ol li.bpn-current {
  background-color: var(--pink);
  color: white;
  padding: 10px 15px;
  border-radius: 50%;
  font-weight: bold;
}

/* Links */
.page-navigation ol li a {
  display: inline-block;
  padding: 10px 15px;
  text-decoration: none;
  color: var(--pink);
  border-radius: 50%;
  transition: background-color 0.3s, color 0.3s;
}

/* Hover Effect */
.page-navigation ol li a:hover {
  background-color: var(--pink);
  color: white;
}

/* Disabled Links (e.g., next without text) */
.page-navigation ol li.bpn-next-link a:empty {
  pointer-events: none;
  color: #000;
  border-radius: 50%;
}

/* Active and Hover State for Next/Previous Links */
.page-navigation ol li.bpn-next-link a {
  color: var(--pink);
  padding: 10px 15px;
  text-decoration: none;
}

.page-navigation ol li.bpn-next-link a:hover {
  background-color: var(--pink);
  color: white;
}

/* For a more rectangular look, you can change the border-radius */
.page-navigation ol li a,
.page-navigation ol li.bpn-current {
  border-radius: 8px; /* Change to 0 for square */
}

/* Adjust spacing for smaller screens */
@media (max-width: 600px) {
  .page-navigation ol li {
    margin: 0 2px;
  }
  .page-navigation ol li a,
  .page-navigation ol li.bpn-current {
    padding: 8px 12px;
  }
}
/* New Styles */
.fixed-topmenu {
  border-bottom: 2px solid #EBF0F4;
  z-index: 3;
  background-color: #fff;
  max-height: 0px;
  overflow: hidden;
  transition: all 0.3s linear;
}
.fixed-topmenu ul {
  text-align: right;
  margin: 0px;
  padding: 0px;
}
.fixed-topmenu ul li {
  display: inline-block;
  margin: 0 10px;
}
.fixed-topmenu ul li a {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  text-decoration: underline;
}
.fixed-topmenu ul li a:hover {
  text-decoration: none;
}
.fixed-topmenu ul li.highlight a {
  background-color: var(--pink);
  padding: 6px 18px;
  color: var(--white);
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
}
.fixed-topmenu ul li.highlight:hover a {
  background-color: #000;
}
.fixed-topmenu .container {
  position: relative;
  padding: 20px 0px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.fixed-topmenu .container .close-menu {
    border-radius: 100%;
    border: 1px solid #000;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 24px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    margin-inline-start: 15px;
}

.fixed-banner {
  position: fixed;
  top: 0px;
  width: 100%;
  padding: 40px 0px 15px;
  background-color: #fff;
  z-index: 3;
  border-bottom: 2px solid #EBF0F4;
}
.fixed-banner h1, .fixed-banner h2 {
  font-size: 38px;
  line-height: 48px;
}
.fixed-banner h3 {
  text-transform: uppercase;
  font-size: 22px;
  font-family: var(--font-heading);
  font-weight: 900;
}
.fixed-banner .wp-block-buttons .wp-block-button__link {
  margin: 0px;
  background-color: #000;
}
.fixed-banner .wp-block-buttons .wp-block-button__link:hover {
  background-color: var(--pink);
}
.fixed-banner .close-banner {
  border-radius: 100%;
  border: 1px solid #000;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 24px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  left: calc(100% - 30px);
  top: -10px;
  display: block;
}
.fixed-banner p {
  max-width: 80%;
}

main.banner-exist {
  position: fixed;
  height: 100%;
  overflow-y: scroll;
  width: 100%;
}

body.show-site-menu .fixed-topmenu {
  max-height: 80px;
}
header.header {
  transition: all 0.3s ease-in-out;
}
header.header .top-header {
  margin-top: 20px;
  text-align: right;
}
header.header .top-header span {
  text-decoration: underline;
  cursor: pointer;
}
header.header .top-header #menu-click {
  font-size: 18px;
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  width: 95px;
  padding: 6px 10px;
  text-align: center;
  height: 40px;
  border-radius: 50px;
  border: 1px solid #000;
  display: inline-block;
  cursor: pointer;
  margin-left: 20px;
}
header.header .top-header #menu-click:hover {
  background-color: var(--black);
  color: var(--white);
}
header.header .bottom-header {
  padding: 15px 0px 0px;
}
header.header .bottom-header .header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
header.header .bottom-header .logo {
  display: inline-block;
  width: 160px;
  margin-right: 40px;
  vertical-align: middle;
}
header.header .bottom-header .staff-member {
	position: absolute;
    right: 0;
    top: -40px;
    width: 41%;
    opacity: 0;
    transition: top 0.2s ease, opacity 0.3s ease, visibility 0.4s ease;
    visibility: hidden;
    z-index: 999;
}
header.header .bottom-header .nav--main {
  display: inline-block;
  vertical-align: middle;
}
header.header .bottom-header .nav--main > ul {
  margin: 0px;
  padding: 0px;
}
header.header .bottom-header .nav--main > ul > li {
  display: inline-block;
  margin: 0px 25px;
}
header.header .bottom-header .nav--main > ul > li > a {
  font-size: 24px;
  color: var(--black);
  line-height: 1;
  display: block;
  position: relative;
  padding: 28px 0px;
}
header.header .bottom-header .nav--main > ul > li:hover a, header.header .bottom-header .nav--main > ul > li:focus a {
  color: var(--pink);
}
header.header .bottom-header .nav--main > ul > li.largemenu_start > a:after {
  content: "";
  background-image: url("./assets/img/angle-left.svg");
  width: 8px;
  height: 11px;
  display: block;
  position: absolute;
  top: 38px;
  right: -15px;
  transform: rotate(270deg);
  background-repeat: no-repeat;
  background-size: cover;
}
header.header .bottom-header .nav--main > ul > li .nav--sub {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  width: 100vw;
  left: 0;
  top: 140px;
  z-index: 4;
  background-color: var(--white);
}
header.header .bottom-header .nav--main > ul > li .nav--sub .dynamic-content-container {
  float: left;
  width: 28%;
  padding: 2rem;
  background-color: var(--pink);
  color: var(--white);
  position: relative;
}
header.header .bottom-header .nav--main > ul > li .nav--sub .dynamic-content-container h1, header.header .bottom-header .nav--main > ul > li .nav--sub .dynamic-content-container h2, header.header .bottom-header .nav--main > ul > li .nav--sub .dynamic-content-container h3, header.header .bottom-header .nav--main > ul > li .nav--sub .dynamic-content-container h4, header.header .bottom-header .nav--main > ul > li .nav--sub .dynamic-content-container h5, header.header .bottom-header .nav--main > ul > li .nav--sub .dynamic-content-container h6 {
  color: var(--white);
}
header.header .bottom-header .nav--main > ul > li .nav--sub .dynamic-content-container .middle-content {
  position: absolute;
  top: 45%;
  width: 100%;
  left: 0px;
  padding: 30px;
}
header.header .bottom-header .nav--main > ul > li .nav--sub .dynamic-content-container .middle-content h1, header.header .bottom-header .nav--main > ul > li .nav--sub .dynamic-content-container .middle-content h2 {
  font-size: 38px;
}
header.header .bottom-header .nav--main > ul > li .nav--sub .dynamic-content-container .middle-content h3 {
  font-size: 30px;
}
header.header .bottom-header .nav--main > ul > li .nav--sub .dynamic-content-container .middle-content .button {
  border-radius: 40px;
  border: 1px solid #fff;
  color: #fff;
  padding: 8px 15px;
}
header.header .bottom-header .nav--main > ul > li .nav--sub .dynamic-content-container .middle-content .button:hover {
  background-color: #fff;
  color: #000;
}
header.header .bottom-header .nav--main > ul > li .nav--sub > ul.sub-menu {
  float: right;
  width: 72%;
  padding: 2rem 6rem;
}
header.header .bottom-header .nav--main > ul > li .nav--sub > ul.sub-menu > li {
  float: left;
  width: 23%;
  margin-right: 2%;
}
header.header .bottom-header .nav--main > ul > li .nav--sub > ul.sub-menu > li a {
  font-weight: 600;
  color: var(--black);
  font-size: 21px;
  margin-bottom: 10px;
}
header.header .bottom-header .nav--main > ul > li .nav--sub > ul.sub-menu > li > ul {
  padding: 0px;
}
header.header .bottom-header .nav--main > ul > li .nav--sub > ul.sub-menu > li > ul > li {
  display: block;
}
header.header .bottom-header .nav--main > ul > li .nav--sub > ul.sub-menu > li > ul > li a {
  font-size: 18px;
  padding: 5px 0px;
  color: var(--black);
  font-weight: normal;
  margin-bottom: 0px;
}
header.header .bottom-header .nav--main > ul > li:hover .nav--sub {
  opacity: 1;
  visibility: visible;
}
header.header .bottom-header .burger {
  display: none;
  background: none;
  border: 0;
  padding: 0;
  pointer-events: auto;
  width: 35px;
  height: 30px;
  outline: 0;
  will-change: transform;
  position: relative;
  box-shadow: none;
  flex-wrap: wrap;
}
header.header .bottom-header .burger span {
  display: block;
  position: absolute;
  border-radius: 20px;
  height: 5px;
  width: 100%;
  background-color: #004FA3;
  opacity: 1;
  right: 0;
  transform: rotate(0deg);
  transition: background-color 0.05s ease-in-out, transform 0.2s ease-in-out, top 0.2s ease-in-out;
}
.show-site-menu header.header .bottom-header .burger span {
  transition: transform 0.5s ease, opacity 0ms linear 0.5s, background-color 0.5s;
}
header.header .bottom-header .burger span:nth-child(1) {
  top: 0;
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.show-site-menu header.header .bottom-header .burger span:nth-child(1) {
  top: 10px;
  transform: translate3d(0, 7px, 0);
  transform: rotate(45deg);
  background-color: #004FA3;
}
header.header .bottom-header .burger span:nth-child(2) {
  top: 10px;
  width: 80%;
  left: 0;
}
.show-site-menu header.header .bottom-header .burger span:nth-child(2) {
  width: 0%;
  opacity: 0;
  transition: all 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
header.header .bottom-header .burger span:last-child {
  top: 20px;
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
}
.show-site-menu header.header .bottom-header .burger span:last-child {
  transform: rotate(-45deg);
  top: 10px;
  background-color: #004FA3;
}
header.header.fixed {
  position: fixed;
  width: 100%;
  background-color: var(--white);
  border-bottom: 1px solid #EBF0F4;
  top: 0px;
  padding: 35px 0px;
  z-index: 3;
}
header.header.fixed .top-header {
  display: none;
}
header.header.fixed .bottom-header {
  padding: 0px;
  display: flex;
  justify-content: space-between;
}
header.header.fixed .bottom-header .nav.nav--main {
  display: none;
}
header.header.show-staff-member .container{
	position: relative;
}
	
header.header.fixed .bottom-header .staff-member {
	top: 0px;
    opacity: 1;
    visibility: visible;
}
header.header .bottom-header .staff-member .staff-image {
  width: 80px;
  height: 80px;
  background-color: #ddd;
  display: inline-block;
  vertical-align: top;
  border-radius: 100%;
}
header.header .bottom-header .staff-member .staff-image img {
  border-radius: 100%;
}
header.header .bottom-header .staff-member .staff-details {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 100px);
  padding-left: 15px;
}
header.header .bottom-header .staff-member .staff-details .btn {
  margin-top: 10px;
}

.hero-section .hero-image {
  width: 100%;
  height: 550px;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 100px 120px;
}
.hero-section .hero-image .hero-text {
  color: var(--white);
  font-size: 24px;
  line-height: 1;
  margin-bottom: 10px;
}
.hero-section .hero-image h1 {
  color: var(--white);
  font-size: 38px;
  font-weight: normal;
  line-height: 42px;
  margin-bottom: 10px;
}
.hero-section .hero-image .hero-content {
  color: var(--white);
  font-size: 18px;
  line-height: 24px;
  font-weight: normal;
}

/* NAV */
.woocommerce-breadcrumb {
  display: none;
}

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

.nav__item {
  display: inline-block;
}

.nav__link {
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  color: #000;
  text-decoration: none;
}

.nav--main .nav--sub--home {
  position: absolute;
  width: 100%;
  left: 0;
  top: 91px;
  z-index: 1;
}

.nav--main .nav--sub--home > .wrapper {
  overflow: hidden;
}

.nav--main .nav--sub--home .nav-drop {
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  display: inline-block;
  line-height: 40px;
  font-size: 0px;
}

.nav--main .nav--sub--home .nav-drop .nav__item {
  font-size: 1.8rem;
}

.nav--main .nav--sub--home .nav-drop .nav__item .nav__link {
  color: #de058c;
  background-color: #e5e5e5;
}

.nav--main .nav--sub--home .nav-drop .nav__item .nav__link.active,
.nav--main .nav--sub--home .nav-drop .nav__item .nav__link:focus,
.nav--main .nav--sub--home .nav-drop .nav__item .nav__link:hover {
  color: #fff;
  background-color: #de058c;
}

.nav--main .nav--sub--home .nav-drop .nav__item.current-menu-item .nav__link,
.nav--main .nav--sub--home .nav-drop .nav__item.current_page_item .nav__link {
  color: #de058c;
  background-color: #c4c4c4;
}

.nav--main .nav--sub--home .nav-drop.inactive {
  transform: translateY(-100%);
  opacity: 0;
}

.nav--main .nav--sub .nav-drop .nav__item .nav__link.active,
.nav--main .nav--sub .nav-drop .nav__item .nav__link:focus,
.nav--main .nav--sub .nav-drop .nav__item .nav__link:hover {
  color: #004fa3;
  background-color: transparent;
}

.nav--main .nav--sub .nav-drop .nav__item.current-menu-item > .nav__link,
.nav--main .nav--sub .nav-drop .nav__item.current_page_item > .nav__link {
  color: #004fa3;
}

.nav--main .nav--sub .nav-drop .nav__item .nav-drop {
  display: block;
  line-height: 32px;
}

.nav--main .nav--sub .nav-drop .nav__item .nav-drop .nav-drop {
  padding-top: 0.75rem;
  padding-bottom: 0;
}

.nav--main .nav--sub .nav-drop .nav__item .nav-drop .nav-drop .nav__item .nav__link {
  color: rgba(43, 49, 65, 0.6);
}

.nav--main .nav--sub .nav-drop .nav__item .nav-drop .nav__item {
  font-family: bio-sans;
  font-size: 1.6rem;
  line-height: 1.2;
  display: block;
  border: none;
  margin-bottom: 0.75rem;
}

.nav--main .nav--sub .nav-drop .nav__item .nav-drop .nav__item.fixed-height {
  min-height: 100px;
}

.nav--main .nav--sub .nav-drop .nav__item .nav-drop .nav__item .nav__link {
  color: #2b3141;
}

.nav--main .nav--sub .nav-drop .nav__item .nav-drop .nav__item.current-menu-item > .nav__link,
.nav--main .nav--sub .nav-drop .nav__item .nav-drop .nav__item.current_page_item > .nav__link,
.nav--main .nav--sub .nav-drop .nav__item .nav-drop .nav__item .nav__link.active,
.nav--main .nav--sub .nav-drop .nav__item .nav-drop .nav__item .nav__link:focus,
.nav--main .nav--sub .nav-drop .nav__item .nav-drop .nav__item .nav__link:hover {
  color: #de058c;
}

.nav--main .nav--sub .nav-drop .nav__item .nav-drop .nav__item .nav__arrow {
  display: inline-block;
  padding-right: 0.6rem;
}

.nav--main .nav--sub .nav-drop .nav__item .nav-drop .nav__item .nav__link__exerpt {
  line-height: 24px !important;
}

.nav--main .nav--sub .nav-drop .nav__item .nav-drop .nav__item .nav__link__exerpt:hover {
  color: #2b3141;
}

.nav--main .nav__mainitem.active .nav--sub {
  opacity: 1;
  visibility: visible;
}

.nav--main .nav__mainitem.do-not-show-anyway .nav--sub {
  opacity: 0;
  visibility: hidden;
}

.nav--top {
  display: inline-block;
  float: right;
}

.nav--top .nav__item {
  font-size: 1.4rem;
  line-height: 40px;
  color: #004fa3;
}

.nav--top .nav__item span.nav__link {
  cursor: pointer;
}

.nav--top .nav__item .nav__link {
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  padding: 0 2.25rem;
  display: block;
}

.nav--top .nav__item .nav__link:focus,
.nav--top .nav__item .nav__link:hover {
  background-color: #de058c;
  color: #fff;
}

.nav--top .nav__item .nav__link.search__link {
  display: block;
  position: relative;
}

.nav--top .nav__item .nav__link .icon-right {
  transform: rotate(0deg);
  width: 8px;
  height: 8px;
  margin-left: 1.5rem;
  vertical-align: middle;
}

.nav--top .nav__item .nav__link .icon-search {
  position: absolute;
  z-index: 1;
  opacity: 1;
  width: 17px;
  height: 17px;
  display: block;
  top: 0px;
}

.nav--top .nav__item .nav__link .icon-close {
  position: absolute;
  z-index: 0;
  opacity: 0;
  width: 17px;
  height: 17px;
  vertical-align: middle;
  top: 0px;
}

.nav--top .nav__item .nav__link .icon-phone {
  width: 13px;
  height: 13px;
  margin-right: 5px;
  vertical-align: middle;
}

.nav--top .nav__item.active .nav__link {
  background-color: transparent;
  color: var(--pink);
}

.nav--top .nav__item.active .nav__link .icon-search {
  position: absolute;
  z-index: 0;
  opacity: 0;
}

.nav--top .nav__item.active .nav__link .icon-close {
  position: absolute;
  z-index: 1;
  opacity: 1;
}

.nav--top .nav__item.active .nav__link .icon-right {
  transform: rotate(90deg);
}

.nav--top .nav__item:first-child .nav__link:focus,
.nav--top .nav__item:first-child .nav__link:hover,
.nav--top .nav__item:last-child .nav__link:focus,
.nav--top .nav__item:last-child .nav__link:hover {
  background-color: transparent;
  color: #de058c;
}

.nav--top .nav__item:first-child .nav__link.active,
.nav--top .nav__item:last-child .nav__link.active {
  background-color: transparent;
  color: #004fa3;
}

.nav--top .nav__item.menu-item-has-children.active {
  background-color: #fff;
  position: relative;
}

.nav--top .nav__item.menu-item-has-children.active .nav-drop {
  opacity: 1;
  visibility: visible;
}

.nav--top .nav__item .nav-drop {
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: absolute;
  opacity: 0;
  visibility: hidden;
  z-index: 3;
}

.nav--top .nav__item .nav-drop .nav__item {
  background-color: #fff;
  display: block;
  width: 100%;
}

.nav--top .nav__item .nav-drop .nav__item .nav__link {
  color: #004fa3;
}

.nav--top .nav__item .nav-drop .nav__item .nav__link:focus,
.nav--top .nav__item .nav-drop .nav__item .nav__link:hover {
  background-color: #fff;
  color: #de058c;
}

.nav--top .nav__item .nav-drop .nav__item.active .nav__link {
  color: #de058c;
}

/* END NAV */
.btn {
  border-radius: 50px;
}
.btn.button-style1 {
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  line-height: 1;
  border: 1px solid var(--black);
}
.btn.button-style1:hover {
  background-color: var(--black);
  color: var(--white);
}
.btn.back-link {
  display: inline-block;
  padding: 5px 10px;
  margin-right: 10px;
}
.btn.back-link:before {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 6px;
  height: 7px;
  margin-right: 5px;
  background-image: url("./assets/img/angle-left.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-top: 3px;
}
.btn.back-link:hover:before {
  -moz-filter: invert(1);
  -web-filter: invert(1);
  filter: invert(1);
}
.btn.button-style2 {
  font-size: 18px;
  background-color: var(--pink);
  padding: 7px 28px;
  display: inline-block;
  color: var(--white);
  font-weight: 600;
}
.btn.button-style2:hover {
  background-color: var(--black);
}
.btn.button-style3 {
  background-color: var(--black);
  font-size: 14px;
  font-weight: normal;
  padding: 5px 20px;
  color: var(--white);
}
.btn.button-style3:hover {
  background-color: var(--pink);
}
.btn.button-style4 {
  border: 1px solid var(--pink);
  font-size: 14px;
  font-weight: normal;
  padding: 5px 20px;
  color: var(--pink);
}
.btn.button-style4:hover {
  background-color: var(--pink);
  color: var(--white);
}

.shop-list-wrapper ul li.tease--training {
  margin-bottom: 50px;
}
.shop-list-wrapper ul li.tease--training .btn {
  margin: 15px 0px 0px;
}
.shop-list-wrapper ul li.tease--training .tease__content {
  padding-top: 15px;
  border-top: 1px solid var(--black);
  margin-bottom: 3px;
}
.shop-list-wrapper ul li.tease--training .tease__content .tease__category {
  color: var(--black);
  font-size: 13px;
}
.shop-list-wrapper ul li.tease--training .tease__content h3.tease__title {
  font-size: 20px;
  font-weight: 600;
  min-height: 80px;
  line-height: 24px;
}
.shop-list-wrapper ul li.tease--training .tease__content h3.tease__title a {
  color: var(--black);
}

.single-hero {
  background-color: var(--bcolor);
  padding: 20px 0px;
}
.single-hero .header-postdetails {
  margin-top: 60px;
}
.single-hero .header-postdetails .post-date {
  font-size: 13px;
  line-height: 13px;
}
.single-hero .header-postdetails .post-date a {
  color: var(--black);
}
.single-hero .header-postdetails .post-date a:hover {
  color: var(--pink);
}
.single-hero .header-postdetails h1 {
  font-family: var(--font-body);
  font-size: 38px;
  line-height: 48px;
  color: var(--black);
  width: 80%;
}
.single-hero .header-postdetails h1, .single-hero .header-postdetails h2, .single-hero .header-postdetails h3, .single-hero .header-postdetails h4, .single-hero .header-postdetails h5, .single-hero .header-postdetails h6 {
  margin: 10px 0px 15px;
}

.postdetail-img{
  display: block;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--black);
  margin-bottom: 20px;
}

.postdetail-content {
  margin-top: 40px;
}

.breadcrumb-link a {
  display: inline-block;
}
.breadcrumb-link ul {
  margin: 0px 20px 0px 0px;
  padding: 0px;
  display: inline-block;
}
.breadcrumb-link ul li {
  list-style: none;
  display: inline-block;
  color: var(--black);
  font-size: 12px;
  font-weight: normal;
}
.breadcrumb-link ul li span {
  padding-right: 10px;
}
.breadcrumb-link ul li a {
  font-size: 12px;
  color: #424242;
  padding-right: 10px;
}
.breadcrumb-link ul li a:hover {
  color: var(--pink);
}

.casestudy-herosection, .page-herosection {
  background-color: var(--bcolor);
  padding: 20px 0px;
}
.casestudy-herosection .hero-details, .page-herosection .hero-details {
  padding: 40px 0px;
}

.hero-short-content{
  /* font-weight: 600; */
}
.casestudy-herosection .hero-details .casestudy-logo, .page-herosection .hero-details .casestudy-logo {
  width: 100px;
  height: 100px;
  display: inline-block;
  vertical-align: top;
}
.casestudy-herosection .hero-details .casestudy-logo img, .page-herosection .hero-details .casestudy-logo img {
  max-width: 100%;
}
.casestudy-herosection .hero-details .casestudy-details, .page-herosection .hero-details .casestudy-details {
  display: inline-block;
  vertical-align: middle;
  margin-left: 60px;
  width: calc(100% - 165px);
}
.casestudy-herosection .hero-details .casestudy-details .case-title, .page-herosection .hero-details .casestudy-details .case-title {
  font-size: 18px;
  color: var(--black);
}
.casestudy-herosection .hero-details .casestudy-details h1, .page-herosection .hero-details .casestudy-details h1 {
  font-size: 38px;
  line-height: 48px;
  font-family: var(--font-body);
  font-weight: normal;
  margin-bottom: 20px;
}
.casestudy-herosection .case-shortdesc, .page-herosection .case-shortdesc {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: var(--black);
}

.casestudy-detailsection, .page-detailsection {
  /* padding: 40px 0px 0px; */
  padding: 24px 0px 0px;
}
.casestudy-detailsection .case-featuredimage, .page-detailsection .case-featuredimage {
  display: block;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--black);
  margin-bottom: 20px;
}
.casestudy-detailsection h1, .casestudy-detailsection h2, .casestudy-detailsection h3, .casestudy-detailsection h4, .casestudy-detailsection h5, .casestudy-detailsection h6, .page-detailsection h1, .page-detailsection h2, .page-detailsection h3, .page-detailsection h4, .page-detailsection h5, .page-detailsection h6 {
  font-size: 20px;
  font-weight: normal;
  line-height: 24px;
  display: block;
  margin: 12px 0px;
  font-weight: 600;
}
.casestudy-detailsection h3, .page-detailsection h3 {
  font-size: 20px;
  line-height: 24px;
}
.casestudy-detailsection h4, .page-detailsection h4 {
  font-size: 18px;
  line-height: 24px;
}
.casestudy-detailsection h5, .page-detailsection h5 {
  font-size: 16px;
  line-height: 18px;
}
.casestudy-detailsection p, .page-detailsection p {
  margin-bottom: 12px;
}
.casestudy-detailsection .button, .page-detailsection .button {
  font-size: 18px;
  background-color: var(--pink);
  padding: 8px 28px;
  display: inline-block;
  color: var(--white);
  font-weight: normal;
  margin: 25px 0px;
  border-radius: 25px;
}
.casestudy-detailsection .button:hover, .page-detailsection .button:hover {
  background-color: var(--black);
}

.wp-block-buttons {
  margin: 12px 0px 15px;
}
.wp-block-buttons .wp-block-button__link {
  font-size: 18px;
  background-color: var(--pink);
  padding: 8px 28px;
  display: inline-block;
  color: var(--white);
  font-weight: normal;
  margin: 10px 0px;
}
.wp-block-buttons .wp-block-button__link:hover {
  background-color: var(--black);
}

.wp-block-buttons .wp-block-button__link.wp-block-button__white_outline{
  border: 1px solid white;
}

.wp-block-buttons .wp-block-button__link.wp-block-button__white_outline:hover{
  background-color: white;
  color: var(--pink);
}

.continue-text {
  font-size: 14px;
  color: #424242;
  display: block;
  margin-top: 20px;
}

.staff-section {
  padding: 30px 0px;
}
.staff-section .staff-row {
  width: 100%;
  padding: 30px 0px;
  border-bottom: 1px solid #ccc;
}
.staff-section .staff-row:last-child {
  border-bottom: 0px;
}
.staff-section .staff-item {
  float: left;
  width: 50%;
  border-right: 1px solid #CCCCCC;
}
.staff-section .staff-item .staff-item-image {
  display: inline-block;
  vertical-align: middle;
  background-color: #ccc;
  width: 110px;
  height: 110px;
  border-radius: 100%;
}
.staff-section .staff-item .staff-item-image img {
  border-radius: 100%;
}
.staff-section .staff-item .staff-item-details {
  display: inline-block;
  vertical-align: middle;
  padding-left: 25px;
  width: calc(100% - 140px);
}
.staff-section .staff-item .staff-item-details h3 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  color: #000;
}
.staff-section .staff-item .staff-item-details .staff-desg {
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}
.staff-section .staff-item .staff-item-details span {
  font-size: 14px;
}
.staff-section .staff-item .staff-item-details span.linkedin {
  vertical-align: -3px;
}
.staff-section .staff-item .staff-item-details .staff-email {
  margin-top: 15px;
  display: block;
}
.staff-section .staff-item:nth-child(2n) {
  border-right: 0px;
  padding-left: 25px;
}

.herobanner-section {
  max-width: 1300px;
  margin: auto;
}
.herobanner-section .wp-block-cover__inner-container {
  padding-left: 100px;
}

footer.site-footer {
  background-color: var(--bcolor);
}
footer.site-footer h3 {
  color: var(--black);
  margin-bottom: 15px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  display: block;
}
footer.site-footer .social-links {
  padding: 35px 0px 30px;
}
footer.site-footer .social-links .block-label {
  display: inline-block;
}
footer.site-footer .social-links ul {
  margin: 0px;
  padding: 0px;
  display: inline-block;
  vertical-align: middle;
}
footer.site-footer .social-links ul li {
  list-style: none;
  display: inline-block;
}
footer.site-footer .social-links ul li a {
  display: block;
  padding: 0 5px;
}
footer.site-footer .footer-divider {
  border-bottom: 1px solid var(--border);
}
footer.site-footer .site-footer-wrap {
  padding: 40px 0px 30px;
}
footer.site-footer .site-footer-wrap .widget_nav_menu:last-child {
  padding-left: 50px;
}
footer.site-footer .site-footer-wrap ul {
  margin: 0;
  padding: 0;
}
footer.site-footer .site-footer-wrap ul li {
  list-style: none;
  display: block;
  margin-bottom: 12px;
}
footer.site-footer .site-footer-wrap ul li a {
  display: block;
  text-decoration: none;
  color: var(--black);
}
footer.site-footer .site-footer-wrap ul li:hover a {
  color: var(--pink);
}
footer.site-footer .logos-section {
  text-align: right;
  padding: 40px 0px;
}
footer.site-footer .bottom-section {
  padding: 25px 0px 30px;
}
footer.site-footer .bottom-section .footer-logo {
  width: 100px;
  margin-right: 50px;
}
footer.site-footer .bottom-section-links {
  margin-top: 12px;
}
footer.site-footer .bottom-section-links ul {
  margin: 0;
  padding: 0;
}
footer.site-footer .bottom-section-links ul li {
  list-style: none;
  display: inline-block;
}
footer.site-footer .bottom-section-links ul li a {
  color: var(--black);
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
  display: block;
  padding: 0px 10px;
  border-right: 1px solid var(--black);
}
footer.site-footer .bottom-section-links ul li:first-child a {
  padding-left: 0;
}
footer.site-footer .bottom-section-links ul li:last-child a {
  padding-right: 0px;
  border-right: 0px;
}
footer.site-footer .bottom-section-links ul li:hover a, footer.site-footer .bottom-section-links ul li:focus a {
  color: var(--pink);
}

.library-list{
  padding: 0px !important;
}

.library-list > .row, .filter-block.row{
  margin-left: -2rem;
  margin-right: -2rem;
}

.library-list ul li {
  list-style: none;
  margin: 20px 0px;
  height: 530px;
}
.library-list ul li .tease__image {
  height: 240px;
  overflow: hidden;
  margin-top: 20px;
  border-top: 1px solid #000;
  padding-top: 20px;
}
.library-list ul li .h6.tease__title {
  min-height: 50px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  padding-bottom: 5px;
}
.library-list ul li .h6.tease__title a {
  color: #000;
}
.library-list ul li .tease__body {
  margin-bottom: 15px;
  min-height: 120px;
}
.library-list ul li .tease__categories {
  margin: 10px 0px 0px 0px;
}
.library-list ul li .tease__category {
  font-size: 13px;
  padding-right: 5px;
}

.case-studies-all {
  color: #000;
}

.pf-latest-news {
  margin: 60px 0px 20px;
}
.pf-latest-news .all-news a {
  color: #000;
  text-decoration: underline;
}

.block-columns .wp-block-group {
  border-top: 1px solid #000;
  padding-top: 40px;
  margin-bottom: 0px;
}

.mq-desktop {
  display: block;
}
@media (max-width: 960px) {
  .mq-desktop {
    display: none !important;
  }
}

.mq-mobile {
  display: none;
}
@media (max-width: 960px) {
  .mq-mobile {
    display: flex !important;
  }
}

@media screen and (max-width: 1280px) {
  .container,
  #container,
  .site-news_letter-container {
    padding: 0 30px;
  }
  .container-small, 
  .container-medium, 
  .container-large,
  #container-small,
  #container-large,
  .site-news_letter-container-small,
  .site-news_letter-container-large {
    padding: 0 30px;
  }
  .home-highlights-item {
    padding: 50px 25px 55px 25px;
  }
  .slick-arrow.slick-prev {
    left: -20px;
  }
  .slick-arrow.slick-next {
    right: -20px;
  }
  .partners-popup-wrap {
    padding-top: 80px;
  }
  .close-btn {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 1080px) {
  .partners-popup-hero,
  .partners-popup-body-container {
    padding: 0 30px;
  }
  .page-expertise.partners .home_part_item {
    width: calc(33.33% - 40px);
  }
  .page-expertise .home_exp_item {
    width: calc(33.33% - 6px);
  }
  .team_mem {
    width: calc(33.33% - 34px);
  }
}
@media screen and (max-width: 1024px) {
  .site-header .header__nav-list {
    width: 70%;
  }
  .site-header .header__nav-list ul li {
    padding: 0 15px;
  }
  .site-header .header__nav_sidebar {
    width: 30%;
  }
}
@media screen and (max-width: 960px) {
  html,
  body {
    font-size: 14px;
    line-height: 1.9;
  }
  .flex-row {
    flex-wrap: wrap;
  }
  .award_image {
    max-width: 90px;
  }
  .news_post_item {
    max-width: 100%;
  }
  .news_post_item .info {
    padding: 10px 15px;
  }
  .site-header {
    padding: 15px 0;
  }
  .site-header a {
    display: -moz-flex;
    display: flex;
  }
  .site-header .header__nav, .site-header-main .logo,
  .site-header .header__nav_sidebar {
    width: 33.33%;
    display: -moz-flex;
    display: flex;
    -moz-align-items: center;
    align-items: center;
  }
  .site-header-main .logo {
    -moz-justify-content: center;
    justify-content: center;
  }
  .site-header .header__nav_sidebar {
    -moz-justify-content: flex-end;
    justify-content: flex-end;
  }
  .site-footer {
    padding-top: 35px;
  }
  .site-footer p {
    text-align: center;
  }
  .site-footer-wrap {
    flex-wrap: wrap;
    padding-bottom: 40px;
  }
  .site-footer ul {
    width: 100%;
    -moz-justify-content: center;
    justify-content: center;
  }
  .site-footer-nav {
    flex-wrap: wrap;
  }
  .site-footer-nav .flex-col-25 {
    width: 100%;
    -moz-justify-content: center;
    justify-content: center;
    padding: 15px 0;
    text-align: center;
  }
  .site-footer-nav .logo {
    margin: 0 auto;
  }
  .site-footer-nav h6 {
    margin-bottom: 8px;
  }
  .site-footer-nav, .site-footer-social {
    width: 100%;
    -moz-justify-content: center;
    justify-content: center;
  }
  .site-footer-end {
    flex-direction: column;
  }
  .home-banner {
    -moz-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .home-banner-img {
    min-height: 300px;
  }
  .home-banner-con, .home-banner-img {
    width: 100%;
  }
  .home-banner-con {
    font-size: 16px;
    padding: 25px 0 50px;
  }
  .home-banner-con h1 {
    max-width: 280px;
    margin-bottom: 20px;
  }
  .home-banner-con .content {
    max-width: 100%;
  }
  .home-highlights {
    padding: 50px 0;
  }
  .home-highlights-wrap {
    margin: -40px 0 70px;
  }
  .home-highlights h2 {
    font-size: 20px;
    max-width: 100%;
  }
  .home-highlights-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .home-highlights-item .flex-row {
    -moz-align-items: center;
    align-items: center;
  }
  .home-highlights-item h3 {
    margin-bottom: 0;
  }
  .home-highlights-item .content {
    margin-bottom: 30px;
  }
  .home_exp {
    padding-top: 40px;
    background-position: unset;
  }
  .home_exp .h1 {
    margin-bottom: 33px;
  }
  .home_exp_item {
    padding: 33px 40px 40px 30px;
  }
  .home_part {
    padding: 58px 0 77px;
    margin-bottom: 27px;
  }
  .home_part .h1 {
    font-size: 40px;
  }
  .home_part_container {
    line-height: 1.5;
  }
  .home_part_item {
    min-height: 346px;
    margin: 0 10px;
  }
  .partners-img {
    min-height: 400px;
    max-width: 320px;
    margin: 0 auto;
  }
  .partners-info {
    padding-top: 30px;
  }
  .partners-info .h1 {
    margin-bottom: 15px;
  }
  .partners-popup {
    line-height: 1.9;
  }
  .partners-popup-hero {
    -moz-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .partners-popup-body {
    margin-top: 0;
    padding: 30px 0 50px;
  }
  .partners-popup-body-exp {
    margin-bottom: 20px;
  }
  .partners-popup-body-info .experience,
  .partners-popup-body-info .content {
    max-width: 100%;
  }
  .partners-popup-body-info .experience-blk {
    margin-bottom: 12px;
  }
  .breadcrumbs {
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .page-wrap {
    padding: 30px 0;
  }
  .page-pricing .page-wrap {
    padding-bottom: 80px;
  }
  .page-pricing-wrap {
    padding-bottom: 50px;
  }
  .page-pricing-info {
    padding: 40px 0;
    font-size: 30px;
    line-height: 1.3;
  }
  .page-pricing-arng {
    margin: -30px 0 30px;
  }
  .page-pricing-arng-img {
    min-height: 320px;
  }
  .page-pricing-arng-con {
    padding: 30px;
  }
  .page-pricing-wrap .h2 {
    font-size: 25px;
    margin-bottom: 15px;
  }
  .page-pricing-wrap .content {
    line-height: 1.9;
  }
  .page-pricing-policy {
    padding: 0;
  }
  .page-pricing-policy .content {
    line-height: 1.9;
  }
  .page-expertise.partners .page-expertise-wrap {
    margin-bottom: 25px;
  }
  .page-expertise.partners .page-wrap.team h1 {
    margin-bottom: 50px;
  }
  .page-expertise-wrap {
    margin-bottom: 25px;
  }
  .page-expertise.partners .home_part_item {
    width: calc(50% - 20px);
  }
  .page-expertise.partners .home_part_wrap {
    margin: -70px -20px 40px;
  }
  .page-expertise.partners .page-wrap {
    padding-bottom: 100px;
  }
  .page-expertise.page-pricing .page-wrap {
    padding-bottom: 80px;
  }
  .page-expertise .home_exp_wrap {
    margin: -40px 0 40px;
  }
  .page-expertise .home_exp_item {
    width: calc(50% - 6px);
  }
  .page-contact-form {
    padding-bottom: 40px;
  }
  .page-contact .page-wrap {
    padding-bottom: 50px;
  }
  .page-contact-hero {
    margin: -30px 0 30px;
  }
  .page-contact-item {
    margin-right: 0;
    margin-bottom: 15px;
    padding: 25px;
    line-height: 1.9;
  }
  .page-contact-item h6 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .form-container {
    width: 100%;
    margin-bottom: 10px;
  }
  .form-container h6 {
    font-size: 20px;
  }
  [class*=flex-col-] {
    width: 100% !important;
  }
  .slick-arrow {
    width: 30px;
    height: 30px;
    background-size: 12px auto;
  }
  .single-expertise-wrap {
    margin-bottom: 30px;
  }
  .single-expertise-features {
    margin: -70px 0 100px;
  }
  .single-expertise-hero {
    line-height: 1.9;
    padding: 20px 0 80px;
    margin-bottom: 30px;
  }
  .single-expertise-hero h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .single-expertise-hero .content {
    padding: 0;
  }
  .single-expertise-features {
    padding: 20px 30px 25px;
  }
  .single-expertise-features ul li {
    line-height: 1.9;
  }
  .single-expertise-features-wrap .features.contact_blk > ul {
    padding-left: 0;
  }
  .team_mem {
    width: calc(50% - 34px);
  }
  .fixed-topmenu,
  .top-header {
    display: none;
  }
  header.header .bottom-header {
    display: block !important;
    padding: 15px 0;
  }
  header.header .bottom-header a.logo {
    display: flex;
  }
  header.header .bottom-header img {
    max-height: 70px;
  }
  header.header .bottom-header .burger {
    display: flex;
  }
  .page-section-main .courses-section {
    padding-left: 30px;
    padding-right: 30px;
  }
  footer.site-footer .site-footer-wrap .widget_nav_menu:last-child {
    padding-left: 0;
  }
  header.header {
    position: relative;
    background-color: #fff;
  }
  header.header.fixed {
    padding: 20px 0;
  }
  body.show-site-menu::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
  }
  header.header .bottom-header .nav--main {
    display: none !important;
    position: absolute;
    left: 0;
    top: 93px;
    width: 100%;
    visibility: visible;
    pointer-events: none;
    opacity: 0;
    transition: all 0.2s ease-in 0.6s;
    z-index: 1;
    background: #f8f9fa;
    align-items: flex-start;
    padding: 30px;
  }
  .show-site-menu header.header .bottom-header .nav--main {
    display: flex !important;
    visibility: visible;
    pointer-events: initial;
    opacity: 1;
    z-index: 99;
  }
  header.header .bottom-header .nav--main > ul > li.largemenu_start > a:after {
    top: 23px !important;
    right: -20px;
  }
  header.header .bottom-header .nav--main ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
  }
  header.header .bottom-header .nav--main ul li {
    width: 100%;
  }
  header.header .bottom-header .nav--main ul li a {
    padding: 15px 20px !important;
    display: inline-block;
  }
  header.header .bottom-header .nav--main ul li .dynamic-content-container {
    display: none !important;
  }
  header.header .bottom-header .nav--main ul li > .nav--sub {
    display: none !important;
    position: relative;
    background-color: transparent;
  }
  header.header .bottom-header .nav--main ul li.active > .nav--sub {
    display: block !important;
    width: 100%;
    top: unset;
    left: unset;
  }
  header.header .bottom-header .nav--main ul li.active > .nav--sub .sub-menu {
    width: 100%;
    float: none;
    padding: 0 10px;
    height: auto !important;
  }
  header.header .bottom-header .nav--main ul li.active > .nav--sub .sub-menu li {
    float: none;
    width: 100%;
    margin-right: 0;
  }
  header.header .bottom-header .nav--main ul li.active > .nav--sub .sub-menu li a {
    padding: 0 !important;
  }
  .hero-section .hero-image {
    padding: 50px 30px;
    height: auto;
  }
  body.post-type-archive-product .container .row .col,
  body.tax-product_cat .container .row .col
   {
    margin-bottom: 16px;
  }
  header.header.fixed .bottom-header .staff-member {
    float: none;
    max-width: 100%;
    display: none;
  }
  .filter-block .col {
    margin-bottom: 16px;
  }
  .herobanner-section {
    padding: 30px;
    min-height: 400px !important;
  }
  .herobanner-section .wp-block-cover__inner-container {
    padding: 0;
  }
  .custom-lp-block, .page-section-main .conversion-block-lp {
    padding: 0 30px;
  }
  .page-section-main .case-rows ul li {
    padding: 0;
  }
  .page-section-main .case-rows ul li .wp-block-post-featured-image {
    height: auto;
  }
  .staff-section .staff-row {
    padding: 0;
    border: none;
  }
  .staff-section .staff-row .staff-item {
    width: 100%;
    border: none;
    margin-bottom: 20px;
  }
  .staff-section .staff-row .staff-item:nth-child(2n) {
    padding-left: 0;
  }
  .staff-section .staff-row .staff-item h3 {
    margin-bottom: 5px;
  }
  .pink-case-studies-columns-3, .pink-posts-columns-3{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 600px) {
  .page-expertise.partners .home_part_item {
    width: 100%;
    margin: 0 20px 20px;
  }
  .page-expertise .home_exp_item {
    width: 100%;
    margin-right: 0;
  }
  .single-expertise-features-wrap .features {
    width: 100%;
  }
  .team_mem {
    width: 100%;
  }
  .woo-result-count {
    display: none;
  }
  .pink-case-studies-columns-2, .pink-case-studies-columns-3,
  .pink-posts-columns-2, .pink-posts-columns-3{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}/*# sourceMappingURL=style.css.map */