@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

.animate__animated {
  --animate-duration: 1.5s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

img {
  max-width: 100%;
}

* {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", sans-serif;
  padding: 0;
  margin: 0;
  font-weight: 600;
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 50px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 12px;
}

ul {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -3.2px;
}

sup {
  top: -8px;
}

.btn_secondary_rounded {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 18px;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 24px;
  box-shadow: 0px 5px 10px -10px #ea867f;
  transition: all 500ms ease;
  background: linear-gradient(90deg, #780865, #3871c1 50%, #053678) var(--x, 0)/200%;
}

.btn_secondary_rounded:hover {
  --x: 100%;
  color: #fff;
}

/* ------------------------------------
     Preloader CSS
---------------------------------------*/
.preloaderBg {
  background-color: #ffffff;
  height: 100%;
  width: 100%;
  position: fixed;
  margin-top: 0;
  top: 0;
  z-index: 999999;
}

.loader-container {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  animation: sk-scaleout 1s infinite ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.preloader {
  margin: auto;
  background: url(../image/logo.png) no-repeat center;
  background-size: 70px;
  width: 70px;
  height: 70px;
}

.preloader2 {
  border: 2px solid #f3f3f3;
  border-top: 2px solid #3871c1;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  animation: spin 1s ease-in-out infinite;
  position: relative;
  margin: auto;
  top: -82px;
  left: -18px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.top_header {
  background-color: #f9fafb;
  padding: 4px 0;
  color: #75b8e5;
}
@media (max-width: 991px) {
  .top_header {
    padding: 16px 0;
  }
}
.top_header .info-icon {
  background-color: rgba(219, 228, 250, 0.3882352941);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.top_header .info-icon svg {
  color: #a3bde2;
}
.top_header .social_media a svg {
  color: #75b8e5;
}

header {
  position: sticky;
  top: 0; /* Ensures it sticks to the very top */
  z-index: 1000; /* Ensures it appears above other content */
  background-color: #ffffff;
}
header .navbar {
  padding: 0;
}
@media (max-width: 991px) {
  header .navbar {
    padding: 0 0 8px 0;
  }
}
header .navbar .right_logoes {
  padding: 8px 0;
}
@media (max-width: 991px) {
  header .navbar .right_logoes {
    padding: 0;
  }
}
header .navbar .right_logoes .ndis_logo {
  display: none;
}
@media (max-width: 991px) {
  header .navbar .right_logoes .ndis_logo {
    display: inline-block;
  }
}
header .navbar .navbar-brand img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1199px) {
  header .navbar .navbar-brand img {
    width: 60px;
    height: 60px;
  }
}
header .navbar ul li {
  padding: 0 12px;
}
@media (max-width: 1199px) {
  header .navbar ul li {
    padding: 0 4px;
  }
}
header .navbar ul li a {
  color: #656565;
  text-transform: capitalize;
  font-weight: 600;
  padding: 4px 16px;
}
@media (max-width: 991px) {
  header .navbar ul li a {
    padding: 8px 16px;
  }
}
header .navbar ul li a:hover {
  color: #c0540e;
}
header .navbar ul li a.active {
  color: #c0540e;
}
header .navbar .right_nav_link {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  header .navbar .right_nav_link {
    flex-direction: column;
    align-items: flex-start;
  }
}
header .navbar .right_nav_link .ndis_logo img {
  height: 60px !important;
  width: 60px !important;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  header .navbar .right_nav_link .ndis_logo {
    display: none;
  }
}
header .navbar a {
  color: #656565;
  text-transform: capitalize;
  font-weight: 600;
  padding: 4px 16px;
}
@media (max-width: 991px) {
  header .navbar a {
    padding: 8px;
  }
}
header .navbar a:hover {
  color: #c0540e;
}
header .navbar .btn_primary {
  background-color: #e0eff9;
  color: #75b8e5;
  border-radius: 8px;
  border: 2px solid #e0eff9;
  font-weight: 600;
}
header .navbar .btn_primary:hover {
  background-color: #75b8e5;
  color: #e0eff9;
  border: 2px solid #75b8e5;
}
header .navbar .btn_secondary_rounded {
  color: #fff;
  height: 40px;
  padding: 4px 16px;
  display: flex;
  align-items: center;
}
header .navbar .btn_secondary_rounded:hover {
  color: #fff;
}
@media (max-width: 1199px) {
  header .navbar .btn_secondary_rounded {
    height: 36px;
    padding: 4px 8px;
    font-size: 14px;
  }
}

.hamburger {
  position: relative;
  width: 40px;
  height: 40px;
  text-align: center;
  background: #fff;
  border-radius: 50%;
  padding: 10px 8px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.52);
}

.hamburger span {
  display: block;
  height: 1px;
  width: 100%;
  background: #de5e55;
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  margin: 5px 4px;
}
.hamburger span:first-child {
  width: 16px;
}
.hamburger span:nth-child(2) {
  width: 24px;
}
.hamburger span:last-child {
  width: 16px;
}

/* Closed State */
.navbar-toggler.collapsed .hamburger span:nth-child(1) {
  transform: translateY(0) rotate(0);
}

.navbar-toggler.collapsed .hamburger span:nth-child(2) {
  opacity: 1;
  transform: scaleX(1);
}

.navbar-toggler.collapsed .hamburger span:nth-child(3) {
  transform: translateY(0) rotate(0);
}

/* Open State (X icon) */
.navbar-toggler:not(.collapsed) .hamburger span:nth-child(1) {
  transform: translateY(2px) rotate(45deg);
}

.navbar-toggler:not(.collapsed) .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar-toggler:not(.collapsed) .hamburger span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.dropdown:hover .dropdown-menu {
  display: block !important;
  margin-top: 0;
}

.dropdown-menu {
  transition: 0.2s ease-in-out;
  background: #edf2fb;
  border: none;
}
.dropdown-menu .dropdown-item:hover {
  background-color: transparent;
  color: #f9a53e !important;
}

.nav-link,
.dropdown-item {
  position: relative;
  display: inline-block;
}

.nav-link::after,
.nav-link.active::after,
.dropdown-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #c0540e;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after,
.dropdown-item:hover::after {
  width: 100%;
}

.banner_section {
  background-color: #f8f9fe;
  color: #464646;
  width: 100%;
  height: 700px;
  position: relative;
  overflow: hidden;
}
.banner_section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #0f67bf, #2575fc);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}
.banner_section::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #bbcbe7, #396abd);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}
@media (max-width: 991px) {
  .banner_section {
    height: 1000px;
  }
}
.banner_section .curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'><path fill='white' fill-opacity='1' d='M0,256L48,250.7C96,245,192,235,288,240C384,245,480,267,576,272C672,277,768,267,864,240C960,213,1056,171,1152,144C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'></path></svg>") no-repeat center;
  background-size: cover;
}
.banner_section .banner_section_divide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
@media (max-width: 991px) {
  .banner_section .banner_section_divide {
    gap: 40px;
    padding: 40px 0;
    grid-template-columns: 1fr;
  }
}
.banner_section .banner_section_divide .banner_content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 0;
}
.banner_section .banner_section_divide .banner_content p {
  line-height: 34px;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 500;
}
@media (max-width: 500px) {
  .banner_section .banner_section_divide .banner_content p {
    font-size: 16px;
  }
}
.banner_section .banner_section_divide .banner_content h2 {
  font-size: 46px;
}
@media (max-width: 991px) {
  .banner_section .banner_section_divide .banner_content h2 {
    font-size: 32px;
  }
}
@media (max-width: 500px) {
  .banner_section .banner_section_divide .banner_content h2 {
    font-size: 28px;
  }
}
.banner_section .banner_section_divide .banner_image {
  margin: 20px -255px 0px 0px;
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  .banner_section .banner_section_divide .banner_image {
    margin: 0px;
  }
}
@media (max-width: 500px) {
  .banner_section .banner_section_divide .banner_image {
    height: 200px;
  }
}

.blog-single-page .top-post-inner {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 600px;
}
.blog-single-page .inner-content {
  position: relative;
  background: #fff;
  padding: 60px 30px 72px 30px;
  box-shadow: 0px 10px 15px rgba(190, 186, 194, 0.35);
  margin: -100px auto 0 auto;
  border-radius: 4px;
}
.blog-single-page .inner-content .back-btn {
  position: absolute;
  right: 30px;
  top: 32px;
}
.blog-single-page .inner-content .back-btn a {
  font-size: 18px;
  font-weight: 600;
  color: #984314;
  z-index: 1;
}
.blog-single-page .inner-content .back-btn a a:hover {
  color: #464646;
}
.blog-single-page .inner-content .back-btn i {
  font-size: 14px;
  margin-right: 10px;
}
.blog-single-page .inner-content .author-info {
  display: block;
  margin-bottom: 36px;
}
.blog-single-page .inner-content .author-info .author-thumb {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 16px;
}
.blog-single-page .inner-content .author-info .author-thumb img {
  width: 100%;
  border-radius: 50%;
}
.blog-single-page .inner-content .author-info span {
  display: block;
  font-size: 16px;
  color: #838383;
  line-height: 24px;
  margin-bottom: 1px;
}
.blog-single-page .inner-content h4 {
  display: block;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #2f2f2f;
}
.blog-single-page .inner-content h2 {
  display: block;
  font-size: 36px;
  line-height: 50px;
  font-weight: 600;
  color: #984314;
  margin-bottom: 14px;
}
@media (max-width: 991px) {
  .blog-single-page .inner-content h2 {
    font-size: 24px;
    line-height: 40px;
  }
}
@media (max-width: 350px) {
  .blog-single-page .inner-content h2 {
    font-size: 18px;
    line-height: 40px;
  }
}
.blog-single-page .inner-content .post-info {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
}
.blog-single-page .inner-content .post-info li {
  font-size: 16px;
  color: #6d6d6d;
  margin: 0px 6px;
}
.blog-single-page .inner-content .post-info li i {
  font-size: 16px;
  margin-right: 10px;
  color: #6d6d6d;
}
.blog-single-page .inner-content .text p {
  font-size: 18px;
}
@media (max-width: 991px) {
  .blog-single-page .inner-content .text p {
    font-size: 16px;
    line-height: 30px;
    text-align: left;
  }
}
.blog-single-page .content-box .bold-text {
  font-size: 26px;
  line-height: 38px;
  margin-bottom: 22px;
}
.blog-single-page .content-box .text {
  font-size: 18px;
}
.blog-single-page .content-box ul {
  padding: 0px 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.blog-single-page .content-box ul li {
  list-style: circle;
  font-size: 16px;
  font-weight: 500;
  line-height: 34px;
}
.blog-single-page .content-box .text p {
  margin: 20px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 34px;
}
.blog-single-page .content-box h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 28px;
}
.blog-single-page .lower-content {
  padding-top: 80px;
}
.blog-single-page .post-share-option {
  padding: 20px 0;
}
.blog-single-page .post-share-option h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 28px;
}
.blog-single-page .post-share-option .post-share-inner {
  display: block;
  margin-bottom: 40px;
}
.blog-single-page .post-share-option .post-share-inner ul.social-links li {
  display: inline-block;
  margin: 0px 8px;
  list-style: none !important;
}
.blog-single-page .post-share-option .post-share-inner ul.social-links li a {
  display: inline-block;
  font-size: 18px;
  height: 44px;
  width: 44px;
  line-height: 44px;
  color: #fff;
  text-align: center;
  background: #dddcdc;
  border-radius: 50%;
}
.blog-single-page .post-share-option .post-share-inner ul.social-links li a:hover {
  background: #f9a53e;
}
.blog-single-page .post-share-option .post-share-inner ul.social-links li::before {
  content: "" !important;
}
.blog-single-page .post-share-option .othre-links-inner {
  position: relative;
  display: block;
  margin-bottom: 80px;
}
.blog-single-page .post-share-option .othre-links-inner .links-box li {
  display: inline-block;
  margin: 0px 10px;
}
.blog-single-page .post-share-option .othre-links-inner .links-box li a {
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  color: #2f2f2f;
  border-bottom: 1px solid #2f2f2f;
}
.blog-single-page .post-share-option .othre-links-inner .links-box li a:hover {
  color: #ff3d3d;
  border-color: #ff3d3d;
}
.blog-single-page .post-share-option .othre-links-inner h4 {
  margin-bottom: 14px;
}
.blog-single-page .post-share-option .othre-links-inner .post-block {
  display: block;
}
@media (max-width: 991px) {
  .blog-single-page .post-share-option .othre-links-inner .post-block {
    margin: 40px 0;
  }
}
.blog-single-page .post-share-option .othre-links-inner .post-block .image-box {
  position: relative;
  display: block;
  overflow: hidden;
  background: #000;
  height: 300px;
}
.blog-single-page .othre-post-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px auto 80px;
}
@media (max-width: 991px) {
  .blog-single-page .othre-post-inner {
    grid-template-columns: 1fr;
  }
}
.blog-single-page .othre-post-inner .post-block {
  height: 100%;
  box-shadow: 0px 10px 15px rgba(190, 186, 194, 0.35);
}
.blog-single-page .othre-post-inner .post-block .image-box {
  position: relative;
  display: block;
  overflow: hidden;
  background: #000;
  height: 300px;
}
.blog-single-page .othre-post-inner .post-block .image-box img {
  width: 100%;
  transition: all 300ms ease;
}
.blog-single-page .othre-post-inner .post-block:hover .image-box img {
  transform: scale(1.1);
  opacity: 0.5;
}
.blog-single-page .othre-post-inner .post-block .lower-content {
  position: relative;
  display: block;
  padding: 36px 15px 26px 40px;
}
.blog-single-page .othre-post-inner .post-block .lower-content h2 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 24px;
}
.blog-single-page .othre-post-inner .post-block .lower-content h2 a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #984314;
}
.blog-single-page .othre-post-inner .post-block .lower-content .link-box a {
  position: relative;
  display: inline-block;
  font-size: 50px;
  color: #646464;
}
.blog-single-page .othre-post-inner .post-block .lower-content .link-box a svg {
  height: 40px;
  width: 40px;
  color: #984314;
}
.blog-single-page .othre-post-inner .post-block .lower-content .link-box a:hover {
  color: #8c2e28;
}
.blog-single-page .lower-content h3.group-title {
  position: relative;
  display: block;
  font-size: 26px;
  line-height: 35px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #503c57;
  margin-bottom: 49px;
}

.post-share-option {
  padding: 20px 0;
}
.post-share-option h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 28px;
}
.post-share-option .post-share-inner {
  display: block;
}
.post-share-option .post-share-inner .social-links li {
  display: inline-block;
  margin: 0px 8px;
}
.post-share-option .post-share-inner .social-links li a {
  display: inline-block;
  font-size: 18px;
  height: 44px;
  width: 44px;
  line-height: 44px;
  color: #fff;
  text-align: center;
  background: #dddcdc;
  border-radius: 50%;
}
.post-share-option .post-share-inner .social-links li a:hover {
  background: #f9a53e;
}
.post-share-option .othre-links-inner {
  position: relative;
  display: block;
  margin-bottom: 80px;
}
.post-share-option .othre-links-inner .links-box li {
  display: inline-block;
  margin: 0px 10px;
}
.post-share-option .othre-links-inner .links-box li a {
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  color: #2f2f2f;
  border-bottom: 1px solid #2f2f2f;
}
.post-share-option .othre-links-inner .links-box li a:hover {
  color: #ff3d3d;
  border-color: #ff3d3d;
}
.post-share-option .othre-links-inner h4 {
  margin-bottom: 14px;
}
.post-share-option .othre-links-inner .post-block {
  display: block;
}
@media (max-width: 991px) {
  .post-share-option .othre-links-inner .post-block {
    margin: 40px 0;
  }
}
.post-share-option .othre-links-inner .post-block .image-box {
  position: relative;
  display: block;
  overflow: hidden;
  background: #000;
  height: 300px;
}

/** main-footer **/
.main-footer {
  position: relative;
  display: block;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 143px;
  margin-top: 4px;
}
.main-footer .footer-widget.logo_widget {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin: 0 0 20px 0;
}
.main-footer .footer-widget p {
  line-height: 28px;
}
.main-footer .footer_image_section {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.main-footer .footer_image_section img {
  height: 40px;
  width: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-footer .footer_column_divide {
  display: grid;
  grid-template-columns: 1.5fr 1.2fr 1fr;
  gap: 40px;
}
@media (max-width: 991px) {
  .main-footer .footer_column_divide {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .main-footer .footer_column_divide {
    grid-template-columns: 1fr;
  }
}
.main-footer .widget-content {
  position: relative;
  display: block;
  padding-bottom: 72px;
  border-bottom: 1px solid #f0e3fb;
}
.main-footer .footer-social li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}
.main-footer .footer-social li:last-child {
  margin-right: 0px;
}
.main-footer .footer-social a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #efd5f7;
  color: #c74fef;
  text-align: center;
  line-height: 44px;
  z-index: 1;
}
.main-footer .footer-social a:before {
  position: absolute;
  content: "";
  background-image: linear-gradient(0deg, #9e50ea 0%, #de53ef 100%);
  background-image: linear-gradient(0deg, #9e50ea 0%, #de53ef 100%);
  background-image: linear-gradient(0deg, #9e50ea 0%, #de53ef 100%);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0, 0);
  transition: 0.5s ease;
  border-radius: 50%;
  z-index: -1;
}
.main-footer .footer-social a:hover {
  color: #fff;
}
.main-footer .footer-social a:hover:before {
  transform: scale(1, 1);
}
.main-footer .footer-logo img {
  height: 100px;
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-footer .widget-title {
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 40px;
}
.main-footer .footer_image_section {
  margin-bottom: 40px;
}
.main-footer .contact-widget .contact-list li {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 15px;
  padding: 0px 0px 0px 35px;
}
.main-footer .contact-widget .contact-list li a {
  position: relative;
  display: inline-block;
  color: #6e6773;
  font-size: 18px;
  line-height: 28px;
}
.main-footer .contact-widget .contact-list li a:hover {
  color: #984314;
}
.main-footer .contact-widget .contact-list li:last-child {
  margin-bottom: 0px;
}
.main-footer .contact-widget .contact-list li i {
  position: absolute;
  top: 7px;
  left: 0;
  font-size: 18px;
  color: #615866;
}
.main-footer .contact-widget .contact-list li:first-child i {
  font-size: 21px;
}
.main-footer .link-widget .links-list li {
  position: relative;
  display: block;
  margin-bottom: 14px;
}
.main-footer .link-widget .links-list li:last-child {
  margin-bottom: 0px;
}
.main-footer .link-widget .links-list li a {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #827a88;
  font-weight: 600;
}
.main-footer .link-widget .links-list li a:hover,
.main-footer .footer-bottom .copyright a:hover {
  color: #984314;
}
.main-footer .footer-bottom .left-content {
  position: relative;
  float: left;
}
.main-footer .footer-widget.link-widget {
  float: right;
}
@media (max-width: 991px) {
  .main-footer .footer-widget.link-widget {
    float: none;
    margin: 40px 0 0;
  }
}
.main-footer .footer-bottom .copyright a {
  color: #827988;
}
.main-footer .footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .main-footer .footer-bottom {
    display: grid;
    gap: 20px;
  }
}
.main-footer .footer-bottom .right-content .download-btn li:first-child a {
  background: #2ba2ff;
}
.main-footer .footer-bottom .right-content .download-btn li:last-child a {
  background: #a94dec;
}
.main-footer .footer-bottom .right-content .download-btn li:first-child a:hover {
  background: #a94dec;
}
.main-footer .footer-bottom .right-content .download-btn li:last-child a:hover {
  background: #2ba2ff;
}
.main-footer::before {
  position: absolute;
  content: "";
  background: url(../image/footer-bg.png);
  width: 100%;
  height: auto;
  left: 0px;
  bottom: 0px;
  right: 0px;
  top: -10%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .main-footer::before {
    height: auto;
  }
}
.main-footer::after {
  color: black;
  position: absolute;
  content: "";
  background: url(../image/footer-map.png);
  width: 750px;
  height: 527px;
  top: 50px;
  left: 25%;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .main-footer::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
  }
}
@media (max-width: 800px) {
  .main-footer::after {
    width: 100%;
  }
}
.main-footer .widget-content {
  z-index: 1;
}
.main-footer .footer-social a {
  background: transparent;
  color: #222;
}
.main-footer .footer-social a:before {
  background-image: linear-gradient(0deg, #fb4477 0%, #fb996d 100%);
  background-image: linear-gradient(0deg, #fb4477 0%, #fb996d 100%);
  background-image: linear-gradient(0deg, #fb4477 0%, #fb996d 100%);
}
.main-footer .footer-social a:hover {
  color: #fff;
}
.main-footer .footer-bottom .right-content .download-btn li:first-child a:hover {
  --x: 100%;
}
.main-footer .widget-content {
  padding-bottom: 45px;
}
.main-footer .footer-bottom .right-content .download-btn li:last-child a:hover {
  --x: 100%;
}

.scroll-top {
  display: inline-block;
  background-image: linear-gradient(0deg, #e0eff9 0%, #fbe6e5 100%);
  width: 50px;
  height: 50px;
  text-align: center;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  border-radius: 50%;
  border: none;
}
.scroll-top .text {
  position: relative;
  display: block;
  color: #2ba2ff;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}
.scroll-top:active {
  background-image: linear-gradient(0deg, #f9a53e 0%, #ea867f 100%);
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
}
.scroll-top:before {
  position: absolute;
  content: "";
  background-image: linear-gradient(0deg, #f9a53e 0%, #ea867f 100%);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0, 0);
  transition: 0.5s ease;
  border-radius: 50%;
  z-index: -1;
}
.scroll-top:hover {
  background: transparent;
  color: #fff;
  text-decoration: none;
}
.scroll-top:hover::before {
  transform: scale(1, 1);
  background-image: linear-gradient(0deg, #f9a53e 0%, #ea867f 100%);
}

.services {
  position: relative;
  display: block;
  margin: 100px 0px 100px 0px;
}
.services .service_block_divide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 1200px) {
  .services .service_block_divide {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .services .service_block_divide {
    grid-template-columns: repeat(1, 1fr);
  }
}
.services .button_section {
  text-align: center;
  margin: 40px auto 0 0;
}
.services .button_section .btn {
  padding: 12px 40px;
}

.service-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 8px 12px 0px rgba(205, 205, 205, 0.35);
  transition: all 500ms ease;
  height: 100%;
}

.service-block:before {
  content: "";
  width: 273px;
  height: 273px;
  background: #d858f5;
  border-radius: 50%;
  position: absolute;
  top: -148px;
  left: -83px;
  transform: scale(0);
}

.service-block:hover:before {
  transform: scale(1);
  transition: all 0.5s linear;
  transition-delay: 0.1s;
}

.service-block:hover {
  border-color: transparent;
}

.service-block .snow-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  z-index: -1;
}

.service-block .snow-dot:nth-child(2) {
  top: 25px;
  left: 78%;
  animation: scale-upOne 1.1s alternate infinite ease-in;
}

.service-block .snow-dot:nth-child(3) {
  top: 75px;
  left: 61%;
  animation: scale-upOne 0.8s alternate infinite ease-in;
}

.service-block .snow-dot:nth-child(4) {
  top: 136px;
  left: 84%;
  animation: scale-upOne 1s alternate infinite ease-in;
}

.service-block .snow-dot:nth-child(5) {
  bottom: 35px;
  right: 12%;
  animation: scale-upOne 1.2s alternate infinite ease-in;
}

.service-block .snow-dot:nth-child(6) {
  bottom: 80px;
  right: 31%;
  animation: scale-upOne 0.9s alternate infinite ease-in;
}

.service-block .snow-dot:nth-child(7) {
  bottom: 40px;
  right: 51%;
  animation: scale-upOne 1s alternate infinite ease-in;
}

.service-block:hover h3 a,
.service-block:hover h3,
.service-block:hover p {
  color: #fff !important;
}

.service-block .hover-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #9a5be8;
  z-index: -3;
  opacity: 0;
  transition: all 0.3s linear;
}

.service-block:hover .hover-content {
  opacity: 1;
}

.service-block .hover-content:before {
  content: "";
  width: 493px;
  height: 493px;
  background: #c647fe;
  border-radius: 50%;
  position: absolute;
  top: -250px;
  left: -180px;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.service-block:hover .hover-content:before {
  opacity: 1;
  transform: translate(0%, 0%);
  transition: all 0.9s linear;
}

.service-block .hover-content:after {
  content: "";
  width: 602px;
  height: 602px;
  background: #a461e8;
  border-radius: 50%;
  position: absolute;
  top: -196px;
  left: -180px;
  z-index: -1;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.service-block:hover .hover-content:after {
  opacity: 1;
  transform: translate(0%, 0%);
  transition: all 1.3s linear;
}

.service-block:hover {
  transform: translateY(-10px);
  box-shadow: 0px 25px 25px 0px rgba(0, 0, 0, 0.1);
}

.service-block .icon-box {
  width: 100%;
  height: 200px;
  text-align: center;
  position: relative;
}
.service-block .icon-box img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.service-block .icon-box::after {
  content: "";
  border-radius: 10px;
  background-image: -ms-linear-gradient(-3deg, #8f52e9 0%, #d94efc 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.service-block:hover .icon-box::before {
  opacity: 0;
}

.service-block .icon-box i {
  color: #fff;
  font-size: 22px;
  position: relative;
  z-index: 1;
}

.service-block h3,
.service-block p {
  margin: 0;
}

.service-block h3 {
  font-size: 24px;
  line-height: 38px;
  color: #34263c;
  margin-bottom: 16px;
  margin-top: 4px;
}
@media (max-width: 991px) {
  .service-block h3 {
    font-size: 20px;
  }
}

.service-block h3 a {
  color: #34263c;
}

.service-block h3 a:hover {
  color: #b750f3;
}

.service-block p {
  font-size: 16px;
  line-height: 28px;
  color: #34263c;
  opacity: 0.8;
}

.title_head {
  text-align: center;
  margin: 0 0 80px auto;
}
@media (max-width: 700px) {
  .title_head {
    margin: 0 0 44px auto;
  }
}
.title_head h2 {
  color: transparent;
  background: -webkit-linear-gradient(0deg, #3871c1, #c63e35 25%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 46px;
}
@media (max-width: 991px) {
  .title_head h2 {
    font-size: 32px;
  }
}
.title_head h2 a {
  color: transparent;
  background: -webkit-linear-gradient(0deg, #3871c1, #c63e35 25%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #c0540e;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 46px;
}
@media (max-width: 500px) {
  .title_head h2 a {
    font-size: 32px;
  }
}

.about_section {
  margin: 100px 0;
}
.about_section .about_section_devide {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 100px;
  align-items: center;
}
@media (max-width: 1200px) {
  .about_section .about_section_devide {
    gap: 40px;
  }
}
@media (max-width: 991px) {
  .about_section .about_section_devide {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 500px) {
  .about_section .about_section_devide {
    gap: 140px;
  }
}
@media (max-width: 991px) {
  .about_section .about_section_devide .image-column {
    order: 2;
  }
}

.about_section .title-box .icon-box i {
  position: relative;
  display: inline-block;
  font-size: 30px;
  color: transparent;
  background: -webkit-linear-gradient(0deg, #9d4af6, #f94a79 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  top: 18px;
}

.about_section .title-box .text {
  line-height: 34px;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 500;
}

.about_section .counter-inner {
  margin-top: 50px;
}

.about_section .title-box {
  position: relative;
  display: block;
}

.about_section .counter-inner {
  position: relative;
}
.about_section .counter-inner .counter-block {
  position: relative;
  display: block;
  width: 214px;
  height: 214px;
  text-align: center;
  border-radius: 50%;
  margin: 0 auto;
  padding: 74px 0px 40px 0px;
  box-shadow: 2px 10px 34px rgba(186, 185, 185, 0.35);
  color: #984314;
}
@media (max-width: 1200px) {
  .about_section .counter-inner .counter-block {
    width: 196px;
    height: 196px;
  }
}
.about_section .counter-inner .counter-block h4 {
  font-size: 16px;
}
.about_section .counter-inner .counter-block .counter-value {
  font-size: 32px;
  font-weight: 700;
}
.about_section .counter-inner .counter-block:first-child {
  background: #e0eff9;
  position: absolute;
  left: -12px;
  top: 112px;
}
@media (max-width: 1200px) {
  .about_section .counter-inner .counter-block:first-child {
    left: 134px;
    top: 144px;
  }
}
@media (max-width: 767px) {
  .about_section .counter-inner .counter-block:first-child {
    left: 56px;
    top: 146px;
  }
}
.about_section .counter-inner .counter-block:nth-child(2) {
  background: #fbe6e5;
}
.about_section .counter-inner .counter-block:nth-child(3) {
  background: #efefef;
  top: -40px;
  right: -50px;
  z-index: -1;
}
@media (max-width: 1400px) {
  .about_section .counter-inner .counter-block:nth-child(3) {
    top: -30px;
    right: -80px;
  }
}
@media (max-width: 1200px) {
  .about_section .counter-inner .counter-block:nth-child(3) {
    top: -114px;
    right: 148px;
  }
}
@media (max-width: 991px) {
  .about_section .counter-inner .counter-block:nth-child(3) {
    top: -32px;
    right: -70px;
  }
}
@media (max-width: 552px) {
  .about_section .counter-inner .counter-block:nth-child(3) {
    top: -42px;
    right: -80px;
  }
}
@media (max-width: 500px) {
  .about_section .counter-inner .counter-block:nth-child(3) {
    top: 106px;
    right: 12px;
  }
}
.about_section .counter-inner .stats-container {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 30px auto;
  max-width: 1000px;
  padding-inline: 16px;
}
.about_section .counter-inner .stats-container .stat {
  background: #d20062;
  padding: 24px;
  text-align: center;
  color: #ffd0ec;
  border-radius: 25px;
}
.about_section .counter-inner .stats-container .stat .odometer {
  font-size: 50px;
  font-weight: bold;
  display: inline-block;
}
.about_section .counter-inner .stats-container .stat .type {
  font-size: 20px;
}
.about_section .counter-inner .odometer.plus {
  position: relative;
}
@media (max-width: 700px) {
  .about_section .counter-inner .stats-container {
    grid-template-columns: 1fr;
  }
}

/** testimonial-section **/
.testimonial-section {
  background-size: cover;
  padding: 100px 0;
  background-repeat: no-repeat;
  background-position: center top;
}
.testimonial-section .testimonial-carousel {
  text-align: center;
}
.testimonial-section .testimonial-carousel .svg_top svg {
  width: 80px;
  height: 80px;
  color: #e76f0f;
}
.testimonial-section .title-block {
  margin-bottom: 57px;
}
.testimonial-section .title-block h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #2f2f2f;
}
.testimonial-section .container {
  position: relative;
}
.testimonial-section .container .bubbles-1,
.testimonial-section .container .bubbles-2,
.testimonial-section .container .bubbles-3,
.testimonial-section .container .bubbles-4 {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background-color: #c563f5;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  animation: zoom-fade-two 5s infinite linear;
}
.testimonial-section .container .bubbles-1 {
  top: 0;
  left: 125px;
}
.testimonial-section .container .bubbles-2 {
  bottom: 0;
  left: 215px;
  background-color: #c563f5;
}
.testimonial-section .container .bubbles-3 {
  right: 20px;
  bottom: 0;
  background-color: #c563f5;
}
.testimonial-section .container .bubbles-4 {
  right: 130px;
  top: 0;
  width: 17px;
  height: 17px;
  background-color: #d47df1;
}
.testimonial-section .bubbles-1,
.testimonial-section .bubbles-2,
.testimonial-section .bubbles-3 {
  background-color: #c563f5;
}
.testimonial-section .bubbles-4 {
  background-color: #d47df1;
}
.testimonial-section .title-block h3 {
  color: #fff;
}
.testimonial-section .signle-testimonial-block p {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 32px;
  color: #f1e3fc;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .testimonial-section .signle-testimonial-block p {
    font-size: 16px;
  }
}
.testimonial-section .signle-testimonial-block .author-info h3 {
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  color: #f1e3fc;
  margin-bottom: 1px;
}
.testimonial-section .signle-testimonial-block .author-info span {
  position: relative;
  display: block;
  font-size: 18px;
  color: #f1e3fc;
}
.testimonial-section .title-block h3 {
  color: #222;
}
.testimonial-section .signle-testimonial-block p {
  color: #6b6a6c;
}
.testimonial-section .signle-testimonial-block .author-info h3 {
  color: #504f50;
}
.testimonial-section .signle-testimonial-block .author-info span {
  color: #828183;
}
.testimonial-section .container .bubbles-2 {
  background-color: #e76f0f;
  box-shadow: 2px 30px 34px rgba(186, 185, 185, 0.8);
}
.testimonial-section .container .bubbles-4 {
  background-color: #989898;
  box-shadow: 2px 30px 34px rgba(186, 185, 185, 0.8);
}
.testimonial-section .container .bubbles-1 {
  background-color: #de5e55;
  box-shadow: 2px 30px 34px rgba(186, 185, 185, 0.8);
}
.testimonial-section .container .bubbles-3 {
  background-color: #75b8e5;
  box-shadow: 2px 30px 34px rgba(186, 185, 185, 0.8);
}
.testimonial-section .owl-dots-none .owl-dots {
  display: none !important;
}
.testimonial-section .nav-style-one .owl-nav {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 75px;
}
.testimonial-section .nav-style-one .owl-nav .owl-prev,
.testimonial-section .nav-style-one .owl-nav .owl-next {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  margin: 0px 16px;
  transition: all 500ms ease;
}
.testimonial-section .nav-style-one .owl-nav .owl-prev:before,
.testimonial-section .nav-style-one .owl-nav .owl-next:before {
  position: absolute;
  content: "";
  background-image: linear-gradient(0deg, #f9a53e 0%, #ea867f 100%);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0, 0);
  transition: 0.5s ease;
  border-radius: 50%;
  z-index: -1;
}
.testimonial-section .owl-theme .owl-nav [class*=owl-]:hover {
  background: transparent;
  color: #fff;
  text-decoration: none;
}
.testimonial-section .nav-style-one .owl-nav .owl-prev:hover:before,
.testimonial-section .nav-style-one .owl-nav .owl-next:hover:before {
  transform: scale(1, 1);
  background-image: linear-gradient(0deg, #f9a53e 0%, #ea867f 100%);
}

/** news-style-two **/
.front_blog {
  position: relative;
  display: block;
  margin: 100px 0;
  /* If you have content within your owl-item that needs to stretch */
}
.front_blog:before {
  position: absolute;
  content: "";
  background: url(../image/blog-shape.png);
  width: 70%;
  height: 300px;
  right: 0px;
  left: 0;
  top: 150px;
  background-repeat: no-repeat;
}
.front_blog .single_blog {
  text-align: center;
  margin-left: 30px;
  background: #ffffff;
  box-shadow: -4px -2px 16px rgba(190, 186, 194, 0.35);
  height: 100%;
}
@media (max-width: 600px) {
  .front_blog .single_blog {
    margin-left: 0px;
  }
}
.front_blog .single_blog .image-box {
  position: relative;
  display: block;
  overflow: hidden;
  background: #000;
  height: 220px;
}
.front_blog .single_blog .image-box img {
  width: 100%;
  opacity: 1;
  transition: all 1500ms ease;
}
.front_blog .single_blog:hover .image-box img {
  opacity: 0.5;
  transform: scale(1.3);
}
.front_blog .single_blog .lower-content {
  position: relative;
  display: block;
  padding: 20px 16px;
}
.front_blog .single_blog .lower-content h3 {
  font-size: 20px;
  line-height: 32px;
  color: #34263c;
  margin-bottom: 10px;
}
.front_blog .single_blog .lower-content h3 a {
  color: #34263c;
  font-weight: 600;
  color: #984314;
}
.front_blog .single_blog .lower-content h3 a:hover {
  color: #984314;
}
.front_blog .single_blog .lower-content .post-info {
  margin-bottom: 12px;
  color: #bdbdbd;
}
.front_blog .single_blog .lower-content .author-name {
  color: #6e6773;
  font-weight: 600;
}
.front_blog .single_blog .lower-content .author-name svg {
  width: 24px;
  height: 24px;
}
.front_blog .owl-dots {
  display: none !important;
}
.front_blog .nav-style-one .owl-nav {
  display: block;
  margin: 0px;
}
.front_blog .nav-style-one .owl-nav .owl-prev,
.front_blog .nav-style-one .owl-nav .owl-next {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  transition: all 500ms ease;
  color: #e76f0f;
  border: 2px solid #e76f0f;
}
.front_blog .nav-style-one .owl-nav .owl-prev:before,
.front_blog .nav-style-one .owl-nav .owl-next:before {
  position: absolute;
  content: "";
  background-image: linear-gradient(0deg, #f9a53e 0%, #ea867f 100%);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0, 0);
  transition: 0.5s ease;
  border-radius: 50%;
  z-index: -1;
}
.front_blog .owl-theme .owl-nav [class*=owl-]:hover {
  background: transparent;
  color: #fff;
  text-decoration: none;
}
.front_blog .nav-style-one .owl-nav .owl-prev:hover:before,
.front_blog .nav-style-one .owl-nav .owl-next:hover:before {
  transform: scale(1, 1);
  background-image: linear-gradient(0deg, #f9a53e 0%, #ea867f 100%);
}
.front_blog .owl-carousel .owl-stage {
  display: flex;
}
.front_blog .owl-carousel .owl-item {
  display: flex;
  margin: 40px 0;
}
.front_blog .owl-carousel .owl-item .single_blog_divide {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.faq-section {
  padding: 40px 0 80px;
  background: linear-gradient(90deg, #ffffff 1%, #f7f7f7 100%);
  margin: 100px 0;
}
.faq-section .accordion-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* Rotate the icon when expanded */
}
.faq-section .accordion-box .accordion-button::after {
  background-image: none !important;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  transform: rotate(180deg);
  content: "\f067";
  font-size: 20px;
  color: #c63e35;
  margin-left: auto;
  transition: transform 0.3s ease;
}
.faq-section .accordion-box .accordion-button:not(.collapsed)::after {
  content: "\f068";
}
.faq-section .accordion-box .accordion-item {
  border: none;
}
.faq-section .accordion-box .accordion-header {
  padding: 0;
}
.faq-section .accordion-box .accordion-header button {
  background: linear-gradient(to left, #ffeef2 0%, #faf2fe 100%);
  box-shadow: 0 0px 6px 0px rgba(0, 0, 0, 0.1);
  color: #c0540e;
  font-weight: 700;
}
.faq-section .accordion-box .accordion-body {
  padding: 24px;
}
.faq-section .accordion-box .accordion-body ul {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq-section .accordion-box .accordion-body ul li {
  list-style: circle;
}

.tilt-box {
  transition: all 0.2s ease;
}

/* ===== Contact CSS ===== */
.contact {
  padding: 120px 0px;
}

@media (max-width: 767px) {
  .contact {
    padding: 80px 0;
  }
}
.single-contact-info {
  display: flex;
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.05);
}
@media (max-width: 450px) {
  .single-contact-info {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 450px) {
  .single-contact-info .contact-meta {
    text-align: center;
  }
}

.single-contact-info .contact-icon {
  max-width: 50px;
  width: 100%;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-right: 24px;
}
.single-contact-info .contact-icon i {
  font-size: 28px;
}
@media (max-width: 450px) {
  .single-contact-info .contact-icon {
    margin-right: 0;
  }
}

.single-contact-info .contact-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: var(--primary-color);
  opacity: 0.2;
  z-index: -1;
  transform: scale(1.2);
}

.single-contact-info .contact-meta h5 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.single-contact-info .contact-meta p {
  font-size: 16px;
  line-height: 28px;
}

.contact-form-wrapper {
  box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  background: var(--white);
  padding: 40px;
}

@media (max-width: 767px) {
  .contact-form-wrapper {
    padding: 40px 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-form-wrapper {
    padding: 50px 40px;
  }
}
.contact-form-wrapper .contact-form-title {
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .contact-form-wrapper .contact-form-title {
    font-size: 24px;
  }
}
.contact-form-wrapper .form-group {
  margin-bottom: 25px;
}

.contact-form-wrapper .form-group label {
  display: block;
  font-weight: 600;
  font-size: 16px;
}

.contact-form-wrapper .form-group input,
.contact-form-wrapper .form-group textarea {
  display: block;
  width: 100%;
  padding: 15px 0;
  border: none;
  outline: none;
  border-bottom: 1px solid #f1f1f1;
  resize: none;
  color: #ccc;
  font-size: 14px;
}

.contact-form-wrapper .form-group input:focus,
.contact-form-wrapper .form-group textarea:focus {
  border-color: #559ddc;
}

.custom-pagination {
  margin: 40px auto 0;
  justify-content: center;
}
.custom-pagination .page-link {
  color: #292929 !important;
  padding: 6px 12px;
  border-radius: 6px;
  margin: 0 4px;
  font-size: 14px;
  font-weight: 600;
  border: none;
}
.custom-pagination .page-link:hover {
  background: #f1f8fd;
}
.custom-pagination .page-item.disabled .page-link {
  color: #999;
  border: none !important;
  background: none;
}
.custom-pagination .page-item.active .page-link {
  background-color: transparent;
  border: 1px solid #dcdcdc;
  color: #464646 !important;
  font-weight: bold;
}
.custom-pagination .page-item.active .page-link:hover {
  background: #f1f8fd;
}
.custom-pagination .dots {
  border: none !important;
  background: none !important;
  cursor: default;
}

/**==================================== page-title start============================================== **/
.page-title {
  position: relative;
  display: block;
  background: #fff;
  padding: 140px 0px 200px 0px;
  box-shadow: 2px 20px 30px rgba(186, 185, 185, 0.2);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 1400px) {
  .page-title {
    padding: 80px 0;
  }
}
@media (max-width: 1400px) {
  .page-title .image-box {
    display: none;
  }
}
.page-title img {
  height: 400px;
  width: 400px;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-title .content-box {
  position: relative;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.page-title .content-box h1 {
  position: relative;
  display: block;
  font-size: 46px;
  font-weight: 600;
  line-height: 50px;
  color: #2f2f2f;
  margin-bottom: 32px;
}
.page-title .content-box .page-breadcrumb li {
  position: relative;
  display: inline-block;
  font-size: 22px;
  line-height: 30px;
  color: #6c6c6c;
  text-transform: capitalize;
  padding-right: 14px;
  margin-right: 4px;
}
.page-title .content-box .page-breadcrumb li::before {
  position: absolute;
  content: "";
  background: #6c6c6c;
  width: 5px;
  height: 1px;
  right: 0px;
  top: 17px;
}
.page-title .content-box .page-breadcrumb li a {
  position: relative;
  display: inline-block;
  font-size: 22px;
  line-height: 30px;
  color: #6c6c6c;
}
.page-title .content-box .page-breadcrumb li a:hover {
  color: #c0540e;
}
.page-title .content-box .page-breadcrumb li:last-child:before {
  display: none;
}
.page-title .image-1 {
  position: absolute;
  left: 20px;
  bottom: 5px;
  z-index: 1;
}
.page-title .image-3 {
  position: absolute;
  right: 30px;
  bottom: 0px;
}
.page-title .floating-1 {
  animation-name: floating-1;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  margin-left: 30px;
  margin-top: 5px;
}
.page-title .floating-2 {
  animation-name: floating-2;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  margin-left: 30px;
  margin-top: 5px;
}
@keyframes floating-1 {
  from {
    transform: translate(0, 0px);
  }
  65% {
    transform: translate(0, 15px);
  }
  to {
    transform: translate(0, 0px);
  }
}
@keyframes floating-2 {
  from {
    transform: translate(0, 0px);
  }
  45% {
    transform: translate(0, 10px);
  }
  to {
    transform: translate(0, 0px);
  }
}

.page-title .content-box .page-breadcrumb li:last-child:before {
  display: none;
}

.page-title .content-box .page-breadcrumb li:last-child {
  padding: 0px;
  margin: 0px;
}

/**==================================== page-title end ============================================== **/
/**==================================== Blog list start ============================================== **/
.news-block-six {
  position: relative;
  display: block;
  margin-bottom: 50px;
  box-shadow: 0px 5px 15px rgba(190, 186, 194, 0.35);
}
.news-block-six .image-box {
  position: relative;
  display: block;
  background: #000;
  overflow: hidden;
}
.news-block-six .image-box img {
  width: 100%;
  transition: all 300ms ease;
}

.news-block-six:hover .image-box img {
  transform: scale(1.1);
  opacity: 0.5;
}

.news-block-six .lower-content .post-info {
  position: relative;
  display: block;
  font-size: 16px;
  color: #2f2f2f;
  margin-bottom: 18px;
}

.news-block-six .lower-content h2 {
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 14px;
}

.news-block-six .lower-content h2 a {
  display: -webkit-box; /* Required for webkit clamp */
  -webkit-line-clamp: 2; /* Show only 2 lines */
  -webkit-box-orient: vertical; /* Vertical layout */
  overflow: hidden; /* Hide extra text */
  text-overflow: ellipsis; /* Show ... */
  color: #984314;
}

.news-block-six .lower-content h2 a:hover {
  color: #464646;
}

.news-block-six .lower-content .text p {
  color: #2f2f2f;
  display: -webkit-box; /* Required for webkit clamp */
  -webkit-line-clamp: 3; /* Show only 2 lines */
  -webkit-box-orient: vertical; /* Vertical layout */
  overflow: hidden; /* Hide extra text */
  text-overflow: ellipsis; /* Show ... */
}

.footer-subscribe.blog-page {
  padding-top: 150px;
}

.blog-list-2 {
  position: relative;
  display: block;
  padding: 100px 0px 40px 0px;
}

.blog-list-2 .news-block-six {
  box-shadow: none;
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .blog-list-2 .news-block-six {
    border-bottom: 1px solid #efefef;
  }
}

.blog-list-2 .news-block-six .lower-content .post-info {
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .blog-list-2 .news-block-six .lower-content .post-info {
    margin-bottom: 12px;
  }
}

.blog-list-2 .news-block-six .lower-content h2 {
  margin-bottom: 12px;
}

.blog-list-2 .news-block-six .lower-content {
  padding: 0px 20px 0px 40px;
}
@media (max-width: 991px) {
  .blog-list-2 .news-block-six .lower-content {
    padding: 20px 0;
  }
}

.blog-list-2 .news-block-six .lower-content .text p {
  color: #838383;
}

.news-block-six .link-box a {
  color: #984314;
}

.news-block-six .link-box a:hover {
  color: #525252;
}

.contact-section {
  margin: 140px auto;
  max-width: 100%;
}
@media (max-width: 767px) {
  .contact-section .contact-info .info-column {
    margin: 80px auto;
  }
}
@media (max-width: 991px) {
  .contact-section .contact-info .info-column:last-child {
    margin: 80px auto;
  }
}
.contact-section .contact-info .single-info-box {
  position: relative;
  display: block;
  max-width: 385px;
  width: 100%;
  background: #fff;
  padding: 0px 30px 66px 30px;
  box-shadow: 0px 0px 20px #fcf1f1;
  text-align: center;
  height: 100%;
}
@media (max-width: 767px) {
  .contact-section .contact-info .single-info-box {
    margin: auto;
  }
}
.contact-section .contact-info .single-info-box svg {
  width: 40px;
  height: 40px;
}
.contact-section .contact-info .single-info-box h4 {
  position: relative;
  display: block;
  font-size: 20px;
  font-family: "Muli", sans-serif;
  font-weight: 600;
  color: #503c57;
  margin-bottom: 31px;
}
.contact-section .contact-info .single-info-box li {
  position: relative;
  display: block;
  margin-bottom: 27px;
  line-height: 34px;
}
.contact-section .contact-info .single-info-box li:last-child {
  margin-bottom: 0px;
}
.contact-section .contact-info .single-info-box li h5 {
  position: relative;
  display: block;
  font-size: 18px;
  font-family: "Muli", sans-serif;
  font-weight: 600;
  color: #503c57;
  margin-bottom: 7px;
}
.contact-section .contact-info .single-info-box li p {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 34px;
  color: #a3a1a1;
}
.contact-section .contact-info .single-info-box li a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 28px;
  color: #a3a1a1;
}
.contact-section .contact-info .single-info-box li.phone h5 {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 28px;
  font-family: "Muli", sans-serif;
  font-weight: 600;
  color: #272626;
}
.contact-section .contact-info .single-info-box li.phone h5 a {
  position: relative;
  display: inline-block;
  color: #272626;
}
.contact-section .contact-info .single-info-box .icon-box {
  display: inline-block;
  color: #a0a0a0;
  width: 116px;
  height: 116px;
  line-height: 116px;
  text-align: center;
  background: #fff;
  border-radius: 50%;
  margin-top: -55px;
  margin-bottom: 54px;
  box-shadow: 0px 10px 20px rgba(186, 185, 185, 0.2);
  transition: all 500ms ease;
}
.contact-section .contact-info .single-info-box:hover .icon-box {
  transform: rotateY(180deg);
  color: #fff;
  background: #984314;
}

.google-map-section {
  width: 100%;
  margin-bottom: 40px;
}

.contact-form_page .form-group {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.contact-form_page .form-group input[type=text],
.contact-form_page .form-group input[type=email],
.contact-form_page .form-group input[type=tel],
.contact-form_page .form-group textarea {
  height: 48px;
  border-radius: 8px;
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  outline: none;
}
.contact-form_page .form-group input[type=text]:focus,
.contact-form_page .form-group input[type=email]:focus,
.contact-form_page .form-group input[type=tel]:focus,
.contact-form_page .form-group textarea:focus {
  box-shadow: none;
  outline: none;
  border-color: #e0eff9;
}
.contact-form_page .form-group:last-child {
  margin-bottom: 0px;
}
.contact-form_page .form-group textarea {
  height: 210px;
  resize: none;
  margin-bottom: 20px;
}
.contact-form_page .contact-form-area {
  background: #fff;
  padding: 40px;
  box-shadow: 0px 10px 20px rgba(186, 185, 185, 0.2);
  margin: 80px auto;
  border-radius: 4px;
}

.login_center-area .wrapper {
  margin: 40px auto;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}
.login_center-area .head_section h2 {
  color: #3d3d3d;
  font-size: 28px;
}
.login_center-area .head_section p {
  font-weight: 500;
  font-size: 14px;
  color: #989898;
}
.login_center-area .form-label {
  font-size: 14px;
  font-weight: 600;
}
.login_center-area .left-section {
  width: 55%;
  padding: 50px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.login_center-area .left-section .top_section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.login_center-area .left-section .top_section img {
  height: 80px;
  width: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
.login_center-area form {
  margin: 40px 0 0;
}
.login_center-area .left-section h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}
.login_center-area .right-section {
  width: 45%;
  background: #eaf3ff;
  color: #fff;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login_center-area .redirect-btn {
  border: 2px solid #bdbdbd;
  background: transparent;
  padding: 8px 25px;
  border-radius: 6px;
  color: #bdbdbd;
  float: right;
  /* margin-bottom: 50px; */
  text-decoration: none;
  font-weight: 500;
}
.login_center-area .redirect-btn:hover {
  background: #bdbdbd;
  color: #fff;
}
.login_center-area .right-section img {
  width: 100%;
  /* margin-top: 40px; */
}
.login_center-area .form-control {
  height: 48px;
  border-radius: 8px;
}
.login_center-area .form-control:focus {
  box-shadow: none;
  outline: none;
}
.login_center-area .functional-btn {
  background: #325b9b;
  border: none;
  width: 160px;
  height: 48px;
  border-radius: 6px;
  color: #fff;
  font-weight: 500;
  border: 2px solid #325b9b;
}
.login_center-area .functional-btn:hover {
  background: transparent;
  color: #325b9b;
}
@media (max-width: 991px) {
  .login_center-area .wrapper {
    flex-direction: column;
  }
  .login_center-area .left-section,
  .login_center-area .right-section {
    width: 100%;
  }
  .login_center-area .right-section {
    text-align: center;
    display: none;
  }
  .login_center-area .right-section .login-btn {
    float: none;
  }
}
.login_center-area .center-area {
  padding-top: 60px; /* pushes content down */
  padding-bottom: 60px; /* balances top+bottom space */
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .login_center-area .center-area {
    padding-top: 20px; /* reduces padding on small screens */
    padding-bottom: 20px;
    align-items: flex-start; /* allow normal scrolling */
  }
}

.who_we_are {
  position: relative;
  margin: 120px 0 70px;
}
.who_we_are .sec-title {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}
.who_we_are .sec-title .title {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: #ff2222;
  font-weight: 500;
  margin-bottom: 15px;
}
.who_we_are .sec-title h2 {
  position: relative;
  display: block;
  font-size: 40px;
  line-height: 1.28em;
  color: #222222;
  font-weight: 600;
  padding-bottom: 18px;
}
.who_we_are .sec-title h2:before {
  position: absolute;
  content: "";
  left: 0px;
  bottom: 0px;
  width: 50px;
  height: 3px;
  background-color: #d1d2d6;
}
.who_we_are .sec-title .text {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #848484;
  font-weight: 400;
  margin-top: 35px;
}
.who_we_are .sec-title.light h2 {
  color: #ffffff;
}
.who_we_are .sec-title.text-center h2:before {
  left: 50%;
  margin-left: -25px;
}
.who_we_are .list-style-one {
  margin-top: 80px;
}
.who_we_are .list-style-one li {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #222222;
  font-weight: 400;
  padding-left: 35px;
  margin-bottom: 12px;
}
.who_we_are .list-style-one li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0px;
  display: block;
  font-size: 18px;
  padding: 0px;
  color: #ff2222;
  font-weight: 600;
  -moz-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.6;
  font-family: "Font Awesome 5 Free";
}
.who_we_are .list-style-one li a:hover {
  color: #44bce2;
}
.who_we_are .btn-style-one {
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 30px;
  color: #ffffff;
  padding: 10px 30px;
  font-weight: 600;
  overflow: hidden;
  letter-spacing: 0.02em;
  background-color: #ff2222;
}
.who_we_are .btn-style-one:hover {
  background-color: #001e57;
  color: #ffffff;
}
.who_we_are .sec-title {
  margin-bottom: 45px;
}
.who_we_are .content-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 991px) {
  .who_we_are .content-column {
    grid-template-columns: 1fr;
  }
}
.who_we_are .text {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 26px;
  color: #222;
  font-weight: 400;
}
.who_we_are .list-style-one {
  margin-bottom: 45px;
}
.who_we_are .btn-box {
  position: relative;
}
.who_we_are .btn-box a {
  padding: 15px 50px;
}
.who_we_are .image-column {
  position: relative;
}
.who_we_are .image-column .text-layer {
  position: absolute;
  right: -110px;
  top: 50%;
  font-size: 325px;
  line-height: 1em;
  color: #ffffff;
  margin-top: -175px;
  font-weight: 500;
}
.who_we_are .image-column .inner-column {
  position: relative;
  padding-left: 120px;
  padding-bottom: 125px;
}
@media (max-width: 1600px) {
  .who_we_are .image-column .inner-column {
    padding-left: 0;
    margin: 0 0 100px 0;
  }
}
@media (max-width: 650px) {
  .who_we_are .image-column .inner-column {
    text-align: center;
  }
}
.who_we_are .image-column .inner-column:before {
  position: absolute;
  right: -150px;
  top: 98px;
  height: 520px;
  width: 100%;
  background-image: url(https://i.ibb.co/fxJ1jtC/about-circle-1.png);
  content: "";
  background-repeat: no-repeat;
}
@media (max-width: 1600px) {
  .who_we_are .image-column .inner-column:before {
    right: 0;
  }
}
@media (max-width: 700px) {
  .who_we_are .image-column .inner-column:before {
    display: none;
  }
}
.who_we_are .image-column .image-1 {
  position: relative;
}
.who_we_are .image-column .image-2 {
  position: absolute;
  right: -70px;
  bottom: 0;
  top: 80%;
  left: 70px;
}
@media (max-width: 1600px) {
  .who_we_are .image-column .image-2 {
    right: -10px;
    left: 10px;
  }
}
@media (max-width: 991px) {
  .who_we_are .image-column .image-2 {
    right: -40px;
    left: 40px;
  }
}
@media (max-width: 700px) {
  .who_we_are .image-column .image-2 {
    right: -10px;
    left: 10px;
  }
}
.who_we_are .image-column .image-2 img,
.who_we_are .image-column .image-1 img {
  /* border-radius: 4px; */
  border-radius: 4px 32px 32px 32px;
}
@media (max-width: 991px) {
  .who_we_are .image-column .image-2 img,
  .who_we_are .image-column .image-1 img {
    height: 300px;
  }
}
@media (max-width: 650px) {
  .who_we_are .image-column .image-2 img,
  .who_we_are .image-column .image-1 img {
    height: 200px;
  }
}
.who_we_are .image-column .image-2 img {
  box-shadow: 0 6px 20px rgb(42, 42, 42);
  border-radius: 4px 32px 32px 32px;
}
.who_we_are .image-column .video-link {
  position: absolute;
  left: 70px;
  top: 170px;
}
.who_we_are .image-column .video-link .link {
  position: relative;
  display: block;
  font-size: 22px;
  color: #191e34;
  font-weight: 400;
  text-align: center;
  height: 100px;
  width: 100px;
  line-height: 100px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 30px 50px rgba(8, 13, 62, 0.15);
  transition: all 300ms ease;
}
.who_we_are .image-column .video-link .link:hover {
  background-color: #191e34;
  color: #fff;
}

.mission_vission {
  margin: 80px 0;
}
.mission_vission .lower-content .content-box .icon-box {
  margin-bottom: 51px;
}
.mission_vission .lower-content .content-box h3 {
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  color: #2f2f2f;
  padding-right: 165px;
}
.mission_vission .lower-content .inner-content .single-box {
  position: relative;
  display: block;
  margin-bottom: 63px;
}
.mission_vission .lower-content .inner-content .single-box:last-child {
  margin-bottom: 0px;
}
.mission_vission .lower-content .inner-content .single-box h3 {
  position: relative;
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 14px;
}
.mission_vission .lower-content .inner-content .single-box h3 a {
  position: relative;
  display: inline-block;
  color: #2f2f2f;
}
.mission_vission .lower-content .inner-content .single-box h3 a:hover {
  color: #d357fb;
}
.mission_vission .lower-content .inner-content .single-box .text {
  position: relative;
  display: block;
  font-size: 18px;
}
.mission_vission .lower-content .fact-counter {
  margin-top: 27px;
}
.mission_vission .lower-content .inner-content {
  position: relative;
  display: block;
  padding-top: 26px;
}
.mission_vission .lower-content .icon-box {
  position: relative;
  display: inline-block;
}
.mission_vission .lower-content .icon-box::before {
  position: absolute;
  content: "";
  background: #ffffff;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  right: 70px;
  bottom: 36px;
  box-shadow: 0 0 0px 10px rgba(249, 74, 121, 0.2);
  animation: zoom-fade-two 5s infinite linear;
}
.mission_vission .lower-content h3 a {
  position: relative;
  display: inline-block;
  color: #2f2f2f;
  font-weight: 800;
  text-transform: capitalize;
}

.our_guiding_principle .features-section {
  position: relative;
  display: block;
  padding: 75px 0px 90px 0px;
  background-color: rgba(227, 153, 5, 0.0196078431);
}
.our_guiding_principle .features-section .feature_section_divide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 991px) {
  .our_guiding_principle .features-section .feature_section_divide {
    grid-template-columns: 1fr;
  }
}
.our_guiding_principle .features-section .title-box h3 {
  position: relative;
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 48px;
  color: #34263c;
  margin-bottom: 28px;
}
.our_guiding_principle .features-section .title-box p {
  font-size: 18px;
  line-height: 28px;
  color: #34263c;
  opacity: 0.8;
}
.our_guiding_principle .feature-block-body {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0px 14px 45px 0px rgba(205, 205, 205, 0.35);
  transition: all 500ms ease;
  height: 100%;
}
.our_guiding_principle .feature-block-body:before {
  content: "";
  width: 273px;
  height: 273px;
  background: #d858f5;
  border-radius: 50%;
  position: absolute;
  top: -148px;
  left: -83px;
  transform: scale(0);
}
.our_guiding_principle .feature-block-body:hover:before {
  transform: scale(1);
  transition: all 0.5s linear;
  transition-delay: 0.1s;
}
.our_guiding_principle .feature-block-body:hover {
  border-color: transparent;
}
.our_guiding_principle .feature-block-body .snow-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  z-index: -1;
}
.our_guiding_principle .feature-block-body .snow-dot:nth-child(1) {
  top: 25px;
  left: 41%;
  z-index: 1;
  animation: scale-upOne 1s alternate infinite ease-in;
}
.our_guiding_principle .feature-block-body .snow-dot:nth-child(2) {
  top: 25px;
  left: 78%;
  animation: scale-upOne 1.1s alternate infinite ease-in;
}
.our_guiding_principle .feature-block-body .snow-dot:nth-child(3) {
  top: 75px;
  left: 61%;
  animation: scale-upOne 0.8s alternate infinite ease-in;
}
.our_guiding_principle .feature-block-body .snow-dot:nth-child(4) {
  top: 136px;
  left: 84%;
  animation: scale-upOne 1s alternate infinite ease-in;
}
.our_guiding_principle .feature-block-body .snow-dot:nth-child(5) {
  bottom: 35px;
  right: 12%;
  animation: scale-upOne 1.2s alternate infinite ease-in;
}
.our_guiding_principle .feature-block-body .snow-dot:nth-child(6) {
  bottom: 80px;
  right: 31%;
  animation: scale-upOne 0.9s alternate infinite ease-in;
}
.our_guiding_principle .feature-block-body .snow-dot:nth-child(7) {
  bottom: 40px;
  right: 51%;
  animation: scale-upOne 1s alternate infinite ease-in;
}
.our_guiding_principle .feature-block-body:hover h3 a,
.our_guiding_principle .feature-block-body:hover h3,
.our_guiding_principle .feature-block-body:hover p {
  color: #fff !important;
}
.our_guiding_principle .feature-block-body .hover-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #9a5be8;
  z-index: -3;
  opacity: 0;
  transition: all 0.3s linear;
}
.our_guiding_principle .feature-block-body:hover .hover-content {
  opacity: 1;
}
.our_guiding_principle .feature-block-body .hover-content:before {
  content: "";
  width: 493px;
  height: 493px;
  background: #c647fe;
  border-radius: 50%;
  position: absolute;
  top: -250px;
  left: -180px;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.our_guiding_principle .feature-block-body:hover .hover-content:before {
  opacity: 1;
  transform: translate(0%, 0%);
  transition: all 0.9s linear;
}
.our_guiding_principle .feature-block-body .hover-content:after {
  content: "";
  width: 602px;
  height: 602px;
  background: #a461e8;
  border-radius: 50%;
  position: absolute;
  top: -196px;
  left: -180px;
  z-index: -1;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.our_guiding_principle .feature-block-body:hover .hover-content:after {
  opacity: 1;
  transform: translate(0%, 0%);
  transition: all 1.3s linear;
}
.our_guiding_principle .feature-block-body:hover {
  transform: translateY(-10px);
  box-shadow: 0px 25px 25px 0px rgba(0, 0, 0, 0.1);
}
.our_guiding_principle .feature-block-body .icon-box {
  width: 52px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  position: relative;
}
.our_guiding_principle .feature-block-body .icon-box svg {
  width: 60px;
  height: 60px;
  color: #984314;
}
.our_guiding_principle .feature-block-body .icon-box::after {
  content: "";
  border-radius: 10px;
  background-image: -ms-linear-gradient(-3deg, #8c2e28 0%, #a9342c 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.our_guiding_principle .feature-block-body .icon-box::before {
  content: "";
  width: 50px;
  height: 52px;
  border-radius: 10px;
  background-color: #f9d2cf;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(45deg);
  transform-origin: bottom right;
  z-index: -1;
  transition: all 500ms ease;
}
.our_guiding_principle .feature-block-body:hover .icon-box::before {
  opacity: 0;
}
.our_guiding_principle .feature-block-body .icon-box i {
  color: #fff;
  font-size: 22px;
  position: relative;
  z-index: 1;
}
.our_guiding_principle .feature-block-body h3,
.our_guiding_principle .feature-block-body p {
  margin: 0;
}
.our_guiding_principle .feature-block-body h3 {
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 38px;
  color: #34263c;
  margin-bottom: 15px;
  margin-top: 24px;
}
.our_guiding_principle .feature-block-body h3 a {
  position: relative;
  display: inline-block;
  color: #34263c;
}
.our_guiding_principle .feature-block-body h3 a:hover {
  color: #b750f3;
}
.our_guiding_principle .feature-block-body p {
  font-size: 16px;
  line-height: 28px;
  color: #34263c;
  opacity: 0.8;
}

.goal_section {
  display: block;
  margin: 80px 0;
}
.goal_section .goal_section_divide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 991px) {
  .goal_section .goal_section_divide {
    grid-template-columns: 1fr;
  }
}
.goal_section .goal_section_divide li {
  position: relative;
  padding-left: 35px;
}
.goal_section .goal_section_divide li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0px;
  display: block;
  font-size: 18px;
  padding: 0px;
  color: #984314;
  font-weight: 600;
  -moz-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.6;
  font-family: "Font Awesome 5 Free";
}
.goal_section .lower-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.goal_section .lower-content h3 {
  color: #984314;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 24px;
}
.goal_section .lower-content p {
  font-size: 16px;
  line-height: 28px;
  color: #34263c;
  opacity: 0.8;
}
.goal_section .title-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 40px;
}
@media (max-width: 991px) {
  .goal_section .title-box {
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    margin: 40px 0;
  }
}
.goal_section .title-box .top-text {
  color: transparent;
  background: -webkit-linear-gradient(0deg, #3871c1, #c63e35 25%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #c0540e;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 50px;
}
.goal_section .title-box .text {
  width: 80%;
  text-align: center;
}
@media (max-width: 991px) {
  .goal_section .title-box .text {
    width: 100%;
    text-align: left;
  }
}
.goal_section .sec-title {
  text-align: center;
  width: 80%;
  margin: 80px auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.compaint_and_feedback_form {
  display: flex;
  gap: 40px;
  justify-content: center;
}
@media (max-width: 991px) {
  .compaint_and_feedback_form {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.compaint_and_feedback_form .single_scaner {
  max-width: 385px;
  width: 100%;
  background: #fefdfa;
  padding: 20px;
  box-shadow: 0px 0px 20px #dfdfdf;
  text-align: center;
  height: 100%;
  border-radius: 8px;
}
@media (max-width: 991px) {
  .compaint_and_feedback_form .single_scaner {
    max-width: 100%;
  }
}
.compaint_and_feedback_form .single_scaner img {
  height: 200px;
  width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
.compaint_and_feedback_form .single_scaner .btn_section {
  display: flex;
  justify-content: center;
}
.compaint_and_feedback_form .single_scaner .btn_section .btn {
  color: #fff;
  height: 40px;
  padding: 4px 16px;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  align-items: center;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 24px;
  box-shadow: 0px 5px 10px -10px #ea867f;
  transition: all 500ms ease;
}
.compaint_and_feedback_form .single_scaner .btn_section .btn.feedback_form_btn {
  background: linear-gradient(90deg, #780865, #3871c1 50%, #053678) var(--x, 0)/200%;
}
.compaint_and_feedback_form .single_scaner .btn_section .btn.feedback_form_btn:hover {
  --x: 100%;
  color: #fff;
}
.compaint_and_feedback_form .single_scaner .btn_section .btn.complaint_form_btn {
  background: linear-gradient(90deg, #225091, #744716 35%, #e51212) var(--x, 0)/200%;
}
.compaint_and_feedback_form .single_scaner .btn_section .btn.complaint_form_btn:hover {
  --x: 100%;
  color: #fff;
}

.our_career {
  padding: 100px 0;
}
.our_career h3 {
  font-size: 24px;
  margin: 20px 0 8px;
  line-height: 1.28em;
  color: #222222;
  font-weight: 600;
}
.our_career p {
  font-size: 16px;
  line-height: 26px;
  color: #222222;
  font-weight: 400;
  margin-bottom: 12px;
  margin: auto;
}
.our_career ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 0 0 0 20px;
}
.our_career ul li {
  list-style: circle;
}
.our_career .career_opportunities_list_section .career_opportunities_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 1200px) {
  .our_career .career_opportunities_list_section .career_opportunities_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .our_career .career_opportunities_list_section .career_opportunities_list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.our_career .career_opportunities_list_section .career_opportunities_list .single_opportunity {
  background-color: #f4f7f7;
  border-radius: 16px;
  padding: 28px;
}
.our_career .career_opportunities_list_section .career_opportunities_list .single_opportunity .main-content {
  margin: 0 0 20px;
}
.our_career .career_opportunities_list_section .career_opportunities_list .single_opportunity .main-content svg {
  width: 20px;
  height: 20px;
}
.our_career .career_opportunities_list_section .career_opportunities_list .single_opportunity .main-content .title {
  margin-bottom: 24px;
  margin-top: 0;
}
.our_career .career_opportunities_list_section .career_opportunities_list .single_opportunity .main-content .title a {
  font-size: 24px;
  font-weight: 600;
  color: #984314;
}
.our_career .career_opportunities_list_section .career_opportunities_list .single_opportunity .main-content .work-type {
  color: #464646;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
.our_career .career_opportunities_list_section .career_opportunities_list .single_opportunity .main-content .desc {
  font-size: 14px;
  line-height: 1.87;
  padding: 12px 0 0 0;
}
.our_career .career_opportunities_list_section .career_opportunities_list .single_opportunity .recent-job-info {
  display: flex;
  justify-content: end;
}
.our_career .career_opportunities_list_section .career_opportunities_list .single_opportunity .recent-job-info .btn_secondary_rounded {
  font-size: 16px;
  line-height: 14px;
  padding: 10px 16px;
  text-transform: capitalize;
  border-radius: 12px;
}
.our_career .career_opportunities_list_section .title_head {
  margin: 60px 0;
}

.job_main_section {
  margin: 100px 0;
}
.job_main_section .job_section_divided {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 40px;
}
@media (max-width: 991px) {
  .job_main_section .job_section_divided {
    grid-template-columns: 1fr;
  }
}
.job_main_section .job_section_divided .top_info_section {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  margin: 20px auto;
}
.job_main_section .job_section_divided .top_info_section .top_info_left_section {
  display: grid;
  gap: 20px;
}
.job_main_section .job_section_divided .top_info_section .top_info_left_section .publish_date {
  color: #984314;
  font-size: 14px;
  font-weight: 600;
}
.job_main_section .job_section_divided .top_info_section .top_info_left_section .job_address {
  color: #464646;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.job_main_section .job_section_divided .sec_info {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0px auto 20px;
}
.job_main_section .job_section_divided .sec_info .sec_info-left {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.job_main_section .job_section_divided .sec_info .sec_info-left .jobs-amount {
  font-weight: 800;
  color: #17171d;
  font-size: 14px;
}
.job_main_section .job_section_divided .sec_info .job-apllication-area {
  font-weight: 800;
  color: #17171d;
  font-size: 14px;
}
.job_main_section .job_section_divided .sec_info .job-apllication-area .job-apllication-date {
  font-weight: 800;
  color: #c63e35;
}
.job_main_section .job_section_divided .left_detail_section ul {
  margin: 24px 0;
}
.job_main_section .job_section_divided .left_detail_section ul.numbering li {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #222222;
  font-weight: 400;
  padding-left: 35px;
  margin-bottom: 12px;
}
.job_main_section .job_section_divided .left_detail_section ul.numbering li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0px;
  display: block;
  font-size: 18px;
  padding: 0px;
  color: #ff2222;
  font-weight: 600;
  -moz-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.6;
  font-family: "Font Awesome 5 Free";
}
.job_main_section .job_section_divided .right_info_Section {
  /*Blog Side Bar*/
  /*Sidebar  Info 2*/
}
.job_main_section .job_section_divided .right_info_Section .side-bar {
  background-color: #fcfcfc;
  padding: 30px;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .job_main_section .job_section_divided .right_info_Section .side-bar {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .job_main_section .job_section_divided .right_info_Section .side-bar {
    padding: 15px;
  }
}
.job_main_section .job_section_divided .right_info_Section .job_info {
  padding-bottom: 30px;
}
.job_main_section .job_section_divided .right_info_Section .job_info li {
  display: block;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px 15px 15px 50px;
  position: relative;
  color: #17171d;
  font-size: 16px;
  margin-bottom: 10px;
}
.job_main_section .job_section_divided .right_info_Section .job_info li:last-child {
  margin-bottom: 0px;
}
.job_main_section .job_section_divided .right_info_Section .job_info li i {
  position: absolute;
  left: 15px;
  top: 19px;
  font-size: 18px;
  color: #1967d2;
}
.job_main_section .job_section_divided .right_info_Section .job_information .job_info2 {
  list-style: none;
  margin-bottom: 0px;
  margin-left: 15px;
}
.job_main_section .job_section_divided .right_info_Section .job_information .job_info2 li {
  margin-bottom: 10px;
}
.job_main_section .job_section_divided .right_info_Section .job_information .job_info2 li:last-child {
  margin-bottom: 0px;
}
.job_main_section .job_section_divided .right_info_Section .job_information .job_info2 li .single_info {
  position: relative;
  padding-left: 40px;
}
.job_main_section .job_section_divided .right_info_Section .job_information .job_info2 li .single_info i {
  position: absolute;
  left: 0px;
  top: 15px;
  font-size: 18px;
  color: #1967d2;
}
.job_main_section .job_section_divided .right_info_Section .job_information .job_info2 li .single_info .info_title {
  font-size: 14px;
  color: #666666;
}
.job_main_section .job_section_divided .right_info_Section .job_information .job_info2 li .single_info .info_discription {
  font-size: 16px;
  color: #17171d;
}

.applied_job_form .applied_job_form_divide {
  display: grid;
  gap: 20px;
}
.applied_job_form .applied_job_form_divide .form-group {
  display: grid;
}
.applied_job_form .btn {
  width: -moz-max-content;
  width: max-content;
}

.success-popup {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #4caf50;
  color: #fff;
  padding: 15px 25px;
  border-radius: 8px;
  display: none;
  z-index: 9999;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Font style */
.dropify-wrapper .dropify-message p {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  color: #444;
}

.dropify-wrapper .dropify-message span {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}

/* Adjust container height */
.dropify-wrapper {
  height: 160px !important;
}

/* Control preview image */
.dropify-wrapper .dropify-preview {
  height: 140px !important;
}

.dropify-wrapper .dropify-render img {
  height: 100% !important;
  width: 100% !important;
  -o-object-fit: contain;
     object-fit: contain; /* or contain */
}

.dropify-wrapper .dropify-clear::before {
  content: "✖"; /* Icon */
  font-size: 18px;
  color: #ff4444;
}

.dropify-wrapper .dropify-clear {
  font-size: 0 !important; /* Hide text */
}

.dropify-wrapper .dropify-clear {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.swal2-html-container {
  font-size: 16px !important;
  line-height: 26px;
}

.swal2-title {
  font-size: 28px;
  font-weight: 600;
  color: #984314;
}

.swal2-confirm {
  background-color: #6d2d60;
  color: #fff;
  height: 40px;
  padding: 4px 16px;
  display: flex;
  align-items: center;
}

label.error {
  color: red;
  font-size: 14px;
  margin-top: 5px;
  display: block;
}/*# sourceMappingURL=style.css.map */