* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
  }
  h1,
  h3,
  h3,
  h4,
  h5,
  h6,
  p,
  ul,
  li {
    margin: 0px;
    padding: 0px;
  }
  
  /* header start */
  header {
    background-color: white;
    backdrop-filter: blur(5px);
    position: fixed;
    width: 100%;
    top: 58px;
    z-index: 999999;
  }
  .navbar-brand {
    display: flex;
    align-items: center;
  }
  .custome-navbar {
    display: flex;
    align-items: center;
    column-gap: 15px;
    justify-content: space-between;
  }
  .collapse-nav {
    margin-left:auto;
  }
  .custome-nav-ul li {
    list-style: none;
    position: relative;
    transition: ease 0.3s all;
  }
  .custome-nav-ul li a {
    text-decoration: none;
    color:#424242;
  }
  .d-none {
    display: none;
  }
  ul {
    padding-left: 0px;
  }
  .target {
    position: absolute;
    border-bottom: 4px solid transparent;
    z-index: -1;
    transform: translateX(-60px);
    border-color: #96a824;
  }
  .clicktocall .desktop_co_no {
    position: fixed;
    right: 0;
    bottom: 55px;
    opacity: 0;
    transition: ease 0.3s all;
    /* border-radius: 5px; */
  }
  .active_div {
    opacity: 1 !important;
    right: 105px !important;
    color: #fff;
    background: #1d74bc;
    padding: 7px 15px 7px 10px;
    transition: ease 0.3s all;
  }
  
  .mynav a,
  .target {
    transition: all 0.35s ease-in-out;
  }
  
  /* 8-11-2023 */
  .top_header {
    background-color: #3da94e;
    padding: 15px 0px;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 9999;
  }
  .top_header_info{
    display: flex;
    column-gap: 20px;
  }
  .top_header_info p, .top_header_info a{
    display: flex;
    column-gap: 5px;
    color: white;
    text-decoration: none;
    align-items: center;
  }
  /* 8-11-2023 */
  .main_top_header_div{
    display: flex;
    justify-content: space-between;
    column-gap: 10px;
  }
  .top_headertext p img {
    margin-right: 5px;
  }
  header.nav-sticky {
    top: 0px;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
  }
  .nav-sticky {
    animation: 0.8s forwards smoothscroll;
  }
  @keyframes smoothscroll {
    0% {
      transform: translateY(-150%);
    }
  
    100% {
      transform: translateY(0);
    }
  }
  @media screen and (min-width: 992px) {
    .custome-nav-ul {
      display: flex;
      margin: 0px;
    }
  
    .custome-nav-ul > li {
      height: 87px;
      display: flex;
      align-items: center;
      transition: ease 0.3s all;
      margin: 0px 10px;
      padding: 0px 15px;
    }
    .custome-nav-ul > li.active{
      color: #2a50a2;
    }
    .custome-nav-ul > li:hover > a{
      color: #2a50a2 !important;
    }
    .custome-nav-ul > li:hover > .arrow svg path{
      fill: #2a50a2;
    }
    .custome-nav-ul > li:before{
      position: absolute;
      left: 0px;
      height: 2px;
      width: 0px;
      transition: ease 0.3s all;
      background: linear-gradient(90deg, #2e398a 0%, #0babeb 105.64%);
      content: "";
      bottom: 0px;
    }
    .custome-nav-ul > li:hover:before{
      width: 100%;
      transition: ease 0.3s all;
    }
    .custome-nav-ul > li > a {
      height: 87px;
      display: flex;
      align-items: center;
    }
    .custome-nav-ul > li > .arrow {
      padding-left: 10px;
    }
  
    .custome-nav-ul li .sub-menu li a {
      color: black;
      
      padding: 10px 0px;
      display: block;
      transition: ease 0.3s all;
      margin: 0px 15px;
    }
    .custome-nav-ul > li > a{
      border-bottom: none !important;
    }
    .custome-nav-ul li a{
      border-bottom: 1px solid #0000001c;
    }
    .custome-nav-ul li .sub-menu li .sub-menu li a{
      border-bottom: 1px solid #0000001c !important;
    }
    .custome-nav-ul li .sub-menu li .sub-menu li:last-child a{
      border-bottom: none !important;
    }
    .custome-nav-ul li .sub-menu li:hover {
      transition: ease 0.3s all;
    }
    .custome-nav-ul li .sub-menu li:hover a {
      transition: ease 0.3s all;
    }
    .custome-nav-ul li:last-child a {
      border-bottom: none !important;
    }
    .custome-nav-ul > li:hover > .sub-menu{
      left: 0;
    }
    .sub-menu {
      position: absolute;
      opacity: 0;
      visibility: hidden;
      -webkit-transform: scaleY(0);
      transform: scaleY(0);
      position: absolute;
      -webkit-transform-origin: 0 0 0;
      transform-origin: 0 0 0;
      -webkit-transition: 0.3s;
      transition: all 0.3s ease 0s;
      z-index: 99999;
      text-align: left;
      left: 0px;
      top: 87px;
      width: 100%;
      min-width: 250px;
      background: #FFF;
      box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    }
  
    .custome-nav-ul > li:hover > .sub-menu, .custome-nav-ul > li > .sub-menu > li:hover > .sub-menu {
      opacity: 1;
      visibility: visible;
      -webkit-transform: scaleY(1);
    }
    .custome-nav-ul > li > .sub-menu > li:hover > .sub-menu, .custome-nav-ul > li > .sub-menu > li > .sub-menu{
      top: 0px;
      right: -250px;
      left: inherit;
    }
    .sub-menu .arrow {
      position: absolute;
      right: 10px;
      top: 10px;
    }
    .custome-nav-ul > li > .sub-menu > li:hover > .arrow svg path,
    .custome-nav-ul
      > li
      > .sub-menu
      > li
      > .sub-menu
      > li:hover
      > .arrow
      svg
      path {
      fill: black;
    }
    .custome-nav-ul > li > .sub-menu li:hover > a{
      color: white;
    }
    .custome-nav-ul > li > .arrow svg{
      object-fit: contain;
      object-position: center;
      transition: ease 0.3s all;
    }
    .custome-nav-ul > li:hover > .arrow svg{
      transform: rotate(180deg); 
      transition: ease 0.3s all;
    }
    .custome-nav-ul > li > .sub-menu li:hover {
      background-color: #3DA94E;
      transition: ease 0.3s all;
    }
    .custome-nav-ul > li > .sub-menu li:hover .arrow svg path{
     fill: white;
    }
    .custome-nav-ul > li > .sub-menu li:hover .arrow svg,  .custome-nav-ul > li > .sub-menu li .arrow svg{
      transition: ease 0.3s all;
    }
    .custome-nav-ul > li > .sub-menu li:hover .arrow svg{
      transform: rotate(270deg);
    }
    .custome-nav-ul > li > .sub-menu li.submenu_active{
      background-color: #3DA94E;
    }
    .custome-nav-ul > li > .sub-menu li.submenu_active > a{
      color: white;
    }
    .custome-navbar .common-button{
      min-width: 177px;
    }
  }
  @media screen and (max-width:1199px) and (min-width:992px) {
    .custome-nav-ul > li {
      padding: 0px 5px;
    }
    .custome-navbar .common-button {
      padding: 15px 20px;
    }
    .custome-navbar .common-button{
      min-width: 160px;
    }
  }
  @media screen and (max-width: 992px) {
    .sub-menu {
      display: none;
    }
    .sub-menu.active{
      /* display: block;  */
     }
    .collapse-nav {
      position: absolute;
      right: -100%;
      position: absolute;
      background-color: #424242;
      width: 300px;
      top: 74px;
      z-index: 999;
      /* height: calc(100vh - 77px); */
      padding: 0px 0px 15px;
      transition: all 0.15s ease-in-out;
      overflow: auto;
    }
    .collapse-nav{
     height: calc(100dvh - 127px);
     }
      header.nav-sticky .collapse-nav{
      height: calc(100dvh - 63px);
      }
    .collapse-nav.show {
      right: 0px;
    }
    body.overflow{
      overflow:hidden;
    }
    header {
      padding: 10px 0px;
    }
    .navbar-toggler {
      position: relative;
      display: block;
      cursor: pointer;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      order: 3;
      z-index: 12;
      width: 1.75rem;
      height: 1rem;
      border: none;
      outline: none;
      background: none;
      visibility: visible;
      transform: rotate(0deg);
    }
  
    .navbar-toggler .menu_line {
      position: absolute;
      display: block;
      right: 0;
      height: 2px;
      border: none;
      outline: none;
      opacity: 1;
      transform: rotate(0deg);
      background: linear-gradient(90deg, #2e398a 0%, #0babeb 105.64%);
      transition: 0.25s ease-in-out;
      left: 0px;
    }
    .navbar-brand {
      flex: 1;
    }
    .navbar-toggler .menu_line:nth-child(1) {
      top: 0;
      width: 16px;
    }
  
    .navbar-toggler .menu_line:nth-child(2) {
      top: 0.5rem;
      width: 100%;
    }
  
    .navbar-toggler .menu_line:nth-child(3) {
      top: 1rem;
      width: 18px;
    }
  
    .show.navbar-toggler .menu_line:nth-child(1) {
      transform: rotate(45deg) translateY(1px) translateX(5px);
    }
  
    .show.navbar-toggler .menu_line:nth-child(2) {
      transform: rotate(-45deg);
    }
  
    .show.navbar-toggler .menu_line:nth-child(3) {
      transform: rotate(45deg) translateY(-9.5px) translateX(3px);
    }
  
    .custome-nav-ul li a {
      padding: 15px 20px;
      border-bottom: 1px solid #ffffff21;
    }
  
    .custome-nav-ul li {
      padding: 0px 10px;
    }
  
    .custome-nav-ul li a {
      color: white !important;
      display: block;
    }
  
    .custome-nav-ul li .arrow svg path {
      fill: white;
    }
  
    .custome-nav-ul li .arrow {
      position: absolute;
      right: 0px;
      height: 50px;
      width: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      top: 0px;
      transition: ease 0.3s all;
      cursor:pointer;
    }
    .target {
      display: none;
    }
    .arrow.open{
      transform: rotate(180deg);
      transition: ease 0.3s all;
    }
  }
  /* header end */
  
  /* common css */
  body {
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    color: #424242;
  }
  .pt-100 {
    padding-top: 100px;
  }
  .mt-30 {
    margin-top: 30px;
  }
  .mt-15 {
    margin-top: 15px;
  }
  .custome_row_gap {
    row-gap: 25px;
  }
  .description p {
    padding-bottom: 15px;
  }
  .custome_row_gap {
    row-gap: 25px;
  }
  .section_padding {
    padding: 100px 0px;
  }
  .description p:last-of-type {
    padding-bottom: 0px;
  }
  .common-button-div {
    display: flex;
    align-items: center;
    column-gap: 20px;
  }
  .common-button {
    padding: 15px 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
    text-decoration: none;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .common-button::before {
    background: linear-gradient(90deg, #2e398a 0%, #0babeb 100%), #eaeaea;
    content: "";
    height: 155px;
    opacity: 0;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    width: 50px;
    transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
  }
  .common-button::after {
    background: linear-gradient(90deg, #2e398a 0%, #0babeb 100%), #eaeaea;
    content: "";
    height: 20rem;
    opacity: 0;
    position: absolute;
    top: -100px;
    transform: rotate(35deg);
    transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 8rem;
  }
  .common-button::before {
    left: -50%;
  }
  
  .common-butto::after {
    left: -100%;
  }
  
  .common-button:hover::before {
    left: 120%;
    opacity: 0.5s;
  }
  .common-button::after {
    left: -100%;
  }
  .common-button:hover::after {
    left: 200%;
    opacity: 0.6;
  }
  .border-button {
    border: 1px solid transparent;
    color: #424242;
    border-image: linear-gradient(to right, #2e398a, #0babeb);
    border-image-slice: 1;
  }
  .background_button {
    background-color: white;
    color: #2a50a2;
  }
  .main_heading, .service_page_left_cls h1{
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    font-family: "Neue Haas Grotesk Display Pro";
    padding-bottom: 10px;
  }
  .service_page_left_cls > h2{
    font-size: 35px;
    line-height: 37px;
    font-weight: 700;
    font-style: normal;
    font-family: "Neue Haas Grotesk Display Pro";
  }
  .small_heading {
    font-size: 20px;
    font-weight: 500;
    line-height: 22px;
    padding-bottom: 10px;
    font-family: "Neue Haas Grotesk Display Pro";
  }
  .sub_heading {
    font-family: "Neue Haas Grotesk Display Pro";
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px;
    padding-bottom: 15px;
    letter-spacing: 1.44px;
  }
  .professional_heading_div .small_sub_heading{
    font-size: 20px;
    line-height: 23px;
  }
  .small_sub_heading {
    font-family: "Neue Haas Grotesk Display Pro";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
    padding-bottom: 10px;
  }
  .blue_color {
    color: #2a50a2;
  }
  .width-800 {
    max-width: 800px;
    margin: auto;
  }
  .width-700 {
    max-width: 700px;
    margin: auto;
  }
  .width-600 {
    max-width: 600px;
    margin: auto;
  }
  .width-650 {
    max-width: 650px;
    margin: auto;
  }
  .pb-100 {
    padding-bottom: 100px;
  }
  .padding-right {
    padding-right: 45px;
  }
  /* banner section start */
  .banner_section {
    background: linear-gradient(90deg, #2e398a 0%, #0babeb 100%);
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 150px;
  }
  .banner_text_div {
    max-width: 500px;
  }

   /* banner section start */
   .banner_section {
    background: linear-gradient(90deg, #2e398a 0%, #0babeb 100%);
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 150px;
    position:relative;
  }

  /* 7/12/2024 start */
.banner_section .video-div{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 113px;
}
.banner_section .video-div video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* .video-div .video-player:not(:first-of-type){
	display:none;
} */
.banner_section .video-div:before{
    content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.45) 100%);
    position: absolute;
    height: 100%;
    width:100%;
}
.banner_section .container-fluid{
    position: relative;
    z-index: 9999;
}
.home_service_section:after{
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.45) 100%) !important;
  content: none !important;
}
.banner_image{
    display: none !important;
}
.banner_section{
    background: none;
    /* background-image: url('https://natum.dk/wp-content/uploads/2024/12/banners-new-img.jpg');  */
}
.video-placeholder{
    height: 100%;
    width:100%;
    object-fit: cover;
    object-position: center;
}
  /* 7/12/2024 end */
  /* banner section end */
  
  /* service section start */
  .home_service_section {
    position: relative;
  }
  .home_service_section .row,
  .contact-info-section .row {
    z-index: 99;
    position: relative;
  }
  .home_service_section:after,
  .contact-info-section:after {
    position: absolute;
    top: -1px;
    height: 100px;
    z-index: 9;
    background: linear-gradient(90deg, #2e398a 0%, #0babeb 100%);
    content: "";
    width: 100%;
  }
  .banner_image {
    margin-bottom: -120px;
  }
  .home_service_section:before {
    background-color: #efefef;
    height: 100%;
    bottom: 0px;
    position: absolute;
    width: 100%;
    content: "";
    z-index: -1;
  }
  .home_service_section .home_service_img {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .home_service_img {
    border-bottom: 1px solid #e6e6e6;
  }
  .single_service_div {
    background: #fff;
    padding: 30px;
    box-shadow: 4px 4px 15px 0px rgba(0, 0, 0, 0.1);
    height: 100%;
  }
  /* service section end */
  
  /* professional_section start */
  .professional_section {
    min-height: 900px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
  }
  .professional_section:before {
    content: "";
    background-color: #efefef;
    height: 350px;
    top: 0px;
    position: absolute;
    width: 100%;
    z-index: -1;
  }
  .professional_container-fluid {
    background-color: #efefef;
    z-index: -1;
  }
  .professional_text_div {
    max-width: 900px;
    margin-left: auto;
  }
  .professional_heading_div {
    max-width: 600px;
    max-width: 49%;
    margin-left: auto;
    margin-bottom: 30px;
    z-index: 99;
    position: relative;
  }
  .professional_image_div {
    position: absolute;
    top: 100px;
    z-index: -1;
    top: 0px;
    bottom: 0px;
    margin: auto;
    height: fit-content;
    left: 0px;
    width: calc(100% - 52%);
    min-height: 700px;
  }
  .professional_image_div img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: top;
    top: 0px;
    position: absolute;
  }
  .professional_info_div .home_service_img,
  .contact-info-section .home_service_img {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .img_background_div {
    height: 50px;
    width: 50px;
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    padding: 10px;
  }
  /* professional_section end */
  
  /* social_education_section start */
  .social_education_inner_div {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 25px;
    margin-top: 50px;
  }
  .single_education_div {
    background-color: #efefef;
    padding: 25px 35px;
  }
  .single_education_div .home_service_img {
    border-bottom: 1px solid white;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .social_education_section .common_heading_div .description {
    max-width: 650px;
    margin: auto;
  }
  .read_more {
    display: block;
    color: #2a50a2;
    font-family: "Neue Haas Grotesk Display Pro";
    font-weight: 450;
    font-size: 18px;
    margin-top: 15px;
  }
  .read_more svg,  .read_more img{
    margin-left: 3px;
  }
  .single_education_div:last-of-type {
    grid-column-start: 1;
    grid-column-end: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px 50px;
    column-gap: 15px;
  }

  .single_education_div:last-of-type .read_more {
    color: #c0c0c0;
    margin-top: 40px;
  }
  .single_education_text_div {
    max-width: 750px;
    flex: 1;
  }
  .light_heading {
    color: #c0c0c0;
    font-family: "DM Sans";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px;
    letter-spacing: 0.96px;
  }
  /* tab start */
  
  /* Style the buttons inside the tab */
  .single_education_div:last-of-type:hover .read_more svg path {
    fill: #2a50a2;
    transition: ease 0.3s all;
  }
  .tab button {
    display: block;
    background-color: inherit;
    color: black;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    font-size: 17px;
    width: fit-content;
    text-align: center;
    margin-top: -1px;
  }
  .tab_arrow_text {
    position: absolute;
    bottom: 5px;
    display: flex;
    align-items: end;
    left: -30px;
  }
  .tab_main_div:hover .tab_arrow_text {
    display: none;
  }
  .tab_arrow_text img {
    margin-bottom: 7px;
    max-width: 40px;
    margin-left: -27px;
  }
  .tab_arrow_text span {
    max-width: 120px;
  }
  
  .tablinks:hover svg g rect {
    transition: ease 0.3s all;
  }
  .tablinks:hover svg#blue g rect
   {
    fill: #1ba8e1;
  }
  .tablinks:hover svg#parrot g rect
   {
    fill: #4cae3f;
  }
  .tablinks:hover svg#red g rect
   {
    fill: #d32123;
  }
  
  .tabcontent.active {
    display: block;
  }
  .tabcontent[style="display: block;"] .read_more,
  .single_education_div:hover .read_more {
    color: #2a50a2;
    transition: ease 0.3s all;
  }
  .tabcontent {
    display: none;
  }
  /* social_educatio_section end */
  
  /* decisive_section start */
  .decisive_section {
    min-height: 950px;
  }
  .decisive_text_div {
    max-width: 700px;
  }
  .quote_div {
    background: #fff;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    padding: 30px;
  }
  .big_heading {
    text-align: center;
    font-size: 75px;
    font-style: normal;
    font-weight: 400;
    line-height: 80px;
  }
  .quote_text p {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    display: flex;
    justify-content: end;
    align-items: center;
    column-gap: 10px;
  }
  .quote_div .big_heading {
    max-width: 810px;
    margin: 30px auto 30px;
  }
  .quote_text {
    text-align: end;
  }
  .outer_decisive_outer_div {
    background: linear-gradient(90deg, #2e398a 0%, #0babeb 100%), #eaeaea;
    padding: 80px;
    margin-left: auto;
    max-width: 60%;
  }
  .decisive_image {
    position: absolute;
    top: 100px;
    z-index: -1;
    top: 0px;
    bottom: 0px;
    margin: auto;
    height: fit-content;
    left: 0px;
    width: calc(100% - 52%);
    min-height: 700px;
  }
  .decisive_image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: top;
    top: 0px;
    position: absolute;
  }
  
  /* footer start */
  footer {
    background-color: #04092c;
  }
  .footer_logo {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 50px;
  }
  .footer_link_div ul {
    display: flex;
    justify-content: space-between;
    column-gap: 10px;
  }
  .footer_link_div {
    padding: 30px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer_link_div ul li {
    list-style: none;
  }
  .footer_link_div ul li a {
    color: white;
  }
  .footer_info_div {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 40px 0px;
    gap: 25px;
	
  }
 .single_footer_info > img{
	max-width:40px;
	margin-top:5px;
 }
  .single_footer_info {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    column-gap: 15px;
    color: white;
	align-items: flex-start;
	height: 100%;
  }
  .single_footer_info a,
  .single_footer_info p {
    color: white;
    text-decoration: none;
    padding-top: 3px;
    display: block;
  }
  .copyright_div {
    padding: 15px 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    justify-content: space-between;
    column-gap: 15px;
	z-index: 999999;
    position: relative;
  }
  .copyright_div a{
    color: white;
    text-decoration: none;
  }
  .call-to-meeting {
    position: fixed;
    bottom: 0;
    right: 0;
    height: 150px;
    width: 150px;
    margin: auto;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .waves {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(29, 116, 188, 0.1);
    opacity: 0;
    border-radius: 100%;
    right: 0px;
    bottom: 0px;
    left: 0px;
    top: 0px;
    margin: auto;
    z-index: -1;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
  }
  .wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
  .wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
  }
  .wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
  }
  @keyframes waves {
    0% {
      -webkit-transform: scale(0.2, 0.2);
      transform: scale(0.2, 0.2);
      opacity: 0;
    }
  
    50% {
      opacity: 0.9;
    }
    100% {
      -webkit-transform: scale(0.9, 0.9);
      transform: scale(0.9, 0.9);
      opacity: 0;
    }
  }
  .background_gredient {
    background: linear-gradient(90deg, #2e398a 0%, #0babeb 105.64%);
    color: white;
  }
  .mobile_text{
    display: none;
  }
  #service_page_content.fixed_image .water_mark_image {
    position: absolute;
  }
  .water_mark_image{
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: -1;
    transition: ease 0.3s all;
  }
.fixed_image_default .water_mark_image{
    position: fixed;
  }
 
  .water_mark_image img{
    opacity: 0.5;
  }
  .fixed_image_default .water_mark_image.fixed{
    transition: ease 0.3s all;
    position: absolute;
    left: 0px;
    bottom: 0px;
  }
  .page-id-318 .water_mark_image{
    display: none;
  }
  /* footer end */

  /* new service page start */
  .banner-img-div{
    position: absolute;
    width: 100%;
    bottom: 0px;
    min-height: 442px;
    margin-top: auto;
    display: flex;
    align-items: end;
    pointer-events: none;
  }
  .service-banner-section .custome_breadcrumb a,
  .service-banner-section .custome_breadcrumb p {
    color:white;
  }
  .service-banner-section .custome_breadcrumb a:before{
    background-color: white;
  }
@media screen and (min-width:992px){
    .subpage_banner.service-banner-section{
        padding: 230px 0px 0px;
    }
}
@media screen and (max-width:992px) {
    .subpage_banner.service-banner-section{
        padding: 170px 0px 0px;
    }
}
  .service-banner-section .container-fluid {
    position: relative;
    z-index: 9999;
  }
  .banner-img-div img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 180px;
    object-position: top right;
    max-height: 180px;
  }
  .banner-img-div:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: linear-gradient(90deg, rgba(46, 57, 138, 0.60) 0%, rgba(11, 171, 235, 0.60) 100%);
    pointer-events: none;
  }
  .subpage_banner{
    background-color: #EFEFEF;
    padding: 145px 0px 0px;
    overflow: hidden;
  }
  .subpage_banner .container{
    position: relative;
      height: 100%;
      min-height: 200px;
      min-height: 85px;
      display: flex;
      width: 100%;
      flex-direction: column;
      justify-content: center;
  }
  .custome_breadcrumb{
    display: flex;
    column-gap: 20px;
    row-gap: 8px;
  }
  .custome_breadcrumb a, .custome_breadcrumb p{
    color:  #424242;
    font-family: 'DM Sans';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; 
    text-decoration: none;
    position: relative;
  }
  .custome_breadcrumb a:before{
    content: "";
    height: 14px;
    width: 1px;
    background-color: #424242;
    position: absolute;
    right: -10px;
    top: 4px;
    /* bottom: 0px; */
    margin: auto;
  }
  .subpage_banner .banner_image{
    position: absolute;
      bottom: 0px;
      right: 60px;
      margin-bottom: 0px;
  }
  .service_page_left_cls h1, .service_page_left_cls > h2 {
    color: #2A50A2;
    padding-bottom: 30px;
  }
  
  .service_page_content_div{
    max-width: calc(100% - 15%);
      margin-left: auto;
      display: flex;
      gap: 30px;
  }
  .service_contact_info{
    background: #F1F1F1;
      padding: 20px;
      position: sticky;
      top: 130px;
  }
  .service_page_right_cls{
    min-width: 300px;
    max-width: 300px;
    margin: 0px auto
  }
  .service_page_left_cls p{
    padding-bottom: 35px;
  }
.service_page_left_cls p:has(strong){
	padding-bottom:30px;
}
  .service_page_left_cls p strong{
    font-size: 20px;
    font-family: "Neue Haas Grotesk Display Pro";
    font-weight: 500;
	display:block;
	padding-bottom:8px;
  }
  .service_page_left_cls p:first-of-type:has(b){
    padding-bottom: 15px;
  }
  .service_page_left_cls >:last-child{
    padding-bottom: 0px;
    margin-bottom: 0px;
  }
  .privacy-policy_content ul{
    padding-left: 20px;
    margin-bottom: 20px;
    text-align: left;
  }
  .privacy-policy_content ul li{
    margin-bottom: 5px;
  }
  .privacy-policy_content ul li:last-of-type{
    margin-bottom: 0px;
  }
  .privacy-policy_content a{
    text-decoration: underline !important;
  }
  .service_page_left_cls:not(.privacy-policy_content) ul{
    margin-bottom: 40px;
  }
  /* .service_page_left_cls.privacy-policy_content ul li */
  .service_page_left_cls:not(.privacy-policy_content) ul li{
    border-bottom: 1px solid #DBDBDB;
    padding: 15px 0px 15px 40px;
    list-style: none;
    position: relative;
    text-align: left;
  }
  .service_page_left_cls:not(.privacy-policy_content) ul li:first-of-type{
    padding-top: 0px;
  }
  .service_page_left_cls:not(.privacy-policy_content) ul li:before{
    content: "";
    background-image: url('../image/list_image.svg');
    height: 25px;
    width: 25px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    position: absolute;
    left: 0px;
  }
.service_page_left_cls li strong{
	font-size: 17px;
    font-family: "Neue Haas Grotesk Display Pro";
    font-weight: 500;
    padding-bottom: 8px;
}
  .service_page_left_cls a{
    color: #2A50A2;
    text-decoration: none;
  }
  .w-100{
    width: 100%;
  }
  /* new service page end */

  /* contact form (17-11-2023) */
  #wpcf7-f362-o1 input:not([type=submit]), #wpcf7-f362-o1 textarea.wpcf7-form-control{
    border: none;
    border: none;
    background: #ffffff;
    width: 100%;
    padding: 15px 15px;
    font-family: "DM Sans";
    font-size: 16px;
  }
  #wpcf7-f362-o1 input:not([type=submit]):focus, #wpcf7-f362-o1 textarea.wpcf7-form-control:focus,  #wpcf7-f362-o1 input:not([type=submit]):focus-visible, #wpcf7-f362-o1 textarea.wpcf7-form-control:focus-visible{
   outline: none;
  }
  #wpcf7-f362-o1 p{
    padding-bottom: 0px;
  }
  #wpcf7-f362-o1{
    background-color: #EFEFEF;
    padding: 30px;
    text-align: left;
  }
  #wpcf7-f362-o1 span.wpcf7-form-control-wrap{
    display: block;
  }
  .wpcf7-spinner{
    position: absolute;
    margin: auto 10px;
  }
  .wpcf7 form.invalid .wpcf7-response-output{
    border-color: red !important;
  }
  .wpcf7 form .wpcf7-response-output{
    margin: 10px 0px 0px;
    padding-left: 5px;
    font-size: 15px !important;
  }
  .wpcf7-not-valid-tip{
    font-size: 14px !important;
  }
  /* contact form end */
  .service_single_education_div{
    margin-bottom: 35px;
  }
  .service_single_education_div .tab_arrow_text span{
    max-width: 140px;
  }
  .service_single_education_div .tab_arrow_text img {
    margin-bottom: 8px;
    max-width: 40px;
    margin-left: 3px;
  }
  .service_single_education_div .tab_arrow_text{
    left: -67px;
    bottom: 20px;
  }
  .policy_div{
    display: flex;
    column-gap: 20px
  }
  .policy_div a{
    position: relative;
  }
  .policy_div a:first-of-type:before{
   content: "";
   height: 15px;
   position: absolute;
   width: 1px;
   background-color: white;
   top: 0px;
   bottom: 0px;
   right: -10px;
   margin: auto;
  }
  /* (17-11-2023) */

  @media screen and (min-width:767px) {
    .social_education_inner_div .single_education_div .read_more{
    position: absolute;
    bottom: 20px;
    }
    .social_education_inner_div .single_education_div{
        padding: 25px 20px 60px;
        position: relative;
    }
	  .social_education_inner_div .single_education_div .single_education_text_div .read_more {
		  position:initial;
	  }
  }
  @media screen and (min-width:1200px) {
    .social_education_inner_div  .single_education_div:last-of-type {
        padding: 35px 70px;
      }
  }
  @media screen and (max-width: 1400px) and (min-width: 992px) {
    .subpage_banner {
      /* min-height: calc(100vh - 140px); */
    }
  }
  @media screen and (max-width: 1400px) and (min-width: 1199px) {
    .banner_image {
      margin-bottom: -150px;
    }
  }
  @media screen and (max-width: 1199px) and (min-width: 992px) {
    .big_heading {
      font-size: 75px;
      line-height: 80px;
    }
    .main_heading, .service_page_left_cls h1 {
      font-size: 40px;
      line-height: 44px;
    }
    .service_page_left_cls > h2{
      font-size: 33px;
      line-height: 38px;
    }
    .sub_heading {
      font-size: 38px;
      line-height: 42px;
    }
    .outer_decisive_outer_div {
      padding: 45px;
    }
    .tab_arrow_text {
      bottom: 0px;
      flex-direction: column;
      left: 10px;
    }
    .tab_arrow_text span {
      order: 2;
    }
    .tab_arrow_text img {
      margin-bottom: 0px;
    }
  
    /* 8-11-2023 */
    .top_headertext p{
      font-size: 15px;
    }
    .top_header_info{
      column-gap: 15px;
    }
    .quote_div .big_heading {
      max-width: 805px;
    }
    .single_education_div{
        padding: 20px 18px;
    }
    .single_education_div:last-of-type{
        padding: 35px 35px;
    }
    .social_education_inner_div .single_education_div:not(:last-of-type){
        /* padding: 20px 18px 65px; */
    }
	  .footer_info_div{
		  grid-template-columns:1fr 1fr;
	  }
    /* 8-11-2023 */
  }
  @media screen and (max-width: 992px) and (min-width: 767px) {
	  .footer_info_div{
		  grid-template-columns:1fr 1fr;
	  }
    .main_heading, .service_page_left_cls h1 {
      font-size: 35px;
      line-height: 40px;
    }
    .service_page_left_cls > h2{
      font-size: 30px;
      line-height: 33px;
    }
    .sub_heading {
      font-size: 32px;
      line-height: 37px;
    }
    /* banner section start */
    .banner_section {
      min-height: 580px;
      padding-top: 130px;
    }
    .big_heading {
      font-size: 65px;
      line-height: 70px;
    }
  
    .professional_section {
      min-height: auto;
    }
  
    .social_education_inner_div {
      grid-template-columns: 1fr 1fr;
    }
    .single_education_div:last-of-type {
      grid-column-start: 1;
      grid-column-end: 3;
    }
    .method_image_div {
      max-width: 550px;
      left: 0px;
    }
    .method_div{
      position: inherit;
    }
    .method_text_div{
      min-height: inherit;
      max-width: 70%;
      padding: 30px;
    }
    .service_single_education_div .light_heading{
          font-size: 25px;
          line-height: 30px;
    }
    .light_heading{
        font-size: 25px;
        line-height: 30px;
    }
  }
  @media screen and (max-width: 992px) and (min-width: 576px) {
    .contact-faq-div {
      padding: 30px;
    }
    .method_service_div{
      padding: 30px;
    }
    .neuroaffective_div{
      padding: 40px 30px;
    }
    #wpcf7-f362-o1 {
      background-color: #EFEFEF;
      padding:20px;
    }
 
  }
  @media screen and (max-width: 767px) and (min-width: 576px) {
    .main_heading, .service_page_left_cls h1 {
      font-size: 35px;
      line-height: 40px;
    }
    .service_page_left_cls > h2{
      font-size: 28px;
      line-height: 33px;
    }
    .sub_heading {
      font-size: 32px;
      line-height: 37px;
    }
    .light_heading {
      font-size: 27px;
      line-height: 32px;
    }
    .big_heading {
      font-size: 45px;
      line-height: 50px;
    }
    .quote_div .big_heading {
      margin: 20px 0px;
    }
    .footer_info_div {
      grid-template-columns: 1fr 1fr;
      /* padding: 30px 0px; */
    }
  }
  @media screen and (max-width:576px) and (min-width:459px) {
    .collapse-nav {
      top: 67px;
    }
  }
  @media screen and (max-width: 1400px) {
    .footer_link_div ul {
      flex-wrap: wrap;
      justify-content: center;
      row-gap: 10px;
      column-gap: 15px;
    }
  }
  @media screen and (max-width: 1199px) {
    .banner_image {
      margin-bottom: 0px;
    }
    .padding-right {
      padding-right: 0px;
    }
  
    /* new service page start */
    .service_page_content_div{
      max-width: 100%;
    }
    .water_mark_image{
      display: none;
    }
    /* new service page end */
    .copyright_div {
      flex-wrap: wrap;
      justify-content: center;
      row-gap: 8px;
    }
  }
  @media screen and (max-width: 992px) {
    .section_padding {
      padding: 50px 0px;
    }
    .pt-100 {
      padding-top: 50px;
    }
    .pb-100 {
      padding-bottom: 50px;
    }
    .home_service_section .home_service_img {
      padding-bottom: 15px;
      margin-bottom: 15px;
    }
    .home_service_section .home_service_img img {
      height: 50px;
      width: 50px;
    }
    .home_service_text .small_sub_heading {
      font-size: 20px;
      line-height: 24px;
    }
    .single_service_div {
      padding: 20px;
    }
    .social_education_inner_div {
      margin-top: 30px;
    }
    .decisive_section {
      min-height: auto;
    }
    .outer_decisive_outer_div,
    .professional_heading_div {
      max-width: 100%;
    }
    .decisive_image {
      display: none;
    }
    .outer_decisive_outer_div {
      padding: 50px 0px;
    }
    .outer_decisive_outer_div .container {
      padding: 0px 12px !important;
    }
    .professional_image_div {
      display: none;
    }
    .social_education_div .home_service_img img {
      height: 70px;
      width: 70px;
    }
    .footer_logo {
      padding-bottom: 30px;
    }
    .professional_section:before {
      height: 65%;
    }
    .social_education_section .common_heading_div .description {
      max-width: inherit;
    }
    .single_education_div:last-of-type {
      padding: 25px 35px;
    }
    .professional_section{
      min-height: inherit;
    }
    .brain_text_div{
      max-width: inherit;
    }
    .brain_structure_section{
      margin-bottom: 50px;
    }
    .brain_structure_section:after{
      height: 50px;
      bottom: -50px;
    }
    .brain_structure_section .container-fluid{
      position: inherit;
    }
    .brain_section_image{
      position: absolute;
      left: 0px;
      opacity: 0.7;
      max-width: 75%;
    }
    .educational_section .professional_heading_div{
      margin-bottom: 0px;
    }
  
    /* 8-11-2023 */
    .top_header_info{
      display: none;
    }
    .main_top_header_div{
      justify-content: center;
    }
    .top_headertext{
      text-align: center;
    }
    .subpage_banner {
      /* padding: 123px 0px 0px; */
      padding: 131px 0px 0px;
    }
    .service_single_education_div{
      flex-wrap: wrap;
      row-gap: 15px;
    }
    .service_single_education_div .single_education_text_div{
      width: 100%;
    }
    .service_single_education_div .tab_main_div{
      width: fit-content;
    }
    .custome_breadcrumb {
      /* flex-wrap: wrap; */
      z-index: 99;
      position: relative;
      /* padding-bottom: 10px; */
    }
  }
  @media screen and (max-width: 767px) {
    .top_header {
      padding: 10px 0px;
    }
    header {
      top: 48px;
    }
    /* banner section */
    .banner_section {
      min-height: 500px;
      padding-top: 125px;
      min-height: inherit;
      padding: 170px 0px 50px;
    }
    .subpage_banner .main_heading:before {
      right: 0px;
      margin: auto;
      width: 295px;
    }
    .banner_image {
      display: none;
    }
    .home_service_section:after, .contact-info-section:after{
      height: 70px;
    }
    .single_education_div:last-of-type {
      grid-column-start: 1;
      grid-column-end: 2;
    }
    .social_education_inner_div {
      grid-template-columns: 1fr;
    }
    .tab_main_div {
      /* display: none; */
      /* width: 100%; */
    }
    .tab_main_div .tab button{
      margin: auto;
    }
    .tabcontent {
      /* display: block !important; */
      margin-bottom: 40px;
    }
    .single_education_text_div{
      width: 100%;
      flex: inherit;
    }
    .single_education_div:last-of-type{
     flex-wrap: wrap;
     justify-content: center;
    }
    .tabcontent:last-of-type {
      /* margin-bottom: 0px; */
    }
    .single_education_div:last-of-type .read_more {
      margin-top: 15px;
      color: #2a50a2;
      font-size: 16px;
    }
    .single_education_div:last-of-type .read_more svg path {
      fill: #2a50a2;
    }
    .banner_text_div,
    .professional_heading_div,
    .single_service_div,
    .common_heading_div,
    .single_education_div .home_service_img,
    .single_education_div,
    .tabcontent,
    .decisive_text_div,
    .custome-text-center {
      text-align: center;
    }
    .img_background_div {
      margin: auto;
    }
    .common-button-div,
    .read_more {
      justify-content: center;
    }
    .footer_info_div {
      padding: 30px 0px;
      gap: 20px;
    }
    .quote_div .big_heading {
      margin: 20px 0px;
    }
    .quote_div img {
      height: 50px;
      width: 50px;
    }
    .feature-faq .sub_heading {
      padding-bottom: 15px;
    }
    .accordion-body {
      padding: 15px;
    }
    .method_image_div{
      display: none;
    }
    .method_text_div{
      max-width: inherit;
      margin-top: 0px;
      min-height: inherit;
      padding: 30px 20px;
    }
    .tabcontent .light_heading {
      color: #424242;
      font-weight: 600;
    }
    /* new service page start */
    .service_page_content_div{
      flex-direction: column;
    }
    .service_page_left_cls p, .service_page_left_cls p:has(strong) {
      padding-bottom: 15px;
    }
    .service_page_left_cls:not(.privacy-policy_content) ul{
      margin-bottom: 30px;
      margin-top: 20px;
    }
    .service_page_left_cls h1{
      padding-bottom: 20px;
    }
    .service_page_left_cls:not(.privacy-policy_content) ul li{
      padding: 10px 0px 10px 40px;
    }
    .service_page_left_cls, .service_contact_info{
      text-align: center;
    }
    /* new  service page end */
    .custome_breadcrumb {
      flex-wrap: wrap;
      padding-bottom: 10px;
    }
    .subpage_banner .banner_image{
      display: block;
      max-width: 200px;
      right: 0px;
    }
    .service_page_left_cls p + ul{
        margin-top: 0px;
    }

    /* 17-11-2023 */
    #wpcf7-f362-o1{
      padding: 20px 15px;
    }
    .service_page_left_cls > h2{
      padding-top: 10px;
    }
    .main_heading, .service_page_left_cls h1, .service_page_left_cls > h2{
      padding-bottom: 20px;
    }
    .policy_div{
      flex-direction: column;
      row-gap: 8px;
    }
    .policy_div a:first-of-type:before{
      content: none;
    }
    .desktop_text{
      display: none;
    }
    .mobile_text{
      display: block;
    }
    .water_mark_image {
      max-width: 300px;
    }
	.postid-364 .mobile_text{
	  margin-right:-15px;
	}
  .professional_text_div{
    padding: 10px 0px 10px 10px;
  }
  .professional_section .container-fluid:not(.professional_container-fluid), 
  .professional_section .container-fluid:not(.professional_container-fluid) .container{
    padding-right: 0px;
  }
  .professional_info_div{
    max-width: fit-content;
    overflow: auto;
    padding-left: 10px;
    padding-bottom: 20px;
  }
  .professional_info_div .row{
    flex-wrap: nowrap;
  }
  .professional_info_div .row .col-md-4{
    min-width: 350px;
    max-width: 350px;
  }
  }
  @media screen and (max-width: 576px) {
    .main_heading, .service_page_left_cls h1 {
      font-size: 26px;
      line-height: 30px;
    }
    .service_page_left_cls > h2{
      font-size: 23px;
      line-height: 26px;
    }
    .sub_heading {
      font-size: 26px;
      line-height: 30px;
    }
    .light_heading {
      font-size: 20px;
      line-height: 24px;
    }
    .big_heading {
      font-size: 40px;
      line-height: 45px;
    }
    .top_headertext p {
      font-size: 14px;
    }
    .footer_info_div {
      grid-template-columns: 1fr;
    }
    .common-button-div.mt-30 {
      margin-top: 20px;
    }
    .single_education_div {
      padding: 20px !important;
    }
    .common-button {
      padding: 10px 15px;
    }
    #main_header .container {
      padding: 0px;
    }
    .call-to-meeting {
      height: 60px;
      width: 60px;
    }
    .call-to-meeting img {
      width: 60px;
      height: 60px;
    }
    .waves {
      width: 105px;
      height: 105px;
      left: -22px;
    }
    .contact-faq-div,
    .client_contact_form_div {
      padding: 25px 15px;
    }
    .method_service_div{
      padding: 30px 20px;
    }
    .neuroaffective_div{
      padding: 30px 20px;
    }
  
    /* 8-11-2023 */
    .banner_image{
   
    }
    .subpage_banner .container {
      /* min-height: 170px; */
      /* justify-content: end; */
    }
    .service_page_left_cls p strong {
      font-size: 18px;
    }
    .service_page_left_cls p {
      font-size: 16px;
    }
    .main_outer_section{
      display: flex;
      flex-direction: column;
    }
    .professional_section{
      order: 2;
    }
    .social_education_section{
      padding-top: 60px;
    }
    .home_service_section:before{
      background-color: transparent;
    }
  }
  @media screen and (max-width: 458px) {
    .custome-navbar .navbar-brand img{
      max-width: 140px;
    }
    .custome-navbar{
      column-gap: 10px;
    }
    header .common-button{
      padding: 10px;
    }
    .collapse-nav {
      top: 64px;
    }
    .top_headertext p {
      font-size: 14px;
      line-height: 16px;
    }
    .top_header {
      top: 5px 0px;
    }
    header {
      top: 63px;
    }
    .banner_section {
      padding-top: 185px;
    }
    .service_single_education_div .tab_arrow_text {
      left: -42px;
    }
  }

  