/*
 Theme Name:   Hello Elementor Child
 Theme URI:    https://www.getzype.com/
 Description:  Child theme for Hello Elementor
 Author:       Bhavik
 Author URI:   https://www.getzype.com
 Template:     hello-elementor
 Version:      1.0.0
*/

/* Add your custom CSS below */
.notfound {
  padding: 100px;
  text-align: center;
}

* {
  font-family: "Poppinss", sans-serif;
  font-display: swap !important;
}
.elementor-widget-container p,
h2,
p span,
.elementor-heading-title {
  color: black !important;
}
strong,
b {
  font-weight: 600 !important;
}
.zype-loan-links .titleBold {
  font-weight: 600;
}
.breadcrumbEle .elementor-icon-list-text {
  font-size: 14px !important;
  font-weight: 500 !important;
}
@media (max-width: 520px) {
  .breadcrumbEle .elementor-icon-list-text {
    font-size: 11px !important;
  }
}
/* blog infography */
:root {
  --zype-primary: #2563eb;
  --zype-secondary: #1e40af;
  --zype-accent: #10b981;
  --zype-dark: #1f2937;
  --zype-light: #f8fafc;
  --zype-gray: #6b7280;
  --font-primary: "Poppinss", sans-serif;
  --font-secondary: "Poppinss", sans-serif;
}

.infographic-container {
  font-family: var(--font-primary);
  color: var(--zype-dark);
  line-height: 1.6;
  max-width: 800px;
  margin: 20px auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.1);
  overflow: hidden;
  border: 2px solid var(--zype-primary);
}

.info-header {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  color: var(--zype-dark);
  padding: 30px 40px;
  text-align: center;
  position: relative;
  border-bottom: 3px solid var(--zype-primary);
}

.info-logo {
  margin-bottom: 20px;
}

.info-logo img {
  height: 50px !important;
  width: auto !important;
}

.main-title {
  font-family: var(--font-secondary);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--zype-primary);
}

.subtitle {
  font-size: 1.1rem;
  opacity: 0.8;
  font-weight: 500;
  color: var(--zype-gray);
}

.intro-section {
  padding: 30px 40px;
  text-align: center;
  background: var(--zype-light);
}

.intro-text {
  font-size: 1.1rem;
  color: var(--zype-gray);
  max-width: 600px;
  margin: 0 auto;
}

.benefits-container {
  padding: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.benefit-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
  border-color: var(--zype-primary);
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--zype-primary), var(--zype-accent));
}

.step-number {
  position: absolute;
  top: 10px;
  right: 15px;
  background: var(--zype-primary);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--zype-primary);
  margin-bottom: 15px;
  display: block;
}

.benefit-title {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--zype-dark);
  margin-bottom: 10px;
}

.benefit-desc {
  font-size: 0.95rem;
  color: var(--zype-gray);
  line-height: 1.5;
}

.benefits-link {
  color: var(--zype-primary);
  font-weight: 600;
  text-decoration: none;
}

.cta-section {
  background: linear-gradient(135deg, var(--zype-light) 0%, #e0f2fe 100%);
  padding: 40px;
  text-align: center;
  border-top: 1px solid #e5e7eb;
}

.cta-title {
  font-family: var(--font-secondary);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--zype-dark);
  margin-bottom: 15px;
}

.cta-desc {
  color: var(--zype-gray);
  margin-bottom: 25px !important;
  font-size: 1rem;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--zype-primary) 0%,
    var(--zype-accent) 100%
  );
  color: white;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

@media (max-width: 768px) {
  .infographic-container {
    margin: 10px;
    border-radius: 15px;
  }

  .info-header,
  .intro-section,
  .benefits-container,
  .cta-section {
    padding: 20px 25px;
  }

  .main-title {
    font-size: 1.8rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-card {
    padding: 20px 15px;
  }
}

.footerTabs .elementor-button-icon,
.footerTabsM .elementor-button-icon {
  font-size: 8px !important;
  transform: rotate(90deg);
}
.carousalLoop {
  overflow: hidden;
  padding: 0;
}
.blogContentTextEditor h3 b,
.blogContentTextEditor h2 b,
.blogContentTextEditor h2 strong,
.blogContentTextEditor h3 strong {
  font-weight: 600;
}
.blogContentTextEditor [data-elementor-id="53189"] {
  display: flex;
  justify-content: center;
}
.carousalLoop .e-con-inner {
  gap: 0;
}
.carousalLoop .e-con-inner .e-con.e-flex {
  padding: 0;
  overflow: hidden;
  margin-bottom: 10px;
}
.carousalLoop .e-con-inner .elementor-post-info a {
  color: #828282 !important;
  font-size: 14px;
}
.carousalLoop .e-con-inner .elementor-widget-heading h3 {
  font-size: 15px !important;
  padding: 5px 0;
}
.carousalLoop .carousalFImg img {
  transition: 0.3s ease-in-out;
}

.carousalLoop:hover .carousalFImg img {
  transform: scale(1.1);
}
#ez-toc-container {
  margin-top: 15px !important;
}
.mainTextEditorStyle h3 {
  font-size: 20px;
  margin: 0;
  margin-bottom: 20px !important;
}
.mainTextEditorStyle p {
  margin-bottom: 11px;
}
.single_breadcumbs .breadcrumbs a {
  color: #575757;
  background-color: transparent;
}

.single_breadcumbs span[property="itemListElement"] {
  padding: 5px 12px;
}

.single_breadcumbs span[property="itemListElement"]:first-child {
  padding-left: 0;
}

.single_breadcumbs .breadcrumbs {
  text-transform: uppercase;
  color: #575757;
  font-size: 12px;
}

@media (max-width: 520px) {
  .single_breadcumbs .breadcrumbs {
    text-transform: uppercase;
    font-size: 10px;
  }
}
.blogContentTextEditor ul,
.blogContentTextEditor ol {
  margin-left: 0px !important;
  padding-left: 20px;
}

.blogContentTextEditor h4 {
  margin-bottom: 5px !important;
  font-size: 18px !important;
}
.blogContentTextEditor h4 b {
  font-weight: 600 !important;
}
.blogContentTextEditor h2 {
  margin: 0;
  font-weight: 600;
  font-size: 25px !important;
}

.blogContentTextEditor .elementor-element-1a32b2d.elementor-widget-shortcode {
  display: none !important;
}
.blogContentTextEditor h3 {
  margin: 0;
  font-weight: 600;
}
@media (max-width: 520px) {
  .blogContentTextEditor table,
  .blogContentTextEditor table.productTable {
    display: block !important;
    overflow-x: auto !important;
  }
}
.loan-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.loan-buttons a {
  color: black;
  border: 1px solid #f66f53;
  border-radius: 20px;
  font-size: 11px;
  padding: 5px 10px;
}
.loan-buttons a:hover {
  color: #f66f53;
}
.lpButton {
  background-color: #0099ff;
  border: none;
  color: #ffffff;
  font-size: 15px;
  padding: 15px 100px;
  border-radius: 5px;
  font-weight: 600;
  transition: 0.3s ease;
}
.lpButton:hover {
  background-color: #014ca3;
}
@media (max-width: 520px) {
  .zype-loan-links a {
    font-size: 14px;
    line-height: 1.6em;
  }
  .lpButton {
    padding: 12px 40px;
  }
  .mainBreadcrumbs .elementor-icon-list-item > a {
    font-size: 5px !important;
  }
  .mainBreadcrumbs ul li a .elementor-icon-list-icon {
    font-size: 5px !important;
  }
}
.awsm-job-entry-content p {
  margin-bottom: 5px;
}
#languageSwitcher {
  cursor: pointer;
  font-size: 1.1vw;
  color: #0386c8;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;base64,PHN2ZyBmaWxsPSJibGFjayIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiB3aWR0aD0iMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTcgMTBsNSA1IDUtNXoiLz48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PC9zdmc+");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 3px;
  padding-right: 1rem;
  padding-left: 5px;
  background-color: #ffffff;
}
@media (max-width: 520px) {
  #languageSwitcher {
    font-size: 4.5vw;
  }
}
.elementskit-btn {
  justify-content: center;
}
.elementor-icon-box-title {
  margin-top: 0;
}
.blogContentTextEditor p {
  margin-bottom: 10px;
}

.blogContentTextEditor ul,
.blogContentTextEditor ol {
  margin-left: 20px;
}

.blogContentTextEditor ul li ul {
  margin-left: 0px;
}

.helpcenter_categories {
  margin-top: 90px !important;
}
.elementor-widget-text-editor ul li,
.elementor-widget-text-editor ol li {
  color: black;
  margin-bottom: 10px;
}
@media (max-width: 520px) {
  .elementor-67933
    .elementor-element.elementor-element-18afc2d5
    > .elementor-element-populated {
    padding: 5px !important;
  }
  .helpcenter_categories {
    margin-top: 20px !important;
  }
  .blog-post table,
  table.productTable {
    display: block;
    overflow-x: auto;
  }
}
.minimal-table tbody td {
  background-color: white !important;
}
.stepProcess,
.privacyChild,
.payitallIcon {
  transition: none !important;
}

@keyframes buttonAnimation {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
/* Desktop Slider  */
.swiperStepDesktop {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiperStepDesktop .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 44%;
  height: 100%;
  margin: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.swiperStepDesktop .swiper-slide img {
  display: block;
  width: 100%;
  /*height: 500%;*/
  object-fit: contain;
}
.swiperStepDesktop {
  position: relative;
  /*height: 100vh;*/
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiperStepDesktop p {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 10px;
  color: black !important;
  font-family: "Poppinss";
  font-weight: 600;
}
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
  background-image: none !important;
}

/* Mobile Slider */
.swiperStepMobile {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiperStepMobile .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 44%;
  height: 100%;
  margin: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.swiperStepMobile .swiper-slide img {
  display: block;
  width: 100%;
  object-fit: contain;
}
.swiperStepMobile {
  position: relative;
  /*height: 100vh;*/
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiperStepMobile p {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 5px;
  font-weight: 600 !important;
  color: black !important;
}
.phoneImage {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
}
p a span {
  color: #f66f53 !important;
}
.elementor-widget-container h3 {
  color: black;
}
table tbody tr td {
  color: black !important;
}

.ekit_menu_responsive_tablet .elementskit-submenu-indicator {
  border: none;
}
.eael-grid-post-link {
  color: black !important;
}
.elementor-section {
  background-color: white !important;
}

.h1Heading .elementor-widget-container h1 {
  color: black !important;
  font-size: 3vw !important;
  font-weight: 600 !important;
  line-height: 1.2em !important;
  font-family: "Poppinss" !important;
}
@media (max-width: 520px) {
  .h1Heading .elementor-widget-container h1 {
    font-size: 1.7rem !important;
  }
}
.elementor-section.elementor-inner-section {
  background: white !important;
}
.awsm_job_openings-template-custom.single.single-awsm_job_openings {
  background-color: white !important;
  color: black !important;
  padding: 1rem !important;
}
.entry-title.awsm-jobs-single-title {
  color: black !important;
}
.elementor-shortcode .elementor-global-53189 {
  width: 100% !important;
}

/* Menu hover effect */
.menuEffect ul li a span:hover {
  color: #0099ff !important;
}

.menuEffect ul li a span::after {
  content: "";
  display: block;
  width: 0;
  height: 2px !important;
  background: #0099ff;
  transition: width 0.3s;
}
.menuEffect ul li a {
  line-height: 1.5em;
}

.menuEffect ul li:hover a span::after {
  width: 100%;
  transition: width 0.3s;
}
/* Hero Section */
.heroPointers .elementor-icon-list-text {
  font-size: 1.3vw;
  font-weight: 400;
  line-height: 1.7em;
  font-family: "Poppinss" !important;
}
.heroPointers .elementor-icon-list-item {
  margin-bottom: 15px !important;
}
@media (max-width: 520px) {
  .heroPointers .elementor-icon-list-text {
    font-size: 4vw;
  }
}
/* Product Page Table */
table.productTable {
  border-collapse: collapse;
}
.productTable th {
  background-color: #e7f6fb;
  border: 1px solid lightgrey !important;
  text-align: center !important;
}
.productTable td {
  background-color: #ffffff !important;
  text-align: center !important;
}
.productTable td,
.productTable th {
  padding: 0.75rem;
  border: 1px solid lightgray;
  text-align: left;
  color: black;
  font-size: 1.2vw;
  line-height: 1.4em;
}

.productTable th,
.productTable th b,
.productTable th strong {
  font-weight: 600;
}

/* BenefitCard Section */
.benefitCard {
  padding: 20px;
  width: 100% !important;
}
.benefitCard h3 {
  font-size: 1.3vw;
  font-weight: 600 !important;
  line-height: 1.4em;
}
.benefitCard img {
  height: 10vh;
}
@media (max-width: 520px) {
  .benefitCard {
    padding: 10px;
    width: 48%;
    gap: 10px;
  }
  .benefitCard img {
    height: 7vh;
  }
  .benefitCard h3 {
    font-size: 3.5vw;
  }
}

/* Product Page Styling */
.mainTextEditorStyle,
table.productTabletd {
  text-align: left;
  color: var(--e-global-color-c7f3fb4);
  font-size: 1.2vw;
  font-weight: 400;
  line-height: 1.7em;
}

.mainTextEditorStyle ul,
.mainTextEditorStyle ol {
  padding-left: 20px !important;
  margin-bottom: 0px;
}
.mainTextEditorStyle ul li,
.mainTextEditorStyle ol li {
  margin-bottom: 10px;
}
.secondaryHeading h2 {
  font-size: 2.3vw;
  font-weight: 600 !important;
  line-height: 1.4em;
  font-family: "Poppinss", sans-serif !important;
}
.imageBox h3 {
  font-size: 17px;
  font-weight: 600 !important;
}
.imageBox p {
  font-size: 11px;
}
@media (min-width: 1400px) {
  .imageBox h3 {
    font-size: 25px;
    font-weight: 600 !important;
  }
  .imageBox p {
    font-size: 15px;
  }
}
.elementor-image-box-wrapper h3,
.elementor-image-box-wrapper p,
.elementor-icon-box-wrapper h3,
.elementor-icon-box-wrapper p {
  font-family: "Poppinss" !important;
}
.mainTextEditorStyle h3 {
  font-size: 18px;
  margin: 0;
}
/* Main Accordion */
.mainAccordion {
  border: none !important;
}

.mainAccordion .fa-toggle-svg {
  font-size: 15px !important;
}
.mainAccordion .eael-accordion-list {
  border: none !important;
  border-bottom: 1px solid lightgray !important;
}

.mainAccordion .eael-accordion-list .show-this.active,
.eael-accordion-content {
  background-color: #f1faff !important;
}
.mainAccordion h3 {
  font-size: 15px !important;
  font-weight: 500 !important;
}
.mainAccordion .eael-accordion-content span,
.mainAccordion .eael-accordion-content p {
  font-size: 14px !important;
}
.eael-accordion-content {
  padding: 0 15px 0 !important;
}
.eael-accordion-content p {
  padding-bottom: 10px !important;
}

@media (max-width: 520px) {
  .eael-accordion-content p span,
  .eael-accordion-content ol span {
    font-size: 4vw !important;
  }
}

.eael-accordion-content ul,
.eael-accordion-content ol {
  padding-left: 20px;
  color: black;
  margin: 0;
}
.eael-accordion-header {
  padding: 15px !important;
}
.eael-accordion-header .eael-accordion-tab-title {
  padding: 0px 15px 0 0px !important;
  line-height: 1.4em !important;
}
.fa-accordion-icon {
  margin-right: -10px !important;
}
@media (max-width: 1441px) {
  .mainTextEditorStyle,
  table.productTable {
    font-size: 1.3vw;
  }
  .secondaryHeading h2 {
    font-size: 2.7vw;
  }
}

.mainAccordion .eael-accordion-content p,
.mainAccordion .eael-accordion-content.clearfix {
  line-height: 1.5em !important;
  color: #000000 !important;
}

@media (max-width: 520px) {
  .productTable td,
  .productTable th {
    font-size: 3.8vw !important;
  }
  .mainTextEditorStyle {
    font-size: 4.2vw !important;
  }
  .secondaryHeading h2 {
    font-size: 6.5vw;
  }
  .eael-accordion-header {
    padding: 10px 10px 10px 0 !important;
  }
  .eael-accordion-header .eael-accordion-tab-title {
    padding: 0px 15px 0 15px !important;
  }
  .mainAccordion .eael-accordion-content p,
  .mainAccordion .eael-accordion-content.clearfix {
    font-size: 4vw !important;
  }
  .eael-accordion-content,
  .eael-accordion-header .eael-accordion-tab-title {
    font-size: 4vw !important;
  }
}

/* Personal loan by Location/Amount/Salary */
/* Heading */
.commonLoanCardHead h2 {
  font-size: 3vw;
  letter-spacing: 0.3px;
}

.commonLoanCardBtn a:hover {
  background-color: #e0e0e0 !important;
}
.commonLoanCardBtn a {
  background-color: #f1faff !important;
  border-radius: 8px !important;
}
/*Card Heading style*/
.commonLoanCardBtn a span.elementor-button-text span {
  font-size: 1.1vw;
  font-weight: 700;
}

/*Card Content style*/
.commonLoanCardBtn a .elementor-button-content-wrapper {
  font-size: 1vw;
  font-weight: 400;
  line-height: 1.4em;
}
.commonLoanCardBtn.comLocation a .elementor-button-content-wrapper {
  font-weight: 700;
}

@media (max-width: 520px) {
  .commonLoanCardBtn a .elementor-button-content-wrapper {
    font-size: 3.5vw;
    padding-top: 3px;
  }
  .commonLoanCardBtn a span.elementor-button-text span {
    font-size: 4vw;
  }
}
.elementor-widget-image-box {
  box-shadow: 1px 1px 6px 0.3px rgba(194, 194, 194, 0.3);
  border-radius: 9px;
}
.elementor-image-box-wrapper h3 {
  margin-top: 0;
}
@media (max-width: 520px) {
  .floatingCTA {
    top: auto;
    width: 96%;
    left: 2%;
  }
  .elementor-image-box-wrapper {
    display: flex;
    gap: 10px;
  }
  .elementor-image-box-wrapper figure {
    display: none !important;
  }
  .elementor-image-box-wrapper h3 {
    margin-top: 0;
    font-size: 5vw !important;
  }
  .elementor-image-box-wrapper p {
    margin-top: 0;
    font-size: 4vw !important;
  }
}

.commonGlassbg {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
}
/* @media (max-width:520px){
.commonGlassbg{
	background:white !important;

}
} */
.paraText .elementor-widget-container p,
.paraText .elementor-widget-container ul li {
  font-size: 20px;
  font-weight: 200;
  line-height: 1.3;
}

@media (max-width: 520px) {
  .paraText .elementor-widget-container p,
  .paraText .elementor-widget-container ul li {
    font-size: 15px !important;
  }
}
.footer-bg {
  background: linear-gradient(320deg, #000000 0%, #2c2c2ce6 100%) !important;
  background-image: transparent !important;
}
li.post-comment-link.meta-wrapper {
  display: none;
}
body.single.single-post h2 {
  font-size: 22px;
  line-height: 1.3em;
  margin: 20px 0 10px;
}
body.single.single-post .blogContentTextEditor h3 {
  line-height: 1.3em;
  font-size: 20px !important;
  margin-bottom: 5px;
}
body.single.single-post table,
th,
td {
  border-top: 1px solid #000 !important;
  border: 1px solid black;
  border-collapse: collapse;
}
.footersocial img {
  width: 40px;
}
.mediatitlecon a:hover {
  color: #f0625c !important;
}
input,
textarea,
.select2-container--default .select2-selection--single {
  transition: all 0.3s ease;
  background: #ededed;
  color: #222;
}

#respond .comment-reply-title,
p.logged-in-as,
#commentform label {
  color: #222;
}
.univimg111 {
  -webkit-animation: spin 50s linear infinite;
  -moz-animation: spin 50s linear infinite;
  animation: spin 50s linear infinite;
}
.eael-grid-post-holder {
  border: 1px solid rgba(0, 0, 0, 0) !important;
}
.eael-accordion-list .eael-accordion-header .eael-accordion-tab-title {
  padding-right: 40px;
}
.eael-grid-post .eael-entry-wrapper,
.eael-grid-post .eael-entry-footer {
  padding: 15px 0px;
}
.elementor-widget-eael-post-grid .eael-entry-meta > span a {
  color: #ffffff50;
}
.eael-accordion-list {
  border: 1px solid #58585829;
  border-radius: 2px;
  box-shadow: 0 0px 1px #fff;
}
.eael-advanced-accordion-icon-opened,
span.eael-advanced-accordion-icon-closed {
  position: absolute;
  right: 10px;
}
.eael-accordion-tab-title {
  padding: 4px 2%;
}
.awsm-grid-item .awsm-job-item {
  background: #ffffff;
  /*     border: 1px solid #23262f!important; */
  border-radius: 10px;
  color: #000000 !important;
  font-family: "Poppinss", sans-serif;
}
.awsm-grid-item .awsm-job-item:hover {
  color: #f66f53 !important;
}
.awsm_job_openings-template-custom.single.single-awsm_job_openings
  .inner-header {
  display: none;
}
.awsm_job_openings-template-custom.single.single-awsm_job_openings {
  background: #000;
  color: #fff;
  font-family: "Poppinss", sans-serif;
}
.awsm_job_openings-template-custom.single.single-awsm_job_openings
  #main-header {
  background: transparent !important;
}
.awsm-job-single-wrap.awsm-col-2 .awsm-job-form {
  color: #222;
}
.awsm-job-form-inner h2 {
  font-size: 32px;
}
.awsm-job-form-inner {
  border-radius: 20px;
}
.elementor-button[type="submit"] {
  background: #007dc3 !important;
}
.elementor-button[type="submit"]:hover {
  background: #007dc3 !important;
}
.widget-title:before {
  display: none;
}
.widget-title {
  font-weight: 600;
  font-size: 22px;
  text-transform: capitalize;
  font-family: "Poppinss";
}
.footer-top,
.footer-bottom {
  width: 90%;
  max-width: 90%;
  margin: 0 auto;
}
.contactfootercon img {
  width: 30px;
  margin-right: 15px;
}
.textwidget p strong {
  font-size: 18px;
  font-weight: 600;
}
.footersocial {
  margin-top: -2rem;
}
.widget-content ul {
  list-style: none;
  margin-bottom: 0;
}
.footersocial ul li:first-child {
  padding: 0;
}

.footersocial ul li {
  list-style: none;
  display: inline-block;
}

.footer-inner {
  position: relative;
  z-index: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.footer-top,
.footer-bottom {
  width: 90%;
  max-width: 90%;
  margin: 0 auto;
  padding-top: 20px;
}

.awsm-job-item h2.awsm-job-post-title {
  margin: 0 0 15px;
  font-size: 17px;
  text-align: left;
}

.navbar-dark .navbar-nav .nav-link {
  font-weight: 300;
  font-size: 17px;
  line-height: 20px;
  border-radius: 8px;
  font-family: "Poppinss";
  letter-spacing: 0;
}

.footer-top .widget-content ul li a {
  font-size: 16px;
  letter-spacing: -0.009em;
  color: var(--footer-link-color);
  font-weight: 400;
  font-family: "Poppinss";
}

.awsm-job-form-inner h2 {
  font-size: 30px;
}

.awsm-job-container {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  padding: 90px 0;
}

/**=== Home tab section ===**/
.hometabsec .eael-advance-tabs .eael-tabs-content > div h4 {
  font-weight: 400;
  margin-bottom: 30px;
}
.hometabsec .eael-advance-tabs .eael-tabs-content > div ul li {
  list-style: none;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
}
.hometabsec .eael-advance-tabs .eael-tabs-content > div ul li img {
  margin-right: 10px;
}
.hometabsec .eael-advance-tabs .eael-tabs-content > div p {
  display: flex;
}
.hometabsec .eael-advance-tabs .eael-tabs-content > div a {
  color: #fff;
  background: transparent linear-gradient(0deg, #585858 0%, #000000 100%) 0% 0%
    no-repeat padding-box;
  border: 1px solid #f54c76;
  padding: 10px 35px;
  border-radius: 12px;
  margin-top: 20px;
}
.hometabsec .eael-advance-tabs .eael-tabs-content > div a:hover {
  background: transparent linear-gradient(0deg, #000000 0%, #585858 100%) 0% 0%
    no-repeat padding-box;
}
.eael-advance-tabs .eael-tabs-content > div {
  border-radius: 20px !important;
}
/**=== END Home tab section ===**/

.footer-top a,
.footer-top p {
  font-size: 15px;
  line-height: 2;
  font-family: "Poppinss";
}

.footer-copyright,
.footer-menu li a {
  font-size: 13px;
  letter-spacing: -0.0025em;
  font-family: "Poppinss";
}

#mc4wp-form-1 .theme-mailchimp {
  display: flex;
  align-items: center;
  flex-flow: wrap;
  max-width: 100%;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

#mc4wp-form-1 .theme-mailchimp h2 {
  display: flex;
  color: #fff;
  font-family: "Poppinss", Sans-serif;
  font-weight: 400;
  margin: 0;
  font-size: 38px;
}
#mc4wp-form-1 .theme-mailchimp h2 span {
  font-weight: 600;
  margin-left: 14px;
}

#mc4wp-form-1 .theme-mailchimp .theme-mailchimp-fields {
  width: 50%;
  display: flex;
  margin-left: 30px;
  font-family: "Poppinss", Sans-serif;
}
#mc4wp-form-1 .theme-mailchimp .theme-mailchimp-fields input[type="email"] {
  background: #ffffff50;
  border: 1px solid #fff;
  border-radius: 20px;
  width: 100%;
  font-family: "Poppinss", Sans-serif;
}

#mc4wp-form-1
  .theme-mailchimp
  .theme-mailchimp-fields
  input[type="email"]::placeholder {
  color: #ffffff90;
  font-family: "Poppinss", Sans-serif;
}

#mc4wp-form-1 .theme-mailchimp .theme-mailchimp-fields .submit-sub:hover {
  color: #000000;
  background: #fff;
}

#mc4wp-form-1 .theme-mailchimp .theme-mailchimp-fields .submit-sub {
  width: 30%;
  margin-left: 30px;
  background: #000000;
  color: #fff;
  transition: 0.45s;
  text-align: center;
  border: 1px solid #fff;
  font-family: "Poppinss", Sans-serif;
  border-radius: 20px;
}
#mc4wp-form-1 .theme-mailchimp .theme-mailchimp-fields .submit-sub i {
  margin-left: 5px;
}
#menu-item-28787 {
  display: none;
}
@media only screen and (max-width: 767px) {
  #menu-item-28787 {
    display: block;
  }
  #pr-nav {
    padding-top: 5px !important;
  }
  #mc4wp-form-1 .theme-mailchimp {
    flex-direction: column;
  }
  #mc4wp-form-1 .theme-mailchimp h2 {
    margin: 0 0 30px;
    font-size: 24px;
  }
  #mc4wp-form-1 .theme-mailchimp .theme-mailchimp-fields {
    width: 100%;
    padding: 0 15px;
    margin: 0;
  }
  #mc4wp-form-1 .theme-mailchimp .theme-mailchimp-fields .submit-sub {
    width: 70%;
    margin-left: 5px;
    font-size: 13px;
  }
}
.eael-grid-post .eael-entry-wrapper {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.uc-active-item {
  background: transparent linear-gradient(90deg, #f56f4f 0%, #ed5764 100%) 0% 0%
    no-repeat padding-box;
  border-radius: 12px;
}
.eael-entry-media {
  border-radius: 10px;
}

.univimg {
  -webkit-animation: spin 16s linear infinite;
  -moz-animation: spin 16s linear infinite;
  animation: spin 16s linear infinite;
}
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.page-template-template-blog-col-2-sidebar #main-header {
  background: linear-gradient(320deg, #000000 0%, #2c2c2ce6 100%) !important;
}
.page-template-template-blog-col-2-sidebar #site-content {
  background: #fff !important;
}
.page-template-template-blog-col-2-sidebar .breadcrumbs {
  float: right;
  margin-right: 50px;
  margin-top: 20px;
}
.page-template-template-blog-col-2-sidebar h1.header-title {
  margin: 0 0px 25px 50px;
  float: left;
}
.page-template-template-blog-col-2-sidebar .blog-tile {
  border-width: 0px;
}
.single-post #main-header {
  display: none;
}
@media only screen and (min-width: 767px) {
  .hmswpmt {
    position: relative;
    left: 58%;
  }
  .hmswpsmt {
    position: relative;
    left: 63%;
  }
}

/** BLOG CSS **/
.blog-tile-content {
  background: #f9f9f9;
}
.blog-tile .entry-title-link {
  color: #000000;
}
.post-meta li,
.two-col-sidebar .widget {
  background: #f1f1f1;
}
.blog-tile-content .entry-excerpt p,
.widget-title {
  color: #222;
}
.widget-content ul li a {
  color: #333;
}
.widget-content .search-form .search-submit:hover {
  background: #222;
}
.widget-content .search-form .search-field::placeholder {
  color: #222;
}
.widget-content .search-form:hover .search-field::placeholder {
  color: #fff;
}
.widget_pages ul li,
.widget_categories ul li,
.widget.widget_recent_entries li {
  color: #747474;
}
/**  END BLOG CSS **/

@media only screen and (max-width: 767px) {
  .footer-top ul li {
    margin-bottom: 0.5rem;
    display: inline-block;
  }
  .footersocial ul li {
    margin-bottom: 1.5rem;
    padding: 0px;
  }
  .widget-content ul,
  .widget-title,
  .downloadplaystorefooter {
    text-align: left;
  }
  body {
    overflow-x: hidden;
  }
  .mobile-bg-grd .elementor-widget-wrap.elementor-element-populated {
    background-image: none !important;
  }
  .mobile-bg-grd,
  .mobile-bg-grd-01 .elementor-widget-wrap.elementor-element-populated {
    background-position: center center !important;
    background-size: cover !important;
  }
  .mobile-bg-none .elementor-widget-wrap.elementor-element-populated {
    background: transparent !important;
  }
  .gz-btn-mobile .elementor-button {
    width: 100%;
  }
  .eael-adv-accordion
    .eael-accordion-list
    .eael-accordion-header
    .eael-accordion-tab-title {
    padding-right: 30px;
    line-height: 1.5em !important;
  }
  .eael-entry-title {
    display: table-cell;
  }
  .custom-logo {
    transform: scale(0.7);
  }
  .elementor-main-swiper {
    border-radius: 30px;
  }
  .mobile-opcty-none {
    opacity: 0;
  }
  .home-mobile-slider-threesec {
    overflow: hidden;
  }
  .per-loan-sixsec .elementor-widget-container {
    background-position: top center !important;
    padding: 0 !important;
  }
  .per-loan-sixsec img {
    display: none;
  }
  .per-loan-sixsec .widget-image-caption {
    font-size: 16px !important;
    margin-top: 20x !important;
  }
  .bill-tranfr-scale {
    transform: scale(1.1);
  }
}

@media only screen and (max-width: 767px) {
  .page-id-26459 h1.header-title {
    margin: -25px 0px 16px 0 !important;
  }
  .page-id-26459 .breadcrumbs {
    margin-right: 0 !important;
    margin-top: -15px !important;
  }
  .page-id-26459 .post-meta li {
    display: flex;
  }
  .single-post p {
    font-size: 18px;
  }
}

/* Overflow  */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Remove numbering from table of contents items */
.ez-toc-list li {
  list-style-type: none; /* Removes default list style */
  counter-reset: toc-counter; /* Resets any numbering */
}

.ez-toc-list li:before {
  content: none; /* Prevents adding content before list items */
}

.post-views.content-post.post-64186.entry-meta {
  color: #54595f;
}
.post-views.entry-meta > span.post-views-icon.dashicons {
  display: inline-block;
  font-size: 16px;
  line-height: 1.2;
  text-decoration: inherit;
  vertical-align: middle;
}
.post-views.entry-meta > span {
  margin-right: 0 !important;
  line-height: 1;
  margin-top: 0px;
  font-size: 14px;
}

/* Careers Page Form*/
awsm-job-form-group label {
  display: block;
  margin-bottom: 10px;
  color: #000 !important;
}
label {
  color: #000 !important;
}
@media (max-width: 767px) {
  .footer_resp_cta.fixed {
    position: fixed;
    width: 100%;
    z-index: 999;
    bottom: 0px;
    transition: 0.3s;
    padding: 16px 8px;
    height: 140px;
    display: block;
    background: #fff;
    text-align: center;
    margin: 0rem 0px;
  }

  .footer_resp_cta fixed h4 {
    font-size: 15px !important;
    line-height: 20px;
    color: #222222;
    margin-bottom: 4px;
    margin-top: 0px;
  }
  h4 {
    /*     font-size: 16px !important; */
    margin-top: 10px;
    color: #000000 !important;
    line-height: 1.8em;
    margin-bottom: 4px;
  }
}
.elementor-60083 .elementor-element.elementor-element-233f6eb {
  padding-top: 80px !important;
}

/* Calculator */
#calculator {
  padding: 0% 10%;
}
@media (max-width: 768px) {
  #calculator {
    padding: 5%;
  }
}
.mainBox {
  display: flex;
  width: 100%;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  overflow: hidden;
  gap: 40px;
  padding: 3rem;
}
.calContent {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.box {
  border-radius: 5px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 1rem;
}
.innerBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.amount-container {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  border-bottom: 2px solid black;
  position: relative;
  min-width: 80px;
}
.amount-container .rupee-symbol {
  font-size: 1.4vw;
  font-weight: 600;
  margin-right: 5px;
  color: black;
}
.amount-container input {
  border: none !important;
  outline: none;
  font-size: 1.4vw;
  font-weight: 600;
  max-width: 250px;
  min-width: 50px;
  background: transparent;
  text-align: right !important;
  padding: 0 !important;
}
.amount-container .edit-icon {
  font-size: 1.4vw;
  cursor: pointer;
  margin-left: 10px;
}
.amount-container .edit-icon img {
  height: 1vw;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox ke liye */
input[type="number"] {
  -moz-appearance: textfield;
}
input[type="range"] {
  border-radius: 10px;
  box-shadow: 0px 0px 5.002px 0px rgba(0, 0, 0, 0.25) inset;
  height: 10px;
  padding: 0;
  width: 100%;
}
#interestRateBar::-webkit-slider-thumb,
#loanAmountBar::-webkit-slider-thumb,
#loanTermBar::-webkit-slider-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  -webkit-appearance: none;
  cursor: pointer;
  background: #fff;
  border: 5px solid #0099ff;
}
.box ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding: 0 7px;
  font-size: 16px;
  color: black;
  margin: 0;
}
.result h3 {
  font-weight: 400;
  font-size: 1.1vw;
  line-height: 1em !important;
  margin: 0;
}
#emiResult {
  color: #0099ff;
  font-size: 3.5vw;
  font-weight: 600;
  line-height: 1.3em;
}
#totalInterestPayableResult,
#totalPaymentResult {
  font-size: 1.7vw;
  font-weight: 600;
  color: black;
  line-height: 1.3em;
}

.totalDiv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.totalDiv h3 {
  font-size: 0.8vw !important;
  text-align: center;
  margin: 0;
  line-height: 1.4em !important;
}

.calculatorImg {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  height: 120px !important;
}
.result {
  background: #f1faff;
  border-radius: 5px;
  /* box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25); */
  position: relative;
  padding: 7%;
  padding-top: 7vw;
  margin-top: 4rem;
  width: 100%;
}
.yourEmi {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.innerBox2 {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.innerBox2 .divider {
  border: 1px solid gray;
}
.cta {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  width: 100%;
}
.cta a {
  background-color: #0099ff;
  padding: 15px 50px;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
  width: 100%;
  text-align: center;
  font-weight: 600;
}
.cta a:hover {
  background-color: #014ca3;
}

@media (max-width: 520px) {
  #calculator {
    padding: 0px;
  }
  .mainBox {
    flex-direction: column-reverse;
    padding: 0;
    gap: 0;
    border-radius: 0;
    box-shadow: none;
  }
  #emiResult {
    font-size: 11vw;
  }

  #totalInterestPayableResult,
  #totalPaymentResult {
    font-size: 7vw;
  }
  #loanAmount,
  #loanTerm,
  #interestRate {
    border: none;
  }
  #loanAmount,
  #loanTerm,
  #interestRate,
  #loanAmount:focus,
  #loanTerm:focus,
  #interestRate:focus {
    font-size: 5vw;
  }
  #interestRateBar,
  #loanAmountBar,
  #loanTermBar {
    height: 10px;
    margin-top: 10px;
  }
  #interestRateBar::-webkit-slider-thumb,
  #loanAmountBar::-webkit-slider-thumb,
  #loanTermBar::-webkit-slider-thumb {
    width: 22px;
    height: 22px;
  }

  .yourEmi h3 {
    font-size: 4vw !important;
    line-height: 1.3em;
  }

  .result h3 {
    width: 100%;
    font-size: 3.5vw;
    margin-top: 0;
    text-align: center;
  }
  .totalDiv h3 {
    font-size: 3vw !important;
  }
  .innerBox {
    margin: 0;
  }
  .innerBox p {
    width: 100%;
    font-size: 3vw;
    margin-top: 0;
  }

  .result {
    padding: 1.5rem 0.5rem;
    margin: 0;
    border-radius: 0;
  }
  .result img {
    display: none;
  }
  .cta {
    display: none;
  }
  .amount-container {
    border-bottom: 1px solid black;
  }
  .amount-container .rupee-symbol {
    font-size: 5vw;
  }
  .amount-container .edit-icon img {
    height: 6vw;
  }
  .innerBox2 {
    /* flex-direction: column; */
    gap: 20px;
  }
  .box {
    padding: 10px;
  }

  .cta {
    display: none;
    justify-content: center;
    margin-top: 1rem;
  }
  .calContent {
    padding: 1rem;
    gap: 7px;
  }
  .innerBox p {
    font-size: 4vw;
  }
  .box ul {
    margin: 0;
    font-size: 15px;
    padding: 0 5px;
  }
}
/* Footer */
footer .footerTabsM {
  cursor: pointer;
}
footer .footerTabsM a {
  font-size: 14px;
  line-height: 1.3em;
}
footer .footerContentsM {
  margin: 5px 0;
  display: none;
  padding-left: 25px;
}
footer .footerContentsM.active {
  display: flex;
}

footer .footerTabs {
  cursor: pointer;
}
footer .footerTabs .elementor-button-content-wrapper {
  display: flex;
  justify-content: space-between;
}
footer .footerTabs a {
  font-size: 12px ;
  line-height: 1.3em;
}
footer .footerTabs span.elementor-button-text{
	text-align:left !important;
}
footer .footerContents {
  margin: 10px 0;
  display: none;
  transform: translateY(40px);
  transition: all 0.3s ease;
  animation: animeContent 0.5s ease;
}
footer .footerContents.active {
  display: flex;
  transform: translateY(0px);
}
footer .footerTabs a.elementor-button.elementor-size-sm.active {
  background-color: #242424;
}
@keyframes animeContent {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 520px) {
  footer .footerTabs a {
    font-size: 34px;
    line-height: 1.3em;
  }
}
