@media (max-width: 1599px) {
  .who__we__are::after {
    right: 70px;
  }
}
@media (max-width: 1399px) {
  .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .the__title {
    font-size: 1.875rem;
  }
  .footer__right {
    padding-left: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .footer__left {
    padding-right: 0;
  }
  .history__content {
    padding-right: 300px;
  }
}
@media (max-width: 1199px) {
  /* offcanvas */
  .offcanvas {
    min-height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 10000;
    left: -100%;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
    display: block;
  }
  .offcanvas.show {
    left: 0;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
  }
  .offcanvas::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #000c;
    -webkit-backdrop-filter: saturate(180%) blur(5px);
    backdrop-filter: saturate(180%) blur(5px);
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    opacity: 0.6;
  }

  .offcanvas .offcanvas__bar {
    width: 100%;
    position: relative;
    z-index: 10;
    height: 100%;
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
    position: absolute;
    top: 0;
    left: -100%;
    -webkit-transition: all 0.6s linear;
    -o-transition: all 0.6s linear;
    transition: all 0.6s linear;
  }

  .offcanvas .offcanvas__bar .offcanvas__sidebar {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    width: 300px;
    position: relative;
    z-index: 1;
    height: 100%;
    overflow-y: auto;
    background: var(--bg-white);
  }
  .offcanvas .offcanvas__bar .offcanvas__sidebar::before {
    content: "";
    background-image: url("../img/lines-vector2.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 100%;
    width: 300px;
    mix-blend-mode: overlay;
    pointer-events: none;

    position: absolute;
    top: 0;
    left: -100%;
    -webkit-transition: all 0.6s linear 0.3s;
    -o-transition: all 0.6s linear 0.3s;
    transition: all 0.6s linear 0.3s;
  }
  .offcanvas .offcanvas__bar.showbar .offcanvas__sidebar::before {
    position: fixed;
    left: 0;
  }

  .offcanvas .offcanvas__bar.showbar {
    left: 0;
  }

  .offcanvas__logo {
    padding: 7px 10px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 10;
    width: 100%;
    -webkit-box-shadow: inset 0 -1px 0 0 #eaeaea;
    box-shadow: inset 0 -1px 0 0 #eaeaea;
    -webkit-backdrop-filter: saturate(180%) blur(5px);
    backdrop-filter: saturate(180%) blur(5px);
    background: #fffc;
    text-align: center;
  }
  .high-contrast .offcanvas__logo {
    background: #000c;
  }
  .offcanvas__logo .custom-logo-link {
    display: inline-block;
  }
  .offcanvas__logo a img {
    width: 70px;
    margin: 0 auto;
    opacity: 0;
    -webkit-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    transform: translateY(-100px);
    -webkit-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
  }
  .offcanvas__close {
    position: absolute;
    top: 10px;
    background: var(--bg-white);
    width: 50px;
    height: 50px;
    z-index: 100;
    left: 310px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: all 1s linear;
    -o-transition: all 1s linear;
    transition: all 1s linear;
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }

  .offcanvas__close .offcanvas__icon {
    width: 20px;
    line-height: 0;
  }
  .offcanvas__close .offcanvas__icon span {
    display: inline-block;
    position: relative;
    width: 20px;
    height: 2px;
    vertical-align: top;
    background: red;
  }
  .high-contrast .offcanvas__close .offcanvas__icon span {
    background: #0ff !important;
  }
  .offcanvas__close .offcanvas__icon span + span {
    margin-top: 5px;
  }

  .offcanvas.show .offcanvas__close .offcanvas__icon span:nth-child(1) {
    -webkit-animation: ease 0.7s 0.6s icon1 forwards;
    animation: ease 0.7s 0.6s icon1 forwards;
  }

  .offcanvas.show .offcanvas__close .offcanvas__icon span:nth-child(2) {
    -webkit-animation: ease 0.7s 0.6s icon2 forwards;
    animation: ease 0.7s 0.6s icon2 forwards;
  }

  .offcanvas.show .offcanvas__close .offcanvas__icon span:nth-child(3) {
    -webkit-animation: ease 0.7s 0.6s icon3 forwards;
    animation: ease 0.7s 0.6s icon3 forwards;
  }
  @-webkit-keyframes icon1 {
    0% {
      top: 0;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    50% {
      top: 7px;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      top: 7px;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
  }
  @keyframes icon1 {
    0% {
      top: 0;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    50% {
      top: 7px;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      top: 7px;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
  }
  @-webkit-keyframes icon2 {
    50% {
      -webkit-transform: scale(0);
      transform: scale(0);
    }
    100% {
      -webkit-transform: scale(0);
      transform: scale(0);
    }
  }
  @keyframes icon2 {
    50% {
      -webkit-transform: scale(0);
      transform: scale(0);
    }
    100% {
      -webkit-transform: scale(0);
      transform: scale(0);
    }
  }
  @-webkit-keyframes icon3 {
    0% {
      bottom: 0;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    50% {
      bottom: 7px;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      bottom: 7px;
      -webkit-transform: rotate(135deg);
      transform: rotate(135deg);
    }
  }
  @keyframes icon3 {
    0% {
      bottom: 0;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    50% {
      bottom: 7px;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      bottom: 7px;
      -webkit-transform: rotate(135deg);
      transform: rotate(135deg);
    }
  }
  .offcanvas ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }

  #primary-menu1 {
    padding: 0;
  }
  #primary-menu1 > li > a {
    color: var(--text);
    text-transform: capitalize;
    font-size: 0.938rem;
    padding: 12px 20px;
    display: block;
    font-weight: 500;
  }

  #primary-menu1 > li > ul,
  #primary-menu1 > li > ul > li > ul {
    display: none;
  }

  #primary-menu1 li {
    position: relative;
    cursor: pointer;
    line-height: 1.313rem;
  }
  #primary-menu1 > li {
    border-bottom: 1px solid #eee;
  }

  #primary-menu1 > li > a:hover,
  #primary-menu1 > li a.show-active,
  #primary-menu1 > li.menu-item-has-children ul li a.show-active,
  #primary-menu1 > li:hover > a {
    background: var(--light);
  }

  #primary-menu1 > li > ul > li:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  #primary-menu1 li.menu-item-has-children span {
    color: var(--text);
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 20px;
    width: 40px;
    height: 40px;
    /* background: #0000000f; */
    right: 3px;
    pointer-events: none;
  }
  #primary-menu1 li.menu-item-has-children span i {
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 14px;
  }

  #primary-menu1 > li .show + .menu__icon i {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    -ms-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
  }
  #primary-menu1 li.menu-item-has-children > ul {
    background: #f3f3f3;
  }
  .high-contrast #primary-menu1 li.menu-item-has-children > ul {
    background: #504e50;
  }

  #primary-menu1
    li.menu-item-has-children
    > ul
    > li.menu-item-has-children
    > ul {
    background: #fff;
    margin: 0;
    margin-top: 5px;
    border-radius: 0;
    padding: 0;
    border-bottom: 1px solid transparent;
  }
  #primary-menu1 > li.menu-item-has-children > span {
    top: 23px;
  }

  #primary-menu1 > li.menu-item-has-children ul li a {
    font-size: 0.875rem;
    color: var(--text);
    font-weight: 500;
    padding: 10px 30px;
    display: block;
    text-transform: capitalize;
  }

  #primary-menu1 > li ul li:hover > a {
    background: rgba(0, 0, 0, 0.03);
  }

  #primary-menu1
    > li.menu-item-has-children
    ul
    li.menu-item-has-children
    ul
    li
    a {
    padding-left: 40px;
  }

  #primary-menu1
    > li.menu-item-has-children
    ul
    li.menu-item-has-children
    ul
    li.menu-item-has-children
    ul
    li
    a {
    padding-left: 60px;
  }

  .offcanvas__content {
    height: calc(100vh - 84px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
  }

  .offcanvas__nav,
  .offcanvas__social {
    opacity: 0;
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
  }
  .offcanvas__social {
    background: var(--light-xs);
    padding: 10px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
  }
  .offcanvas__social h2 {
    color: var(--primary);
    font-weight: 600;
    font-size: 18px;
    font-family: var(--outfit);
    margin-bottom: 10px;
  }
  .offcanvas.show .offcanvas__logo a img,
  .offcanvas.show .offcanvas__social,
  .offcanvas.show .offcanvas__nav {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  .offcanvas.show .offcanvas__logo a img {
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
  }

  .offcanvas.show .offcanvas__nav,
  .offcanvas.show .offcanvas__social {
    -webkit-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s;
  }

  /* offcanvas */

  .banner__heading {
    font-size: 2.625rem;
    line-height: 3.125rem;
  }
  .main__heading,
  .entry-title {
    font-size: 2.5rem;
    line-height: 3.125rem;
  }

  .who__we__are::after {
    right: 40px;
    top: 40px;
    width: 70px;
    height: 70px;
  }

  .principle__icon img {
    width: 50px !important;
    height: 40px;
  }
  .principle__icon,
  .shadow__card__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }

  .info__img {
    -webkit-transform: translate(0, -50%) scale(1);
    -ms-transform: translate(0, -50%) scale(1);
    transform: translate(0, -50%) scale(1);
    width: 50%;
  }
  .info__section .uk-grid > div:nth-child(2) {
    text-align: left;
  }
  .info__section .uk-grid > div {
    width: 50%;
  }
  .work__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .work__wrapper,
  .work__wrapper:hover {
    width: 100%;
  }
  .overlay__visible {
    display: none;
  }
  .work__wrapper .overlay__hidden {
    opacity: 1;
    visibility: visible;
    bottom: 0;
  }
  .join__movement::after {
    width: 300px;
  }

  .footer__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer__mb {
    margin-bottom: 30px;
  }
  .nepal__map,
  .www__content {
    margin-top: -100px;
  }
  .main__content p {
    font-size: 1.375rem;
    line-height: 2.625rem;
  }
  .main__content p::first-letter {
    font-size: 2.5rem;
  }
  .history__content {
    padding-right: 0;
  }
  .history__container .uk-grid > div:last-child {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .history__img {
    width: 50%;
  }
  .history__svg {
    top: auto;
    bottom: 0;
    width: 250px;
  }
}

@media (max-width: 959px) {
  .section {
    padding: 50px 0;
  }
  .section-t {
    padding-top: 50px;
  }
  .section-b {
    padding-bottom: 50px;
  }
  .main__heading,
  .entry-title {
    font-size: 2.188rem;
    line-height: 2.813rem;
  }
  .banner__section {
    display: block;
    height: 100%;
  }
  .banner__container {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
  }
  .banner__img img {
    height: auto;
  }

  .banner__heading,
  .pagebanner__text .banner__heading {
    font-size: 2.25rem;
    line-height: 2.875rem;
  }

  .content__wrapper {
    margin-top: 30px;
  }
  .banner__section::before {
    top: 30px;
    width: 80px;
    height: 80px;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    left: auto;
    right: 30px;
  }
  .banner__section::after {
    bottom: 30px;
    width: 60px;
    height: 60px;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    left: 30px;
  }
  .wwa__content {
    margin-left: 0;
    max-width: 100%;
  }
  .who__we__are::after {
    right: 20px;
    top: 20px;
    width: 50px;
    height: 50px;
  }
  .principle__section .uk-width-1-3\@m {
    width: 100% !important;
  }
  .info__section .uk-grid > div {
    width: 100%;
  }
  .info__img {
    position: static;
    -webkit-transform: translate(0, 0) scale(1);
    -ms-transform: translate(0, 0) scale(1);
    transform: translate(0, 0) scale(1);
    width: 300px;
  }
  .the__title {
    font-size: 1.75rem;
  }
  .info__section::before {
    width: 75px;
    height: 100px;
  }
  .work__container {
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
  .cta__thumbnail img {
    height: auto;
  }
  .suppoter__section {
    padding-top: calc(400px + 50px);
  }
  .team__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .team__left .the__content {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .team__left .main__heading {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .team__slider {
    border-top: 1px solid #eee;
    padding-top: 30px;
  }
  .blog__img {
    height: auto;
  }
  .nepal__map,
  .www__content {
    margin-top: 0;
  }
  .join__movement::before {
    display: none;
  }
  .footer__flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .footer__container {
    grid-template-columns: repeat(12, 1fr);
  }
  .footer__container > div:first-child {
    grid-column: span 8;
  }
  .footer__container > div:nth-child(2) {
    grid-column: span 4;
  }
  .footer__container > div:last-child {
    grid-column: span 12;
  }
  .footer__container > div:not(:first-child) {
    border-left: none;
  }
  .copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 0;
  }
  .copyright .social__icons {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 10px;
  }
  .copyright p,
  .copyright p a {
    font-size: 0.875rem;
  }
  .map__section iframe {
    height: 500px;
  }
  .page__banner::after {
    top: -10px;
    height: 70px;
  }
  .single__heading {
    font-size: 2.188rem;
    line-height: 2.813rem;
  }
  .journey__container {
    padding: 40px;
  }
  .journey__img {
    text-align: center;
  }
  .vision__section {
    padding-top: calc(150px + 50px);
  }
  .impact__count {
    font-size: 2rem;
    line-height: 3rem;
  }
  .impact__wrapper p {
    font-size: 1.15rem;
    line-height: 1.588rem;
  }
  .single__team__img{
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .join__movement::after {
    width: 100%;
    opacity: 0.1;
    right: -50px;
  }
  .footer__container > div {
    grid-column: span 12 !important;
    padding: 0;
  }
  .footer__container > div:not(:last-child) {
    margin-bottom: 30px;
  }
  .footer__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .mid__footer {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .footer__container {
    padding: 30px;
  }
  .footer__content p {
    max-width: 100%;
  }
  .footer__mb {
    margin-bottom: 0;
  }
  .footer__logo {
    margin-bottom: 20px;
  }
  .footer__cta {
    margin-top: 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .loom__logo img {
    height: auto;
  }
  .history__svg {
    display: none;
  }
  .history__img {
    width: 100%;
  }
}
@media (max-width: 639px) {
  .popup__form .uk-close {
    top: 0 !important;
    right: 0 !important;
  }

  /*  */
  .error-404 {
    padding-top: 90px;
  }
  .error-404 .error-watermark {
    top: calc(50% - 90px);
    font-size: 160px;
  }
  .error-404 .error-title {
    font-size: 25px;
  }
  .error-404 .error-text {
    font-size: 14px;
    margin-top: 10px;
  }

  #gt_float_wrapper {
    top: 0 !important;
    right: 0 !important;
  } 

  /* Galleries
      --------------------------------------------- */

  .gallery-columns-2,
  .gallery-columns-3,
  .gallery-columns-4,
  .gallery-columns-5,
  .gallery-columns-6,
  .gallery-columns-7,
  .gallery-columns-8,
  .gallery-columns-9 {
    grid-template-columns: repeat(1, 1fr);
  }
  .gallery-item img {
    height: auto;
  }
  .grid__form form p {
    grid-column: span 12 !important;
  }
  .main__heading,
  .entry-title {
    font-size: 1.875rem;
    line-height: 2.5rem;
  }

  .sub__heading {
    font-size: 0.938rem;
    line-height: 1.563rem;
  }
  .the__content p,
  .the__content.md p,
  .entry-content p,
  .the__content li {
    font-size: 1.125rem;
    line-height: 1.875rem;
  }

  .link__title a {
    font-size: 1.125rem;
    line-height: 1.625rem;
  }
  .link__title.lg a {
    font-size: 1.375rem;
    line-height: 2rem;
  }

  .the__title {
    font-size: 1.5rem;
    line-height: 2.188rem;
    margin-bottom: 10px;
  }

  .content__wrapper {
    margin-top: 20px;
  }
  .section {
    padding: 30px 0;
  }
  .section-t {
    padding-top: 30px;
  }
  .section-b {
    padding-bottom: 30px;
  }
  .btn__center.lg {
    margin-top: 20px;
  }
  .btn__margin {
    margin-top: 15px;
  }
  input[type="submit"] {
    padding: 10px 16px 10px;
    font-size: 0.875rem;
  }
  .btn.rotate i {
    font-size: 12px;
  }
  .btn .btn-svg {
    width: 18px;
  }
  .btn,
  .btn.btn-lg,
  .header__cta .btn {
    font-size: 0.875rem;
    padding: 8px 16px 8px;
  }

  .carbonbadge span {
    font-size: 12px;
  }

  /*  */

  .offcanvas {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
  .offcanvas .offcanvas__bar {
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
  }
  .offcanvas .offcanvas__bar.showbar {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
  .offcanvas .offcanvas__bar .offcanvas__sidebar {
    min-width: 100%;
    width: 100%;
  }

  .offcanvas__close {
    top: 22px;
    width: 40px;
    height: 40px;
    right: 12px;
    left: auto;
    background: var(--primary);
  }
  .offcanvas__close .offcanvas__icon span {
    background: #fff;
    width: 16px;
  }

  .offcanvas__close .offcanvas__icon {
    width: 16px;
  }
  .offcanvas__logo {
    text-align: left;
  }

  .offcanvas .offcanvas__bar.showbar .offcanvas__sidebar::before {
    width: 100%;
  }
  /*  */

  .site-header .custom-logo {
    width: 70px;
  }
  .mobile__search > a,
  .ham-menu {
    display: flex;
  }
  .mobile__search svg {
    width: 25px;
    cursor: pointer;
  }
  .banner__heading,
  .pagebanner__text .banner__heading {
    font-size: 1.875rem;
    line-height: 2.875rem;
  }

  .banner__subheading {
    font-size: 1.125rem;
    margin-top: 1.25rem;
  }
  .banner__cta .btn i {
    font-size: 18px;
  }
  .banner__cta {
    margin-top: 20px;
  }
  .banner__section::before {
    width: 70px;
    height: 70px;
    right: 10px;
    top: 10px;
  }
  .who__we__are::before {
    width: 40px;
    height: 70px;
  }
  .principle__left {
    max-width: 100%;
  }
  .arrow__container .myarrow {
    width: 40px;
    height: 40px;
  }
  .arrow__container .myarrow i {
    font-size: 13px;
  }
  .principle__title,
  .shadow__card__title {
    font-size: 1.375rem;
    line-height: 1.875rem;
  }
  .principle__icon {
    width: 70px;
    height: 70px;
  }
  .principle__icon img {
    width: 40px !important;
    height: 30px;
  }
  .shadow__card__icon {
    font-size: 18px;
    width: 60px;
    height: 60px;
  }
  .principle__card,
  .shadow__card {
    padding: 25px;
  }
  .wwa__cta {
    margin-top: 20px;
  }
  .principle-arrow {
    display: none;
  }
  .info__img {
    margin: 0 auto;
  }
  .info__section::before {
    width: 50px;
    height: 70px;
  }
  .work__overlay .the__content {
    display: none;
  }
  .work__img {
    height: 380px;
  }
  .work__title {
    width: 100%;
  }
  .suppoter__section {
    margin-top: -350px;
    padding-top: calc(350px + 30px);
  }
  .play__video {
    width: 50px;
    height: 50px;
    font-size: 15px;
  }
  .supporter__img img {
    height: 60px;
    width: 120px !important;
  }
  .supporter__title h2 {
    font-size: 1.25rem;
    padding: 0 15px;
  }
  .suppoter__section::before {
    width: 60px;
    height: 140px;
  }
  .team__img {
    width: 70px !important;
    height: 70px;
  }
  .team__slider__content {
    margin-top: 20px;
  }
  .team__name,
  .team__desg {
    font-size: 1.125rem;
  }
  .btn__text {
    gap: 10px;
    font-size: 1.125rem;
  }
  .title__cta .icon-btn {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
  .blog__content {
    margin: -60px 20px 15px 15px;
    padding: 15px;
  }
  .join__movement__star {
    left: -20px;
    top: -20px;
  }
  .join__movement__star img {
    width: 50px;
  }
  .footer__container {
    padding: 30px 15px;
  }
  .footer__logo img {
    height: 80px;
  }
  .go__to__top > a {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  /* .loom__logo {
    padding: 30px;
  } */
  .footer__title {
    font-size: 1.375rem;
    margin-bottom: 10px;
  }
  .supporter__carousel {
    margin-top: 20px;
  }
  .www__container {
    margin-left: 0;
    margin-bottom: 20px;
    width: 100%;
  }
  .www__content {
    padding: 20px;
  }
  .contact__form {
    padding: 20px;
  }
  .page__banner {
    padding: 40px 0;
  }
  .page__banner::before {
    width: 40px;
    height: 40px;
  }
  .breadcrumb ul li a {
    font-size: 0.938rem;
  }
  .page__banner::after {
    height: 52px;
  }
  .single__heading {
    font-size: 1.875rem;
    line-height: 2.5rem;
    margin: 0 0 15px;
  }
  .blog__tag.center {
    margin: 0 auto 15px;
  }

  .single__img iframe {
    height: 300px;
  }
  .meta__info {
    padding: 12px 15px;
  }
  .publication__content {
    padding: 40px 20px 20px;
    margin-top: -20px;
  }
  .publication__content .the__content {
    margin-top: 10px;
  }
  .publication__img,
  .publication__img img {
    height: 300px;
  }
  .single__img {
    margin-bottom: 20px;
  }
  .team__card__info {
    grid-template-columns: 70px 1fr;
    gap: 12px;
  }
  .team__card__content {
    padding: 20px;
  }
  .team__contact {
    padding: 15px 20px;
  }
  a[data-readmore-toggle] {
    margin-top: 10px;
  }
  .main__content {
    padding: 25px;
    border-left: 3px solid var(--primary);
  }
  .main__content p {
    font-size: 1.125rem;
    line-height: 2.125rem;
  }
  .main__content p::first-letter {
    font-size: 1.875rem;
  }
  .main__content::after {
    width: 40px;
    height: 40px;
  }
  .journey__container {
    padding: 20px;
  }
  .vision__section {
    margin-top: -100px;
    padding-top: calc(100px + 30px);
  }
  .principal__title {
    font-size: 1.375rem;
    line-height: 2rem;
  }
  .principal__title span {
    font-size: 2.5rem;
  }
  .new-footer__wrapper {
    row-gap: 20px;
    padding: 0;
  }
  .new-footer__container {
    padding: 40px 0;
  }
  .new-footer__wrapper .social__icons > a {
    font-size: 20px;
  }
  .impact__count {
    font-size: 1.875rem;
    line-height: 2rem;
  }
  .impact__wrapper p {
    font-size: 1.025rem;
    line-height: 1.5rem;
  }
  .single__team__img{
    margin-bottom: 10px;
  }
  .single__team__desg {
    font-size: 1rem;
  }
}
