
@import url("/webfonts/fonts.css");

@font-face {
  font-family: 'password';
  font-style: normal;
  font-weight: 400;
  src: url(/sitepkg/layout/password.ttf);
}

html {
    box-sizing: border-box;
}
  
*, *::before, *::after {
    box-sizing: inherit;
}

html,
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    font-family: 'Merriweather', Helvetica, sans-serif;
    font-weight: 500;
    font-size: 16px;
    scroll-behavior: smooth;
    background-color: #ffffff;
  }


  h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    font-family: 'Merriweather Black', Helvetica, sans-serif;
    color: #515769 !important;
    line-height: 1.5;
    width: 100%;
  }
  
  h1>a, h2>a, h3>a, h4>a, h5>a, h6>a {
    color: #515769;
  }
  
  h1>a:hover, h2>a:hover, h3>a:hover, h4>a:hover, h5>a:hover, h6>a:hover {
    color: #999caa;
    text-decoration: none;
  }
  
  h1>a:focus, h2>a:focus, h3>a:focus, h4>a:focus, h5>a:focus, h6>a:focus {
    text-decoration: none;
  }


  p {
    font-size: 15px;
    font-weight: 400;
    font-family: 'Merriweather', Helvetica, sans-serif;
    color: #000000;
    line-height: 1.5;
  }

  em, li, li a {
    font-size: 15px;
    font-weight: 300;
    font-family: 'Merriweather', Helvetica, sans-serif;
    color:  #000000;
  }
  
  a {
    outline: 0;
    text-decoration: none;
    background-color: transparent;
  }
    
  a:focus, a:hover, a:active {
    outline: 0;
    text-decoration: none;
  }

  .d-none {
    display: none !important;
  }

.blue-link {
  color: #2a737e;
  cursor: pointer;
}
.blue-link:hover {
  color: #43adbb;
}


.hover-underline-animation {
  display: inline-block;
  position: relative;
  color: #43adbb;
}

.hover-underline-animation:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #43adbb;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

  
  .lead_text {
    font-size: 40px;
  }

  .second_level_lead {
    font-size: 30px;
  }

  .strong_text {
    font-size: 17px;
    font-weight: 600;
  }

  .medium_text {
    font-size: 16px;
    font-weight: 500;
  }

  .heading-2 {
    font-size: 28px;
    font-weight: 600;
  }

  .heading-3 {
    font-size: 20px;
    font-weight: 600;
  }

  .heading-4 {
    font-size: 18px;
    font-weight: 600;
  }

  .paragraph_main {
    font-size: 17px;
    line-height: 2;
  }

  .max-w-210 {
    max-width: 210px;
  }

  .max-w-340 {
    max-width: 340px;
  }

  .max-w-510 {
    max-width: 510px;
  }

  .min-w-320 {
    min-width: 320px !important;
  }

  .w-100 {
    width: 100% !important;
  }

  .w-50 {
    width: 50% !important;
  }

  .pt-30 {
    padding-top:30px !important;
  }

  .pb-30 {
    padding-bottom:30px !important;
  }

  .gap-1 {
    gap: 1rem !important;
  }

  .gap-2 {
    gap: 2rem !important;
  }

  .small_heading {
    font-size: 15px;
    font-weight: 600;
  }

  .small_paragraph {
    font-size: 13px;
  }

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

.text-capitalise,
.text-uppercase {
  text-transform: capitalize;
}
.text-align-center,
.text-center {
  text-align: center !important;
}

.text-color-white {
    color: #ffffff !important; 
}

.text_link {
  border-bottom: 2px dashed #ffa500;
  color: #a66c00;
  display: inline-block;
  line-height: 100%;
  text-decoration: none;
  -moz-transition: all .5s;
  -o-transition: all .5s;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.text_link:hover {
  border-bottom-color: #a66c00;
  color: #ffa500;
}

.dotted {
  border-bottom-style: dotted;
}

.top_level_text_width {
  width: 50%;
}


.list-group-numbered, .list-group-numbered > li { list-style: decimal inside; }
.list-group-alpha, .list-group-alpha > li  { list-style: lower-alpha outside; }
.list-group-roman, .list-group-roman > li { list-style: lower-roman inside !important;}
.list-group-alpha > li, 
.list-group-numbered > li,
.list-group-roman > li { 
    display: list-item !important;
    padding: 5px; 

}

.list-group-alpha > li span,
.list-group-roman > li span {
    margin-left: 10px;
    overflow: hidden;
}


.btn_tel {
  background: #005f69;
  font-family: Arial;
  color: #ffffff;
  font-size: 20px;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
  line-height: 300%;
}

a.btn_tel[href^="tel:"]:before {
  content: "\260e";
  margin-right: 0.5em;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}


/* SCROLL NAVIGATION MENU */
.scroll_nav ul li a {
	-webkit-transition: 0.2s linear;
	-moz-transition: 0.2s linear;
	-ms-transition: 0.2s linear;
	-o-transition: 0.2s linear;
	transition: 0.2s linear;
}

.scroll_nav ul {
    padding-left: 20px;
}

.scroll_nav ul li {
    padding: 8px 0px;
    border-bottom: 1px solid #ebebeb;
    border-left: 4px solid transparent;
}
.scroll_nav ul li a {
	
  padding: 4px 5px;
  margin: 3px 1px;
}

.scroll_nav ul li:hover,
.scroll_nav ul li.active {
  background: #ebebeb !important;
	border-left: 4px solid #3498db !important;
}   

ul.scroll-nav li a.active {
  color:#008cdd !important;
}

.base_section_style {
    position: relative;
}

.backToTop {
  position: relative;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #9b9e87;
  color: white;
  cursor: pointer;
  padding: 5px 8px;
  border-radius: 5px;
  font-size: 15px;
  margin: 5px;
}

.backToTop:hover {
  background-color: #555;
}

/* LIST STYLING */

ul.unordered-list > li::before {
  content: "\25A0";
  color: black;
  font-weight: bold;
  display: inline-block;
  width: 1em; 
  margin-left: -1em;
  font-size: 1.2em;
}

.unordered-list {
  margin-bottom: 15px;
}

.unordered-list > li {
  padding: 4px 30px !important;
}

ol.article-ol-list {
  list-style-type: none !important;
  /* list-style-position: outside; */
  counter-reset: item;
}

ol.article-ol-list > li {
  counter-increment: item;
  margin-bottom: 5px !important;
  padding: 4px 30px !important;
}

ol.article-ol-list > li:before {
  margin-right: 10px !important;
  content: counter(item);
  background: black !important;
  border-radius: 100% !important;
  color: white !important;
  width: 1.2em !important;
  text-align: center !important;
  display: inline-block !important;
  margin-left: -1em;
}


/* ==== PRICING SWITCH ===== */

.color-mode-label {
    font-size: 13px;
    color: #424242;
    font-weight: 500;
    cursor: pointer;
}

.btn-color-mode-switch{
    display: inline-block;
    margin: 0px;
    position: relative;
}

.btn-color-mode-switch > label.btn-color-mode-switch-inner{
    margin: 0px;
    width: 180px;
    height: 30px;
    background: #E0E0E0;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    display: block;
}

.btn-color-mode-switch > label.btn-color-mode-switch-inner:before{
    content: attr(data-on);
    position: absolute;
    font-size: 12px;
    font-weight: 500;
    top: 7px;
    right: 20px;

}

.btn-color-mode-switch > label.btn-color-mode-switch-inner:after{
    content: attr(data-off);
    width: 90px;
    height: 16px;
    height: 26px;
    background: #fff;
    border-radius: 26px;
    position: absolute;
    left: 2px;
    top: 2px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0px 0px 6px -2px #111;
    padding: 5px 0px;
}

.btn-color-mode-switch input[type="checkbox"]{
    cursor: pointer;
    width: 50px;
    height: 25px;
    opacity: 0;
    position: absolute;
    top: 0;
    z-index: 1;
    margin: 0px;
}


.btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner:after{
    content: attr(data-on);
    left: 88px;
}

.btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner:before{
    content: attr(data-off);
    right: auto;
    left: 20px;
}



/* ROOT LAYOUT */

[data-item-animation] {
  will-change: contents;
}

.root_layout_top {
    width: 100%;
    position: relative;
    display: block;
    background-color: #ffffff;
}



/* NAVIGATION BAR */
.layout_navigation_bar {
  width:100%;
  position: relative;
  z-index: 3;
  opacity: 1;
}

.layout_navigation_container {
    padding: 10px 40px;
}

.layout_navigation_inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  flex-direction: row;
  flex-wrap: nowrap;
  height: min-content;
}


.layout_logo_holder,
.branding_logo,
.logo_text,
.layout_main_buttons,
.icon_container_svg,
.rim_icon,
.option__link__label,
.option__link__icon,
.left_option_item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.branding_logo img {
    width: 30px;
    height: 30px;
}

.layout_main_buttons {
    width: 500px;
}

.layout_main_buttons .navigation_button_container {
    margin: 10px 30px;
    position: relative;
}

.layout_main_buttons .navigation_button_container:hover svg {
    opacity: 0.7;
}

.button_reset {
    all: unset;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    text-align: center;
    text-decoration: none;
    line-height: normal;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    appearance: none;
}

.button_reset:focus-visible {
    outline: 2px solid #005fcc;
    outline-offset: 2px;
}

.rotating_icon_hover .icon_container_svg {
    transition: transform 0.3s ease;
}
  
.rotating_icon_hover:hover .icon_container_svg {
    transform: rotate(180deg);
}



.page-over-button {
    position: relative;
    display: inline-block;
    overflow: hidden;
    background-color: #ffffff;
    color: #000000;
    font: inherit;
    cursor: pointer;
    border: 1px solid #078494;
    border-radius: 0.5rem;
    height: 3.5rem;
    width: 180px;
    padding: 0;
    margin: 0;
}
  
.page-over-button .text {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
    transition: transform 0.4s ease;
    pointer-events: none;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.4rem;
    padding: 0;
    margin: 0;
}
  
.page-over-button .top {
    top: 0;
    transform: translateY(0%);
}
  
.page-over-button .bottom {
    top: 120%;
    background-color: #078494;
    color: white;
}

.page-over-button .glow_item {
    top: 100%;
    background-color: #e7f874;
}
  
.page-over-button:hover .top {
    transform: translateY(-100%);
}
  
.page-over-button:hover .bottom {
    transform: translateY(-120%);
}

.page-over-button:hover .glow_item {
    transform: translateY(-100%);
}


.page-over-button-inverse {
    position: relative;
    display: inline-block;
    overflow: hidden;
    background-color: #078494;
    border-color: #078494;
    color: #ffffff;
    font: inherit;
    cursor: pointer;
    height: 3.5rem;
    width: 180px;
    padding: 0;
    margin: 0px;
    border-radius: 0.4rem;
}
  
.page-over-button-inverse .text {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
    transition: transform 0.4s ease;
    pointer-events: none;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin:0;
    border-radius: 0.4rem;
    padding: 0;
}
  
.page-over-button-inverse .top {
    top: 0;
    transform: translateY(0%);
}
  
.page-over-button-inverse .bottom {
    top: 100%;
    background-color: #e7f874;
    color: #000000;
}

.page-over-button-inverse .glow_item {
    top: 100%;
    background-color: rgb(1, 48, 58);
}

.page-over-button .bottom,
.page-over-button .highlight,
.page-over-button::before {
  border-radius: inherit;
}
  
.page-over-button-inverse:hover .top {
    transform: translateY(-100%);
}
  
.page-over-button-inverse:hover .bottom {
    transform: translateY(-100%);
}

.page-over-button-inverse:hover .glow_item {
    transform: translateY(-100%);
}




  /* need media query that hide main item, hide the button and show hamburger */


  /* MANAGING HERO */

.layout_hero {
    width: 100%;
}

.hero_container {
    padding: 100px 80px;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero_container_box {
    flex: 1 1 45%;
    min-width: 380px;
    padding: 1rem;
    position: relative;
    z-index: 1;
}

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

.hero_main_text_item,
.hero_secondary_text_item,
.hero_main_button_call_out {
    text-align: left;
    width: 100%;
}

.hero_main_text_item {
    margin: 20px 8px;
}

.hero_main_button_call_out {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-direction: row;
    padding: 2rem;
}

@media (max-width: 600px) {
    .hero_main_button_call_out {
      flex-direction: column;
      height: 100%;
    }
  }


.hero_half_image_container {
    width:100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero_half_image_container img {
    width: 300px;
    height: auto;
}

.hero_sub_image_1 {
    position: absolute;
    top: 40%;
    left: 10%;
    width: 40%;
    overflow: hidden;
    border-radius: 10px;
}

.hero_sub_image_1 img {
    width: 100%;
    height: auto;
    display: block;
    margin: auto;
}

/* LOGOS */
.layout_logos {
    width: 100%;
}

.layout_logos_container {
    padding: 10px 80px;
    position: relative;
    display: block;
}

.layout_logos_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
}

.branding_ratings,
.feature_steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    padding: 30px 0px;
    width: 100%;
}


.logo_item_holder,
.feature_steps_holder {
    flex: 1 1 calc(33.333% - 1rem);
    padding: 1rem;
    border-radius: 0.5rem;
    min-width: 270px;
  }
  
  @media (max-width: 600px) {
    .logo_item_holder,
    .feature_steps_holder {
      flex: 1 1 100%;
    }
  }

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

  .logo_brand_item,
  .rating_brand_item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-width: 245px;
  }

  .rating_brand_item {
    margin: 20px;
  }

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

  .layout_product_feature_6 {
    width: 100%;
  }

  .layout_product_feature_1,
  .layout_product_feature_5 {
    background-color:  rgb(240, 245, 244);
    width: 100%;
  }

  .layout_product_feature_1_container,
  .layout_product_feature_2_container,
  .layout_product_feature_3_container,
  .layout_product_feature_6_container {
    display: block;
    padding: 80px 80px;
  }


  .layout_product_feature_1_inner,
   .layout_product_feature_2_inner,
   .layout_product_feature_3_inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  
  .feature_top {
    margin: 15px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .feature_top .second_level_lead {
    max-width: 80%;
    text-align: center;
  }

  .feature_bottom {
    width: 100%;
  }

  .option__holder {
    background-color: #ffffff;
    border-radius: 10px;
    width: 100%;
    padding: 25px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    height: min-content;
    flex-wrap: nowrap;
    min-height: 450px;
  }

  .option__holder__component {
    width: 100%;
    padding: 10px 0px;
  }

  .option__holder__component .outer_rim {
    width: 76px;
    height: 76px;
    border-radius: 100%;
    background-color: rgb(231, 248, 116);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .option__holder__component .outer_rim .rim_icon {
    width: 28px;
    height: 28px;
  }

.option__holder__link {
    display: flex;
    justify-content:start;
    align-items: center;
    width: 100%;
    margin: 10px 0px;
}

.option__link__label {
    margin-right: 10px;
}

.option__link__icon svg {
    width: 16px !important;
    height: 16px !important;
}

/* second  */

.layout_product_feature_2,
.layout_product_feature_3,
.layout_product_feature_4 {
    width: 100%;
}

.flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    width: 100%;

}

.box-2-flex {
    flex: 1 1 45%;
    min-width: 270px;
    padding: 1rem;
    text-align: center;
    padding: 30px 0px;
    width: 100%;
  }
  
  @media (max-width: 600px) {
    .box-2-flex {
      flex: 1 1 100%;
    }
  }

.option__pointers {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.option__pointer {
    width: 100%;
    padding: 10px;
    display: flex;
    gap: 1rem;
}

.option__pointer .left_option_item {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 100%;
    background-color: #E7F874;
    color: #000000;
}


.option__pointer .right_option_item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .option__item__heading,
  .option__item__body {
    width: 100%;
    padding: 10px;
    text-align: left;
  }

  .option_image_display {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .option_image_holder {
    overflow: hidden;
    width:100%;
    height:auto;
    border-radius: 10px;
    background-color: #ffffff;
    border-color: transparent;
  }


  .option_image_holder img {
    display: block;
    margin: auto;
    width: 100%;
    height: auto;
    border: none;
  }


.layout_product_feature_5_container {
    display: block;
    padding: 100px 0px;
}

.flex-align-center {
    align-items: center;
    justify-content: center;
}

.review_infinite_scroll {
  display: flex;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  place-items: center;
  margin: 0px;
  padding: 10px;
  list-style-type: none;
  opacity: 1;
  overflow: hidden;
}

.review_infinite_scroll ul {
  display: flex;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  place-items: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-indent: none;
  gap: 10px;
  position: relative;
  flex-direction: row;
  will-change: transform;
  transform: translateX(-0px);
}

.upper_scroll_container {
  height: auto;
  position: relative;
  width: 416px;
}

.frame-outer-container {
  background-color: rgb(255, 255, 255);
  width: 100%;
  opacity: 1;
  border-radius: 16px;
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: min-content;
  justify-content: center;
  overflow: visible;
  padding: 30px;
  position: relative;
}

.frame-outer-container .stars {
  image-rendering: pixelated;
  flex-shrink: 0;
  fill: rgb(0, 0, 0);
  color: rgb(0, 0, 0);
  opacity: 1;
  flex: none;
  height: 18px;
  position: relative;
  width: 122px;
}

.stars .svgContainer {
  width:100%;
  height:100%;
  aspect-ratio:inherit
}

.frame-outer-container .remark {
  outline: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-shrink: 0;
  --framer-paragraph-spacing: 0px;
  transform: none;
  opacity: 1;
  flex: none;
  height: auto;
  position: relative;
  width: 355px;
  word-break: break-word;
  word-wrap: break-word;
}

.frame-person {
  align-items: center;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
  height: min-content;
  justify-content: center;
  overflow: visible;
  padding: 0;
  position: relative;
  width: min-content;
}

.frame-person-image-container {
  opacity: 1;
  border-radius: 100%;
  aspect-ratio: 1 / 1;
  flex: none;
  height: 50px;
  position: relative;
  width: 50px;
}

.frame-person-image {
  position:absolute;
  border-radius:inherit;
  top:0;
  right:0;
  bottom:0;
  left:0;
}

.framer--image {
  display:block;
  width:100%;
  height:100%;
  border-radius:inherit;
  object-position:center;
  object-fit:cover;
}

.framer-person-bio {
  align-items: flex-start;
  display: flex;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 3px;
  height: min-content;
  justify-content: flex-start;
  overflow: visible;
  padding: 0;
  position: relative;
  width: min-content;
}

.framer-person-bio .person-name {
  outline: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    transform: none;
    opacity: 1;
    flex: none;
    height: auto;
    position: relative;
    width: auto;
}

.framer-person-bio .person-job {
  outline: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  color: rgb(52, 72, 77);
  transform: none;
  opacity: 1;
  width: 250px;
}



.layout_email_capture {
  flex: none;
  height: auto;
  position: relative;
  width: 100%;
}

.layout_email_capture .layout_email_capture_container {
  display: contents;
}

.layout_email_capture .layout_email_capture_inner {
  background-color: rgb(1, 48, 58);
  width: 100%;
  opacity: 1;
  padding: 100px 0px;
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: min-content;
  justify-content: center;
  overflow: hidden;
  position: relative;
}


.abstract--image--container {
  height: 202px;
  width: 120px;
  aspect-ratio: .5958333333333333 / 1;
  bottom: 120px;
  flex: none;
  left: 0;
  overflow: visible;
  position: absolute;
  z-index: 1;
}

.abstract--image--inner {
  position: absolute;
  border-radius: inherit;
  inset: 0px;
}


.absract-image-1 {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-position: center center;
  object-fit: contain;
}

.abstract--image--container-2 {
  height: 102px;
  top: -71px;
  width: 9%;
  aspect-ratio: 0.8648648648648649 / 1;
  flex: none;
  height: 148px;
  overflow: hidden;
  position: absolute;
  right: 45%;
  z-index: 1;
}

.abstract--image--container-3 {
  height: 128px;
  right: 60px;
  width: 17%;
  aspect-ratio: 1.2795698924731183 / 1;
  bottom: -10px;
  flex: none;
  overflow: hidden;
  position: absolute;
}



.inner-email-capture {
  align-items: center;
  display: flex;
  flex: 1 0 0px;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 80px;
  height: min-content;
  justify-content: flex-start;
  overflow: visible;
  padding: 0 30px;
  position: relative;
  width: 1px;
}

.inner-email-capture-deep {
  width: 77%;
  align-items: center;
  display: flex;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 48px;
  height: min-content;
  justify-content: center;
  overflow: visible;
  padding: 0;
  position: relative;
}


.inner-cta-text {
  align-items: center;
  display: flex;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 24px;
  height: min-content;
  justify-content: center;
  overflow: visible;
  padding: 0;
  position: relative;
  width: 100%;
}

.inner-cta-text-holder {
  outline: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-shrink: 0;
  color:#ffffff;
  transform: none;
  opacity: 1;
  flex: none;
  height: auto;
  position: relative;
  width: 100%;
  word-break: break-word;
}


.email-capture-container {
  align-items: center;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: min-content;
  justify-content: center;
  max-width: 449px;
  overflow: visible;
  padding: 0;
  position: relative;
  width: 100%;
}

.email--holder {
  flex: 1 0 0px;
  height: auto;
  position: relative;
  width: 1px;
}

.email--holder .form-holder {
  width: 100%;
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}


.email--holder .form-holder .form-item {
  width: 100%;
  height: auto;
  display: flex;
  position: relative;
  flex-direction: row;
  color: rgb(1, 48, 58);
  gap: 0px;
}

.email_form_submit {
  appearance: none;
  width: 100%;
  height: auto;
  outline: none;
  border: none;
  padding: 24px 179px 24px 24px;
  border-radius: 8px;
  font-size: 16px;
  background: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}

.email_form_submit_email {
  appearance: none;
  width: 100%; 
  height: auto; 
  outline: none; 
  border: none; 
  padding: 24px 179px 24px 24px; 
  border-radius: 8px; 
  font-size: 16px; 
  background: rgb(255, 255, 255); 
  color: rgb(0, 0, 0);
}

.absolute_normalize {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
}

.email_caputre_submit_btn {
  appearance: none;
  width: 159px;
  height: 100%;
  outline: none;
  border: none;
  cursor: pointer;
  padding: 0px 15px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0em;
  line-height: 1em;
  background: rgb(231, 248, 116);
  color: rgb(1, 48, 58);
  z-index: 1;
  box-shadow: none;
}

.layout_footer {
  flex: none;
  height: auto;
  position: relative;
  width: 100%;
}


.layout_footer_container {
  width: 100%;
  opacity: 1;
  padding: 100px 0;
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0px;
  height: min-content;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.layout_footer_container_inner {
  align-items: center;
  display: flex;
  flex: 1 0 0px;
  flex-wrap: nowrap;
  gap: 80px;
  height: min-content;
  justify-content: flex-start;
  overflow: visible;
  padding: 0 30px;
  position: relative;
  flex-direction: column;
}

.layout_footer_container_inner .footer_content_sections {
  gap: 80px;
  align-items: flex-start;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: wrap;
  height: min-content;
  justify-content: flex-start;
  overflow: visible;
  padding: 0;
  position: relative;
  width: 100%;
  min-width: 310px;
}
.footer_content_sections .left_section {
  width: 36%;
  align-items: flex-start;
  display: flex;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 25px;
  height: min-content;
  justify-content: flex-start;
  overflow: visible;
  padding: 0;
  position: relative;
}

.section_text {
  outline: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-shrink: 0;
  transform: none;
  opacity: 1;
  flex: none;
  height: auto;
  position: relative;
  white-space: pre-wrap;
  width: 100%;
  word-break: break-word;
  word-wrap: break-word;
}

.footer_logo_container {
  aspect-ratio: 3.2195121951219514 / 1;
  flex: none;
  height: 41px;
  overflow: visible;
  position: relative;
  width: 132px;
}


.footer_logo_container_inner {
  position: absolute;
  border-radius: inherit;
  inset: 0px;
}

.footer_logo_image {
  display: block;
  width: auto;
  height: 100%;
  border-radius: inherit;
  object-position: center center;
  object-fit: cover;
}


.copy_rights_text {
  outline: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-shrink: 0;
  transform: none;
  opacity: 1;

  flex: none;
  height: auto;
  position: relative;
  width: 100%;
  word-break: break-word;
  word-wrap: break-word;
}

.right-section {
  gap: 40px;
  align-items: flex-start;
  display: flex;
  flex: 1 0 0px;
  flex-direction: row;
  flex-wrap: wrap;
  height: min-content;
  justify-content: flex-start;
  overflow: visible;
  padding: 0;
  position: relative;
  min-width: 310px;
}

.company_container {
    align-items: flex-start;
    display: flex;
    flex: 1 0 0px;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 30px;
    height: min-content;
    justify-content: flex-start;
    overflow: visible;
    padding: 0;
    position: relative;
}

.company_header {
  outline: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-shrink: 0;
  transform: none;
  opacity: 1;
  flex: none;
  height: auto;
  position: relative;
  white-space: pre-wrap;
  width: 100%;
  word-break: break-word;
  word-wrap: break-word;
}

.company_body {
  align-items: flex-start;
  display: flex;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 15px;
  height: min-content;
  justify-content: flex-start;
  overflow: visible;
  padding: 0;
  position: relative;
  width: 100%;
}

.company_body .company_list_item {
  flex: none;
  height: auto;
  position: relative;
  width: 100%;
}

.company_body .company_list_item .link {
  color: #000000;
}


/* PRICING PAGE */

.feature_points_container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap:20px;
}


.pricing_matrix_container {
  padding: 0 0 80px;

  align-items: center;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: min-content;
  justify-content: center;
  overflow: visible;
  position: relative;
  width: 100%;
}


.pricing_matrix_inner {
  gap: 65px;
  align-items: center;
  display: flex;
  flex: 1 0 0px;
  flex-direction: column;
  flex-wrap: nowrap;
  height: min-content;
  justify-content: flex-start;
  overflow: visible;
  padding: 0 80px;
  position: relative;
}

.pricing_matrix_inner_layout {
  align-items: flex-start;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  height: min-content;
  justify-content: flex-start;
  overflow: visible;
  padding: 0;
  position: relative;
  width: 100%;
}

.pricing_matrix_inner_layout_item {
  opacity: 1;
  flex: 1 0 0px;
  height: auto;
  position: relative;
  display: block;
  width: 100%;
  min-width: 250px;

}


.pricing_matrix_inner_layout_item_inner.popular {
  background-color: #E7F874;
} 


.pricing_matrix_inner_layout_item_inner {
  border-bottom-width: 1px;
  border-color: rgb(224, 234, 236);
  border-left-width: 1px;
  border-right-width: 1px;
  border-style: solid;
  border-top-width: 1px;
  background-color:  rgb(255, 255, 255);
  border-radius: 8px;
  width: 100%;

  align-items: center;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 24px;
  height: min-content;
  justify-content: center;
  overflow: visible;
  padding: 25px 30px 30px;
  position: relative;
}

.pricing_matrix_inner_layout_item_inner .top_section_inner {
  align-items: flex-start;
  display: flex;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0px;
  height: min-content;
  justify-content: flex-start;
  overflow: visible;
  padding: 0;
  position: relative;
  width: 100%;
}


.pricing_matrix_inner_layout_item_inner .top_section_inner .label-item {
  outline: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-shrink: 0;
  color: rgb(1, 48, 58);
  transform: none;
  flex: none;
  height: auto;
  position: relative;
  white-space: pre-wrap;
  width: 100%;
  word-break: break-word;
  word-wrap: break-word;
}

.price-item {
  align-items: center;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: min-content;
  justify-content: flex-start;
  overflow: visible;
  padding: 19px 0 10px;
  position: relative;
  width: 100%;
}

.price-item .amount {
  outline: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-shrink: 0;
  color: rgb(1, 48, 58);
  transform: none;
  opacity: 1;

  flex: none;
  height: auto;
  position: relative;
  white-space: pre;
  width: auto;
}


.price-item .periodicity {
  align-items: center;
  display: flex;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
  height: min-content;
  justify-content: center;
  overflow: visible;
  padding: 16px 0 0;
  position: relative;
  width: min-content;
}

/* ==== */

.price-item-secondary {
  align-items: center;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: min-content;
  justify-content: flex-start;
  overflow: visible;
  padding: 0px 0 10px;
  position: relative;
  width: 100%;
  font-size: 14px;
}

.price-item-secondary .amount {
  outline: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-shrink: 0;
  color: rgb(1, 48, 58);
  transform: none;
  opacity: 1;

  flex: none;
  height: auto;
  position: relative;
  white-space: pre;
  width: auto;
}


.price-item-secondary .periodicity {
  align-items: center;
  display: flex;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
  height: min-content;
  justify-content: center;
  overflow: visible;
  padding: 12px 0 0;
  position: relative;
  width: min-content;
}

/* ==== */


.periodicity .periodicity_inner {
  outline: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-shrink: 0;
  transform: none;
  flex: none;
  height: auto;
  position: relative;
  white-space: pre;
  width: auto;
}

.sub_description {
  margin: 10px 5px;
  font-style: italic;
  font-weight: 800;
}

.blank_line {
  background-color: rgba(0, 0, 0, 0);
  opacity: 1;
  flex: none;
  height: 4px;
  overflow: visible;
  position: relative;
  width: 100%;
}

.blank_line .line {
  image-rendering: pixelated;
  flex-shrink: 0;
  fill: rgb(0, 0, 0);
  color: rgb(0, 0, 0);
  opacity: 1;
  bottom: 0;
  flex: none;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: lightgrey;
}

.bottom_section_inner {
  align-items: flex-start;
  display: flex;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
  height: min-content;
  justify-content: flex-start;
  overflow: visible;
  padding: 0 0 4px;
  position: relative;
  width: 100%;
}

.bottom_section_inner .list-item {
  flex: none;
  height: auto;
  position: relative;
  width: 100%;
}

.bottom_section_inner .list-item .component {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: min-content;
  justify-content: flex-start;
  overflow: visible;
  padding: 0;
  position: relative;
}


.bottom_section_inner .list-item .component .icon {
  aspect-ratio: 1 / 1;
  flex: none;
  height: 18px;
  overflow: hidden;
  position: relative;
  width: 18px;
}

.container_discount {
  background-color: rgb(1, 48, 58);
  border-radius: 500px;
  opacity: 1;

  align-items: center;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 9px;
  height: min-content;
  justify-content: center;
  overflow: visible;
  padding: 3.5px 14px;
  position: absolute;
  right: 21px;
  top: 22px;
  width: min-content;
  z-index: 1;
}

.container_discount .label {
  outline: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  transform: none;
  opacity: 1;

  flex: none;
  height: auto;
  position: relative;
  white-space: pre;
  width: auto;
}


.main_line_divider {
  width: 100%;
  height: 1px;
  background-color: lightgray;
}


.feature_set_item_heading,
.feature_set_item {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  margin: 0;
  border: none;
  padding: 0;
}
.feature_set_item {
  border-bottom: 1px solid lightgray;
  height: 82px;
}
.feature_set_item_data,
.feature_set_item_data_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-direction: column;
  height: 100%;
  margin: 0;
}

.feature_set_item_data_wrapper {
  background-color: rgb(247,247,248);
  padding: 10px;
}

.feature_set_item_data_wrapper.topper {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.feature_set_item_data_wrapper.bottomer {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.price-item-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-item-secondary-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
}


.feature_icon_container {
  flex: none;
  height: 20px;
  position: relative;
  width: 20px;
}

.feature_popular_top {
  background-color: lightgray;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.feature_popular_middle {
  background-color: lightgray;
}

.feature_popular_top {
  background-color: lightgray;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}



.split_two_vertical {
  align-items: center;
  display: flex;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 48px;
  height: min-content;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  position: relative;
}


.split_two_vertical .split_two_vertical_container {
  align-items: flex-start;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    height: min-content;
    justify-content: flex-start;
    overflow: visible;
    padding: 0;
    position: relative;
}


.split_two_vertical_container .item-icon {
  aspect-ratio: 1 / 1;
  flex: none;
  height: 60px;
  overflow: visible;
  position: relative;
  width: 60px;
}

.split_two_vertical_container .item-verbiage {
  outline: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-shrink: 0;
  transform: none;
  opacity: 1;
  flex: 1 0 0px;
  height: auto;
  position: relative;
  word-break: break-word;
  word-wrap: break-word;
}


.submit_contact_container {
  opacity: 1;
  align-items: center;
  background-color:  #f0f5f4;
  border-radius: 16px;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: min-content;
  justify-content: center;
  padding: 32px;
  position: relative;
}


.submit_contact_container.inverse {
  background-color: transparent !important;
  background-color: none;
}


.submit_contact_container .contact_container {
  flex: none;
  position: relative;
  width: 100%;
}

.contact_container_inner {
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.contact_form {
  display: grid;
  grid-template-rows: max-content 1fr max-content;
  grid-template-columns: 1fr;
  gap: 15px;
  width: 100%;
  height: 100%;
}


.contact_form .bio_data {
  width: 100%;
  display: grid;
  grid-auto-flow: row;
  gap: 15px;
}

.contact_form .bio_data .contact_name,
.contact_form .bio_data .contact_email {
  -webkit-appearance: none;
  appearance: none; 
  display: inline-block;
  width: 100%;
  line-height: 1.4em;
  outline: none;
  border: none;
  padding: 20px;
  border-radius: 8px;
  font-weight: 400;
  font-size: 16px;
  background:  rgb(255, 255, 255);
  color:  rgb(85, 98, 101);
  box-shadow: inset 0 0 0 1px transparent;
}

.contact_form .bio_data .contact_telephone {
  line-height: 1.4em;
  border: none;
  padding: 2px;
  border-radius: 8px;
  font-weight: 400;
  font-size: 16px;
  background:  rgb(255, 255, 255);
  color:  rgb(85, 98, 101);
  box-shadow: inset 0 0 0 1px transparent;
  height: 60px !important;
}

.contact_form .bio_data .contact_telephone input {
  -webkit-appearance: none;
  appearance: none; 
  outline: none;
  border: none;
  font-weight: 400;
  font-size: 16px;
  background:  rgb(255, 255, 255);
  color:  rgb(85, 98, 101);
}

.contact_form.inverse .bio_data .contact_name,
.contact_form.inverse .bio_data .contact_email {
  background:  #f0f5f4 !important;
}



.contact_form  .contact_message {
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  line-height: 1.4em;
  outline: none;
  border: none;
  min-height: 0;
  padding: 20px;
  resize: vertical;
  border-radius: 8px;
  background: rgb(255, 255, 255);
  font-weight: 400;
  font-size: 16px;
  color:  rgb(85, 98, 101);
  box-shadow: inset 0 0 0 1px transparent;
  appearance: none;
}


.contact_form.inverse  .contact_message {
  background:  #f0f5f4 !important;
}

.contact_submit {
  appearance: none; 
  display: inline-block;
  width: 100%; 
  line-height: 1.4em; 
  outline: none; 
  border: none; 
  border-radius: 8px; 
  padding: 20px; 
  font-weight: 600; 
  font-size: 16px; 
  background: rgb(1, 48, 58); 
  cursor: pointer; 
  color: rgb(255, 255, 255); 
  z-index: 1; 
  opacity: 1; 
}



.navbar-toggle {
  display: none;
}


.navbar-toggle {
  margin-top: 19px;
  margin-bottom: 19px;
  border: 0; 
  background-color: #ffffff;
}

.navbar-toggle .icon-bar {
  display: block;
  position: relative;
  width: 24px;
  height: 2px;
  border-radius: 1px;
  margin: 0 auto;
}


.icon-bar {
  margin-bottom: 4px !important;
  margin-top: 4px !important;
  background-color: #b4b1b1;
}

.bar1,
.bar2,
.bar3 {
  outline: 1px solid transparent;
}

.bar1 {
    top: 0px;
    -webkit-animation: topbar-back 500ms linear 0s;
    -moz-animation: topbar-back 500ms linear 0s;
    animation: topbar-back 500ms 0s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards; }

.bar2 {
    opacity: 1; }

.bar3 {
    bottom: 0px;
    -webkit-animation: bottombar-back 500ms linear 0s;
    -moz-animation: bottombar-back 500ms linear 0s;
    animation: bottombar-back 500ms 0s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards; }

[data-state="open"] .bar1 {
    top: 6px;
    -webkit-animation: topbar-x 500ms linear 0s;
    -moz-animation: topbar-x 500ms linear 0s;
    animation: topbar-x 500ms 0s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards; }

[data-state="open"] .bar2 {
    opacity: 0; }

[data-state="open"] .bar3 {
    bottom: 6px;
    -webkit-animation: bottombar-x 500ms linear 0s;
    -moz-animation: bottombar-x 500ms linear 0s;
    animation: bottombar-x 500ms 0s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards; }

  @keyframes topbar-x {
  0% {
  top: 0px;
  transform: rotate(0deg); }
  45% {
  top: 6px;
  transform: rotate(145deg); }
  75% {
  transform: rotate(130deg); }
  100% {
  transform: rotate(135deg); } }

  @-webkit-keyframes topbar-x {
  0% {
  top: 0px;
  -webkit-transform: rotate(0deg); }
  45% {
  top: 6px;
  -webkit-transform: rotate(145deg); }
  75% {
  -webkit-transform: rotate(130deg); }
  100% {
  -webkit-transform: rotate(135deg); } }


  @-moz-keyframes topbar-x {
  0% {
  top: 0px;
  -moz-transform: rotate(0deg); }
  45% {
  top: 6px;
  -moz-transform: rotate(145deg); }
  75% {
  -moz-transform: rotate(130deg); }
  100% {
  -moz-transform: rotate(135deg); } }



  @keyframes topbar-back {
  0% {
  top: 6px;
  transform: rotate(135deg); }
  45% {
  transform: rotate(-10deg); }
  75% {
  transform: rotate(5deg); }
  100% {
  top: 0px;
  transform: rotate(0); } }

  @-webkit-keyframes topbar-back {
  0% {
  top: 6px;
  -webkit-transform: rotate(135deg); }
  45% {
  -webkit-transform: rotate(-10deg); }
  75% {
  -webkit-transform: rotate(5deg); }
  100% {
  top: 0px;
  -webkit-transform: rotate(0); } }

  @-moz-keyframes topbar-back {
  0% {
  top: 6px;
  -moz-transform: rotate(135deg); }
  45% {
  -moz-transform: rotate(-10deg); }
  75% {
  -moz-transform: rotate(5deg); }
  100% {
  top: 0px;
  -moz-transform: rotate(0); } }

  @keyframes bottombar-x {
  0% {
  bottom: 0px;
  transform: rotate(0deg); }
  45% {
  bottom: 6px;
  transform: rotate(-145deg); }
  75% {
  transform: rotate(-130deg); }
  100% {
  transform: rotate(-135deg); } }

  @-webkit-keyframes bottombar-x {
  0% {
  bottom: 0px;
  -webkit-transform: rotate(0deg); }
  45% {
  bottom: 6px;
  -webkit-transform: rotate(-145deg); }
  75% {
  -webkit-transform: rotate(-130deg); }
  100% {
  -webkit-transform: rotate(-135deg); } }

  @-moz-keyframes bottombar-x {
  0% {
  bottom: 0px;
  -moz-transform: rotate(0deg); }
  45% {
  bottom: 6px;
  -moz-transform: rotate(-145deg); }
  75% {
  -moz-transform: rotate(-130deg); }
  100% {
  -moz-transform: rotate(-135deg); } }


  @keyframes bottombar-back {
  0% {
  bottom: 6px;
  transform: rotate(-135deg); }
  45% {
  transform: rotate(10deg); }
  75% {
  transform: rotate(-5deg); }
  100% {
  bottom: 0px;
  transform: rotate(0); } }

  @-webkit-keyframes bottombar-back {
  0% {
  bottom: 6px;
  -webkit-transform: rotate(-135deg); }
  45% {
  -webkit-transform: rotate(10deg); }
  75% {
  -webkit-transform: rotate(-5deg); }
  100% {
  bottom: 0px;
  -webkit-transform: rotate(0); } }

  @-moz-keyframes bottombar-back {
  0% {
  bottom: 6px;
  -moz-transform: rotate(-135deg); }
  45% {
  -moz-transform: rotate(10deg); }
  75% {
  -moz-transform: rotate(-5deg); }
  100% {
  bottom: 0px;
  -moz-transform: rotate(0); } }

  @-webkit-keyframes fadeIn {
  0% {
  opacity: 0; }
  100% {
  opacity: 1; } }

  @-moz-keyframes fadeIn {
  0% {
  opacity: 0; }
  100% {
  opacity: 1; } }

  @keyframes fadeIn {
  0% {
  opacity: 0; }
  100% {
  opacity: 1; } }

  .fa-circle-notch {
    display: inline-block;
    width: 1em;
    height: 1em;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: fa-spin 2s linear infinite;
  }

  @keyframes fa-spin {
    100% {
      transform: rotate(360deg);
    }
  }


/* Phones (up to 767px) */
@media (max-width: 767px) {
  .layout_main_buttons ,
  .layout_side_buttons .page-over-button {
    display: none;
  }

  .navbar-toggle {
    display: inline-block;
  }

  .hero_container,
  .layout_logos_container,
  .layout_product_feature_1_container,
  .layout_product_feature_2_container,
  .layout_product_feature_3_container,
  .layout_product_feature_6_container {
     padding: 100px 10px;
  }

  .footer_content_sections .left_section {
    width: 100%;
  }


  .email--holder .form-holder .form-item {
    flex-direction: column;
    gap: 1rem;
  }

  .absolute_normalize {
    position: relative;
  }

  .email_caputre_submit_btn {
    width: 100%;
    padding: 24px;
  }

  .email_form_submit {
    padding: 24px;
  }

  .pricing_matrix_inner {
    padding: 0px 40px;
  }

  .submit_contact_container {
    width: 100% !important;
  }

   .layout_navigation_container {
    padding: 10px 20px;
  }

  .top_level_text_width {
    width: 95%;
  }

  .lead_text {
    font-size: 30px;
  }

  .second_level_lead {
    font-size: 20px;
  }

}

/* Tablets (768px to 1024px) */
@media (min-width: 768px) and (max-width: 989px) { 
   .layout_main_buttons,
   .layout_side_buttons .page-over-button {
    display: none;
  } 

  .navbar-toggle {
   display: inline-block;
  }

  .second_level_lead {
    font-size: 25px;
  }
}



/* Tablets in landscape */
@media (min-width: 768px) and (max-width: 989px) and (orientation: landscape) {
   .layout_main_buttons,
   .layout_side_buttons .page-over-button {
    display: none;
  } 

  .navbar-toggle {
    display: inline-block;
  }

  .second_level_lead {
    font-size: 25px;
  }
}

/* Phones in portrait */
@media (max-width: 767px) and (orientation: portrait) {
 .layout_main_buttons,
 .layout_side_buttons .page-over-button {
    display: none;
  }

  .navbar-toggle {
    display: inline-block;
  }

  .hero_container,
  .layout_logos_container,
  .layout_product_feature_1_container,
  .layout_product_feature_2_container,
  .layout_product_feature_3_container,
  .layout_product_feature_6_container {
     padding: 100px 10px;
  }

  .footer_content_sections .left_section {
    width: 100%;
  }

  .absolute_normalize {
    position: relative;
  }
  
  .email_caputre_submit_btn {
    width: 100%;
    padding: 24px;
  }

  .email_form_submit {
    padding: 24px;
  }

  .layout_navigation_container {
    padding: 10px 20px;
  }


  .top_level_text_width {
    width: 95%;
  }

  .lead_text {
    font-size: 30px;
  }

  .second_level_lead {
    font-size: 20px;
  }
}

@media (max-width: 899px) {
  .feature_set_item_data_wrapper.topper {
    background-color: #ffffff;
   background-color: none;
  }
}


.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background-color: #ffffff;
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 4px;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 100;
}

.main-dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0px);
  pointer-events: auto;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: #333;
  text-decoration: none;
  position: relative;
}

.dropdown-menu a:hover {
  background-color: #f5f5f5;
  opacity: 1;
}

/* HAMBURGER MENU */

.hamburger_menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.hamburger_menu.active {
  max-height: 500px; /* Adjust based on content height */
}

.hamburger_menu a {
  display: block;
  padding: 1rem;
  text-decoration: none;
  color: #000000;
}

.hamburger_menu a:hover {
  background-color: #f5f5f5;
}



.small_screen_pricing_matrix_container {
  display: none;
  margin: 50px 0px;
  width: 100%;
  height: 100%;
}


@media (max-width: 600px) {
  .big_screen_pricing_matrix {
    display: none;
  }

  .small_screen_pricing_matrix_container {
    display: block;
  }
}


.layout_container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row_wrap {
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.justify-start {
  justify-content: flex-start !important;
  align-items: flex-start;
}



@media (min-width:1200px) {
  .layout_container {
      max-width: 1140px;
  }
}
@media (min-width:992px) {
  .layout_container {
      max-width: 960px;
  }
}
@media (min-width:768px) {
  .layout_container {
    max-width: 720px;
  }
}

@media (min-width:576px) {
  .layout_container {
      max-width: 540px;
  }
}


/* GENERAL LOADER FOR ALL PAGES */

.loading_cover {
  position: fixed;
  top:0px;
  left:0px;
  bottom:0px;
  right:0px;
  width: 100%;
  height: 100vh;
  z-index: 1200;
  background-color: #ffffff !important;
  opacity: 1;
  visibility: visible;
  transition: visibility 0s linear 0s, opacity 0.25s 0s;
}

.hide-loading {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s;
}

.spinner {
  /* margin: 100px auto 0; */
  width: 70px;
  text-align: center;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #333333;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}


 /* STYLING LOADER DIV */

 .lds-ellipsis {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #333;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}


.loading_cover_transparent {
  position: fixed;
  top:0px;
  left:0px;
  bottom:0px;
  right:0px;
  width: 100%;
  height: 100vh;
  z-index: 2000;
  background-color: transparent;
  opacity: 1;
  visibility: visible;
  transition: visibility 0s linear 0s, opacity 0.25s 0s;
}


/* different loader */

.button_label_width_loader {
  position: relative;
}

.button_label_width_loader .fa-circle-notch {
  position: absolute; 
  right: 20px;
  top: 37.5%;
  visibility: hidden;
}


p.tip {
  font-style: italic;
  margin: -5px auto 5px;
  padding: 5px 0 5px 30px;
  font-size: 11px;
  background: url(/sitepkg/img/tip.svg) left center no-repeat;
}

p.tip.white_color {
  font-style: italic;
  margin: -5px auto 5px;
  padding: 5px 0 5px 30px;
  font-size: 11px;
  background: url(/sitepkg/img/tip-white.svg) left center no-repeat;
}

p.warning {
  font-style: italic;
  margin: -5px auto 5px;
  padding: 5px 0 5px 40px;
  font-size: 11px;
  background: url(/sitepkg/img/warning-sign-svgrepo-com.svg) left center no-repeat;
}


.item_selection {
  width: 100%;
  justify-content: start;
  align-items: flex-start;
}

.add_placement {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  flex-direction: column;
}


.d-flex-4p {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: row;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.d-flex-4p .item-4p {
  flex: 1 1 20%; /* Adjust width as needed */
  position: relative;
}


@media (max-width: 600px) {
  .d-flex-4p {
    flex-direction: column;
  }

  .item-4p {
    flex: none;
    width: 100%;
  }
}



/* STYLING THE THROBBER  */
.throbber {
  width: 100%;
  background-color: grey;
  margin: 5px 3px;
  visibility: hidden;
}

.throbber .progress-bar {
  width: 0%;
  height: 5px;
  background-color: green;
}


.social-container {
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding: 5px;
  box-sizing: border-box;
  gap: 1rem;
}

.social_comment {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 14px;
}

.social-icons {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}

.social-icons a img {
  width: 32px;   /* set icon size */
  height: 32px;
  transition: filter 0.3s ease;
  cursor: pointer;
}

/* Simple hover effect: darken icon */
.social-icons a:hover img {
  filter: brightness(0.7);
}



/*  */



/* HERO MEDIA ON FRONT PAGE */

.hero_video_section {
  margin: 100px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.hero-media__cover {
  position: relative;
  width: 100%;
  border: none;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  display: flex;
  align-self: center;
  outline: none;
}

.hero-media__cover--video {
  width: 100%;
}

.hero-media__video {
  pointer-events: none;
  border:none;
}
.image-block, 
.image-block img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-media__cover-aspect video {
  aspect-ratio: auto 1920 / 1080;
  border: none;
  outline: none;
  position: relative; /* could be absolute if needed */
  left: -1px;
}

.hero-media__cover-aspect {
  overflow: hidden;
  width: 100%;
}

.placeholder_image {
  width: 100%;
  height: auto;
  top:0px;
  left: 0px;
  /* display:none; */
  position: absolute;
}

@media (min-width: 960px) {
  .hero-media__cover, 
  .hero-media__cover--video {
      max-width: 910px;
  }
  .hero-media__cover {
      position: relative;
      flex-basis: auto;
  }
  .hero-media__video {
      max-width: 910px;
  }
}

@media (min-width: 768px) {
  .hero-media__cover--video {
      display: block;
  }
}

@media (max-width: 600px) {
  .hero-media__cover, 
  .hero-media__cover--video {
      max-width: 550px;
  }
  .hero-media__cover {
      position: relative;
      flex-basis: auto;
  }
  .hero-media__video {
      max-width: 550px;
  }
}

@media (max-width: 400px) {
  .hero-media__cover, 
  .hero-media__cover--video {
      max-width: 380px;
  }

  .hero_video_section {
    margin: 80px 5px;
  }
  /* .placeholder_image {
      display: block;
  } */
}




/* SYLING FOR ARTICLES */

.heading-container,
.article-body-container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .heading-container,
  .article-body-container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .heading-container,
  .article-body-container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .heading-container,
  .article-body-container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .heading-container,
  .article-body-container {
    max-width: 1140px;
  }
}

.heading-container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.heading-row,
.article-body-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}


.heading-row .inner-container,
.article-body-row .inner-container {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  padding: 10px;
}


/* STYLING FOR CARD */


.card-row {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

.card {
  display: flex;
  flex-direction: row;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card .card_img_container {
  width: 150px;
  height: auto;             
  max-height: 100%;
  flex-shrink: 0;
  flex-grow: 0;
}

.card .card_img_container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin: 8px;
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-content h2 {
  margin-bottom: 10px;
}

.card-paragraphs {
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.card-paragraphs p {
  margin-bottom: 10px;
  line-height: 1.5;
}

.card-content button.toggle-btn {
  align-self: flex-start;
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.card-content button.toggle-btn:hover {
  background-color: #0056b3;
}

/* Responsive */
@media (max-width: 670px) {
  .card {
    flex-direction: column;
  }

  .card .card_img_container {
    width: 100%;
    height: auto;
  }

  .card-content {
    padding: 15px;
  }
}

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


.product_features li {
  padding: 5px 3px;
  text-align: left;
  position: relative;
  display: flex;
  align-items: center;
}

.product_features li .features_info  {
  padding-left: 10px;
}

.product_features li b {
    font-weight: 800;
}

.product_features .icon,
.plan_features .icon {
  background-color:  #005f69;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
}
.product_features .icon svg,
.plan_features .icon svg {
  width: 15px !important;
  height: 15px !important;
}


/* ==========SEARCH CONTAINER STYLYING ============*/

.search-container {
  width: 100%;
  position: relative;
  display: inline-block;
}

.search-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  width:100%;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.search-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.search-content a:hover {background-color: #f1f1f1}


#mySearchInput {
  background-image: url('/sitepkg/img/search-2.png');
  background-position: 10px 12px;
  background-repeat: no-repeat;
  width: 100%;
  font-size: 16px;
  padding: 12px 20px 12px 40px;
  border: 1px solid #ddd;
}

#mySearchInput:focus {
  border: 1px solid #17d4b5;
}