/*********************************
/*  Header CSS Start
*********************************/
.header-info ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px 30px;
  }
  @media screen and (max-width: 991px) {
    .header-info ul {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
    }
  }
  @media screen and (max-width: 575px) {
    .header-info ul {
      gap: 5px 15px;
    }
  }
  .header-info ul li {
    margin: 0;
  }
  
  ul.nav-menu li.menu-item-has-children:hover ul.multi-menu.sub-menu {
    opacity: 1;
    visibility: visible;
  }
  
  ul.nav-menu li ul.multi-menu.sub-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    overflow: hidden;
    position: fixed;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100vw;
    margin: auto;
    min-height: 500px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    -webkit-box-shadow: 0px 16px 20px rgba(0, 0, 0, 0.0705882353);
            box-shadow: 0px 16px 20px rgba(0, 0, 0, 0.0705882353);
    border-top: 1px solid #f3f3f3;
  }
  ul.nav-menu li ul.multi-menu.sub-menu .multi-menu-triggers {
    position: relative;
    width: 40%;
    background: var(--color-theme-one);
    padding: 36px 0 36px 36px;
  }
  ul.nav-menu li ul.multi-menu.sub-menu .multi-menu-triggers .menu-triggers {
    position: absolute;
    width: 100%;
    padding-left: 60%;
    left: 0;
  }
  ul.nav-menu li ul.multi-menu.sub-menu .multi-menu-triggers .menu-triggers .menu-trigger a.active {
    background: #fff;
    color: var(--color-theme-one);
    border-radius: 8px 0 0 8px;
  }
  ul.nav-menu li ul.multi-menu.sub-menu .multi-menu-triggers .menu-triggers li {
    width: 100%;
  }
  ul.nav-menu li ul.multi-menu.sub-menu .multi-menu-triggers .menu-triggers li a {
    background: transparent;
    color: #fff;
    border: none;
  }
  ul.nav-menu li ul.multi-menu.sub-menu .multi-menu-columns {
    position: relative;
    width: 60%;
    background: #fff;
  }
  ul.nav-menu li ul.multi-menu.sub-menu .multi-menu-columns ul.menu-columns .menu-column {
    background: #fff;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
  }
  ul.nav-menu li ul.multi-menu.sub-menu .multi-menu-columns ul.menu-columns .menu-column .column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 36px;
    gap: 0 25px;
  }
  ul.nav-menu li ul.multi-menu.sub-menu .multi-menu-columns ul.menu-columns .menu-column .column li a {
    border: none;
    background: transparent;
    -webkit-transition: none;
    transition: none;
  }
  
  .mobile-menu .sidenav ul ul {
    background: black;
  }
  .mobile-menu .sidenav ul ul li {
    padding: 0 10px;
  }
  .mobile-menu .sidenav ul ul ul {
    background: #111111;
  }
  .mobile-menu .sidenav ul ul ul li {
    padding: 0 10px;
  }
  .mobile-menu .sub__menu {
    padding-left: 10px !important;
  }
  .menu-child {
    &>span {
      padding: 10px 0 !important;
    }
    li {
      a {
        padding: 10px 0 !important;
      }
    }
  }
  
  .mobile-menu .sidenav {
    padding-bottom: 20px;
    &>ul {
      overflow-y: auto;
    }
  }
  /*********************************
  /*  Header CSS Start
  *********************************/
  /*********************************
  /*  Button Start
  *********************************/
  .btn {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 14px 29px;
    border-radius: var(--btn-border-radius, 4px) !important;
    border: none;
    outline: none;
    display: inline-block;
    text-transform: capitalize;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  .btn i {
    font-size: 14px;
    margin-left: 8px;
  }
  .btn:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
    outline: none;
  }
  .btn-primary {
    background-color: var(--color-theme-one) !important;
    color: #fff;
    border: 1px solid var(--color-theme-one) !important;
    -webkit-box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.0509803922);
            box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.0509803922);
  }
  .btn-primary:focus, .btn-primary:hover {
    border-color: var(--color-theme-one) !important;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .btn-outline {
    background-color: transparent;
    color: var(--color-theme-two);
    border: 1px solid var(--color-theme-one);
  }
  .hero__text .btn-outline {
    color: var(--color-theme-one);
    border-color: var(--color-theme-one);
  }
  .btn-outline:focus, .btn-outline:hover {
    background: var(--color-theme-one);
    color: #fff;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-color: var(--color-theme-one);
  }


  .btn-secondary {
    background: var(--color-theme-three);
    position: relative;
    overflow: hidden;
    z-index: 1;
    &::before {
      content: '';
      width: 100%;
      height: 100%;
      background-color: #0000005d;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      z-index: -1;
      transition: all ease-in-out 300ms;
    }
    &:hover {
      &::before {
        opacity: 1;
      }
    }
  }
  .solid__btn {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #191919;
    text-transform: uppercase;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  .solid__btn i {
    font-size: 14px;
    margin-left: 8px;
  }
  .solid__btn:hover {
    color: var(--color-theme-one);
  }
  
  /*********************************
  /*  Button End
  *********************************/
  /*********************************
  /*  Banner Section Start
  *********************************/
  .banner__section {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    padding: 150px 0 100px;
  }
  @media screen and (max-width: 991px) {
    .banner__section {
      padding: 100px 0;
    }
  }
  .banner__section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    opacity: 0.25;
  }
  
  .hero__text {
    z-index: 1;
    position: relative;
  }
  .hero__text .title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(24px, 4vw, 72px);
    line-height: 1.35;
    color: var(--color-theme-one);
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
  }
  .hero__text .title span {
    display: inline-block;
  }
  .hero__text .desc {
    font-weight: 500;
    font-size: 22px;
    line-height: 34px;
    color: #333;
    text-transform: unset;
    margin: 25px auto 0;
  }
  @media screen and (max-width: 991px) {
    .hero__text .desc {
      font-size: 18px;
      line-height: 30px;
    }
  }
  @media screen and (max-width: 575px) {
    .hero__text .desc {
      font-size: 16px;
      line-height: 24px;
    }
  }
  .hero__text .btn__group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    margin-top: 40px;
  }
  @media screen and (max-width: 500px) {
    .hero__text .btn__group {
      gap: 10px;
    }
    .btn {
      font-size: 12px;
      padding: 10px 16px;
    }
  }
  .hero__text .btn i {
    margin-left: 0;
    padding-right: 8px;
  }
  @media screen and (max-width: 375px) {
    .hero__text .btn i{
      display: none;
    }
  }

  
/* customized-slider */
.customized-slider {
  @media (min-width: 767px) {
    .slider-item {
      min-height: 100vh;
      .container {
        min-height: 100%;
        .row {
          min-height: 100%;
        }
      }
    } 
    .owl-dots {
      display: none;
    }
  }
}
.hero__text {
  @media (min-width: 767px) {
    min-height: 100%;
  }
  background-color: rgba(255, 255, 255, 0.7);
  padding: clamp(16px, 2vw, 32px) clamp(24px, 3vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 10vw;
  /* border-radius: 12px; */
  .title {
    font-size: clamp(24px, 3vw, 50px);
  }
}


  /* hero-overlay start  */
  .hero-overlay {
    min-height: calc(100vh - 87px) !important;
    position: relative;
    z-index: 1;
    &::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: rgba(22, 27, 48, 0.85);
      opacity: 0.5;
      z-index: -1;
    }
    &>.container {
      position: relative;
      z-index: 2;
      margin-top: 25vw;
    }
    .hero__text {
      background: transparent;
      padding: 0;
      display: unset;
      justify-content: unset;
      align-items: unset;

      .title {
        color: #fff;
        font-size:  clamp(32px, 3vw, 50px);
      }
      .desc {
        color: #ffffffce;
        font-weight: 400;
      }
      .btn {
        font-size: 16px !important;
        padding: 12px 25px !important;
        background-color: #1da060 !important;
        border-color: #1da060 !important;
      }
    }
    .hero__services {
      background-color: rgb(44, 39, 56, 0.85);
      color: #fff;
      bottom: -30px;
      padding: 30px;
      padding-top: 0px;
      position: relative;
      z-index: 1;
      &::before {
        background-color: rgba(44, 39, 56, 0.85);
        -webkit-clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%, 0 100%, 0 100%);
        clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%, 0 100%, 0 100%);
        content: "";
        height: 30px;
        left: 0;
        position: absolute;
        top: 0;
        transform: translateY(-99%);
        width: 100%;
        z-index: 1;
        @media screen and (max-width: 991px) {
          display: none;
        }
      }
      @media screen and (min-width: 991px) {
        margin-left: 50px;
      }
      @media screen and (max-width: 991px) {
          padding-top: 30px;
          padding-bottom: 100px;
          background-color: rgb(44, 39, 56);
      }
      @media screen and (max-width: 576px) {
        margin-top: 30px;
        padding-bottom: 60px;
      }
      h2 {
        color: #fff;
        margin-bottom: 1rem;
      }
      a {
        color: #ffffff;
        display: block;
        padding: 10px 32px 10px 0;
        border-bottom: 1px solid #ffffffc7;
        position: relative;
        &::after {
          content: "";
          width: 16px;
          height: 16px;
          background-color: transparent;
          border-right: 3px solid #fff;
          border-bottom: 3px solid #fff;
          position: absolute;
          right: 16px;
          top: 50%;
          transform: translateY(-50%) rotate(-45deg);
          transition: all 0.3s ease;
        }
        &:hover {
          color: #f39586 ;
          &::after {
            right: 5px;
            border-right: 3px solid #f39486c2;
            border-bottom: 3px solid #f39586;
          }
        }
      }
    }
  }
  /* hero-overlay end */






  
  .feature__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 200px;
  }
  @media screen and (max-width: 1199px) {
    .feature__wrapper {
      margin-top: 100px;
    }
  }
  @media screen and (max-width: 767px) {
    .feature__wrapper {
      grid-template-columns: repeat(1, 1fr);
      padding: 0 20px;
      display: none;
    }
  }
  .feature__wrapper .featureBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
  }
  @media screen and (max-width: 1199px) {
    .feature__wrapper .featureBox {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      text-align: center;
    }
  }
  .feature__wrapper .featureBox__icon {
    height: 70px;
    width: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  @media screen and (max-width: 991px) {
    .feature__wrapper .featureBox__icon {
      width: 60px;
      height: 60px;
    }
  }
  .feature__wrapper .featureBox__icon img {
    /* -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1); */
    width: auto;
  }
  .feature__wrapper .featureBox__content .title {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    color: #191919;
    margin-bottom: 8px;
  }
  @media screen and (max-width: 991px) {
    .feature__wrapper .featureBox__content .title {
      font-size: 20px;
    }
  }
  .feature__wrapper .featureBox__content .desc {
    font-size: 16px;
    line-height: 25px;
    color: #333;
    margin-bottom: 0;
  }
  
  /*********************************
  /*  Banner Section End
  *********************************/
  /*********************************
  /*  Common CSS Start
  *********************************/
  ul.nav-menu li.special-button a,
  .special-button a {
    border: 1px solid var(--color-theme-one);
    border-radius: var(--btn-border-radius, 4px);
  }
  ul.nav-menu li.special-button:hover a,
  .special-button:hover a {
    color: var(--color-theme-one) !important;
  }
  ul.nav-menu li.special-button:hover a:hover,
  .special-button:hover a:hover {
    border-color: var(--color-theme-one) !important;
    background: transparent !important;
    color: var(--color-theme-one) !important;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  
  .home-button a {
    border: 1px solid var(--color-theme-one);
  }
  .home-button a:hover {
    background: transparent;
    border-color: var(--color-theme-one);
    color: var(--color-theme-one);
  }
  
  .case-study-home-page {
    padding: 80px 0 90px;
  }
  
  .bg-soft {
    background: rgba(202, 177, 156, 0.1019607843) !important;
  }
  
  .bg-white {
    background: #fff !important;
  }
  
  .testimonial-item {
    background-color: #fff;
    -webkit-box-shadow: 0 4px 30px 0 rgb(219, 219, 219);
            box-shadow: 0 4px 30px 0 rgb(219, 219, 219);
    margin: 30px 50px;
    border-radius: 20px;
  }
  @media screen and (max-width: 991px) {
    .testimonial-item {
      margin: 20px;
    }
  }
  
  .blog-image {
    background: #f5f5f5;
  }
  
  @media screen and (max-width: 767px) {
    .blog-carousel {
      margin-top: 20px;
    }
  }
  
  @media screen and (max-width: 575px) {
    .blog-item {
      margin-bottom: 0px;
    }
  }
  
  @media screen and (max-width: 479px) {
    .home-button a {
      font-size: 16px;
      padding: 14px 22px;
    }
  }
  
  /*********************************
  /*  Common CSS End
  *********************************/
  /*********************************
  /*  About Section Start
  *********************************/
  @media screen and (max-width: 991px) {
    .about__section {
      margin-top: 0;
    }
  }
  
  .about__wrapper .subtitle {
    font-size: 15px;
    line-height: 100%;
    color: var(--color-theme-two);
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .about__wrapper .title {
    font-size: 40px;
    line-height: 50px;
    color: #191919;
    font-weight: 700;
    margin-bottom: 20px;
  }
  @media screen and (max-width: 575px) {
    .about__wrapper .title {
      font-size: 35px;
      line-height: 45px;
    }
  }
  @media screen and (max-width: 479px) {
    .about__wrapper .title {
      font-size: 30px;
      line-height: 40px;
    }
    .about__wrapper .title br {
      display: none;
    }
  }
  @media screen and (max-width: 375px) {
    .about__wrapper .title {
      font-size: 28px;
      line-height: 38px;
    }
  }
  .about__wrapper p,
  .about__wrapper .desc {
    margin-bottom: 10px;
  }
  .about__wrapper p:last-of-type,
  .about__wrapper .desc:last-of-type {
    margin-bottom: 30px;
  }
  .about__wrapper .list__item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  @media screen and (max-width: 479px) {
    .about__wrapper .list__item {
      grid-template-columns: auto;
    }
  }
  .about__wrapper .list__item li {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    position: relative;
    padding-left: 23px;
  }
  .about__wrapper .list__item li::after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 14px;
    font-weight: 900;
    color: var(--color-theme-two);
  }
  
  @media screen and (max-width: 991px) {
    .about__image {
      max-width: 500px;
      margin: auto;
      margin: 30px 0;
    }
  }
  .about__image .aboutImg {
    position: relative;
    width: 100%;
    z-index: 1;
    display: inline-block;
  }
  @media screen and (max-width: 575px) {
    .about__image .aboutImg {
      -webkit-transform: none;
              transform: none;
      height: auto;
    }
  }
  .about__image .aboutImg img {
    width: 100%;
    height: 100%;
  }
  .about__image .aboutImg__bg {
    position: absolute;
    height: 460px;
    top: -70px;
    right: 0;
    z-index: -1;
  }
  .about__image .aboutImg__bg img {
    margin-left: auto;
  }
  
  /*********************************
  /*  About Section End
  *********************************/
  /*********************************
  /*  CTABOX Section Start
  *********************************/
  .ctaBox__section {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding: 150px 0 100px;
    position: relative;
    z-index: 1;
  }
  .ctaBox__section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #000000;
    opacity: 0.6;
    z-index: -1;
  }
  .ctaBox__section-v2 {
    &::after {
      content: '';
      background: #fff;
      opacity: 0.75;
      /* display: none; */
    }    
    .title {
      color: #000 !important;
    }
  }
  
  .ctaBox__wrapper {
    max-width: 800px;
    margin: auto;
    text-align: center;
  }
  .ctaBox__wrapper .title {
    font-size: clamp(32px, 4.5vw, 72px);
    line-height: 1.25;
    font-weight: 600;
    margin-bottom: 0;
    color: #fff;
  }
  .ctaBox__wrapper .desc {
    font-size: clamp(18px, 2vw, 25px);
    color: #fff;
    margin: 20px 0 30px;
  }
  @media screen and (max-width: 767px) {
    .ctaBox__wrapper .desc br {
      display: none;
    }
  }
  .ctaBox__wrapper .btn {
    background: var(--color-theme-two);
    border: 1px solid var(--color-theme-two);
  }
  .ctaBox__wrapper .btn:hover {
    background: var(--color-theme-one);
    border-color: var(--color-theme-one);
  }
  .ctaBox__wrapper.cta__black .title {
    color: var(--color-theme-two);
  }
  .ctaBox__wrapper.cta__black .desc {
    color: #4f5b6d;
  }
  .ctaBox__wrapper.cta__black .btn {
    background: var(--color-theme-two);
    border: 1px solid var(--color-theme-two);
  }
  .ctaBox__wrapper.cta__black .btn:hover {
    background: var(--color-theme-one);
    border-color: var(--color-theme-one);
  }
  
  /*********************************
  /*  CTABOX Section End
  



  /* Application Check page banner */
  .banner-section {
    height: clamp(500px, 50vw, 700px);
    display: flex;
    align-items: center;
    @media (max-width: 767px) {
      height: auto;
      padding: clamp(32px, 10vw, 56px) 0;
    }

    .banner__content {
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 12px;
      @media (max-width: 767px) {
        margin-bottom: 36px;
      }
  

      h1 {
        font-size: clamp(2em, 4vw, 3.5em) !important;
        font-weight: 700;
        font-size: 3.5em;
        line-height: 1.25;
        text-transform: capitalize;
      }
      .home-button a {
        font-size: clamp(0.85em, 1vw, 1em);
        padding: 10px clamp(10px, 4vw, 45px);
      }
    }
    .banner__image {
      img {
        display: block;
        background-color: #aaaeb4;
        width: 100%;
        aspect-ratio: 5/6;
        border-radius: 8px;
        object-fit: cover;
        object-position: top right;
        border-radius: var(--btn-border-radius) var(--btn-border-radius) 0 0;
      }
    }
  }



  /* Sticke CTA */
  .sticky-cta {
    width: 100%;
    position: fixed;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(100%);
    z-index: 99;
    transition: all 360ms ease-in-out;
    &.sticky {
      visibility: visible;
      opacity: 1;
      transform: translateY(0);
    }

    .inner {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: var(--color-theme-one);
      border-radius: 12px 12px 0 0;
      padding: 20px clamp(10px, 2.5vw, 32px);
      gap: 8px;
      box-shadow: 0 0px 50px 10px rgba(255, 255, 255, 0.25);
      border: 2px solid #fff;
      border-bottom: 0;
      .content {
        flex: 1;
        flex-basis: 300px;
      }
      h2, h3, p {
        color: #fff;
        line-height: 1.15;
        font-size: clamp(20px, 3vw, 32px);
      }
      .special-button a {
        background: #fff;
        color: var(--color-theme-two) !important;
        &:hover {
          background: var(--color-theme-three) !important;
          color: #fff !important;
        }
      }
      @media (max-width: 767px) {
        flex-wrap: wrap;
        
        .special-button a {
          font-size: clamp(12px, 2vw, 16px);
          padding: clamp(6px, 1.5vw, 10px) clamp(12px, 2vw, 20px) !important;
        }
      }
    }
  }


  /* about video image style */
  .about-img, .mission-img {
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
  }


  /* .attachment-gallery in file check single */
.attachment-gallery {
  width: 100%;
  max-width: 700px;
  .attachment-item {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
      padding: 8px;
      border-radius: 8px;
      background-color: #e4e4e4;
      p {
          flex: 1;
          color: #010101;
          font-weight: 600;
          text-decoration: none;
          transition: all 350ms ease-in-out;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
          margin-bottom: 0;
      }
      &:hover {
          background-color: rgb(186, 213, 231);
      }
      .attachment-preview {
          width: 36px;
          aspect-ratio: 1/1;
          border-radius: 4px;
          background-color: #ccc;
          object-fit: cover;
          object-position: center;
      }
  }
}
.text-black {
  color: #010101;
}
.text-bold {
  font-weight: 700;
}

  

/* attachment dropzone */
.dropzone {
  margin-bottom: 16px;
  width: 100%;
  height: 300px;
  border-radius: 16px;
  background-color: #e4e4e4 !important;
  display: flex;
  justify-content: center;
  align-items: center;
}


.application-dashboard {
  tr {
    td {
      text-align: left;
    }
  }
  .btn-group-sm>.btn, .btn-sm {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: var(--btn-border-radius, 4px);
    i {
      margin-left: 0;
    }
  }
}

ul.department-contact {
  text-align: left;
}

ul.department-contact li {
  display: flex;
  gap:  8px;
}

ul.department-contact li i {
  margin-top: 4px;
}




.customized-about-section {
  background: #f8faff;
  padding: 50px 0; 
}

.images-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  .grid-item {
      position: relative;
      border-radius: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      &:first-of-type {
          display: flex;
          justify-content: flex-end;
          align-items: flex-end;
          img {
              position: absolute;
              bottom: 50px;
              right: 0;
          }
      }
      &:nth-child(3) {
          img {
              position: absolute;
              right: 0;
              top: -50px;
          }
      }
  }
}



.team-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  @media screen and (max-width: 1199px) {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  @media screen and (max-width: 992px) {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
  @media screen and (max-width: 480px) {
    grid-template-columns: repeat(1, 1fr);
  }
}
.team-item {
  margin-top: 0;
}
.team-photo {
  img {
    height: unset;
    aspect-ratio: 2/2.25;
  }
}
.team-text {
  padding: 16px;
}

/* Summernote Content Reset */
.team-detail-text .about-wrapper {
  /* Reset all inherited styles */
  all: revert;
  
  /* Basic text styling */
  font-family: inherit;
  font-size: 16px;
  line-height: 1.6;
  color: #333;

  /* Spacing */
  margin: 0;
  padding: 0;
  margin-top: 1rem;

  /* Content specific resets */
  h1, h2, h3, h4, h5, h6 {
    margin: 1em 0 0.5em;
    line-height: 1.2;
    font-weight: 600;
  }

  p {
    margin: 0 0 1em;
  }

  ul, ol {
    list-style: bullet;
    margin: 0 0 1em;
    padding-left: 2em;
  }

  li {
    margin: 0.5em 0;
    text-align: left;
    display: block;
    position: relative;
    &::before {
      content: '';
      position: absolute;
      left: -1.5em;
      top: 0.5em;
      width: 0.5em;
      height: 0.5em;
      background-color: #333;
      border-radius: 50%;
    }
  }

  a {
    color: inherit;
    text-decoration: underline;
  }

  img {
    max-width: 100%;
    height: auto;
    margin: 1em 0;
  }

  blockquote {
    margin: 1em 0;
    padding: 0.5em 1em;
    border-left: 4px solid #ddd;
    background: #f9f9f9;
  }

  table {
    border-collapse: collapse;
    width: 100%;
    margin: 1em 0;
  }

  td, th {
    border: 1px solid #ddd;
    padding: 8px;
  }
}




.blog-item {
  margin-bottom: 20px !important;
  .blog-text h3 a {
    font-size: clamp(18px, 2vw, 24px) !important;
    line-height: 1.35;
    &:hover {
      color: var(--color-theme-one) !important;
    }
  }
}