/* --- Theme base styles --- */

/* --- Font Family --- */
/* Inter */




/* --- Generic
This is where reset, normalize & box-sizing styles go.
*/
*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
========================================================================== */

/**
* 1. Correct the line height in all browsers.
* 2. Prevent adjustments of font size after orientation changes in iOS.
*/

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
========================================================================== */

/**
* Remove the margin in all browsers.
*/

body {
  margin: 0;
}

/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
========================================================================== */

/**
* Add the correct box sizing in Firefox.
*/

hr {
  box-sizing: content-box;
  height: 0;
}

/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
========================================================================== */

/**
* 1. Remove the bottom border in Chrome 57-
* 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
*/

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
* Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
========================================================================== */

/**
* 1. Change the font styles in all browsers.
* 2. Remove the margin in Firefox and Safari.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
* Remove the inheritance of text transform in Edge and Firefox.
* 1. Remove the inheritance of text transform in Firefox.
*/

button,
select { /* 1 */
  text-transform: none;
}

/**
* Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
* Remove the inner border and padding in Firefox.
*/

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
* Restore the focus styles unset by the previous rule.
*/

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
* Correct the padding in Firefox.
*/

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
* Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
*/

legend {
  padding: 0;
}

/**
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/

progress {
  vertical-align: baseline;
}

/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
* Remove the inner padding in Chrome and Safari on macOS.
*/

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
========================================================================== */

/*
* Add the correct display in Edge and Firefox.
*/

details {
  display: block;
}

/*
* Add the correct display in all browsers.
*/

summary {
  display: list-item;
}

/* --- Objects
Non-cosmetic design patterns including grid and layout classes)
*/


/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


.row-fluid .span1,
.row-fluid .span2,
.row-fluid .span3,
.row-fluid .span4,
.row-fluid .span5,
.row-fluid .span6,
.row-fluid .span7,
.row-fluid .span8,
.row-fluid .span9,
.row-fluid .span10,
.row-fluid .span11,
.row-fluid .span12{
/*   min-height: 1px; */
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
  .row-fluid .span1 {
    width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span2 {
    width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span3 {
    width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span4 {
    width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span5 {
    width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span6 {
    width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span7 {
    width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span8 {
    width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span9 {
    width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span10 {
    width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
  }
  
  .row-fluid .span11 {
    width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
  }
  
}
/* --- Unknown but removes bottom invisible padding */
.body-wrapper {
  height: 100px;
}


.content-wrapper {
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* --- Global components --- */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
/************* Primary-button ************/
/*********** UNIT Variables ***********/

















/************* Secondary-button ************/















/************* Tertiary-button ************/









 

.button {
  font-family: Jost, sans-serif; font-style: normal; font-weight: 600; text-decoration: none;
  color:#F0FDFA;
  background-color:#2DD4BF;
  padding: 10px 14px;
  /*   display: inline-block; */
  transition: all .2s ease;
  border-radius: 8px;
  cursor: pointer;
}

.button:hover {
  background-color: #22D3EE;
}

.secondary-button {
  font-family: Jost, sans-serif; font-style: normal; font-weight: 600; text-decoration: none;
  color:#04587A;
  background-color:#FFFFFF;
  padding: 10px 14px;
  border: 1px solid #04587A;
  transition: all .2s ease;
  border-radius: 8px;
  cursor: pointer;
}

.secondary-button:hover {
  background-color: #04587A;
  color:#F0FDFA;
}

/* .tertiary-button, .tertiary-button-text {

} */
.tertiary-button {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 1.125em;
  display: inline-block;
  color: #2DD4BF;
  transition: all .2s ease;
  padding-bottom: 4px;
  cursor: pointer;
  position: relative; /* To position the pseudo-element */
}

.tertiary-button svg path {
  stroke: #2DD4BF;
}

.tertiary-button:hover {
  color: #22D3EE;
}

.tertiary-button:hover svg path {
  stroke: #22D3EE;
}

/* Create the sliding underline effect */
.tertiary-button::after {
  content: ''; 
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0; /* Initially, the width is 0 */
  height: 2px; /* Thickness of the underline */
  background-color: #22D3EE; /* Underline color */
  transition: width 0.3s ease; /* Slide effect duration */
}

.tertiary-button:hover::after {
  width:100%;/* Change the origin for the hover effect */
}

@media (max-width: 768px) {
  .button {
    text-align: center;
    display: block;
    padding: 16px 24px; 
  }

  .secondary-button {
    text-align: center;
    display: block;
    padding: 16px 24px; 
  }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/


a {
  text-decoration: none;
}

p,h1,h2,h3,h4,h5,h6 {
  margin: 0;
  padding: 0;
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/


 /*****************************************/
  .container {
    font-size: 16px;

  } 

  @media (max-width: 1200px) {

    .container {
      font-size: 14.5px;
    } 

  }

  @media (max-width: 1100px) {

    .container {
      font-size: 12.5px;
    } 

  }

  @media (max-width: 1000px) {

    .container {
      font-size: 11px;
    } 

  }


  @media (max-width: 900px) {

    .container {
      font-size: 10px;
    } 

  }

  @media (max-width: 800px) {

    .container {
      font-size: 10px;
    }
  }

  @media (max-width: 768px) {

    .container {
      font-size: 16px;
    }
  }
  /*****************************************/
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/********** Colors ***************/
/************* Links ******************/














/* === NAVBAR TOP === */
.navbar-top{
  background: #F0FDFA;
}

/* === NAVBAR BASE === */
.navbar {
  background: #F0FDFA;
}

.links > li a, .menu__link {
  color: #083344;
}

.links > li a:hover, .menu__link:hover {
  color: #04587A;
}

/* === ARROWS === */
.arrow path {
  stroke: #083344;
}

.links > li a:hover .arrow path {
  stroke: #04587A;
}

/* === SUB MENUS === */


.links > li > .sub-menu a {
  color: #083344;
}

.links > li > .sub-menu a:hover {
  color: #04587A;
}

.submenu-icon svg {
  fill: #04587A;

}

.sub-menu li:hover .submenu-icon svg {
  fill: #22D3EE;
}

.tag {
  background-color: #F0FDFA;
  color: ;
}

.bx-menu svg, .bx-x svg{
  fill: #083344;
}

@media (min-width: 800px) {
  .sub-menu li:hover {
    background-color: #F0FDFA;
  }
  .sub-menu {
  background:#FFFFFF;
}
}

@media (max-width: 800px) {
  .nav-links {
    background-color: #FFFFFF;
  }
  .links > li{
    background: #F0FDFA;
    margin-bottom: 8px;
  }
  .menu__item .with-submenu, .sub-menu{
    background: #F0FDFA;
  }
  .sub-menu li:hover {
    background-color:  inherit !importent;
  }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/********** Colors ***************/












     .footer {
       background-color: #FFFFFF;
color: #083344;
}


 .footer-bottom {
    border-top: #CBD5E1px solid #CBD5E1;
}
.links a {
  color: #083344;
}
.links a::after {
  background-color: #04587A; 
}

.links a:hover {
  color: #04587A;
}

.footer-bottom {
  color: #083344;
/* border-top: 1px solid  #CBD5E1; */
}

.footer-logo {
/* border-right: 1px solid  #CBD5E1; */
}
  
 
.s-icon svg{
  fill: #083344;
  }
.s-icon svg:hover{
  fill: #04587A;
  }
  

@media (max-width: 768px) {
 .footer-logo {
/* border-bottom: 1px solid #CBD5E1; */
}
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/********** Colors ***************/
















/************* Button ************/











.form .form-columns-1 .input{
   margin-right: 0 !important;
}
 .form .form-columns-1 .hs-input:not([type="checkbox"]){
   width:100% !important;
 }
.form .form-columns-2 .input, .form-columns-2 .hs-form-field{
  margin-right: 0 !important;
  max-width:100% !important;
  width:100% !important;
}
.form .form-columns-2 {
  display: flex;
  gap: 1em;
}

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




.form input,
.form textarea,
.form select {
  color: #083344;font-size: 1.125em;font-family: Jost, sans-serif; font-weight: 600;
  font-weight: 400;
  font-size: 0.9em;
  padding: 12px 14px;
  width: 100%;
  display: block;

  border-radius: 8px;
  border: 1px solid #CBD5E1;
  margin-top: 0.5em; 
  margin-bottom: 1.5em;
  box-sizing: border-box;
}

.form select { 
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image:
    linear-gradient(45deg, transparent 50%, #083344 50%),
    linear-gradient(135deg, #083344 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    calc(100% - 2.5em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
}


.form select:focus {
  background-image:
    linear-gradient(45deg, #04587A 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, #04587A 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 15px) 1em,
    calc(100% - 20px) 1em,
    calc(100% - 2.5em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
  border-color: green;
  outline: 0;
}


.form select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

.form input::placeholder, .form textarea::placeholder,.form select::placeholder { /* Standard */
  color: #334155;
}

.form label {
  color: #083344;font-size: 1.125em;font-family: Jost, sans-serif; font-weight: 600;
  margin-bottom: 0.5em;

}

.hs-error-msg {
  font-size: 0.875em !important;
  font-weight: 500;
  text-align: left;
  color: red !important;
}
.hs-error-msgs {
  margin-top: -1em;
}
/* .form input[type="submit"] {
display: block;
background-color: #04587A;
padding: 12px 24px;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
color: !important;

} */

.form input[type="submit"]  {
  font-family: Jost, sans-serif; font-style: normal; font-weight: 600; text-decoration: none;
  color:#F0FDFA;
  background-color:#2DD4BF;
  padding: 10px 14px;
  border: none;
  display: block;
  transition: all .2s ease;
  border-radius: 8px;
  cursor: pointer;
}

.form input[type="submit"] :hover {
  background-color: #22D3EE;
}

.form {
  background-color: rgba(240, 253, 250, 1);
  padding: 3em 2em ;
  border: 1px solid #CBD5E1;
  border-radius: 20px;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: #CBD5E1;
}

.form textarea {
  resize: none;
  min-height: 9em;
  box-sizing: border-box;
}

.form ul{
  list-style-type: none;
}

.form .inputs-list{
  padding-left:0px;

}

.form .hs-form-booleancheckbox-display{

  display:flex ;
  /*   gap:1em; */
  align-items:center;
}

.form input[type='checkbox']{
  width:auto !important;
  width:16px;
  height:16px;
  display:inline;
  cursor:pointer;
  margin-right:0.4375em;
  margin-bottom:0;
  margin-top:0;
  accent-color: #04587A
}

@media (max-width: 768px) {
  .form {
    padding: 1.5em 1em ;
  }

  .form input,
  .form textarea,
  .form select {
    margin-bottom: 1em;
    font-size: 1em; 
  }
  .form .form-columns-2 {
  flex-direction: column;
  gap: 1em;
}
.hs-error-msgs {
  margin-top: -10px;
}
}
@media (max-width: 400px), (min-device-width: 320px) and (max-device-width: 480px) {
.form .form-columns-1 .input{
   margin-right: 0 !important;
}
 .form .form-columns-1 .hs-input:not([type="checkbox"]), .form-columns-2 .hs-form-field .hs-input{
   width:100% !important;
 }
.form .form-columns-2 .input, .form-columns-2 .hs-form-field{
  margin-right: 0 !important;
  max-width:100% !important;
  width:100% !important;
}
}
/* @import url('http://example.com/example_style.css'); */

  /***********************************************/
  /* CSS @imports must be at the top of the file */
  /* Add them above this section                 */
  /***********************************************/

  /*****************************************/
  /* Start your style declarations here    */
  /*****************************************/


  /*********** UNIT Variables ***********/

  
  
  
  




  /********** Colors ***************/


  
  

  
  
  

  
  

  




  /********** Typography ***************/



  
  
  

  

  
  
  

  
  
  

  
  


  
  

  
  

  
  

  
  

  
  

  
  

  
  

  
  

  
  

  
  

  
  

  
  


  /************* Button ************/


  
  
  
  
  
  
  
  

  
  


  /************* Links ******************/
  
  
  
  


  
  
  


  /*********** Width & Spacing *****************/

  
  

  

  
  



  /************* Forms ************/

  
  
  

  
  
  

  
  
  


  .title-p h4{
    color: #04587A;
  }

  .badge-text-hv1-p {
    margin-bottom: 1em;
  }

  .badge-text-hv1 {
    display: inline-block;
    padding: .5em 1em;
    background-color: #F0FDFA;
    color: #22D3EE;   
    border-radius: 4px;
  }

  .heading-hv1 {
    color: #083344 ;
    margin-bottom: 1.25em;
  }

  .sub-heading-hv1 {
    color: #083344 ;
    margin-bottom: 2.5em;
  }

  .short-des-title * {
    color: #22D3EE;
  }

  .short-des-subtitle *{

  }

  .list-text *, .m-c-title *, .m-c-sub *{
    color: #083344;
  }

  .mini-card-hv1 {
    background-color: #FFFFFF;
  }




  /********** Hero V2 Start **************/

  .heading-hv2 * {
    color: #083344 ;
  }

  .sub-heading-hv2 * {
  color: #083344 ;
  }

  .list-text-hv2 * {
    color: #083344 ;
  }


  /********** Hero V2 End **************/




  @media (max-width: 768px) {

    .badge-text-hv1-p {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .badge-text-hv1 {

    }


    .heading-hv1 {
      text-align: center;
      margin-bottom: .75em;
    }

    .sub-heading-hv1 {
      text-align: center;
      margin-bottom: 2em;
    }

  }
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/


/*********** UNIT Variables ***********/









/************ Global Variable Start *********************/





/************ Global Variable End *********************/






.slide {
  background-color: #FFFFFF;
} 

.author-des *{ 
  color: #083344;
}

.author-name *{
  font-weight: bold;
  color: #083344;
}

.author-location *{
  color: #083344;
}

.t-text-heading *{
  color: #083344;
}

.t-text-sub-heading *{
  color: #083344;
}


/* --- Utilities --- */
/* common-Macro */
/* --- Macro CSS --- */




