@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;
}

span.webpro-blue-text {
  color: var(--brand-color) !important;
}

/* WebPro School Responsive Container */
.webpro-container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 992px) {
  .webpro-container {
    max-width: 100%;
  }
}

@media (min-width: 1201px) {
  .webpro-container {
    max-width: 90%;
  }
}

@media (min-width: 1920px) {
  .webpro-container {
    max-width: 1440px;
  }
}

.webpro-top-section {
  background: rgb(5 104 163 / 4%);
  background-image: url(../assets/images/webpro-us-taxation-banner-bg.png);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  max-width: 100%;
  padding: 42px 0 51px;
  margin-bottom: 60px;
  overflow: hidden;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

/* ⤵⤵ start header section ⤵⤵ */
header.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.header .webpro-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--brand-color);
  border-radius: 130px;
  padding: 9px 10px 9px 10px;
  gap: 30px;
}

.header .webpro-nav-links ul.main-ul {
  padding: 0 25px 0 21px;
  display: flex;
  gap: 43px;
}

.header .webpro-nav-links ul.main-ul li {
  display: inline-block;
  padding: 9.5px 0;
}

.header .webpro-nav-links ul.main-ul li a {
  color: #ffffff;

  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  text-decoration: none;
  position: relative;
}

.header .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;
}

.header .webpro-nav-links ul.main-ul li a:hover::before {
  width: 100%;
}

.header .header-btn {
  display: flex;
  align-items: center;
  gap: 9.5px;
}

.header .find-talent {
  padding: 11px 26.4px;
  border: 1px solid #ffffff;
  color: #fff;
  background-color: transparent;

  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  border-radius: 30px;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.header .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;
}

.header .find-talent:hover::before {
  left: 0;
}

.header .find-talent:hover {
  color: var(--brand-color);
}

.header .header-whatsapp {
  background: #ffffff;
  border-radius: 50%;
  width: 42.47px;
  height: 42.47px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: 0.3s ease;
}

.header .header-whatsapp:hover {
  background-color: #f8fdffe6;
}

.header .head-whatsapp img {
  width: 28.33px;
  height: 28.33px;
}

.header .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;
}

.header .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;
}

.header .mobile-menu.active {
  right: 0;
}

.header .mobile-menu ul {
  list-style: none;
  padding-left: 0px;
}

.header .mobile-menu ul li {
  margin-bottom: 15px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 15px;
}

.header .mobile-menu ul li:last-child {
  border-bottom: none;
}

.header .mobile-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 0;
}

.header .mobile-menu ul li a:hover {
  background-color: #d1d1d12e;
}

.header .mobile-menu .mobile-btn {
  text-align: center;
  display: flex;
  align-items: center;
  gap: 9.5px;
}

.header .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;
}

.header .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  display: none;
}

.header .overlay.active {
  display: block;
}

/* ⤵⤵ start webpro banner section ⤵⤵ */
.banner-div {
  padding: 100px 0px 0 0px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 22px;
}

.banner-div .webpro-banner-left-side {
  width: 923px;
  padding-top: 28px;
}

.banner-div .webpro-banner-right-side {
  width: 435px;
}

.banner-div .webpro-banner-left-side .top-content {
  display: flex;
  flex-direction: column;
  row-gap: 37px;
  margin-bottom: 48px;
}

.banner-div .webpro-banner-left-side .h2 {
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 36px;
  line-height: 39px;
  letter-spacing: -0.4px;
  text-transform: capitalize;
  margin-bottom: 8px;
  color: #000000;
}

.banner-div .webpro-banner-left-side .first-p {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.2px;
  color: #565656;
}

.banner-div .webpro-banner-left-side .h4 {
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 8px;
  padding-top: 1px;
}

.banner-div .webpro-banner-left-side .second-p,
.banner-div .webpro-banner-left-side .third-p {
  font-weight: 400;
  font-size: 19px;
  line-height: 23px;
  color: #565656;
  letter-spacing: -0.5px;
}

.banner-div .webpro-banner-left-side .second-p {
  margin-bottom: 11px;
  font-size: 18px;
  letter-spacing: 0px;
}

.banner-div .webpro-banner-left-side .third-p span {
  font-weight: 700;
}

.banner-div .webpro-banner-left-side .trust-badge-div {
  display: flex;
  column-gap: 44px;
  padding-top: 2px;
}

.banner-div .webpro-banner-left-side .trusted-column .trust-badge {
  display: flex;
  gap: 10px;
  align-items: center;
}

.banner-div .webpro-banner-left-side .trusted-column .trust-badge:first-child {
  margin-bottom: 19px;
}

.banner-div .webpro-banner-left-side .trust-badge .trust-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 218px;
  background: var(--brand-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-div .webpro-banner-left-side .trust-badge .trust-badge-icon img {
  width: 22px;
  height: 22px;
}

.banner-div .webpro-banner-left-side .trust-badge .trust-heading {
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  color: #000000;
}

.banner-div .webpro-banner-left-side .trust-badge .trust-subheading {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #020817;
}

.banner-div .webpro-banner-left-side .bottom-content {
  padding: 2px 0px;
  display: flex;
  column-gap: 48px;
}

.banner-div .webpro-banner-badgs-hiden-content .bottom-content {
  display: none !important;
}

.banner-div .webpro-banner-left-side .tag-imgs-div {
  width: fit-content;
  height: 90px;
  display: flex;
  gap: 10px;
}

.banner-div .webpro-banner-left-side .tag-imgs-div .middle-line {
  width: 2px;
  background: linear-gradient(100deg, #ffffff 0%, #0568a3 50.96%, #ffffff 100%);
  border-radius: 50%;
}

.banner-div .webpro-banner-left-side .btns-tag .btns-div {
  display: flex;
  gap: 14px;
  margin-bottom: 19px;
}

.banner-div .webpro-banner-left-side .btns-tag .webpro-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid var(--brand-color);
  background: #f4f8ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 208px;
  gap: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  border-radius: 100px;
  color: var(--brand-color);
  padding: 9px 10px 9px 10px;
  transition: 0.5s ease;
}
.banner-div .webpro-banner-left-side .btns-tag .webpro-btn:last-child svg {
  transform: translateX(-7px);
}
.banner-div .webpro-banner-left-side .btns-tag .webpro-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--brand-color), #0576d6);
  transform: translateX(101%);
  border-radius: 100px;
  transition: 0.5s ease;
  z-index: -1;
}

.banner-div .webpro-banner-left-side .btns-tag .webpro-btn svg path {
  transition: 0.5s ease;
}

.banner-div .webpro-banner-left-side .btns-tag .webpro-btn:last-child::before {
  transform: translateX(-101%);
}

.banner-div .webpro-banner-left-side .btns-tag .webpro-btn:hover::before {
  transform: translateX(0);
}

.banner-div
  .webpro-banner-left-side
  .btns-tag
  .webpro-btn:last-child:hover::before {
  transform: translateX(0);
}

.banner-div .webpro-banner-left-side .btns-tag .webpro-btn:hover {
  color: #fff;
}

.banner-div .webpro-banner-left-side .btns-tag .webpro-btn:hover svg path {
  stroke: #fff;
}

.banner-div .webpro-banner-left-side .bottom-content .tag {
  background-color: var(--brand-color);
  padding: 10px 17px 10px 14px;
  border-radius: 100px;
  color: #ffffff;
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  width: fit-content;
}

.banner-div .webpro-banner-left-side .bottom-content .tag span {
  color: #fedc5a;
  font-weight: 500;
  margin-right: 6px;
}

.banner-div .banner-course-include-card {
  background: var(--brand-color);
  border: 1px solid #e1e3fa80;
  box-shadow: 0px 4px 6px -4px #0000001a, 0px 10px 15px -3px #0000001a,
    0px 4px 6px -4px #0000001a, 0px 10px 15px -3px #0000001a;
  border-radius: 24px;
  overflow: hidden;
  padding-bottom: 24px;
}

.banner-div .banner-course-include-card .video-div {
  position: relative;
  margin-bottom: 22px;
}

.banner-div .banner-course-include-card .video-div::before {
  content: "";
  background: #67b6e442;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.banner-div .banner-course-include-card .video-div.playing::before {
  display: none;
}

.banner-div .banner-course-include-card .video-div video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  box-shadow: 0px 4px 11.4px 0px #00000040;
}

.banner-div .banner-course-include-card .video-div .player {
  position: absolute;
  top: 46%;
  left: calc(50% - 25px);
  width: 50px;
  height: 50px;
  background-color: var(--brand-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  line-height: 19px;
  z-index: 100;
  transition: 0.2s ease;
}

.banner-div .banner-course-include-card .video-div .player:hover {
  transform: scale(1.15);
  background-color: #055e9d;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 0 10px rgba(5, 104, 163, 0.6);
}

.banner-div .banner-course-include-card .video-div .player .pause {
  display: none;
}

.banner-div .banner-course-include-card .video-div .price {
  position: absolute;
  width: fit-content;
  bottom: -20px;
  right: 27px;
  border-radius: 6px;
  padding: 0 10px;
  background: #ffffff;
  box-shadow: 0px 4.62px 11.54px 0px #00000040;
  color: var(--brand-color);
  font-family: var(--outfit);
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
}

.banner-div .banner-course-include-card .video-div .price span {
  font-weight: 600;
}

.banner-div .banner-course-include-card .content {
  padding: 0 30px 0 29px;
  margin-bottom: 42px;
}

.banner-div .banner-course-include-card .content .h4 {
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 20px;
  line-height: 33px;
  margin-bottom: 14px;
  color: #fff;
}

.banner-div .banner-course-include-card .content .list-icon {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  margin-bottom: 26px;
}

.banner-div .banner-course-include-card .content .list-icon li {
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  color: #fff;
  display: flex;
  align-items: center;
}

.banner-div .banner-course-include-card .content .list-icon li .icon {
  opacity: 1;
  width: 18px;
  height: 18px;
  margin-right: 14px;
}

.banner-div .banner-course-include-card .content .list-icon li .light {
  font-weight: 400;
  margin-left: 5px;
  opacity: 0.8;
}

.banner-div .banner-course-include-card .st-rating {
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 8px;
}

.banner-div .banner-course-include-card .st-rating i {
  color: #fcd53f;
  margin-right: 4px;
}

.banner-div .banner-course-include-card .st-imgs {
  display: flex;
  align-items: center;
  width: fit-content;
}

.banner-div .banner-course-include-card .st-imgs img {
  width: 39px;
  height: 39px;
  object-fit: cover;
  border: 2.25px solid #ffffff;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
  transform-origin: center center;
}

.banner-div .banner-course-include-card .st-imgs img:hover {
  z-index: 1;
  transform: scale(1.2) translateY(-10px);
}

.banner-div .banner-course-include-card .st-imgs img + img {
  margin-left: -19px;
}

.banner-div .banner-course-include-card .enroll-btn-div {
  padding: 0 27px 0 28px;
}

.banner-div .banner-course-include-card .enroll-btn-div a {
  background: #3cff66;
  padding: 14px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  text-transform: capitalize;
  color: #000000;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.banner-div .banner-course-include-card .enroll-btn-div a::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #3cff66, #1fdf3a);
  transition: all 0.5s ease;
  z-index: 0;
}

.banner-div .banner-course-include-card .enroll-btn-div a:hover::before {
  left: 0;
}

.banner-div .banner-course-include-card .enroll-btn-div a:hover {
  color: #ffffff;
}

.banner-div .banner-course-include-card .enroll-btn-div a span {
  position: relative;
  z-index: 1;
}

/* ⤵⤵ start webpro key lessons section ⤵ */
.webpro-key-lessons-section {
  padding: 60px 15px 60px;
  background-color: #fff;
}

.webpro-key-lessons-section .h2 {
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 36px;
  line-height: 39px;
  letter-spacing: -0.4px;
  color: #000000;
  margin-bottom: 22px;
  text-align: center;
}

.webpro-key-lessons-section .p {
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  text-align: center;
  color: #565656;
  margin-bottom: 55px;
}

.webpro-key-lessons-section .webpro-key-lessons-content {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.webpro-key-lessons-section .webpro-key-lessons-card {
  width: calc((100% - 26px * 3) / 4);
  box-shadow: 0px 3px 9.39px 0px #0000000f;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s ease;
}

.webpro-key-lessons-section .webpro-key-lessons-card:hover {
  transform: translateY(-10px);
  scale: 1.05;
}

.webpro-key-lessons-section .webpro-key-lessons-card .card-video {
  position: relative;
  width: 100%;
  border-radius: 7px;
  overflow: hidden;
}

.webpro-key-lessons-section .webpro-key-lessons-card .card-video::before {
  content: "";
  background: linear-gradient(
    180deg,
    rgba(5, 104, 163, 0) 0%,
    rgba(5, 104, 163, 0.8) 100%
  );
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.webpro-key-lessons-section .webpro-key-lessons-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.webpro-key-lessons-section .webpro-key-lessons-card .play {
  z-index: 5;
  position: absolute;
  top: calc(50% - 19px);
  left: calc(50% - 21px);
  background: #0568a399;
  border-radius: 80px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15.9px;
  color: #ffffff;
  transition: transform 0.3s ease, background-color 0.3s ease,
    box-shadow 0.3s ease;
  transform: scale(1);
  cursor: pointer;
}

.webpro-key-lessons-section .webpro-key-lessons-card .card-video:hover .play {
  transform: scale(1.15);
  background: #0583d4cc;
  box-shadow: 0 8px 20px rgba(5, 104, 163, 0.4);
}

.webpro-key-lessons-section .webpro-key-lessons-card .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-key-lessons-section .webpro-key-lessons-card .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);
  }
}

.webpro-key-lessons-section .webpro-key-lessons-card .loader-overlay {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 900;
}

.webpro-key-lessons-section .webpro-key-lessons-card .school-logo {
  z-index: 4;
  position: absolute;
  top: 33%;
  left: calc(50% - 28.3%);
  width: 56.6%;
}

.webpro-key-lessons-section .webpro-key-lessons-card .title {
  z-index: 4;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 59px 17px 22px;
  font-family: var(--outfit);
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.1px;
  text-transform: capitalize;
  color: #fff;
}

.webpro-key-lessons-section .webpro-key-lessons-card .card-text {
  padding: 22px 12px 15px;
}

.webpro-key-lessons-section .webpro-key-lessons-card .card-text .subtitle {
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  color: #000000;
  margin-bottom: 4px;
}

.webpro-key-lessons-section .webpro-key-lessons-card .card-text .description {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #020817;
}

.video-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 9998;
}

.video-popup .video-popup-content {
  position: relative;
  width: 90%;
  max-width: 900px;
}

.video-popup video {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.video-popup .close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 26px;
  color: #fff;
  background: #0568a3;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease, transform 0.2s ease;
}

.video-popup .close-popup:hover {
  background: #04527f;
  /* Slightly darker brand color */
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

.video-popup .close-popup:active {
  transform: scale(0.95);
}

/* ⤵⤵ start webpro freelance skills pay section ⤵⤵ */
.webpro-freelance-skills-pay-section {
  padding: 62px 15px 60px;
  background-color: #ffffff;
}

.webpro-freelance-skills-pay-section .content {
  display: flex;
  justify-content: space-between;
  column-gap: 30px;
  align-items: center;
}

.webpro-freelance-skills-pay-section .text {
  width: 706px;
}

.webpro-freelance-skills-pay-section .text .h2 {
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 36px;
  line-height: 39px;
  letter-spacing: -0.3px;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 22px;
}

.webpro-freelance-skills-pay-section .text .p {
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #565656;
}

.webpro-freelance-skills-pay-section .webpro-freelance-skills-pay-counter {
  width: 624px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 0px;
}

.webpro-freelance-skills-pay-section
  .webpro-freelance-skills-pay-counter
  .webpro-counter-card {
  box-shadow: 0px 4px 12.5px 0px #0000000f;
  width: calc((100% - 2 * 24px) / 3);
  height: 130px;
  border-radius: 23px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.webpro-freelance-skills-pay-section
  .webpro-freelance-skills-pay-counter
  .webpro-counter-card
  h3 {
  font-family: var(--outfit);
  font-weight: 600;
  font-size: 36px;
  line-height: 39px;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 8px;
}
.webpro-counter-card h3 .count {
  display: inline-block;
}
.webpro-freelance-skills-pay-section
  .webpro-freelance-skills-pay-counter
  .webpro-counter-card
  p {
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #565656;
  text-align: center;
}

/* ⤵⤵ start webpro fiverr vs upwork section ⤵⤵ */
.webpro-upwork-vs-fiverr-section {
  margin: 60px 0;
  background-image: url(../assets/images/webpro-us-taxation-upwork-vs-fiverr-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  padding: 92px 0 106px;
}

.webpro-upwork-vs-fiverr-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #0568a3b2;
  width: 100%;
  height: 100%;
}

.webpro-upwork-vs-fiverr-section .absolute-arrow {
  position: absolute;
  top: 32px;
  left: 22.5%;
}

.webpro-upwork-vs-fiverr-section .search-bar {
  box-shadow: 0px 7.85px 34.95px 0px #00000047;
  backdrop-filter: blur(19px);
  background-color: #fff;
  border-radius: 100px;
  width: 579px;
  height: 74px;
  margin-left: 8px;
  padding: 13px 9px 13px 12px;
  display: flex;
  align-items: center;
  justify-self: center;
  position: relative;
}

.webpro-upwork-vs-fiverr-section .search-bar .search-icon {
  font-size: 20px;
  color: #000;
  position: absolute;
  top: 51%;
  left: 32px;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 0;
  outline: none;
}

.webpro-upwork-vs-fiverr-section .search-bar .search-feild {
  width: 100%;
  height: 100%;
  border: 1px solid #000;
  border-radius: 50px;
  outline: none;
  padding: 5px 40px 5px 57px;
  font-family: var(--outfit);
  font-weight: 600;
  font-size: 24.36px;
  line-height: 100%;
  text-transform: capitalize;
  color: #000;
  transition: all 0.3s ease;
}
.webpro-upwork-vs-fiverr-section .search-bar .search-feild:focus {
  border-color: #4a90e2;
  box-shadow: 0 0 8px rgba(74, 144, 226, 0.6);
}
.search-feild.invalid {
  border-color: #b00020 !important;
  box-shadow: 0 0 0 3px rgba(176, 0, 32, 0.06);
}
.webpro-upwork-vs-fiverr-section .search-feild::-webkit-search-decoration,
.webpro-upwork-vs-fiverr-section .search-feild::-webkit-search-cancel-button,
.webpro-upwork-vs-fiverr-section .search-feild::-webkit-search-results-button,
.webpro-upwork-vs-fiverr-section
  .search-feild::-webkit-search-results-decoration {
  display: none;
}

.webpro-upwork-vs-fiverr-section
  .search-feild[type="search"]::-moz-search-clear {
  display: none;
}

.webpro-upwork-vs-fiverr-section .search-bar .clear-icon {
  font-size: 11px;
  color: #000;
  width: 20px;
  height: 20px;
  line-height: 16px;
  font-weight: 700;
  text-align: center;
  border: 1px solid #000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  cursor: pointer;
  display: none;
  background: transparent;
  padding: 0;
  outline: none;
}

.webpro-upwork-vs-fiverr-section .content {
  display: flex;
  gap: 42px;
  padding-top: 81px;
}

.webpro-upwork-vs-fiverr-section .webpro-fiverr-side,
.webpro-upwork-vs-fiverr-section .webpro-upwork-side {
  flex: 1;
  backdrop-filter: blur(19px);
  background: #fff;
  padding: 22px 0px 26px;
  border-radius: 10px;
  overflow: hidden;
}

.webpro-upwork-vs-fiverr-section .webpro-fiverr-side .fiverr-img,
.webpro-upwork-vs-fiverr-section .webpro-upwork-side .upwork-img {
  text-align: center;
  margin-bottom: 34px;
}

.webpro-upwork-vs-fiverr-section .webpro-fiverr-side .fiverr-img {
  padding-top: 6px;
  margin-bottom: 41px;
}

.webpro-upwork-vs-fiverr-section .webpro-marquee-slider-container {
  display: flex;
  flex-direction: column;
  margin-top: -3px;
}

.webpro-upwork-vs-fiverr-section .webpro-marquee-slider-container .slider {
  position: relative;
  width: 100%;
}

.webpro-upwork-vs-fiverr-section .webpro-marquee-slider-container .slide {
  display: flex;
  width: max-content;
  animation: marquee 70s linear infinite;
  padding: 6px 0;
}

.webpro-upwork-vs-fiverr-section
  .webpro-marquee-slider-container
  .slider.reverse
  .slide {
  animation-name: marquee-reverse;
}

.webpro-upwork-vs-fiverr-section
  .webpro-marquee-slider-container
  .mqrquee-card {
  flex: 0 0 auto;
  margin-right: 16px;
  border-radius: 10px;
  box-shadow: 0px 2.37px 10.53px 0px #00000047;
  overflow: hidden;
}

.webpro-upwork-vs-fiverr-section
  .webpro-marquee-slider-container
  .mqrquee-card
  img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes marquee {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes marquee-reverse {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.webpro-upwork-vs-fiverr-section .webpro-fiverr-upwork-text-content {
  padding: 35px 38px 7px 34px;
}

.webpro-upwork-vs-fiverr-section .webpro-fiverr-upwork-text-content .h3 {
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  text-transform: capitalize;
  color: #000;
  margin-bottom: 7px;
}

.webpro-upwork-vs-fiverr-section .webpro-fiverr-upwork-text-content .p {
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  color: #565656;
  margin-bottom: 25px;
  letter-spacing: -0.2px;
}

.webpro-upwork-vs-fiverr-section .webpro-fiverr-upwork-text-content .h4 {
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 18px;
  line-height: 13px;
  letter-spacing: 0px;
  color: #000;
  letter-spacing: -0.2px;
  margin-bottom: 0;
}

.webpro-upwork-vs-fiverr-section .webpro-fiverr-upwork-text-content .h4 span {
  background-color: var(--brand-color);
  border-radius: 2.5px;
  color: #fff;
  padding: 1px 5px 3px 1px;
  margin-left: -2px;
}

/* ⤵⤵ start webpro Learn skills section ⤵⤵ */
.webpro-learn-skills-section {
  padding: 61px 0 60px;
  background-color: #fff;
  overflow: hidden;
}

.webpro-learn-skills-section .h2 {
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 36px;
  line-height: 39px;
  letter-spacing: -0.4px;
  color: #000;
  margin-bottom: 22px;
  text-align: center;
}

.webpro-learn-skills-section .p {
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  text-align: center;
  color: #565656;
  margin-bottom: 55px;
}

.webpro-learn-skills-section .content {
  display: flex;
  gap: 22px;
  row-gap: 23px;
  flex-wrap: wrap;
}

.webpro-learn-skills-section .webpro-learn-skills-card {
  width: calc((100% - 22px * 2) / 3);
  border: 1px solid #0568a31a;
  box-shadow: 0px 3px 10px 0px #0000000f;
  padding: 42px 70px 42px 35px;
  border-radius: 8px;
  transition: 0.3s ease;
}

.webpro-learn-skills-section .webpro-learn-skills-card.card-4 {
  padding: 41px 70px 42px 35px;
}

.webpro-learn-skills-section .webpro-learn-skills-card.card-5 {
  padding-right: 91px;
  padding-bottom: 73px;
}

.webpro-learn-skills-section .webpro-learn-skills-card:hover {
  transform: translateY(-10px);
  scale: 1.05;
}

.webpro-learn-skills-section .webpro-learn-skills-card .icon {
  border: 1px solid #e1e3fa4d;
  box-shadow: 0px 1.24px 2.47px 0px #0000000d;
  border-radius: 10px;
  width: fit-content;
  padding: 17px 16px 16px 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 27px;
}

.webpro-learn-skills-section .webpro-learn-skills-card .icon img {
  width: 44px;
}

.webpro-learn-skills-section .webpro-learn-skills-card .title {
  font-family: var(--outfit);
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  text-transform: capitalize;
  color: #000;
  margin-bottom: 6px;
}

.webpro-learn-skills-section .webpro-learn-skills-card .subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: #565656;
}
.webpro-learn-skills-section .webpro-learn-skills-card.card-5 .icon {
  margin-bottom: 23px;
}
.webpro-learn-skills-section .webpro-learn-skills-card.card-5 .title {
  margin-bottom: 9px;
}

.webpro-learn-skills-section .webpro-learn-skills-lastcard {
  width: calc((100% - 22px * 2) / 3);
  background: linear-gradient(180deg, #0568a3 0%, #02273d 100%);
  border: 1px solid #0568a31a;
  box-shadow: 0px 3px 10px 0px #0000000f;
  padding: 0 22px 50px;
  position: relative;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.3s ease;
}

.webpro-learn-skills-section .webpro-learn-skills-lastcard:hover {
  transform: translateY(-10px);
  scale: 1.05;
}

.webpro-learn-skills-section .webpro-learn-skills-lastcard .title {
  font-family: var(--outfit);
  font-weight: 600;
  font-size: 30px;
  line-height: 34px;
  letter-spacing: -0.2px;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 8px;
  padding-right: 40px;
}

.webpro-learn-skills-section .webpro-learn-skills-lastcard .subtitle {
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  color: #fff;
  margin-bottom: 22px;
}

.webpro-learn-skills-section .webpro-learn-skills-lastcard .learn-skill-btn {
  background: #3cff66;
  height: 44.84px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 17px;
  line-height: 21px;
  text-transform: capitalize;
  color: #000000;
  border-radius: 8.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.webpro-learn-skills-section
  .webpro-learn-skills-lastcard
  .learn-skill-btn::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #3cff66, #1fdf3a);
  transition: all 0.5s ease;
  z-index: 0;
}

.webpro-learn-skills-section
  .webpro-learn-skills-lastcard
  .learn-skill-btn:hover::before {
  left: 0;
}

.webpro-learn-skills-section
  .webpro-learn-skills-lastcard
  .learn-skill-btn:hover {
  color: #ffffff;
}

.webpro-learn-skills-section
  .webpro-learn-skills-lastcard
  .learn-skill-btn
  span {
  position: relative;
  z-index: 1;
}

.webpro-learn-skills-section .webpro-learn-skills-lastcard .tag {
  position: absolute;
  top: -69px;
  right: -64px;
  z-index: 1;
  width: 221px;
}

.webpro-learn-skills-section .webpro-learn-skills-lastcard .tag img {
  width: 100%;
}

/* ⤵⤵ start webpro comprehensive tax section ⤵⤵ */
.webpro-comprehensive-tax-section {
  padding: 59px 0 60px;
  background-color: #fff;
  overflow: hidden;
}

.webpro-comprehensive-tax-section .h2 {
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 36px;
  line-height: 39px;
  letter-spacing: -0.4px;
  color: #000;
  margin-bottom: 22px;
  text-align: center;
}

.webpro-comprehensive-tax-section .p {
  font-family: Manrope;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  text-align: center;
  color: #565656;
  margin-bottom: 55px;
}

.webpro-comprehensive-tax-section .webpro-comprehensive-tax-card-container {
  display: flex;
  flex-direction: column;
  gap: 27px;
  margin-bottom: 48px;
}

.webpro-comprehensive-tax-section .webpro-comprehensive-tax-card {
  box-shadow: 0px 2.56px 7.99px 0px #0000000f;
  border: 0.85px solid #0568a31a;
  background: #ffffff;
  width: 100%;
  padding: 42px 34px;
  border-radius: 8px;
  transition: 0.3s ease;
}

.webpro-comprehensive-tax-section .webpro-comprehensive-tax-card:hover {
  transform: translateX(30px);
  scale: 1.02;
}

.webpro-comprehensive-tax-section .webpro-comprehensive-tax-card .title {
  font-family: var(--outfit);
  font-weight: 400;
  font-size: 22px;
  line-height: 34px;
  color: #181830;
  margin-bottom: 8px;
}

.webpro-comprehensive-tax-section .webpro-comprehensive-tax-card .subtitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #565656;
  margin-bottom: 41px;
}

.webpro-comprehensive-tax-section .webpro-comprehensive-tax-card .icon-list {
  display: flex;
  gap: 78px;
}

.webpro-comprehensive-tax-section .webpro-comprehensive-tax-card .icon-list p {
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: var(--brand-color);
  display: flex;
  align-items: center;
}

.webpro-comprehensive-tax-section
  .webpro-comprehensive-tax-card
  .icon-list
  p:not(:last-child) {
  margin-bottom: 19px;
}

.webpro-comprehensive-tax-section
  .webpro-comprehensive-tax-card
  .icon-list
  p
  span {
  margin-right: 8px;
}

.webpro-comprehensive-tax-section .webpro-comprehensive-tax-btns {
  display: flex;
  gap: 19px;
  align-items: center;
  justify-content: center;
}

.webpro-comprehensive-tax-section .webpro-comprehensive-tax-btns .webpro-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid var(--brand-color);
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13.6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  border-radius: 100px;
  color: var(--brand-color);
  padding: 13px 32px 13px 30px;
  transition: 0.5s ease;
}

.webpro-comprehensive-tax-section
  .webpro-comprehensive-tax-btns
  .webpro-btn.first {
  background: #fff;
  color: #ffffff;
}

.webpro-comprehensive-tax-section
  .webpro-comprehensive-tax-btns
  .webpro-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--brand-color), #0576d6);
  transform: translateX(-101%);
  border-radius: 100px;
  transition: 0.5s ease;
  z-index: -1;
}

.webpro-comprehensive-tax-section
  .webpro-comprehensive-tax-btns
  .webpro-btn.first::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--brand-color), #0576d6);
  transform: translateX(0);
  border-radius: 100px;
  transition: 0.5s ease;
  z-index: -1;
}

.webpro-comprehensive-tax-section
  .webpro-comprehensive-tax-btns
  .webpro-btn:hover::before {
  transform: translateX(0%);
}

.webpro-comprehensive-tax-section
  .webpro-comprehensive-tax-btns
  .webpro-btn.first:hover::before {
  transform: translateX(101%);
}

.webpro-comprehensive-tax-section
  .webpro-comprehensive-tax-btns
  .webpro-btn:hover {
  color: #fff;
}

.webpro-comprehensive-tax-section
  .webpro-comprehensive-tax-btns
  .webpro-btn.first:hover {
  color: var(--brand-color);
}

.webpro-comprehensive-tax-section
  .webpro-comprehensive-tax-btns
  .webpro-btn:hover
  svg
  path {
  stroke: var(--brand-color);
}

/* ⤵⤵ start webpro students reviews section ⤵⤵ */
.webpro-students-reviews-section {
  padding: 60px 0;
  background-color: #fff;
  overflow: hidden;
}

.webpro-students-reviews-section .h2 {
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 36px;
  line-height: 39px;
  letter-spacing: -0.4px;
  color: #000;
  margin-bottom: 22px;
  text-align: center;
}

.webpro-students-reviews-section .p {
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  text-align: center;
  color: #565656;
  margin-bottom: 55px;
}

.webpro-students-reviews-section .webpro-studens-reviews-slider {
  overflow: visible;
}

.webpro-students-reviews-section .webpro-studens-reviews-slider .swiper-slide {
  width: 505px;
}

.webpro-students-reviews-section .webpro-student-review-card {
  box-shadow: 0px 2.56px 7.99px 0px #0000000f;
  border: 1px solid #0568a31a;
  border-radius: 10px;
  background: #ffffff;
  padding: 42px 26px;
}

.webpro-students-reviews-section
  .webpro-student-review-card
  .author-avatar-name {
  display: flex;
  gap: 18.7px;
  align-items: center;
  margin-bottom: 42.5px;
}

.webpro-students-reviews-section
  .webpro-student-review-card
  .author-avatar-name
  .author-avatar {
  width: 69px;
  height: 69px;
  border-radius: 50%;
  overflow: hidden;
}

.webpro-students-reviews-section
  .webpro-student-review-card
  .author-avatar-name
  .author-avatar
  img {
  width: 100%;
}

.webpro-students-reviews-section
  .webpro-student-review-card
  .author-name
  .name {
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 24px;
  line-height: 29.4px;
  color: #181830;
}

.webpro-students-reviews-section .webpro-student-review-card .author-name .job {
  font-weight: 400;
  font-size: 12px;
  line-height: 21px;
  vertical-align: middle;
  color: var(--brand-color);
}

.webpro-students-reviews-section .webpro-student-review-card .review {
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #565656;
  margin-bottom: 18.7px;
}

.webpro-students-reviews-section .webpro-student-review-card .rating {
  display: flex;
  gap: 2.8px;
  align-items: center;
  color: #fcd53f;
  font-size: 16px;
}

/* ⤵⤵ Start webpro result speak section ⤵⤵ */

.webpro-results-speak-secton {
  margin: 58px 0;
  padding: 93px 0px 115px;
  background-image: url(../assets/images/webpro-us-taxation-results-speak-section-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

.webpro-results-speak-secton::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0568a3e5;
}

.webpro-results-speak-secton .webpro-results-speak-content {
  padding: 0px 70px;
  position: relative;
  z-index: 5;
}

.webpro-results-speak-secton .h2 {
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 36px;
  line-height: 39px;
  letter-spacing: -0.4px;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 22px;
  text-align: center;
}

.webpro-results-speak-secton .p {
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  text-align: center;
  color: #fff;
  margin-bottom: 53px;
}

.webpro-results-speak-secton .results-speak-counter {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  min-height: 154px;
}

.webpro-results-speak-secton .middle-line {
  width: 2.8px;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 0%,
    #ffffff 50.48%,
    rgba(255, 255, 255, 0) 100%
  );
}

.webpro-results-speak-secton .counter-item {
  width: 281.2px;
  height: 118px;
  align-self: center;
}

.webpro-results-speak-secton .title {
  font-family: var(--outfit);
  font-weight: 700;
  font-size: 74px;
  line-height: 100%;
  text-align: center;
  color: #fff;
  margin-bottom: 11px;
}

.webpro-results-speak-secton .subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  text-align: center;
  color: #fff;
}

/* ⤵⤵ WebPro Faq Section Start ⤵⤵ */
.webpro-faq-section {
  background-color: #fff;
  padding: 65px 0 60px;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.webpro-faq-section .h6 {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
  color: var(--brand-color);
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  justify-content: center;
}

.webpro-faq-section .h2 {
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 36px;
  line-height: 39px;
  letter-spacing: -0.4px;
  color: #000000;
  margin-bottom: 18px;
  text-align: center;
  padding-top: 2px;
}

.webpro-faq-section .p {
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #565656;
  text-align: center;
  margin-bottom: 47px;
}

.webpro-faq-section .faq-accordion {
  padding: 0 0px;
}

.webpro-faq-section div#accordionExample {
  display: flex;
  flex-direction: column;
  gap: 42.7px;
}

.webpro-faq-section .accordion-item {
  border: 1.7px solid #dedede !important;
  border-radius: 20px !important;
  overflow: hidden;
  padding: 0 0 40px 0;
  position: relative;
}

.webpro-faq-section .accordion-item:has(.accordion-collapse.show) {
  border-color: var(--brand-color) !important;
}

.webpro-faq-section .accordion-button {
  padding: 41px 41px 4px;
  font-family: var(--outfit);
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0.15px;
  color: #130502;
  position: unset;
}

.webpro-faq-section .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--brand-color);
  box-shadow: none;
}

.webpro-faq-section .accordion-button::after {
  background-image: url("../assets/svg/webpro-faq-accordion-open-icon.svg");
  width: 35px;
  height: 35px;
  background-size: 35px;
  position: absolute;
  top: calc(50% - 17px);
  right: 42px;
}

.webpro-faq-section .accordion-button:not(.collapsed)::after {
  background-image: url(../assets/svg/webpro-faq-accordion-close-icon.svg);
  transform: none;
}

.webpro-faq-section .accordion-body {
  padding: 17px 41px 0;
}

.webpro-faq-section .accordion-body p {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #565656;
  padding-right: 40px;
}

.webpro-faq-section .accordion-button:focus {
  box-shadow: none;
}
/* footer */
.webpro-footer-section {
  margin-top: 62px;
  padding-top: 25px;
  background-color: var(--brand-color);
}

.webpro-footer-section .top-section {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.webpro-footer-section .footer-top {
  padding-bottom: 77px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.webpro-footer-section .footer-top .left-side {
  width: 39.5%;
  display: flex;
  flex-direction: column;
  gap: 21px;
  padding-top: 30px;
  padding-left: 2px;
}

.webpro-footer-section .footer-top .left-side .footor-logo {
  width: 191px;
  margin-bottom: 3px;
}

.webpro-footer-section .footer-top .left-side .footor-logo img {
  width: 100%;
}

.webpro-footer-section .footer-top .left-side p {
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #ffffff;
  margin-bottom: 2px;
}

.webpro-footer-section .footer-top .left-side h6 {
  font-family: var(--outfit);
  font-weight: 700;
  font-size: 22px;
  line-height: 21.33px;
  color: #ffffff;
}

.webpro-footer-section .footer-top .left-side .icons {
  display: flex;
  gap: 17px;
}

.webpro-footer-section .footer-top .left-side .icons .icon {
  width: 39px;
  height: 39px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding-top: 2px;
  transition: 0.3s ease;
}

.webpro-footer-section .footer-top .left-side .icons .icon:hover {
  background-color: transparent;
}

.webpro-footer-section .footer-top .left-side .icons .icon:hover i {
  color: #fff;
}

.webpro-footer-section .footer-top .left-side .icons .icon i {
  color: var(--brand-color);
  font-size: 24px;
}

.webpro-footer-section .footer-top .middle-side {
  width: 164px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding-top: 2px;
}

.webpro-footer-section .footer-top .middle-side h6 {
  font-family: var(--outfit);
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  color: #fff;
  margin-bottom: 7px;
}

.webpro-footer-section .footer-top .middle-side .link {
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #fff;
  text-decoration: none;
  display: block;
  width: fit-content;
  position: relative;
  padding-bottom: 5px;
  transition: 0.5s ease;
}

.webpro-footer-section .footer-top .middle-side .link:hover {
  color: rgba(255, 255, 255, 0.7);
}

.webpro-footer-section .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;
}

.webpro-footer-section .responsive {
  display: none;
}

.webpro-footer-section .footer-top .middle-side .link:hover::before {
  width: 100%;
}

.webpro-footer-section .footer-top .right-side {
  width: 42%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 37px;
}

.webpro-footer-section .footer-top .right-side .contact h4 {
  font-family: var(--outfit);
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  color: #fff;
  margin-bottom: 9px;
}

.webpro-footer-section .footer-top .right-side .contact p {
  font-family: var(--DM-Sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.06px;
  color: #fff;
  padding-top: 4px;
}

.webpro-footer-section .footer-top .right-side .form {
  display: flex;
  gap: 11px;
  justify-content: space-between;
  padding-top: 0px;
}

.webpro-footer-section .footer-top .right-side .form #news-email {
  background: #03477082;
  border-radius: 82px;
  padding: 19px 5px 20px 40px;
  outline: none;
  border: none;
  height: 61px;
  color: #fff;
  font-family: var(--DM-Sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  width: 78%;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.webpro-footer-section .footer-top .right-side .form #news-email::placeholder {
  color: #ffffffb2;
}

.webpro-footer-section .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);
}

.webpro-footer-section .footer-top .right-side .form .news-btn {
  background: #fff;
  border-radius: 80.67px;
  width: 132px;
  padding: 21px 0;
  border: none;
  outline: none;
  font-family: var(--DM-Sans);
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  color: var(--brand-color);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, background 0.3s ease;
}

.webpro-footer-section .footer-top .right-side .form .news-btn::after {
  content: "";
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 1;
  transition: left 0.4s ease;
}

.webpro-footer-section .footer-top .right-side .form .news-btn span {
  position: relative;
  z-index: 2;
  color: var(--brand-color);
}

.webpro-footer-section .footer-top .right-side .form .news-btn:hover::after {
  left: 0;
}

.webpro-footer-section .footer-top .right-side .form .news-btn:hover {
  background-color: var(--brand-color);
  color: #fff;
}

.webpro-footer-section .footer-top .right-side .whatsapp a {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #fff;
  background-color: transparent;
  border: 1px solid #ffffff73;
  width: fit-content;
  height: 62px;
  border-radius: 50px;
  padding: 6px 12px 6px 9px;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
}

.webpro-footer-section .footer-top .right-side .whatsapp a::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  width: 30px;
  left: 13px;
  top: 15px;
  height: 30px;
  transition: 0.5s ease;
  z-index: 0;
  border-radius: 50px;
}

.webpro-footer-section .footer-top .right-side .whatsapp a:hover::before {
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
}

.webpro-footer-section .footer-top .right-side .whatsapp a:hover {
  color: var(--brand-color);
}

.webpro-footer-section .footer-top .right-side .whatsapp a > * {
  position: relative;
  z-index: 1;
}

.webpro-footer-section .footer-top .right-side .whatsapp a .icon {
  background-color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.webpro-footer-section .footer-top .right-side .whatsapp a .icon img {
  width: 100%;
  border-radius: 50%;
}

.webpro-footer-section .footer-bottom {
  background-color: #fff;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.webpro-footer-section .footer-bottom .content {
  padding: 30px 1px 30px 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.webpro-footer-section .footer-bottom .content .copyright {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #000000;
  text-align: center;
}

.webpro-footer-section .footer-bottom .content .privacy-terms {
  display: flex;
  gap: 88px;
}

.webpro-footer-section .footer-bottom .content .privacy-terms a {
  display: block;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #000000;
  position: relative;
  width: fit-content;
  padding-bottom: 3px;
}

.webpro-footer-section .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;
}

.webpro-footer-section .footer-bottom .content .privacy-terms a:hover::before {
  width: 100%;
}

/* Icon */
.webpro-whatsapp-float-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.webpro-whatsapp-float-container .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;
}

.webpro-whatsapp-float-container .whatsapp-float.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.webpro-whatsapp-float-container .whatsapp-float img {
  width: 100%;
  display: block;
}

.webpro-whatsapp-float-container .whatsapp-float.show::before {
  opacity: 1;
}

.webpro-whatsapp-float-container .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);
}

.webpro-whatsapp-float-container .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;
}

.webpro-whatsapp-float-container .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);
}

.webpro-whatsapp-float-container .whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

@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);
  }
}

@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);
  }
}

@media (max-width: 1800px) {
  .webpro-faq-section .accordion-button {
    position: relative;
  }

  .webpro-faq-section .accordion-button::after {
    top: unset;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 1700px) {
  .banner-div .webpro-banner-left-side .top-content {
    gap: 38px;
  }

  .banner-div .webpro-banner-left-side .second-p,
  .banner-div .webpro-banner-left-side .third-p {
    font-size: 21px;
    line-height: 30px;
  }

  .webpro-learn-skills-section .webpro-learn-skills-card.card-4 {
    padding: 50px 41px;
  }

  .webpro-h2-same {
    font-size: 34px !important;
    line-height: 110% !important;
  }

  .webpro-p-tag-same {
    font-size: 17px !important;
    line-height: 130% !important;
  }

  .mrjin-22 {
    margin-bottom: 20px !important;
  }

  .mrjin-55 {
    margin-bottom: 48px !important;
  }

  .webpro-results-speak-secton .title {
    font-size: 70px;
  }
  .webpro-faq-section div#accordionExample {
    gap: 38px;
  }
}

@media (max-width: 1600px) {
  .header .webpro-nav-links ul.main-ul {
    gap: 25px;
    padding: 0 5px;
  }

  .header .webpro-nav {
    gap: 20px;
  }

  .header .find-talent {
    padding: 9.5px 20px;
  }

  .banner-div .webpro-banner-left-side .trust-badge-div {
    flex-direction: column;
    gap: 22px;
    width: 50%;
  }

  .banner-div .webpro-banner-left-side .top-content {
    margin: 0;
  }

  .banner-div .webpro-banner-left-side .bottom-content {
    display: none;
  }

  .banner-div .webpro-banner-badgs-hiden-content {
    display: flex;
    justify-content: space-between;
  }

  .banner-div .webpro-banner-badgs-hiden-content .bottom-content {
    padding: 0;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    width: 50%;
    transform: translateY(-20px);
  }

  .banner-div .webpro-banner-badgs-hiden-content .bottom-content .btns-tag {
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    align-items: center;
  }

  .banner-div
    .webpro-banner-badgs-hiden-content
    .bottom-content
    .btns-tag
    .btns-div {
    display: flex;
    gap: 12px;
    flex-direction: column;
    margin-bottom: 0;
  }

  .webpro-key-lessons-section .webpro-key-lessons-card .title {
    font-size: 22px;
    line-height: 26px;
    padding: 20px;
    font-weight: 600;
  }

  .webpro-upwork-vs-fiverr-section
    .webpro-upwork-vs-fiverr-section
    .absolute-arrow {
    left: 80px;
  }
}

@media (max-width: 1500px) {
  .webpro-footer-section .footer-top {
    padding-bottom: 40px;
  }
}

@media (max-width: 1400px) {
  .banner-div .webpro-banner-left-side .top-content {
    gap: 34px;
  }

  .banner-div .webpro-banner-left-side .second-p,
  .banner-div .webpro-banner-left-side .third-p {
    font-size: 20px;
    line-height: 28px;
  }

  .webpro-h2-same {
    font-size: 30px !important;
  }

  .mrjin-22 {
    margin-bottom: 18px !important;
  }

  .mrjin-55 {
    margin-bottom: 42px !important;
  }

  .webpro-results-speak-secton .title {
    font-size: 66px;
  }

  .webpro-top-section {
    padding: 30px 0 40px;
    margin-bottom: 35px;
  }

  /* ⤵⤵ start webpro banner section ⤵⤵ */
  .banner-div {
    padding-top: 50px;
    height: auto;
  }

  .banner-div .webpro-banner-left-side .trust-badge-div {
    flex-direction: row;
    width: 100%;
    gap: 10px;
  }

  .banner-div .webpro-banner-left-side .bottom-content {
    display: flex;
    margin-top: 22px;
    padding: 0;
    align-items: center;
  }

  .banner-div .webpro-banner-badgs-hiden-content .bottom-content {
    display: none !important;
  }

  .banner-div .webpro-banner-left-side .btns-tag .btns-div {
    flex-direction: column;
    gap: 10px;
  }

  /* ⤵⤵ start webpro key lessons section ⤵ */
  .webpro-key-lessons-section {
    padding: 35px 15px;
  }

  /* ⤵⤵ start webpro fiverr vs upwork section ⤵⤵ */
  .webpro-freelance-skills-pay-section {
    padding: 35px 15px;
  }

  .webpro-upwork-vs-fiverr-section {
    margin: 35px 0;
    padding: 50px 15px 30px;
  }

  .webpro-upwork-vs-fiverr-section .webpro-fiverr-upwork-text-content {
    padding: 20px 20px 0;
  }

  /* ⤵⤵ start webpro Learn skills section ⤵⤵ */
  .webpro-learn-skills-section {
    padding: 35px 15px;
  }

  /* ⤵⤵ start webpro comprehensive tax section ⤵⤵ */
  .webpro-comprehensive-tax-section {
    padding: 35px 15px;
  }

  /* ⤵⤵ start webpro students reviews section ⤵⤵ */
  .webpro-students-reviews-section {
    padding: 35px 15px;
  }

  /* ⤵⤵ Start webpro result speak section ⤵⤵ */
  .webpro-results-speak-secton {
    margin: 35px 0;
    padding: 80px 15px;
  }

  /* ⤵⤵ WebPro Faq Section Start ⤵⤵ */
  .webpro-faq-section .p {
    width: 100%;
  }

  .webpro-faq-section {
    padding: 35px 0;
  }
  .webpro-faq-section .accordion-button {
    padding: 20px 20px 0px;
    font-size: 22px;
    line-height: 120%;
  }

  .webpro-faq-section .accordion-body {
    padding: 10px 20px 0;
  }

  .webpro-faq-section .accordion-item {
    padding-bottom: 20px;
  }

  .webpro-faq-section .accordion-body p {
    padding-right: 60px;
  }

  .webpro-faq-section div#accordionExample {
    gap: 34px;
  }

  /* ⤵⤵ Start webpro footer section ⤵⤵ */
  .webpro-footer-section {
    margin-top: 35px;
  }
}

@media (max-width: 1200px) {
  .banner-div .webpro-banner-left-side .top-content {
    gap: 30px;
  }
  .banner-div .webpro-banner-left-side .second-p,
  .banner-div .webpro-banner-left-side .third-p {
    font-size: 19px;
    line-height: 26px;
  }

  .mrjin-22 {
    margin-bottom: 16px !important;
  }

  .mrjin-55 {
    margin-bottom: 36px !important;
  }

  .webpro-results-speak-secton .title {
    font-size: 60px;
  }

  .banner-div .banner-course-include-card .content {
    padding: 0 15px;
    margin-bottom: 20px;
  }
  .banner-div .banner-course-include-card .enroll-btn-div {
    padding: 0 15px 0 15px;
  }
  .banner-div .banner-course-include-card .enroll-btn-div a {
    padding: 10px;
  }
  .banner-div
    .webpro-banner-left-side
    .trusted-column
    .trust-badge:first-child {
    margin-bottom: 30px;
  }

  .banner-div .webpro-banner-left-side .btns-tag .webpro-btn {
    gap: 10px;
    padding: 10px 12px;
  }

  .webpro-key-lessons-section .webpro-key-lessons-card {
    width: calc((100% - 30px) / 2);
  }
  .webpro-freelance-skills-pay-counter {
    flex-wrap: wrap;
    gap: 10px;
  }

  .webpro-freelance-skills-pay-counter .webpro-counter-card {
    min-height: 100px;
    width: calc((100% - 10px) / 2);
    padding: 17px 5px;
  }

  .webpro-freelance-skills-pay-section .content {
    gap: 10px;
  }

  .webpro-upwork-vs-fiverr-section .absolute-arrow {
    left: 0px;
  }

  .webpro-learn-skills-section .webpro-learn-skills-card,
  .webpro-learn-skills-section .webpro-learn-skills-card.card-4,
  .webpro-learn-skills-section .webpro-learn-skills-card.card-5,
  .webpro-learn-skills-section .webpro-learn-skills-lastcard {
    width: calc((100% - 22px) / 2);
    padding: 30px 40px;
  }

  .webpro-learn-skills-section .webpro-learn-skills-lastcard .tag {
    top: -85px;
    right: -40px;
  }

  .webpro-comprehensive-tax-section .webpro-comprehensive-tax-card-container {
    margin-bottom: 30px;
    gap: 25px;
  }

  .webpro-comprehensive-tax-section .webpro-comprehensive-tax-card .icon-list {
    gap: 50px;
  }

  .webpro-comprehensive-tax-section .webpro-comprehensive-tax-card {
    padding: 30px;
  }

  .webpro-comprehensive-tax-section .webpro-comprehensive-tax-card .subtitle {
    margin-bottom: 25px;
  }

  .webpro-comprehensive-tax-section
    .webpro-comprehensive-tax-card
    .icon-list
    p:not(:last-child) {
    margin-bottom: 10px;
  }

  .webpro-students-reviews-section
    .webpro-studens-reviews-slider
    .swiper-slide {
    width: 500px;
  }

  .webpro-students-reviews-section .webpro-student-review-card {
    padding: 30px 20px;
  }

  .webpro-students-reviews-section
    .webpro-student-review-card
    .author-avatar-name {
    margin-bottom: 30px;
  }

  .webpro-results-speak-secton .webpro-results-speak-content {
    padding: 0;
  }

  .webpro-faq-section .accordion-button::after {
    width: 40px;
    height: 40px;
    background-size: 30px;
    right: 20px;
    top: 20px;
  }

  .webpro-faq-section .accordion-body p {
    padding: 0;
  }
  .webpro-faq-section div#accordionExample {
    gap: 30px;
  }
  .webpro-footer-section .footer-top {
    flex-wrap: wrap;
    row-gap: 20px;
  }

  .webpro-footer-section .footer-top .left-side {
    width: 70%;
    padding-top: 0;
    gap: 10px;
  }

  .webpro-footer-section .footer-top .right-side {
    width: 100%;
    padding-top: 0;
  }
  .webpro-footer-section .footer-top .middle-side {
    gap: 10px;
  }
}

@media (max-width: 992px) {
  .webpro-top-section {
    padding: 20px 0 20px;
    margin-bottom: 25px;
  }

  /* ⤵⤵ start header section ⤵⤵ */
  .header .webpro-nav {
    padding: 0;
    border-radius: 5px;
  }

  .header .webpro-nav-links,
  .header .header-btn {
    display: none !important;
  }

  .header .mobile-toggle {
    display: block;
  }

  .banner-div .webpro-banner-left-side .top-content {
    gap: 26px;
  }
  .banner-div .webpro-banner-left-side .second-p,
  .banner-div .webpro-banner-left-side .third-p {
    font-size: 18px;
    line-height: 24px;
  }

  .webpro-h2-same {
    font-size: 28px !important;
  }

  .webpro-p-tag-same {
    font-size: 16px !important;
  }

  .mrjin-22 {
    margin-bottom: 14px !important;
  }

  .mrjin-55 {
    margin-bottom: 30px !important;
  }
  .webpro-banner-div .webpro-banner-content h2 span {
    font-weight: 500;
  }
  .webpro-results-speak-secton .title {
    font-size: 55px;
  }

  .webpro-key-lessons-section {
    padding: 25px 15px;
  }

  .webpro-freelance-skills-pay-section {
    padding: 25px 15px;
  }

  .webpro-upwork-vs-fiverr-section {
    margin: 25px 0;
    padding: 30px 15px 20px;
  }

  .webpro-learn-skills-section {
    padding: 25px 15px;
  }

  .webpro-comprehensive-tax-section {
    padding: 25px 15px;
  }

  .webpro-students-reviews-section {
    padding: 25px 15px;
  }

  .webpro-results-speak-secton {
    margin: 25px 0;
    padding: 50px 15px;
  }

  .banner-div {
    flex-direction: column;
  }

  .banner-div .webpro-banner-left-side {
    width: 100%;
  }

  .banner-div .webpro-banner-right-side {
    width: 100%;
  }

  .webpro-freelance-skills-pay-section .content {
    flex-direction: column;
  }

  .webpro-freelance-skills-pay-section .text {
    width: 100%;
  }

  .webpro-freelance-skills-pay-counter {
    width: 100%;
  }

  .webpro-freelance-skills-pay-counter .webpro-counter-card {
    width: calc((100% - 20px * 2) / 3);
    border-radius: 15px;
  }

  .webpro-upwork-vs-fiverr-section .absolute-arrow {
    top: -20px;
    left: -40px;
  }

  .webpro-upwork-vs-fiverr-section .absolute-arrow img {
    width: 60%;
  }

  .webpro-upwork-vs-fiverr-section .search-bar {
    width: 80%;
    margin-right: 20px;
  }

  .webpro-upwork-vs-fiverr-section .content {
    flex-wrap: wrap;
    padding-top: 25px;
    gap: 25px;
  }

  .webpro-upwork-vs-fiverr-section .webpro-fiverr-side,
  .webpro-upwork-vs-fiverr-section .webpro-upwork-side {
    width: 100%;
    flex: unset;
  }

  .webpro-learn-skills-section .content {
    gap: 15px;
  }

  .webpro-learn-skills-section .webpro-learn-skills-card,
  .webpro-learn-skills-section .webpro-learn-skills-card.card-4,
  .webpro-learn-skills-section .webpro-learn-skills-card.card-5,
  .webpro-learn-skills-section .webpro-learn-skills-lastcard {
    padding: 30px 20px;
    width: calc((100% - 15px) / 2);
  }
  .webpro-learn-skills-section .webpro-learn-skills-lastcard .tag {
    width: 150px;
    top: -80px;
    right: -40px;
  }
  .webpro-learn-skills-section .webpro-learn-skills-lastcard .title {
    padding-right: 10%;
    font-size: 19px;
    line-height: 120%;
  }
  .webpro-learn-skills-section .webpro-learn-skills-lastcard .subtitle {
    font-size: 14px;
  }
  .webpro-learn-skills-section .webpro-learn-skills-card .icon {
    margin-bottom: 22px;
  }
  .webpro-comprehensive-tax-section .webpro-comprehensive-tax-card:hover {
    transform: none;
    scale: 1;
  }
  .webpro-comprehensive-tax-section .webpro-comprehensive-tax-card .icon-list {
    gap: 20px;
  }

  .webpro-comprehensive-tax-section
    .webpro-comprehensive-tax-card
    .icon-list
    p {
    line-height: 110%;
  }

  .webpro-results-speak-secton .subtitle {
    font-size: 16px;
  }

  .webpro-faq-section {
    padding: 25px 0;
  }

  .webpro-faq-section .accordion-button {
    font-size: 20px;
  }

  .webpro-faq-section .accordion-button::after {
    width: 25px;
    height: 25px;
    background-size: 25px;
  }

  .webpro-faq-section div#accordionExample {
    gap: 28px;
  }

  .webpro-faq-section .accordion-body p {
    font-size: 16px;
  }
  .webpro-footer-section {
    margin-top: 25px;
    padding-top: 25px;
  }

  .webpro-footer-section .footer-top {
    padding-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .webpro-h2-same {
    font-size: 27px !important;
  }

  .mrjin-22 {
    margin-bottom: 12px !important;
  }

  .mrjin-55 {
    margin-bottom: 24px !important;
  }

  .webpro-results-speak-secton .title {
    font-size: 48px;
  }

  .header .webpro-logo img {
    width: 80%;
  }

  .banner-div .webpro-banner-left-side .top-content {
    gap: 22px;
  }

  .banner-div .webpro-banner-left-side .second-p,
  .banner-div .webpro-banner-left-side .third-p {
    font-size: 17px;
    line-height: 22px;
  }

  .banner-div {
    padding-top: 30px;
  }

  .banner-div .webpro-banner-left-side .trust-badge-div {
    flex-direction: column;
    gap: 15px;
  }

  .banner-div
    .webpro-banner-left-side
    .trusted-column
    .trust-badge:first-child {
    margin-bottom: 15px;
    height: unset;
  }

  .banner-div .webpro-banner-left-side .bottom-content {
    justify-content: center;
    flex-direction: column;
    gap: 20px;
  }

  .banner-div .webpro-banner-left-side .btns-tag .btns-div {
    margin-bottom: 0;
    align-items: center;
  }

  .banner-div .webpro-banner-left-side .bottom-content .btns-tag {
    display: flex;
    flex-direction: column-reverse;
    width: 80%;
    gap: 10px;
  }

  .banner-div .webpro-banner-left-side .bottom-content .tag {
    align-self: center;
  }

  .webpro-key-lessons-section .webpro-key-lessons-content {
    gap: 20px;
  }

  .webpro-key-lessons-section .webpro-key-lessons-card:hover {
    transform: none;
    scale: 1;
  }
  .banner-div .banner-course-include-card {
    border-radius: 15px;
  }
  .webpro-key-lessons-section .webpro-key-lessons-card {
    border-radius: 6px;
  }
  .webpro-key-lessons-section .webpro-key-lessons-card .card-video {
    border-radius: 4px;
  }

  .webpro-key-lessons-section .webpro-key-lessons-card .title {
    font-size: 20px;
    line-height: 22px;
    padding: 15px;
    font-weight: 400;
  }
  .webpro-key-lessons-section .webpro-key-lessons-card .loading-spinner {
    top: 50%;
    left: 50%;
    width: 36px;
    height: 36px;
    margin: -18px 0 0 -18px;
  }

  .webpro-key-lessons-section .webpro-key-lessons-card .loading-spinner::after {
    top: calc(50% - 23px);
    left: calc(50% - 23px);
    width: 46px;
    height: 46px;
  }
  .video-popup .close-popup {
    font-size: 16px;
    width: 30px;
    height: 30px;
  }

  .webpro-freelance-skills-pay-section .webpro-freelance-skills-pay-counter {
    width: 100%;
  }

  .webpro-upwork-vs-fiverr-section .absolute-arrow {
    display: none;
  }

  .webpro-upwork-vs-fiverr-section .search-bar {
    width: 100%;
    margin-right: auto;
  }

  .webpro-learn-skills-section .webpro-learn-skills-card,
  .webpro-learn-skills-section .webpro-learn-skills-card.card-4,
  .webpro-learn-skills-section .webpro-learn-skills-card.card-5,
  .webpro-learn-skills-section .webpro-learn-skills-lastcard {
    width: 100%;
    padding: 20px;
  }

  .webpro-learn-skills-section .webpro-learn-skills-card:hover,
  .webpro-learn-skills-section .webpro-learn-skills-lastcard:hover {
    scale: 1;
    transform: unset;
  }

  .webpro-learn-skills-section .webpro-learn-skills-card .title {
    font-size: 19px;
    line-height: 24px;
  }

  .webpro-learn-skills-section .webpro-learn-skills-card .subtitle {
    font-size: 14px;
    line-height: 20px;
  }
  .webpro-comprehensive-tax-section .webpro-comprehensive-tax-card-container {
    gap: 15px;
  }
  .webpro-comprehensive-tax-section .webpro-comprehensive-tax-card .title {
    font-size: 20px;
    line-height: 110%;
    margin-bottom: 6px;
  }

  .webpro-comprehensive-tax-section .webpro-comprehensive-tax-card .subtitle {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .webpro-comprehensive-tax-section .webpro-comprehensive-tax-card {
    padding: 15px;
  }

  .webpro-comprehensive-tax-section .webpro-comprehensive-tax-card .icon-list {
    flex-direction: column;
    gap: 10px;
  }

  .webpro-comprehensive-tax-section
    .webpro-comprehensive-tax-card
    .icon-list
    p {
    font-size: 12px;
  }
  .webpro-comprehensive-tax-section .webpro-comprehensive-tax-btns {
    flex-wrap: wrap;
  }

  .webpro-comprehensive-tax-section .webpro-comprehensive-tax-btns .webpro-btn {
    width: 100%;
    width: 90%;
    justify-self: center;
  }

  .webpro-students-reviews-section
    .webpro-studens-reviews-slider
    .swiper-slide {
    width: 320px;
  }

  .webpro-students-reviews-section .webpro-student-review-card {
    padding: 15px;
  }

  .webpro-students-reviews-section
    .webpro-student-review-card
    .author-avatar-name {
    margin-bottom: 20px;
    gap: 15px;
  }

  .webpro-students-reviews-section
    .webpro-student-review-card
    .author-name
    .name {
    font-size: 20px;
    line-height: 110%;
  }

  .webpro-students-reviews-section
    .webpro-student-review-card
    .author-name
    .job {
    font-size: 10px;
  }
  .webpro-students-reviews-section
    .webpro-student-review-card
    .author-avatar-name
    .author-avatar {
    width: 50px;
    height: 50px;
  }

  .webpro-students-reviews-section .webpro-student-review-card .review {
    font-size: 16px;
    line-height: 110%;
    margin-bottom: 15px;
  }
  .webpro-students-reviews-section .webpro-student-review-card .rating {
    font-size: 14px;
  }
  .webpro-results-speak-secton .results-speak-counter {
    flex-direction: column;
    align-items: center;
  }

  .webpro-results-speak-secton .counter-item {
    width: 100%;
  }

  .webpro-results-speak-secton .middle-line {
    width: 60%;
    height: 3px;
    background: linear-gradient(
      100deg,
      rgba(255, 255, 255, 0) 0%,
      #ffffff 50.48%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .webpro-h6-tags-same {
    font-size: 24px !important;
    gap: 12px !important;
    line-height: 100% !important;
  }

  .webpro-h6-tags-same span {
    width: 30px !important;
    height: 25px !important;
  }

  .webpro-h6-tags-same span img {
    width: 100% !important;
  }

  .webpro-faq-section div#accordionExample {
    gap: 24px;
  }
  .webpro-faq-section .accordion-button {
    font-size: 18px;
  }

  .webpro-whatsapp-float-container {
    bottom: 30%;
    right: 25px;
  }

  .webpro-whatsapp-float-container .whatsapp-float {
    width: 56px;
    height: 56px;
  }

  .webpro-whatsapp-float-container .whatsapp-tooltip {
    display: none;
  }
  .webpro-footer-section .footer-top .left-side {
    width: 100%;
  }
  .webpro-footer-section .footer-top {
    gap: 30px;
  }
  .webpro-footer-section .footer-top .middle-side {
    width: 100%;
    gap: 10px;
  }
  .webpro-footer-section .footer-top .middle-side .link {
    display: none;
  }

  .webpro-footer-section .footer-top .middle-side .responsive {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
    row-gap: 5px;
  }

  .webpro-footer-section .footer-top .middle-side .responsive .link {
    display: block;
  }

  .webpro-footer-section .footer-top .right-side .form {
    flex-direction: column;
  }

  .webpro-footer-section .footer-top .right-side .form #news-email {
    width: 100%;
  }

  .webpro-footer-section .footer-top .right-side .form .news-btn {
    width: 50%;
  }

  .webpro-footer-section .footer-bottom .content {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    justify-content: center;
  }

  .webpro-footer-section .footer-bottom .content .privacy-terms {
    justify-content: space-between;
    gap: 20px;
    width: 80%;
  }
}

@media (max-width: 576px) {
  .banner-div .webpro-banner-left-side .top-content {
    gap: 18px;
  }

  .banner-div .webpro-banner-left-side .second-p,
  .banner-div .webpro-banner-left-side .third-p {
    font-size: 17px;
    line-height: 20px;
  }

  .banner-div
    .webpro-banner-left-side
    .trusted-column
    .trust-badge
    .trust-badge-text {
    width: calc(100% - 5px - 44px);
  }

  .banner-div .webpro-banner-left-side .bottom-content .btns-tag {
    width: 100%;
  }

  .banner-div .banner-course-include-card .enroll-btn-div a {
    height: 50px;
  }

  .webpro-key-lessons-section .webpro-key-lessons-card {
    width: 100%;
  }
  .webpro-success-stories-section .webpro-success-card-video .loading-spinner {
    width: 35px;
    height: 35px;
  }
  .webpro-success-stories-section
    .webpro-success-card-video
    .loading-spinner::after {
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    width: 40px;
    height: 40px;
  }
  .webpro-key-lessons-section .webpro-key-lessons-card .title {
    font-size: 18px;
    line-height: 130%;
  }

  .mrjin-22 {
    margin-bottom: 10px !important;
  }

  .mrjin-55 {
    margin-bottom: 20px !important;
  }

  .webpro-results-speak-secton .title {
    font-size: 40px;
  }

  .webpro-freelance-skills-pay-section .webpro-freelance-skills-pay-counter {
    flex-direction: column;
    align-items: center;
  }

  .webpro-freelance-skills-pay-section
    .webpro-freelance-skills-pay-counter
    .webpro-counter-card {
    width: 100%;
  }

  .webpro-comprehensive-tax-section .webpro-comprehensive-tax-btns .webpro-btn {
    padding: 10px 20px 10px 20px;
    font-size: 16px;
  }

  .webpro-h6-tags-same {
    font-size: 18px !important;
    gap: 10px !important;
  }

  .webpro-h6-tags-same span {
    width: 25px !important;
    height: 25px !important;
  }

  .webpro-faq-section div#accordionExample {
    gap: 20px;
  }

  .webpro-faq-section .accordion-button {
    font-size: 16px;
    padding-right: 40px;
  }
}

@media (max-width: 500px) {
  .webpro-h2-same {
    font-size: 26px !important;
  }
  .webpro-p-tag-same {
    font-size: 15px !important;
  }
}

@media (max-width: 390px) {
  .banner-div .webpro-banner-left-side .top-content {
    gap: 14px;
  }
  .banner-div .webpro-banner-left-side .second-p,
  .banner-div .webpro-banner-left-side .third-p {
    font-size: 16px;
    line-height: 18px;
  }

  .webpro-results-speak-secton .title {
    font-size: 36px;
  }

  .webpro-h6-tags-same span img {
    width: 100% !important;
  }

  .webpro-faq-section div#accordionExample {
    gap: 16px;
  }

  .webpro-faq-section .accordion-button {
    padding: 10px 30px 0 10px;
  }

  .webpro-faq-section .accordion-button::after {
    right: 10px;
    top: 15px;
    width: 30px;
    height: 30px;
    background-size: 20px;
  }

  .webpro-faq-section .accordion-body {
    padding: 10px 10px 0;
  }

  .webpro-faq-section .accordion-body p {
    font-size: 13px;
  }

  .webpro-faq-section .accordion-item {
    padding-bottom: 10px;
    border-radius: 10px !important;
  }
  .webpro-footer-section .footer-bottom .content {
    padding: 10px 0;
  }

  .webpro-footer-section .footer-top .left-side .footor-logo {
    width: 90%;
  }
}
