/*!*********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./resources/styles/main.scss ***!
  \*********************************************************************************************************************/
@charset "UTF-8";
:root {
  --primary: #ff5722;
  --primary-dark: #f4511e;
  --secondary: #00796b;
  --text: #111827;
  --text-muted: #666666;
  --border: #e0e0e0;
  --white: #fff;
  --background: #f5f5f5;
  --error: #ef4444;
  --text-light: #6b7280;
  --transition: all 0.3s ease;
  --exo: "Exo 2", serif;
  --poppins: "Poppins", serif;
}

.ms-auto {
  margin-left: auto;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.title2 {
  font-weight: 600;
  font-size: 42px;
  color: #141414;
  margin-bottom: 24px;
  font-family: var(--exo);
}

h1 {
  font-weight: 700;
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.3;
  font-family: var(--exo);
}

h2 {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.3;
  font-family: var(--exo);
}

h3 {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.3;
  font-family: var(--exo);
}

h4 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.3;
  font-family: var(--exo);
}

h5 {
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.3;
  font-family: var(--exo);
}

h6 {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.3;
  font-family: var(--poppins);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--poppins);
  line-height: 1.5;
  background: var(--background);
  color: var(--text);
}

.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
header {
  background: var(--white);
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .site-nav {
  display: flex;
  list-style: none;
}
header .site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 10px;
  transition: color 0.3s ease;
}
header .site-nav a:hover {
  color: var(--primary);
}
header .site-nav .current-menu-item a {
  color: var(--primary);
}
header .site-nav.mobile-nav {
  align-items: center;
  width: 100%;
  justify-content: center;
  padding: 10px 0px;
}

.logo img {
  height: 40px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.login-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  font-size: 1rem;
  padding: 0.5rem;
  transition: color 0.3s ease;
  text-decoration: none;
}
.login-btn:hover {
  color: var(--primary-dark);
}

.w-100 {
  width: 100%;
}

/* Footer */
footer {
  background: var(--white);
  padding: 1rem 0;
  text-align: center;
  color: var(--text-muted);
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}
footer .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 576px) {
  footer .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }
}
footer .footer-inner .copyright {
  margin-bottom: 0.5rem;
}
@media (min-width: 576px) {
  footer .footer-inner .copyright {
    margin-bottom: 0px;
  }
}
footer .footer-inner .copyright p {
  font-size: 12px;
}
footer .footer-inner .footer-nav {
  display: flex;
  list-style: none;
}
footer .footer-inner .footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 10px;
  font-size: 12px;
}

.error-container {
  color: #ef4444;
  font-size: 14px;
  margin-bottom: 10px;
  display: none;
}
.error-container.visible {
  display: block;
}

/* Progress Bar */
.progress-bar {
  height: 4px;
  background: var(--border);
}

.progress-fill {
  height: 100%;
  width: 0;
  background: var(--primary);
  transition: width 0.5s ease;
}

/* Main Content */
.d-none {
  display: none !important;
}

main {
  flex: 1;
  padding: 2rem 0;
}

/* Get Started Screen */
.get-started {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 2rem;
}
.get-started .heading-title h1 {
  font-size: 1.8rem;
  color: var(--primary);
  text-align: center;
}
@media (min-width: 576px) {
  .get-started .heading-title h1 {
    font-size: 2.5rem;
  }
}
.get-started .heading-title h1:last-child {
  margin-bottom: 1.5rem;
}
.get-started .heading-title span {
  font-size: 3rem;
  font-family: var(--exo);
  color: var(--text-light);
  display: block;
  width: 100%;
  font-weight: 900;
  margin-bottom: 5px;
}
.get-started p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Buttons */
.btn-primary,
.btn-large,
.btn-next {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(255, 87, 34, 0.2);
  margin: 0 auto;
  display: block;
}
.btn-primary.btn-link,
.btn-large.btn-link,
.btn-next.btn-link {
  text-decoration: none;
  text-align: center;
  width: auto;
  display: block;
  max-width: 320px;
  margin: 0 auto;
  margin-top: 2rem;
}

.btn-primary:hover,
.btn-large:hover,
.btn-next:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(255, 87, 34, 0.3);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(255, 87, 34, 0.2);
  margin: 0 auto;
  display: block;
  text-align: center;
  text-decoration: none;
}

.btn-large {
  padding: 1rem;
  font-size: 1rem;
  width: 100%;
}
@media (min-width: 576px) {
  .btn-large {
    padding: 1rem 2.8rem;
    font-size: 1.25rem;
  }
}

/* Form Steps */
.form-step,
.message-step {
  display: none;
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  margin: 0 auto;
  margin-bottom: 2rem;
  text-align: center;
  min-height: 16rem;
}
.form-step h2,
.message-step h2 {
  margin-bottom: 10px;
}

.message-step {
  display: none;
  max-width: 600px;
}
.message-step.completed {
  display: block !important;
}
.message-step .recommended-salary {
  color: var(--primary-dark);
  font-family: var(--exo);
  font-size: 3rem;
  font-weight: bold;
}

.field-group {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.field-group.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.field-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.field-group input.error, .field-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}

/* Assessment Types */
.assessment-types {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.assessment-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 2px solid var(--border);
  padding: 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}
.assessment-btn.btn-sucess {
  background-color: var(--secondary);
  color: var(--white);
}
.assessment-btn:hover, .assessment-btn.completed {
  border-color: var(--primary);
  background: var(--primary);
}

/* Quiz Section */
.quiz-section {
  display: block;
  width: 100%;
  margin: 0 auto;
  background: var(--white);
  padding: 2rem 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}
@media (min-width: 576px) {
  .quiz-section {
    max-width: 600px;
    padding: 4rem 2rem;
  }
}

.quiz-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.question {
  margin-bottom: 2rem;
  display: none;
  transition: var(--transition);
}
.question:first-child {
  display: block;
}
.question.error .question-text {
  color: #ef4444;
}

.question h3 {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.question-text {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.options {
  display: grid;
  gap: 0.75rem;
}

.option {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
}

.option:hover {
  border-color: var(--primary);
  background: rgba(59, 130, 246, 0.05);
}

.option input[type=radio] {
  margin-right: 1rem;
}

/* Navigation Controls */
.quiz-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.btn-prev,
.btn-next {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  justify-content: center;
  width: 100%;
}

.btn-prev {
  background: var(--border);
  color: var(--text);
}

.btn-prev:hover {
  background: var(--text-light);
  color: var(--white);
}

.btn-next {
  background: var(--primary);
  color: var(--white);
}

.btn-next:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal.active {
  display: flex;
}

.modal-content {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  width: 90%;
  max-width: 400px;
}

/* Summary Section */
.summary-section {
  padding: 4rem 2rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 2rem;
  display: none;
}

.summary-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.summary-content {
  margin-bottom: 2rem;
}

.btn-restart {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-restart:hover {
  background: var(--primary-dark);
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--primary);
  border-top-color: var(--text);
  border-radius: 50%;
  margin: 2rem auto;
  animation: spin 1s linear infinite;
}

.upload-area {
  border: 2px dashed var(--primary-dark);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.upload-area:hover {
  border-color: var(--primary);
  background: rgba(var(--primary), 0.05);
}
.upload-area input[type=file] {
  display: none;
}
.upload-area p {
  color: var(--text-muted);
  margin: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.show {
  display: block !important;
}

.hide {
  display: none !important;
}

.score-container {
  display: block;
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background-color: var(--background);
}
.score-container h2 {
  text-align: center;
  color: var(--text);
}
.score-container .score-list {
  margin-top: 20px;
}
.score-container .score-item {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid var(--border);
}
.score-container .score-item:last-child {
  border-bottom: none;
}
.score-container .quiz-name {
  font-weight: bold;
  color: var(--primary);
}
.score-container .quiz-score {
  color: var(--text);
}
.score-container .final-score {
  margin-top: 20px;
  text-align: center;
  font-size: 18px;
  color: var(--text);
}

.loader-wrapper {
  display: none;
  transition: all ease 3s;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999999;
}
.loader-wrapper.active {
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader-wrapper .loader {
  height: 15px;
  aspect-ratio: 4;
  --_g: no-repeat
  	radial-gradient(
  		farthest-side,
  		var(--primary-dark) 90%,
  		var(--primary-dark) 0
  	);
  background: var(--_g) left, var(--_g) right;
  background-size: 25% 100%;
  display: grid;
}
.loader-wrapper .loader:before,
.loader-wrapper .loader:after {
  content: "";
  height: inherit;
  aspect-ratio: 1;
  grid-area: 1/1;
  margin: auto;
  border-radius: 50%;
  transform-origin: -100% 50%;
  background: var(--primary-dark);
  animation: l49 1s infinite linear;
}
.loader-wrapper .loader:after {
  transform-origin: 200% 50%;
  --s: -1;
  animation-delay: -0.5s;
}
@keyframes l49 {
  58%, 100% {
    transform: rotate(calc(var(--s, 1) * 1turn));
  }
}

.pricing-content {
  display: none;
}

.pricing-plan {
  display: block;
  width: 100%;
  text-align: center;
  /* Button Styling */
  /* Additional Section Styling */
  /* Razorpay Payment Button Styling */
}
.pricing-plan .plan-details {
  margin-top: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: var(--transition), background 0.3s ease;
}
.pricing-plan .plan-details:hover {
  background: var(--background);
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.pricing-plan .plan-details h2 {
  font-size: 1.75rem;
  color: var(--text);
  margin-bottom: 1rem;
  font-weight: bold;
}
.pricing-plan .payment-inner {
  margin: 0 auto;
  width: 100%;
  max-width: 320px;
}
@media (min-width: 768px) {
  .pricing-plan .payment-inner {
    max-width: 420px;
  }
}
.pricing-plan .plan-details ul {
  list-style-type: none;
  line-height: 1.8;
  text-align: left;
  width: fit-content;
  margin: 0 auto;
}
.pricing-plan .plan-details ul li {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 2rem;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.pricing-plan .plan-details ul li:hover {
  color: var(--primary);
}
.pricing-plan .plan-details ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-size: 1.25rem;
  transform: scale(0.9);
  transition: transform 0.3s ease, color 0.3s ease;
}
.pricing-plan .plan-details ul li:hover::before {
  transform: scale(1.1);
  color: var(--primary);
}
.pricing-plan .btn-pay {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}
.pricing-plan .btn-pay:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.pricing-plan .card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}
.pricing-plan .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}
.pricing-plan .card-title {
  font-size: 1.25rem;
  color: var(--text);
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.pricing-plan .card-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.pricing-plan .razorpay-payment-button {
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}
.pricing-plan .razorpay-payment-button:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* SCSS Styling */
.amount-input .amount-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid #e1e1e1;
  border-radius: 8px;
  transition: border-color 0.2s ease;
}
.amount-input .amount-wrapper:focus-within {
  border-color: var(--primary);
}
.amount-input .currency {
  padding: 0.75rem 0.5rem 0.75rem 1rem;
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}
.amount-input input {
  flex: 1;
  padding: 0.75rem;
  border: none;
  outline: none;
  background: transparent;
}
.amount-input input:active, .amount-input input:focus {
  outline: none;
  box-shadow: none;
}
.amount-input .period {
  padding: 0.75rem 1rem 0.75rem 0.5rem;
  color: #666;
  font-size: 0.875rem;
}
.amount-input .helper {
  display: block;
  margin-top: 0.5rem;
  color: #666;
  font-size: 0.875rem;
  text-align: left;
}

.blog-page.blog-grids {
  padding: 0px;
}
.blog-page .blog-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}
.blog-page .blog-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.blog-page .blog-hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}
.blog-page .blog-search {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 1rem;
}
.blog-page .blog-search input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid var(--white);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}
.blog-page .blog-search input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.blog-page .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  padding: 4rem 1rem;
}
.blog-page .blog-card {
  background: var(--white);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}
.blog-page .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.blog-page .blog-card .blog-image {
  height: 200px;
  overflow: hidden;
}
.blog-page .blog-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-page .blog-card .blog-content {
  padding: 1.5rem;
}
.blog-page .blog-card .blog-category {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
.blog-page .blog-card .blog-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  color: var(--text-muted);
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.blog-page .blog-detail {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 2rem;
  padding: 4rem 1rem;
}
@media (min-width: 768px) {
  .blog-page .blog-detail {
    grid-template-columns: 1fr;
  }
}
.blog-page .blog-detail .blog-main-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.blog-page .blog-detail .blog-main-content .blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.blog-page .blog-detail .blog-main-content .blog-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.blog-page .blog-detail .blog-main-content .blog-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.blog-page .blog-detail .blog-main-content .blog-tags {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}
.blog-page .blog-detail .blog-main-content .blog-tags span {
  background: var(--background);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.9rem;
}

.site-page.contact-us {
  background-color: white;
}

.block-contact-details {
  position: relative;
}
.block-contact-details ul {
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  border-radius: 15px;
  background: #fff;
  border: 1px solid #9a9a9a;
  flex-wrap: wrap;
}
@media (min-width: 576px) {
  .block-contact-details ul {
    flex-wrap: nowrap;
  }
}
.block-contact-details ul li {
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 26px;
  border: none;
  flex: 0 0 100%;
  text-align: center;
}
@media (min-width: 576px) {
  .block-contact-details ul li {
    text-align: left;
    border-right: 1px solid #9a9a9a;
    flex: 1;
  }
}
.block-contact-details ul li:last-child {
  border-right: none;
}
.block-contact-details ul li .icon_feature {
  border: 1px solid #9a9a9a;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  margin: 20px auto 4px auto;
}
@media (min-width: 576px) {
  .block-contact-details ul li .icon_feature {
    margin-top: -40px;
    margin-left: 0;
  }
}
.block-contact-details ul li h3 {
  font-weight: 500;
  font-size: 28px;
  color: #141414;
  line-height: normal;
  margin-bottom: 10px;
}
.block-contact-details ul li p {
  margin-bottom: 2px;
}

.blog-main-content .wp-block-heading,
.blog-main-content p,
.blog-main-content ul,
.blog-main-content li,
.blog-main-content ol {
  margin-bottom: 0.6rem;
}
.blog-main-content ul,
.blog-main-content ol {
  margin-left: 15px;
  padding-left: 15px;
}

.site-page .inner-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}
.site-page .entry-content {
  padding: 4rem 0;
}
.site-page .entry-content .wp-block-heading,
.site-page .entry-content p,
.site-page .entry-content ul,
.site-page .entry-content li,
.site-page .entry-content ol {
  margin-bottom: 0.6rem;
}
.site-page .entry-content ul,
.site-page .entry-content ol {
  margin-left: 15px;
  padding-left: 15px;
}

.page-not-found #main {
  display: table;
  width: 100%;
  min-height: 50vh;
  height: 100%;
  text-align: center;
}
.page-not-found .fof {
  display: table-cell;
  vertical-align: middle;
}
.page-not-found .fof h1 {
  font-size: 50px;
  color: var(--primary);
  display: inline-block;
  padding-right: 12px;
  animation: type 0.5s alternate infinite;
  margin-bottom: 2rem;
}
.page-not-found .fof p {
  margin-bottom: 2rem;
}
.page-not-found .fof .btn-wrapper {
  max-width: 252px;
  margin: 0 auto;
  text-align: center;
}
.page-not-found .fof .btn-wrapper a {
  margin: 0 auto;
  text-decoration: none;
}
@keyframes type {
  from {
    box-shadow: inset -3px 0px 0px #ef4444;
  }
  to {
    box-shadow: inset -3px 0px 0px transparent;
  }
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-section .hero-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 768px) {
  .hero-section .hero-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.hero-section .hero-text {
  flex: 1;
}
.hero-section .hero-text h1 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .hero-section .hero-text h1 {
    font-size: 2.5rem;
  }
}
.hero-section .highlight {
  color: var(--primary);
}
.hero-section .hero-text p {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 2rem;
}
.hero-section .get-started-btn {
  display: inline-block;
  padding: 1.25rem 2rem;
  font-weight: bold;
  text-align: center;
  background-color: #f7db22;
  color: var(--text);
  border: 1px solid #f7db22;
  text-decoration: none;
  transition: 0.3s;
  max-width: 420px;
  width: 100%;
  border-radius: 0.5rem;
  margin: 0 auto;
}
.hero-section .get-started-btn:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.hero-section .hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}
.hero-section .image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 16rem;
}
@media (min-width: 576px) {
  .hero-section .image-wrapper {
    width: auto;
    height: 20rem;
  }
}
.hero-section .image-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  padding: 0.5rem;
  max-height: 16rem;
}
@media (min-width: 576px) {
  .hero-section .image-inner {
    height: 20rem;
  }
}
.hero-section .image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}
.hero-section .features {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .hero-section .features {
    grid-template-columns: repeat(3, 1fr);
  }
}
.hero-section .feature-box {
  padding: 1.5rem;
  border: 1px solid var(--text);
  border-radius: 0.5rem;
  transition: 0.3s;
  min-height: 14rem;
}
.hero-section .feature-box:hover {
  border-color: var(--primary);
}
.hero-section .icon-circle {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.hero-section .icon {
  width: 2.3rem;
  height: 2.3rem;
  stroke: #fff;
}
.hero-section .feature-box h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.hero-section .feature-box p {
  color: var(--text);
}

.inner-form-wrapper {
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: nowrap;
  flex-direction: column;
  transition: 0.3s;
}
@media (min-width: 576px) {
  .inner-form-wrapper {
    flex-direction: row;
  }
}
.inner-form-wrapper .form-image-block {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 576px) {
  .inner-form-wrapper .form-image-block {
    width: 40%;
  }
}
.inner-form-wrapper .form-image-block .hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}
.inner-form-wrapper .form-image-block .image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 16rem;
}
@media (min-width: 576px) {
  .inner-form-wrapper .form-image-block .image-wrapper {
    width: auto;
    height: 20rem;
  }
}
.inner-form-wrapper .form-image-block .image-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  max-height: 16rem;
}
@media (min-width: 576px) {
  .inner-form-wrapper .form-image-block .image-inner {
    height: 20rem;
  }
}
.inner-form-wrapper .form-image-block .image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}
.inner-form-wrapper .form-fields-block {
  width: 100%;
}
@media (min-width: 576px) {
  .inner-form-wrapper .form-fields-block {
    width: 58%;
  }
}

.form-field-details {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.form-field-details label {
  flex: 0 0 40%;
  font-weight: bold;
  margin-right: 10px;
  color: #333;
}

.form-field-details .field-value {
  flex: 1;
  color: #555;
}

/*# sourceMappingURL=main.css.map*/