@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ==========================================================================
   01. VARIABLES
   ========================================================================== */

:root {
  scroll-behavior: smooth;
  --pc: #3498db;
  --sc: #000;
  --lc: #183960;
}

body {
  color: var(--sc);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
}

/* ==========================================================================
   02. TYPOGRAPHY
   ========================================================================== */

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

.h1,
h1 {
  font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {

  .h1,
  h1 {
    font-size: 2.5rem;
  }
}

.h2,
h2 {
  font-size: calc(1.325rem + .9vw);
}

@media (min-width: 1200px) {

  .h2,
  h2 {
    font-size: 2rem;
  }
}

.h3,
h3 {
  font-size: calc(1.3rem + .6vw);
}

@media (min-width: 1200px) {

  .h3,
  h3 {
    font-size: 1.75rem;
  }
}

.h4,
h4 {
  font-size: calc(1.275rem + .3vw);
}

@media (min-width: 1200px) {

  .h4,
  h4 {
    font-size: 1.5rem;
  }
}

.h5,
h5 {
  font-size: 1.25rem;
}

.h6,
h6 {
  font-size: 1rem;
}

p {
  line-height: 1.8;
  margin: 0 0 20px 0;
}

a {
  color: #043565;
  text-decoration: none;
}

a:hover {
  color: #2183c5 !important;
}

.web-a {
  color: var(--sc);
}

.web-a:hover {
  color: var(--pc);
}

.heading {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.page-heading {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

/* ==========================================================================
   03. LAYOUT UTILITIES
   ========================================================================== */

[class*="flex"] {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.flex-col{
        flex-direction: column;
    }

.row-gap {
  row-gap: 30px;
}

.sticky {
  position: sticky;
}

.fw-500 {
  font-weight: 500;
}


/* ==========================================================================
   04. UTILITY CLASSES
   ========================================================================== */

.pt40 {
  padding-top: 40px;
}

.pt50 {
  padding-top: 50px;
}

.pt60 {
  padding-top: 60px;
}

.pt80 {
  padding-top: 80px;
}

.pb50 {
  padding-bottom: 50px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.text-success {
  color: #0acf97 !important;
}

.list-unstyled {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

/* @media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1160px;
  }
} */

/* ==========================================================================
   05. BUTTONS
   ========================================================================== */

.btn-a {
  background: #0000005c !important;
  color: #fff !important;
  padding: 5px 25px !important;
  border-radius: 50px !important;
}

.btn-a:hover {
  background: #000000db !important;
  color: #fff !important;
}

.btn-web {
  background: #043565;
  color: #fff;
  padding: 8px 24px;
  border-radius: 100px;
}

.btn-web:hover {
  background: #000;
  color: #fff !important;
}

.btn-custom {
  background-color: #02c0ce;
  border-color: #02c0ce;
}

.btn-custom,
.btn-danger,
.btn-info,
.btn-inverse,
.btn-pink,
.btn-primary,
.btn-purple,
.btn-success,
.btn-warning {
  color: #fff !important;
}

.ser-btn-web {
  padding: 8px 24px;
  border-radius: 100px;
  margin-bottom: 15px !important;
  margin-right: 15px;
  border: 1px solid #2183c5;
  color: #000;
}
.ser-btn-web:hover{
	background: #2183c5;
	color: #fff;
}

.login-btn {
  background: #fff;
  padding: 6px 24px;
  border-radius: 60px;
  color: #000;
  border: 2px solid #fff0;
}

.login-btn:hover {
  color: #fff !important;
  border: 2px solid #fff;
  background: #fff0;
}

.submit-button {
  width: 100%;
  padding: 12px;
  font-size: 18px;
  font-weight: 500;
  color: white;
  background-color: #2563eb;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.submit-button:hover {
  background-color: #1d4ed8;
}

.btn-p{
	background: var(--pc);
	border-radius: 50px !important;
	color: #fff;
}

.btn-p:hover{
	color:#fff !important;
	    padding: 5px 25px !important;
}

/* ==========================================================================
   06. HEADER & NAVBAR
   ========================================================================== */

#header {
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid #ffffff63;
  padding: 10px;
}

#logo {
  filter: brightness(0) invert(1);
}

.sticked #logo {
  filter: unset;
}

.sticked {
  height: 70px;
  background: #fff;
  border-bottom: 1px solid #0000004d !important;
}

/* .sticked .navbar-light .navbar-toggler {
  border-color: #000;
} */



.sticked #logo img {
  height: 25px;
  width: auto;
}

.sticked #navbarSupportedContent .nav-link {
  color: #000 !important;
}

.navbar-light .nav-link {
  margin-right: 25px;
  color: #fff !important;
  font-weight: 400;
  letter-spacing: .5px;
  text-decoration: none !important;
}

.navbar-light .menu-item:last-child .nav-link {
  margin-right: 0;
}

.navbar-light .nav-link:focus,
.navbar-light .nav-link:hover {
  color: #fff !important;
}

.navbar-light .navbar-toggler {
  border: unset !important;
  padding: 8px 10px;
}

#navbarSupportedContent {
  justify-content: right;
}

/* ----- Navbar Dropdown ----- */

.navbar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 8px 0 8px 20px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ff0909;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 20px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 220px;
}

.navbar .dropdown ul a {
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #082744 !important;
  border: none;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ff0909;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

.navbar .megamenu {
  padding: 1rem;
}

/* ==========================================================================
   07. HERO SECTION
   ========================================================================== */

#hero {
  width: 100%;
  /* background: url("https://getanswerss.com/wp-content/uploads/2026/03/hero-img.jpg"); */
  position: relative;
  background: url(https://aliceblue-elk-575302.hostingersite.com/wp-content/uploads/2026/03/Page-Header-img.webp) no-repeat;
  background-size: cover;
  padding: 120px 0 0 0;
}

#hero:before {
  content: "";
  /* background: #183960d1; */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  position: relative;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.page-header {
  background: url(https://aliceblue-elk-575302.hostingersite.com/wp-content/uploads/2026/03/Page-Header-img.webp) no-repeat;
  background-size: cover;
  position: relative;
  padding: 8rem 0 5rem 0 ;
  margin-bottom: 40px;
  /* height: 260px; */
  object-fit: cover;
  background-repeat: no-repeat;
}

/* ----- Hero Waves ----- */

.hero-waves {
  display: block;
  margin-top: 60px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: relative;
}

.wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
}

.wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
}

.wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/* ----- Hero Search Bar ----- */

#askxquad-search {
  max-width: 800px;
  margin: 1.5rem auto 0 auto;
  border-radius: 100px;
  border: 8px solid #ffffff5c;
  position: relative;
}

#askxquad-search .form-control {
  border: none;
  padding: 0 25px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  height: 60px;
  box-shadow: none;
}

#askxquad-search .btn,
#askxquad-search .btn:hover {
  background: #fff;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  padding: 0 1.5rem 0 1.25rem;
  height: 60px;
  width: auto;
  font-size: 20px;
  border: none;
  color: #2e5d9f;
  opacity: 1;
  box-shadow: none !important;
}

#askxquad-search .custom-select,
#askxquad-search .custom-select:focus {
  border: none;
  padding: 0 0.75rem;
  height: 60px;
  box-shadow: none;
  max-width: 160px;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  outline: 0;
  background-size: 10px 12px;
  z-index: 9;
}

.search-sec h1 {
  font-size: 50px;
  padding-bottom: 20px;
}

/* ==========================================================================
   08. PAGE HEADER
   ========================================================================== */

.page-header .author-meta a span,
.share-icon span, .page-header .custom-dot {
  color: #fff;
}

.share-icon .top-social-icon li a{
  border-radius: 5px;
}

.side-info{
  display: flex;
  gap: 16px;
  flex-direction: column;
}



.page-header .title-single-box {
  /* padding: 0 0 0 2rem; */
  /* border-left: 3px solid #3498db; */
  color: #fff;
}
/*
.page-header .title-single-box .title-single {
  font-weight: 600;
  font-size: 2.2rem;
} */

.page-header .yoast-breadcrumbs {
  padding: 1rem 0 0 1rem;
	    margin-bottom: 1rem;
}

.page-header .yoast-breadcrumbs {
  background-color: transparent;
  padding-right: 0;
  padding-left: 0;
  color: #fff;
}

/* All links in Yoast breadcrumbs */
.page-header .yoast-breadcrumbs a {
  color: #fff !important;
  text-decoration: none;
}

.page-header .yoast-breadcrumbs a:hover {
  color: #ddd;
  text-decoration: underline;
}

/* Active/last item (no link, just text) */
.page-header .yoast-breadcrumbs .breadcrumb_last {
  color: #ddd;
}

/* Separator ( » ) — targets the outer span's text nodes via color inheritance */
.page-header .yoast-breadcrumbs span {
  color: #ffffff;
}



/*  pagination*/

.pagination {
    text-align: center;
	margin-top : 20px;
}

.pagination .page-numbers {
    color: #fff;
    background-color: var(--pc);
    line-height: 35px;
    transition: all 0.4s ease 0s
}

.pagination .page-numbers.current, .pagination .page-numbers:hover {
    color: #fff !important;
    background-color: var(--pc);
}

.pagination .page-numbers.current::before, .pagination .page-numbers.current::after, .pagination .page-numbers:hover::before, .pagination .page-numbers:hover::after {
    background-color: var(--lc);
    border-radius: 0 50px 50px 0;
    transition: all 0.4s ease 0s
}

.pagination .page-numbers.current::after, .pagination .page-numbers:hover::after {
    border-radius: 50% 0 0 50%
}

.pagination .page-numbers {
    display: inline-block;
    height: 35px;
    width: 35px;
    padding: 0;
    margin: 0 5px;
    overflow: hidden;
    position: relative;
    z-index: 1
}

.pagination .page-numbers.current::before,.pagination .page-numbers.current::after,.pagination .page-numbers:hover::before,.pagination .page-numbers:hover::after {
    content: "";
    width: 0;
    height: 60%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1
}

.pagination .page-numbers.current::after,.pagination .page-numbers:hover::after {
    left: auto;
    right: 0;
    top: auto;
    bottom: 0
}

.pagination .page-numbers.current::before,.pagination .page-numbers.current::after,.pagination .page-numbers:hover::before,.pagination .page-numbers:hover::after {
    width: 80%
}
/*  pagination*/


/* ==========================================================================
   09. BRANDS SECTION
   ========================================================================== */

.brands {
  gap: 20px;
  align-items: center;
}

/* .brands+p {
  text-align: center;
  margin-top: 50px;
} */

.brands .icons {
  display: flex;
  flex-basis: 100%;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
  transition: all 0.3s;
}

.brands .icons img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  transition: all 0.3s;
}

.brands a span {
  color: var(--sc);
}

.icons:hover {
  transform: translateY(-10px);
}

.icons:hover img {
  transform: scale(0.6);
}

/* ==========================================================================
   10. CARD & TEXT COMPONENTS
   ========================================================================== */

.rd-card .title {
  font-size: 1.25rem;
  font-weight: 600 !important;
  line-height: 1.4;
  margin-block: 1rem;
}

.latest-post .rd-card:first-child .title{
	margin-top: 0px;
	
}

.rd-textflow {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.category-b {
  background-color: #ebf3f3;
  border-radius: 5px;
  padding: 4px 15px;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
}

.blue-box,
.green-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 8px;
}

.blue-box .btn,
.green-box .btn {
  margin-top: auto;
  width: fit-content;
}

.blue-box {
  background-color: #007DA9;
  padding: 40px;
  height: 100%;
}

.green-box {
  background-color: #183960;
  padding: 40px;
  height: 100%;
}

.blue-box svg,
.green-box svg {
  padding: 12px;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  font-size: 20px;
  background-color: #00000059;
  margin-right: 15px;
  color: #fff;
  line-height: 25px;
}

.blue-box span,
.green-box span {
  font-size: 28px;
  color: #fff;
}

.counter-box {
  background: #2183c5;
  padding: 24px;
  text-align: center;
}

.counter-box p {
  margin: 5px 0 0;
  padding: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.counter-box i {
  font-size: 60px;
  margin: 0 0 15px;
  color: #fff;
}

.counter-box h3 {
  color: #fff;
}

.team-sec {
  transform: translateY(0);
  transition: all .3s ease 0s;
}

.team-sec:hover {
  transform: translateY(-10px);
  box-shadow: 0px 4px 8px 0px #ccc;
}

.ask-card {
  position: relative;
    /* padding: 20px; */
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
    /* border-radius: 5px; */
    background: #fff;
    /* border: 1px solid #ccc; */
    cursor: pointer;
    list-style: none;
    font-size: 17px;
    font-weight: 600;
}

.ask-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #000;
}

.ask-card a svg {
  flex-shrink: 0;
}

.ask-card:last-child {
  border-bottom: none;
}

/* ==========================================================================
   11. HR LINE & BLOGS SECTION
   ========================================================================== */

.hr-line>div:nth-child(2) {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.hr-line>div>div>div:not(:first-child) {
  padding-top: 50px;
  position: relative;
}

@media (min-width: 1024px) {
  .hr-line>div:not(:first-child) {
    border-left: 1px solid #c7c7c7;
  }
}

.blog-content {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.border-top {
  padding-top: 16px;
}

/* ==========================================================================
   12. HOW SECTION
   ========================================================================== */

.how-points {
  position: relative;
  margin-bottom: 35px;
  background: #CCCCCC33;
  padding: 15px;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
}



.step-number {
  position: absolute;
  left: -77px;
  top: 25px;
  /* border-radius: 50%;
    background: #043565; */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.process-points {
  position: relative;
  margin: 0 auto;
  padding-left: 75px;
}

.process-points::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 27px;
  bottom: 50px;
  width: 2px;
  background: #00A0E3;
}

.outline {
  border: 2px solid #00A0E3;
  padding: 5px;
  background: white;
  border-radius: 50%;
}

.outline>div {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #043565;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  width: 45px;
  height: 45px;
}

.how-points span {
  font-size: 22px;
  font-weight: 600;
}

.register-bg {
  border: 1px solid #ccc;
  padding: 30px 60px;
  border-radius: 100px;
  background-color: #cccccc80;
}

.register-bg span {
  font-size: 24px;
  font-weight: 600;
}

/* ==========================================================================
   13. SINGLE / ALL PAGE
   ========================================================================== */

.single-sec {
  padding: 30px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 4px;
}

.single-sec ul li {
  width: 100%;
  margin-bottom: 0.5rem;
  counter-increment: term;
  /* list-style: none; */
}

/* .single-sec ul li:before {
  content: counter(term) " ";
  font-size: 1.5rem;
  margin-top: 4px;
  margin-right: 0.5em;
  font-weight: 500;
  line-height: 1.7;
} */

.single-pg ul li::marker,
.single-pg ol li::marker {
  color: var(--pc);

}

.single-pg ul li,
.single-pg ol li {
  list-style-type: square;
}

.single-pg ul {
  padding-left: 2rem !important;
}

.single-pg li {
  line-height: 2;
}

.steps-head {
  padding-left: 2rem !important;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}

.icon-i img {
  height: 100px;
  margin-right: 15px;
}

.medical-ser {
  margin-bottom: 30px;
}

.accordion-button:not(.collapsed) {
  color: #000;
  background-color: #e5e5e5cc;
  box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}

.about-bg {
  background: url(../img/about-bg.jpg) no-repeat center / cover;
}

.wp-block-columns {
  margin-bottom: 10px;
}




/* ==========================================================================
   14. CONTACT
   ========================================================================== */

.contact-box {
  border-bottom: 1px solid #cccc;
  padding-bottom: 25px;
  padding-top: 25px;
  margin-bottom: 10px;
}

.contact-box .icon i {
  font-size: 30px;
  background: #2183c5;
  padding: 15px;
  border-radius: 50%;
  color: #fff;
  margin-right: 20px;
  height: 65px;
  width: 65px;
  text-align: center;
  line-height: 36px;
}

.contact-box a {
  color: #000;
}

/* ==========================================================================
   15. SEARCH RESULTS
   ========================================================================== */

.search-result-box .tab-content {
  padding: 30px 30px 10px 30px;
  box-shadow: none;
}

.search-result-box .search-item {
  padding-bottom: 20px;
  border-bottom: 1px solid #e3eaef;
  margin-bottom: 20px;
}

/* ==========================================================================
   16. LOGIN FORM
   ========================================================================== */

.login-form {
  width: 450px;
  margin: 30px auto;
}

.login-form form {
  margin-bottom: 15px;
  background: #f7f7f7;
  box-shadow: 0px 3px 2px rgb(0 0 0 / 30%);
  padding: 30px;
  border: 1px solid #cccc;
}

.login-form h2 {
  margin: 0 0 15px;
}

.input-group-prepend .fa {
  font-size: 18px;
}

.form-group {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.or-seperator {
  margin-top: 20px;
  text-align: center;
  border-top: 1px solid #ccc;
}

.or-seperator i {
  padding: 0 10px;
  background: #f7f7f7;
  position: relative;
  top: -11px;
  z-index: 1;
}

.social-btn .btn {
  border: none;
  margin: 10px 3px 0;
  opacity: 1;
}

.social-btn .btn:hover {
  opacity: 0.9;
  color: #fff !important;
}

.social-btn .btn-secondary,
.social-btn .btn-secondary:active {
  background: #507cc0 !important;
}

.social-btn .btn-info,
.social-btn .btn-info:active {
  background: #64ccf1 !important;
}

.social-btn .btn-danger,
.social-btn .btn-danger:active {
  background: #df4930 !important;
}

/* ==========================================================================
   17. FORM CONTAINER
   ========================================================================== */

.form-container {
  width: 100%;
  max-width: 600px;
  background-color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 32px;
}

/* .form-group {
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
} */

@media (min-width: 768px) {
  .form-group.two-cols {
    grid-template-columns: 1fr 1fr;
  }
}

label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 4px;
}

.required-star {
  color: #ef4444;
}

.input-field {
  display: block;
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  box-sizing: border-box;
}

.input-field:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.error-message {
  color: #ef4444;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

.input-field.error {
  border-color: #ef4444 !important;
}

select.input-field {
  appearance: none;
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 1em;
}

#successMessage {
  text-align: center;
  padding: 16px;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 6px;
  font-weight: 500;
  display: none;
  margin-top: 24px;
}

/* ==========================================================================
   18. Accordion
   ========================================================================== */

details summary {
  cursor: pointer;
  background: var(--white);
  border: 1px solid #ddd;
  list-style: none;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  border-radius: 6px;
}

details summary {
  padding: 15px;
  margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

details summary:after {
  content: '';
  position: relative;
/*   right: 25px;
  top: 50%;
  transform: translateY(-50%); */
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' xml:space='preserve' width='20' height='20'%3E%3Cpath d='M6.25 9.375h7.5v1.25H6.25z'/%3E%3Cpath d='M9.375 6.25h1.25v7.5h-1.25z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.25' stroke-miterlimit='10' cx='16' cy='16' r='12' d='M17.5 10A7.5 7.5 0 0 1 10 17.5A7.5 7.5 0 0 1 2.5 10A7.5 7.5 0 0 1 17.5 10z'/%3E%3C/svg%3E") no-repeat;
  height: 20px;
  width: 20px;
  transition: all .3s;
}

details[open] summary {
  border-radius: 6px 6px 0 0;
}

details[open] summary:after {
  transition: all .3s;
  transform: rotate(45deg);
/*   top: 25px; */
}

details .content {
  padding: 10px 20px;
  background: #cccccc2b;
}

/* ==========================================================================
   18. POPUP MODAL
   ========================================================================== */

.popup-modal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(0, 0, 0, 0.8) !important;
  z-index: 99999 !important;
  display: none !important;
  justify-content: center;
  align-items: center;
}

.popup-modal.show {
  display: flex !important;
}

.popup-modal .form-container {
  position: relative;
}

.popup-close {
  position: absolute !important;
  top: 30px !important;
  right: 20px !important;
  font-size: 30px;
  cursor: pointer;
  color: #999;
  z-index: 1000;
}

/* ==========================================================================
   19. BACK TO TOP
   ========================================================================== */

.scroll-top {
  position: fixed;
  right: 0;
  bottom: 40px;
  z-index: 996;
  width: 35px;
  height: 100px;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  background: var(--pc);
  border-radius: 10px 0 0 10px;
  color: var(--white);
  transition: all 0.4s;
}

.scroll-top span {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

.scroll-top::before,
.scroll-top::after {
  content: "";
  position: absolute;
  right: 0;
  width: 15px;
  height: 30px;
  background-color: transparent;
}

.scroll-top::after {
  bottom: -30px;
  border-top-right-radius: 15px;
  box-shadow: 0 -15px 0 0 var(--pc);
}

.scroll-top::before {
  top: -30px;
  border-bottom-right-radius: 15px;
  box-shadow: 0 15px 0 0 var(--pc);
}

/* ==========================================================================
   20. FOOTER
   ========================================================================== */

footer {
  background-color: #000;
  color: #f8f9fa;
  margin-top: 80px;
  padding-block: 50px 20px;
}

footer p {
  color: #c7c7c7 !important;
}

footer a {
  color: #c7c7c7 !important;
}

.footer-h {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-h::before {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 25px;
  height: 3px;
  background-color: var(--pc);
}

.footer-tagline {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-bottom {
  border-top: 1px solid #cccccc80;
  padding-top: 16px;
}

.footer-bottom p {
  text-align: center;
}

.top-social-icon li {
  display: inline-block;
  padding-bottom: 0 !important;
}

.top-social-icon li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  margin-right: 10px;
}

.top-social-icon li:last-of-type a{
	margin-right: 0px !important;
}

.top-social-icon li a:hover {
  background: var(--pc);
}

.top-social-icon li a:hover svg {
  fill: #fff;
}

.about ul li,
footer .list-unstyled li:not(:last-of-type) {
  padding-bottom: 15px;
}

.foot-menu ul {
  padding-left: 0;
}

.foot-menu ul li {
  display: flex;
  align-items: center;
  color: #fff;
}

.foot-menu span {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  padding-right: 20px;
}

.site-logo img {
  width: 193px;
}

/* ==========================================================================
   21. STICKY & SIDEBAR
   ========================================================================== */

.latest-post {
  top: 100px;
}

.side-heading {
  position: relative;
}

.side-heading::before {
  content: "";
  position: absolute;
  width: 10%;
  height: 4px;
  bottom: -5px;
  background: var(--pc);
}

.latest-post .blog-content {
  padding-inline: 0px;
  padding-bottom: 0px;
}

.auth-sticky{
	position: sticky;
	top: 55px;
	background: #CCCCCC33;
    padding: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
} 
.auth-sticky img{
	border-radius: 50%;
}

.auth-sticky .author-name{
	font-size: 22px;
    font-weight: 600;
}
/* ==========================================================================
   22. TABS SECTION
   ========================================================================== */

.tabs-sec {
  position: sticky;
  top: 75px;
}

.tabsCon .tab {
  column-gap: 15px;
  flex-wrap: wrap;
}

.tabsCon .flex-col-tab-card {
  padding: 20px;
  gap: 20px;
  height: 100%;
}

.tabcontent {
  display: none;
}

.tabsCon .flex-col-wcu {
  /* background: var(--pc); */
  border: #043565 1px solid;
  color: #043565;
  /* border-radius: 10px; */
  padding: 20px;
}

.tabsCon .flex-col-wcu a {
  color: #043565;
}

.tabsCon .flex-col-wcu a:hover {
  color: #fff !important;
}

.tablinks.active {
  background: #2183c5;
  color: #fff;
}

/* ==========================================================================
   23. RESPONSIVE
   ========================================================================== */

@media (min-width: 992px) {
  .navbar .megamenu {
    position: static !important;
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 0;
  }
	
	.nav-search-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
	.nav-search-icon svg {
        fill: var(--lc);
    }
	
	
	header.sticked .navbar-light .nav-search-icon{
		background: var(--lc);
	}
	
	header.sticked .navbar-light .nav-search-icon svg{
		fill: #fff;
	}
	
	
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (max-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }

  .hr-line>div>div>div:not(:first-child):before {
    background: #c7c7c7;
    content: "";
    display: block;
    height: 1px;
    margin: 25px 0;
    position: absolute;
    right: -.75rem;
    top: 0;
    width: calc(100% + 1.5rem);
  }

  .hr-line>div:not(:first-child) {
    padding-top: 50px;
    position: relative;
  }

  .hr-line>div:not(:first-child):before {
    background: #c7c7c7;
    content: "";
    display: block;
    height: 1px;
    margin: 25px 0;
    position: absolute;
    top: 0;
    width: calc(100% - 1.5rem);
  }

  .hr-line .col-lg-4:nth-child(2) {
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5);
  }

  /* .hr-line>div:not(:first-child) {
    border-left: 1px solid #c7c7c7;
  } */

  .hr-line>div>div>div:not(:first-child):before {
    right: inherit;
    width: 100%;
  }
	
	.title-single-box{
		margin-bottom: 16px;
	}
}

@media (max-width: 991px) {
	.page-header{
		padding:7rem 0 6rem 0;
	}	
	
  #hero {
    padding-top: 80px;
  }
	    .sticked .nav-search-icon svg {
        fill: #000 !important;
    }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    max-width: 50%;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;
  }

  .brands {
    flex-wrap: wrap;
    justify-content: center;
  }

  .register-bg {
    flex-direction: column;
    justify-content: center;
  }

  .tech-expert{
    display: none;
  }
	
	header:not(.sticked) .navbar-light .navbar-toggler svg,
header:not(.sticked) .navbar-light .nav-search-icon svg{
  fill: #fff;
}
}

@media (max-width: 600px) {
  #navbarSupportedContent {
    background: #fff;
  }

  #navbarSupportedContent .nav-link {
    color: #000 !important;
    margin-left: 25px;
  }

  button:focus:not(:focus-visible) {
    box-shadow: none;
  }

  #hero h1 {
    padding-top: 30px;
  }

  .heading {
    font-size: 28px;
  }

  .how-points span {
    font-size: 18px;
  }

  .pt80 {
    padding-top: 30px;
  }

  .register-bg {
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
  }

  .register-bg span {
    font-size: 18px;
  }

  .foot-menu {
    margin-top: 20px;
  }

  .footer-h {
    font-size: 16px;
  }

  .blue-box .icon-sec,
  .green-box .icon-sec {
    flex-direction: column;
    gap: 10px;
	  align-items: start !important;
  }

  /* .brands .icons img{
    height: 40px;
    width: 40px;
  } */

  .brands .icons {
    flex-basis: 100%;
  }

  details summary {
    gap: 20px;
  }
	details summary:after{
		flex-shrink:0;
	}

  .process-points::before{
    display: none;
  }
  .process-points{
    padding-left: 20px;
  }

  .step-number{
    left: -15px;
    top: -15px;
  }
	
	.how-points{
		padding: 15px 15px 15px 50px;
	}
	
	.not-found-page img{
		height: 200px;
		width: 200px;
	}
	
	.header #logo img{
		width: 200px;
	}
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

/* Table Of Content */

#tableofcontent {
    background: #b4c8c321;
    padding: 30px;
    border: 1px solid var(--lc);
    border-radius: 5px;
    width: fit-content;
    margin-block: 30px;}

#tableofcontent .head-th {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #cdcdcd;
}

#tableofcontent ul{
	padding-left: 1rem !important;
	margin-bottom: 0px !important;
}

#tableofcontent ul li {
    list-style-type: none;
    position: relative;
    margin-left: 10px;
	margin-bottom: 15px;
}

#tableofcontent ul li:last-of-type{
	margin-bottom: 0px
}

#tableofcontent ul li:before {
    content: '';
    position: absolute;
    left: -30px;
    top: 4px;
    background: url('data:image/svg+xml,<svg width="18" height="18" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="%23fff" fill-opacity=".01" d="M0 0h48v48H0z"/><path d="m19 12 12 12-12 12" stroke="%23044737" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat;
    height: 18px;
    width: 18px;
}

#tableofcontent ul li a {
    text-decoration: none;
	font-weight: 600;
}

#tableofcontent ul li a:hover {
    text-decoration: underline;
}
/* Table Of Content */

.wp-block-quote{
	border-left: .25em solid var(--lc) !important;
}

blockquote {
    background: rgb(9 103 97 / .08);
    -webkit-box-shadow: 0 0 4px 0 rgb(0 0 0 / .25);
    box-shadow: 0 0 4px 0 rgb(0 0 0 / .25);
    margin-bottom: 30px;
    padding: 30px;
    position: relative;
    z-index: 1;
	width: fit-content;
}

:is(blockquote,.rd-block) p {
    font-style: italic;
    margin-bottom: 0;
    font-size: 18px;
}

blockquote li{
	margin-bottom: 20px;
}

.all-page ul li {
    line-height: 2;
    margin-bottom: 20px;
    position: relative;
}

.yoast-breadcrumbs > span > a {
	color: #fff !important;
}

.yoast-breadcrumbs > span > span > a{
	color: #ddd !important;
}


.author-meta a img{
	height: 30px;
	width: 30px;
	border-radius: 50%;
}

.img-placeholder{
    background-color: #ccc;
	aspect-ratio: 16/9;
	overflow: hidden;
}


.overlay-search {
    position: fixed;
    height: 100vh;
    width: 100%;
    background: rgb(0 0 0 / 93%);
    z-index: 9999;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.overlay-search.show {
    display: flex;
}
.overlay-search #hero-srch-wrap {
    width: 100%;
    max-width: 600px;
    position: relative;
}
.closeSrchBar {
    position: fixed;
    right: 30px;
    top: 30px;
    z-index: 999999;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.8;
}
.overlay-search #hero-srch-wrap form {
    position: relative;
    width: 100%;
}

form :is(input, select, textarea) {
    padding: 10px;
    position: relative;
    width: 100%;
    border: 1px solid #00000026;
    border-radius: 5px;
}

/* Read More css */
.readmore-btn {
            font-weight: 400;
        }

        .readmore-btn {
            display: inline-block;
                padding: 3px 20px;
            cursor: pointer;
            -webkit-user-select: none;
            -moz-user-select: none;
            user-select: none;
        }

/* About us css */

.page .img-placeholder {
    background: unset;
  }

  .page .bg-light {
    background: #f5f5f5;
  }

  .page .step-number {
    left: -15px;
    top: -15px;
  }

  .page .process-points {
    padding-left: 20px;
  }

  .page .process-points::before {
    display: none;
  }

  .page .how-points {
    padding: 15px 15px 15px 50px;
  }

  .page .service-card {
    background: #fff;
    padding: 30px;
    height: 100%;
    border: 1px solid #cdcdcd;
    border-radius: 10px;
  }

  .page .service-card .h5 {
    margin: 20px 0 20px 0;
  }

  .page .member-card .member-img img {
    height: 160px;
    width: 160px;
    object-fit: cover;
    object-position: top;
  }

  /* Team Card */
  .page .team-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
  }

  .page .member-img {
    padding: 20px 0;
    display: block;
    position: relative;
  }

  .page .member-img svg {
    transform: scale(0);
    position: absolute;
    background: var(--lc);
    fill: #fff;
    border-radius: 50%;
    padding: 10px;
    bottom: 0;
    left: 37%;
    transition: all .3s;
  }

  .page .team-card:hover svg {
    transform: scale(1);
    transition: all .3s;
  }

  .page .member-img img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-position: top;
    object-fit: cover;
  }

  .page .member-info {
    padding: 16px;
  }

  .page .member-info > div > a {
    font-weight: 600;
  }

  .page .member-role {
    color: #6b7280;
    font-size: 15px;
  }

  .page .arrow-btn {
    background-color: #f3f4f6;
    padding: 10px;
    border-radius: 50%;
    text-decoration: none;
    flex-shrink: 0;
  }

  .page .arrow-btn:hover {
    background-color: #e5e7eb;
  }

  .page .team-card:hover {
    background-color: #f7f7f7;
    border-color: #bbbaba;
  }

  .page .team-card:hover .member-info .arrow-btn {
    background-color: var(--lc);
  }

  .page .team-card,
  .page .member-info .arrow-btn,
  .page .member-info,
  .page .arrow-btn svg path {
    transition: all 0.3s ease;
  }

  .page .form-control {
    padding: 25px;
    border-radius: 15px;
  }

  .page .submit-button {
    background: var(--lc);
  }

  .page .submit-button:hover {
    background: #000;
  }

  .page .form-container {
    box-shadow: none;
    border: 1px solid #cdcdcd;
  }

/* About Us Css End */
