@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

 

@view-transition {
  navigation: auto;
}
:root{
    --equal-padds:6rem;
}

*{
    color: currentColor;
    padding: 0;
    margin: 0; 
}

html{
    scroll-behavior: initial!important; 
    font-size: 1.08vw;
}

body {
/* 	opacity: 0; */
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-size: 1rem;
	color: var(--theme-color-coal);
    font-family: "Inter", sans-serif;
    background-color: var(--theme-color-snow-light); 
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: auto;
    -moz-text-size-adjust: auto;
    -ms-text-size-adjust: auto;
    text-size-adjust: auto;
}

::selection {
    color: var(--theme-color-azure-mid);
    background-color: var(--theme-color-cloud-blue);
    -webkit-text-fill-color: var(--theme-color-azure-mid);
}



/* scroll bar start */


* {
    scrollbar-width: thin;
    scrollbar-color: var(--theme-color-azure-mid) var(--theme-color-cloud-blue);
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 5px;
}

*::-webkit-scrollbar-track {
    background-color: var(--theme-color-cloud-blue);
}

*::-webkit-scrollbar-thumb {
    background-color: var(--theme-color-azure-mid);
    border-radius: 1.0625rem;
    border: 0px;
}


/* scroll bar end */


h1,
h2,
h3,
h4,
h5,
h6,
ul,
p {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: var(--theme-color-coal);
    font-family: "Inter", sans-serif;
    font-weight: 600;
    
}


/* Heading Classes */
 
  
  h1, .h1 {
font-size: 4.5rem;
line-height: 111.111%;
letter-spacing: -0.18175rem;
  }
  
  h2, .h2 {
font-size: 2.5rem;
line-height:  120%;
letter-spacing: -0.125rem;
  }
  
  h3, .h3 {
font-size: 2rem; 
line-height:  121.429%;
letter-spacing: -0.035rem;
  }
  
  h4, .h4 {
font-size: 1.9rem;
line-height:  125%;
letter-spacing: -0.02rem;
  }
  
  h5, .h5 {
font-size: 1.75rem; 
line-height: 128.181%;
letter-spacing: -0.0325rem;
  }
  h6, .h6 {
font-size: 1.5rem; 
line-height: 133.333%;
letter-spacing: -0.015rem;
  }

a,
*::before,
*::after,
img,
span,
input,
button,
.navbar,
.fixedmenu,
.tp-bullet {
    transition: ease-in-out 0.2s;
    -webkit-transition: ease-in-out 0.2s;
    -moz-transition: ease-in-out 0.2s;
    -ms-transition: ease-in-out 0.2s;
    -o-transition: ease-in-out 0.2s;
}

.btn.focus,
.btn:focus,
.form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

a,
a:link,
a:visited,
a:active {
    outline: none;
    text-decoration: none var(--theme-color-coal) ;
}

a:hover {
    text-decoration: underline var(--theme-color-coal) ;
}
a{
    color: var(--theme-color-coal);
}


p {
    word-wrap: break-word;
    word-break: break-word;
font-size: 1.14119rem; 
font-weight: 400;
line-height:  159.289%;
letter-spacing: -0.0175rem;
    font-family: "Inter", sans-serif;
    margin-bottom: 1rem;
    /* -webkit-hyphens: auto;
    hyphens: auto; */
}
 

strong,
b {
    font-weight: 600;
}

ul,
ol {
    padding-left: 1.2rem;
}

:is(ul, ol) li:not(:last-child) {
    margin-bottom: 1rem;
}

input,
textarea,
select,
button:focus {
    outline: 0;
}

section {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.hero-head{}
.section-head{}
.sub-head{
font-size: 1.14119rem;
font-weight: 400;
line-height: 159.289%;
letter-spacing: -0.0225rem;
color: #525252;

}

.min-head{ 
	font-size: 1.5rem;
font-style: italic;
font-weight: 300;
line-height:   141.762%;
letter-spacing: 0.045rem;
}

:is(.hero-head, .section-head) span.word{
    opacity: 0;
	translate: -10px 0px; 
	transition: .8s ease-out calc(var(--word-index) / 1.4 * 0.1s);
}
:is(.hero-head, .section-head).show-head span.word{
    opacity: 1;
	translate: 0 0;
}  

.equal-padding-T {
    padding-top: var(--equal-padds);
}

.equal-padding-B {
    padding-bottom: var(--equal-padds);
}

/* #masthead { display: none!important;} */

.container:not([class*="col-"]){ 
width: 100%;
max-width: calc(100% - 10rem);
padding-left: 0rem;
padding-right: 0rem;
}
.vc_section .container:not([class*="col-"]){
	max-width: calc(100% - calc(10rem - 30px));
/* 	padding-left: calc(5rem - 15px);
padding-right: calc(5rem - 15px); */
}

