/* Variables */
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
@import url("https://fonts.googleapis.com/css?family=Raleway");
html {
  --accent-dark: #917CCB;
  --accent-light: #C3A6CE;
  --black: #000;
  --light-grey: #F8F7F7;
  --dark-grey: #81838C;
  --section-bg-grey-color: #F9F8FB;
}

/* Variables */
/* begin::general */
* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins';
  text-decoration: none;
  border: none;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

img:not(.img-contain) {
  -o-object-fit: cover;
     object-fit: cover;
}

html {
  font-size: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
  z-index: -9999;
}

section {
  overflow-x: hidden;
}

/* end::general */
/* begin::form settings */
/* form-select-buttons */
#id_online {
  height: 63px;
  border: none;
  overflow: hidden;
}

@media (max-width: 575px) {
  #id_online {
    height: 117px;
  }
}

#id_online:focus-visible {
  outline: none !important;
}

#id_online::-moz-focus-inner {
  border: 0;
}

#id_online:focus {
  outline: none;
}

#id_online option {
  padding: 12px 20px;
  text-align: center;
  margin-right: 20px;
  display: inline-block;
  cursor: pointer;
  border: solid 1px var(--black);
  border-radius: 7px;
  color: solid 1px var(--black);
}

@media (max-width: 575px) {
  select[name="zajecia_online"] {
    height: 50px !important;
  }
}

#id_online input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

#id_online label {
  padding: 13px 20px;
  text-align: center;
  margin-right: 20px;
  display: inline-block;
  cursor: pointer;
  border: solid 1px var(--black);
  border-radius: 7px;
  color: solid 1px var(--black);
}

@media (max-width: 767px) {
  #id_online label {
    padding: 13px 10px;
  }
}

#id_online .frm-check {
  margin-top: 5px;
}

@media (max-width: 767px) {
  #id_online .frm-check label {
    font-size: 12px;
  }
}

#id_online .form-check-input:checked + .form-check-label {
  background-color: var(--accent-dark) !important;
  color: #fff !important;
}

@media (max-width: 575px) {
  #id_online .form-check-label {
    margin-bottom: 5px;
  }
}

/* form-select-buttons */
.form-check-input:checked {
  background-color: var(--black);
  border-color: var(--black);
}

.form-check-input:focus {
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

/* begin::password-show-hide */
input.show-hide-passwd {
  position: relative;
}

img.show-hide-passwd-img {
  position: absolute;
  bottom: 18px;
  right: 15px;
  cursor: pointer;
}

.show-hide-passwd-label {
  display: block;
  position: relative;
}

/* end::password-show-hide */
select option {
  -webkit-transition: all 0s;
  transition: all 0s;
}

select option:hover,
select option:focus,
select option:active {
  background: -webkit-gradient(linear, left top, left bottom, from(var(--accent-dark)), to(var(--accent-dark)));
  background: linear-gradient(var(--accent-dark), var(--accent-dark));
  background-color: var(--accent-dark) !important;
  /* for IE */
  color: #fff !important;
}

select option:checked {
  background: -webkit-gradient(linear, left top, left bottom, from(var(--accent-dark)), to(var(--accent-dark)));
  background: linear-gradient(var(--accent-dark), var(--accent-dark));
  background-color: #d6d6d6 !important;
  /* for IE */
  color: #fff !important;
}

input[type="text"], input[type="password"], input[type="date"], input[type="tel"], input[type="email"], input[type="number"],
textarea {
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  border-radius: 10px;
  padding: 15px 20px !important;
  border: 1px solid var(--black);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

@media (max-width: 768px) {
  input[type="text"], input[type="password"], input[type="date"], input[type="tel"], input[type="email"], input[type="number"],
  textarea {
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
  }
}

@media (max-width: 575px) {
  input[type="text"], input[type="password"], input[type="date"], input[type="tel"], input[type="email"], input[type="number"],
  textarea {
    font-size: 12px;
  }
}

label .label {
  background-color: var(--box-color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: -10px;
  padding-left: 10px;
  left: 15px;
  padding-right: 10px;
  color: var(--h4-color);
  border-radius: 12px;
  z-index: 999;
}

select {
  outline: none;
}

hr {
  background-color: #70707050;
}

select:focus-visible {
  outline: none !important;
}

/* end::form settings */
/* begin::scroll */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #eee;
  border-radius: 0px;
}

::-webkit-scrollbar-thumb {
  background: var(--accent-dark);
  border-radius: 50px;
}

/* end::scroll */
/* begin::fonts */
@font-face {
  font-family: 'bold-lining';
  font-style: normal;
  font-weight: normal;
  src: local("Tangerine"), url("/wp-content/themes/edumni/assets/fonts/bold-lining.ttf") format("truetype");
}

h1 {
  font-size: 80px;
  font-weight: 600;
  line-height: 84px;
  color: var(--black);
}

@media (max-width: 1399px) {
  h1 {
    font-size: 60px;
    line-height: 60px;
  }
}

@media (max-width: 991px) {
  h1 {
    font-size: 44px;
    line-height: 47px;
  }
}

h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 48px;
  color: var(--black);
}

@media (max-width: 1199px) {
  h2 {
    font-size: 35px;
    line-height: 44px;
  }
}

@media (max-width: 991px) {
  h2 {
    font-size: 30px;
    font-weight: 600;
    line-height: 44px;
  }
}

h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: var(--black);
}

@media (max-width: 991px) {
  h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
  }
}

h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  color: var(--black);
}

@media (max-width: 991px) {
  h4 {
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
  }
}

h4.heading {
  color: var(--accent-color);
  text-transform: uppercase;
  margin-bottom: 0;
}

h4.lining-font {
  font-family: 'bold-lining';
  font-size: 50px;
  font-weight: 400;
  line-height: 36px;
  color: #000;
}

@media (max-width: 768px) {
  h4.lining-font {
    font-size: 30px;
    line-height: 24px;
  }
}

h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: var(--black);
}

@media (max-width: 991px) {
  h5 {
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
  }
}

h6 {
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
  color: var(--black);
}

@media (max-width: 991px) {
  h6 {
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
  }
}

h6.heading {
  position: relative;
  padding-left: 50px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

h6.heading:before {
  content: url(/wp-content/themes/edumni/assets/img/heading-line.svg);
  position: absolute;
  top: -3px;
  left: 0px;
}

@media (max-width: 991px) {
  h6.heading.text-center {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}

h6.center {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: auto;
}

a:hover {
  color: var(--accent-dark);
}

p, li, a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 28px;
  color: #81838C;
}

@media (max-width: 768px) {
  p, li, a {
    font-size: 12px;
    line-height: 20px;
  }
}

p.lining-font, li.lining-font, a.lining-font {
  font-family: 'bold-lining';
  font-size: 50px;
  font-weight: 400;
  line-height: 36px;
  color: #000;
}

@media (max-width: 768px) {
  p.lining-font, li.lining-font, a.lining-font {
    font-size: 30px;
    line-height: 24px;
  }
}

.accent {
  color: var(--accent-dark) !important;
  text-decoration: none;
  font-weight: 500;
}

/* end::fonts */
/* begin::buttons */
.btn-accent {
  border-radius: 10px;
  background-color: var(--accent-dark) !important;
  color: #fff;
  padding: 16px 37px;
  font-size: 14px;
  line-height: 19px;
  font-weight: 600;
}

.btn-accent:hover {
  color: #fff;
  background-color: var(--accent-dark) !important;
  opacity: .86;
}

.add-photo {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #000;
  border-radius: 10px;
  padding: 13px;
  text-align: left;
  color: #81838C;
}

.btn-black {
  border-radius: 10px;
  background-color: var(--black);
  color: #fff;
  padding: 13px 37px;
  font-size: 14px;
  line-height: 21px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .btn-black {
    font-size: 10px !important;
  }
}

@media (max-width: 300px) {
  .btn-black {
    padding: 13px 30px;
  }
}

.btn-black.small {
  padding: 8px 15px;
}

.btn-black.medium {
  padding: 17px 26px;
  font-size: 17px;
}

.btn-black.big {
  padding: 30px 73px;
  font-size: 19px;
}

@media (max-width: 768px) {
  .btn-black.big {
    font-size: 12px;
    padding: 13px 27px;
  }
}

.btn-black:hover {
  color: #fff;
  background-color: var(--black);
  opacity: .86;
}

.input-group .btn-fb {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.btn-fb {
  border-radius: 10px !important;
  border: 0px solid !important;
  background-color: #337AEF !important;
  color: #fff !important;
  padding: 15px 37px !important;
  font-size: 14px !important;
  line-height: 21px !important;
  font-weight: 600 !important;
}

@media (max-width: 575px) {
  .btn-fb {
    font-size: 10px !important;
  }
}

.btn-fb:hover {
  color: #fff !important;
  background-color: #337AEF !important;
  opacity: 0.86 !important;
}

.input-group-prepend.btn-fb {
  padding: 15px 0 !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-top-left-radius: 7px !important;
  border-bottom-left-radius: 7px !important;
}

.input-group-prepend.btn-fb:focus {
  outline: none !important;
  border: 0px solid !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.input-group-prepend.btn-fb .input-group-text {
  background-color: rgba(0, 0, 0, 0) !important;
  border: 0px solid !important;
}

.btn-linkedin {
  border-radius: 10px !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  background-color: #0077B7 !important;
  border: 0px solid !important;
  color: #fff !important;
  padding: 15px 37px !important;
  font-size: 14px !important;
  line-height: 21px !important;
  font-weight: 600 !important;
}

.btn-linkedin:hover {
  color: #fff !important;
  background-color: #0077B7 !important;
  opacity: 0.86 !important;
}

.input-group-prepend.btn-linkedin {
  padding: 15px 0 !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-top-left-radius: 7px !important;
  border-bottom-left-radius: 7px !important;
}

.input-group-prepend.btn-linkedin:focus {
  outline: none !important;
  border: 0px solid !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.input-group-prepend.btn-linkedin .input-group-text {
  background-color: rgba(0, 0, 0, 0) !important;
  border: 0px solid !important;
}

.btn-twitter {
  border-radius: 10px !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border: 0px solid !important;
  background-color: #45AAF0 !important;
  color: #fff !important;
  padding: 15px 37px !important;
  font-size: 14px !important;
  line-height: 21px !important;
  font-weight: 600 !important;
}

.btn-twitter:hover {
  color: #fff !important;
  background-color: #45AAF0 !important;
  opacity: 0.86 !important;
}

.input-group-prepend.btn-twitter {
  padding: 15px 0 !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-top-left-radius: 7px !important;
  border-bottom-left-radius: 7px !important;
}

.input-group-prepend.btn-twitter:focus {
  outline: none !important;
  border: 0px solid !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.input-group-prepend.btn-twitter .input-group-text {
  background-color: rgba(0, 0, 0, 0) !important;
  border: 0px solid !important;
}

.btn-outline {
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid var(--black);
  color: var(--black);
  padding: 13px 37px;
  font-size: 14px;
  line-height: 21px;
  font-weight: 600;
}

.btn-outline.small {
  padding: 8px 17px;
}

.btn-outline.medium {
  padding: 17px 26px;
  font-size: 17px;
}

.btn-outline.big {
  padding: 30px 97px;
  font-size: 19px;
}

@media (max-width: 768px) {
  .btn-outline.big {
    font-size: 12px;
    padding: 13px 87px;
  }
}

.btn-outline:hover {
  color: #fff;
  background-color: var(--black);
  opacity: .86;
}

.animated-btn {
  position: relative;
}

:focus-visible {
  outline: #1e1a1945 auto 1px !important;
}

.btn-accent-outline {
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 600;
  border: 2px solid var(--accent-color);
  border-radius: 10px;
  padding: 12px 30px;
  text-transform: uppercase;
}

.btn-accent-outline:hover {
  color: var(--accent-color);
}

/* end::buttons */
/* begin::navbar */
nav.active .navbar-toggler.mobile-navbar {
  padding-left: 25px !important;
}

@media (min-width: 992px) {
  .create-acc-holder:hover .create-acc-button {
    border-bottom-right-radius: 0;
  }
}

li:has(.menuToggle), li:has(.btn-black) {
  margin-right: 0 !important;
}

.menu ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu ul li {
  position: relative;
}

/* Dropdown starts */
.menuWP ul ul:not(.overflow-auto) {
  background: #fff;
  border-radius: 15px;
  border-top-right-radius: 0;
  border: 1px solid var(--black);
  display: none;
  right: 0;
  min-width: 223px;
  position: absolute;
  top: 110%;
  z-index: 999999;
}

@media (max-width: 991px) {
  .menuWP ul ul:not(.overflow-auto) {
    top: 100%;
  }
}

@media (max-width: 991px) {
  .menuWP ul ul:not(.overflow-auto) {
    min-width: 100%;
    text-align: center;
  }
}

.menuWP ul li:hover ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#floating-header {
  overflow: initial;
}

.sub-menu li a {
  padding: 1rem 0 !important;
}

.header .sub-menu:before {
  content: url(https://sitters.eplee.io/wp-content/themes/sitters/assets/img/star1.png);
  position: absolute;
  right: 0;
  top: 0;
}

.header .sub-menu {
  background-color: #fff !important;
  border: 2px solid var(--accent-dark);
}

.header.navbar-scrolled .sub-menu {
  background-color: #f9f5f0f2 !important;
}

.sub-menu {
  padding: 2rem;
}

/* Dropdown ends */
.menu li {
  margin: 0px 15px;
}

@media (max-width: 1399px) {
  .menu li {
    margin: 0px 15px !important;
  }
}

@media (max-width: 991px) {
  .menu li {
    margin: 25px !important;
    margin-bottom: 0 !important;
  }
}

.navbar a:not(.btn-black) {
  color: var(--black);
}

.navbar a {
  font-weight: 600;
}

.navbar {
  padding: 20px 0 !important;
}

.menu a {
  font-size: 14px;
  line-height: 19px;
  text-decoration: none;
}

@media (max-width: 991px) {
  .menu a:not(.heading) {
    color: #81838C !important;
  }
  .menu a.heading:not(.btn-black) {
    font-size: 18px !important;
  }
}

.navbar-toggler:focus {
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

.navbar-toggler {
  border: none;
}

.hero-navi-fixed {
  background-color: #fff;
}

.navbar.active {
  height: 100vh;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
}

.navbar.active.hero-navi-fixed {
  background-color: #fff;
  height: 100vh;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.navbar img {
  max-width: 180px;
}

/* end::navbar */
/* begin::footer */
footer {
  background-color: var(--black);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

footer hr {
  margin-top: 80px;
  color: #81838C;
  opacity: 0.3 !important;
}

footer .input-group button {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

footer input {
  background-color: #fff !important;
}

footer.with-cta {
  padding-top: 129px;
}

@media (min-width: 1600px) {
  footer::before {
    content: url(/wp-content/themes/edumni/assets/img/decoration.png);
    position: absolute;
    left: -200px;
    top: 0px;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  footer::after {
    content: url(/wp-content/themes/edumni/assets/img/decoration.png);
    position: absolute;
    right: -200px;
    top: 180px;
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
  }
}

footer .footer-content {
  border-top: 2px solid #0000001A;
  padding-top: 60px;
}

@media (max-width: 768px) {
  footer .footer-content {
    padding-top: 60px;
  }
}

footer a:not(.btn) {
  margin-bottom: 10px;
  text-decoration: none;
}

footer h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
}

footer hr {
  color: #81838C;
  opacity: 1;
}

footer .copyright-bar span {
  color: #fff;
}

footer .main-logo {
  max-width: 250px;
}

footer img {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

footer .input-group {
  margin-top: 5px;
}

footer .input-group button {
  background-color: var(--accent-dark);
  color: #fff;
  padding: 27px 31px;
}

/* end::footer */
span.marker {
  display: inline-block;
}

/* begin::hero-section */
.hero-content h1 {
  margin-right: auto !important;
  margin-left: auto !important;
}

@media (min-width: 768px) {
  .hero-content h1 {
    margin-left: 0 !important;
  }
}

.hero-section {
  position: relative;
  overflow: visible;
}

@media (max-width: 991px) {
  .hero-section .image-column {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.hero-section h1 {
  margin-bottom: 30px;
  max-width: 527px;
}

@media (max-width: 1399px) {
  .hero-section h1 {
    max-width: 398px;
  }
}

@media (max-width: 1199px) {
  .hero-section h1 {
    font-size: 44px;
    max-width: 500px;
  }
}

@media (max-width: 991px) {
  .hero-section h1 {
    font-size: 41px;
    max-width: 500px;
  }
}

.hero-section h1 span.marker {
  position: relative;
}

.hero-section h1 span.marker:before {
  content: url(/wp-content/themes/edumni/assets/img/marker.svg);
  position: absolute;
  right: -50px;
  top: -25px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .hero-section h1 span.marker:before {
    right: -85px;
    top: -47px;
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
}

@media (max-width: 1199px) {
  .hero-section h1 span.marker:before {
    right: -117px;
    top: -50px;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
}

@media (max-width: 991px) {
  .hero-section h1 span.marker:before {
    right: -127px;
    top: -57px;
    -webkit-transform: scale(0.45);
            transform: scale(0.45);
  }
}

@media (max-width: 578px) {
  .hero-section h1 span.marker:before {
    right: 0px;
    top: 0px;
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
    content: url(/wp-content/themes/edumni/assets/img/marker-mobile.svg);
  }
}

.hero-section p {
  max-width: 300px;
}

.hero-section .buttons-holder {
  margin-top: 46px;
}

@media (max-width: 768px) {
  .hero-section .buttons-holder {
    margin-top: 17px;
    width: 100%;
  }
}

.hero-section .buttons-holder .btn-black {
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .hero-section .buttons-holder .btn-black {
    margin-bottom: 9px;
  }
}

@media (max-width: 1199px) {
  .hero-section img {
    height: 773px;
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }
}

@media (max-width: 991px) {
  .hero-section img {
    height: 473px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media (max-width: 768px) {
  .hero-section img {
    height: unset;
  }
}

@media (max-width: 575px) {
  .hero-section img {
    margin-top: -30px;
  }
}

@media (min-width: 768px) {
  .hero-section:before {
    content: "";
    position: absolute;
    background-image: url(/wp-content/themes/edumni/assets/img/hero.png);
    background-size: cover;
    right: 0;
    top: 0;
  }
}

@media (min-width: 768px) and (min-width: 1920px) {
  .hero-section:before {
    right: unset;
    left: 50vw;
  }
}

@media (min-width: 768px) and (max-width: 1399px) {
  .hero-section:before {
    width: 648px;
    height: 829px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .hero-section:before {
    width: 496px;
    height: 630px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-section:before {
    width: 240px;
    height: 670px;
  }
}

@media (min-width: 768px) and (max-width: 768px) {
  .hero-section:before {
    width: 360px;
    height: 470px;
  }
}

/* end::hero-section */
/* begin::how-it-works */
.how-it-works {
  background-color: var(--section-bg-grey-color);
  padding-top: 88px;
  padding-bottom: 88px;
  z-index: -2;
  position: relative;
}

.how-it-works .how-it-works-content h2 .text-center {
  text-align: center !important;
}

@media (min-width: 992px) {
  .how-it-works .how-it-works-content h2 {
    text-align: left !important;
  }
}

@media (max-width: 767px) {
  .how-it-works {
    margin-top: -60px;
  }
}

.how-it-works h2 {
  margin-bottom: 30px;
}

.how-it-works h2 span {
  position: relative;
}

.how-it-works h2 span:before {
  content: url(/wp-content/themes/edumni/assets/img/animated-button-bg.svg);
  position: absolute;
  top: 10px;
  right: 40px;
  z-index: -1;
}

@media (max-width: 1199px) {
  .how-it-works h2 span:before {
    right: 10px;
  }
}

@media (max-width: 991px) {
  .how-it-works h2 span:before {
    right: 9px;
    top: 0;
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
}

.how-it-works p.big {
  font-size: 23px;
  line-height: 32px;
}

@media (max-width: 991px) {
  .how-it-works p.big {
    font-size: 16px;
    line-height: 26px;
  }
}

.how-it-works .flex-gap {
  gap: 119px;
}

.how-it-works .author {
  margin-top: 10px;
}

.how-it-works .author img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  height: 50px;
  width: 50px;
}

.how-it-works .author p {
  line-height: 21px;
}

.how-it-works .splide__pagination {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.how-it-works .splide__pagination .splide__pagination__page.is-active {
  background-color: var(--accent-dark);
}

/* end::how-it-works */
/* begin::find-us-section */
.find-us-section {
  overflow: hidden;
}

@media (min-width: 1200px) {
  .find-us-section .content-column {
    padding-left: 100px;
  }
}

@media (max-width: 1199px) {
  .find-us-section .content-column {
    padding-left: 50px;
  }
}

@media (max-width: 991px) {
  .find-us-section .content-column {
    padding-left: calc(var(--bs-gutter-x) * .5);
  }
}

@media (max-width: 575px) {
  .find-us-section .content-column p.lining-font {
    max-width: 254px;
    margin-left: auto;
    margin-right: auto;
  }
}

.find-us-section .content-column h2 {
  font-size: 80px;
  font-weight: 600;
  line-height: 84px;
}

@media (max-width: 1399px) {
  .find-us-section .content-column h2 {
    font-size: 60px;
    line-height: 68px;
  }
}

@media (max-width: 1199px) {
  .find-us-section .content-column h2 {
    font-size: 54px;
    line-height: 59px;
  }
}

@media (max-width: 991px) {
  .find-us-section .content-column h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

.find-us-section .content-column h2 span.marker {
  position: relative;
}

.find-us-section .content-column h2 span.marker.marker:before {
  content: url(/wp-content/themes/edumni/assets/img/marker2.svg);
  position: absolute;
  right: -40px;
  bottom: -20px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .find-us-section .content-column h2 span.marker.marker:before {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
    right: -75px;
    bottom: -25px;
  }
}

@media (max-width: 1199px) {
  .find-us-section .content-column h2 span.marker.marker:before {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    right: -80px;
    bottom: -25px;
  }
}

@media (max-width: 991px) {
  .find-us-section .content-column h2 span.marker.marker:before {
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
    right: -130px;
    bottom: -25px;
  }
}

.find-us-section .btn-black {
  -webkit-box-shadow: 5px 5px 20px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 5px 5px 20px 5px rgba(0, 0, 0, 0.15);
  padding: 18px 37px;
}

.find-us-section img {
  margin-bottom: -10px;
}

.find-us-section img.d-lg-none {
  max-width: 375px !important;
}

@media (max-width: 767px) {
  .find-us-section img.d-lg-none {
    max-width: 274px !important;
  }
}

/* end::find-us-section */
/* begin::offer-section */
.offer-section {
  background-color: var(--black);
  z-index: -2;
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .offer-section {
    padding-top: 42px;
    padding-bottom: 31px;
  }
}

.offer-section .content-column * {
  color: #fff;
}

.offer-section .content-column h6:before {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.offer-section .content-column p {
  font-size: 36px;
}

@media (max-width: 575px) {
  .offer-section .content-column p {
    max-width: 230px;
    margin-left: auto;
    margin-right: auto;
  }
}

.offer-section .content-column h2 {
  font-size: 52px;
  line-height: 68px;
}

@media (max-width: 1399px) {
  .offer-section .content-column h2 {
    font-size: 45px;
    line-height: 55px;
  }
}

@media (max-width: 1199px) {
  .offer-section .content-column h2 {
    font-size: 35px;
    line-height: 44px;
  }
}

@media (max-width: 575px) {
  .offer-section .content-column h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

.offer-section .content-column h2 span.marker {
  position: relative;
}

.offer-section .content-column h2 span.marker.marker:before {
  content: url(/wp-content/themes/edumni/assets/img/marker3.svg);
  position: absolute;
  right: -20px;
  bottom: -10px;
  z-index: -1;
}

@media (max-width: 1199px) {
  .offer-section .content-column h2 span.marker.marker:before {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    right: -40px;
    bottom: -15px;
  }
}

.offer-section .card-column .card {
  background-color: #fff;
  border-radius: 15px;
  padding: 34px 20px !important;
}

.offer-section .card-column .card img {
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}

@media (max-width: 767px) {
  .offer-section .card-column .card p {
    margin-bottom: 0px;
  }
}

/* end::offer-section */
/* begin::testimonials-section */
.testimonials-section {
  padding-top: 72px;
  padding-bottom: 300px;
  background-color: #F9F8FB;
  position: relative;
  z-index: -2;
  margin-bottom: -65px;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding-bottom: 260px;
  }
}

.testimonials-section .image img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonials-section .splide__pagination .splide__pagination__page.is-active {
  background-color: var(--accent-dark);
}

.testimonials-section .splide__slide:nth-child(2n) .quote img {
  -webkit-filter: brightness(0) opacity(0.2);
          filter: brightness(0) opacity(0.2);
}

.testimonials-section .splide__track {
  overflow: visible;
}

.testimonials-section h6 {
  margin-bottom: 24px;
}

@media (max-width: 575px) {
  .testimonials-section p.lining-font {
    max-width: 230px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }
}

.testimonials-section h2 {
  margin-bottom: 32px;
}

@media (min-width: 1399px) {
  .testimonials-section h2 {
    font-weight: 700 !important;
  }
}

@media (max-width: 575px) {
  .testimonials-section h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
  }
}

.testimonials-section h2 span.marker {
  position: relative;
}

.testimonials-section h2 span.marker.marker:before {
  content: url(/wp-content/themes/edumni/assets/img/marker4.svg);
  position: absolute;
  right: 15px;
  bottom: -15px;
  z-index: -1;
}

@media (max-width: 1199px) {
  .testimonials-section h2 span.marker.marker:before {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    right: 0;
  }
}

@media (max-width: 991px) {
  .testimonials-section h2 span.marker.marker:before {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
    right: -20px;
  }
}

.testimonials-section .testimonial-cards {
  margin-top: 45px;
}

@media (max-width: 575px) {
  .testimonials-section .testimonial-cards {
    margin-top: 30px;
  }
}

.testimonials-section .testimonial-cards .flex-gap {
  gap: 59px;
}

.testimonials-section .testimonial-cards .single-card {
  background-color: #fff;
  -webkit-filter: drop-shadow(5px 5px 60px #00000026);
          filter: drop-shadow(5px 5px 60px #00000026);
  border-radius: 10px;
  padding: 45px;
}

@media (max-width: 575px) {
  .testimonials-section .testimonial-cards .single-card {
    padding: 20px;
    padding-bottom: 50px;
  }
}

@media (max-width: 991px) {
  .testimonials-section .testimonial-cards .single-card .quote {
    position: absolute;
    bottom: 10px;
    right: 10px;
  }
}

.testimonials-section .testimonial-cards .single-card .author {
  color: #000;
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 575px) {
  .testimonials-section .testimonial-cards .single-card .author {
    font-size: 14px;
    line-height: 20px;
  }
}

.testimonials-section .testimonial-cards .single-card .card-content {
  font-size: 16px;
}

@media (max-width: 575px) {
  .testimonials-section .testimonial-cards .single-card .card-content {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
  }
}

/* end::testimonials-section */
/* begin::cta-section */
.cta-section {
  margin-bottom: -263px;
  z-index: 1;
  position: relative;
  -webkit-transform: translateY(-148px);
          transform: translateY(-148px);
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section .content-holder {
  background-color: var(--accent-dark);
  -webkit-filter: drop-shadow(0px 4px 4px #00000040);
          filter: drop-shadow(0px 4px 4px #00000040);
  border-radius: 15px;
  padding: 52px 64px;
  position: relative;
  overflow: hidden;
  z-index: -2;
}

@media (max-width: 390px) {
  .cta-section .content-holder {
    padding: 52px 30px;
  }
  .cta-section .content-holder .btn-black {
    font-size: 14px;
  }
}

.cta-section .content-holder h2 {
  max-width: 600px;
  color: #fff;
  -webkit-filter: drop-shadow(0px 4px 4px #00000040);
          filter: drop-shadow(0px 4px 4px #00000040);
  margin-bottom: 0;
  line-height: 60px;
  font-size: 44px;
}

@media (max-width: 1199px) {
  .cta-section .content-holder h2 {
    line-height: 52px;
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .cta-section .content-holder h2 {
    font-size: 22px;
    line-height: 28px;
  }
}

.cta-section .content-holder:before {
  height: 800px;
  width: 800px;
  border-radius: 50%;
  position: absolute;
  top: -400px;
  right: -400px;
  background-color: #fff;
  z-index: -1;
}

@media (min-width: 1200px) {
  .cta-section .content-holder:before {
    content: "";
  }
}

.cta-section .content-holder .btn-black {
  -webkit-filter: drop-shadow(0px 4px 4px #00000026);
          filter: drop-shadow(0px 4px 4px #00000026);
}

@media (max-width: 1199px) {
  .cta-section .content-holder .btn-black {
    background-color: #fff;
    color: var(--black);
    -webkit-filter: drop-shadow(0px 4px 4px #00000040);
            filter: drop-shadow(0px 4px 4px #00000040);
  }
}

/* end::cta-section */
/* begin::register-section */
.register-section {
  margin-top: 86px;
  margin-bottom: 300px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: -20px;
}

@media (max-width: 1600px) {
  .register-section {
    background-position-x: -150px;
  }
}

@media (max-width: 1399px) {
  .register-section {
    background-position-x: -350px;
  }
}

@media (max-width: 1199px) {
  .register-section {
    background-image: unset !important;
  }
}

@media (max-width: 1199px) {
  .register-section {
    margin-top: 0;
  }
}

@media (max-width: 575px) {
  .register-section {
    margin-bottom: 200px;
  }
}

.register-section .image-column {
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: translateX(-14vw);
          transform: translateX(-14vw);
}

@media (min-width: 1200px) {
  .register-section .image-column {
    background-image: unset !important;
  }
}

@media (max-width: 1199px) {
  .register-section .image-column {
    -webkit-transform: translateX(-112px);
            transform: translateX(-112px);
  }
}

@media (max-width: 991px) {
  .register-section .image-column {
    -webkit-transform: translateX(-127px);
            transform: translateX(-127px);
  }
}

@media (max-width: 575px) {
  .register-section .image-column {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
}

@media (max-width: 768px) {
  .register-section .image-column img {
    height: 53vw;
  }
}

@media (max-width: 575px) {
  .register-section .image-column img {
    height: 73vw;
  }
}

.register-section .acceptation {
  font-size: 10px;
  line-height: 15px;
  color: #81838C;
  margin-bottom: 20px;
}

.register-section .btn-fb {
  padding: 13px 37px;
}

.register-section h2 span.marker {
  position: relative;
}

.register-section h2 span.marker.marker:before {
  content: url(/wp-content/themes/edumni/assets/img/marker5.png);
  position: absolute;
  right: -20px;
  bottom: -20px;
  z-index: -1;
}

/* end::register-section */
/* begin::premium-slider-section */
.premium-slider .splide__arrow {
  background: #fff !important;
}

@media (min-width: 1399px) {
  .premium-slider h2 {
    font-size: 52px;
    line-height: 60px;
  }
}

.premium-slider-section {
  background-repeat: no-repeat;
  background-size: 60vw !important;
  z-index: -2;
  position: relative;
}

@media (min-width: 1200px) {
  .premium-slider-section {
    background-position: right !important;
  }
}

@media (max-width: 1199px) {
  .premium-slider-section {
    background-position: left !important;
  }
}

.premium-slider-section .splide__arrow {
  background: #fff !important;
}

.premium-slider-section .premium-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 1200px) {
  .premium-slider-section .premium-container {
    height: 600px;
  }
}

@media (max-width: 1199px) {
  .premium-slider-section .premium-container {
    margin-top: 20px;
  }
}

@media (max-width: 1199px) {
  .premium-slider-section {
    background-image: unset !important;
  }
}

@media (max-width: 1199px) {
  .premium-slider-section {
    margin-top: 0;
  }
}

.premium-slider-section .image-column {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
}

@media (min-width: 1200px) {
  .premium-slider-section .image-column {
    background-image: unset !important;
  }
}

@media (max-width: 1199px) {
  .premium-slider-section .image-column img {
    height: 373px;
  }
}

@media (max-width: 991px) {
  .premium-slider-section .image-column img {
    height: 273px;
  }
}

@media (max-width: 575px) {
  .premium-slider-section .image-column img {
    height: 173px;
  }
}

.premium-slider-section h2 span.marker {
  position: relative;
}

.premium-slider-section h2 span.marker.marker:before {
  content: url(/wp-content/themes/edumni/assets/img/premium-slider-marker.svg);
  position: absolute;
  right: -20px;
  bottom: -12px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .premium-slider-section h2 span.marker.marker:before {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    right: -40px;
  }
}

@media (max-width: 1199px) {
  .premium-slider-section h2 span.marker.marker:before {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    right: -50px;
  }
}

@media (max-width: 991px) {
  .premium-slider-section h2 span.marker.marker:before {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    right: -70px;
  }
}

.premium-slider .splide__slide:nth-child(2n) {
  right: unset !important;
  left: 0;
}

@media (min-width: 1299px) {
  .premium-slider .splide__slide:nth-child(2n) .premium-row {
    text-align: end !important;
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: end !important;
  }
}

@media (min-width: 1199px) {
  .premium-slider .splide__slide:nth-child(2n) .premium-row {
    width: 100% !important;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}

@media (min-width: 1200px) {
  .premium-slider .splide__slide:nth-child(2n) .premium-container {
    text-align: end !important;
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: end !important;
  }
}

.premium-slider .splide__slide:nth-child(2n) .content-column {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media (min-width: 1200px) {
  .premium-slider .splide__slide:nth-child(2n) .content-column {
    text-align: right !important;
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: end !important;
  }
}

.premium-slider .splide__slide:nth-child(2n) .premium-slider-section, .premium-slider .splide__slide:nth-child(2n) .image-column {
  background-position: left !important;
}

.premium-slider .splide__slide:nth-child(2n) .image-column {
  background-position: left !important;
}

/* end::premium-slider-section */
/* begin::login-section */
.login-section {
  margin-top: 50px;
  margin-bottom: 50px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
}

@media (max-width: 1199px) {
  .login-section {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1800px) {
  .login-section {
    background-position-x: 700px;
  }
}

@media (max-width: 1400px) {
  .login-section {
    background-position-x: 550px;
  }
}

@media (max-width: 1199px) {
  .login-section {
    background-image: unset !important;
  }
}

.login-section p {
  line-height: 30px !important;
}

.login-section .image-column {
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: translateX(12vw);
          transform: translateX(12vw);
}

@media (min-width: 1200px) {
  .login-section .image-column {
    background-image: unset !important;
  }
}

@media (max-width: 768px) {
  .login-section .image-column img {
    height: 53vw;
  }
}

@media (max-width: 575px) {
  .login-section .image-column img {
    height: 73vw;
  }
}

.login-section label {
  width: 100%;
}

.login-section h2 {
  margin-bottom: 41px;
  font-size: 32px;
}

.login-section h2 span.marker {
  position: relative;
}

.login-section h2 span.marker.marker:before {
  content: url(/wp-content/themes/edumni/assets/img/marker6.png);
  position: absolute;
  right: -10px;
  bottom: -16px;
  z-index: -1;
}

/* end::login-section */
/* begin::breadcrumbs-section */
.breadcrumbs-section {
  background-color: #F8F7F7;
  padding: 35px 0;
}

@media (max-width: 767px) {
  .breadcrumbs-section {
    padding: 15px 0;
  }
}

.breadcrumbs-section p {
  margin-bottom: 0;
}

.breadcrumbs-section p span {
  color: var(--black);
}

/* end::breadcrumbs-section */
/* begin::about-us-content-section */
.about-us-content-section {
  margin-top: 30px;
  margin-bottom: 90px;
}

@media (max-width: 1199px) {
  .about-us-content-section {
    margin-top: 0;
    padding: 100px 100px 0 100px;
  }
}

@media (max-width: 767px) {
  .about-us-content-section {
    padding: 100px 50px 0 50px;
  }
}

@media (max-width: 575px) {
  .about-us-content-section {
    padding: 100px 20px 0 20px;
  }
}

@media (max-width: 575px) {
  .about-us-content-section p.lining-font {
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }
}

.about-us-content-section h2 {
  font-size: 52px;
  line-height: 60px;
}

@media (max-width: 767px) {
  .about-us-content-section h2 {
    font-size: 35px;
    line-height: 50px;
  }
}

.about-us-content-section h2 span.marker {
  position: relative;
}

.about-us-content-section h2 span.marker.marker:before {
  content: url(/wp-content/themes/edumni/assets/img/marker5.png);
  position: absolute;
  right: -20px;
  bottom: -20px;
  z-index: -1;
}

@media (max-width: 767px) {
  .about-us-content-section h2 span.marker.marker:before {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    right: -40px;
  }
}

.about-us-content-section .container {
  border: 1px solid var(--black);
  border-radius: 14px;
  padding-top: 50px;
  padding-bottom: 92px;
}

.about-us-content-section .mobile-image {
  margin-top: -100px;
  margin-bottom: 34px;
}

.about-us-content-section .picto-card {
  padding: 35px;
}

@media (max-width: 575px) {
  .about-us-content-section .picto-card {
    padding: 18px 0;
  }
}

.about-us-content-section .picto-blocks {
  padding: 0 200px;
}

@media (max-width: 1199px) {
  .about-us-content-section .picto-blocks {
    padding: 0 40px;
    margin: auto;
  }
}

@media (max-width: 1399px) {
  .about-us-content-section .picto-blocks {
    padding: 0 100px;
  }
}

@media (max-width: 1199px) {
  .about-us-content-section .picto-blocks {
    padding: 0 50px;
  }
}

.about-us-content-section .picto-blocks .lining-font {
  -webkit-transform: rotate(-1.94deg);
          transform: rotate(-1.94deg);
  font-size: 32px;
  line-height: 18px;
  color: #81838C;
}

.about-us-content-section .picto-blocks .picto-col {
  border-radius: 7px;
}

.about-us-content-section .picto-blocks .picto-col:nth-child(1) {
  background-color: var(--light-grey);
}

.about-us-content-section .picto-blocks .picto-col:nth-child(3) {
  background-color: var(--accent-dark);
}

.about-us-content-section .picto-blocks .picto-col:nth-child(3) img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.about-us-content-section .picto-blocks .picto-col:nth-child(3) * {
  color: #fff;
}

.about-us-content-section .text-with-images {
  padding-top: 80px;
  max-width: 700px;
  margin: auto;
  position: relative;
}

@media (max-width: 1199px) {
  .about-us-content-section .text-with-images {
    padding-top: 30px;
  }
}

.about-us-content-section .text-with-images p {
  max-width: 500px;
  margin: auto;
}

.about-us-content-section .text-with-images h2 {
  font-size: 32px;
  line-height: 40px;
  max-width: 500px;
  margin: auto;
}

.about-us-content-section .text-with-images:before {
  position: absolute;
  left: -370px;
  top: 0;
}

.about-us-content-section .text-with-images:after {
  position: absolute;
  right: -370px;
  top: 0;
}

.about-us-content-section .second-text-block .content {
  max-width: 600px;
  margin: auto;
  margin-bottom: 46px;
}

.about-us-content-section .second-text-block span.marker {
  position: relative;
}

.about-us-content-section .second-text-block span.marker.marker:before {
  content: unset;
  position: absolute;
  right: 0px;
  bottom: -25px;
  z-index: -1;
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
}

@media (max-width: 768px) {
  .about-us-content-section .second-text-block span.marker.marker:before {
    content: url(/wp-content/themes/edumni/assets/img/marker9.svg);
    right: 20px;
  }
}

.about-us-content-section .button-holder {
  -webkit-transform: translateY(105px);
          transform: translateY(105px);
}

.about-us-content-section .button-holder .btn-black:hover {
  background-color: var(--accent-dark);
  opacity: 1 !important;
}

/* end::about-us-content-section */
/* begin::terms-and-conditions-section */
.term-and-conditions-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.term-and-conditions-section p {
  padding-left: 26px;
}

/* end::terms-and-conditions-section */
/* begin::slider-hero */
@media (max-width: 1399px) {
  .slider-hero .splide__slide:nth-child(2n+1) .prem {
    background-position-x: 450px !important;
  }
}

@media (max-width: 1399px) {
  .slider-hero .splide__slide:nth-child(2n) .prem {
    background-position-x: -100px !important;
  }
}

.slider-hero {
  margin-bottom: 54px;
}

/* end::slider-hero */
/* begin::blank-hero-section */
.blank-hero-section {
  height: 471px;
  background-repeat: no-repeat;
  margin-bottom: 65px;
}

@media (max-width: 1399px) {
  .blank-hero-section {
    background-position-x: -150px;
  }
}

@media (max-width: 1199px) {
  .blank-hero-section {
    background-position-x: -20px;
    background-size: contain;
    height: 350px;
  }
}

@media (max-width: 991px) {
  .blank-hero-section {
    background-position-x: -20px;
    height: 280px;
    margin-bottom: 35px;
  }
}

@media (max-width: 767px) {
  .blank-hero-section {
    background-position-x: -20px;
    height: 205px;
    margin-bottom: 25px;
  }
}

@media (max-width: 575px) {
  .blank-hero-section {
    background-position-x: -20px;
    height: 124px;
    background-size: contain;
  }
}

@media (max-width: 350px) {
  .blank-hero-section {
    background-position-x: -20px;
    height: 120px;
    background-size: cover;
  }
}

.blank-hero-section .button-holder {
  margin-top: 55px;
}

.blank-hero-section h2 {
  margin-bottom: 30px;
}

.blank-hero-section h2 span.marker {
  position: relative;
}

.blank-hero-section h2 span.marker.marker:before {
  content: url(/wp-content/themes/edumni/assets/img/marker2.svg);
  position: absolute;
  right: -40px;
  bottom: -20px;
  z-index: -1;
}

/* end::blank-hero-section */
/* begin::main-form-section */
.main-form-section .next-prev-buttons {
  margin-top: 0 !important;
  -webkit-transform: translateY(-22px);
          transform: translateY(-22px);
}

@media (max-width: 991px) {
  .main-form-section h3, .main-form-section p {
    text-align: center;
  }
  .main-form-section h3 {
    margin-bottom: 15px !important;
  }
}

@media (max-width: 575px) {
  .main-form-section label {
    font-size: 12px;
    font-weight: 600;
    color: #81838C;
  }
}

.main-form-section h3 {
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 5px;
}

.main-form-section .dp-select {
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  border-radius: 10px;
  padding: 15px 20px !important;
  border: 1px solid var(--black);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

@media (max-width: 767px) {
  .main-form-section .dp-select {
    font-size: 12px;
  }
}

.main-form-section .accent-input {
  background-color: var(--accent-dark);
  border: none;
  color: #fff;
}

.main-form-section .big-radio {
  height: 45px;
}

.main-form-section .big-radio .form-check-input {
  margin-right: 5px;
  width: 35px;
  height: 30px;
}

.main-form-section .big-radio .form-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-form-section .big-radio label p {
  margin-top: 20px;
}

@media (max-width: 575px) {
  .main-form-section .heading h2 {
    font-size: 20px;
    font-weight: 600;
  }
}

.main-form-section .heading p {
  max-width: 600px;
  margin: auto;
}

.main-form-section .picto-card {
  padding: 35px;
}

@media (max-width: 991px) {
  .main-form-section .picto-card {
    padding: 10px;
  }
}

.main-form-section .picto-blocks .lining-font {
  -webkit-transform: rotate(-1.94deg);
          transform: rotate(-1.94deg);
  font-size: 32px;
  line-height: 18px;
  color: #81838C;
}

.main-form-section .picto-blocks .picto-col {
  border-radius: 7px;
}

.main-form-section .picto-blocks .picto-col.active {
  background-color: var(--accent-dark);
}

.main-form-section .picto-blocks .picto-col.active img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.main-form-section .picto-blocks .picto-col.active * {
  color: #fff;
}

.main-form-section .form {
  background-color: #F9F8FB;
  margin-top: 56px;
  padding: 42px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .main-form-section .form .responsive-select {
    height: 110px !important;
  }
}

.main-form-section .form .row label {
  margin-bottom: 24px;
  width: 100%;
}

@media (max-width: 991px) {
  .main-form-section .form .row label {
    margin-bottom: 15px;
  }
}

.main-form-section .form .row label input:not(input[type="checkbox"]), .main-form-section .form .row label select {
  margin-top: 5px;
}

.main-form-section .form hr {
  margin-top: 35px;
  margin-bottom: 45px;
  width: 200vw;
  margin-left: -300px;
  color: #D9D9D9;
  opacity: 1;
}

.main-form-section .form .form-check-input:checked[type=radio] {
  background-image: unset;
  background-color: #000;
}

.main-form-section .form .form-check-input {
  border: none;
  background-color: #D9D9D9;
}

.main-form-section .btn-black {
  margin-bottom: 70px;
}

.main-form-section table {
  width: 100%;
  min-width: 600px;
}

.main-form-section table thead th:nth-child(1) {
  width: 50%;
}

.main-form-section table thead .icon-free {
  margin-bottom: 20px;
  background-color: #fff;
  padding: 25px 60px;
  height: 153px;
  text-align: center;
  border-radius: 7px;
  margin-right: 20px;
}

@media (max-width: 1199px) {
  .main-form-section table thead .icon-free {
    padding: 25px 20px;
  }
}

.main-form-section table thead .icon-free img {
  margin: auto;
}

.main-form-section table thead .icon-premium {
  margin-bottom: 20px;
  background-color: var(--accent-dark);
  padding: 25px 60px;
  height: 153px;
  text-align: center;
  border-radius: 7px;
  color: #fff;
}

@media (max-width: 1199px) {
  .main-form-section table thead .icon-premium {
    padding: 25px 20px;
  }
}

.main-form-section table thead .icon-premium img {
  margin: auto;
}

.main-form-section table tbody {
  background-color: #fff;
}

.main-form-section table tbody td {
  padding: 20px;
}

.main-form-section table tbody td:nth-child(2), .main-form-section table tbody td:nth-child(3) {
  text-align: center;
}

.main-form-section .work-time-single {
  max-width: 500px !important;
}

/* end ::main-form-section */
/* begin::sidebar-account */
@media (max-width: 768px) {
  .mobi-side p * {
    font-size: 14px;
  }
}

.mobi-side ul {
  margin-top: 6px;
}

@media (max-width: 768px) {
  .mobi-side ul {
    margin-top: 10px;
  }
}

.mobi-side ul a {
  color: #81838C;
}

.sidebar p {
  color: var(--black);
}

.sidebar li {
  list-style: none;
}

.sidebar span.marker {
  position: relative;
}

.sidebar span.marker.marker:before {
  content: url(/wp-content/themes/edumni/assets/img/marker8.png);
  position: absolute;
  left: 0px;
  top: -12px;
  z-index: -1;
}

/* begin::sidebar-account */
/* begin::all-offers-section */
.all-offers-section {
  margin-top: 42px;
  margin-bottom: 86px;
}

@media (max-width: 991px) {
  .all-offers-section .select-filters-field {
    text-align: center;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    background-color: rgba(0, 0, 0, 0) !important;
    font-size: 16.4px;
    font-weight: 600;
    margin-left: 3%;
  }
}

@media (max-width: 991px) {
  .all-offers-section .post-sorting {
    border: 1px solid #000;
    border-radius: 10px;
    margin-left: 0px;
    margin-right: 0px;
    padding-top: 1px;
    padding-bottom: 1px;
  }
}

.all-offers-section .accordion-button {
  background-color: #000;
}

@media (max-width: 991px) {
  .all-offers-section .accordion-button {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 10px !important;
  }
}

.all-offers-section .accordion-button p {
  color: #fff;
}

@media (max-width: 991px) {
  .all-offers-section .accordion-button p {
    font-size: 16px;
  }
  .all-offers-section .accordion-button p::before {
    content: none !important;
  }
}

.all-offers-section .accordion-button::after {
  content: none;
}

.all-offers-section .sidebar button {
  font-size: 16px;
  padding: 13px 35px;
  font-weight: 400;
}

.all-offers-section .sidebar .filters-title {
  font-size: 20px;
  margin-bottom: 30px;
  position: relative;
}

.all-offers-section .sidebar .filters-title:before {
  content: url(/wp-content/themes/edumni/assets/img/marker-filter.svg);
  position: absolute;
  left: 2px;
  bottom: -10px;
  z-index: -1;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.all-offers-section .sidebar .filter-name {
  margin-bottom: 10px;
  font-size: 16px;
  color: #81838C;
}

.all-offers-section .sidebar .single-filter {
  margin-bottom: 26px;
}

.all-offers-section .sidebar .single-filter select {
  background-color: #F8F7F7 !important;
  border: none;
  color: #81838C;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .all-offers-section .sidebar .single-filter select {
    margin-left: 0 !important;
    max-width: unset !important;
    text-align: left !important;
  }
}

.all-offers-section .sidebar .single-filter input {
  background-color: #F8F7F7;
  border: none;
  height: 36px;
}

.all-offers-section .sidebar .single-filter .odido-input p {
  font-size: 11px;
  color: #81838C;
  font-weight: 600;
}

.all-offers-section .offers .single-offer .profile-thumbnail-card {
  border: 1px solid var(--black);
  border-radius: 7px;
  padding: 20px 19px 21px 19px;
}

@media (max-width: 767px) {
  .all-offers-section .offers .single-offer .profile-thumbnail-card {
    max-width: 300px;
    margin: auto;
    margin-bottom: 30px;
  }
}

.all-offers-section .offers .single-offer .profile-thumbnail-card .image img {
  aspect-ratio: 1.19 / 1;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767px) {
  .all-offers-section .offers .single-offer .profile-thumbnail-card .image img {
    width: 257px;
    height: 257px;
    margin: auto;
  }
}

.all-offers-section .offers .single-offer .profile-thumbnail-card .profile-name p {
  margin-top: 20px;
  margin-bottom: 5px;
  color: var(--black);
}

@media (max-width: 575px) {
  .all-offers-section .offers .single-offer .profile-thumbnail-card .profile-name p {
    font-size: 14px;
    font-weight: 600;
  }
}

.all-offers-section .offers .single-offer .profile-thumbnail-card .stars {
  margin-top: 0px;
  margin-bottom: 16px;
}

.all-offers-section .offers .single-offer .profile-thumbnail-card .buttons-holder a, .all-offers-section .offers .single-offer .profile-thumbnail-card .buttons-holder button {
  font-size: 12px;
}

@media (max-width: 767px) {
  .all-offers-section .offers .single-offer .profile-thumbnail-card .buttons-holder a, .all-offers-section .offers .single-offer .profile-thumbnail-card .buttons-holder button {
    font-size: 8px !important;
  }
}

/* end::all-offers-section */
/* begin::teacher-main-section */
.teacher-main-section {
  margin-top: 46px;
}

.teacher-main-section .profile-name p {
  font-size: 20px;
  color: #000;
}

.teacher-main-section .btn-accent:hover {
  opacity: 1;
}

.teacher-main-section .details p {
  margin-bottom: 3px;
  color: #000;
}

@media (max-width: 991px) {
  .teacher-main-section .details p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
  }
}

.teacher-main-section .details span {
  color: #81838C;
  line-height: 10px;
}

@media (min-width: 992px) {
  .teacher-main-section .profile-thumbnail-card-column {
    padding-right: 30px;
  }
}

@media (min-width: 1400px) {
  .teacher-main-section .profile-thumbnail-card-column {
    padding-right: 105px;
  }
}

@media (max-width: 1399px) {
  .teacher-main-section .profile-thumbnail-card-column {
    padding-right: 142px !important;
  }
}

@media (max-width: 1199px) {
  .teacher-main-section .profile-thumbnail-card-column {
    padding-right: 60px !important;
  }
}

@media (max-width: 992px) {
  .teacher-main-section .profile-thumbnail-card-column {
    padding-right: 0 !important;
  }
}

.teacher-main-section .profile-thumbnail-card-column .splide__arrow {
  background-color: rgba(0, 0, 0, 0);
}

.teacher-main-section .profile-thumbnail-card-column .splide__arrow--prev {
  left: -1.5em;
}

.teacher-main-section .profile-thumbnail-card-column .splide__arrow--next {
  right: -1.5em;
}

.teacher-main-section .profile-thumbnail-card-column .profile-thumbnail-card {
  border: 1px solid var(--black);
  border-radius: 7px;
  padding: 20px 19px 21px 19px;
}

.teacher-main-section .profile-thumbnail-card-column .profile-thumbnail-card .image img {
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 16px;
}

.teacher-main-section .profile-thumbnail-card-column .profile-thumbnail-card .stars {
  margin-top: 0px;
  margin-bottom: 16px;
}

.teacher-main-section .profile-thumbnail-card-column .profile-thumbnail-card .buttons-holder a, .teacher-main-section .profile-thumbnail-card-column .profile-thumbnail-card .buttons-holder button {
  font-size: 12px;
}

@media (max-width: 767px) {
  .teacher-main-section .profile-thumbnail-card-column .profile-thumbnail-card .buttons-holder a, .teacher-main-section .profile-thumbnail-card-column .profile-thumbnail-card .buttons-holder button {
    font-size: 8px !important;
  }
}

.teacher-main-section .profile-thumbnail-card-column .profile-description {
  background-color: var(--section-bg-grey-color);
  border-radius: 7px;
  padding: 30px 27px;
}

.teacher-main-section .profile-thumbnail-card-column .profile-description .profile-name {
  font-size: 24px;
  color: var(--black);
}

.teacher-main-section .profile-thumbnail-card-column .profile-description .heading p {
  font-size: 18px;
  color: var(--black);
}

.teacher-main-section .profile-thumbnail-card-column .profile-description .details p {
  margin-bottom: 0;
  color: var(--black);
}

.teacher-main-section .profile-thumbnail-card-column .profile-description .details p span {
  color: #81838C;
}

/* end::teacher-main-section */
/* begin::tabs-section */
.tabs-list .panel-label {
  min-width: 351px;
}

@media (max-width: 1399px) {
  .tabs-list .panel-label {
    min-width: 200px;
    padding: 20px 0px !important;
  }
}

@media (max-width: 991px) {
  .tabs-list .panel-label {
    min-width: 111px;
  }
}

@media (max-width: 575px) {
  .tabs-list .panel-label {
    min-width: 0px;
    padding: 10px 0px !important;
  }
}

.active .panel-label {
  border-bottom: 4px solid var(--accent-color);
}

.panel-label {
  padding: 20px 120px;
  margin-bottom: -4px;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

@media (max-width: 1199px) {
  .panel-label {
    padding: 20px 50px;
  }
}

@media (max-width: 767px) {
  .panel-label {
    padding: 20px 10px;
  }
}

@media (max-width: 575px) {
  .panel-label {
    font-size: 14px;
  }
}

#tabs-list li {
  display: inline-block;
  padding: 2rem;
  padding-bottom: 0;
  font-size: 2rem;
  color: #81838C;
}

@media (max-width: 575px) {
  #tabs-list li {
    padding: .5rem;
  }
}

.panel-radios {
  display: none;
}

ul#tabs-list {
  list-style: none;
  text-align: center;
  margin: 0;
  padding: 0;
  border-bottom: 4px solid var(--light-color);
}

label.panel-label {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: inline-block;
  width: 100%;
  cursor: pointer;
  -webkit-transition-property: background-color, color;
  transition-property: background-color, color;
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
}

#panels {
  background-color: white;
}

#panels .container {
  margin: 0 auto;
  width: 100%;
}

#panels section header label.panel-label {
  padding: 12px 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#panels section main {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-height: 0;
  opacity: 0;
  -webkit-transition: opacity 600ms;
  transition: opacity 600ms;
  overflow-y: hidden;
}

#panels input, #panels select {
  border: 2px solid var(--light-color);
  padding: 1.3rem;
  margin-right: 1rem;
}

#panels .btn {
  margin-right: 1rem;
}

#panels main {
  overflow: hidden;
}

#panels h2 {
  margin-top: 22px;
}

#panels select {
  border: 2px solid var(--light-color);
  padding: 1.3rem;
}

.Tabs-section {
  margin-bottom: 50px;
}

#panel-1-ctrl:checked ~ #panels #panel-1 main {
  max-height: initial;
  opacity: 1;
  padding: 48px 0px;
}

#panel-2-ctrl:checked ~ #panels #panel-2 main {
  max-height: initial;
  opacity: 1;
  padding: 48px 0px;
}

#panel-3-ctrl:checked ~ #panels #panel-3 main {
  max-height: initial;
  opacity: 1;
  padding: 48px 0px;
}

.tabs-btn.active {
  color: var(--black) !important;
}

/* end::tabs-section */
/* begin::edit-account-data-section */
.edit-account-data-section {
  margin-top: 38px;
  margin-bottom: 82px;
}

.edit-account-data-section .edit-data label {
  margin-bottom: 16px;
  width: 100%;
}

.edit-account-data-section .edit-data h3 {
  font-size: 20px;
}

.edit-account-data-section .edit-data .edit-data-form {
  margin-top: 37px;
}

.edit-account-data-section .edit-data .btn-black {
  margin-top: 43px;
  padding: 13px 53px;
  font-size: 12px;
}

/* end::edit-account-data-section */
/* begin::edit-favourites-section */
.edit-favourites-section {
  margin-top: 38px;
  margin-bottom: 82px;
}

.edit-favourites-section .edit-favourites h3 {
  font-size: 20px;
}

.edit-favourites-section .edit-favourites .favourites-form {
  margin-top: 37px;
}

.edit-favourites-section .edit-favourites .profile-thumbnail-card {
  border: 1px solid var(--black);
  border-radius: 7px;
  padding: 20px 19px 21px 19px;
}

.edit-favourites-section .edit-favourites .profile-thumbnail-card .image img {
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}

.edit-favourites-section .edit-favourites .profile-thumbnail-card .profile-name {
  margin-top: 17px;
  margin-bottom: 5px;
  color: var(--black);
}

.edit-favourites-section .edit-favourites .profile-thumbnail-card .stars {
  margin-top: 0px;
  margin-bottom: 16px;
}

.edit-favourites-section .edit-favourites .profile-thumbnail-card .buttons-holder a {
  font-size: 8px;
}

/* end::edit-favourites-section */
/* begin::account-orders-section */
.account-orders-section {
  margin-top: 38px;
  margin-bottom: 82px;
}

.account-orders-section .orders-table h3 {
  font-size: 20px;
}

.account-orders-section .orders-table .orders {
  border-radius: 7px !important;
  overflow: auto;
  border: 1px solid var(--black);
  margin-top: 37px;
}

.account-orders-section .orders-table .orders table * {
  font-size: 10px;
}

.account-orders-section .orders-table .orders table thead {
  background-color: #F8F7F7;
}

.account-orders-section .orders-table .orders table th, .account-orders-section .orders-table .orders table td {
  padding: 20px 39px;
}

@media (max-width: 1400px) {
  .account-orders-section .orders-table .orders table th, .account-orders-section .orders-table .orders table td {
    padding: 10px 20px;
  }
}

.account-orders-section .orders-table .orders table tr:not(:last-child) {
  border-bottom: 1px solid var(--black);
}

.account-orders-section .orders-table .orders table th:not(:last-child), .account-orders-section .orders-table .orders table td:not(:last-child) {
  border-right: 1px solid var(--black);
}

/* end::account-orders-section */
/* begin::account-order-details-section */
.account-order-details-section {
  margin-top: 38px;
  margin-bottom: 82px;
}

.account-order-details-section .orders-table h3 {
  font-size: 20px;
}

.account-order-details-section .orders-table .orders {
  border-radius: 7px !important;
  overflow: hidden;
  border: 1px solid var(--black);
  margin-top: 37px;
}

.account-order-details-section .orders-table .orders table * {
  font-size: 10px;
}

.account-order-details-section .orders-table .orders table thead {
  background-color: #F8F7F7;
}

.account-order-details-section .orders-table .orders table th, .account-order-details-section .orders-table .orders table td {
  padding: 20px 39px;
}

@media (max-width: 575px) {
  .account-order-details-section .orders-table .orders table th, .account-order-details-section .orders-table .orders table td {
    padding: 10px 20px;
  }
}

.account-order-details-section .orders-table .orders table tr:not(:last-child) {
  border-bottom: 1px solid var(--black);
}

.account-order-details-section .orders-table .orders table th:not(:last-child), .account-order-details-section .orders-table .orders table td:not(:last-child) {
  border-right: 1px solid var(--black);
}

.account-order-details-section .address-block {
  margin-top: 30px;
}

.account-order-details-section .address-block p.heading {
  color: var(--black);
  margin-bottom: 10px;
  font-size: 16px;
}

.account-order-details-section .address-block p:not(.heading) {
  margin-bottom: 10px;
  font-size: 10px;
  line-height: 10px;
}

/* end::account-order-details-section */
/* begin::404-section */
.page-not-found-section {
  z-index: -2;
  position: relative;
}

.page-not-found-section h1 {
  font-size: 53px;
}

.page-not-found-section h3 {
  font-size: 27px;
  margin-bottom: 30px;
}

.page-not-found-section h3 span.marker {
  position: relative;
}

.page-not-found-section h3 span.marker.marker:before {
  content: url(/wp-content/themes/edumni/assets/img/marker7.png);
  position: absolute;
  right: -10px;
  top: 15px;
  z-index: -1;
}

@media (max-width: 768px) {
  .page-not-found-section h3 span.marker.marker:before {
    content: url(/wp-content/themes/edumni/assets/img/marker7.png);
  }
}

.page-not-found-section p {
  max-width: 400px;
}

.page-not-found-section .btn-black {
  margin-top: 40px;
  padding: 20px 33px;
}

/* end::404-section */
/* begin::modals */
.modal-open {
  padding-right: 0 !important;
}

.modal-header, .modal-footer {
  border: none;
}

.modal-footer {
  padding-bottom: 35px;
}

.btn-close {
  margin-right: -100px !important;
}

@media (max-width: 991px) {
  .btn-close {
    margin-right: -18px !important;
  }
}

.modal-content {
  padding: 5px 100px;
  z-index: 0;
}

@media (max-width: 992px) {
  .modal-content {
    padding: 5px 20px;
  }
}

.modal-content input {
  margin-bottom: 15px;
}

#postcodeModal-student h4 span.marker, #postcodeModal-teacher h4 span.marker {
  position: relative;
}

#postcodeModal-student h4 span.marker.marker:before, #postcodeModal-teacher h4 span.marker.marker:before {
  content: url(/wp-content/themes/edumni/assets/img/popup-marker.svg);
  position: absolute;
  right: 3px;
  top: 1px;
  z-index: -1;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

@media (max-width: 992px) {
  #postcodeModal-student h4 span.marker.marker:before, #postcodeModal-teacher h4 span.marker.marker:before {
    right: 0px;
    top: 5px;
  }
}

#postcodeModal-student .modal-footer, #postcodeModal-teacher .modal-footer {
  padding-top: 0 !important;
}

#contactModal h3 {
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  #contactModal h3 {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 992px) {
  #contactModal h3 {
    font-size: 28px;
  }
}

#contactModal h3 span.marker {
  position: relative;
}

#contactModal h3 span.marker.marker:before {
  content: url(/wp-content/themes/edumni/assets/img/marker7.png);
  position: absolute;
  right: -20px;
  top: 10px;
  z-index: -1;
}

@media (max-width: 992px) {
  #contactModal h3 span.marker.marker:before {
    right: -25px;
    top: 5px;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

#newsletter-thanks-modal .modal-footer {
  padding-top: 0 !important;
}

#newsletter-thanks-modal .modal-body {
  padding-bottom: 10px !important;
}

#contactModal .btn-black {
  padding: 11px 77px;
}

#contactModal .modal-footer {
  padding-top: 0 !important;
}

#postcodeModal h4 {
  margin-top: 1.5rem;
}

@media (max-width: 992px) {
  #postcodeModal h4 {
    font-size: 28px;
  }
}

#postcodeModal h4 span.marker {
  position: relative;
}

#postcodeModal h4 span.marker.marker:before {
  content: url(/wp-content/themes/edumni/assets/img/marker10.svg);
  position: absolute;
  right: -10px;
  top: -40px;
  z-index: -1;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

@media (max-width: 495px) {
  #postcodeModal h4 span.marker.marker:before {
    right: 20px;
    top: -5px;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

#cookiesModal .modal-footer button {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 576px) {
  #cookiesModal .modal-footer button {
    min-width: 310px;
  }
}

@media (max-width: 575px) {
  #cookiesModal .modal-footer button {
    min-width: 100%;
  }
}

@media (max-width: 575px) {
  #cookiesModal .btn-outline {
    font-size: 10px;
  }
}

#buyApprovementModal p.lining-font {
  font-size: 36px;
  font-weight: 400;
  line-height: 28px;
}

#buyApprovementModal .buttons-holder {
  gap: 10px;
}

@media (max-width: 575px) {
  #buyApprovementModal .modal-content {
    padding: 5px 10px;
  }
}

#dumnisieBoughtModal p.lining-font {
  font-size: 36px;
  font-weight: 400;
  line-height: 28px;
}

@media (max-width: 575px) {
  #dumnisieBoughtModal .modal-content {
    padding: 5px 10px;
  }
}

#noMoneyModal h5 {
  position: relative;
}

#noMoneyModal h5 .marker:before {
  content: url(/wp-content/themes/edumni/assets/img/marker11.svg);
  position: absolute;
  right: 50%;
  top: 8px;
  z-index: -1;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

#welcomeModal h4 {
  font-size: 18px;
  line-height: 20px;
}

#welcomeModal h4 span.marker {
  position: relative;
}

#welcomeModal h4 span.marker.marker:before {
  content: url(/wp-content/themes/edumni/assets/img/marker11.svg);
  position: absolute;
  right: -15px;
  top: 5px;
  z-index: -1;
}

#welcomeModal .modal-footer p {
  text-decoration: underline;
}

@media (max-width: 575px) {
  #welcomeModal .modal-footer p {
    text-align: center;
  }
}

#premiumModal h4 {
  font-size: 18px;
  line-height: 20px;
}

#premiumModal h4 span.marker {
  position: relative;
}

#premiumModal h4 span.marker.marker:before {
  content: url(/wp-content/themes/edumni/assets/img/marker11.svg);
  position: absolute;
  right: 6px;
  top: 8px;
  z-index: -1;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

#premiumModal p.lining-font {
  -webkit-transform: rotate(-3.55deg);
          transform: rotate(-3.55deg);
}

@media (max-width: 767px) {
  #premiumModal p.lining-font {
    font-size: 50px;
  }
}

#premiumModal .modal-footer {
  padding-top: 0px !important;
}

#premiumModal .modal-footer a {
  text-decoration: underline;
}

@media (max-width: 575px) {
  #reservationModal h4 {
    font-size: 12px;
    line-height: 20px;
  }
}

@media (max-width: 575px) {
  #reservationModal .modal-content {
    padding: 5px 10px;
  }
}

#messageModal textarea {
  margin-bottom: 14px;
}

@media (max-width: 991px) {
  #messageModal input[type="number"] {
    margin-bottom: 16px !important;
  }
}

@media (max-width: 767px) {
  #messageModal p {
    font-size: 36px;
  }
}

#messageModal h3 {
  margin-bottom: 1rem;
}

@media (max-width: 992px) {
  #messageModal h3 {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 992px) {
  #messageModal h3 {
    font-size: 28px;
  }
}

#messageModal h3 span.marker {
  position: relative;
}

#messageModal h3 span.marker.marker:before {
  content: url(/wp-content/themes/edumni/assets/img/marker7.png);
  position: absolute;
  right: 10px;
  top: 20px;
  z-index: -1;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

@media (max-width: 992px) {
  #messageModal h3 span.marker.marker:before {
    right: -25px;
    top: 5px;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

#messageModal input[type="number"] {
  margin-bottom: 6px;
}

@media (max-width: 575px) {
  #messageModal .add-photo {
    font-size: 12px;
  }
}

#StatusChangedModal h4 {
  font-size: 22px;
}

@media (max-width: 575px) {
  #StatusChangedModal h4 {
    font-size: 15px;
    line-height: 20px;
  }
}

#StatusChangedModal h4 span.marker {
  position: relative;
}

#StatusChangedModal h4 span.marker.marker:before {
  content: url(/wp-content/themes/edumni/assets/img/marker12.svg);
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: -1;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

@media (max-width: 992px) {
  #StatusChangedModal h4 span.marker.marker:before {
    right: -25px;
    top: 5px;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

@media (max-width: 575px) {
  #StatusChangedModal p, #StatusChangedModal a {
    font-size: 10px;
    line-height: 15px;
  }
}

@media (max-width: 575px) {
  #StatusChangedModal .modal-content {
    padding: 5px 10px;
  }
}

#StatusChangedModal .modal-footer a {
  text-decoration: underline;
}

@media (max-width: 575px) {
  #formSentModal h4 {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 575px) {
  #formSentModal .modal-content {
    padding: 5px 10px;
  }
}

#offerAddedSuccessfullyModal h4, #offerAddedSuccessfullyTeacherModal h4 {
  font-size: 22px;
}

#offerAddedSuccessfullyModal h4 span.marker, #offerAddedSuccessfullyTeacherModal h4 span.marker {
  position: relative;
}

#offerAddedSuccessfullyModal h4 span.marker.marker:before, #offerAddedSuccessfullyTeacherModal h4 span.marker.marker:before {
  content: url(/wp-content/themes/edumni/assets/img/marker11.svg);
  position: absolute;
  right: -15px;
  top: 10px;
  z-index: -1;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

@media (max-width: 992px) {
  #offerAddedSuccessfullyModal h4 span.marker.marker:before, #offerAddedSuccessfullyTeacherModal h4 span.marker.marker:before {
    right: -25px;
    top: 10px;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

/* end::modals */
/* begin::account-payment */
.edit-account-payment-section {
  margin-top: 48px;
  margin-bottom: 58px;
}

.edit-account-payment-section .payment-form h3 {
  font-size: 20px;
}

.edit-account-payment-section .payment-form .row {
  margin-bottom: 24px;
}

.edit-account-payment-section .payment-form .row label {
  width: 100%;
}

.edit-account-payment-section .payment-form hr {
  margin-bottom: 35px;
  margin-top: 30px;
}

.edit-account-payment-section .premium-payment-form {
  background-color: var(--light-grey);
  border-radius: 15px;
  padding: 39px 36px;
}

.edit-account-payment-section .premium-payment-form h3 {
  font-size: 20px;
}

.edit-account-payment-section .premium-payment-form .row {
  margin-bottom: 24px;
}

.edit-account-payment-section .premium-payment-form .row label {
  width: 100%;
}

.edit-account-payment-section .premium-payment-form .small {
  font-size: 10px;
  line-height: 15px;
  margin-top: 5px;
}

/* end::account-payment */
/* begin::hamburger menu side swap */
#menu.flex-column li a {
  letter-spacing: 1px;
}

@media (min-width: 992px) {
  #menuToggle {
    right: 0;
  }
  #menu {
    right: 0;
  }
  #menu {
    margin: -62px 0 0 0rem;
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
}

#menuToggle {
  max-width: 100px;
}

#menuToggle input {
  width: 60px;
}

/* end::hamburger menu side swap */
/* Hamburger menu starts */
#menuToggle {
  display: block;
  top: .4rem;
  right: 0;
  z-index: 99999;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

#menuToggle a {
  text-decoration: none;
  color: #81838C;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

#menuToggle a:hover {
  color: var(--accent-dark);
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: 17px;
  cursor: pointer;
  opacity: 0;
  /* hide this */
  z-index: 2;
  /* and place it over the hamburger */
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin-bottom: 5px;
  position: relative;
  background: var(--black);
  border-radius: 3px;
  z-index: 1;
  -webkit-transform-origin: 4px 0px;
          transform-origin: 4px 0px;
  -webkit-transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

#menuToggle span:first-child {
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span {
  opacity: 1;
  -webkit-transform: rotate(45deg) translate(-2px, -1px);
          transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  -webkit-transform: rotate(0deg) scale(0.2, 0.2);
          transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2) {
  -webkit-transform: rotate(-45deg) translate(0, -1px);
          transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu {
  position: absolute;
  right: 0;
  width: 400px;
  height: 100vh;
  margin: -62px 0 0 -1rem;
  padding: 50px;
  padding-top: 125px;
  background: #fff;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

#menu li {
  padding: 10px 0;
  font-size: 22px;
  color: var(--black);
  font-size: 12px;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul {
  -webkit-transform: none;
          transform: none;
}

/* Hamburger menu ends */
/* begin::help-center */
.help-center-section {
  margin-top: 42px;
  margin-bottom: 120px;
}

.help-center-section .category-sidebar {
  background-color: var(--section-bg-grey-color);
  border-radius: 15px;
  padding: 32px 34px;
}

.help-center-section .category-sidebar .category-sidebar-heading {
  font-size: 20px;
  color: var(--black);
  margin-bottom: 20px;
}

.help-center-section .category-sidebar ul {
  padding-left: 10px;
}

.help-center-section .category-sidebar li {
  list-style: none;
  margin-bottom: 20px;
}

.help-center-section .category-sidebar .accordion-button[aria-expanded="true"] p {
  position: relative;
  z-index: 99;
  color: #000;
}

.help-center-section .category-sidebar .accordion-button[aria-expanded="true"] span:before {
  content: url(/wp-content/themes/edumni/assets/img/marker8.png);
  position: absolute;
  top: -8px;
  left: 20px;
}

.help-center-section .search-sidebar {
  padding: 32px 0px;
}

.help-center-section .search-sidebar button {
  border-radius: 10px;
  border-color: #00000047;
}

.help-center-section .search-sidebar input {
  border-color: #00000047;
}

.help-center-section .search-sidebar .btn {
  border-right: none;
  background-color: var(--accent-dark);
}

.help-center-section .search-sidebar .btn img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.help-center-section .search-sidebar .btn:focus {
  outline: none !important;
  border-color: #000;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background-color: var(--accent-dark) !important;
}

.help-center-section .search-sidebar .btn:focus img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.help-center-section .search-sidebar .btn:active {
  background-color: var(--accent-dark) !important;
}

.help-center-section .search-sidebar .form-control {
  border-left: none;
}

.help-center-section .search-sidebar .form-control:focus {
  outline: none !important;
  border-color: #000;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.help-center-section .content .single-faq .faq-title {
  font-size: 20px;
  color: var(--black);
}

/* end::help-center */
.offer-th-heading {
  color: var(--black);
  font-size: 18px;
}

.offer-th-desc {
  font-size: 12px;
  line-height: 18px;
}

/* begin::step-3 */
.ans-form textarea {
  border: 1px solid #555;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

h1 {
  font-family: inherit;
  margin: 0 0 .75em 0;
  color: black;
}

@media (max-width: 768px) {
  h1 {
    text-align: center;
  }
}

.box {
  display: block;
  height: 250px;
  margin: 10px;
  background-color: white;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
}

.upload-options {
  position: relative;
  height: 50px;
  background-color: #000;
  cursor: pointer;
  overflow: hidden;
  text-align: center;
  -webkit-transition: background-color ease-in-out 150ms;
  transition: background-color ease-in-out 150ms;
}

.upload-options:hover {
  background-color: #1a1a1a;
}

.upload-options input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.upload-options label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
}

.upload-options label::after {
  content: 'add';
  font-family: 'Material Icons';
  position: absolute;
  font-size: 2.5rem;
  color: #e6e6e6;
  top: calc(50% - 2rem);
  left: calc(50% - 1.25rem);
  z-index: 0;
}

.upload-options label span {
  display: inline-block;
  width: 50%;
  height: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  vertical-align: middle;
  text-align: center;
}

.upload-options label span:hover i.material-icons {
  color: lightgray;
}

.js--image-preview {
  height: 200px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-image: url("");
  background-color: white;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.js--image-preview::after {
  content: "photo_size_select_actual";
  font-family: 'Material Icons';
  position: relative;
  font-size: 4.5em;
  color: #e6e6e6;
  top: calc(50% - 3rem);
  left: calc(50% - 2.25rem);
  z-index: 0;
}

.js--image-preview.js--no-default::after {
  display: none;
}

.js--image-preview:nth-child(2) {
  background-image: url("http://bastianandre.at/giphy.gif");
}

i.material-icons {
  -webkit-transition: color 100ms ease-in-out;
  transition: color 100ms ease-in-out;
  font-size: 2.25em;
  line-height: 55px;
  color: white;
  display: block;
}

.drop {
  display: block;
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.animate {
  -webkit-animation: ripple 0.4s linear;
          animation: ripple 0.4s linear;
}

@-webkit-keyframes ripple {
  100% {
    opacity: 0;
    -webkit-transform: scale(2.5);
            transform: scale(2.5);
  }
}

@keyframes ripple {
  100% {
    opacity: 0;
    -webkit-transform: scale(2.5);
            transform: scale(2.5);
  }
}

.add-photos-step-3 .box {
  border-radius: 7px;
  border: 1px solid;
}

#part-all-service select {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid;
  border-radius: 7px;
  padding: 10px;
  margin-right: 5px;
}

.select-container-styles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 575px) {
  .select-container-styles {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

/* Gif animation starts */
.image-gif-animated {
  position: relative;
}

.gif-animation {
  position: absolute;
  left: 0;
  bottom: 0;
  display: none;
}

.card:hover .image-gif-animated .gif-animation {
  display: block;
}

.add-animation {
  border: 1px solid;
  border-radius: 7px;
}

#gif-select {
  width: 90% !important;
  background-color: #000;
  color: #fff;
  font-size: 14px !important;
  text-align: center;
}

/* Gif animation ends */
.offers-page {
  padding-top: 50px;
  padding-bottom: 50px;
}

@media (max-width: 575px) {
  .woocommerce .offers-page {
    padding-top: 30px !important;
  }
}

.woocommerce-MyAccount-content a {
  color: var(--accent-dark);
  font-weight: 700;
}

.edit-data-form label {
  width: 100%;
  margin-bottom: 16px;
}

.edit-account {
  margin-bottom: 27px;
}

.edit-data-form {
  margin-top: 27px;
}

.woocommerce-MyAccount-navigation-link {
  margin: 6px !important;
}

.woocommerce-info {
  background-color: rgba(0, 0, 0, 0) !important;
}

span.select2-selection.select2-selection--multiple {
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--black);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  min-height: 51px !important;
}

.select2 {
  margin-top: 5px !important;
}

.select2-search__field {
  padding: 0 !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: var(--accent-dark) !important;
  color: #fff !important;
  font-weight: 400 !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #fff !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #000 !important;
}

#cookiesModal .modal-xl {
  --bs-modal-width: 1600px;
}

#cookiesModal .modal-header {
  height: 0;
  margin-top: 13px;
}

@media (max-width: 575px) {
  .woocommerce-Addresses.col2-set {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.woocommerce-Addresses .col-1, .woocommerce-Addresses .col-2 {
  width: 50%;
}

@media (max-width: 575px) {
  .woocommerce-Addresses .col-1, .woocommerce-Addresses .col-2 {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .breadcrumbs {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
}

.woocommerce-info {
  background: var(--accent-dark) !important;
  text-align: center;
  padding: 16px;
  color: #fff;
  font-size: 14px;
}

.woocommerce-info a {
  color: #fff;
  margin: 0 10px;
  font-size: 1em;
}

.woocommerce-error {
  background: #d53651 !important;
  text-align: center;
  padding: 16px;
  color: #fff;
  font-size: 14px;
}

.woocommerce-error strong {
  color: #fff;
}

.woocommerce-error li {
  color: #fff;
  margin: 0 10px;
  font-size: 1em;
  list-style: none;
}

.premium-checkout-right .button {
  background-color: var(--accent-dark);
  color: #fff;
  border-radius: 15px;
  padding: 15px 20px;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
}

.premium-checkout-right .wc_payment_methods {
  padding-left: 0px;
  border-radius: 15px;
  overflow: hidden;
}

.select2-container .select2-selection--single {
  border-radius: 10px !important;
  height: 52px !important;
  border: 1px solid var(--black) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 52px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 52px !important;
}

.ep-coupon .button {
  background-color: var(--accent-dark);
  color: #fff;
  border-radius: 15px;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 600;
}

.woocommerce-additional-fields {
  margin-top: 50px;
}

#aps-slider .splide__slide, #user-profile-slider .splide__slide {
  height: unset !important;
  -webkit-box-align: unset !important;
  -ms-flex-align: unset !important;
  align-items: unset !important;
}

.calendar-container {
  max-width: 600px !important;
}

.calendar-day {
  height: 210px;
  overflow: hidden;
}

.btn-calendar-date {
  width: 100%;
  margin: 5px 0;
  font-weight: 600;
}

.calendar-date {
  background-color: #F8F7F7 !important;
}

.calendar-date p {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 0;
  color: #000;
}

.btn {
  font-size: 10px;
  border-radius: 0;
}

.calendar-day .btn-primary {
  color: #000 !important;
  background-color: #fff !important;
  border-color: rgba(0, 0, 0, 0);
}

.calendar-arrow {
  width: 25px;
  height: 25px;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.calendar-right-arrow {
  background: url(../img/next.png) center center no-repeat;
  background-size: contain;
}

.calendar-left-arrow {
  background: url(../img/next.png) center center no-repeat;
  background-size: contain;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.select2-results__options li {
  color: #555;
}

.select2-search__field {
  margin-left: 0 !important;
}

.select2-selection {
  padding-right: 0 !important;
}

.select2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 575px) {
  .select2 .selection {
    width: 100% !important;
  }
  .select2 * {
    font-size: 12px;
  }
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  background-color: var(--accent-color) !important;
}

.select2-container--default .select2-results__option--selected {
  color: #fff !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--accent-color) !important;
}

span.select2-selection.select2-selection--multiple {
  border: 3px solid var(--light-color) !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: var(--accent-color) !important;
  border: 1px solid var(--accent-color) !important;
}

.select2-selection__choice__display, .select2-selection__choice__remove span {
  color: #000 !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  border-right: 1px solid #fff !important;
}

/* Daniel update kalendarza 11.02.2022 */
.calendar-day {
  max-height: 200px;
}

.is-visible .calendar-day {
  max-height: 100%;
}

.btn-calendar-date {
  padding: .71rem !important;
}

.calendar-container .splide__arrow--next {
  position: absolute !important;
  right: -1.5rem !important;
  top: 1.5rem !important;
  background-color: #000 !important;
  border-radius: 5px !important;
  width: 18px !important;
  height: 18px !important;
  opacity: 1;
}

.calendar-container .splide__arrow--next :hover {
  background-color: var(--accent-color) !important;
}

.calendar-container .splide__arrow--prev {
  position: absolute;
  left: -1.5rem !important;
  top: 1.5rem !important;
  background-color: #000 !important;
  border-radius: 5px !important;
  width: 18px !important;
  height: 18px !important;
  opacity: 1;
}

.calendar-container .splide__arrow--next:hover, .calendar-container .splide__arrow--prev:hover {
  background-color: var(--accent-dark) !important;
}

.calendar-container .splide__arrow svg {
  fill: #fff !important;
  height: .5em !important;
  width: .5em !important;
}

.calendar-container .splide__arrows {
  position: relative;
}

.calendar-date {
  border-bottom: 1px solid #000;
  padding: 7px 2px;
}

.calendar-container .is-visible:last-child {
  border-right: 1px solid #000;
}

.calendar-day {
  width: 100%;
}

.calendar-day .btn-primary, .calendar-day .btn-warning {
  border-bottom: 1px solid #000 !important;
  margin: 0 !important;
  opacity: .8 !important;
}

.calendar-day .btn-warning {
  background-color: #ccc !important;
  border-top: 1px solid #ccc !important;
  border-right: 1px solid #ccc !important;
}

.calendar-container {
  background-color: #fff !important;
}

.calendar-container .calendar-toggle {
  font-size: 12px !important;
  font-weight: 600;
  color: #000;
}

.calendar-container .calendar-toggle i {
  font-size: 0.7rem !important;
}

.calendar-container #aps-slider {
  width: 100% !important;
}

.calendar-container .splide__track {
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-left: 1px solid;
  border-radius: 15px;
}

.calendar-container .splide__list {
  width: 101%;
}

.calendar-container .is-visible {
  background-color: #fff;
}

.calendar-container .is-visible:not(:last-child) {
  border-right: 1px solid;
}

.calendar-container .is-visible:nth-child(1) .calendar-date {
  border-left: 0px solid #000;
  border-bottom: 1px solid #000;
  padding: 7px 2px;
}

#special-reservation-popup input, #special-reservation-popup select {
  width: 100%;
}

#special-reservation-popup select {
  margin-bottom: 10px;
  font-size: 14px !important;
}

#special-reservation-popup h4 {
  margin-bottom: 20px;
}

.accordion-item:last-of-type {
  border-radius: 10px !important;
}

.main-form-section .select2 {
  width: 100% !important;
  border: 1px solid;
  border-radius: 10px;
}

.main-form-section .select2 textarea {
  height: 46px !important;
  margin-top: 0 !important;
  padding: 16px 20px !important;
  font-size: 16px !important;
  color: #000 !important;
}

.main-form-section .select2 textarea:focus-visible {
  outline: none !important;
}

.main-form-section .select2 span {
  color: #000 !important;
}

.main-form-section .select2 .select2-container--default .select2-results__option--selected {
  color: #000 !important;
}

.main-form-section .select2 ul {
  margin-bottom: 0.5rem !important;
  display: -webkit-inline-box !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  color: var(--accent-dark) !important;
}

.select2-container--default .select2-results__option--selected {
  background-color: var(--accent-dark) !important;
}

@media (max-width: 767px) {
  select[name="miejsce_nauczania"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 110px !important;
  }
  select[name="miejsce_nauczania"] option {
    margin-bottom: 8px;
    font-size: 12px;
  }
}

.table-holder {
  border: 1px solid;
  border-radius: 7px !important;
}

@media (min-width: 768px) {
  .table-holder .woocommerce-orders-table * {
    text-align: center;
  }
}

.table-holder .woocommerce-orders-table thead th {
  border-bottom: 1px solid;
  background-color: #F8F7F7;
  font-size: 10px;
  padding: 20px 39px;
}

.table-holder .woocommerce-orders-table thead th:not(:last-child) {
  border-right: 1px solid;
}

.table-holder .woocommerce-orders-table thead th:last-child {
  border-top-right-radius: 7px;
}

.table-holder .woocommerce-orders-table thead th:first-child {
  border-top-left-radius: 7px;
}

@media (max-width: 767px) {
  .table-holder .woocommerce-orders-table tbody td {
    padding: 5px 10px;
  }
}

@media (min-width: 768px) {
  .table-holder .woocommerce-orders-table tbody td:not(:last-child) {
    border-right: 1px solid;
    font-size: 10px;
    padding: 20px 39px;
  }
}

.mark, mark {
  padding: 0.1875em;
  background-color: #fff;
  color: #81838C;
}

.woocommerce-MyAccount-content .product-name a {
  color: #000;
  pointer-events: none;
}

.order-details-table-holder {
  border: 1px solid;
  border-radius: 7px !important;
}

.order-details-table-holder * {
  font-size: 10px;
}

.order-details-table-holder thead th {
  border-bottom: 1px solid;
  background-color: #F8F7F7;
  font-size: 10px;
  padding: 20px 39px;
}

.order-details-table-holder thead td {
  padding: 20px 39px;
}

.order-details-table-holder thead th:not(:last-child) {
  border-right: 1px solid;
}

.order-details-table-holder thead th:last-child {
  border-top-right-radius: 7px;
}

.order-details-table-holder thead th:first-child {
  border-top-left-radius: 7px;
}

.order-details-table-holder tbody td:not(:last-child) {
  border-right: 1px solid;
  font-size: 10px;
  padding: 20px 39px;
}

.order-details-table-holder tbody tr {
  border-bottom: 1px solid;
}

.order-details-table-holder tbody td {
  padding: 20px 39px;
}

.order-details-table-holder tfoot th:not(:last-child) {
  border-right: 1px solid;
  font-size: 10px;
  padding: 20px 39px;
}

.order-details-table-holder tfoot tr:not(:last-child) th, .order-details-table-holder tfoot tr:not(:last-child) td {
  border-bottom: 1px solid;
}

.order-details-table-holder tfoot td {
  padding: 20px 39px;
}

.order-again {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  margin-bottom: 40px;
}

.order-again a {
  border-radius: 10px;
  background-color: var(--black);
  color: #fff;
  padding: 13px 37px;
  font-size: 14px;
  line-height: 21px;
  font-weight: 600;
}

.woocommerce-message {
  color: #fff;
  text-align: center;
  padding: 16px;
}

.post-sorting label {
  font-size: 14px !important;
  font-weight: 600;
}

.post-sorting select {
  background-color: #F9F8FB;
  border-radius: 5px;
  font-size: 12px;
  padding: 10px;
}

@media (max-width: 767px) {
  footer hr {
    margin-top: 10px;
  }
}

footer a[data-bs-toggle="modal"] {
  color: #7d818c !important;
  cursor: pointer;
}

@media (max-width: 575px) {
  footer .container p, footer .container a {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .copyright-bar p {
    font-size: 12px !important;
  }
}

.js--image-preview::after {
  content: url(/wp-content/themes/edumni/assets/img/cam-icon.svg);
}

.upload-options label::after {
  content: url(/wp-content/themes/edumni/assets/img/add-icon.svg);
  font-size: 30px;
  left: calc(50%);
}

.main-form-section .form {
  max-width: 941px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 7px !important;
}

.main-form-section .form p {
  font-size: 12px;
  line-height: 20px;
}

.main-form-section .picto-blocks .row {
  /* padding: 0 200px; */
  max-width: 941px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 575px) {
  .main-form-section .picto-blocks .row {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .js--image-preview {
    height: 120px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .box {
    height: 170px;
  }
}

@media (max-width: 350px) {
  .add-photos-step-3 .wrapper .single:nth-child(2), .add-photos-step-3 .wrapper .single:nth-child(3) {
    width: 100% !important;
  }
  .add-photos-step-3 .wrapper .single:nth-child(2) .box, .add-photos-step-3 .wrapper .single:nth-child(3) .box {
    height: 170px !important;
  }
  .add-photos-step-3 .wrapper .single:nth-child(2) .js--image-preview, .add-photos-step-3 .wrapper .single:nth-child(3) .js--image-preview {
    height: 120px !important;
  }
  .add-photos-step-3 .wrapper .single:nth-child(2) .upload-options, .add-photos-step-3 .wrapper .single:nth-child(3) .upload-options {
    height: 50px !important;
  }
}

@media (max-width: 767px) {
  .add-photos-step-3 .wrapper .single:nth-child(2) .js--image-preview, .add-photos-step-3 .wrapper .single:nth-child(3) .js--image-preview {
    height: 120px;
  }
}

@media (max-width: 473px) {
  .add-photos-step-3 .wrapper .single:nth-child(2) .js--image-preview, .add-photos-step-3 .wrapper .single:nth-child(3) .js--image-preview {
    height: 100px;
  }
}

@media (max-width: 360px) {
  .add-photos-step-3 .wrapper .single:nth-child(2) .js--image-preview, .add-photos-step-3 .wrapper .single:nth-child(3) .js--image-preview {
    height: 70px;
  }
}

@media (max-width: 767px) {
  .add-photos-step-3 .wrapper .single:nth-child(2) .box, .add-photos-step-3 .wrapper .single:nth-child(3) .box {
    height: 170px;
  }
}

@media (max-width: 473px) {
  .add-photos-step-3 .wrapper .single:nth-child(2) .box, .add-photos-step-3 .wrapper .single:nth-child(3) .box {
    height: 130px;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 360px) {
  .add-photos-step-3 .wrapper .single:nth-child(2) .box, .add-photos-step-3 .wrapper .single:nth-child(3) .box {
    height: 100px;
  }
}

@media (max-width: 473px) {
  .add-photos-step-3 .wrapper .single:nth-child(2) .upload-options, .add-photos-step-3 .wrapper .single:nth-child(3) .upload-options {
    height: 30px;
  }
}

@media (max-width: 473px) {
  .add-photos-step-3 .wrapper .single:nth-child(1) .box {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 360px) {
  .add-photos-step-3 .wrapper .single:nth-child(1) .box {
    height: 170px;
  }
}

@media (max-width: 360px) {
  .add-photos-step-3 .wrapper .single:nth-child(1) .js--image-preview {
    height: 120px;
  }
}

.gif-placeholder {
  -webkit-transform: scale(0.4);
          transform: scale(0.4);
}

.gif-select {
  background-color: #000;
}

#gif-select {
  padding: 10px 0px !important;
  max-width: calc(100% - 177px);
}

@media (max-width: 450px) {
  #gif-select {
    max-width: calc(100% - 20%);
  }
}

.add-animation {
  max-width: 350px;
  margin: auto;
}

@media (min-width: 992px) {
  .offers .post-sorting {
    margin-left: auto;
  }
  .offers .post-sorting select {
    max-width: 200px;
  }
  .offers .post-sorting label {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}

.all-offers-section .profile-thumbnail-card .btn-black.small {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
  border-radius: 5px !important;
  font-size: 8px !important;
}

.profile-thumbnail-card .image {
  overflow: hidden;
}

.profile-thumbnail-card .image img {
  width: 100% !important;
  height: 100% !important;
}

@media (max-width: 767px) {
  .profile-thumbnail-card .image {
    aspect-ratio: 1;
  }
}

footer .input-group input {
  font-size: 12px !important;
  font-weight: 700 !important;
  border: 1px solid #FFF;
  color: #000 !important;
}

footer .input-group input::-webkit-input-placeholder {
  opacity: 1 !important;
  color: #000 !important;
}

footer .input-group input:-ms-input-placeholder {
  opacity: 1 !important;
  color: #000 !important;
}

footer .input-group input::-ms-input-placeholder {
  opacity: 1 !important;
  color: #000 !important;
}

footer .input-group input::placeholder {
  opacity: 1 !important;
  color: #000 !important;
}

footer .input-group button {
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
}

footer .input-group button:hover {
  background-color: var(--accent-dark);
  opacity: .8;
  border: 1px solid var(--accent-dark);
}

.profile-description {
  background-color: #F9F8FB;
  padding: 27px;
  border-radius: 7px;
  padding-bottom: 20px;
}

.profile-description .heading p {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.details .langs span {
  text-transform: capitalize;
}

.details .langs {
  text-transform: lowercase;
}

.profile-thumbnail-content.teachers p {
  color: #000;
  font-size: 12px;
  line-height: 24px;
}

.dumnisie-slider h2 {
  margin-bottom: 30px;
}

.dumnisie-slider h2 .marker:before {
  content: url(/wp-content/themes/edumni/assets/img/dumnisie-marker.png) !important;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  left: -30px !important;
  bottom: -15px !important;
}

@media (max-width: 991px) {
  .dumnisie-slider h2 .marker:before {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    left: -50px !important;
  }
}

.dumnisie-section {
  margin-top: 50px;
  margin-bottom: 80px;
}

.dumnisie-section .dumnisie-holder {
  background-color: #F9F8FB;
  padding: 60px;
  padding-bottom: 120px;
  border-radius: 7px;
}

@media (max-width: 1199px) {
  .dumnisie-section .dumnisie-holder {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.dumnisie-section .dumnisie-holder h2 {
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 15px;
}

.dumnisie-section .dumnisie-holder p {
  font-size: 20px;
}

@media (min-width: 992px) and (max-width: 1399px) {
  .dumnisie-section .dumnisie-holder p {
    min-height: 102px;
  }
}

.dumnisie-section .dumnisie-holder .card {
  margin-top: 30px;
  height: 100%;
  border: none;
  -webkit-filter: drop-shadow(5px 5px 60px #00000026);
          filter: drop-shadow(5px 5px 60px #00000026);
  border-radius: 20px;
}

.dumnisie-section .dumnisie-holder .card img {
  -o-object-fit: contain;
     object-fit: contain;
}

.dumnisie-section .dumnisie-holder .card h4 {
  font-size: 74px;
  line-height: 28px;
  margin-bottom: 30px;
}

.dumnisie-section .dumnisie-holder .card .price {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.dumnisie-section .dumnisie-holder .card .price:before {
  content: url(/wp-content/themes/edumni/assets/img/dumnisie-price.svg);
  position: absolute;
  left: -15px;
  bottom: -20px;
  z-index: -1;
}

.dumnisie-section .dumnisie-holder .card .button-holder * {
  font-size: 12.5px;
  font-weight: 600;
}

.dumnisie-section .dumnisie-holder .card p {
  font-size: 44px;
  line-height: 34px;
  margin-bottom: 30px;
  color: #81838C;
}

.favourites-teachers h3 {
  font-size: 16px !important;
  line-height: 21px;
}

.favourites-teachers .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  aspect-ratio: unset !important;
}

.favourites-teachers .image img {
  border-radius: 50%;
  max-width: 100px;
  max-height: 100px;
  margin-left: auto;
  margin-right: auto;
}

.favourites-teachers .profile-thumbnail-card {
  background-color: #F9F8FB;
}

.favourites-teachers .buttons-holder .btn-black {
  padding: 5px 33px;
  font-size: 10px !important;
}

.favourites-teachers .profile-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 3px !important;
}

.favourites-teachers .teacher-desc {
  color: #81838C;
  font-size: 10px;
  line-height: 15px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.favourites-teachers .teacher-subject {
  font-size: 10px;
  color: #000;
  font-weight: 700;
  line-height: 5px;
  margin-bottom: 10px;
}

.favourites-teachers .stars {
  margin-bottom: 22px !important;
}

.my-dumnisie .button-holder .btn-black {
  text-align: center;
  padding: 11px 45px !important;
  font-size: 12px !important;
}

#special-reservation-popup select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(/wp-content/themes/edumni/assets/img/ad.svg);
  background-repeat: no-repeat;
  background-position: right 3rem center;
  background-size: 1em;
}

.breadcrumbs.text-md-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: start !important;
}

.dp-woocommerce-breadcrumbs {
  color: #81838C;
}

.dp-woocommerce-breadcrumbs * {
  color: #81838C;
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 575px) {
  .dp-woocommerce-breadcrumbs * {
    font-size: 12px;
  }
}

.plus-holder img {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}

.edit-favourites .profile-thumbnail-card .buttons-holder .btn-black {
  padding: 5px 10px;
}

@media (min-width: 1200px) {
  .edit-favourites .profile-thumbnail-card .buttons-holder .btn-black {
    width: 47%;
  }
}

.edit-favourites .btn-outline {
  border-radius: 3px !important;
  padding: 5px 26px;
}

@media (max-width: 575px) {
  .profile-thumbnail-content p {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .calendar-container {
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  #select-container-mon select, #select-container-tu select, #select-container-wed select, #select-container-th select, #select-container-tu select, #select-container-fr select, #select-container-sat select, #select-container-sun select {
    width: 100%;
  }
}

.teacher-main-section .profile-thumbnail-card-column {
  padding-right: calc(var(--bs-gutter-x) * .5) !important;
}

@media (max-width: 767px) {
  select[name="miejsce_nauczania"] {
    width: 100%;
  }
  select[name="miejsce_nauczania"] option {
    margin-right: 0 !important;
  }
}

@media (min-width: 768px) {
  select[name="miejsce_nauczania"] {
    width: 100%;
  }
  select[name="miejsce_nauczania"] option {
    margin-right: 11px !important;
    width: 49%;
  }
}

.favourite-ajax {
  display: inline-block;
  background: url(../img/heart-big.svg) center center no-repeat;
  background-size: contain;
  cursor: pointer;
  width: 13px;
  height: 12px;
  margin-left: .25rem;
  -webkit-transition: .3s;
  transition: .3s;
}

.favourite-ajax.active {
  background: url(../img/heart-big-full.svg) center center no-repeat;
  background-size: contain;
}

.favourite-ajax.big {
  height: 18px;
  width: 18px;
}

.profile-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}

.profile-name p {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.term-and-conditions-section strong {
  color: #000;
}

.select2-search__field {
  width: 200px !important;
  line-height: 14px;
}
/*# sourceMappingURL=style 2.css.map */