@import url("https://fonts.googleapis.com/css2?family=Anton&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Manrope:wght@200..800&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --Manrope: "Manrope", sans-serif;
  --outfit: "Outfit", sans-serif;
  --poppins: "Poppins", sans-serif;
  --Urbanist: "Urbanist", sans-serif;
  --Anton: "Anton", sans-serif;
  --DM-Sans: "DM Sans", sans-serif;
  --brand-color: #0568a3;
}
body {
  background-color: #fff;
  font-family: var(--Manrope);
}
ul,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0px;
}
/* WebPro School Responsive Container */
*,
*::before,
*::after {
  box-sizing: border-box;
}
.webpro-container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 992px) {
  .webpro-container {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .webpro-container {
    max-width: 95%;
  }
}
@media (min-width: 1920px) {
  .webpro-container {
    max-width: 1691.71px;
  }
}
.webpro-top-section {
  background: #ffffff;
  background-image: url(../assets/images/webpro-banner-bg-image.png);
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  max-width: 100%;
  padding: 42px 0 40px;
  margin-bottom: 75px;
  overflow: hidden;
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.webpro-top-section header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}
.webpro-top-section .webpro-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--brand-color);
  border-radius: 130px;
  padding: 14px 22px 14px 22px;
  gap: 40px;
}
.webpro-top-section .webpro-nav-links ul.main-ul {
  padding: 0 24.86px;
  display: flex;
  gap: 50px;
}
.webpro-top-section .webpro-nav-links ul.main-ul li {
  display: inline-block;
  padding: 11.2px 0;
}
.webpro-top-section .webpro-nav-links ul.main-ul li a {
  color: #ffffff;
  font-family: var(--Manrope);
  font-weight: 500;
  font-size: 19.89px;
  line-height: 27px;
  text-decoration: none;
  position: relative;
}
.webpro-top-section .webpro-nav-links ul.main-ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #fff;
  transition: width 0.5s ease;
}
.webpro-top-section .webpro-nav-links ul.main-ul li a:hover::before {
  width: 100%;
}
.webpro-top-section .header-btn {
  display: flex;
  align-items: center;
  gap: 11.19px;
}
.webpro-top-section button.find-talent {
  padding: 9.5px 29.5px;
  border: 1px solid #ffffff;
  color: #fff;
  background-color: transparent;
  font-family: var(--Manrope);
  font-weight: 500;
  font-size: 19.89px;
  line-height: 27px;
  border-radius: 30px;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.webpro-top-section button.find-talent::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: #ffffff;
  transition: left 0.5s ease;
  z-index: -1;
}
.webpro-top-section button.find-talent:hover::before {
  left: 0;
}
.webpro-top-section button.find-talent:hover {
  color: var(--brand-color);
}
.webpro-top-section button.header-whatsapp {
  background: #ffffff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: 0.3s ease;
}
.webpro-top-section button.header-whatsapp:hover {
  background-color: #f8fdffe6;
}
.webpro-top-section button.head-whatsapp img {
  width: 28.33px;
  height: 28.33px;
}
.webpro-top-section .mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  background-color: var(--brand-color);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 1000;
  padding: 0 10px;
  border-radius: 5px;
}
.webpro-top-section .mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--brand-color);
  z-index: 9999;
  transition: right 0.4s ease;
  padding: 80px 25px 30px;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}
.webpro-top-section .mobile-menu.active {
  right: 0;
}
.webpro-top-section .mobile-menu ul {
  list-style: none;
}
.webpro-top-section .mobile-menu ul li {
  margin-bottom: 15px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 15px;
}
.webpro-top-section .mobile-menu ul li:last-child {
  border-bottom: none;
}
.webpro-top-section .mobile-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}
.webpro-top-section .mobile-menu ul li a:hover {
  background-color: #d1d1d12e;
}
.webpro-top-section .mobile-menu .mobile-btn {
  margin-top: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 11.19px;
}
.webpro-top-section .close-menu {
  position: absolute;
  top: 25px;
  right: 25px;
  background: transparent;
  border: none;
  color: #fff;
  background-color: var(--brand-color);
  padding: 0 10px;
  border-radius: 10px;
  font-size: 24px;
  cursor: pointer;
}
.webpro-top-section .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  display: none;
}
.webpro-top-section .overlay.active {
  display: block;
}
.webpro-top-section .banner-div {
  padding-top: 74px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.webpro-top-section .banner-div .hidden-image .webpro-banner-video-container {
  display: none;
}
.webpro-banner-content {
  padding-top: 125px;
  padding-bottom: 112px;
}
.webpro-banner-content h6 {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 0.5px solid var(--brand-color);
  width: 314.56px;
  padding: 4.5px 15px;
  border-radius: 60px;
  font-family: var(--outfit);
  font-weight: 600;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: -0.4px;
  color: var(--brand-color);
  margin-bottom: 37px;
  margin-top: 3px;
}
.webpro-banner-content h6 span {
  width: 25.57px;
  height: 25.57px;
}
.webpro-banner-content h6 span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.webpro-banner-content h2 {
  font-family: var(--outfit);
  font-weight: 400;
  font-size: 86px;
  line-height: 86%;
  letter-spacing: -3.7px;
  text-transform: capitalize;
  color: #000000;
  width: 707px;
  margin-bottom: 22px;
}
span.webpro-blue-text {
  color: var(--brand-color) !important;
  font-weight: 600 !important;
}
.webpro-banner-content p {
  font-family: var(--Manrope);
  font-weight: 400;
  font-size: 22px;
  line-height: 130%;
  color: #565656;
  width: 645px;
  margin-bottom: 36px;
}
.webpro-banner-content .webpro-banner-btn {
  background: var(--brand-color);
  border-radius: 62px;
  border: 1px solid var(--brand-color);
  padding: 16px 28.3px;
  color: #fff;
  font-family: var(--Manrope);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  transition: 0.3s ease;
  margin-bottom: 55px;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}
.webpro-banner-content .webpro-banner-btn:hover {
  background: #fff;
  color: var(--brand-color);
}
.webpro-banner-content .trusted-icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 403.91px;
  height: 115.97px;
}
.webpro-banner-content .trusted-icons .line {
  width: 2px;
  background: linear-gradient(180deg, #ffffff 0%, #0568a3 50.96%, #ffffff 100%);
  border-radius: 50%;
  height: 100%;
}
.webpro-banner-video-side {
  width: 48.1%;
  align-content: center;
}
.webpro-banner-video-container {
  position: relative;
  width: 100%;
  border: 13px solid var(--brand-color);
  border-radius: 42px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}
.webpro-banner-video-container .webpro-banner-video {
  width: 100.5%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}
.webpro-about-section {
  padding: 75px 0;
  background-color: #fff;
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.webpro-about-section .content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.webpro-about-section .content .left-side {
  width: 820px;
}
.webpro-about-section .content .right-side {
  width: 624px;
  padding-top: 6px;
}
.webpro-about-section .content .left-side h6 {
  font-family: var(--Manrope);
  font-weight: 500;
  font-size: 28px;
  line-height: 100%;
  text-transform: capitalize;
  color: var(--brand-color);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding-top: 2px;
}
.webpro-about-section .content .left-side h6 span {
  width: 34px;
  height: 34px;
}
.webpro-about-section .content .left-side h6 span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.webpro-about-section .content .left-side h2 {
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 55px;
  line-height: 58px;
  letter-spacing: -0.65px;
  padding-top: 2px;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 55px;
}
.webpro-about-counter {
  width: 624px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.webpro-about-counter .webpro-counter-card {
  box-shadow: 0px 4px 12.5px 0px #0000000f;
  width: calc((100% - 2 * 24px) / 3);
  height: 143px;
  border-radius: 23px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}
.webpro-about-counter .webpro-counter-card:hover {
  transform: translateY(-5px);
  scale: 1.1;
}

.webpro-about-counter .webpro-counter-card h3 {
  font-family: var(--outfit);
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 0px !important;
}

.webpro-about-counter .webpro-counter-card p {
  font-family: var(--Manrope);
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  color: #565656;
}

.webpro-about-section .content .right-side h3 {
  font-family: var(--outfit);
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 22px;
  padding-top: 0px;
}

.webpro-about-section .content .right-side p {
  font-family: var(--Manrope);
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 22px;
  color: #565656;
}

.webpro-about-section .content .right-side h6 {
  font-family: var(--Manrope);
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 10.4px;
}

.webpro-about-section .content .right-side .webpro-about-btn {
  background-color: var(--brand-color);
  border-radius: 68px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--Manrope);
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  width: 211px;
  height: 56px;
  margin-bottom: 10px;
  transition: 0.3s ease;
}

.webpro-about-section .content .right-side .webpro-about-btn span {
  width: 32px;
  height: 32px;
  border-radius: 20px;
  display: flex;
  margin-right: -6px;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #fff;
  transition: 0.3s ease;
}

.webpro-about-section .content .right-side .webpro-about-btn svg {
  fill: var(--brand-color);
  transition: 0.3s ease;
}

.webpro-about-section .content .right-side .webpro-about-btn:hover {
  background-color: #fff;
  color: var(--brand-color);
  border: 1px solid var(--brand-color);
}

.webpro-about-section .content .right-side .webpro-about-btn:hover span {
  background-color: var(--brand-color);
}

.webpro-about-section .content .right-side .webpro-about-btn:hover svg {
  fill: #fff;
}

.webpro-about-imgs {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
  height: 63px;
}

.webpro-about-imgs img {
  width: 63px;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background-color: #fff;
  border: 3px solid #FFFFFF;
  transition: transform 0.3s ease;
  transform-origin: center center;
}

.webpro-about-imgs img:hover {
  z-index: 1;
  transform: scale(1.2) translateY(-10px);
}

.webpro-about-imgs img + img {
  margin-left: -26.4px;
}

.webpro-mentor-section {
  padding: 75px 0;
  background-color: #ffffff;
  overflow: hidden;
}

.webpro-mentor-section .content .text {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.webpro-mentor-section .content h6 {
  font-family: var(--Manrope);
  font-weight: 500;
  font-size: 28px;
  line-height: 100%;
  text-transform: capitalize;
  color: var(--brand-color);
  display: flex;
  align-items: center;
  gap: 15px;
  justify-self: center;
  margin-bottom: 23px;
}

.webpro-mentor-section .content h2 {
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 55px;
  line-height: 66px;
  letter-spacing: -0.6px;
  text-align: center;
  color: #000000;
  margin-bottom: 22px;
}

.webpro-mentor-section .content .p {
  font-family: var(--Manrope);
  font-weight: 400;
  font-size: 22px;
  line-height: 26.41px;
  text-align: center;
  width: 1030px;
  color: #565656;
  margin: 0 auto;
  margin-bottom: 52px;
}

.mentor-swiper .swiper-slide {
  height: auto;
}

.webpro-mentor-section .swiper {
  overflow: visible;
}

.slider-container .slide-card {
  box-shadow: 0px 4px 12.5px 0px #0000000f;
  padding-bottom: 22px;
  border-radius: 15.84px;
  overflow: hidden;
}

.slider-container .slide-card .mentor-img {
  overflow: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.slider-container .slide-card .mentor-img a {
  display: block;
}

.slider-container .slide-card .mentor-img img {
  width: 100%;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  transition: 0.8s ease;
}

.slider-container .slide-card .mentor-img img:hover {
  scale: 1.1;
}

.slider-container .slide-card .mentor-content {
  padding-top: 23px;
  padding-left: 18px;
}

.slider-container .slide-card .mentor-content h4 {
  margin-bottom: 0px;
}

.slider-container .slide-card .mentor-content h4 a {
  font-family: var(--outfit);
  font-weight: 600;
  font-size: 34px;
  line-height: 30px;
  text-transform: capitalize;
  color: #070707;
  text-decoration: none;
}

.slider-container .slide-card .mentor-content h5 {
  font-family: var(--Manrope);
  font-weight: 600;
  font-size: 16px;
  line-height: 27px;
  color: var(--brand-color);
}

.slider-container .slide-card .mentor-content p {
  font-family: var(--Manrope);
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #565656;
  padding-bottom: 22px;
}

.slider-container .slide-card .mentor-social {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 18.5px;
}

.slider-container .slide-card .mentor-social a {
  display: inline-block;
}

.slider-container .slide-card .mentor-social img {
  width: 34px;
  height: 34px;
  object-fit: cover;
  transition: 0.3s ease;
}

.slider-container .slide-card .mentor-social img:hover {
  transform: translateY(-5px);
  scale: 1.1;
}

.webpro-activity-section {
  padding: 75px 0;
  background-color: #fff;
  overflow: hidden;
}

.webpro-activity-section .text {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.webpro-activity-section .content {
  overflow: hidden;
}

.webpro-activity-section .content h6 {
  font-family: var(--Manrope);
  font-weight: 500;
  font-size: 28px;
  line-height: 100%;
  text-transform: capitalize;
  color: var(--brand-color);
  display: flex;
  align-items: center;
  gap: 15px;
  justify-self: center;
  margin-bottom: 22px;
  padding-top: 2px;
}

.webpro-activity-section .content h2 {
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 55px;
  line-height: 66px;
  letter-spacing: -0.6px;
  padding-top: 2px;
  text-align: center;
  color: #000000;
  margin-bottom: 22px;
}

.webpro-activity-section .content .p {
  font-family: var(--Manrope);
  font-weight: 400;
  font-size: 22px;
  line-height: 26.41px;
  text-align: center;
  width: 1030px;
  color: #565656;
  margin: 0 auto;
  margin-bottom: 44px;
}

.webpro-activity-section .webpro-gallery-explore-btn {
  display: block;
  margin: 0 auto;
  align-content: center;
  background-color: var(--brand-color);
  border: 1px solid var(--brand-color);
  border-radius: 62px;
  width: 203px;
  height: 57px;
  font-family: var(--Manrope);
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  color: #fff;
  transition: 0.5s ease;
  margin-bottom: 55px;
  text-decoration: none;
  text-align: center;
}

.webpro-activity-section .webpro-gallery-explore-btn:hover {
  color: var(--brand-color);
  background-color: #fff;
}

.activity-images {
  display: flex;
  gap: 0px;
  flex-wrap: wrap;
}

.activity-images .img {
  width: calc(100% / 3);
  position: relative;
}

.activity-images .img img {
  width: 100%;
  margin-top: -1px;
}

.activity-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 32px;
  padding-bottom: 38px;
  background: linear-gradient(
    180deg,
    rgba(5, 104, 163, 0) 47.4%,
    #0568a3 100.06%
  );
  display: flex;
  align-items: flex-end;
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out,
    transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.activity-overlay p {
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 38px;
  line-height: 36px;
  letter-spacing: -0.4px;
  color: #fff;
  transition: transform 0.5s ease-out 0.1s, opacity 0.5s ease-out 0.1s;
  transform: translateY(10px);
  opacity: 0;
}

.activity-images .img:hover .activity-overlay {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.activity-images .img:hover .activity-overlay p {
  transform: translateY(0);
  opacity: 1;
}

.webpro-mentor-courses-section {
  padding: 75px 0;
  background-color: #fff;
  overflow: hidden;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.webpro-mentor-courses-section h6 {
  font-family: var(--Manrope);
  font-weight: 500;
  font-size: 28px;
  line-height: 100%;
  text-transform: capitalize;
  color: var(--brand-color);
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: center;
  margin-bottom: 22px;
  padding-top: 4px;
}

.webpro-mentor-courses-section h2 {
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 55px;
  line-height: 66px;
  letter-spacing: -0.5px;
  text-align: center;
  color: #000000;
  margin-bottom: 22px;
  text-transform: capitalize;
}

.webpro-mentor-courses-section p {
  font-family: var(--Manrope);
  font-weight: 400;
  font-size: 22px;
  line-height: 26.41px;
  text-align: center;
  color: #565656;
  margin-bottom: 55px;
  padding-top: 2px;
}

.courses-container {
  display: flex;
  flex-wrap: wrap;
  column-gap: 46px;
  row-gap: 44px;
}

.courses-container .course-card {
  width: calc((100% - 2 * 46px) / 3);
  box-sizing: border-box;
  box-shadow: 0px 4px 12.5px 0px #0000000f;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s ease;
}

.courses-container .course-card:hover {
  transform: scale(1.05) translateY(-13px);
  box-shadow: 0px 4px 12.5px 10px #0000000f;
}

.courses-container .course-card .card-img {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.courses-container .course-card .card-img a {
  display: block;
}

.courses-container .course-card .card-img img {
  width: 100%;
  border-radius: 12px;
}

.courses-container .course-card .card-img .course-name {
  position: absolute;
  top: 19px;
  left: 19px;
  background: #ffffff;
  border-radius: 82px;
  padding: 15px 20px;
  font-family: var(--poppins);
  font-weight: 400;
  font-size: 15.22px;
  line-height: 100%;
  color: var(--brand-color);
  align-content: center;
  text-align: center;
}

.courses-container .course-card .card-text {
  padding: 32px 20px 24px 44px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.course-title-div .list-icon {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  row-gap: 10px;
  align-items: center;
  margin-bottom: 11px;
}

.course-title-div .list-icon li {
  font-family: var(--outfit);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #565656;
}

.course-title-div .list-icon li span {
  width: 26px;
  height: 26px;
  display: inline-block;
  margin-right: 12px;
}

.course-title-div .list-icon li span img {
  width: 100%;
}

.course-title-div h3 {
  margin-bottom: 0;
}

.course-title-div h3 a {
  text-decoration: none;
  color: #000000;
  font-family: var(--outfit);
  font-weight: 600;
  font-size: 28px;
  line-height: 100%;
  text-transform: capitalize;
  transition: 0.3s ease;
}
.course-title-div h3 a:hover {
  color: var(--brand-color);
}
.course-list-icon-div h5 {
  font-family: var(--Manrope);
  font-weight: 500;
  font-size: 12px;
  line-height: 10px;
  color: var(--brand-color);
  margin-bottom: 8px;
}

.course-list-icon-div ul {
  list-style-type: none;
  padding: 0;
}

.course-list-icon-div ul li {
  font-family: var(--Manrope);
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  color: #565656;
  display: flex;
  gap: 15px;
}

.course-list-icon-div ul li span {
  width: 18px;
  height: 18px;
  display: inline-block;
}

.course-list-icon-div ul li span img {
  width: 100%;
  height: 100%;
}

.course-price-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.course-price-btn .h4 {
  font-family: var(--outfit);
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  color: var(--brand-color);
  padding-top: 10px;
}

.course-price-btn .course-btn {
  width: 183px;
  height: 54px;
  background-color: var(--brand-color);
  border: 1px solid var(--brand-color);
  color: #ffffff;
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
  text-transform: capitalize;
  text-decoration: none;
  border-radius: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  transition: 0.3s ease;
  margin-right: 6px;
  margin-top: 3px;
}

.course-price-btn .course-btn svg {
  transition: 0.3s ease;
}

.courses-container .course-card:hover .course-price-btn .course-btn {
  background-color: #ffffff;
  border: 1px solid var(--brand-color);
  color: var(--brand-color);
}

.courses-container .course-card:hover .course-price-btn .course-btn svg path {
  fill: var(--brand-color);
}

.course-price-btn .course-btn:hover svg {
  rotate: 45deg;
}

.webpro-joinus-section {
  margin: 75px 0;
  background-image: url(../assets/images/webpro-joinus-bg.png);
  position: relative;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 126px 0 125.86px;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.webpro-joinus-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0568a3a6;
}

.webpro-joinus-section .joinus-content {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.joinus-content .left-side {
  width: 31.81%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  z-index: 3;
}

.joinus-content .right-side {
  width: 47.8%;
  z-index: 3;
}

.joinus-content .left-side .top .inverted-comma {
  width: 70px;
  height: 43px;
  margin-bottom: 20px;
}

.joinus-content .left-side .top .inverted-comma img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.joinus-content .left-side .top .p {
  font-family: var(--Manrope);
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  color: #ffffff;
  margin-bottom: 22px;
  padding-right: 100px;
}

.joinus-content .left-side .top .sin {
  font-family: var(--Urbanist);
  font-weight: 400;
  font-size: 26px;
  line-height: 26.4px;
  color: #fff;
  margin-bottom: 12px;
}

.joinus-content .left-side .top .h4 {
  margin: 14px 0px 6px 0px;
  font-family: var(--Anton);
  font-weight: 400;
  font-size: 38px;
  line-height: 100%;
  text-transform: capitalize;
  color: #ffffff;
}

.joinus-content .left-side .top .h5 {
  font-family: var(--Manrope);
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  text-transform: uppercase;
  color: #ffffff;
}

.joinus-responsive {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.joinus-responsive .bottom {
  display: none;
}

.joinus-content .left-side .bottom .h3 {
  font-family: var(--outfit);
  font-weight: 600;
  font-size: 32.82px;
  line-height: 100%;
  text-transform: capitalize;
  color: #ffffff;
  margin-bottom: 20px;
}

.joinus-content .left-side .bottom .whatsapp {
  display: flex;
  gap: 10px;
  align-items: center;
  background-color: transparent;
  width: 323.77px;
  height: 58.61px;
  border-radius: 50px;
  overflow: hidden;
  padding: 3px;
  font-family: Manrope;
  font-weight: 600;
  font-size: 21.1px;
  line-height: 100%;
  color: #00b22d;
  text-decoration: none;
  transition: 0.4s ease;
  position: relative;
  border: 1px solid #fff0;
  margin-bottom: -2px;
}

.joinus-content .left-side .bottom .whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  transition: 0.5s ease;
  z-index: 0;
  border-radius: 50px;
}

.joinus-content .left-side .bottom .whatsapp:hover::before {
  width: 43px;
  left: 10px;
  top: 7px;
  height: 43px;
}

.joinus-content .left-side .bottom .whatsapp:hover {
  color: #fff;
  border: 1px solid #fff;
}

.joinus-content .left-side .bottom .whatsapp > * {
  position: relative;
  z-index: 1;
}

.joinus-content .left-side .bottom .whatsapp .icon {
  background-color: transparent;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  margin-left: 1.5px;
  margin-top: 2px;
}

.joinus-content .left-side .bottom .whatsapp span.label {
  padding-top: 4px;
  letter-spacing: 0.2px;
}

.joinus-content .left-side .bottom .whatsapp .icon img {
  width: 100%;
  border-radius: 50%;
}

.joinus-content .right-side h2 {
  font-family: var(--outfit);
  font-weight: 600;
  font-size: 55px;
  line-height: 72px;
  letter-spacing: -0.6px;
  text-transform: capitalize;
  color: #ffffff;
  margin-bottom: 22px;
}

.joinus-content .right-side p {
  font-family: var(--Manrope);
  font-weight: 400;
  font-size: 22px;
  line-height: 26.41px;
  color: #ffffff;
  margin-bottom: 55px;
}

.webpro-joinus-section .joinus-form {
  background: #ffffff66;
  backdrop-filter: blur(11px);
  padding: 40px 36px;
  border-radius: 21px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  margin-right: 24px;
}

.webpro-joinus-section .joinus-form .field {
  background: #00000038;
  border: 1px solid #ffffff4a;
  border-radius: 46px;
  width: 100%;
  height: 63.43px;
  padding: 5px 20px 5px 26.19px;
  outline: none;
  color: #ffffff;
  font-family: var(--Manrope);
  font-weight: 500;
  font-size: 16px;
  line-height: 31.43px;
  letter-spacing: 0.5px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.webpro-joinus-section .joinus-form .field::placeholder {
  color: #fff;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.webpro-joinus-section .joinus-form .field:focus::placeholder {
  opacity: 0;
}
.webpro-joinus-section .joinus-form .field:focus {
  border-color: #ffffff;
  background: #00000060;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}

/* Styled select box like  .field inputs */
.select2-container--default .select2-selection--single {
  background: #00000038;
  border: 1px solid #ffffff4a;
  border-radius: 46px;
  height: 63.43px;
  padding: 0 55px 0 26px;
  display: flex;
  align-items: center;
  font-family: var(--Manrope);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #ffffff;
  position: relative;
  transition: 0.3s ease;
}

/* Focus effect like input fields */
.select2-container--default
  .select2-selection--single.select2-selection--focus {
  border-color: #ffffff;
  background: #00000060;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}

/* Selected option text */
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #ffffff;
  padding: 0;
  letter-spacing: 0.5px;
}

.select2-container--default .select2-selection--single::after {
  content: "";
  position: absolute;
  right: 27.45px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url("../assets/svg/webpro-joinus-select-dropdown-icon.svg")
    no-repeat center center;
  background-size: contain;
  pointer-events: none;
}

/* Dropdown panel */
.select2-container--open .select2-dropdown--below {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  z-index: 100;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border: 0px solid;
}

/* Dropdown option items */
.select2-results__option {
  padding: 14px 22px;
  font-family: var(--Manrope);
  font-size: 16px;
  color: var(--brand-color);
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s;
}

/* Highlighted on hover/arrow key */
.select2-results__option--highlighted {
  background-color: var(--brand-color);
  color: #ffffff;
}

.select2-results__option:last-child {
  border-bottom: none;
}

.webpro-joinus-section .joinus-form .name {
  display: flex;
  gap: 30px;
  flex-direction: row;
}

.webpro-joinus-section .joinus-form .name .field {
  width: calc((100% - 30px) / 2);
}

.webpro-joinus-section .joinus-form .join-btn {
  background-color: var(--brand-color);
  margin-top: -2px;
  border-radius: 56px;
  border: 1px solid var(--brand-color);
  height: 65.47px;
  width: 100%;
  font-family: var(--Manrope);
  font-size: 18px;
  line-height: 100%;
  color: #fff;
  transition: 0.5s ease;
}

.webpro-joinus-section .joinus-form .join-btn:hover {
  background-color: #fff;
  border: 1px solid var(--brand-color);
  color: var(--brand-color);
}

.webpro-growth-section {
  padding: 75px 0;
  background-color: #fff;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.webpro-growth-section .growth {
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: center;
  align-items: center;
  width: 1042px;
  padding-top: 2px;
  margin: 0 auto;
  margin-bottom: 55px;
}

.webpro-growth-section h6 {
  font-family: var(--Manrope);
  font-weight: 500;
  font-size: 28px;
  line-height: 100%;
  text-transform: capitalize;
  color: var(--brand-color);
  display: flex;
  align-items: center;
  gap: 15px;
}

.webpro-growth-section h2 {
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 55px;
  line-height: 66px;
  letter-spacing: -0.6px;
  text-align: center;
  padding-top: 2px;
  color: #000000;
}

.webpro-growth-section p {
  font-family: var(--Manrope);
  font-weight: 400;
  font-size: 22px;
  line-height: 26.41px;
  color: #565656;
}

.growth-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 4px;
}

.growth-content .left-side {
  width: 25.3%;
  display: flex;
  flex-direction: column;
  gap: 55px;
}

.growth-tag {
  width: 100%;
  padding: 26.5px 0;
  background-color: var(--brand-color);
  border-radius: 73px;
  display: flex;
  justify-content: center;
}

.growth-tag.black-bg {
  background-color: #2d2d2d;
}

.growth-tag .content {
  width: 82.48%;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.growth-tag .content .text {
  display: flex;
  flex-direction: column;
  gap: 7px;
  text-align: end;
}

.growth-tag .content .text .bold {
  font-family: var(--Manrope);
  font-weight: 800;
  font-size: 22px;
  line-height: 20.5px;
  color: #fff;
}

.growth-tag .content .text .light {
  font-family: var(--Manrope);
  font-weight: 400;
  font-size: 14px;
  line-height: 19.75px;
  color: #fff;
}

.growth-tag .content .icon {
  width: 26.7%;
  height: 100%;
  align-content: center;
}

.growth-tag .content .icon img {
  width: 100%;
}

.growth-content .middle-side {
  width: 45.71%;
}

.growth-content .middle-side img {
  width: 100%;
}

.growth-content .right-side {
  width: 25.3%;
}

.growth-content .right-side {
  display: flex;
  flex-direction: column;
  gap: 55px;
}

.right-side .growth-tag .content {
  flex-direction: row-reverse;
}

.right-side .growth-tag .content .text .bold {
  letter-spacing: -1px;
}

@media (max-width: 1800px) {
  .growth-tag {
    padding: 20px 0;
  }

  .growth-tag .content .text .bold {
    font-size: 18px;
    line-height: 90%;
  }
}

@media (max-width: 1600px) {
  .growth-content .left-side {
    gap: 45px;
  }

  .growth-content .right-side {
    gap: 45px;
  }

  .webpro-nav-links ul.main-ul {
    gap: 30px;
    padding: 0 5px;
  }

  .webpro-nav {
    gap: 20px;
  }

  button.find-talent {
    padding: 9.5px 20px;
  }
}

@media (max-width: 1500px) {
  .growth-tag {
    padding: 15px 0;
  }
}

@media (max-width: 1400px) {
  .growth-tag .content .text .bold {
    font-size: 16px;
  }

  .growth-tag .content .text .light {
    font-size: 12px;
    line-height: 110%;
  }

  .growth-content .left-side {
    gap: 50px;
  }

  .growth-content .right-side {
    gap: 50px;
  }
}

@media (max-width: 1200px) {
  .growth-content .left-side {
    gap: 40px;
  }

  .growth-content .right-side {
    gap: 40px;
  }

  .growth-tag .content .text .bold {
    font-size: 14px;
  }

  .growth-tag .content .text .light {
    font-size: 10px;
  }
}

@media (max-width: 1050px) {
  .growth-content .left-side {
    gap: 30px;
  }

  .growth-content .right-side {
    gap: 30px;
  }

  .growth-tag .content {
    width: 90%;
    gap: 5px;
  }
}

@media (max-width: 900px) {
  .growth-tag {
    padding: 10px 0;
    border-radius: 10px;
  }

  .growth-tag .content {
    width: 98%;
  }

  .growth-content .left-side {
    gap: 25px;
  }

  .growth-content .right-side {
    gap: 25px;
  }
}

@media (max-width: 800px) {
  .growth-content .left-side {
    width: 28%;
    gap: 10px;
  }

  .growth-content .middle-side {
    width: 40%;
  }

  .growth-content .right-side {
    width: 28%;
    gap: 10px;
  }

  .growth-tag .content .text {
    gap: 5px;
  }

  .growth-tag .content .text .bold {
    font-size: 12px;
    font-weight: 600;
  }

  .growth-tag .content .text .light {
    font-size: 8px;
  }
}

@media (max-width: 600px) {
  .growth-content .left-side {
    gap: 5px;
  }

  .growth-content .right-side {
    gap: 5px;
  }

  .growth-tag {
    padding: 5px 0;
  }
}

@media (max-width: 500px) {
  .growth-tag .content .text .bold {
    font-size: 9px;
  }

  .growth-tag .content .text .light {
    font-size: 6px;
  }
}

.right-side .growth-tag .content .text {
  text-align: left;
}

.webpro-success-stories-section {
  padding: 75px 0;
  background-color: #ffffff;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.webpro-success-stories-section h6 {
  font-family: var(--Manrope);
  font-weight: 500;
  font-size: 28px;
  line-height: 100%;
  text-transform: capitalize;
  color: var(--brand-color);
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 7px;
  justify-self: center;
  margin-bottom: 22px;
}

.webpro-success-stories-section h2 {
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 55px;
  line-height: 66px;
  letter-spacing: -0.6px;
  padding-top: 2px;
  text-align: center;
  color: #000000;
  margin-bottom: 22px;
}

.webpro-success-stories-section .p {
  font-family: var(--Manrope);
  font-weight: 400;
  font-size: 22px;
  line-height: 26.41px;
  text-align: center;
  color: #565656;
  width: 1042px;
  margin: 0 auto;
  margin-bottom: 55px;
}

.webpro-success-stories-section .content {
  padding-bottom: 13.51px;
}

.webpro-success-stories-section .top-cards,
.webpro-success-stories-section .bottom-cards {
  display: flex;
  gap: 16px;
  row-gap: 23px;
  flex-wrap: wrap;
}

.webpro-success-stories-section .top-cards .success-card {
  width: calc((100% - 16px) / 2);
  margin-bottom: 23px;
}

.webpro-success-stories-section .bottom-cards .success-card {
  width: calc((100% - 2 * 16px) / 3);
}

.webpro-success-stories-section .success-card {
  background: #f5f6f8;
  border-radius: 22.53px;
  padding: 22px;
  overflow: hidden;
}

.success-card .webpro-success-card-video {
  width: 100%;
  height: 445px;
  margin-bottom: 22px;
  overflow: hidden;
  position: relative;
}

.success-card .webpro-success-card-video::after {
  content: "";
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 44.25%,
    rgba(0, 70, 111, 0.7) 110.85%
  );
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.success-card .webpro-success-card-video.has-played::after {
  content: unset;
}
.success-card .webpro-success-card-video .video {
  width: 100%;
}

.webpro-success-card-video video.play-effect {
  transform: scale(1.05);
}

.success-card .webpro-success-card-video .play-pause {
  position: absolute;
  top: calc(50% - 34px);
  left: calc(50% - 51px);
  width: 98px;
  height: 68px;
  z-index: 10;
  text-align: center;
}

.success-card .webpro-success-card-video .loading-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin: -25px 0 0 -25px;
  border: 5px solid rgba(5, 104, 163, 0.2);
  border-top: 5px solid #0568a3;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(5, 104, 163, 0.6);
  animation: spin 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
  z-index: 1000;
}

.webpro-success-stories-section
  .bottom-cards
  .success-card
  .webpro-success-card-video
  .loading-spinner {
  top: 115px;
}

.success-card .webpro-success-card-video .loading-spinner::after {
  content: "";
  position: absolute;
  top: calc(50% - 35px);
  left: calc(50% - 35px);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(5, 104, 163, 0.1);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.success-card .webpro-success-card-video .loader-overlay {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 900;
}

.webpro-success-card-video .success-play,
.webpro-success-card-video .success-pause {
  display: none;
  cursor: pointer;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.webpro-success-card-video:hover .success-play,
.webpro-success-card-video:hover .success-pause {
  transform: scale(1.1);
}
.webpro-success-card-video .success-play.active,
.webpro-success-card-video .success-pause.active {
  display: block;
}

.webpro-success-card-video .success-pause {
  background-color: rgba(33, 33, 33, 0.8);
  border-radius: 15px;
  width: 98px;
  height: 68px;
  align-content: center;
  transition: 0.3s ease;
}

.webpro-success-card-video .success-pause i {
  font-size: 50px;
  color: #fff;
  transition: 0.3s ease;
}

.webpro-success-card-video .success-pause:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.webpro-success-card-video .success-play:hover svg path {
  transition: 0.3s ease;
}

.webpro-success-card-video .success-play:hover svg path:first-child {
  fill: rgba(0, 0, 0, 0.3);
}

.success-card .webpro-success-card-video .title {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: calc(100% - 40px);
  z-index: 10;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.webpro-success-card-video.has-played .title {
  transform: translateY(20px);
  opacity: 0;
}

.success-card .webpro-success-card-video .title .h4 {
  font-family: var(--outfit);
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: -1.6px;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 8px;
}

.success-card .webpro-success-card-video .title .h6 {
  font-family: var(--Manrope);
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 0;
}

.bottom-cards .success-card .webpro-success-card-video {
  height: 285px;
}

.bottom-cards .success-card .webpro-success-card-video .play-pause {
  top: 80px;
}

.bottom-cards .success-card .webpro-success-card-video .title .h4 {
  font-size: 30px;
  line-height: 28px;
  letter-spacing: -1.2px;
  text-transform: capitalize;
}

.bottom-cards .success-card .card-content .h3 {
  padding-top: 3px;
}

.success-card .card-content .h3 {
  font-family: var(--outfit);
  font-weight: 600;
  font-size: 24px;
  line-height: 27.89px;
  color: #000000;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}

.success-card .card-content .h3 .webpro-success-video-batch {
  font-family: var(--Manrope);
  font-weight: 500;
  font-size: 18px;
  line-height: 25.63px;
  color: #565656;
}

.success-card .card-content p {
  font-family: var(--Manrope);
  font-weight: 500;
  font-size: 18px;
  line-height: 25.63px;
  color: #565656;
}

.webpro-latest-events-section {
  margin: 75px 0;
  background-color: #fff;
  background-image: url(../assets/images/webpro-latest-events-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  padding: 50.87px 0 50px 0;
  overflow: hidden;
}

.webpro-latest-events-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    #0568a3 43.29%,
    rgba(5, 104, 163, 0) 124.79%
  );
  z-index: 1;
}

.webpro-latest-events-section .webpro-container * {
  z-index: 10;
}

.webpro-latest-events-section .content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 52px;
  width: 848px;
  position: relative;
}

.webpro-latest-events-section .content h6 {
  font-family: var(--Manrope);
  font-weight: 500;
  font-size: 28px;
  line-height: 100%;
  text-transform: capitalize;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 2px;
}

.webpro-latest-events-section .content h2 {
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 55px;
  line-height: 66px;
  letter-spacing: -0.65px;
  color: #fff;
  padding-top: 2px;
}

.webpro-latest-events-section .content p {
  font-family: var(--Manrope);
  font-weight: 400;
  font-size: 22px;
  line-height: 27px;
  color: #fff;
  padding-right: 20px;
}

.events-swiper {
  position: unset;
  overflow: visible;
}

.events-swiper .custom-arrow:after {
  content: unset;
}

.events-swiper .custom-arrow {
  top: 209px;
  border: 1.32px solid #ebebeb;
  background-color: #fff;
  border-radius: 50%;
  width: 63px;
  height: 63px;
  z-index: 100;
  transition: 0.5s ease;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.events-swiper .custom-arrow svg {
  width: 13px;
  height: 23px;
}

.events-swiper .event-button-prev {
  right: 191px;
  left: auto;
}

.events-swiper .event-button-next {
  right: 118px;
}

.events-swiper .custom-arrow.swiper-button-disabled {
  opacity: 1;
  background-color: transparent;
}

.events-swiper .custom-arrow.swiper-button-disabled svg path {
  fill: #fff;
}

.events-swiper .custom-arrow:hover,
.events-swiper .custom-arrow:focus {
  background-color: transparent;
}

.events-swiper .custom-arrow:hover svg path,
.events-swiper .custom-arrow:focus svg path {
  fill: #fff;
}

.events-card {
  box-shadow: 0px 4px 12.5px 0px #0000000f;
  background: #ffffff;
  padding: 18px 17px;
  border-radius: 11.2px;
  overflow: hidden;
}

.events-card .img {
  border-radius: 11.2px;
  overflow: hidden;
  position: relative;
  margin-bottom: 22px;
}

.events-card .img a {
  display: block;
}

.events-card .img img {
  width: 100%;
  transition: 0.7s ease;
  border-radius: 12px;
}

.events-card .img img:hover {
  transform: scale(1.05);
}

.events-card .img .img-tag {
  position: absolute;
  top: 14.27px;
  left: 15px;
  display: block;
  width: 96px;
  height: 28px;
  text-align: center;
  align-content: center;
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  text-decoration: none;
  background-color: var(--brand-color);
  box-shadow: 0px 2px 7px 0px #00000026;
  border-radius: 5px;
  color: #ffffff;
}

.events-card .img .img-tag:hover {
  background-color: rgba(5, 105, 163, 0.75);
}

.events-card .card-content {
  padding: 0 1px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-details .date {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--outfit);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #565656;
}

.event-details .title {
  display: block;
  font-family: var(--outfit);
  font-weight: 600;
  font-size: 26.13px;
  line-height: 100%;
  text-transform: capitalize;
  color: #000000;
  text-decoration: none;
  padding-top: 2px;
}

.event-details .desc {
  font-family: var(--Manrope);
  font-weight: 500;
  font-size: 18px;
  line-height: 25.63px;
  letter-spacing: 0.9px;
  padding-top: 2px;
  color: #565656;
}

.host-join {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.host-join .host {
  font-family: var(--Manrope);
  font-weight: 600;
  font-size: 18px;
  line-height: 20.53px;
  color: #000000;
}

.host-join .host .name {
  font-weight: 400;
  color: #505050;
}

.host-join .join-btn {
  display: flex;
  gap: 10.87px;
  align-items: center;
  justify-content: center;
  width: 162px;
  height: 54px;
  background-color: var(--brand-color);
  border: 1px solid var(--brand-color);
  text-decoration: none;
  color: #ffffff;
  border-radius: 56px;
  overflow: hidden;
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
  text-transform: capitalize;
  transition: 0.5s ease;
}

.events-card:hover .host-join .join-btn {
  background-color: #ffffff;
  color: var(--brand-color);
}

.host-join .join-btn svg {
  transition: 0.3s ease;
}

.host-join .join-btn:hover svg {
  rotate: 45deg;
}

.events-card:hover .host-join .join-btn svg path {
  fill: var(--brand-color);
}

.webpro-testimonials-section {
  padding: 75px 0;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
  min-height: 820px;
}

.webpro-testimonials-section .slick-initialized .slick-slide {
  margin: 20px;
}

.webpro-testimonials-section .slick-list.draggable {
  overflow: inherit;
}
.testimonials-left-side .swiper-slide {
  position: relative;
}

.testimonials-left-side .slick-slide .swiper-slide::before {
  content: "";
  background: linear-gradient(#c4c4c4);
  opacity: 0.3;
  border-radius: 31.04px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.testimonials-left-side .slick-slide.slick-active .swiper-slide::before {
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(5, 104, 163, 0.1) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0) -0.07%,
      rgba(255, 255, 255, 0.6) 100.06%
    );
  opacity: 0.5;
}
.testimonials-left-side .slick-active.slick-center .swiper-slide::before {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(5, 104, 163, 0.4) 100%
  );
  opacity: 1;
}

.webpro-testimonials-section::after {
  content: "";
  width: 40%;
  height: 100%;
  background: #fff;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.webpro-testimonials-section .content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  position: relative;
}

.webpro-testimonials-section .testimonials-left-side {
  width: 100%;
  transform: translate(-85px, -20px);
}

.testimonials-img {
  border-radius: 31px;
  overflow: hidden;
}

.testimonials-img img {
  width: 100%;
}

.webpro-testimonials-section .testimonials-right-side {
  width: 37%;
  background-color: #fff;
  padding: 36px 0;
  padding-left: 26px;
  position: absolute;
  right: 0;
  z-index: 999;
}

.webpro-testsimonials-text {
  width: 580px;
}

.testimonials-h6 {
  font-family: var(--Manrope);
  font-weight: 500;
  font-size: 28px;
  line-height: 35px;
  text-transform: capitalize;
  color: var(--brand-color);
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 22px;
}

.testimonials-h2 {
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 55px;
  line-height: 57px;
  letter-spacing: -0.6px;
  color: #000000;
  margin-bottom: 57px;
}

.testimonials-comma {
  width: 39px;
  height: 28px;
  object-fit: contain;
  margin-bottom: 22px;
}

.testimonials-p {
  font-family: var(--Manrope);
  font-weight: 400;
  font-size: 22px;
  line-height: 34px;
  color: #565656;
  margin-bottom: 22px;
}

.testimonials-name {
  margin-bottom: 8px;
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
  color: #000000;
  padding-top: 3px;
}

.testimonials-post {
  font-family: Manrope;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: #565656;
  margin-bottom: 12px;
}

.testimonials-reviews {
  color: #fcd53f;
  display: flex;
  gap: 6px;
  font-size: 18px;
  padding-top: 7px;
}

.testimonials-left-side .swiper {
  overflow: visible;
}

.testimonials-right-side .swiper {
  position: unset;
}

.testimonials-right-side .custom-arrow:after {
  content: unset;
}

.testimonials-main-swiper .custom-arrow {
  top: unset;
  bottom: 1px;
  width: 63px;
  height: 63px;
  background: #fff;
  border: 1.32px solid var(--brand-color);
  border-radius: 50%;
  z-index: 100;
  transition: 0.5s ease;
}

.testimonials-main-swiper .swiper-button-prev {
  left: unset;
  right: 748px;
}

.testimonials-main-swiper .swiper-button-next {
  right: 675px;
}

.testimonials-main-swiper .custom-arrow svg {
  width: 13px;
  height: 23px;
}

.testimonials-right-side .custom-arrow.swiper-button-disabled {
  opacity: 1;
  background: var(--brand-color);
}

.testimonials-right-side .custom-arrow.swiper-button-disabled svg path {
  fill: #fff;
}

.testimonials-main-swiper .custom-arrow:hover svg path,
.testimonials-main-swiper .custom-arrow:focus svg path {
  fill: #fff;
}

.testimonials-main-swiper .custom-arrow:hover,
.testimonials-main-swiper .custom-arrow:focus {
  background: var(--brand-color);
}

.webpro-faq-section {
  background-color: #fff;
  padding: 75px 0;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.webpro-faq-section .h6 {
  font-family: var(--Manrope);
  font-weight: 500;
  font-size: 28px;
  line-height: 100%;
  text-transform: capitalize;
  color: var(--brand-color);
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 7px;
  margin-bottom: 22px;
  justify-content: center;
}

.webpro-faq-section .h2 {
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 55px;
  line-height: 66px;
  letter-spacing: -0.6px;
  color: #000000;
  margin-bottom: 22px;
  text-align: center;
  padding-top: 2px;
}

.webpro-faq-section .p {
  font-family: var(--Manrope);
  font-weight: 400;
  font-size: 22px;
  line-height: 26.41px;
  color: #565656;
  width: 1250px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 55px;
}

.webpro-faq-section .faq-accordian {
  padding: 0 4px;
}

div#accordionExample {
  display: flex;
  flex-direction: column;
  gap: 48.29px;
}

.accordion-item {
  border: 2.01px solid #dedede !important;
  border-radius: 24.14px !important;
  overflow: hidden;
  padding: 0 0 47.5px 0;
  position: relative;
}

.accordion-item:has(.accordion-collapse.show) {
  border-color: var(--brand-color) !important;
}

.accordion-button {
  padding: 50px 45px 3px;
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 32px;
  line-height: 100%;
  color: #130502;
  position: unset;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--brand-color);
  box-shadow: none;
}

.accordion-button::after {
  background-image: url("../assets/svg/webpro-faq-accordion-open-icon.svg");
  width: 45px;
  height: 45px;
  background-size: 40px;
  position: absolute;
  top: calc(50% - 20px);
  right: 42px;
}

.accordion-button:not(.collapsed)::after {
  background-image: url(../assets/svg/webpro-faq-accordion-close-icon.svg);
  transform: none;
}

.accordion-body {
  padding: 23px 46px 0;
}

.accordion-body p {
  font-family: var(--Manrope);
  font-weight: 400;
  font-size: 22px;
  line-height: 34px;
  color: #565656;
  padding-right: 40px;
}

.accordion-button:focus {
  box-shadow: none;
}

.webpro-footer-section {
  margin-top: 78px;
  padding-top: 37px;
  background-color: var(--brand-color);
}

.webpro-footer-section .top-section {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.footer-top {
  padding-bottom: 81px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 5px;
}

.footer-top .left-side {
  width: 567px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 6px;
  padding-left: 2px;
}

.footer-top .left-side .footor-logo {
  width: 236px;
  height: 46px;
  margin-bottom: 3px;
}

.footer-top .left-side .footor-logo img {
  width: 100%;
}

.footer-top .left-side p {
  font-family: var(--Manrope);
  font-weight: 400;
  font-size: 22px;
  line-height: 141%;
  color: #ffffff;
}

.footer-top .left-side h6 {
  font-family: var(--outfit);
  font-weight: 700;
  font-size: 22px;
  line-height: 21.33px;
  color: #ffffff;
}

.footer-top .left-side .icons {
  display: flex;
  gap: 17px;
}

.footer-top .left-side .icons .icon {
  width: 39.25px;
  height: 39.25px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
  padding-bottom: 0px;
  padding-left: 0px;
}

.footer-top .left-side .icons .icon:hover {
  background-color: transparent;
}

.footer-top .left-side .icons .icon:hover i {
  color: #fff;
}

.footer-top .left-side .icons .icon i {
  color: var(--brand-color);
  font-size: 22px;
}

.footer-top .middle-side {
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 17.6px;
  padding-top: 7px;
}

.footer-top .middle-side h6 {
  font-family: var(--outfit);
  font-weight: 700;
  font-size: 22px;
  line-height: 21.33px;
  color: #fff;
  margin-bottom: 5px;
}

.footer-top .middle-side .link {
  font-family: var(--Manrope);
  font-weight: 400;
  font-size: 22px;
  line-height: 18.67px;
  color: #fff;
  text-decoration: none;
  display: block;
  width: fit-content;
  position: relative;
  padding-bottom: 5px;
  transition: 0.5s ease;
}

.footer-top .middle-side .link:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-top .middle-side .link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background-color: #fff;
  transition: width 0.5s ease;
}

.responsive {
  display: none;
}

.footer-top .middle-side .link:hover::before {
  width: 100%;
}

.footer-top .right-side {
  width: 748px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-top .right-side .contact h4 {
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 34px;
  line-height: 100%;
  color: #fff;
  margin-bottom: 9px;
}

.footer-top .right-side .contact p {
  font-family: var(--DM-Sans);
  font-weight: 400;
  font-size: 22px;
  line-height: 130%;
  letter-spacing: 0.45px;
  color: #fff;
  padding-top: 4px;
}

.footer-top .right-side .form {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding-top: 0px;
}

.footer-top .right-side .form #news-email {
  background: #03477082;
  border-radius: 82px;
  padding: 5px 20px 5px 40px;
  outline: none;
  border: none;
  height: 70px;
  color: #fff;
  font-family: var(--DM-Sans);
  font-weight: 400;
  font-size: 21.32px;
  line-height: 100%;
  width: 78%;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.footer-top .right-side .form #news-email::placeholder {
  color: #ffffffb2;
}

.footer-top .right-side .form #news-email:focus {
  background: #034770;
  /* slightly more opaque */
  box-shadow: 0 2px 12px 4px rgba(255, 255, 255, 0.7);
}

.footer-top .right-side .form .news-btn {
  background: #ffffff;
  border-radius: 80.67px;
  width: 149px;
  padding: 21.33px 0;
  margin-right: 7px;
  border: none;
  outline: none;
  font-family: var(--DM-Sans);
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: var(--brand-color);
  transition: 0.3s ease;
}

.footer-top .right-side .form .news-btn:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.footer-top .right-side .whatsapp a {
  display: flex;
  gap: 8px;
  align-items: center;
  background-color: transparent;
  width: fit-content;
  height: 66px;
  border-radius: 50px;
  overflow: hidden;
  padding: 0 15px 0 9.5px;
  font-family: Manrope;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  color: #fff;
  text-decoration: none;
  border: 1px solid #ffffff73;
  transition: 0.4s ease;
  position: relative;
}

.footer-top .right-side .whatsapp a::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  width: 45px;
  left: 12px;
  top: 10px;
  height: 45px;
  transition: 0.5s ease;
  z-index: 0;
  border-radius: 50px;
}

.footer-top .right-side .whatsapp a:hover::before {
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
}

.footer-top .right-side .whatsapp a:hover {
  color: var(--brand-color);
}

.footer-top .right-side .whatsapp a > * {
  position: relative;
  z-index: 1;
}

.footer-top .right-side .whatsapp a .icon {
  background-color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.footer-top .right-side .whatsapp a .icon img {
  width: 100%;
  border-radius: 50%;
}

.footer-bottom {
  background-color: #fff;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.footer-bottom .content {
  padding: 31px 94px 32px 84px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom .content .copyright {
  font-family: var(--Manrope);
  font-weight: 500;
  font-size: 16px;
  line-height: 18.67px;
  color: #000000;
  text-align: center;
}

.footer-bottom .content .privacy-terms {
  display: flex;
  gap: 80px;
}

.footer-bottom .content .privacy-terms a {
  display: block;
  text-decoration: none;
  font-family: var(--Manrope);
  font-weight: 500;
  font-size: 16px;
  line-height: 18.67px;
  color: #000000;
  position: relative;
  width: fit-content;
  padding-bottom: 3px;
}

.footer-bottom .content .privacy-terms a::before {
  content: "";
  background-color: var(--brand-color);
  width: 0%;
  height: 1px;
  position: absolute;
  bottom: 0;
  transition: 0.5s ease;
}

.footer-bottom .content .privacy-terms a:hover::before {
  width: 100%;
}

/* Icon */
.webpro-whatsapp-float-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-float {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  opacity: 0;
  transform: translateY(30px) scale(0.8);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
  pointer-events: none;
  animation: pulse 2s infinite ease-in-out;
}

.whatsapp-float.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.whatsapp-float img {
  width: 100%;
  display: block;
}

.whatsapp-float.show::before {
  opacity: 1;
}

/* .whatsapp-float:hover {
  transform: translateY(-5px) scale(1.15) !important;
  background: #128c7e;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
} */

.notification-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #0569a3;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip {
  position: absolute;
  right: 85px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(5, 105, 163, 0.85);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: rgba(5, 105, 163, 0.85);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* Pulse keyframes */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(5, 105, 163, 0.6);
  }

  100% {
    box-shadow: 0 0 0 8px rgba(5, 105, 163, 0);
  }
}

/* Badge pulse keyframes */
@keyframes pulse-blue {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(5, 105, 163, 0.6);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(5, 105, 163, 0);
  }
}

/* Responsive tweak */
@media (max-width: 768px) {
  .webpro-whatsapp-float-container {
    bottom: calc(50% - 28px);
    right: 30px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

@media (max-width: 1400px) {
  .webpro-top-section {
    padding: 30px 0 40px;
    margin-bottom: 40px;
  }

  .webpro-top-section .banner-div {
    padding-top: 50px;
    height: auto;
  }

  .webpro-about-section {
    padding: 40px 0;
  }

  .webpro-mentor-section {
    padding: 40px 0;
  }

  .webpro-activity-section {
    padding: 40px 0;
  }

  .webpro-mentor-courses-section {
    padding: 40px 0;
  }

  .courses-container {
    gap: 30px;
  }

  .webpro-joinus-section {
    margin: 40px 0;
    padding: 80px 0;
  }

  .webpro-growth-section {
    padding: 40px 0;
  }

  .webpro-success-stories-section {
    padding: 40px 0;
  }

  .webpro-latest-events-section {
    margin: 40px 0;
  }

  .webpro-testimonials-section {
    padding: 40px 0;
  }

  .testimonials-h2 {
    font-size: 45px;
    line-height: 110%;
    margin-bottom: 30px;
  }

  .webpro-testimonials-section .testimonials-right-side {
    padding: 0;
    width: 40%;
    padding-left: 20px;
  }
  .webpro-testimonials-section .slick-initialized .slick-slide {
    margin: 10px;
  }
  .webpro-testimonials-section .testimonials-left-side {
    transform: translate(-90px, -10px);
  }
  .webpro-testimonials-section {
    min-height: 720px;
  }

  .webpro-testsimonials-text {
    width: 100%;
    padding-right: 70px;
  }

  .testimonials-main-swiper .swiper-button-prev {
    right: 700px;
  }

  .testimonials-main-swiper .swiper-button-next {
    right: 630px;
  }

  .webpro-faq-section .h6 {
    padding: 0;
  }

  .webpro-faq-section .h2 {
    padding: 0;
    font-size: 45px;
    line-height: 110%;
  }

  .webpro-faq-section .p {
    margin-bottom: 30px;
    width: 100%;
  }

  .webpro-about-section .content .left-side h2 {
    margin-bottom: 30px;
    font-size: 45px;
    line-height: 110%;
    padding: 0;
  }

  .webpro-about-section .content .right-side h3 {
    margin-bottom: 15px;
    font-size: 28px;
    line-height: 110%;
  }

  .webpro-about-section .content .right-side p {
    margin-bottom: 18px;
    font-size: 20px;
    line-height: 120%;
  }

  .webpro-mentor-section .content h2 {
    font-size: 45px;
    line-height: 110%;
  }

  .webpro-mentor-section .content .p {
    margin-bottom: 30px;
  }

  .slider-container .slide-card {
    padding-bottom: 20px;
  }

  .slider-container .slide-card .mentor-content {
    padding: 20px 20px 0;
  }

  .slider-container .slide-card .mentor-social {
    padding-left: 20px;
  }

  .webpro-activity-section .content h2 {
    padding: 0;
    font-size: 45px;
    line-height: 110%;
  }

  .webpro-activity-section .content .p {
    margin-bottom: 25px;
  }

  .webpro-activity-section .webpro-gallery-explore-btn {
    margin-bottom: 30px;
  }

  .webpro-mentor-courses-section h2 {
    font-size: 45px;
    line-height: 110%;
  }

  .webpro-mentor-courses-section p {
    padding: 0;
    margin-bottom: 30px;
  }

  .joinus-content .right-side h2 {
    font-size: 45px;
    line-height: 110%;
  }

  .joinus-content .right-side p {
    margin-bottom: 30px;
  }

  .webpro-joinus-section .joinus-form {
    margin: 0;
    padding: 20px;
  }

  .joinus-content .left-side .bottom .h3 {
    font-size: 25px;
  }

  .webpro-joinus-section .joinus-content {
    gap: 40px;
  }

  .joinus-content .left-side {
    width: calc(50% - 20px);
  }

  .joinus-content .right-side {
    width: calc(50% - 20px);
  }

  .webpro-growth-section h2 {
    font-size: 45px;
    line-height: 110%;
    padding: 0;
  }

  .webpro-growth-section .growth {
    margin-bottom: 30px;
    padding: 0;
  }

  .webpro-success-stories-section h6 {
    padding: 0;
  }

  .webpro-success-stories-section h2 {
    padding: 0;
    font-size: 45px;
    line-height: 110%;
  }

  .webpro-success-stories-section .p {
    margin-bottom: 30px;
  }

  .webpro-latest-events-section .content h6 {
    padding: 0;
  }

  .webpro-latest-events-section .content h2 {
    padding: 0;
    font-size: 45px;
    line-height: 110%;
  }

  .webpro-latest-events-section .content {
    margin-bottom: 30px;
  }

  .events-swiper .custom-arrow {
    top: 190px;
  }

  .webpro-faq-section {
    padding: 40px 0;
  }

  .webpro-footer-section {
    margin-top: 40px;
  }

  .webpro-top-section .webpro-nav {
    background-color: transparent;
  }
  .webpro-top-section .webpro-nav-links,
  .header-btn {
    display: none !important;
  }

  .webpro-top-section .mobile-toggle {
    display: block;
  }

  .webpro-banner-content {
    width: calc(50% - 15px);
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .webpro-banner-content h6 {
    margin-bottom: 25px;
  }

  .webpro-banner-content h2 {
    font-size: 65px;
    line-height: 110%;
    width: 100%;
  }

  .webpro-banner-content p {
    margin-bottom: 30px;
    width: 100%;
  }

  .webpro-banner-content .webpro-banner-btn {
    margin-bottom: 30px;
  }

  .webpro-banner-video-side {
    width: calc(50% - 15px);
  }

  .webpro-banner-video-container {
    width: 100%;
  }

  .webpro-about-section .content .left-side {
    width: 55%;
  }

  .webpro-about-section .content .right-side {
    width: 45%;
  }

  .courses-container .course-card {
    width: calc((100% - 30px) / 2);
  }

  .success-card .webpro-success-card-video .title {
    bottom: 20px;
    left: 10px;
    width: calc(100% - 20px);
  }

  .success-card .webpro-success-card-video .title .h4 {
    font-size: 25px;
    line-height: 120%;
    letter-spacing: 0px;
  }

  .webpro-latest-events-section .content p {
    padding: 0;
  }

  .accordion-button {
    padding: 30px 30px 0px;
  }

  .accordion-body {
    padding: 10px 30px 0;
  }

  .accordion-item {
    padding-bottom: 30px;
  }

  .accordion-button {
    font-size: 25px;
  }

  .accordion-body p {
    font-size: 20px;
    line-height: 110%;
    padding-right: 60px;
  }
}

@media (max-width: 1200px) {
  .webpro-banner-content h2 {
    font-size: 55px;
  }

  .webpro-banner-content {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .webpro-about-section .content .left-side h2 {
    font-size: 40px;
  }

  .webpro-mentor-section .content h2 {
    font-size: 40px;
  }

  .slider-container .slide-card .mentor-content h4 a {
    font-size: 30px;
    line-height: 100%;
  }

  .webpro-activity-section .content h2 {
    font-size: 40px;
  }

  .activity-images .img:hover .activity-overlay {
    padding-left: 20px;
    padding-right: 20px;
  }

  .activity-overlay p {
    font-size: 28px;
    line-height: 100%;
  }

  .webpro-mentor-courses-section h2 {
    font-size: 40px;
  }

  .webpro-about-counter {
    width: 100%;
    column-gap: 10px;
  }

  .webpro-activity-section .content .p {
    width: 100%;
  }

  .webpro-mentor-section .content .p {
    width: 100%;
  }

  .webpro-joinus-section {
    padding: 50px 0;
  }

  .joinus-content .right-side {
    width: 50%;
  }

  .webpro-joinus-section .joinus-content {
    gap: 20px;
  }

  .joinus-content .left-side {
    width: 50%;
  }

  .joinus-content .left-side .top .h4 {
    font-size: 30px;
  }

  .joinus-content .left-side .bottom .whatsapp {
    width: fit-content;
    padding-right: 20px;
    margin: 0;
  }

  .events-swiper .slick-arrow {
    top: 200px;
  }

  .webpro-latest-events-section .content {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .joinus-content .right-side h2 {
    font-size: 40px;
  }

  .courses-container .course-card .card-text {
    padding: 20px;
  }

  .course-price-btn .course-btn {
    margin: 0;
  }

  .webpro-success-stories-section h2 {
    font-size: 40px;
  }

  .success-card .webpro-success-card-video .title .h4 br {
    display: none;
  }

  .webpro-latest-events-section .content h2 {
    font-size: 40px;
  }

  .webpro-growth-section .growth {
    margin-bottom: 30px;
    width: 100%;
  }

  .webpro-growth-section .growth h2 {
    font-size: 40px;
  }

  .webpro-success-stories-section .p {
    width: 100%;
  }

  .webpro-success-stories-section .bottom-cards .success-card {
    width: calc((100% - 16px) / 2);
  }
  .webpro-testimonials-section {
    min-height: 650px;
  }
  .webpro-testimonials-section .testimonials-left-side {
    transform: translate(-300px, -10px);
  }
  .webpro-testimonials-section .testimonials-right-side {
    width: 50%;
  }

  .testimonials-main-swiper .swiper-button-next {
    right: 600px;
  }

  .testimonials-main-swiper .swiper-button-prev {
    right: 670px;
  }

  .testimonials-h2 {
    font-size: 40px;
  }

  .accordion-button::after {
    width: 40px;
    height: 40px;
    background-size: 30px;
    right: 20px;
    top: 20px;
  }

  .accordion-item {
    padding: 0 0 20px 0;
  }

  .accordion-button {
    padding: 20px 20px 0;
  }

  .accordion-body p {
    padding: 0;
  }

  .accordion-body {
    padding: 10px 20px 0;
  }

  .webpro-faq-section .h2 {
    font-size: 40px;
  }

  .footer-top {
    flex-wrap: wrap;
    row-gap: 40px;
  }

  .footer-top .left-side {
    width: 70%;
  }

  .footer-top .right-side {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .webpro-banner-content h2 {
    font-size: 50px;
  }

  .webpro-top-section {
    padding: 20px 0 20px;
    margin-bottom: 25px;
  }

  .webpro-about-section {
    padding: 25px 0;
  }

  .webpro-mentor-section {
    padding: 25px 0;
  }

  .webpro-latest-events-section .content {
    width: 100%;
  }

  .events-swiper .custom-arrow {
    top: calc(50% - 31.5px);
  }

  .events-swiper .event-button-prev {
    right: unset;
    left: 20px;
  }

  .events-swiper .event-button-next {
    right: 20px;
  }

  .webpro-activity-section {
    padding: 25px 0;
  }

  .webpro-mentor-courses-section {
    padding: 25px 0;
  }

  .webpro-joinus-section {
    margin: 25px 0;
    padding: 40px 0;
  }

  .webpro-growth-section {
    padding: 25px 0;
  }

  .webpro-success-stories-section {
    padding: 25px 0;
  }

  .webpro-latest-events-section {
    margin: 25px 0;
  }

  .webpro-testimonials-section::after {
    content: unset;
  }

  .webpro-testimonials-section .content {
    flex-direction: column;
  }

  .webpro-testimonials-section .testimonials-left-side {
    width: 100%;
    padding: 0 15px;
    transform: translate(0, -10px);
  }
  .webpro-testimonials-section .testimonials-right-side {
    width: 100%;
    padding: 0 15px;
    position: unset;
  }
  .testimonials-left-side .slick-slide .swiper-slide::before {
    border-radius: 10px;
  }
  .testimonials-img {
    border-radius: 10px;
  }
  .webpro-testsimonials-text {
    padding: 0;
  }

  .testimonials-left-side .swiper-wrapper {
    margin-left: 0;
  }

  .testimonials-right-side .swiper {
    position: relative;
    overflow: visible;
  }

  .testimonials-main-swiper .custom-arrow {
    bottom: unset;
    top: 10px;
  }

  .webpro-testimonials-section {
    padding: 25px 0;
  }

  .testimonials-main-swiper .swiper-button-prev {
    right: 170px;
  }

  .testimonials-main-swiper .swiper-button-next {
    right: 100px;
  }

  .webpro-faq-section {
    padding: 25px 0;
  }

  .webpro-footer-section {
    margin-top: 25px;
    padding-top: 25px;
  }

  .footer-top {
    padding-bottom: 30px;
  }

  .webpro-about-section .content {
    flex-direction: column;
  }

  .webpro-about-section .content .left-side {
    width: 100%;
  }

  .webpro-about-section .content .left-side h2 br {
    display: none;
  }

  .webpro-about-counter .webpro-counter-card h3 {
    font-size: 30px;
    line-height: 120%;
  }

  .webpro-about-section .content .right-side {
    width: 100%;
  }

  .webpro-mentor-section .content h2 {
    font-size: 40px;
    line-height: 100%;
  }

  .webpro-activity-section .content h2 {
    font-size: 40px;
    line-height: 100%;
  }

  .activity-images {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
  }

  .activity-images .img {
    flex: 0 0 auto;
    width: 50%;
  }

  .activity-images .activity-overlay p {
    font-size: 28px;
    line-height: 120%;
  }

  .webpro-joinus-section {
    padding: 30px 0;
  }

  .webpro-joinus-section .joinus-content {
    flex-direction: column;
    padding: 0 10%;
  }

  .joinus-content .left-side {
    width: 100%;
    flex-direction: row;
  }

  .joinus-content .left-side .top {
    width: 100%;
  }

  .joinus-content .left-side .bottom {
    display: none;
  }

  .joinus-responsive .bottom {
    display: block !important;
  }

  .joinus-content .right-side {
    width: 100%;
  }

  .webpro-success-stories-section h2 {
    font-size: 40px;
    line-height: 120%;
  }

  .events-swiper {
    position: relative;
  }

  .events-swiper .slick-arrow {
    top: calc(50% - 31.5px);
    background-color: rgba(5, 105, 163, 0.2);
  }

  .events-swiper .slick-arrow.slick-prev {
    left: 20px;
  }

  .events-swiper .slick-arrow.slick-next {
    right: 20px;
  }

  .accordion-button {
    font-size: 22px;
  }

  .accordion-button::after {
    width: 25px;
    height: 25px;
    background-size: 25px;
  }

  .accordion-body p {
    font-size: 18px;
  }

  .events-swiper .slick-prev:hover,
  .events-swiper .slick-prev:focus,
  .events-swiper .slick-next:hover,
  .events-swiper .slick-next:focus {
    background-color: rgba(5, 105, 163, 0.7);
    border: 1px solid rgba(5, 105, 163, 0.7);
  }
}

@media (max-width: 768px) {
  .webpro-top-section .banner-div .webpro-banner-video-side {
    display: none;
  }

  .webpro-top-section .banner-div .webpro-banner-content {
    width: 100%;
  }

  .hidden-image {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .courses-container .course-card {
    width: 100%;
  }

  .webpro-banner-content .trusted-icons {
    flex-direction: column;
    width: 30%;
    row-gap: 14px;
    height: unset;
  }

  .webpro-banner-content .trusted-icons .line {
    height: 2px;
    width: 50%;
    background: linear-gradient(
      90deg,
      #ffffff 0%,
      #0568a3 50.96%,
      #ffffff 100%
    );
  }

  .webpro-top-section .banner-div .hidden-image .webpro-banner-video-side {
    display: block;
    width: 70%;
  }

  .webpro-top-section .banner-div .hidden-image .webpro-banner-video-container {
    display: block;
  }

  .activity-images .img {
    width: 90%;
  }

  .activity-images .activity-overlay p {
    font-size: 22px;
    line-height: 110%;
  }

  .webpro-joinus-section .joinus-content {
    padding: 0;
  }

  .joinus-content .left-side .top .p {
    padding: 0;
  }

  .webpro-success-stories-section .top-cards .success-card {
    width: 100%;
  }

  .webpro-success-stories-section .top-cards .success-card:first-child {
    margin-bottom: 0;
  }

  .webpro-success-stories-section .bottom-cards .success-card {
    width: 100%;
  }

  .testimonials-main-swiper .swiper-button-next {
    right: 30px;
  }

  .testimonials-main-swiper .swiper-button-prev {
    right: 100px;
  }

  div#accordionExample {
    gap: 30px;
  }

  .footer-top .left-side {
    width: 100%;
  }

  .footer-top .middle-side .link {
    display: none;
  }

  .footer-top .middle-side .responsive {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
  }

  .footer-top .middle-side .responsive .link {
    display: block;
  }

  .footer-top .right-side .form {
    flex-direction: column;
  }

  .footer-top .right-side .form #news-email {
    width: 100%;
  }

  .footer-top .right-side .form .news-btn {
    width: 50%;
  }

  .footer-bottom .content {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .footer-bottom .content .privacy-terms {
    justify-content: space-between;
    gap: 20px;
    width: 80%;
  }

  .webpro-mentor-courses-section h2 {
    font-size: 40px;
    line-height: 120%;
    margin-bottom: 20px;
  }
  .course-list-icon-div ul li {
    line-height: 120%;
    margin-bottom: 8px;
    gap: 10px;
  }

  .webpro-top-section .webpro-logo img {
    width: 80%;
  }

  .footer-bottom .content {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .webpro-top-section .banner-div {
    padding-top: 0px;
  }

  .courses-container .course-card .card-text {
    padding: 20px;
    gap: 10px;
  }

  .banner-div .hidden-image {
    flex-wrap: wrap;
  }

  .webpro-banner-content .trusted-icons {
    width: 100%;
    flex-direction: row;
    height: unset;
  }

  .webpro-banner-content .trusted-icons img {
    width: calc((100% - 3px - 20px * 2) / 3);
  }

  .webpro-banner-content .trusted-icons .line {
    height: 100px;
    width: 2px;
    background: linear-gradient(
      45deg,
      #ffffff 0%,
      #0568a3 50.96%,
      #ffffff 100%
    );
  }
  .webpro-about-imgs img:not(:first-child) {
    margin-left: -32px;
  }

  .course-price-btn .course-btn {
    width: 150px;
    height: 50px;
    font-size: 18px;
  }

  .webpro-joinus-section .joinus-form {
    gap: 10px;
    padding: 20px 10px;
  }

  .webpro-joinus-section .joinus-form .name {
    flex-wrap: wrap;
    gap: 10px;
  }

  .webpro-joinus-section .joinus-form .name .field {
    width: 100%;
  }

  .webpro-top-section .banner-div .hidden-image .webpro-banner-video-container {
    width: 100%;
  }

  .course-title-div .list-icon {
    gap: 10px;
  }

  .course-title-div h3 a {
    font-size: 25px;
  }

  .webpro-joinus-section .joinus-responsive {
    flex-direction: column;
  }

  .webpro-about-counter {
    justify-content: center;
    flex-direction: column;
  }

  .webpro-about-counter .webpro-counter-card {
    width: 100%;
    height: unset;
    border-radius: 10px;
    padding: 30px 10px;
  }

  .webpro-about-counter .webpro-counter-card h3 {
    font-size: 150%;
  }

  .webpro-about-counter .webpro-counter-card p {
    font-size: 90%;
    text-align: center;
    line-height: 100%;
  }

  .webpro-mentor-section .content h2 {
    font-size: 35px;
  }

  .webpro-activity-section .content h2 {
    font-size: 35px;
  }

  .webpro-mentor-courses-section h2 {
    font-size: 35px;
  }

  .course-price-btn .h4 {
    font-size: 30px;
  }

  .joinus-content .right-side h2 {
    font-size: 35px;
  }

  .webpro-growth-section .growth h2 {
    font-size: 35px;
  }

  .webpro-success-stories-section h2 {
    font-size: 35px;
  }

  .webpro-latest-events-section .content h2 {
    font-size: 35px;
  }

  .testimonials-h2 {
    font-size: 35px;
  }

  .webpro-faq-section .h2 {
    font-size: 35px;
  }

  .webpro-banner-content h6 {
    width: fit-content;
  }

  .webpro-top-section .banner-div .hidden-image .webpro-banner-video-side {
    width: 100%;
  }

  .success-card .card-content .h3 {
    flex-direction: column;
    gap: 5px;
  }

  div#accordionExample {
    gap: 20px;
  }

  .testimonials-main-swiper .swiper-button-next {
    right: 10px;
  }

  .testimonials-main-swiper .swiper-button-prev {
    right: 80px;
  }
}

@media (max-width: 320px) {
  .webpro-banner-content h6 {
    font-size: 13px;
  }
  .events-swiper .custom-arrow {
    width: 50px;
    height: 50px;
  }
  .testimonials-main-swiper .swiper-button-prev {
    right: 70px;
  }
  .testimonials-main-swiper .custom-arrow {
    top: 20px;
    width: 50px;
    height: 50px;
  }
  .webpro-banner-content h2 {
    font-size: 35px;
    letter-spacing: -1px;
  }

  .webpro-h6-tags-same {
    font-size: 18px !important;
    gap: 10px;
    line-height: 100%;
  }

  .webpro-h6-tags-same span {
    width: 25px !important;
    height: 25px !important;
  }

  .webpro-h6-tags-same span img {
    width: 100% !important;
  }

  .webpro-h2-same {
    font-size: 30px !important;
  }

  .webpro-about-section .content .right-side h3 {
    font-size: 24px;
  }

  .webpro-about-section .content .right-side p {
    font-size: 18px;
  }

  .activity-overlay {
    padding: 0px 10px 20px 10px !important;
  }

  .activity-overlay p {
    font-size: 20px !important;
  }

  .webpro-faq-section .p {
    font-size: 20px;
  }

  .accordion-button {
    font-size: 18px;
    padding: 10px 33px 0 10px;
  }

  .accordion-button::after {
    right: 10px;
    top: 15px;
    width: 30px;
    height: 30px;
    background-size: 20px;
  }

  .accordion-body {
    padding: 10px 10px 0;
  }

  .accordion-body p {
    font-size: 15px;
  }

  .accordion-item {
    padding-bottom: 10px;
    border-radius: 10px !important;
  }

  .footer-bottom .content {
    padding: 10px 0;
  }

  .footer-top .left-side .footor-logo {
    width: 100%;
  }

  .testimonials-p {
    font-size: 18px;
    line-height: 120%;
  }

  .events-swiper .custom-arrow {
    top: 28%;
  }

  .host-join {
    gap: 0;
  }

  .webpro-latest-events-section .content p {
    font-size: 18px;
    line-height: 120%;
  }

  .success-card .webpro-success-card-video .title .h4 {
    font-size: 22px !important;
    line-height: 100%;
  }

  .success-card .webpro-success-card-video .title .h6 {
    font-size: 18px;
    line-height: 100%;
  }

  .webpro-success-stories-section .success-card {
    padding: 15px;
    border-radius: 10px;
  }

  .success-play.active svg,
  .success-pause.active svg {
    width: 60px;
  }

  .success-card .webpro-success-card-video .play-pause {
    width: 60px;
    left: calc(50% - 30px);
  }

  .joinus-content .right-side h2 {
    font-size: 28px;
  }

  .joinus-content .left-side .bottom .h3 {
    font-size: 20px;
  }

  .joinus-content .left-side .bottom .whatsapp span.label {
    padding: 0;
    letter-spacing: 0;
    font-size: 18px;
    gap: 0;
    justify-content: space-between;
  }

  .joinus-content .left-side .bottom .whatsapp:hover::before {
    top: 8px;
  }

  .joinus-content .left-side .top .p {
    font-size: 18px;
    line-height: 110%;
  }
}
