 
:root {
  --Manrope: "Manrope", sans-serif;
  --Outfit: "Outfit", sans-serif;
  --Poppins: "Poppins", sans-serif;
  --plus-jakarta-sans: "Plus Jakarta Sans", sans-serif;
  --Anton: "Antonio", sans-serif;
  --brand-color: #0eaa8c;
  --overlay: #0eaa8ccc;
  --h-headings-size-44: 44px;
  --h-headings-size-14: 14px;
  --h-headings-size-18: 18px;
  --h-headings-size-22: 22px;
  --h-headings-size-16: 16px;
}


@media (min-width: 1500px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1520px !important;
    }
   
}
 
@media (max-width: 1500px) {
  :root {
   --h-headings-size-44: 32px;
   --h-headings-size-14: 12px;
   --h-headings-size-18: 14px;
   --h-headings-size-16: 13px;
   --h-headings-size-22: 20px;
  }
}
  
/* 1200px (xl) */
@media (max-width: 1200px) {
  :root {
    --h-headings-size-44: 32px;
    --h-headings-size-14: 12px;
    --h-headings-size-18: 14px;
    --h-headings-size-16: 13px;
    --h-headings-size-22: 18px;
  }
}

/* 1024px */
@media (max-width: 1024px) {
  :root {
      --h-headings-size-44: 32px;
   --h-headings-size-14: 12px;
   --h-headings-size-18: 14px;
   --h-headings-size-16: 13px;
  }
}

/* 992px (lg) */
@media (max-width: 992px) {
  :root {
    --h-headings-size-44: 28px;
    --h-headings-size-14: 12px;
    --h-headings-size-18: 14px;
    --h-headings-size-16: 13px;
  }
}

/* 768px (md) */
@media (max-width: 768px) {
  :root {
   --h-headings-size-44: 21px;
   --h-headings-size-14: 12px;
   --h-headings-size-18: 14px;
   --h-headings-size-16: 13px;
  }
}

/* 576px (sm) */
@media (max-width: 576px) {
  :root {
     --h-headings-size-44: 32px;
   --h-headings-size-14: 12px;
   --h-headings-size-18: 14px;
   --h-headings-size-16: 13px;
  }
}

/* 480px (xs custom) */
@media (max-width: 480px) {
  :root {
    --h-headings-size-44: 28px;
    --h-headings-size-14: 12px;
    --h-headings-size-18: 14px;
    --h-headings-size-16: 13px;
  }
}


.proschool-workshop-banner-section {
  padding: 50px 0px;
  margin-bottom: 0;
  background: #0568A308;
}
.proschool-workshop-banner-section .intro-p {
  font-family: var(--Outfit);
  font-weight: 400;
  font-size: 28px;
  line-height: 30px;
  text-transform: capitalize;
  color: #000;
  margin-bottom: 22px;
}
.proschool-workshop-banner-section .intro-video {
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.speaks-gallery-main-section-bg .speaks-gallery-pro-school .row {
    margin: 0;
}
.proschool-workshop-banner-section .intro-video .video-poster img {
    width: 100%;
    object-fit: cover;
    object-position: top;
    transition: 1.2s;
}
.proschool-workshop-banner-section .intro-video .video-poster img:hover {
    object-position: bottom;
}
.proschool-workshop-banner-section .intro-video.is-loading {
  pointer-events: none;
}
.proschool-workshop-banner-section .intro-video.is-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 5;
}
.proschool-workshop-banner-section .intro-video.is-loading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border: 4px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: spin 0.8s linear infinite;
  z-index: 6;
}
@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.proschool-workshop-banner-section .intro-video video {
  width: 100%;
  border-radius: 12px;
  display: block;
  max-height: 68vh;
  object-fit: cover;
}
.proschool-workshop-banner-section .intro-video iframe {
  width: 100%;
  border-radius: 12px;
  display: block;
}
.proschool-workshop-banner-section .intro-video .video-responsive {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.proschool-workshop-banner-section .intro-video .video-responsive iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.fade-in {
  animation: fadeInVideo 0.6s ease-in-out forwards;
}
@keyframes fadeInVideo {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
.proschool-workshop-banner-section .intro-video .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.proschool-workshop-banner-section .intro-video .play .play-btn {
  background: #0eaa8c59;
  backdrop-filter: blur(7.63px);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  color: #fff;
  font-size: 50px;
  cursor: pointer;
}
.intro-video .play .play-btn i {
  display: flex;
}
.proschool-workshop-banner-section .proschool-banner-content {
  position: relative;   
}
.proschool-worksop-banner-card {
  background: #ffffff;
  border: 1.38px solid #eaeaea;
  box-shadow: 0px 4px 40px 0px #0000001f;
  border-radius: 15px;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: sticky;
  top: 20px;
}

.proschool-worksop-banner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 6px 50px rgba(0, 0, 0, 0.2);
}

.proschool-worksop-banner-card .map {
  position: relative;
  margin-bottom: 18px;
  border-radius: 12px;
  overflow: hidden;
}
.proschool-worksop-banner-card .map img {
  width: 100%;
  border-radius: 12px;
  display: block;
  transition: transform 0.4s ease;
  min-height: 247px;
  object-fit: cover;
}

.proschool-worksop-banner-card .map:hover img {
  transform: scale(1.05);
}
.proschool-worksop-banner-card .map::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    linear-gradient(
      180.35deg,
      rgba(0, 0, 0, 0) 29.27%,
      rgba(0, 0, 0, 0.8) 99.7%
    );
  width: 100%;
  height: 100%;
  z-index: 10;
}
 
.proschool-worksop-banner-card .map .direction-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  line-height: 1.5em;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 15;
  background: rgba(0, 0, 0, 0);
  padding: 10px 18px;
  border-radius: 8px;
  transition: background 0.3s ease;
  width: auto;
  white-space: nowrap;
  border: 1px solid #fff;
}
.proschool-worksop-banner-card .direction-button:hover {
  background: rgba(0, 0, 0, 0.35);
}

.proschool-worksop-banner-card .map .address {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 14px 24px;
  font-weight: 500;
  font-size: 13px;
  line-height: 150%;
  letter-spacing: -0.3px;
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 15;
  transition: background 0.3s ease;
  border-radius: 12px;
  padding-left: 45px !important;
}
.proschool-worksop-banner-card .map .address:hover {
  background: rgba(0, 0, 0, 0.35);
}
.proschool-worksop-banner-card .map .address svg {
  position: absolute;
  left: 12px;
  width: 14px;
}
.proschool-worksop-banner-card .price {
  font-family: var(--Outfit);
  font-weight: 600;
  font-size: var(--h-headings-size-44);
  line-height: 1.2em;
  letter-spacing: 1.17px;
  color: #fff;
  width: fit-content;
  padding: 2px 12px;
  margin-bottom: 17px !important;
  position: relative;
}
.proschool-worksop-banner-card .price span {
  z-index: 15;
  position: relative;
}
.proschool-worksop-banner-card .price::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #3159ff;
  width: 100%;
  height: 100%;
  transform: rotate(1deg);
  z-index: 10;
}
.proschool-worksop-banner-card .contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.proschool-worksop-banner-card .contact-info .icon-list a {
  font-weight: 500;
  font-size:  var(--h-headings-size-16); 
  line-height: 150%;
  letter-spacing: -0.5px;
  color: #161618;
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}
.proschool-worksop-banner-card .contact-info .icon-list .icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proschool-worksop-banner-card .work-card-button button {
  padding: 16px 0px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-weight: 600;
  font-size:  var(--h-headings-size-18);
  line-height: 27px;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: #ffffff;
  background: #3159ff;
  transition: background 0.3s ease, transform 0.3s ease;
}
.proschool-worksop-banner-card .work-card-button button:hover {
  background: #2443cc;
  transform: translateY(-2px);
}
.proschool-workshop-banner-section .proschool-banner-content .h1 {
  font-family: var(--Outfit);
  font-weight: 500;
  font-size: var(--h-headings-size-44);
  line-height: 1.3em;
  color: #000000;
  margin-bottom: 10px !important;
}
 
.proschool-banner-content .p1 {
  font-weight: 400;
  font-size:  var(--h-headings-size-18);
  letter-spacing: 0.77px;
  line-height: 150%;
  color: #505050;
  width: 100%;
  margin-bottom: 40px !important;
}
.proschool-banner-icon-list {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 0;
  margin-bottom: 65px;
}
.proschool-banner-icon-list .middle-line {
  width: 2px;
  background: linear-gradient(
    260deg,
    rgba(102, 102, 102, 0) 0%,
    rgba(0, 0, 0, 0.2) 53.37%,
    rgba(102, 102, 102, 0) 100%
  );
  border-radius: 50%;
  height: 76px;
}
.proschool-banner-icon-list .list-item {
  display: flex;
  gap: 18px;
  align-items: center;
}
.proschool-banner-icon-list .list-item .icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proschool-banner-icon-list .list-item .title {
  font-family: var(--Outfit);
  font-weight: 600;
  font-size:  var(--h-headings-size-16); 
  line-height: 1.4em;
  color: #000;
  margin-bottom: 3px !important;
}
.proschool-banner-icon-list .list-item .subtitle {
  font-weight: 400;
  font-size: var(--h-headings-size-14) ;
  line-height: 1.5em;
  text-transform: capitalize;
  color: #000;
}
.proschool-banner-icon-list .list-item .subtitle.status-upcoming span {
    color: #1A56DB;
    font-weight: 500;
}
.proschool-banner-icon-list .list-item .subtitle.status-expired {
    color: #B42318;
    font-weight: 500;
}
.proschool-banner-icon-list .list-item .subtitle.status-active {
    color: #1E7F43;
    display: flex;
    align-items: center;
    gap: 10px;
	font-weight: 900;
}
.proschool-banner-icon-list .list-item .subtitle.status-active::before {
    content: '';
    display: flex;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    margin-top: 1px;
	background: #1E7F43;
    --pulse-color: rgba(30, 127, 67, 0.6);
    animation: pulseDot 1.6s infinite ease-in-out;
}
@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 var(--pulse-color);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(0,0,0,0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0,0,0,0);
        transform: scale(1);
    }
}
.proschool-banner-content .h5 {
  color: hsla(0, 0%, 0%, 1);
  font-family: Outfit !important;
  font-weight: 500 !important;
  font-size: 26px !important;
  letter-spacing: 0.8px;
  vertical-align: middle;
  text-transform: capitalize;
  margin-bottom: 20px !important;
}
.proschool-banner-content .p2 {
  padding-right: 25px;
  margin: 0;
  color: hsla(0, 0%, 31%, 1);
  font-family: Manrope;
  font-weight: 400;
  font-size:  var(--h-headings-size-18);
  line-height: 1.6em;
  letter-spacing: 0.5px;
  vertical-align: middle;
}
 
.proschool-learn-in-workshop-section {
  padding: 100px 0 0 0;
  background-color: #ffffff;
}

.proschool-learn-in-workshop-section .h2 {
	color: hsla(0, 0%, 0%, 1);
	font-family: Outfit !important;
	font-weight: 500 !important;
	font-size: var(--h-headings-size-44) !important;
	letter-spacing: 0.8px;
	vertical-align: middle;
	text-transform: capitalize;
	margin-bottom: 10px !important;
	text-align: center;
	line-height: 1.2em;
}

.proschool-learn-in-workshop-section .p {
  font-weight: 400;
  font-size:  var(--h-headings-size-18);
  letter-spacing: 0.77px;
  line-height: 150%;
  color: #505050;
  width: 100%;
  margin-bottom: 40px !important;
  text-align: center;
}

.proschool-learn-in-workshop-section .proschool-learn-in-workshop-items-main {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.proschool-learn-in-workshop-section .learn-box {
  width: calc((100% - 45px * 3) / 4);
  background: #fff;
  border: 1px solid #eee;
  padding: 41px 20px;
  border-radius: 8px;
  text-align: center;
}
.proschool-learn-in-workshop-section .learn-box img {
  margin-bottom: 14px;
  max-width: 60px;
}

.proschool-learn-in-workshop-section .learn-box .title {
  font-family: Outfit;
  font-weight: 500;
  font-size:var(--h-headings-size-22);
  line-height: 30px;
  text-transform: capitalize;
  color: #000;
  margin-bottom: 5px !important;
}

.proschool-learn-in-workshop-section .learn-box .subtitle {
  font-weight: 400;
  font-size: var(--h-headings-size-16); 
  line-height: 1.4em;
  color: #505050;
  font-family: 'Manrope';
}

.proschool-is-this-workshop-section {
  padding: 76px 0px 130px 0px;
  background-color: #ffff;
}

.proschool-is-this-workshop-section .h2 {
	color: hsla(0, 0%, 0%, 1);
	font-family: Outfit !important;
	font-weight: 500 !important;
	font-size: var(--h-headings-size-44) !important;
	letter-spacing: 0.8px;
	vertical-align: middle;
	text-transform: capitalize;
	margin-bottom: 10px !important;
	text-align: center;
	line-height: 1.2em;
}

.proschool-is-this-workshop-section .p {
	font-weight: 400;
	font-size: var(--h-headings-size-18);
	letter-spacing: 0.77px;
	line-height: 150%;
	color: #505050;
	width: 100%;
	margin-bottom: 40px !important;
	text-align: center;
}

.proschool-is-this-workshop-section .proschool-is-this-workshop-items-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.proschool-is-this-workshop-section .for-box {
  background: #fff;
  border: none;
  border-radius: 8px;
  text-align: center;
  width: calc((100% - 90px * 4 - 2px * 2) / 3);
  padding: 18px 0;
}

.proschool-is-this-workshop-section .middle-line {
  width: 2px;
  background: linear-gradient(
    261deg,
    rgba(102, 102, 102, 0) 0%,
    rgba(0, 0, 0, 0.2) 53.37%,
    rgba(102, 102, 102, 0) 100%
  );
  border-radius: 50%;
  height: 150px;
}
.proschool-is-this-workshop-section .for-box .subtitle {
	font-family: Outfit;
	font-weight: 500;
	font-size:var(--h-headings-size-22);
	line-height: 30px;
	text-transform: capitalize;
	color: #000;
}

.proschool-workshop-learn-best-section {
  background: #0568A308;
  padding: 62px 0px;
  margin: 0;
}
.proschool-workshop-learn-best-section .content-wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 14px;
}
.learn-best-content {
  width: 51.06%;
  padding: 38px 0 0 0px;
}

.learn-best-content .learn-best-content-head {
  margin-bottom: 40px;
}
.learn-best-content-head h3 {
	font-family: Outfit !important;
	font-weight: 500 !important;
	font-size: var(--h-headings-size-44) !important;
	letter-spacing: 0.8px;
	vertical-align: middle;
	text-transform: capitalize;
	margin-bottom: 10px !important;
	text-align: left;
	line-height: 1.2em;
	color: hsla(0, 0%, 0%, 1);
}

.learn-best-content-head p {
	font-weight: 400; 
	font-size:  var(--h-headings-size-18);
	letter-spacing: 0.77px;
	line-height: 150%;
	color: #505050;
	width: 100%;
	margin-bottom: 40px !important;
	text-align: left;
}

.learn-best-content-list {
  gap: 14px;
  display: flex;
  flex-direction: column;
}

.learn-best-list1 {
  display: flex;
  gap: 33px;
  padding: 10px 0;
}

.learn-best-list1-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.learn-best-list1-thumb {
  background: var(--brand-color);
  width: 60px;
  height: 60px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 11.48px;
  overflow: hidden;
}

.learn-best-list1-content h4 {
  font-family: Outfit;
  font-weight: 400;
  font-size:var(--h-headings-size-22);
  line-height: 30px;
  text-transform: capitalize;
  color: #000;
}

.learn-best-list1-content p {
  font-weight: 400;
  font-size: var(--h-headings-size-16); 
  line-height: 1.4em;
  color: #505050;
  font-family: 'Manrope';
}

.learn-best-post {
  position: relative;
  width: 48.11%;
  overflow: hidden;
  border-radius: 20px;
  max-height: 436px;
}
 
.learn-best-post-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180.02deg, rgba(0, 0, 0, 0) 35.63%, #000 99.98%);
  z-index: 1;
}

.learn-best-post-thumb img {
  width: 100%;
  display: block;
  transition: transform 0.8s ease;
}

.learn-best-post-thumb:hover img {
  transform: scale(1.05);
}

.learn-best-post-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px;
  z-index: 10;
}

.learn-best-post-description {
  color: #fff;
  font-size:  var(--h-headings-size-16); 
  font-weight: 400;
  line-height: 21px;
  padding: 15px 0 18px 0;
}

.learn-best-post-year {
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  line-height: 20px;
  font-family: 'Manrope';
  padding-bottom: 7px;
}

.learn-best-auhor-name {
  color: #fff;
  font-size: 32px;
  line-height: 30px;
  font-weight: 400;
  font-family: var(--Anton);
  padding-bottom: 6px;
}

.learn-best-auhor-post {
  color: #fff;
  font-size: 14.13px;
  font-weight: 400;

  text-transform: uppercase;
}

.freelance-roadmap {
  padding: 100px 15px 100px 15px;
  background: #fff;
}

.freelance-roadmap .content-wrapper {
  max-width: 1525px;
  margin: 0 auto;
}

.freelance-road-map-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 55px;
}

.freelance-road-map-top h2 {
  color: hsla(0, 0%, 0%, 1);
  font-family: Outfit !important;
  font-weight: 500 !important;
  font-size: var(--h-headings-size-44)  !important;
  letter-spacing: 0.8px;
  vertical-align: middle;
  text-transform: capitalize;
  margin-bottom: 10px !important;
  text-align: center;
  line-height: 1.2em;
}

.freelance-road-map-top h4 {
  font-weight: 400;
  font-size:  var(--h-headings-size-18);
  letter-spacing: 0.77px;
  line-height: 150%;
  color: #505050;
  width: 100%;
  margin-bottom: 40px !important;
  text-align: center;
}

.freelance-roadmap-wrapper-container .freelance-roadmap-content {
  margin-top: 116px;
}

.freelance-roadmap-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.freelance-roadmap-Progress-bar {
  background: #0eaa8c33;
  margin: 19px 0 27px 0;
}

.freelance-roadmap-Progress-bar .freelance-roadmap-progress-thumb {
  width: 0%;
  border: 6.5px solid;
  border-image-source: linear-gradient(
    90deg,
    rgba(6, 68, 56, 0) 0%,
    var(--brand-color) 100%
  );
    transition: 3s;
  border-image-slice: 1;
}

.freelance-roadmap-Progress-bar .freelance-roadmap-progress-thumb.reset {
  transition: 1s;
}
.roadmap-stage-time, .roadmap-stage-label {
  cursor: pointer;
}
.freelance-roadmap-wrapper.freelance-roadmap-stages .roadmap-stage-label {
  font-family: var(--Outfit);
  font-weight: 400;
  font-size:var(--h-headings-size-22);
  line-height: 33px;
  color: #000000;
}
.freelance-roadmap-wrapper.freelance-roadmap-stages .roadmap-stage-label.active,
.freelance-roadmap-wrapper.freelance-roadmap-duration .roadmap-stage-time.active {
    color: #0EAA8C;
}
.freelance-roadmap-wrapper.freelance-roadmap-stages
  .roadmap-stage-label:first-child {
  padding-left: 0;
}

.freelance-roadmap-wrapper.freelance-roadmap-stages
  .roadmap-stage-label:last-child {
  padding-right: 8px;
}
.freelance-roadmap-wrapper.freelance-roadmap-duration .roadmap-stage-time {
  font-weight: 400;
  font-size:  var(--h-headings-size-18);
  line-height: 26px;
  color: #505050;
}

.freelance-roadmap-list-info {
  margin: 29px 35px 0;
  padding: 35px;
  border: 1px solid #eaeaea;
  border-radius: 18px;
}
.freelance-roadmap-list-info .freelance-roadmap-list-heading {
	font-family: Outfit;
	font-weight: 400;
	font-size:var(--h-headings-size-22);
	line-height: 30px;
	text-transform: capitalize;
	color: #000;
	margin-bottom: 25px !important;
}

.freelance-roadmap-list-items {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.freelance-roadmap-list-items li {
  font-weight: 400;
  font-size:  var(--h-headings-size-18);
  line-height: 26px;
  color: #505050;
  list-style: none;
}

.freelance-roadmap-list-items li span {
  font-weight: 600;
}
.freelance-roadmap-list-items li svg {
  width: 20px;
  height: auto;
  margin-right: 5px;
}

.proschool-workshop-career-section {
  background-image: url(assests/images/proschool-workshop-career-section-bg.png);
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  padding: 82px 15px;
  margin: 0 0;
  position: relative;
}
.proschool-workshop-career-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #006a55d9;
  z-index: 1;
}
.proschool-workshop-career-section .banner-content {
  padding: 0px 82px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 55px;
  position: relative;
  z-index: 10;
}
.proschool-workshop-career-section .banner-content .tittle-description h2 {
  font-family: Outfit !important;
  font-weight: 500 !important;
  font-size: var(--h-headings-size-44)  !important;
  letter-spacing: 0.8px;
  vertical-align: middle;
  text-transform: capitalize;
  margin-bottom: 10px !important;
  text-align: center;
  line-height: 1.2em;
  color: #fff;
}
.proschool-workshop-career-section .banner-content .tittle-description p {
	font-weight: 400; 
	font-size:  var(--h-headings-size-18);
	letter-spacing: 0.77px;
	line-height: 150%;
	color: #fff;
	width: 100%;
	margin-bottom: 40px !important;
	text-align: center;
}
.proschool-workshop-career-section .banner-content .enroll-students {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}
.enroll-students .carreer-start {
  width: calc((100% - 158px * 2) / 3);
  text-align: center;
  padding: 21px 0px;
  border-radius: 8px;
}
.enroll-students .carreer-start h2 {
	font-family: var(--outfit);
	color: #fff;
	margin-bottom: 22px !important;
	font-weight: 700;
	font-size: 50px;
	line-height: 39.53px;
	text-align: center;
}
.enroll-students .carreer-start p {
  font-family: var(--Manrope);
  color: #fff;
  font-weight: 400;
  font-size:  var(--h-headings-size-16); 
  line-height: 1.5em;
  text-align: center;
  margin: 0;
  max-width: 80%;
  margin: auto;
}
.enroll-students .divider {
  width: 3px;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    #ffffff 50.48%,
    rgba(255, 255, 255, 0) 100%
  );
}
.proschool-workshop-career-section .banner-content .register {
  display: flex;
  gap: 22px;
  align-items: center;
}
.proschool-workshop-career-section .banner-content .register .work-card-button button {
  position: relative;
  overflow: hidden;
  padding: 14px 40px;
  border-radius: 6px;
  font-weight: 600;
  font-size:  var(--h-headings-size-16); 
  text-align: center;
  text-decoration: none;
  border: 1px solid #fff;
  color: var(--brand-color);
  background-color: #fff;
  z-index: 1;
  transition:0.3s;
}

.proschool-workshop-career-section .banner-content .register .work-card-button button:hover {
  border-color: var(--brand-color);
  background: var(--brand-color);
  transform: translateY(-2px);
}

.proschool-workshop-career-section .banner-content .register .work-card-button button span {
  position: relative;
  z-index: 2;
  transition: color 0.35s ease;
}

.proschool-workshop-career-section .banner-content .register .work-card-button button:hover span {
  color: #fff;
}

.proschool-workshop-speak-success-section {
  margin: 0 auto;
  padding: 75px 0px;
}
.proschool-workshop-speak-success-section .success-content {
  align-items: center;
  padding: 0 198px;
}
.proschool-workshop-speak-success-section .success-content h2 {
  color: hsla(0, 0%, 0%, 1);
  font-family: Outfit !important;
  font-weight: 500 !important;
  font-size: var(--h-headings-size-44)  !important;
  letter-spacing: 0.8px;
  vertical-align: middle;
  text-transform: capitalize;
  margin-bottom: 10px !important;
  text-align: center;
  line-height: 1.2em;
}
.proschool-workshop-speak-success-section .success-content p {
  font-weight: 400;
  font-size:  var(--h-headings-size-18);
  letter-spacing: 0.77px;
  line-height: 150%;
  color: #505050;
  width: 100%;
  margin-bottom: 40px !important;
  text-align: center;
}
.proschool-workshop-speak-success-section .success-content .success-batch {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
  flex-wrap: wrap;
}
.proschool-workshop-speak-success-section .success-content .success-batch img {
  max-width: calc(100% / 5 - 42px);
  height: auto;
  object-fit: cover;
  transition: 0.5s ease;
  width: 100%;
}
.proschool-workshop-speak-success-section
  .success-content
  .success-batch
  img:hover {
  transform: scale(1.1);
}

.speaks-gallery-main-section-bg {
  background: #fff;
  padding: 75px 15px;
  overflow: hidden;
}
.speaks-gallery-main-section-bg h2 {
  color: hsla(0, 0%, 0%, 1);
  font-family: Outfit !important;
  font-weight: 500 !important;
  font-size: var(--h-headings-size-44)  !important;
  letter-spacing: 0.8px;
  vertical-align: middle;
  text-transform: capitalize;
  margin-bottom: 10px !important;
  text-align: center;
  line-height: 1.2em;
}
.speaks-gallery-main-section-bg .p {
  font-weight: 400;
  font-size: var(--h-headings-size-18);
  letter-spacing: 0.77px;
  line-height: 150%;
  color: #505050;
  width: 100%;
  margin-bottom: 40px !important;
  text-align: center;
}
.speaks-gallery-main-section-bg .speak-gallery-item-image {
  overflow: hidden;
  border-radius: 12px;
}
.speaks-gallery-main-section-bg .speak-gallery-item-image img {
  width: 100%;
  object-fit: cover;
  height: 203px;
  transition: 0.3s;
  border-radius: 16px;
}
.speak-gallery-item-image.first-height img {
  height: 418px;
  transition: 0.3s;
}
.speaks-gallery-main-section-bg .speak-gallery-item-image:hover img {
  transform: scale(1.05);
}
 
.speakgallery-pro-school-items-counter {
  margin: 26px 0px 0px 0px;
  background: var(--brand-color);
  border-radius: 17px;
  padding: 12px 15px;
  width: 100%;
  min-height: 203px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.speakgallery-pro-school-items-counter h6 {
  font-family: var(--Outfit);
  font-weight: 700;
  font-size: 40px;
  color: #ffffff;
  margin: 0;
  max-width: 220px;
  width: 100%;
}
.speaks-gallery-pro-school .col-md-3 .speak-gallery-item-image:first-child, .speaks-gallery-pro-school .col-md-6 .speak-gallery-item-image:first-child {
  margin-bottom: 20px;
}
.speakgallery-pro-school-items-counter p {
  font-family: 'Manrope';
  font-weight: 500;
  font-size: 15px;
  line-height: 170%;
  color: #ffffff;
}

.wp-pro-school-testimonials-section {
  background: #fff;
  position: relative;
  padding: 69px 0px;
  overflow: hidden;
}

.wp-pro-school-testimonials-section .h2 {
  color: hsla(0, 0%, 0%, 1);
  font-family: Outfit !important;
  font-weight: 500 !important;
  font-size: var(--h-headings-size-44)  !important;
  letter-spacing: 0.8px;
  vertical-align: middle;
  text-transform: capitalize;
  margin-bottom: 10px !important;
  text-align: left;
  line-height: 1.2em;
}

.wp-pro-school-testimonials-section .p {
  font-weight: 400;
  font-size: var(--h-headings-size-18);
  letter-spacing: 0.77px;
  line-height: 150%;
  color: #505050;
  width: 100%;
  margin-bottom: 40px !important;
  text-align: left;
}

.wp-pro-school-testimonials-section .wp-pro-school-slide {
  background: #fff;
  border-radius: 21px;
  margin-right: 21px;
  padding: 35px;
  width: 400px;
  display: flex;
  flex-direction: column;
  border: 1px solid #e7e7e7;
}
.wp-pro-school-testimonials-section .wp-pro-school-stars {
  color: #fbc02d;
  font-size: 21px;
  margin: -12px 0 10px 0;
}

.wp-pro-school-testimonials-section .wp-pro-school-title {
  line-height: 1.5em;
  font-weight: 500; 
  font-size: var(--h-headings-size-18);
  color: #111111;
  letter-spacing: -0.4px;
  font-family: "outfit";
  margin-bottom: 6px;
}

.wp-pro-school-testimonials-section .wp-pro-school-text {
  line-height: 1.5em;
  color: #505050;
  font-weight: 400;
  font-size: 14px;
  margin: 6px 0 0 0;
  font-family: "Manrope";
}

.wp-pro-school-testimonials-section .wp-pro-school-user-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 40px 0 0 0;
}

.wp-pro-school-testimonials-section .wp-pro-school-avatar {
  width: 52px;
  height: 52px;
  background: #000;
  border-radius: 50%;
}

.wp-pro-school-testimonials-section .wp-pro-school-user-details {
  font-size: 14px;
}

.wp-pro-school-testimonials-section .wp-pro-school-user-details .name {
  font-weight: 600;
  font-size: var(--h-headings-size-16); 
  color: #111111;
  font-family: "manrope";
}

.wp-pro-school-testimonials-section .wp-pro-school-user-details .name:hover {
  opacity: 0.8;
  color: var(--brand-color);
}
.wp-pro-school-testimonials-section .wp-pro-school-user-info .social-icon {
  margin-left: auto;
  margin-right: 4px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.wp-pro-school-testimonials-section
  .wp-pro-school-user-info
  .social-icon:hover {
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.wp-pro-school-testimonials-section .swiper-button-next,
.wp-pro-school-testimonials-section .swiper-button-prev {
  color: #000;
}

.wp-pro-school-testimonials-section .role {
  font-weight: 400;
  font-size: 15px;
  color: #505050;
  font-family: "manrope";
}

.wp-pro-school-testimonials-section button.custom-prev-arrow.slick-arrow {
  top: 0;
  right: 52px;
  position: absolute;
  background: #fff !important;
  border: 1px solid #e7e7e7;
  border-radius: 6px;
  padding: 12px 15px;
  transition: .3s;
  display: flex !important;
}

.wp-pro-school-testimonials-section button.custom-prev-arrow.slick-arrow:hover {
  color: #fff;
  background: var(--brand-color) !important;
}

.wp-pro-school-testimonials-section button.custom-next-arrow.slick-arrow {
  top: 0;
  right: 0;
  position: absolute;
  background: #fff !important;
  border: 1px solid #e7e7e7;
  transition: .3s;
  border-radius: 6px;
  padding: 12px 15px;
  display: flex !important;
}

.wp-pro-school-testimonials-section button.custom-next-arrow.slick-arrow:hover {
  color: #fff;
  background: var(--brand-color) !important;
}

.pro-school-workshop-explore-shop-section {
  background: #fff;
  padding: 75px 15px;
}
.pro-school-workshop-explore-shop-section .h2 {
  font-family: var(--Outfit);
  font-weight: 500;
  font-size: 66px;
  line-height: 75px;
  text-align: center;
  text-transform: capitalize;
  color: #000;
  margin-bottom: 28px;
}
.pro-school-workshop-explore-shop-section .p {
  font-weight: 600;
  font-size: 28px;
  line-height: 36.1px;
  text-align: center;
  color: #505050;
  margin-bottom: 55px;
}
.pro-school-workshop-explore-shop-section .pro-school-cards-main {
  display: flex;
  width: 100%;
  gap: 20px;
  justify-content: space-between;
}
.pro-school-work-section-card {
  width: calc((100% - 38px * 3) / 4);
  margin: 0;
  padding: 17px 25px 17px 25px;
  border: 1px solid #b7b7b7;
  border-radius: 22px;
}
.pro-school-work-card-image {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  transition: transform 0.3s ease;
}
.pro-school-work-card-image::before {
  content: "";
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.pro-school-work-card-image img {
  width: 100%;
  position: relative;
  transition: transform 0.7s ease;
}
.pro-school-work-card-image:hover::before {
  opacity: 0;
}
.pro-school-work-card-image:hover img {
  transform: scale(1.1);
  z-index: 10;
}
.pro-school-card-title-work a {
  text-decoration: none;
}
.pro-school-card-title-work h5 {
  font-family: Outfit;
  font-weight: 500;
  font-size: 26px;
  color: #000000;
  margin: 13px 0px 0px 0px;
  line-height: 29px;
  transition: 0.3s ease;
}
.pro-school-card-title-work h5:hover {
  opacity: 0.8;
  color: var(--brand-color);
}
.card-timings-work {
  display: flex;
  gap: 8px;
}
.proschool-work-card-timings {
  margin: 24px 0px 0px 0px;
}
.proschool-work-card-timings .card-timings-work svg path {
  stroke: var(--brand-color);
}
.card-timings-work h6 {
  font-weight: 400;
  font-size:  var(--h-headings-size-18);
  color: #505050;
  line-height: 24px;
  margin: 0px;
}
.pro-school-work-card-price-action {
  display: flex;
  justify-content: space-between;
  margin: 33px 0px 0px 0px;
}
.pro-school-work-card-price-action .work-card-dollar h5 {
  font-family: Outfit;
  font-weight: 500;
  font-size: 30.72px;
  line-height: 43.01px;
  color: #000000;
}
.pro-school-work-card-price-action .work-card-button h6 {
  background: var(--brand-color);
  padding: 7px 22px;
  margin: 0px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: #ffffff;
  border: 1px solid var(--brand-color);
}
.pro-school-work-card-price-action .work-card-button a {
  text-decoration: none;
}
.pro-school-work-card-price-action .work-card-button h6:hover {
  background: transparent;
  border: 1px solid var(--brand-color);
  color: #000000;
  transition: 0.3s;
}

.proschool-workshop-banner-section .intro-video .play .play-btn i::before {
  font-size: 24px;
}

.proschool-worksop-banner-card .map .direction-button svg {
  width: 19px;
}

.proschool-banner-icon-list .list-item .icon svg {
  width: 22px;
  height: auto;
}

.proschool-is-this-workshop-section .for-box img {
  margin-bottom: 14px;
  max-width: 60px;
}

.learn-best-list1-thumb img {
  max-width: 34px;
}

.content-wrapper {
  position: relative;
}

.wp-pro-school-testimonials-section .wp-pro-school-user-info .social-icon svg {
  width: 32px;
}
 
@media (max-width: 1500px) {
  .enroll-students .carreer-start h2 {
    font-size: 44px;
  }
  .proschool-workshop-career-section .banner-content {
    gap: 30px;
  }
  .proschool-workshop-career-section .banner-content .register .work-card-button button {
    padding: 12px 30px;
  }
  .proschool-is-this-workshop-section .proschool-is-this-workshop-items-main {
    max-width: 1000px;
  }
  .proschool-is-this-workshop-section .for-box .subtitle, .proschool-learn-in-workshop-section .learn-box .title {
    line-height: 1.4em;
  }
  .proschool-workshop-career-section .banner-content .register {
    margin-top: 30px;
  }
}
@media (max-width: 1400px) {
  .enroll-students .carreer-start {
    width: calc(100% / 3 - 10px) !important;
  }
  .proschool-workshop-career-section .banner-content .register .work-card-button button {
    padding: 12px 25px;
  }
  .proschool-workshop-speak-success-section .success-content {
    padding: 0 130px;
  }
  .proschool-banner-content .p1 {
    margin-bottom: 22px;
  }
  .proschool-banner-icon-list {
    gap: 23px;
    margin-bottom: 22px;
  }
  .proschool-workshop-career-section,
  .proschool-learn-in-workshop-section {
    padding-top: 50px;
  }
  .proschool-is-this-workshop-section .for-box .subtitle,
  .proschool-learn-in-workshop-section .learn-box .title {
    font-size: 18px;
  }
  .proschool-workshop-career-section,
  .proschool-is-this-workshop-section {
    padding-bottom: 50px;
  }
  .proschool-workshop-career-section .banner-content {
    gap: 10px;
  }
  .freelance-roadmap,
  .proschool-workshop-career-section {
    padding: 50px 0;
  }
  .learn-best-content{
    padding-top: 0;
  }
  .proschool-banner-content .h5{
    font-size: 22px !important;  
    margin-bottom: 10px !important;
  }
}
@media (max-width: 1200px) {
  .freelance-road-map-top {
    margin-bottom: 30px;
  }
  .proschool-workshop-speak-success-section .success-content .success-batch {
    max-width: 500px;
    margin: auto;
  }
  .freelance-roadmap-wrapper-container .freelance-roadmap-content {
    margin-top: 70px;
  }
  .proschool-banner-icon-list {
    gap: 19px;
    margin-bottom: 22px;
  }
  .learn-best-list1-content {
    width: calc(100% - 60px);
  }
  .learn-best-list1 {
    gap: 17px;
  }
  .learn-best-post {
    max-width: 100%;
    max-height: 320px;
    margin-top: 60px;
  }
  .enroll-students .carreer-start {
    width: calc(100% / 3 - 20px);
  }
  .proschool-workshop-speak-success-section .success-content .success-batch img {
    max-width: calc(100% / 3 - 42px);
  }
  .proschool-learn-in-workshop-section .learn-box {
    width: calc(100% / 2 - 10px);
    margin-bottom: 20px;
  }
  .proschool-learn-in-workshop-section .proschool-learn-in-workshop-items-main {
    flex-wrap: wrap;
  }
  .proschool-is-this-workshop-section .for-box {
    width: calc(100% / 3 - 30px);
  }
}
@media (max-width: 992px) {
  .proschool-worksop-banner-card .map .direction-button {
    padding: 3px 10px;
  }
  .speaks-gallery-pro-school .col-md-3,.speaks-gallery-pro-school .col-md-6 {
    width: 100%;
    padding: 0 !important;
    margin-bottom: 22px;
  }
  .speaks-gallery-pro-school .col-md-3 .speak-gallery-item-image:first-child,.speaks-gallery-pro-school .col-md-6 .speak-gallery-item-image:first-child {
    margin-bottom: 20px;
  }
  .speak-gallery-item-image {
    width: 100%;
  }
  .proschool-worksop-banner-card .work-card-button button {
    padding: 10px 0;
  }
  .freelance-roadmap-list-info {
    margin: 0;
  }
  .proschool-banner-icon-list {
    justify-content: space-between;
  }
  .text-content {
    margin-bottom: 50px;
  }
  .proschool-workshop-learn-best-section .content-wrapper {
    flex-direction: column;
  }
  .learn-best-content {
    width: 100%;
  }
  .learn-best-post {
    max-width: 100%;
    width: 100%;
    margin-top: 40px;
  }
  .proschool-workshop-career-section .banner-content .enroll-students {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  .enroll-students .carreer-start {
    width: 100% !important;
    max-width: 300px;
    margin: auto;
  }
  .proschool-workshop-speak-success-section .success-content {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .proschool-banner-content .p1 {
	margin-bottom: 2px !important;
  }
  .proschool-banner-icon-list {
	margin-bottom: 40px;
  }
  .proschool-banner-icon-list .list-item.even {
	margin-top: 20px;
  }
  .proschool-workshop-banner-section .intro-video.is-loading::before {
    width: 40px;
    height: 40px;
  }
  .proschool-workshop-banner-section .intro-video .play .play-btn {
    width: 50px;
    height: 50px;
  }
  .wp-pro-school-testimonials-section .h2 {
    font-size: 22px !important;
  }
  .speakgallery-pro-school-items-counter h6 {
    font-size: 30px;
  }
  .speakgallery-pro-school-items-counter p {
    font-size: 15px;
  }
  .speaks-gallery-main-section-bg h2 {
    font-size: 22px !important;
  }
  .proschool-workshop-speak-success-section .success-content .success-batch {
    gap: 20px;
  }
  .proschool-workshop-speak-success-section .success-content h2 {
    font-size: 22px !important;
  }
  .enroll-students .carreer-start h2 {
    font-size: 30px;
  }
  .proschool-workshop-career-section .banner-content .tittle-description h2 {
    font-size: 22px !important;
  }
  .proschool-workshop-career-section .banner-content {
    padding: 0px 10px;
  }
  .freelance-roadmap-list-info .freelance-roadmap-list-heading {
    font-size: 16px;
  }
  .freelance-roadmap-wrapper {
    gap: 6px;
  }
  .freelance-road-map-top h2 {
    font-size: 22px !important;
  }
  .learn-best-auhor-post {
    font-size: 13px;
  }
  .learn-best-auhor-name {
    font-size: 26px;
  }
  .learn-best-post-year {
    font-size: 15px;
  }
  .learn-best-post-content {
    padding: 10px 14px;
  }
  .learn-best-list1-content h4 {
    font-size: 16px;
    line-height: 22px;
  }
  .learn-best-list1 {
    gap: 10px;
  }
  .learn-best-list1-thumb img {
    max-width: 30px;
  }
  .learn-best-list1-thumb {
    width: 40px;
    height: 40px;
  }
  .learn-best-content-head h3 {
    font-size: 22px !important;
  }
  .proschool-is-this-workshop-section .h2 {
    font-size: 22px !important;
  }
  .proschool-learn-in-workshop-section .h2 {
    font-size: 22px !important;
  }
  .proschool-banner-content .p2 {
    padding-right: 0px;
  }
  .proschool-workshop-banner-section .proschool-banner-content .h1 {
	  font-size: 22px;
  }
  .freelance-roadmap-Progress-bar .freelance-roadmap-progress-thumb {
    border: 4px solid;
  }
  .freelance-roadmap-wrapper.freelance-roadmap-duration .roadmap-stage-time {
    font-size: 12px;
    line-height: 22px;
  }
  .freelance-roadmap-wrapper.freelance-roadmap-stages .roadmap-stage-label {
    font-size: 14px;
    line-height: 22px;
  }
  .freelance-roadmap-Progress-bar {
    margin: 15px 0 15px 0;
  }
  .proschool-workshop-banner-section .container,
  .proschool-learn-in-workshop-section .container,
  .proschool-is-this-workshop-section .container,
  .proschool-workshop-learn-best-section .container,
  .freelance-roadmap .container,
  .proschool-workshop-career-section .container,
  .proschool-workshop-speak-success-section .container,
  .speaks-gallery-main-section-bg .container,
  .wp-pro-school-testimonials-section .container {
    max-width: 100%;
  }
  .proschool-banner-icon-list {
    flex-wrap: wrap;
    gap: 0px;
  }
  .proschool-banner-icon-list .list-item {
    width: calc(100% / 2 - 20px);
  }
  .proschool-banner-icon-list .middle-line:nth-child(4) {
    width: 100%;
    height: 2px;
  }
  .proschool-banner-icon-list .middle-line:nth-child(2) {
    height: 162px;
    margin-bottom: -76px;
  }
  .freelance-roadmap-list-info {
    margin: 0;
    padding: 20px;
  }
  .proschool-is-this-workshop-section .for-box .subtitle, .proschool-learn-in-workshop-section .learn-box .title {
    font-size: 14px;
  }
  .proschool-is-this-workshop-section .for-box {
    width: calc(100% / 3 - 10px);
  }
  .wp-pro-school-testimonials-section .wp-pro-school-user-info {
    margin: 20px 0 0 0;
  }
  .proschool-workshop-banner-section .intro-video .play .play-btn i::before {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .wp-pro-school-testimonials-section .p {
  	margin-bottom: 80px !important;
  }
  .wp-pro-school-testimonials-section button.custom-prev-arrow.slick-arrow {
    top: 17%;
  }
  .wp-pro-school-testimonials-section button.custom-next-arrow.slick-arrow {
    top: 17%;
  }
}
@media (max-width: 500px) {
  .wp-pro-school-testimonials-section .wp-pro-school-slide {
    width: 300px;
    margin-right: 10px;
    padding: 15px 15px;
  }
  .wp-pro-school-testimonials-section .wp-pro-school-stars {
    margin: 0px 0 10px 0;
  }
}
@media (max-width: 480px) {
  .proschool-learn-in-workshop-section .proschool-learn-in-workshop-items-main {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      overflow: auto;
      gap: 10px;
  }
  .proschool-learn-in-workshop-section .proschool-learn-in-workshop-items-main .learn-box {
      width: 220px;
  }
  .freelance-roadmap-wrapper-container {
      overflow: auto;
      padding-bottom: 20px;
   }
  .freelance-roadmap-wrapper-container .freelance-roadmap-content {
      min-width: 600px;
  }
  .freelance-roadmap-wrapper {
	  min-width: 1000px;
  }
  .freelance-roadmap-Progress-bar {
      min-width: 1000px;
  }
}
@media (max-width: 400px) {
  .wp-pro-school-testimonials-section .wp-pro-school-slide {
    width: 250px;
  }
  .wp-pro-school-testimonials-section button.custom-prev-arrow.slick-arrow {
    top: 19%;
  }
  .wp-pro-school-testimonials-section button.custom-next-arrow.slick-arrow {
    top: 19%;
  }
}