/* [project]/app/styles/about-us.css [app-client] (css) */
.we-proud {
  color: #fbfbfb;
  font-size: 19px;
  font-weight: 400;
  line-height: 140%;
}

.fifty-text {
  color: #fbfbfb;
  font-family: Impact, Haettenschweiler, Arial Narrow Bold, sans-serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 140%;
  position: relative;
}

.fifty-text:after {
  content: "";
  z-index: 1;
  background-color: #0e4444;
  width: 100%;
  height: 33%;
  position: absolute;
  bottom: 10px;
  left: 0;
}

.get-to-know-title {
  color: #393939;
  font-weight: 400;
  line-height: 140%;
}

.get-to-know-section {
  background-image: url("/assets/images/Group.png");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: auto;
}

@media (width <= 1200px) {
  .we-proud {
    font-size: 17px;
  }

  .fifty-text {
    font-size: 65px;
  }
}

@media (width <= 991px) {
  .we-proud {
    font-size: 12px;
  }

  .fifty-text {
    font-size: 50px;
  }

  .fifty-text:after {
    height: 29%;
    bottom: 5px;
  }
}

@media (width <= 767px) {
  .we-proud {
    font-size: 9px;
  }

  .fifty-text {
    font-size: 35px;
  }

  .fifty-text:after {
    height: 23%;
  }
}

@media (width <= 575px) {
  .we-proud {
    font-size: 7.5px;
  }

  .fifty-text {
    font-size: 30px;
  }

  .fifty-text:after {
    height: 30%;
    bottom: 5px;
  }
}

@media (width <= 450px) {
  .we-proud {
    font-size: 6px;
  }

  .fifty-text {
    font-size: 25px;
  }

  .fifty-text:after {
    height: 30%;
    bottom: 5px;
  }
}

@media (width <= 400px) {
  .we-proud {
    font-size: 5px;
  }

  .fifty-text {
    font-size: 20px;
  }

  .fifty-text:after {
    height: 23%;
    bottom: 5px;
  }
}

.our-strategic-sections {
  background-image: url("/assets/images/2sectionsBG.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.strategic-main-title {
  color: #3c3c3c;
  font-weight: 700;
  line-height: 1.4;
}

.strategic-main-title-highlight {
  color: #77c0c0;
}

.strategic-text-content {
  margin-bottom: 2rem;
}

.strategic-text {
  color: #393939;
  line-height: 1.4;
  font-weight: 400 !important;
}

.strategic-bottom-content {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.strategic-circular-img-container {
  margin-block-end: -2rem;
  margin-inline-start: -4rem;
}

.green-text {
  color: #0e4444 !important;
}

.gray-text {
  color: #6f6f6f !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
}

@media (width <= 1200px) {
  .strategic-circular-img-container {
    margin-inline-start: -1rem;
  }

  .strategic-handshake-img {
    height: 230px;
  }
}

@media (width <= 991px) {
  .strategic-content-row {
    text-align: center;
  }

  .strategic-left-col {
    justify-content: center;
    display: flex;
  }

  .strategic-bottom-content {
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }

  .strategic-circular-img-container {
    margin-block-end: 0;
    margin-inline-start: 0;
  }

  .strategic-main-img {
    height: 500px;
  }
}

@media (width <= 767px) {
  .strategic-content-row {
    margin-top: 3rem;
  }

  .strategic-bottom-content {
    flex-direction: column;
  }

  .strategic-main-img {
    height: 400px;
  }

  .strategic-main-title {
    margin-bottom: 0 !important;
  }
}

@media screen and (width <= 575px) {
  .strategic-main-img {
    height: 300px;
  }
}

.about-services .about-image-container img {
  object-fit: cover;
}

.about-services .about-title {
  color: #4d4d4d;
  font-weight: 700;
}

.about-services .nerdware-text {
  color: #77c0c0;
}

.about-services .about-description {
  color: #393939;
  font-weight: 400;
  line-height: 1.4;
}

.about-services .btn-view-all-services {
  color: #f5f5f5;
  background-color: #0e4444;
  border: 1px solid #0e4444;
  font-weight: 400;
}

.about-services .service-card {
  background-color: var(--semi-light-gray-clr);
  border-radius: 15px;
  min-height: 332px;
  position: relative;
  overflow: hidden;
}

.about-services .service-card-inner {
  background: inherit;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  height: 100%;
  padding: 24px;
  transition: transform .8s cubic-bezier(.4, 0, .2, 1) .2s;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(54%);
}

.about-services .service-card:hover .service-card-inner {
  transition-delay: 0s;
  transform: translateY(0);
}

.about-services .service-card-divider {
  z-index: 2;
  border: none;
  border-bottom: 2px solid #0e4444;
  width: 100%;
  margin: 0;
  transition: opacity .3s;
}

.about-services .service-card:hover .service-card-divider {
  display: none;
}

.about-services .service-card-description {
  opacity: 0;
  height: 0;
  transition: opacity .5s .8s, height .5s .8s;
  overflow: hidden;
}

.about-services .service-card:hover .service-card-description {
  opacity: 1;
  height: auto;
  margin-top: 8px;
  transition: opacity .5s .2s, height .5s .2s;
}

@media (width <= 991px) {
  .about-services .service-card:hover .service-card-inner {
    transform: translateY(0);
  }

  .about-services .row > div {
    min-height: auto;
  }

  .about-services .about-content {
    padding: 3rem 1rem !important;
  }

  .newH {
    height: 500px;
  }
}

@media (width <= 767px) {
  .newH {
    height: 400px;
  }
}

@media (width <= 575px) {
  .newH {
    height: 350px;
  }

  .about-services .service-card {
    min-height: 230px;
  }

  .about-services .service-card-inner {
    transform: translateY(35%);
  }
}


/* [project]/app/styles/tips.css [app-client] (css) */
.tips-searchbar input {
  color: #0e4444;
  background: #fff;
  border: none;
  height: 60px;
  font-weight: 400;
  line-height: 1.6;
  font-family: Poppins, sans-serif !important;
}

.tips-searchbar input::placeholder {
  color: #707070;
}

.tips-searchbar input:focus {
  box-shadow: none;
  outline: 1px solid #0e4444;
}

.tips-category .category-title {
  color: #0e4444;
  font-weight: 400;
}

.tips-category .category-list li {
  color: #6f6f6f;
  cursor: pointer;
  opacity: .6;
  transition: opacity .3s;
}

.tips-category .category-list li:hover, .tips-category .category-list li.active {
  opacity: 1;
}

.tips-popular-tags .tags-title {
  color: #0e4444;
  font-weight: 400;
}

.tips-tag {
  color: #0e4444;
  background: #fff;
  border: 1px solid #fff;
  font-weight: 400;
  transition: all .3s;
}

.tips-tag:hover, .tips-tag.active {
  color: #fff;
  background: #0e4444;
  border: 1px solid #0e4444;
}

.tips-subscribe input[type="email"] {
  z-index: 1;
  background: #fff;
  border: 1px solid #bdbdbd;
  border-right: none;
  border-radius: 6px 0 0 6px;
  padding: 8px 12px;
  font-size: 14px;
  transition: border-color .3s;
  position: relative;
}

.tips-subscribe input[type="email"]:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.tips-subscribe input[type="email"].is-invalid {
  border-color: #dc3545 currentColor #dc3545 #dc3545;
  border-right-style: none;
  border-right-width: medium;
}

.tips-subscribe .btn-dark {
  background: #1a3c3d;
  border: none;
  border-radius: 0 6px 6px 0;
  padding: 8px 18px;
  font-size: 15px;
  font-weight: 600;
}

.subBTN:disabled {
  color: #fff;
  background: var(--active-clr);
  cursor: not-allowed;
}

.blog-content img {
  object-fit: cover;
  width: 100%;
}

.subBTN:disabled:hover {
  background: var(--active-clr);
  cursor: not-allowed;
}

.tips-arrow-btn {
  z-index: 2;
  background: none;
  border: none;
  outline: none;
  top: 18px;
  right: 18px;
}

.arrow-circle {
  background: none;
  width: 40px;
  height: 40px;
}

.tips-card-body, .tips-card-date {
  color: #6f6f6f;
  font-weight: 400;
}

.tips-card-title {
  color: #0e4444;
  font-weight: 400;
  line-height: 1.4;
}

.tips-card-link {
  color: #3c3c3c;
  width: fit-content;
  font-weight: 400;
  text-decoration: none;
  transition: color .3s;
}

.tips-card-link:hover {
  color: #0e4444;
}

.chevron-icon {
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  display: inline-block;
}

.chevron-icon.rotated {
  transform: rotate(180deg);
}

.category-list-transition {
  opacity: 0;
  max-height: 0;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1), opacity .3s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
}

.category-list-transition.open {
  opacity: 1;
  max-height: 800px;
}

.tags-list-transition {
  opacity: 0;
  max-height: 0;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1), opacity .3s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
}

.tags-list-transition.open {
  opacity: 1;
  max-height: 800px;
}

.customInput {
  color: #0e4444 !important;
  background-color: #0000 !important;
  border: 1px solid #0e4444 !important;
  height: 50px !important;
  font-weight: 400 !important;
}

.customInput::placeholder {
  color: #0e4444 !important;
}

.subBTN {
  z-index: 2;
  position: relative;
  color: #fff !important;
  background-color: #0e4444 !important;
  border: 1px solid #0e4444 !important;
  border-left: none !important;
  height: 50px !important;
  font-weight: 400 !important;
}

.subBTN:hover {
  background-image: url("/assets/images/2sectionsBG.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: #0e4444 !important;
  border: 1px solid #0e4444 !important;
}

.tips-container-BG {
  background-image: url("/assets/images/2sectionsBG.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.arrowContainer {
  background-image: url("/assets/images/2sectionsBG.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  border-bottom-left-radius: 10px;
}

.tipArrow {
  color: #0e4444;
  background-color: #6f6f6f40;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-weight: 700;
  transition: all .5s;
  display: flex;
}

.tips-card:hover .tipArrow {
  color: #fff;
  background-color: #0e4444;
  transform: rotate(305deg);
}

.tips-hero {
  width: 80%;
}

.tips-hero-img-overlay {
  content: "";
  width: 100%;
  height: 100%;
  padding: 3rem 3rem 5rem;
  position: absolute;
  bottom: 0;
  right: 2% !important;
}

.subscribe-container {
  width: 33%;
}

.tips-comments-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}

.comments-container {
  margin-bottom: 80px;
}

.comment-item {
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 20px;
}

.comments-list {
  flex-direction: column;
  gap: 40px;
  display: flex;
}

.comment-header {
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  display: flex;
}

.comment-avatar {
  border-radius: 50%;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  overflow: hidden;
}

.comment-avatar img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.comment-meta {
  flex: 1;
}

.comment-author {
  color: #0e4444;
  margin: 0 0 5px;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.comment-date {
  color: #888;
  font-size: 14px;
  font-weight: 400;
}

.comment-reply-btn {
  color: #40e0d0;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 6px;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  transition: all .3s;
  display: flex;
}

.comment-reply-btn:hover {
  color: #fff;
  background: #40e0d0;
}

.reply-arrow {
  font-size: 16px;
  transition: transform .3s;
}

.comment-reply-btn:hover .reply-arrow {
  transform: translateX(3px);
}

.comment-content {
  padding-left: 75px;
}

.comment-content p {
  color: #666;
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.replies-container {
  margin-top: 20px;
  margin-left: 6rem;
  padding-left: 30px;
}

.reply-item {
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 15px;
  padding: 20px;
}

.reply-form-container {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-top: 20px;
  margin-left: 50px;
  padding: 20px;
}

.reply-form .form-label {
  color: var(--main-clr);
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.required-star {
  color: #e74c3c;
  margin-left: 2px;
}

.form-label {
  margin-bottom: 8px;
  color: var(--main-clr) !important;
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 16px;
  transition: all .3s;
  background-color: var(--feild-clr) !important;
}

.form-control:focus {
  border-color: var(--active-clr);
  background-color: #fff;
  box-shadow: 0 0 0 .2rem #77c0c040;
}

.form-control.is-invalid {
  border-color: #dc3545;
}

.invalid-feedback {
  color: #dc3545;
  margin-top: 4px;
  font-size: 14px;
}

.btn-submit {
  color: #fff;
  cursor: pointer;
  background: #0e4444;
  border: 1px solid #0e4444;
  border-radius: 50px;
  padding: 12px 30px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: all .3s;
}

.btn-submit:hover {
  color: #fff;
  background: var(--active-clr);
  border-color: var(--active-clr);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #40e0d04d;
}

.btn-submit:disabled {
  cursor: not-allowed;
  box-shadow: none;
  background: #6c757d;
  border-color: #6c757d;
  transform: none;
}

.reply-form .btn-primary {
  background: #0e4444;
  border-color: #0e4444;
  border-radius: 25px;
  padding: 8px 20px;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  transition: all .3s;
}

.reply-form .btn-primary:hover {
  background: #40e0d0;
  border-color: #40e0d0;
  transform: translateY(-1px);
}

.reply-form .btn-secondary {
  border-radius: 25px;
  padding: 8px 20px;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  transition: all .3s;
}

.reply-form .btn-secondary:hover {
  transform: translateY(-1px);
}

@media (width <= 1024px) {
  .tips-comments-section {
    padding: 40px 20px;
  }

  .comment-avatar {
    width: 50px;
    height: 50px;
  }

  .comment-content {
    padding-left: 65px;
  }

  .leave-comment-section {
    padding: 30px;
  }

  .form-row {
    gap: 15px;
  }

  .tips-hero-img {
    height: 340px;
  }

  .subscribe-container {
    width: 50%;
  }
}

@media (width <= 768px) {
  .tips-comments-section {
    padding: 30px 15px;
  }

  .comments-container {
    margin-bottom: 50px;
  }

  .tips-hero-img-overlay {
    padding: 3rem;
  }

  .tips-hero {
    width: 100%;
  }

  .tips-hero-img {
    height: 280px;
  }

  .comments-list {
    gap: 25px;
  }

  .comment-header {
    flex-wrap: wrap;
    gap: 10px;
  }

  .comment-avatar {
    width: 45px;
    height: 45px;
  }

  .comment-author {
    font-size: 16px;
  }

  .comment-date {
    font-size: 13px;
  }

  .comment-reply-btn {
    padding: 6px 10px;
    font-size: 13px;
  }

  .comment-content {
    margin-top: 15px;
    padding-left: 0;
  }

  .comment-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .replies-container {
    border-left-width: 2px;
    margin-left: 20px;
    padding-left: 15px;
  }

  .reply-item {
    padding: 15px;
  }

  .reply-form-container {
    margin-left: 20px;
    padding: 15px;
  }

  .leave-comment-section {
    padding: 25px 20px;
  }

  .leave-comment-section .form-control {
    padding: 10px 12px;
    font-size: 14px;
  }

  .btn-submit {
    width: 100%;
    padding: 12px 30px;
    font-size: 15px;
  }

  .subscribe-container {
    width: 70%;
  }
}

@media (width <= 480px) {
  .tips-comments-section {
    padding: 20px 10px;
  }

  .tips-hero-img {
    height: 250px;
  }

  .comment-header {
    gap: 8px;
  }

  .comment-avatar {
    width: 40px;
    height: 40px;
  }

  .comment-author {
    font-size: 15px;
  }

  .comment-date {
    font-size: 12px;
  }

  .replies-container {
    margin-left: 15px;
    padding-left: 10px;
  }

  .reply-item {
    padding: 12px;
  }

  .reply-form-container {
    margin-left: 15px;
    padding: 12px;
  }

  .leave-comment-section {
    padding: 20px 15px;
  }

  .subscribe-container {
    width: 100%;
  }

  .leave-comment-section .form-control {
    padding: 8px 10px;
    font-size: 13px;
  }

  .btn-submit {
    width: 100%;
    padding: 10px 25px;
    font-size: 14px;
  }
}

.tip-details-wrapper ul li button {
  cursor: pointer;
  transition: all .3s;
}

.tip-details-wrapper ul li button:hover {
  opacity: .8;
  transform: translateY(-2px);
}

.tip-details-wrapper ul li button:focus {
  border-radius: 4px;
  outline: none;
  box-shadow: 0 0 0 2px #007bff40;
}

.tip-details-wrapper ul li button:active {
  transform: translateY(0);
}


/* [project]/app/styles/pagination.css [app-client] (css) */
.SMSSS a {
  box-shadow: none !important;
  color: #0e4444 !important;
  background-color: #0000 !important;
  border: 1px solid #0e4444 !important;
  border-radius: 50% !important;
  justify-content: center !important;
  align-items: center !important;
  width: 50px !important;
  height: 50px !important;
  font-size: 16px !important;
  font-weight: bold !important;
  display: flex !important;
}

.SMSSS a:hover {
  color: #fff !important;
  background-color: #0e4444 !important;
}

.ssf a {
  color: #fbfbfb !important;
  background-color: #0e4444 !important;
}

@media screen and (width <= 991px) {
  .SMSSS a {
    width: 40px !important;
    height: 40px !important;
    font-size: 14px !important;
  }
}

@media screen and (width <= 770px) {
  .SMSSS a {
    width: 35px !important;
    height: 35px !important;
    font-size: 12px !important;
  }
}

@media screen and (width <= 575px) {
  .SMSSS a {
    width: 32px !important;
    height: 32px !important;
    font-size: 11px !important;
  }
}


/*# sourceMappingURL=app_styles_2c2832d5._.css.map*/