/* xl - DESKTOP STYLES */ 
html {/* set root-em */
	font-size: 16px;
}

.elementor-kit-18 {
	
	--font-family-header: 'Roboto', sans-serif;
	--font-family-subheader: 'Roboto', sans-serif;
	--font-family-text: 'Roboto', sans-serif;
	
	--color-red: #C2272D;
	--color-white: #FFFFFF;
	--color-black: #000000;
	--color-grey-md: #5C6266;
	--color-grey-dk: #231F20;
	
}

body {
	font-family: var(--font-family-header);
	color: var(--color-white);
}


.content-std.maxsingle {
	max-width: 800px;
	margin-left: auto;
    margin-right: auto;
}

body section .elementor-widget-container h1 {
	text-align: center;
	color: var(--color-white);
	font-family: var(--font-family-header);
	font-size: 2.3rem;
	line-height: 1.1;
	font-weight: 300;
}
body section .elementor-widget-container h2 {
	text-align:;
	color: var(--color-white);
	font-family: var(--font-family-subheader);
	font-size: 2rem;
	line-height: 1.1;
	font-weight: 500;
}
body section .elementor-widget-container h3,
body section .elementor-posts .elementor-post__title {
	text-align: center;
	color: var(--color-white);
	font-family: var(--font-family-header);
	font-size: 1.6rem;
	line-height: 1.1;
	font-weight: 400;
}
body section .elementor-widget-container h4 {
	text-align: center;
	color: var(--color-white);
	font-family: var(--font-family-subheader);
	font-size: 1.4rem;
	line-height: 1.1;
	font-weight: 400;
}
body section .elementor-widget-container h5 {
	text-align: center;
	color: var(--color-white);
	font-family: var(--font-family-text);
	font-size: 1.2rem;
	line-height: 1.1;
	font-weight: 700;
}
body section .elementor-widget-container h6 {
	color: var(--color-wehite);
	font-family: var(--font-family-text);
	font-size: 1rem;
	line-height: 1.1;
	font-weight: 700;
}



.section-footer .footer-links a {
	color: #C2272D;
}
.section-footer .footer-links p :link {
	color: #C2272D;
}

.section-footer .footer-links a :hover {
	color: #000000 !important;
}
.section-footer .footer-links p :hover {
	color: #000000 !important;
}

.header-link a {
	color: #000000;
}
.header-link p :link {
	color: #000000;
}

.header-link a :hover {
	color: #C2272D !important;
}
.header-link p :hover {
	color: #C2272D !important;
}

.phone-link a {
	color: #FFFFFF;
}
.phone-link p :link {
	color: #FFFFFF;
}

.phone-link a :hover {
	color: #000000 !important;
}
.phone-link p :hover {
	color: #000000 !important;
}

.wp-caption-text {
	font-size: 0.8rem;
	text-align: center;
	
}


section .alignright {
    margin: 15px 0px 30px 30px;
}
 




/* START - html homepage */

/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap'); */

:root{
  --bg:#0b0e14;
  --card:#111827;
  --orange:#f97316;
  --line:rgba(255,255,255,.08);
}

*{box-sizing:border-box}
body{
  margin:0 !important;
/*   font-family:Inter,system-ui,sans-serif !important; */
  background:var(--bg) !important;
  color:#ffffff !important;
}

nav{
  position:sticky;
  top:0;
  background:rgba(11,14,20,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
nav ul{
  display:flex;
  gap:28px;
  list-style:none;
  margin:0;
  padding:16px 8%;
}
nav a{
  color:#e5e7eb;
  text-decoration:none;
  font-weight:600;
  font-size:14px;
}

.page-content>div>section{
	padding: 0px 8% 20px 8%
}

.hero{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:56px;
  align-items:center;
}
.hero img{
  width:100%;
  max-height:520px;
  object-fit: contain;
  border-radius:16px;
}

h1{font-size:44px;margin:0 0 16px}
h2{font-size:30px;margin:0 0 12px}
h3{font-size:18px;margin:0 0 6px}

p{
  color:#d1d5db;
  font-size:16px;
  line-height:1.7;
  margin-bottom:18px;
}

.lead{font-size:18px;margin-bottom:26px;line-height:1.7}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:28px;
  margin-top:28px;
}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:14px;
  padding:18px 20px;
}

.metric{
  font-size:34px;
  font-weight:700;
  color:var(--orange);
}

.btn{
  display:inline-block;
  margin-top:22px;
  padding:14px 30px;
  border-radius:32px;
  background:linear-gradient(135deg,#f97316,#fb923c);
  color:#020617;
  font-weight:800;
  text-decoration:none;
  font-size:14px;
}

.split{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:56px;
  align-items:center;
}
.split img{
  width:100%;
  max-height:624px;
  object-fit:contain;
  border-radius:14px;
  margin-left:-4%;
}

.sidebar{
  background:#0f172a;
  border:1px solid var(--line);
  border-left:4px solid var(--orange);
  border-radius:14px;
  padding:22px;
  margin-top:44px;
}

footer{
  padding:56px 8%;
  border-top:1px solid var(--line);
  text-align:center;
  font-size:14px;
  color:#9ca3af;
}

#approach img{max-height:420px;}


/* END - html homepage */

/* sm - SMARTPHONE LANDSCAPE STYLES */ 
@media (max-width: 767px) {
  
  
  .content-std #attachment_323.wp-caption.alignright {
  	width: 100% !important;
  }
  
  .content-std #attachment_352.wp-caption.alignright {
  	width: 100% !important;
  }
}

.profileitem {
	border: 2px dashed #afffaf;
}
.profileitem img {
	border-radius: 15px; 	
	-webkit-box-shadow: 10px 10px 15px 0 #78FFDF;
box-shadow: 10px 10px 15px 0 #78FFDF;

}

