html {
  background-color: #ffffff;
  font-size: 16px;
}
html body {
  font-family: "poppins", sans-serif;
  color: #4a4a4a;
  overflow-x: hidden;
}
html .inner-section_title {
  font-size: 1.25rem;
  color: #4a4a4a;
  font-weight: 600;
  margin-bottom: 25px;
}
html .inner-section-title_desc {
  width: 500px;
  color: #6d6d72;
  font-size: 0.93rem;
  margin-top: -15px;
  margin-bottom: 35px;
}
html .inner-section p {
  font-weight: 400;
  font-size: 0.95rem;
  color: #4a4a4a;
  line-height: 1.7;
}
html .inner-section p:not(:last-of-type) {
  margin-bottom: 15px;
}

.is-dir-left {
  direction: ltr;
}

.video-overlay .is-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-overlay .is-overlay .icon {
  width: 68px;
  height: 68px;
  background: #eee;
  border-radius: 50%;
}
.video-overlay .is-overlay .icon i {
  font-size: 1.5rem;
}

button.button,
a.button {
  font-family: "poppins", sans-serif;
  transition: all 0.3s ease-in-out;
}
button.button.is-primary-button,
a.button.is-primary-button {
  color: #ffffff;
  background-color: #754c29;
  border: 1px solid #754c29;
}
button.button.is-primary-button.is-outlined,
a.button.is-primary-button.is-outlined {
  background-color: transparent;
  color: #754c29;
}
button.button.is-primary-button.is-outlined:hover,
a.button.is-primary-button.is-outlined:hover {
  background-color: #754c29;
  color: #ffffff;
}

input,
.input {
  border: none;
  color: #4a4a4a;
  font-family: "poppins", sans-serif;
  box-shadow: none;
}
input:focus,
.input:focus {
  border: none;
  box-shadow: none;
}

.form-input {
  border: 1px solid #e9e9e9;
  padding-block: 1.45rem;
}
.form-input:focus {
  border: 1px solid #754c29 !important;
}

label.label {
  font-weight: 500;
  font-size: 0.93rem;
  color: #4a4a4a;
}

.field-has-button-icon {
  position: relative;
  margin-bottom: 40px;
}
.field-has-button-icon .control-input {
  border: 1px solid #4a4a4a;
  border-radius: 4px;
  background-color: #ffffff;
  padding: 0.5rem;
  position: relative;
  z-index: 3;
}
.field-has-button-icon .control-input .icon {
  color: #4a4a4a;
  top: 0.5rem;
  left: 5px;
}
.field-has-button-icon .control-input .input {
  outline: none;
  font-size: 0.9rem;
}
.field-has-button-icon .control-input .input::-moz-placeholder {
  color: #4a4a4a;
}
.field-has-button-icon .control-input .input::placeholder {
  color: #4a4a4a;
}
.field-has-button-icon::after {
  content: "";
  background-color: #ffe6d0;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -8px;
  right: -8px;
  z-index: 2;
  border-radius: 4px;
}

textarea,
.textarea {
  border: 1px solid #e9e9e9;
  box-shadow: none;
  font-size: 0.93rem;
  font-weight: 400;
  line-height: 1.9;
}
textarea:focus,
.textarea:focus {
  border: 1px solid #754c29 !important;
  border: none;
  box-shadow: none;
}

.message-box {
  padding: 1rem 1.5rem 1rem 2rem;
  position: relative;
  border-radius: 4px;
  margin-top: 10px;
}
.message-box:not(:last-of-type) {
  margin-bottom: 15px !important;
}
.message-box p {
  font-weight: 500;
  font-size: 0.85rem;
}
.message-box .is-delete {
  position: absolute;
  right: 0;
  top: 0.7rem;
  background-color: transparent;
}
.message-box.is-info-box {
  background-color: rgba(205, 233, 246, 0.5);
}
.message-box.is-info-box p {
  color: #4780AA;
}
.message-box.is-info-box .is-delete {
  color: #4780AA;
}
.message-box.is-warning-box {
  background-color: rgba(247, 243, 215, 0.5);
}
.message-box.is-warning-box p {
  color: #927238;
}
.message-box.is-warning-box .is-delete {
  color: #927238;
}
.message-box.is-error-box {
  background-color: rgba(236, 200, 197, 0.5);
}
.message-box.is-error-box p {
  color: #AB3331;
}
.message-box.is-error-box .is-delete {
  color: #AB3331;
}
.message-box.is-success-box {
  background-color: rgba(222, 242, 215, 0.5);
}
.message-box.is-success-box p {
  color: #5B7052;
}
.message-box.is-success-box .is-delete {
  color: #5B7052;
}

@keyframes fadeInCircle {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(1.5);
  }
}
.breadcrumb {
  background-color: #fafafa;
  padding: 15px;
}
.breadcrumb li a {
  color: #754c29;
}
.breadcrumb li.is-active a {
  color: #6d6d72;
}

.top-navbar {
  background-color: #754c29;
  padding: 10px;
  color: #e6e6e6;
}
.top-navbar a {
  color: #e6e6e6;
  font-size: 0.83rem;
}
.top-navbar span {
  font-size: 0.83rem;
}
.top-navbar i {
  margin-right: 5px;
}
.top-navbar .ep-email {
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #e6e6e6;
}

.navbar .navbar-brand .navbar-logo {
  max-width: 48px;
  margin-right: 7px;
}
.navbar .navbar-brand .navbar-logo img {
  max-height: initial;
}
.navbar .navbar-start {
  margin-left: auto;
  margin-right: 0;
}
.navbar .navbar-start .navbar-item {
  color: #754c29;
  font-weight: 500;
  font-size: 1rem;
}
.navbar .navbar-start .navbar-item:hover {
  color: #754c29;
  background-color: transparent;
}
.navbar .ar-lang {
  font-family: "Cairo", sans-serif;
}

.ep-banner_header {
  min-height: 45vh;
  position: relative;
}
.ep-banner_header .is-overlay {
  background-color: rgba(14, 14, 14, 0.65);
}
.ep-banner_header .ep-banner-header_details {
  position: absolute;
  width: 100%;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.ep-banner_header .ep-banner-header_details h1 {
  color: #ffffff;
  font-size: 4rem;
}
.ep-banner_header .ep-banner-header_details h3 {
  color: #ffffff;
  font-size: 1.2rem;
}

.ep-pagination {
  margin-top: 25px;
  margin-bottom: 25px;
}
.ep-pagination .pagination-link.is-current {
  border-color: #754c29;
  background-color: #754c29;
}

.tabs {
  margin-bottom: 45px;
}
.tabs.is-toggle li.is-active a {
  border-color: #754c29;
  background-color: #754c29;
}

.timeline-box {
  position: relative;
  padding: 0rem 2rem 0rem 2rem;
  margin-top: 25px;
}
.timeline-box .timeline-letter {
  position: absolute;
  font-weight: bold;
  color: #754c29;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  background-color: #ffe6d0;
  left: 0;
  top: 0;
  font-size: 0.75rem;
  z-index: 2;
}
.timeline-box .timeline-letter i {
  font-size: 1.2rem;
}
.timeline-box .timeline-content {
  padding-left: 2.55rem;
  position: relative;
  left: -0.8rem;
}
.timeline-box .timeline-content .timeline-box-date {
  font-weight: 600;
  font-size: 0.83rem;
  color: #754c29;
  background-color: #ffe6d0;
  padding: 7px 20px;
  border-radius: 25px;
  display: inline-block;
  margin-bottom: 15px;
}
.timeline-box .timeline-content .timeline-title {
  font-weight: 500;
  font-size: 1.02rem;
  color: #4a4a4a;
  margin-bottom: 3px;
}
.timeline-box .timeline-content .timeline-subtitle {
  font-weight: 500;
  font-size: 0.93rem;
  color: #754c29;
  margin-bottom: 10px;
}
.timeline-box .timeline-content .timeline-description {
  font-weight: 400;
  font-size: 0.85rem;
  color: #6d6d72;
}
.timeline-box:not(:last-of-type) .timeline-content .timeline-description {
  padding-bottom: 25px;
}
.timeline-box:not(:last-of-type) .timeline-content::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  height: 70%;
  border-width: 1px;
  border-style: dashed;
  border-color: transparent transparent transparent #754c29;
  top: 30%;
}
.timeline-box.is-borderless {
  padding-left: 0;
}
.timeline-box.is-borderless .timeline-content {
  padding-left: 0;
  left: 0;
}
.timeline-box.is-borderless .timeline-content .timeline-description {
  padding-bottom: 0;
}
.timeline-box.is-borderless .timeline-content::before {
  display: none;
}
.timeline-box.is-borderless:not(:last-of-type) {
  margin-bottom: 35px;
}

.accordion-box {
  background-color: #ffffff;
  margin-block: 7px;
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  margin-top: 0;
  margin-bottom: 15px !important;
}
.accordion-box .question {
  background: transparent;
  cursor: pointer;
  padding: 0.5rem 1.75rem !important;
  z-index: 2;
  position: sticky;
  transition: all 0.3s ease-in-out;
}
.accordion-box .question .question-title {
  font-weight: 500;
  font-size: 1rem;
  color: #4a4a4a;
}
.accordion-box .question .icon {
  color: #4a4a4a;
  font-size: 1.5rem;
}
.accordion-box .answer-container {
  overflow: hidden;
  padding: 0;
  padding-inline: 1.75rem !important;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.accordion-box .answer {
  font-weight: 400;
  font-size: 0.93rem;
  color: #4a4a4a;
  padding: 0;
  opacity: 0;
  position: absolute;
  pointer-events: none;
  transform: translateY(-100px);
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
.accordion-box.is-open {
  background-color: #ffe6d0;
  margin-bottom: 15px !important;
}
.accordion-box.is-open .question {
  padding: 1.5rem 1.75rem 1rem !important;
}
.accordion-box.is-open .answer-container {
  padding: 0 1.75rem 1.5rem !important;
}
.accordion-box.is-open .answer {
  opacity: 1;
  position: relative;
  pointer-events: none;
  transform: translateY(0);
  z-index: 1;
}

.ep-announcement {
  padding: 0.8rem;
  background: #ffecc0;
}
.ep-announcement .announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ep-announcement .announcement-content .announcement-icon {
  font-size: 1.2rem;
  margin-right: 7px;
}
.ep-announcement .announcement-content .announcement-text a {
  text-decoration: underline;
  color: #0f1820;
}

.ep-slider {
  min-height: 65vh;
}
.ep-slider .slider-item .slider-item_textcontent .slider-tagline {
  color: #754c29;
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.ep-slider .slider-item .slider-item_textcontent .slider-title {
  font-size: 3.45rem;
  color: #4a4a4a;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 17px;
}
.ep-slider .slider-item .slider-item_textcontent .slider-text {
  color: #555;
  margin-bottom: 25px;
  line-height: 1.7;
}
.ep-slider .slider-item .slider-item_textcontent .buttons .button {
  width: 150px;
}
.ep-slider .slider-item .slider-item_textcontent .buttons .button.is-outlined:hover {
  background-color: transparent;
  color: #754c29;
}
.ep-slider .slider-item .slider-images .ep-bordered-top_img {
  max-width: 380px;
  margin: auto;
  position: relative;
}
.ep-slider .slider-item .slider-images .ep-bordered-top_img .play-video {
  width: 64px;
  height: 64px;
  background-color: #754c29;
  color: #ffffff;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  left: 0%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.ep-slider .slider-item .slider-images .ep-bordered-top_img .play-video::before {
  content: "";
  width: 64px;
  height: 64px;
  background-color: rgba(117, 76, 41, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  animation-name: fadeInCircle;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transition: all 0.3s linear;
  animation-duration: 3s;
  border-radius: 50%;
  z-index: -1;
}
.ep-slider .slider-item .slider-images .ep-bordered-top_img .play-video i {
  font-size: 2rem;
  color: #ffffff;
}
.ep-slider .slider-item .slider-images .ep-bordered-top_img img {
  border-radius: 8px;
}
.ep-slider .slider-item .slider-images .ep-bordered-top_img::after {
  content: "";
  top: 30px;
  display: block;
  background: #ffe6d0;
  z-index: -1;
  border-radius: 8px;
  right: -50px;
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #ffe6d0;
}

.ep_categories {
  overflow: hidden;
}
.ep_categories h2.ep_categories_title {
  font-size: 1.25rem;
  color: #4a4a4a;
  font-weight: 600;
  margin-bottom: 35px;
}
.ep_categories .tns-outer > .tns-ovh {
  overflow: visible !important;
}
.ep_categories .ep_category_item {
  background-color: #fdf6f0;
}
.ep_categories .ep_category_item .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #ffe6d0;
  margin-bottom: 15px;
}
.ep_categories .ep_category_item .icon img {
  width: 42px;
}
.ep_categories .ep_category_item h4 {
  color: #754c29;
  font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: 15px;
}
.ep_categories .ep_category_item a.button {
  width: 100px;
  font-size: 0.85rem;
}

.ep_latestworks h2.ep_latestworks_title {
  font-size: 1.25rem;
  color: #4a4a4a;
  font-weight: 600;
  margin-bottom: 35px;
}
.ep_latestworks .fj-gallery {
  margin-bottom: 45px;
}
.ep_latestworks .fj-gallery .fj-gallery-item {
  overflow: hidden;
  border-radius: 5px;
}
.ep_latestworks .fj-gallery .fj-gallery-item img {
  transition: all 0.3s linear;
  border-radius: 5px;
}
.ep_latestworks .fj-gallery .fj-gallery-item img:hover {
  transform: scale(1.2);
  border-radius: 5px !important;
}
.ep_latestworks a.is-primary-button {
  width: 175px;
}

.glightbox-clean .gslide-title {
  font-weight: 500 !important;
  font-size: 1.15rem !important;
  color: #754c29 !important;
  font-family: "poppins", sans-serif !important;
  margin-bottom: 10px !important;
  text-align: center;
}
.glightbox-clean .gslide-desc {
  font-weight: 400 !important;
  font-size: 0.93rem !important;
  color: #4a4a4a !important;
  font-family: "poppins", sans-serif !important;
  text-align: center;
}

.ep-testimonials {
  position: relative;
}
.ep-testimonials .is-overlay {
  background-color: rgba(14, 14, 14, 0.5);
}
.ep-testimonials .testimonial-slider {
  position: relative;
  text-align: center;
}
.ep-testimonials .testimonial-slider .testimonail-icon {
  color: #ffe6d0;
  text-align: center;
  font-size: 2rem;
  height: 64px;
  width: 64px;
  border: 1px solid #ffe6d0;
  border-radius: 50%;
  margin-bottom: 45px;
}
.ep-testimonials .testimonial-slider button[data-action=stop] {
  display: none;
}
.ep-testimonials .testimonial-slider .testimonial-item {
  text-align: center;
  margin: auto;
}
.ep-testimonials .testimonial-slider .testimonial-item .testimonial-text {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.8;
  width: 80%;
  margin: 0 auto 40px;
}
.ep-testimonials .testimonial-slider .testimonial-item h3.reviewer {
  font-weight: 500;
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 7px;
  position: relative;
}
.ep-testimonials .testimonial-slider .testimonial-item h3.reviewer::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 40px;
  display: block;
  background: #ffe6d0;
  left: 50%;
  transform: translate(-50%, -15px);
}
.ep-testimonials .testimonial-slider .testimonial-item h5 {
  color: #ffe6d0;
  font-size: 0.93rem;
}
.ep-testimonials .testimonial-slider .slider-controllers button {
  outline: none;
  background-color: transparent !important;
  box-shadow: none !important;
  text-decoration: none;
  color: #ffe6d0;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.ep-testimonials .testimonial-slider .slider-controllers button:hover {
  background-color: transparent;
}
.ep-testimonials .testimonial-slider .slider-controllers button i {
  font-size: 2.5rem;
}
.ep-testimonials .testimonial-slider .slider-controllers button.is-prev-slide {
  left: 0;
}
.ep-testimonials .testimonial-slider .slider-controllers button.is-next-slide {
  right: 0;
}

.ep-events h2.ep_categories_title {
  font-size: 1.25rem;
  color: #4a4a4a;
  font-weight: 600;
  margin-bottom: 35px;
}
.ep-events .event_item {
  width: 75%;
  margin: 0 auto 25px;
  overflow: hidden;
}
.ep-events .event_item .image {
  width: 280px;
}
.ep-events .event_item .image img {
  border-radius: 5px;
}
.ep-events .event_item .event_content {
  padding: 2rem;
}
.ep-events .event_item .event_content .event_date {
  display: inline-block;
  margin-bottom: 25px;
  position: relative;
}
.ep-events .event_item .event_content .event_date .is-flex {
  background: #754c29;
  color: #ffffff;
  width: 80px;
  height: 80px;
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}
.ep-events .event_item .event_content .event_date strong {
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1.2;
}
.ep-events .event_item .event_content h2 {
  font-size: 1.9rem;
  margin-bottom: 10px;
}
.ep-events .event_item .event_content h2 a {
  color: #4a4a4a;
}
.ep-events .event_item .event_content .workshop-metatags {
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.ep-events .event_item .event_content .workshop-metatags li {
  color: #754c29;
  font-size: 0.93rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  margin-right: 10px;
  padding-right: 12px;
  position: relative;
}
.ep-events .event_item .event_content .workshop-metatags li .icon {
  margin-right: 5px;
}
.ep-events .event_item .event_content .workshop-metatags li .icon i {
  font-size: 1.25rem;
}
.ep-events .event_item .event_content .workshop-metatags li:not(:last-of-type)::after {
  content: "";
  right: 0;
  top: 50%;
  position: absolute;
  width: 1px;
  height: 55%;
  display: block;
  transform: translateY(-50%);
  background-color: #e9e9e9;
}
.ep-events .event_item .event_content p {
  color: #6d6d72;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.ep-about .ep-about_header {
  min-height: 45vh;
  position: relative;
}
.ep-about .ep-about_header .is-overlay {
  background-color: rgba(14, 14, 14, 0.65);
}
.ep-about .ep-about_header .about-header_deatils {
  position: absolute;
  width: 100%;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.ep-about .ep-about_header .about-header_deatils .about-profile_picture {
  width: 155px;
  margin-right: 15px;
}
.ep-about .ep-about_header .about-header_deatils .about-profile_picture img {
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}
.ep-about .ep-about_header .about-header_deatils h1 {
  color: #ffffff;
  font-size: 1.9rem;
}
.ep-about .ep-about_header .about-header_deatils h3 {
  color: #ffffff;
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.ep-about .ep-about_header .about-header_deatils .social-media-links .button {
  padding: 1em;
  border-radius: 50%;
  position: relative;
  background-color: #ffffff;
  border: 1px solid #ffffff;
}
.ep-about .ep-about_header .about-header_deatils .social-media-links .button:not(:last-of-type) {
  margin-right: 7px;
}
.ep-about .ep-about_header .about-header_deatils .social-media-links .button:hover {
  color: #754c29;
}
.ep-about .ep-about_header .about-header_deatils .social-media-links .button::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 46px;
  height: 46px;
  border: 1px solid #ffffff;
  background-color: transparent;
  border-radius: 50%;
}
.ep-about .ep-about_title_desc {
  width: 500px;
  color: #6d6d72;
  font-size: 0.93rem;
  margin-top: -25px;
  margin-bottom: 35px;
}
.ep-about .ep-about_description .inner-section {
  border-bottom: 1px solid #e9e9e9;
  width: 80%;
  padding-bottom: 45px;
}
.ep-about .ep-about_edu_exp {
  padding-bottom: 3rem;
}
.ep-about .ep-gallery .gallery-card_item {
  border-radius: 8px;
  position: relative;
  height: 250px;
  overflow: hidden;
}
.ep-about .ep-gallery .gallery-card_item .is-overlay {
  background-color: rgba(14, 14, 14, 0.5);
}
.ep-about .ep-gallery .gallery-card_item .gallery_item_contnet {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.ep-about .ep-gallery .gallery-card_item .gallery_item_contnet h3 {
  color: #ffffff;
  font-size: 500;
  margin-bottom: 5px;
  font-size: 1.5rem;
}
.ep-about .ep-gallery .gallery-card_item .gallery_item_contnet .button {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
}
.ep-about .ep-gallery .gallery-card_item .gallery_item_contnet .button:hover {
  background-color: transparent;
}

.ep-works .ep-works_header {
  min-height: 45vh;
  position: relative;
}
.ep-works .ep-works_header .is-overlay {
  background-color: rgba(14, 14, 14, 0.65);
}
.ep-works .ep-works_header .about-header_deatils {
  position: absolute;
  width: 100%;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.ep-works .ep-works_header .about-header_deatils h1 {
  color: #ffffff;
  font-size: 4rem;
}
.ep-works .ep-works_header .about-header_deatils h3 {
  color: #ffffff;
  font-size: 1.2rem;
}
.ep-works .ep-works_header .about-header_deatils .social-media-links .button {
  padding: 1em;
  border-radius: 50%;
  position: relative;
  background-color: #ffffff;
  border: 1px solid #ffffff;
}
.ep-works .ep-works_header .about-header_deatils .social-media-links .button:not(:last-of-type) {
  margin-right: 7px;
}
.ep-works .ep-works_header .about-header_deatils .social-media-links .button:hover {
  color: #754c29;
}
.ep-works .ep-works_header .about-header_deatils .social-media-links .button::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 46px;
  height: 46px;
  border: 1px solid #ffffff;
  background-color: transparent;
  border-radius: 50%;
}
.ep-works .fj-gallery {
  margin-bottom: 45px;
}
.ep-works .fj-gallery .fj-gallery-item {
  overflow: hidden;
  border-radius: 5px;
}
.ep-works .fj-gallery .fj-gallery-item img {
  transition: all 0.3s linear;
  border-radius: 5px;
}
.ep-works .fj-gallery .fj-gallery-item img:hover {
  transform: scale(1.2);
  border-radius: 5px !important;
}

.ep-workshop .ep-workshop_header {
  min-height: 45vh;
  position: relative;
}
.ep-workshop .ep-workshop_header .is-overlay {
  background-color: rgba(14, 14, 14, 0.65);
}
.ep-workshop .ep-workshop_header .about-header_deatils {
  position: absolute;
  width: 100%;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.ep-workshop .ep-workshop_header .about-header_deatils h1 {
  color: #ffffff;
  font-size: 4rem;
}
.ep-workshop .ep-workshop_header .about-header_deatils h3 {
  color: #ffffff;
  font-size: 1.2rem;
}
.ep-workshop .event_item {
  width: 75%;
  margin: 0 auto 50px;
  overflow: hidden;
}
.ep-workshop .event_item .image {
  width: 280px;
}
.ep-workshop .event_item .image img {
  border-radius: 5px;
}
.ep-workshop .event_item .event_content {
  padding: 2rem;
}
.ep-workshop .event_item .event_content .event_date {
  display: inline-block;
  margin-bottom: 25px;
  position: relative;
}
.ep-workshop .event_item .event_content .event_date .is-flex {
  background: #754c29;
  color: #ffffff;
  width: 80px;
  height: 80px;
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}
.ep-workshop .event_item .event_content .event_date strong {
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1.2;
}
.ep-workshop .event_item .event_content h2 {
  font-size: 1.9rem;
  margin-bottom: 10px;
}
.ep-workshop .event_item .event_content h2 a {
  color: #4a4a4a;
}
.ep-workshop .event_item .event_content .workshop-metatags {
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.ep-workshop .event_item .event_content .workshop-metatags li {
  color: #754c29;
  font-size: 0.93rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  margin-right: 10px;
  padding-right: 12px;
  position: relative;
}
.ep-workshop .event_item .event_content .workshop-metatags li .icon {
  margin-right: 5px;
}
.ep-workshop .event_item .event_content .workshop-metatags li .icon i {
  font-size: 1.25rem;
}
.ep-workshop .event_item .event_content .workshop-metatags li:not(:last-of-type)::after {
  content: "";
  right: 0;
  top: 50%;
  position: absolute;
  width: 1px;
  height: 55%;
  display: block;
  transform: translateY(-50%);
  background-color: #e9e9e9;
}
.ep-workshop .event_item .event_content p {
  color: #6d6d72;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 0.95rem;
}
.ep-workshop .ep-pagination {
  width: 75%;
  margin-right: auto;
  margin-left: auto;
}

.ep-workshop_details .ep-workshop_header {
  min-height: 45vh;
  position: relative;
}
.ep-workshop_details .ep-workshop_header .is-overlay {
  background-color: rgba(14, 14, 14, 0.65);
}
.ep-workshop_details .ep-workshop_header .about-header_deatils {
  position: absolute;
  width: 100%;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.ep-workshop_details .ep-workshop_header .about-header_deatils h1 {
  color: #ffffff;
  font-size: 4rem;
}
.ep-workshop_details .ep-workshop_header .about-header_deatils h3 {
  color: #ffffff;
  font-size: 1.2rem;
}
.ep-workshop_details .inner-section {
  width: 75%;
}
.ep-workshop_details .stats-list {
  margin-top: 5px;
  margin-bottom: 35px;
}
.ep-workshop_details .stats-list > ul {
  flex-wrap: wrap;
}
.ep-workshop_details .stats-list > ul li {
  margin-bottom: 7px;
}
.ep-workshop_details .stats-list .stats-icon .icon {
  background: #ffe6d0;
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
}
.ep-workshop_details .stats-list .stats-icon .icon i {
  position: relative;
  font-size: 1.75rem;
}
.ep-workshop_details .stats-list .stats-title-content {
  margin-left: 15px;
}
.ep-workshop_details .stats-list .stats-title-content h4 {
  color: #4a4a4a;
  font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.ep-workshop_details .stats-list .stats-title-content small {
  font-weight: 400;
  color: #4a4a4a;
  font-size: 0.93rem;
  margin-top: -3px;
  display: block;
  margin-bottom: 8px;
}
.ep-workshop_details .ep-about_description {
  padding-bottom: 45px;
}
.ep-workshop_details .program-features {
  padding-bottom: 45px;
}
.ep-workshop_details .program-features .items-list li .media-left {
  margin-right: 7px;
}
.ep-workshop_details .program-features .items-list li:not(:last-of-type) {
  margin-bottom: 15px;
}
.ep-workshop_details .program-features .items-list li .icon {
  background-color: #ffe6d0;
  border-radius: 50%;
  margin-right: 10px;
}
.ep-workshop_details .program-features .items-list li .icon i {
  color: #754c29;
  font-size: 0.75rem;
}
.ep-workshop_details .program-features .items-list li span:last-of-type {
  font-weight: 400;
  font-size: 0.95rem;
  color: #4a4a4a;
}
.ep-workshop_details .faq {
  padding-bottom: 45px;
}
.ep-workshop_details .submit-application .application-form {
  padding: 3rem;
  border: 1px solid #E9E9E9;
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  border-radius: 5px;
  background-color: #ffffff;
}
.ep-workshop_details .submit-application .application-form .inner-section-title_desc {
  margin-left: auto;
  margin-right: auto;
}
.ep-workshop_details .submit-application .application-form .label {
  font-size: 0.93rem;
  font-weight: 500;
}
.ep-workshop_details .submit-application .application-form .textarea {
  min-height: 100px !important;
}
.ep-workshop_details .submit-application .application-form .form-input:focus {
  border: 1px solid #754c29 !important;
}
.ep-workshop_details .submit-application .application-form .checkbox input {
  position: relative;
  top: 1px;
}
.ep-workshop_details .submit-application .application-form .submit-button {
  margin-top: 10px;
  width: 100% !important;
}
.ep-workshop_details .submit-application .is-primary-button {
  box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02);
  width: 200px;
  font-size: 1.05rem;
}
.ep-workshop_details .submit-application .is-primary-button:hover {
  box-shadow: none;
}

.ep-contact {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
.ep-contact .contact-form {
  max-width: 60%;
  margin: auto;
}
.ep-contact .contact-form .inner-section-title_desc {
  margin-left: auto;
  margin-right: auto;
}

.google-map {
  border-top: 4px solid #dbdcde;
  height: 450px;
}

.ep-thankyou .content-wrapper {
  text-align: center;
  margin-bottom: 10px;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ep-thankyou .content-wrapper .success-message .icon {
  background-color: #ffe6d0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 35px;
}
.ep-thankyou .content-wrapper .success-message .icon i {
  color: #754c29;
  font-size: 2.35rem;
}
.ep-thankyou .content-wrapper .order-page-title {
  font-weight: bold;
  font-size: 2rem;
  color: #4a4a4a;
  margin-bottom: 10px;
}
.ep-thankyou .content-wrapper .order-page-subtitle {
  font-size: 0.93rem;
  font-weight: 400;
  color: #4a4a4a;
  margin-bottom: 25px;
}

.is_404_page {
  min-height: 45vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.is_404_page .error-content h1 {
  color: #4a4a4a;
  font-size: 10rem;
  font-weight: bold;
  line-height: 1;
}
.is_404_page .error-content h1 span {
  color: #754c29;
}
.is_404_page .error-content h3 {
  font-weight: bold;
  font-size: 2rem;
}
.is_404_page .error-content p {
  font-weight: 400;
  font-size: 0.93rem;
  color: #4a4a4a;
  margin-bottom: 25px;
}
.is_404_page .error-content .home-button {
  font-size: 0.93rem;
}

.ep-contact_us {
  background-color: #754c29;
  padding: 2.5rem 1.5rem;
}
.ep-contact_us .ep-contact_item {
  display: flex;
  align-items: center;
}
.ep-contact_us .ep-contact_item .ep-contact-item_icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #ffffff;
  justify-content: center;
  display: flex;
  align-items: center;
  position: relative;
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 0;
  margin-right: 20px;
}
.ep-contact_us .ep-contact_item .ep-contact-item_icon i {
  color: #754c29;
  font-size: 2rem;
}
.ep-contact_us .ep-contact_item .ep-contact-item_icon:after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 72px;
  height: 72px;
  border: 1px solid #ffffff;
  background-color: transparent;
  border-radius: 50%;
}
.ep-contact_us .ep-contact_item .ep-contact-item_details h4 {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 3px;
}
.ep-contact_us .ep-contact_item .ep-contact-item_details h2 {
  color: #f2f2f2;
  font-size: 0.9rem;
}
.ep-contact_us .ep-contact_item .ep-contact-item_details h2 a {
  color: #f2f2f2;
}

footer .footer-menus_section {
  padding: 4rem 1.5rem;
  background-color: #fafafa;
}
footer .footer-menus_section .about-us .ep-logo {
  max-width: 64px;
  margin-right: 7px;
  margin-bottom: 15px;
}
footer .footer-menus_section .about-us h3 {
  font-weight: 600;
  color: #754c29;
  margin-bottom: 7px;
  font-size: 1.05rem;
}
footer .footer-menus_section .about-us p {
  font-size: 0.93rem;
  line-height: 1.65;
}
footer .footer-menus_section .social-media-links .button {
  padding: 0.5rem 0.75rem;
}
footer .footer-menus_section .social-media-links .button i {
  font-size: 1.15rem;
}
footer .footer-menus_section .social-media-links .button:hover {
  background-color: #9e6d54;
  border: 1px solid #9e6d54;
}
footer .footer-menus_section .menu .menu-label {
  color: #754c29;
  letter-spacing: 0;
  font-weight: 600;
  font-size: 0.97rem;
  text-transform: capitalize;
  padding-bottom: 15px;
  border-bottom: 1.5px solid #e9e9e9;
  position: relative;
  margin-bottom: 25px;
}
footer .footer-menus_section .menu .menu-label::after {
  content: "";
  position: absolute;
  width: 45px;
  height: 1.5px;
  left: 0;
  background: #754c29;
  z-index: 1;
  bottom: -1.5px;
  display: block;
}
footer .footer-menus_section .menu .menu-list li a {
  padding: 0;
  font-size: 0.93rem;
  display: flex;
  align-items: center;
  text-transform: capitalize;
}
footer .footer-menus_section .menu .menu-list li a i {
  font-size: 1.2rem;
  margin-right: 7px;
}
footer .footer-menus_section .menu .menu-list li a:hover {
  background-color: transparent;
}
footer .footer-menus_section .menu .menu-list li:not(:last-of-type) {
  margin-bottom: 13px;
}
footer .copyrights {
  padding: 1.25rem;
  font-size: 0.93rem;
}
footer .copyrights a {
  color: #6d6d72;
  text-decoration: underline;
}

@media screen and (max-width: 360px) {
  .ep-slider .slider-item .slider-item_textcontent .buttons .button {
    margin-right: 0 !important;
    width: 200px;
  }
  .workshop-metatags li {
    font-size: 0.78rem !important;
  }
}
@media screen and (max-width: 479px) {
  .top-navbar a {
    font-size: 0.75rem;
    text-align: center;
  }
  .top-navbar i {
    display: none;
  }
  .top-navbar .level-right {
    flex-direction: column-reverse;
  }
  .top-navbar .level-right .ep-work-time {
    margin-bottom: 5px;
  }
  .top-navbar .level-right .ep-email {
    padding-right: 0;
    margin-left: 0;
    border: none;
  }
  .announcement-content {
    flex-direction: column;
    font-size: 0.9rem;
  }
  .announcement-content .announcement-text {
    text-align: center;
    margin-top: 5px;
  }
  .ep-slider .slider-item .slider-images .ep-bordered-top_img {
    max-width: 300px;
  }
  .ep-slider .slider-item .slider-images .ep-bordered-top_img:after {
    left: 20px;
    top: 20px;
  }
  .ep-slider .slider-item .play-video {
    left: 50% !important;
  }
  .ep-slider .slider-item .slider-item_textcontent {
    width: 100%;
  }
  .ep-slider .slider-item .slider-item_textcontent .slider-title {
    font-size: 2.25rem !important;
  }
  .ep-slider .slider-item .slider-item_textcontent .slider-title br {
    display: none;
  }
  .event_item .is-primary-button {
    width: 100% !important;
  }
  .is_404_page .error-content h1 {
    font-size: 7rem;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .announcement-content {
    font-size: 0.9rem;
  }
  .slider-item_textcontent {
    width: 90%;
    margin: auto;
  }
  .slider-item_textcontent .slider-title {
    font-size: 2.75rem !important;
  }
}
@media screen and (max-width: 768px) {
  .section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .ep-slider .slider-item .slider-item_content > .columns {
    flex-direction: column-reverse;
    display: flex;
  }
  .ep-slider .slider-item .slider-item_content > .columns .slider-images {
    margin-bottom: 50px;
  }
  .ep-slider .slider-item .slider-item_content > .columns .slider-item_textcontent {
    text-align: center;
  }
  .ep-slider .slider-item .slider-item_content > .columns .slider-item_textcontent .buttons {
    justify-content: center;
  }
  .ep-testimonials .testimonial-slider .testimonial-item .testimonial-text {
    width: 90%;
  }
  .ep-testimonials .testimonial-slider .slider-controllers button.is-prev-slide {
    left: -35px;
  }
  .ep-testimonials .testimonial-slider .slider-controllers button.is-next-slide {
    right: -35px;
  }
  .event_item > .is-flex {
    flex-direction: column;
  }
  .event_item .image {
    margin: 0 auto 25px;
  }
  .event_item .event_content {
    text-align: center;
    padding: 0 !important;
  }
  .event_item .event_content .workshop-metatags {
    justify-content: center;
  }
  footer .ep-logo {
    margin: 0 auto 25px auto !important;
  }
  footer .footer-menus_section .menu .menu-label::after {
    left: 50%;
    transform: translateX(-50%);
  }
  footer .categories_list {
    justify-content: center;
  }
  footer .menu-list li a {
    justify-content: center;
  }
  footer .social-media-links {
    justify-content: center;
  }
  footer .footer-menus_section {
    padding: 1.5rem;
  }
  .ep-about_header {
    min-height: 48vh !important;
  }
  .about-header_deatils .media.is-align-items-center {
    display: flex;
    flex-direction: column;
  }
  .about-header_deatils .media.is-align-items-center .image.about-profile_picture {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .about-header_deatils .level-left + .level-right {
    margin-top: 0;
  }
  .ep-about .ep-about_description .inner-section {
    width: 100%;
  }
  .breadcrumb {
    margin-bottom: 0 !important;
  }
  .ep-about .ep-about_edu_exp .timeline-box {
    padding-right: 0 !important;
  }
  .inner-section-title_desc {
    width: 100% !important;
  }
  .ep-works .ep-works_header .about-header_deatils h1,
  .ep-workshop .ep-workshop_header .about-header_deatils h1 {
    font-size: 3rem;
  }
  .ep-workshop .ep-pagination {
    width: 100%;
  }
  .ep-contact .contact-form {
    max-width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1023px) {
  .ep-slider .slider-title {
    font-size: 2.15rem !important;
  }
  .ep-slider .slider-images .ep-bordered-top_img {
    max-width: 320px !important;
  }
  .ep_categories {
    padding-top: 0;
  }
}
@media screen and (max-width: 1023px) {
  .top-navbar .level {
    flex-direction: column;
  }
  .top-navbar .level .ep-location {
    margin-bottom: 7px;
  }
  .navbar .navbar-burger {
    margin-top: 5px;
    margin-left: 0;
    background-color: transparent;
  }
  .navbar .is-mobile-options {
    margin-left: auto;
  }
  .navbar .navbar-menu {
    display: block;
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
    pointer-events: none;
    z-index: -1;
  }
  .navbar .navbar-menu .navbar-dropdown {
    display: none;
  }
  .navbar .navbar-menu.is-active {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .about-header_deatils {
    width: 95% !important;
  }
  .ep-about .ep-about_edu_exp {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .breadcrumb {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .show_works {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .ep-banner_header .ep-banner-header_details {
    padding: 1rem;
  }
  .ep-banner_header .ep-banner-header_details h1 {
    font-size: 3rem;
    line-height: 1.3;
  }
  .ep-workshop_details .inner-section {
    width: 100%;
  }
}
@media (min-width: 1024px) and (max-width: 1215px) {
  .ep-slider .slider-title {
    font-size: 2.45rem !important;
  }
}
@media screen and (max-width: 1215px) {
  .event_item {
    width: 100% !important;
  }
}
@media (min-width: 1216px) and (max-width: 1407px) {
  .ep-slider .slider-title {
    font-size: 3rem !important;
  }
  .event_item {
    width: 95% !important;
  }
}
/*# sourceMappingURL=core.css.map */
