@import url("./fonts.css");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
  font-family: "Arial Regular", sans-serif;
  font-optical-sizing: auto;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

html {
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

:root {
  --primary: #00df64;
  --yellow: #fce200;
  --secondary: #2c2c2c;
  --black: #000000;
  --text: #2c2c2c99;
  --white: #ffffff;
}

::selection {
  background: var(--primary);
  color: var(--white);
}

body {
  font-family: "Arial Regular", sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  font-weight: 400;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: var(--black);
}

img {
  vertical-align: middle;
}

.p-0 {
  padding: 0 !important;
}

.overflow-hidden {
  overflow: hidden;
}

.container {
  max-width: 144rem;
  margin: 0 auto;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/* Header */
.navbar {
  width: 100%;
  background: var(--white);
  z-index: 999;
  transition: 300ms all linear;
}

.navbar.sticky {
  position: sticky;
  top: 0;
  box-shadow: 0 0 1rem #e1ffec;
}

.navbar .navbar-inner {
  width: 85%;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-duration: 500ms;
}

.navbar .navbar-inner .logo {
  max-width: 12rem;
}

.navbar .navbar-inner .logo img {
  height: 100%;
  width: 100%;
}

.navbar .hamburger {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 3rem;
  border-radius: 0.3rem;
  display: none;
  cursor: pointer;
  z-index: 1000;
}

.navbar .hamburger .bars {
  display: block;
  height: 0.2rem;
  width: 100%;
  background: var(--primary);
  transition: 0.3s all linear;
}

.navbar .hamburger .bars:nth-child(2) {
  margin: 0.5rem 0;
}

.navbar .hamburger.active .bars {
  background: var(--white);
}

.navbar .hamburger.active .bars:nth-child(1) {
  transform: translateY(0.8rem) translateX(0) rotate(45deg);
}

.navbar .hamburger.active .bars:nth-child(2) {
  opacity: 0;
}

.navbar .hamburger.active .bars:nth-child(3) {
  transform: translateY(-0.6rem) translateX(0) rotate(-45deg);
}

.navbar .navigation {
  margin-left: 12rem;
}

.navbar .logo a {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--primary);
}

.navbar .logo .custom-logo-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.navbar .menu {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6rem;
  transition: 300ms all ease-in-out;
}

.navbar .menu .menu-item {
  position: relative;
  display: flex;
}

.navbar .menu .menu-item.button {
  margin-left: 19rem;
}

.navbar .menu .menu-item.button a,
.navbar .menu .menu-item.button.current-menu-item a {
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--white);
  font-family: "Arial Bold", sans-serif;
  padding: 1.5rem 2.5rem;
  letter-spacing: 0.4rem;
  transition: 300ms all ease;
}

.navbar .menu .menu-item.button a:hover {
  background: var(--primary);
  color: var(--black);
}

.navbar .menu .menu-item.button a {
  color: var(--black);
}

.navbar .menu .menu-item:hover a,
.navbar .menu .menu-item.current-menu-item a {
  color: var(--primary);
}

.navbar .menu .menu-item a {
  white-space: nowrap;
  text-decoration: none;
  color: var(--secondary);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  transition: 400ms all ease-in-out;
}

.submenu > .sub-menu {
  position: absolute;
  top: 7rem;
  transform: scaleY(0);
  background: var(--white);
  transform-origin: top center;
  transition: 400ms all ease-in-out;
  z-index: 1;
}

.submenu:hover .sub-menu {
  transform: scaley(1);
}

.submenu > .sub-menu::before,
.submenu > .sub-menu::after {
  content: "";
  position: absolute;
  top: 0;
  border-top: 0.75rem solid var(--white);
  border-left: 1rem solid transparent;
  border-right: 1rem solid transparent;
}

.submenu > .sub-menu::before {
  left: -1rem;
}

.submenu > .sub-menu::after {
  right: -1rem;
}

.submenu > .sub-menu .menu-item {
  padding: 1rem 2rem;
}

.submenu > .sub-menu .menu-item:not(:last-child) {
  border-bottom: 0.1rem solid var(--text);
}

.submenu-submenu {
  position: relative;
}

.submenu-submenu .sub-menu {
  position: absolute;
  right: auto;
  left: 14rem;
  top: 0;
  background: var(--white);
  display: none;
}

.submenu-submenu:hover .sub-menu {
  display: block;
}

/* Footer */
.footer {
  background: #00df6414;
  color: var(--text);
  font-size: 1.5rem;
}

.footer .footer-inner {
  padding-block: 4.8rem;
}

.footer .widgets-wrapper {
  width: 85%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.wp-block-heading,
.widget-title {
  color: var(--secondary);
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
  display: none;
}

.footer .footer-inner .widgets-wrapper .panel {
  width: 33.33%;
}

.footer .footer-inner .widgets-wrapper .panel.widget_1 .wp-block-heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
}

.footer .footer-inner .widgets-wrapper .panel.widget_1 {
  display: flex;
  gap: 2rem;
}

.footer .footer-inner .widgets-wrapper .panel.widget_1 img {
  max-width: 12rem;
  margin-bottom: 1rem; 
  mix-blend-mode: color-burn;
}

.footer .footer-inner .widgets-wrapper .panel.widget_1 p {
  max-width: 30rem;
}

.footer .footer-inner .widgets-wrapper .panel.widget_2 {
  display: flex;
  justify-content: center;
}

.footer .copyright-statement .widget {
  width: 85%;
  margin: 0 auto;
  border-top: 0.1rem solid #2c2c2c26;
  padding-block: 4.8rem;
}

.footer .copyright-statement .menu {
  display: flex;
}

.footer a {
  color: var(--text);
  transition: 300ms all ease-in-out;
}

.footer a:hover {
  color: var(--black);
}
.footer a:hover {
    text-decoration: none !important;
}
.footer .widgets-wrapper a {
    text-decoration: none !important;
}

    .footer .widgets-wrapper a:hover {
        text-decoration: none !important;
    }
.main-content {
  min-height: calc(100vh - 45rem);
}

.footer .footer-inner .widgets-wrapper .widget_1 .widget_media_image {
  margin-bottom: 1rem;
}

.footer
  .footer-inner
  .widgets-wrapper
  .widget_3
  .widget-container:nth-child(2) {
  margin-bottom: 1rem;
}

.footer .footer-inner .widgets-wrapper .widget_3 a[href^="mailto:"] {
  background: url("/images/wsh360/mail.svg") no-repeat;
  background-position: left;
  padding-left: 2.5rem;
}

.footer .footer-inner .widgets-wrapper .widget_3 a[href^="tel:"] {
  background: url("/images/wsh360/phone.svg") no-repeat;
  background-position: left;
  padding-left: 2.5rem;
}

/* Error Page */
.error404 .main-content {
  position: relative;
  max-width: 120rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.error404 .main-content .wrapper ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.error404 .main-content .wrapper ul li {
  position: relative;
  list-style: none;
  font-size: 14vw;
  font-weight: 500;
  color: var(--primary);
  animation: scaled 2s linear infinite;
}

.error404 .main-content .wrapper ul li:nth-child(1) {
  animation-delay: 300ms;
}

.error404 .main-content .wrapper ul li:nth-child(2) {
  animation-delay: 600ms;
}

.error404 .main-content .wrapper ul li:nth-child(3) {
  animation-delay: 900ms;
}

@keyframes scaled {
  50% {
    transform: translateY(-3rem);
  }
}

.error404 .main-content .wrapper p {
  text-align: center;
  font-size: 1.8rem;
  color: var(--black);
}

.error404 .main-content .wrapper p a {
  color: var(--primary);
  font-weight: 500;
}

/* Page Header */
.page-header {
  position: relative;
}

.page-header img {
  width: 100%;
}

.page-header .contents {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  text-align: center;
  color: var(--white);
}

.page-header .contents h1 {
  font-size: 4.8rem;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-header .contents .theme-breadcumb {
  font-size: 1.5rem;
  font-weight: 700;
}

.page-header .contents .theme-breadcumb a {
  color: var(--white);
  font-weight: normal;
  opacity: 80%;
}

/* Teams */
.teams {
  position: relative;
}

.teams .swiper {
  overflow: auto;
}

.teams .swiper::-webkit-scrollbar {
  height: 0;
  width: 0;
}

.teams .team {
  cursor: pointer;
}

.swiper-button-prev,
.swiper-button-next {
  min-height: 8rem;
  min-width: 8rem;
  border-radius: 50%;
  background: #00df6426;
}

.swiper-button-prev {
  left: -8rem !important;
}

.swiper-button-next {
  right: -8rem !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 3rem !important;
  font-weight: bold;
}

.team .card img {
  height: 35rem;
  width: 100%;
  object-fit: cover;
}

.team .card .details {
  margin-top: 3.5rem;
  padding: 3rem 0;
  background: #00df6426;
  text-align: center;
}

.team .card .details h3 {
  color: #000000de;
}

.team .card .details p {
  font-size: 1.5rem;
  color: #000000de;
}

/* Team Modal */
body.backdrop::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #00000061;
  z-index: 1000;
}

.team-modal {
  position: fixed;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 122rem;
  width: 100%;
  margin: 0 auto;
  background: var(--white);
  z-index: 1100;
}

.team-modal .modal-content-wrapper {
  max-height: calc(100vh - 10rem);
  overflow-y: auto;
}

.team-modal .modal-content-wrapper .thumbnail {
  text-align: center;
  width: 25%;
}

.team-modal .modal-content-wrapper .thumbnail img {
  height: auto;
  width: 100%;
}

.team-modal .modal-content-wrapper .info {
  width: 75%;
}

.team-modal .modal-contents {
  position: relative;
}

.team-modal .close-modal {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  background: var(--white);
  border-radius: 50%;
  border: 0;
  outline: 0;
  cursor: pointer;
}

.team-modal .modal-content-wrapper .content-wrapper {
  display: flex;
  padding: 6rem;
  gap: 6rem;
}

.team-modal .modal-content-wrapper .info .designation {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
}

.team-modal .modal-content-wrapper .info h2 {
  font-size: 3.2rem;
  color: #000000de;
}

.team-modal .modal-content-wrapper .info p {
  font-size: 1.5rem;
  color: #00000099;
}

.team-modal .modal-content-wrapper .info p:not(:last-child) {
  margin-bottom: 1.5rem;
}

/* Course */
.course-container {
  width: 85%;
  margin: 5rem auto;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.course-container article {
  width: calc(33.33% - 2.7rem);
}

.course-container .card {
  transition: 500ms all ease-in-out;
}

.course-container .card:hover {
  transform: translateY(-1rem);
}

.course .thumbnail img {
  height: auto;
  width: 100%;
}

.course-container .card .course-info {
  min-height: 19.5rem;
  position: relative;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  box-shadow: 0px 0px 10px 0px #00000014;
  margin-top: -4rem;
}

.course-container .card .course-info .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.5rem;
}

.course-container .card .course-info .row p {
  color: #00000060;
}

.separator {
  border: 0;
  border-bottom: 0.1rem solid #00000026;
}

.course-container .card .card-body {
  padding: 1.5rem 1.5rem 0;
}

.card .card-body h2 {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.course-container .card .card-body h2 a {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: normal;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: 300ms all ease-in-out;
}

.course-container .card .card-body h2 a:hover {
  color: var(--primary);
}

.course-container .card .course-info .row h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
}

.course-container .card .course-info .row img {
  margin-right: 0.8rem;
}

.course-container .card p {
  margin-block: 1rem;
}

.course-container .card .inner {
  height: 100%;
  position: relative;
}

.pagination {
  display: flex;
  justify-content: flex-end;
  font-size: 1.5rem;
  margin-bottom: 4.5rem;
}

.page-numbers {
  min-height: 3rem;
  min-width: 3rem;
  line-height: 3rem;
  text-align: center;
  text-align: center;
  color: #00000099;
}

.page-numbers.current {
  background: var(--primary);
  color: var(--white);
}

/* Detail Page */
.course-detail-wrapper {
  display: flex;
  gap: 6rem;
  max-width: 144rem;
  margin: 0 auto;
}

.course-detail-wrapper.post {
  max-width: 85%;
  margin: 5rem auto;
}

.course-detail-wrapper .card p {
  color: #00000099;
}

.course-detail-wrapper .sidebar p {
  color: #000000bf;
}

.course-detail-wrapper .course-info {
  width: calc(100% - 40rem);
  font-size: 1.5rem;
  color: #00000099;
}

.course-detail-wrapper .sidebar {
  max-width: 40rem;
  width: 100%;
}

.course-detail-wrapper .course-info > img {
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

.course-detail-wrapper .course-info h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.course-detail-wrapper .course-info a:not(a.button) {
  font-weight: 700;
}

.course-detail-wrapper .course-info > ul > li:not(:last-child) {
  margin-bottom: 4rem;
}

.course-detail-wrapper .card {
  padding: 2.5rem;
  box-shadow: 0px 0px 10px 0px #00000014;
}

.course-detail-wrapper .card.shadow-none {
  padding: 0;
  box-shadow: none;
}

.course-detail-wrapper .card > img,
.course-detail-wrapper .card .thumbnail img {
  height: auto;
  width: 100%;
  margin-bottom: 2rem;
}

.course-detail-wrapper .card h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 3.5rem;
}

.archive .course-detail-wrapper .card h3 {
  margin-bottom: 0;
}

.course-detail-wrapper .card p {
  display: flex;
  align-items: center;
}

.course-detail-wrapper.post .card p:not(:last-child) {
  margin-bottom: 4rem;
}

.course-detail-wrapper .card p img {
  margin-right: 1.6rem;
}

.course-detail-wrapper .sidebar {
  max-width: 40rem;
  width: 100%;
}

.course-detail-wrapper .sidebar .button {
  display: block;
  background: var(--yellow);
  text-align: center;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.4rem;
  margin-block: 4rem;
  padding: 1.2rem 0;
  transition: 300ms all ease-in-out;
}

.course-detail-wrapper .sidebar .button:hover {
  background: var(--primary);
}

.course-detail-wrapper .course-info > ul > li ul li {
  background: url("../images/arrow.svg") no-repeat;
  background-position: left;
  padding-left: 3rem;
}

.course-detail-wrapper .course-info > ul > li ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}

.course-detail-wrapper.post a:not(.button) {
    font-weight: 600;
    color: blue;
}

/* Form */
.form .fields {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form .fields .field {
  width: calc(50% - 1rem);
}

.form .fields .field input:not(input[type="radio"]),
.form .field textarea {
  border: 0;
  background: #00df6414;
  width: 100%;
  padding: 1.2rem 2rem;
  font-size: 1.5rem;
}

.form .field textarea {
  height: 10rem;
  resize: vertical;
}

.form .fields .field input:focus,
.form .field textarea:focus {
  outline-color: var(--primary);
}

.form .fields .field select {
  width: 100%;
  min-height: 4rem;
  background: #00df6414 url("../images/triangle.svg") no-repeat;
  color: #00000061;
  background-position: 95% 50%;
  border: 0;
  padding: 1.2rem 2rem;
}

.form .fields .field select:focus {
  outline-color: var(--primary);
}

.form input[type="checkbox"] {
  height: 1.7rem;
  width: 1.7rem;
  border-radius: 0;
  vertical-align: middle;
}

.form input[type="radio"] {
  accent-color: #00ad00;
}

.form label {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000de;
  margin-bottom: 0.5rem;
}

.form label a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0000ff;
}

.form h4 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
}

.form p {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000de;
  margin-bottom: 2rem;
}

.form label:has(input[type="checkbox"]) {
  font-size: 1.5rem;
  color: #000000de;
  font-weight: normal;
}

.submit {
  width: 100%;
  background: var(--yellow);
  color: var(--black);
  border: 0;
  padding: 1.7rem 0;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.4rem;
  margin-top: 1.5rem;
  transition: 300ms all ease-in-out;
  cursor: pointer;
}

.submit:hover {
  background: var(--primary);
  color: var(--black);
}

.form.registration .submit {
  max-width: 34rem;
  display: block;
  margin-top: 2.8rem;
  margin-right: 0;
  margin-left: auto;
}

.form .wpcf7-spinner {
  position: absolute;
  bottom: 1rem;
  right: 0;
}

::placeholder {
  color: #00000061;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  -webkit-appearance: none;
  cursor: pointer;
}

.wpcf7-not-valid-tip {
  font-size: 1.5rem;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
  margin-inline: 0;
}

.wpcf7-not-valid-tip:not(:nth-child(1)):not(:nth-child(2)) {
  display: none;
}

.form.registration .fields .field {
  width: calc(33.33% - 1.4rem);
}

.wpcf7-list-item {
  margin-left: 0;
  margin-right: 3rem;
}

/* Photo Gallery */
#bwg_container1_0
  #bwg_container2_0
  .bwg-container-0.bwg-standard-thumbnails
  .bwg-item1 {
  padding-top: 0 !important;
}

#bwg_container1_0
  #bwg_container2_0
  .bwg-container-0.bwg-standard-thumbnails
  .bwg-item1
  img {
  height: 100% !important;
  width: 100% !important;
}

#bwg_container1_0
  #bwg_container2_0
  .bwg-container-0.bwg-standard-thumbnails
  .bwg-item2 {
  position: static !important;
  margin-top: 0 !important;
  margin-left: 0 !important;
}

.gallery .bwg-container {
  padding: 0 !important;
  width: 100% !important;
  gap: 4rem;
}

.gallery .bwg-container .bwg-item {
  width: calc(33.33% - 2.7rem) !important;
  max-width: unset !important;
}

.button .elementor-button-link:hover {
  background-color: var(--primary) !important;
}

.elementor-image-box-wrapper {
  align-items: center;
}

.elementor-image-box-wrapper .elementor-image-box-img {
  padding-top: 0 !important;
}

.not-found {
  min-height: calc(100vh - 42.6rem); 
  display: flex;
  justify-content: center;
  align-items: center;
}

.not-found p {
  font-size: 1.8rem;
  font-weight: 600;
  color: #f00;
}