@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
html body {
  position: relative;
  z-index: 1;
  overflow-x: hidden;
  touch-action: pan-x pan-y;
}
html body::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
html body::-webkit-scrollbar-thumb {
  background-color: #0b4940;
  border-radius: 50px;
}
html body ul {
  list-style: none;
}
html body a,
html body a:hover,
html body a:visited,
html body a:link {
  text-decoration: none;
  outline: none;
  cursor: pointer;
}
html body article,
html body aside,
html body details,
html body figcaption,
html body figure,
html body footer,
html body header,
html body hgroup,
html body menu,
html body nav,
html body section {
  display: block;
}
html body div, html body body div,
html body span,
html body body span,
html body object,
html body body object,
html body iframe,
html body body iframe,
html body h1,
html body body h1,
html body h2,
html body body h2,
html body h3,
html body body h3,
html body h4,
html body body h4,
html body h5,
html body body h5,
html body h6,
html body body h6,
html body p,
html body body p,
html body blockquote,
html body body blockquote,
html body pre,
html body body pre,
html body abbr,
html body body abbr,
html body address,
html body body address,
html body cite,
html body body cite,
html body code,
html body body code,
html body del,
html body body del,
html body dfn,
html body body dfn,
html body em,
html body body em,
html body img,
html body body img,
html body ins,
html body body ins,
html body kbd,
html body body kbd,
html body q,
html body body q,
html body samp,
html body body samp,
html body small,
html body body small,
html body strong,
html body body strong,
html body sub,
html body body sub,
html body sup,
html body body sup,
html body var,
html body body var,
html body b,
html body body b,
html body i,
html body body i,
html body dl,
html body body dl,
html body dt,
html body body dt,
html body dd,
html body body dd,
html body ol,
html body body ol,
html body ul,
html body body ul,
html body li,
html body body li,
html body fieldset,
html body body fieldset,
html body form,
html body body form,
html body label,
html body body label,
html body legend,
html body body legend,
html body table,
html body body table,
html body caption,
html body body caption,
html body tbody,
html body body tbody,
html body tfoot,
html body body tfoot,
html body thead,
html body body thead,
html body tr,
html body body tr,
html body th,
html body body th,
html body td,
html body body td,
html body article,
html body body article,
html body aside,
html body body aside,
html body canvas,
html body body canvas,
html body details,
html body body details,
html body figcaption,
html body body figcaption,
html body figure,
html body body figure,
html body footer,
html body body footer,
html body header,
html body body header,
html body hgroup,
html body body hgroup,
html body menu,
html body body menu,
html body nav,
html body body nav,
html body section,
html body body section,
html body summary,
html body body summary,
html body time,
html body body time,
html body mark,
html body body mark,
html body audio,
html body body audio,
html body video,
html body body video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: middle;
  background: transparent;
}
html body h1,
html body h2,
html body h3,
html body h4,
html body h5,
html body h6 {
  font-family: inherit;
  font-weight: normal;
}
html body textarea {
  resize: none;
}
html body p {
  line-height: 1.7;
}

.row {
  row-gap: 25px;
}

.nw-header {
  padding-block: 15px;
}
.nw-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 20px;
}
.nw-header .actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nw-header .actions a:not(.nw-btn) {
  color: #0b4940;
  font-weight: 600;
  transition: 0.3s;
}
.nw-header .actions a:not(.nw-btn):hover {
  color: #0b4940;
  text-decoration: underline;
}

.nw-btn {
  height: 31px;
  padding: 0 10px;
  border-radius: 50px;
  border: 1px solid #0b4940;
  background-color: #0b4940;
  color: #fff;
  min-width: 80px;
  font-weight: 600;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 10px;
}
.nw-btn:hover {
  background-color: #fff;
  color: #0b4940;
  border-color: #0b4940;
}
.nw-btn.outline {
  background-color: transparent;
  color: #0b4940;
}
.nw-btn.outline:hover {
  background-color: #0b4940;
  color: #fff;
  border-color: #0b4940;
}
.nw-btn.nw-btn-white {
  background-color: #fff;
  color: #0b4940;
  border-color: #fff;
  font-size: 16px;
}
.nw-btn.nw-btn-white:hover {
  background-color: #0b4940;
  border-color: #0b4940;
  color: #fff;
}

.nw-hero .item {
  position: relative;
  padding-top: 100%;
  background-color: #000;
}
.nw-hero .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  inset: 0;
}
.nw-hero .item .caption {
  position: absolute;
  inset: 0;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.nw-hero .item .caption h1 {
  font-size: 23px;
  font-weight: 700;
  color: #fff;
}
.nw-hero .item .caption p {
  font-size: 10.62px;
  color: #fff;
  margin-bottom: 20px;
}
.nw-hero .item .caption .nw-btn {
  height: 56px;
  min-width: 170px;
}

.swiper-pagination {
  bottom: 24px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 1;
  margin: 0 !important;
  border-radius: 50px;
  transition: 0.3s;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
  width: 15px;
}

.container {
  padding-inline: 30px;
}

.nw-programs {
  padding-block: 30px;
}
.nw-programs .nw-programs-swiper {
  padding-inline: 30px;
}

.nw-main-title {
  margin-bottom: 25px;
}
.nw-main-title h2 {
  font-weight: 700;
  font-size: 18px;
  color: #0b4940;
  text-transform: uppercase;
}
.nw-main-title h4 {
  font-weight: 700;
  font-size: 16px;
  margin-top: 12px;
  color: #0b4940;
}

.nw-program-card {
  padding: 10px;
  border-radius: 10px;
  overflow: hidden;
  text-align: initial;
  border: 1px solid rgba(11, 73, 64, 0.4);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.nw-program-card .labels {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 10px;
}
.nw-program-card .labels span {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(11, 73, 64, 0.4);
  border-radius: 50px;
  height: 17px;
  padding-inline: 14px;
  font-weight: 600;
  font-size: 7px;
}
.nw-program-card .labels span.danger {
  border-color: #b80003;
  background-color: rgba(184, 0, 3, 0.1490196078);
  color: #b80003;
}
.nw-program-card .labels span.success {
  border-color: #00b819;
  background-color: rgba(0, 184, 25, 0.1490196078);
  color: #00b819;
}
.nw-program-card .labels span.warning {
  border-color: #b86800;
  background-color: rgba(184, 104, 0, 0.1490196078);
  color: #b86800;
}
.nw-program-card .img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding-top: 80%;
  margin-bottom: 15px;
}
.nw-program-card .img img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.nw-program-card .img a {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.nw-program-card .date-address {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
  justify-content: space-between;
  border-bottom: 1px solid rgba(11, 73, 64, 0.4);
  padding-bottom: 10px;
}
.nw-program-card .date-address span {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 8px;
}
.nw-program-card .title {
  border-bottom: 1px solid rgba(11, 73, 64, 0.4);
  padding-bottom: 15px;
  flex-grow: 1;
}
.nw-program-card .title a {
  font-size: 13px;
  font-weight: 600;
  color: #0b4940;
}
.nw-program-card .title p {
  margin-top: 7px;
  font-size: 10px;
}
.nw-program-card .author {
  display: flex;
  align-items: center;
  gap: 11.4px;
  padding-block: 15px;
  border-bottom: 1px solid rgba(11, 73, 64, 0.4);
}
.nw-program-card .author .icon {
  width: 31px;
  height: 31px;
  border-radius: 100%;
  overflow: hidden;
}
.nw-program-card .author .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.nw-program-card .author .info h4 {
  font-weight: 700;
  font-size: 10.5px;
}
.nw-program-card .author .info span {
  font-weight: 500;
  font-size: 9px;
}
.nw-program-card .price {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  padding-block: 15px 10px;
}
.nw-program-card .price span {
  font-weight: 700;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  font-size: 26px;
}
.nw-program-card .price span i {
  font-weight: 600;
  font-size: 9px;
  text-transform: uppercase;
  font-style: normal;
  padding-bottom: 8px;
}
.nw-program-card .price .nw-btn {
  font-size: 9.3px;
}

.load-more {
  text-align: center;
  margin-top: 28px;
}

.nw-services {
  padding-block: 30px;
}
.nw-services .nw-services-swiper {
  padding-inline: 30px;
}

.nw-service-card {
  border: 1px solid rgba(11, 73, 64, 0.4);
  padding: 11px;
  border-radius: 11px;
  height: 100%;
}
.nw-service-card .img {
  position: relative;
  overflow: hidden;
  padding-top: 73%;
  border-radius: 11px;
}
.nw-service-card .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  inset: 0;
}
.nw-service-card .img a {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.nw-service-card .info {
  padding-top: 17px;
}
.nw-service-card .info .title {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 7px;
  color: #0b4940;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
.nw-service-card .info p {
  font-size: 10px;
  font-weight: 500;
  margin-bottom: 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  min-height: 68px;
}
.nw-service-card .info div {
  text-align: right;
}
.nw-service-card .info div .btn {
  font-size: 16px;
  min-width: 120px;
  height: 45px;
}

.nw-facilities {
  padding-block: 30px;
}
.nw-facilities .nw-facilities-swiper {
  padding-inline: 30px;
}

.nw-facility-card {
  border-radius: 11px;
  border: 0.29px solid rgba(11, 73, 64, 0.4);
  background-color: #e4f2ee;
  padding: 11.4px;
}
.nw-facility-card .img {
  position: relative;
  overflow: hidden;
  padding-top: 73%;
  border-radius: 9px;
  margin-bottom: 11px;
}
.nw-facility-card .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  inset: 0;
}
.nw-facility-card .img a {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.nw-facility-card .title {
  font-size: 12px;
  font-weight: 700;
  color: #0b4940;
  display: inline-block;
}
.nw-facility-card p {
  padding-block: 6px;
  font-size: 8px;
}
.nw-facility-card .explore {
  text-align: center;
}
.nw-facility-card.layout-list {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nw-facility-card.layout-list .img {
  flex-shrink: 0;
  width: 160px;
  padding-top: 60%;
  margin: 0;
}
.nw-facility-card.layout-list p {
  padding-block-end: 18px;
}
.nw-facility-card.layout-list .explore {
  text-align: initial;
}

.contact-banner {
  background-color: #e4f2ee;
  padding-block: 25px;
}
.contact-banner span {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 0.73px solid rgba(11, 73, 64, 0.2);
  margin-bottom: 18px;
}
.contact-banner h4 {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 11px;
}
.contact-banner p {
  font-size: 11.7px;
  color: rgba(11, 73, 64, 0.8);
  margin-bottom: 18px;
}
.contact-banner .nw-btn {
  border: 0.73px solid rgba(11, 73, 64, 0.2);
  min-width: 135px;
  height: 42px;
  font-size: 11.7px;
}

.nw-subscriptions {
  padding-block: 30px;
}
.nw-subscriptions .nw-subscriptions-swiper {
  padding-inline: 30px;
}

.nw-subscription-card {
  background-color: #e4f2ee;
  border-radius: 8.5px;
  border: 0.21px solid rgba(11, 73, 64, 0.4);
  padding: 8.5px;
}
.nw-subscription-card .labels {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
}
.nw-subscription-card .labels span {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.36px solid #0b4940;
  border-radius: 50px;
  height: 22px;
  padding-inline: 14px;
  font-weight: 600;
  font-size: 9px;
}
.nw-subscription-card .img {
  position: relative;
  overflow: hidden;
  padding-top: 73%;
  border-radius: 14.5px;
  margin-bottom: 17.8px;
}
.nw-subscription-card .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  inset: 0;
}
.nw-subscription-card .img a {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.nw-subscription-card .content a {
  font-size: 9px;
  font-weight: 700;
  color: #0b4940;
  display: inline-block;
}
.nw-subscription-card .content p {
  margin-block: 17.8px 22px;
  font-size: 7.5px;
  position: relative;
  max-height: 3lh;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.nw-subscription-card .content p button {
  position: absolute;
  inset-inline-end: 0;
  inset-block-end: 0;
  border: 0;
  color: inherit;
  text-decoration: underline;
  background: linear-gradient(to right, transparent, #e4f2ee 60%);
  padding-inline: 30px 0;
}
.nw-subscription-card .content p.expanded {
  max-height: none;
}
.nw-subscription-card .btns {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nw-subscription-card .btns .nw-btn {
  width: 100%;
}

.nw-sticky-nav {
  position: fixed;
  bottom: -130px;
  transition: 0.3s;
  left: 0;
  background-color: #e4f2ee;
  border-radius: 20px 20px 0 0;
  width: 100%;
  padding-inline: 30px;
  z-index: 3;
}
.nw-sticky-nav .inner {
  background-color: #0b4940;
  border-radius: 30px 30px 0 0;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  margin-top: -20px;
}
.nw-sticky-nav .inner a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  color: #fff;
  font-size: 10px;
}
.nw-sticky-nav .inner a.home-icon {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: #e4f2ee;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
  margin-top: -75px;
}
.nw-sticky-nav .inner .dropdown .dropdown-toggle {
  padding: 0;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  color: #fff;
  font-size: 10px;
}
.nw-sticky-nav .inner .dropdown .dropdown-toggle img {
  width: 20px;
  height: 20px;
}
.nw-sticky-nav .inner .dropdown .dropdown-toggle::after {
  display: none;
}
.nw-sticky-nav .inner .dropdown .dropdown-menu {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #e4f2ee;
  border-radius: 10px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
  padding: 10px;
  width: 200px;
}
.nw-sticky-nav .inner .dropdown .dropdown-menu a {
  display: block;
  padding: 10px;
  color: #0b4940;
  font-size: 12px;
  border-radius: 5px;
}
[dir=rtl] .nw-sticky-nav .inner .dropdown .dropdown-menu a {
  text-align: right;
}
.nw-sticky-nav .inner .dropdown .dropdown-menu a:hover {
  background-color: #d1e8e1;
}
.nw-sticky-nav.active {
  bottom: 0;
}

main {
  padding-bottom: 100px;
}/*# sourceMappingURL=nw-style.css.map */

/*6-Aug-2025:Amir*/
.nw-programs .program-block {
  padding: 10px;
  border-radius: 10px;
}

.nw-programs .program-block .tags {
  margin-bottom: 10px;
}

.nw-programs .program-block .tags span {
  height: 17px;
  padding-inline: 14px;
  font-weight: 600;
  font-size: 7px;
}

.nw-programs .program-block .img {
  margin-bottom: 15px;
  padding-top: 80%;
  border-radius: 8px;
}

.nw-programs .program-block .date {
  margin-bottom: 15px;
  padding-bottom: 10px;
}

.nw-programs .program-block .date span {
  font-size: 9px;
  gap: 5px;
  align-items: flex-start;
}

.nw-programs .program-block .date span img {
  width: 14px;
  height: 14px;
}

.nw-programs .program-block .title {
  padding-bottom: 15px;
}

.nw-programs .program-block .title a {
  margin-bottom: 7px;
  font-size: 13px;
}

.nw-programs .program-block .title p {
  font-size: 10px;
}

.nw-programs .program-block .author {
  padding-block: 15px;
  gap: 11px;
}

.nw-programs .program-block .author .a-img {
  width: 31px;
  height: 31px;
}

.nw-programs .program-block .author .a-info h4 {
  font-size: 11px;
  margin-bottom: 0 !important;
}

.nw-programs .program-block .author .a-info span {
  font-size: 9px;
}

.nw-programs .program-block .p-footer {
  padding-block: 15px 10px;
  margin: 0;
}

.nw-programs .program-block .p-footer .price {
  font-size: 26px;
  gap: 5px;
}

.nw-programs .program-block .p-footer .price span {
  font-size: 9px;
  padding-bottom: 8px;
}

.nw-programs .program-block .p-footer .btn {
  font-size: 10px;
  height: 31px;
  padding: 0 10px;
  min-width: 80px;
}

.nw-services .swiper-slide {
  padding-bottom: 5px;
}

.nw-subscription-card .content p {
  max-height: none;
}

.nw-subscription-card .gform_wrapper.gform-theme {
  padding: 0;
  margin: 0 !important;
}

.nw-subscription-card .gform_wrapper.gform-theme form {
  max-width: 100%;
  padding: 0;
  border: 0;
  margin: 0;
}

.nw-subscription-card .gform_wrapper.gform-theme form .gform-body.gform_body {
  margin-bottom: 10px;
}

.nw-subscription-card .gform_wrapper.gform-theme form .gform-footer {
  margin: 0;
  border: 0;
  padding: 0;
}

.nw-subscription-card
.gform_wrapper.gform-theme
form
.gform-footer
.gform_button {
  width: 100%;
  max-width: none !important;
  min-width: 100% !important;
  height: 31px !important;
  padding: 0 10px !important;
  font-size: 10px !important;
}

.nw-subscription-card
.gform_wrapper.gform-theme
form
.gform-body.gform_body
.gfield
input {
  border-radius: 50px;
  padding: 0 20px;
  height: 40px;
}

.nw-subscription-card
.gform_wrapper.gform-theme
form
.gform-body.gform_body
.gfield
.gfield_label {
  top: 12px;
  left: 20px;
  font-size: 12px;
}

.nw-subscription-card
.gform_wrapper.gform-theme
form
.gform-body.gform_body
.gfield.has-value
.gform-field-label,
.nw-subscription-card
.gform_wrapper.gform-theme
form
.gform-body.gform_body
.gfield.has-focus
.gform-field-label {
  font-size: 9px;
  translate: 0 -8px;
}

body[data-elementor-device-mode="mobile"] {
  background: #fff;
}

body[data-elementor-device-mode="mobile"] .container {
  max-width: 100%;
  width: 100%;
}
.nw-programs .program-block .title {
  max-height: 114px;
  overflow: hidden;
  min-height: 114px;
}

.nw-programs .program-block .title p:empty {
  display: none;
}

.nw-programs .program-block .title a {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  min-height: 39px;
}

.nw-programs .program-block{
  min-height:620px;
}

.nw-programs .program-block .multiple-authors .m-img {
  width: 31px;
  height: 31px;
  margin-inline-start: -15px;
}

.nw-programs .program-block .multiple-authors {
  padding-block: 15px;
}

body[data-elementor-device-mode="mobile"] .main-head {
  position: relative !important;
}

.nw-subscription-card .gform_wrapper.gform-theme form .gform_footer {
  margin: 0;
  border: 0;
  padding: 0;
  width:100%;
}


.nw-subscription-card .labels {
  margin-bottom: 10px;
}
