/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/*@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
body {
    font-family: "Nunito Sans", sans-serif !important;
    color: #444444;
}




a {
  color: #60b1f3;
  text-decoration: none;
}

a:hover {
  color: #ff724a;
  text-decoration: none;
}
p {
  font-size: 16px !important;
}

h1{
  font-size: 30px !important;
}
h2{
  font-weight: bolder;
  font-size: 24px !important;
}
h3 {
  font-weight: bolder;
  font-size: 20px !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
html .cog-label, :root:root:root:root:root .cog-label ,
html .cog-cognito--styled .el-input__inner, html .cog-cognito--styled .el-textarea__inner, :root:root:root:root:root .cog-cognito--styled .el-input__inner, :root:root:root:root:root .cog-cognito--styled .el-textarea__inner,
html .cog-cognito *, html .cog-cognito *::before, html .cog-cognito *::after, :root:root:root:root:root .cog-cognito *, :root:root:root:root:root .cog-cognito *::before, :root:root:root:root:root .cog-cognito *::after {
  font-family: "Nunito Sans", sans-serif !important;
}

/*hr:not([size]) {
    height: 2px;
}*/

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #3889e4;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ff724a;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #3889e4;
  border-top-color: #ffe9e3;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
.top_bar {
  padding: 5px 0px;
}

.top_bar h1 {
  font-size: 34px;
  margin-bottom: 0px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .top_bar h1 {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Main Content // Home Icon Sets
--------------------------------------------------------------*/
.icons_set_home {
  padding: 15px 0px 15px 0px;
}
.icons_set_home a {
  box-shadow: none;
  border-radius: 0;
  padding: 0px 5px;
  margin-bottom: 20px;
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
  position: relative;
}
.icons_set_home a:hover {
  box-shadow: none;
  opacity: 0.85;
}

.icons_set_home a img {
    display: block;
    max-width: 100%;
    height: auto;
}

.icons_set_home a p {
    position: relative;
    bottom: auto;
    width: 100%;
    background: #ffffff;
    text-align: center;
    font-size: 18px !important;
    margin: 4px 0 0 0;
    color: #020202;
    text-transform: uppercase;
    font-weight: 600;
    padding: 2px 0;
}



@media screen and (max-width: 768px) {
  .icons_set_home img {
    margin-bottom: 10px;
  }
  .col-4 {
    padding: 0px 5px;
  }
  .icons_set_home a p {
            font-size: 10px !important;
        padding-top: 4px;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #121d24;
  padding: 0 0 15px 0;
  color: #fff;
  font-size: 16px;
}

#footer .footer-top {
  background: #15222b;
  border-bottom: 1px solid #1d303c;
  padding: 40px 0 0px 0;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ff724a;
  font-size: 12px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ff724a;
}

#footer .copyright {
  text-align: center;
  padding-top: 15px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  transition: 0.3s;
  color: #ff724a;
}

@media screen and (max-width: 768px) {
  #footer .footer-top {
    padding: 35px 0px 15px 0px;
  }
  #footer .footer-top .footer-info h3 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #ddd;
  min-height: 40px;
  color: #333;
  text-align: center;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  justify-content: center;
}

.breadcrumbs ol a {
  color: #aaaaaa;
}

.breadcrumbs ol a:hover {
  color: #fff;
  transition: 0.3s;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #333;
  content: "/";
}

.inner_page {
  padding: 50px 0px;
}

/*================================================
Mobile Menu CSS
=================================================*/

.option-item {
  background-color: #3889e4;
  padding: 20px;
}

.option-item .side-menu-btn i {
  font-size: 45px;
  color: #fff;
  cursor: pointer;
  -webkit-transition: 1;
  transition: 1;
  position: fixed;
  top: 18px;
  line-height: 1;
  background-color: #3889e4;
  z-index: 1;
}

.option-item .side-menu-btn i:hover {
  color: #ff724a;
}

@media screen and (max-width: 768px) {
  .option-item {
    padding: 15px 0px;
  }
  .option-item .side-menu-btn i {
    font-size: 36px;
    top: 10px;
  }
}

/*================================================
Sidebar Modal CSS
=================================================*/

.modal.left .modal-dialog {
  position: fixed;
  margin: auto;
  max-width: 350px;
  height: 100%;
  -webkit-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

@media screen and (max-width: 768px) {
  .modal.left .modal-dialog {
    max-width: 300px;
  }
}

.modal.left .modal-content {
  height: 100%;
  overflow-y: auto;
  background-color: #ffffff;
  border: none;
  border-radius: 0;
}

.modal .modal-body .title {
  padding: 10px 15px 10px 15px;
  border-bottom: 1px solid #dfdfdf;
}

.modal .modal-body .title h3 {
  font-weight: bold;
  color: #3889e4;
  margin: 0;
}
.modal .modal-body .title h3:hover {
  font-weight: bold;
  color: #ff724a;
}

.modal.left .modal-content button.close {
  float: unset;
  position: absolute;
  right: 10px;
  top: 10px;
  background-color: transparent;
  color: #2e2f46;
  z-index: 2;
  opacity: 1;
  border: none;
  text-shadow: unset;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  font-size: 25px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  font-weight: bolder;
}

.modal.left .modal-content button.close:hover {
  color: #ed1b24;
}

.modal.left.fade .modal-dialog {
  left: -320px;
  -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
  transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.left.fade.show .modal-dialog {
  left: 0;
}

.sidebarModal.modal .modal-body {
  padding: 30px 15px;
}

.sidebarModal .sideb_bar_menu {
  padding: 15px 0px;
  min-width: 210px;
}

.sidebarModal .sideb_bar_menu ul {
  padding: 0px;
}

.sidebarModal .sideb_bar_menu ul li {
  list-style: none;
  background-color: #3889e4;
  padding: 5px 15px;
  margin-bottom: 1px;
  border-radius: 2px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.sidebarModal .sideb_bar_menu ul li:hover {
  background-color: #f3f3f3;
  padding-left: 20px;
}
.sidebarModal .sideb_bar_menu ul li:hover a {
  color: #3889e4;
}

.sidebarModal .sideb_bar_menu ul .m_mleft {
  padding-left: 30px;
  background-color: #60b1f3;
}
.sidebarModal .sideb_bar_menu ul .m_mleft a {
  color: #fff;
}

.sidebarModal .sideb_bar_menu ul .m_mleft:hover {
  padding-left: 35px;
}

.sidebarModal .sideb_bar_menu ul li a {
  color: #fff;
  display: block;
  font-size: 18px;
}

.sideb_bar_menu .side_menu_arrow a:after {
  content: "\f286";
  font-family: bootstrap-icons !important;
  position: absolute;
  right: 30px;
  font-weight: bold;
}

.sideb_bar_menu .side_menu_arrow a.collapsed:after {
  content: "\f282";
  font-family: bootstrap-icons !important;
  position: absolute;
  right: 30px;
  font-weight: bold;
}

/*================================================
About Page CSS + Others Page
=================================================*/

.common_page {
  padding: 25px 0px 15px 0px;
}
.common_page p {
  text-align: center;
  font-size: 24px;
  margin-bottom: 10px;
}
.common_page h2 {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #333;
  line-height: 1.3;
}

.common_page h3 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  color: #333;
  line-height: 1.3;
}

.common_page h3 strong {
    font-weight: bold;
}

.common_page h4 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  color: #333;
  line-height: 1.3;
}

.c_page_body {
  padding: 0px 25px;
}

.c_page_body .card-body {
  border-radius: 20px;
  box-shadow: 0px 10px 35px -14px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}
.c_page_body .card-body p:last-child {
  margin-bottom: 0px;
}

.left-align p {
  text-align: left !important;
}

.terms_condition p,
.terms_condition h2,
.terms_condition h3 {
  text-align: left;
}

.terms_condition ul li {
  margin-bottom: 10px;
}

.map_gap {
  padding: 10px 0px;
}

.list {
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .common_page {
    padding: 15px 0px 15px 0px;
  }
  .common_page p {
    font-size: 12px;
  }
  .common_page h2 {
    font-size: 16px;
  }
  .common_page h3 {
    font-size: 16px;
  }
  .common_page h4 {
    font-size: 16px;
  }
  .c_page_body {
    padding: 0px 0px;
  }
  .map_gap {
    padding: 0px;
  }
}

.ab_normal_bub {
  background-color: #fff;
  margin-bottom: 0px;
  margin-top: 15px;
}

/*================================================
Home Content CSS
=================================================*/

.home_content_body {
  padding: 15px 0px;
}

.common_box_shadow {
  border: 2px solid #a8a8a8;
  border-radius: 25px;
  background-color: rgba(255, 114, 74, 0.1);
  margin-bottom: 15px;
}

.common_box_s_body {
  margin: 15px;
  background-color: #fff;
  padding: 15px;
  border-radius: 15px;
  text-align: center;
}

.common_box_s_body p {
  margin-bottom: 0px;
}

.btn_common {
  text-align: center;
  display: flex;
  justify-content: center;
    margin-bottom: 25px;
    margin-top: 0 !important;
}
.btn_common_learn_more {
  background-color: #3889e4;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 12px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.btn_common_learn_more:hover {
  background-color: #60b1f3;
  color: #fff;
}

.con_inner_title {
  text-align: center;
  color: #333;
  font-size: 24px;
  font-weight: bold;
  padding: 15px 0px;
  margin-bottom: 0px;
}

.common_top_img {
  padding: 10px 0px 0px 0px;
}

.mb-0 {
  margin-bottom: 0px !important;
}
.mb-15 {
  margin-bottom: 15px;
}
.mt-15 {
  margin-top: 15px;
}



a.main-page-img {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    overflow: visible;
}

a.main-page-img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

a.main-page-img p {
    position: relative;
    bottom: auto;
    width: 100%;
    text-align: center;
    background: #fff;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    margin-top: 4px;
    padding: 2px 0;
    line-height: 1.3;
}

.card.card-body ul li {
    /*text-align: center;*/
    /*width: fit-content;*/
    /*margin: auto;*/
    margin-top: 7px;
}

.left-align-p p {
    text-align: left !important;
}

.seo-content {
    display: none;
}

.adjust-healthcare p {
    height: 49px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}


@media screen and (max-width: 768px) {
  .btn_common_learn_more {
    padding: 8px 20px;
    font-size: 16px;
  }
  .con_inner_title {
    font-size: 20px;
  }
    .adjust-healthcare p {
    height: 21px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
}


.step-instructions li{
 font-size:16px !important;
}


.depression-img {
  height: 395px; 
  width: 100%;
}


.asw-menu-btn {
    width: 40px !important;
    height: 40px !important;
}

.asw-menu-btn svg {
    width: 24px !important;
    height: 24px !important;
    min-width: 28px !important;
}


@media only screen and (max-height: 395px) {
  .depression-img {
    height: 150px;
     
  }
  .step-instructions li{
    font-size:16px !important;
   }
   
}

 
@media only screen and (max-width: 1024px) {
  .depression-img {
    height: 235px; 
    
  }
}





 
@media only screen and (max-width: 768px) {
  .depression-img {
    height: 250px; 
    
    
  }
  .step-instructions li{
    font-size:16px !important;
   }


    p {
        font-size: 16px !important;
    }
    h1 {
        font-size: 24px !important;
    }
    h2 {
        font-size: 20px !important;
    }
    h3 {
        font-size: 16px !important;
    }
    
    a.main-page-img p {
        margin-bottom: 0 !important;
        font-size: 10px;
    }
    
    .card-body iframe {
        width: 100% !important;
    } 
    
    main#main {
        padding: 0 40px;
    }

}

@media only screen and (max-width: 425px) {
  .depression-img {
    height: 120px; 
    
  }
  .step-instructions li{
    font-size:16px !important;
   }
}

@media only screen and (max-width: 320px) {
  .depression-img {
    height:80px; 
    
  }
  .step-instructions li{
    font-size:10px !important;
   }
}
/* ══════════════════════════════════════════
   MOBILE / TOUCH / ACCESSIBILITY
   ══════════════════════════════════════════ */

/* Prevent tap highlight on mobile */
a, button, input, select, textarea {
  -webkit-tap-highlight-color: transparent;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Touch-friendly tap targets (min 44x44px per WCAG) */
/* Touch-friendly tap targets (min 44x44px per WCAG) - primary nav only */
.btn_common_learn_more,
.sideb_bar_menu a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* Focus-visible for keyboard navigation */
a:focus-visible,
button:focus-visible,
.btn_common_learn_more:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #1e3c72;
  outline-offset: 2px;
  border-radius: 2px;
}

/* Prevent text resize issues on iOS */
body {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Ensure images never overflow containers */
img {
  max-width: 100%;
  height: auto;
}

/* Footer grid - compact on very small screens */
@media (max-width: 480px) {
  #footer .row[style*="grid-template-columns"] {
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 6px !important;
  }
  #footer .footer-links h4 {
    font-size: 11px !important;
  }
  #footer .footer-links a {
    font-size: 11px !important;
  }
}

/* Web page icon images — consistent sizing across all pages */
.common_top_img .main-page-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: visible;
}

.common_top_img .main-page-img img {
  max-width: 180px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.common_top_img .main-page-img p {
  font-size: 16px !important;
  font-weight: 700;
  text-transform: uppercase;
  color: #020202;
  text-align: center;
  margin: 6px auto 0 auto;
  width: 100%;
}

/* ══════════════════════════════════════
   MOBILE — Smartphones (max 576px)
   ══════════════════════════════════════ */
@media (max-width: 576px) {

  /* Home page grid: labels wrap naturally, tighter padding */
  .icons_set_home .col-4 {
    padding: 0 2px !important;
  }
  .icons_set_home a p {
    font-size: 9px !important;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.2;
    padding: 2px 0;
    margin-top: 2px !important;
  }
  .icons_set_home a img {
    max-width: 90%;
    margin: 0 auto;
  }

  /* Web page images: centered, sized to match header */
  .common_top_img .col-4,
  .common_top_img .col-md-3 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    margin: 0 auto !important;
    float: none !important;
    text-align: center !important;
  }
  .common_top_img .row {
    justify-content: center !important;
  }
  .common_top_img .main-page-img {
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 auto !important;
  }
  .common_top_img .main-page-img img {
    max-width: 100% !important;
    display: block !important;
    margin: 0 auto !important;
  }
  .common_top_img .main-page-img p {
    font-size: 13px !important;
    text-align: center !important;
    margin: 4px auto 0 auto !important;
    width: 100% !important;
  }

  /* Register Now button: bigger on mobile to match header image */
  .col-md-3.col-6.mb-15,
  .col-md-3.col-6 {
    flex: 0 0 75% !important;
    max-width: 75% !important;
    margin: 0 auto !important;
  }

  /* Sidebar text alignment */
  .sideb_bar_menu a,
  .sideb_bar_menu li,
  .sideb_bar_menu .m_mleft a {
    text-align: left !important;
    display: block;
    padding: 4px 0;
  }

  /* Collapse content */
  .collapse .card-body {
    padding: 10px;
  }
  .collapse p, .card-body p {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  /* Footer compact on mobile */
  #footer .footer-top {
    padding: 8px 0 0 0 !important;
  }
  #footer .footer-top .container {
    padding: 0 10px !important;
  }
  #footer .footer-col h4,
  #footer .footer-links h4 {
    font-size: 11px !important;
    margin: 0 0 4px !important;
    padding-bottom: 3px !important;
    line-height: 1.2 !important;
  }
  #footer .footer-col li,
  #footer .footer-links ul li {
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
  }
  #footer .footer-col a,
  #footer .footer-links ul li a,
  #footer a {
    font-size: 11px !important;
    min-height: 0 !important;
    line-height: 1.4 !important;
    display: block !important;
    padding: 3px 0 !important;
    align-items: flex-start !important;
  }
  #footer .copyright {
    padding: 6px 0 !important;
    font-size: 10px !important;
    line-height: 1.3 !important;
  }
  #footer [style*="grid-template-columns"] {
    gap: 6px !important;
    padding: 6px 0 !important;
  }
}

/* ══════════════════════════════════════
   TABLET — (577px to 768px)
   ══════════════════════════════════════ */
@media (min-width: 577px) and (max-width: 768px) {

  .icons_set_home a p {
    font-size: 10px !important;
    white-space: normal;
    line-height: 1.2;
  }

  .common_top_img .col-4,
  .common_top_img .col-md-3 {
    flex: 0 0 40% !important;
    max-width: 40% !important;
    margin: 0 auto !important;
    float: none !important;
    text-align: center !important;
  }
  .common_top_img .row {
    justify-content: center !important;
  }
  .common_top_img .main-page-img img {
    max-width: 100% !important;
    display: block !important;
    margin: 0 auto !important;
  }
  .common_top_img .main-page-img p {
    font-size: 14px !important;
    text-align: center !important;
  }

  .col-md-3.col-6.mb-15,
  .col-md-3.col-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    margin: 0 auto !important;
  }
}
