.elementor-18984 .elementor-element.elementor-element-43ae741{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-18984 .elementor-element.elementor-element-1ae436b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-18984 .elementor-element.elementor-element-cdbd7f6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-18984 .elementor-element.elementor-element-55a33bd{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-18984 .elementor-element.elementor-element-6542fec{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-18984 .elementor-element.elementor-element-22db410{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-09579e6 *//* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
background:#090909;
font-family:'Inter',sans-serif;
}


/*==============================*/

.people-banner{

position:relative;
overflow:hidden;
height:720px;
background:

radial-gradient(circle at top right,#2a2a2a 0%,transparent 35%),

radial-gradient(circle at bottom left,#1a1a1a 0%,transparent 35%),

linear-gradient(135deg,#070707,#111111,#1a1a1a);

display:flex;
align-items:center;
padding:0 9%;
}


/*==============================*/

.banner-content{

position:relative;
z-index:5;
max-width:650px;

}

.small-title{

display:inline-block;
color:#9b9b9b;
font-size:14px;
letter-spacing:5px;
margin-bottom:25px;
text-transform:uppercase;
animation:fadeUp 1s ease;

}

.banner-content h1{

color:#fff;
font-size:74px;
font-weight:800;
line-height:1.15;
letter-spacing:-2px;
animation:fadeUp 1.2s ease;

}

.title-line{

margin-top:35px;
width:120px;
height:4px;
background:linear-gradient(90deg,#ffffff,#777,#333);
border-radius:50px;
position:relative;
overflow:hidden;

}

.title-line:after{

content:"";
position:absolute;
width:50px;
height:100%;
left:-50px;
background:#fff;
filter:blur(3px);

animation:lineMove 2.5s infinite;

}

/*==============================*/

.bg-grid{

position:absolute;
inset:0;

background-image:

linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),

linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);

background-size:70px 70px;

mask-image:linear-gradient(to bottom,transparent,black 20%,black 80%,transparent);

opacity:.4;

}

/*==============================*/

.bg-glow{

position:absolute;
border-radius:50%;
filter:blur(120px);

}

.glow-one{

width:420px;
height:420px;

background:#3d3d3d;

right:-120px;
top:-120px;

animation:pulse 8s infinite;

}

.glow-two{

width:320px;
height:320px;

background:#242424;

left:-120px;
bottom:-120px;

animation:pulse2 10s infinite;

}

/*==============================*/

.floating-elements{

position:absolute;
right:8%;
top:50%;
transform:translateY(-50%);
width:420px;
height:520px;

}

/*==============================*/

.glass-card{

position:absolute;
background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(12px);

border-radius:20px;

box-shadow:

0 20px 50px rgba(0,0,0,.4),

0 0 30px rgba(255,255,255,.04);

animation:float 6s ease-in-out infinite;

}

.card-one{

width:220px;
height:120px;

top:30px;
right:40px;

}

.card-two{

width:170px;
height:170px;

left:30px;
top:180px;

animation-delay:1.5s;

}

.card-three{

width:140px;
height:80px;

right:10px;
bottom:60px;

animation-delay:3s;

}

/*==============================*/

.ring{

position:absolute;
border-radius:50%;
border:1px solid rgba(255,255,255,.12);

}

.ring-one{

width:340px;
height:340px;
right:0;
top:70px;

animation:rotate 30s linear infinite;

}

.ring-two{

width:220px;
height:220px;
left:70px;
bottom:40px;

animation:rotateReverse 18s linear infinite;

}

/*==============================*/

.dot{

position:absolute;
width:10px;
height:10px;
background:#fff;
border-radius:50%;

box-shadow:0 0 15px #fff;

animation:blink 2s infinite;

}

.dot1{

top:20px;
left:90px;

}

.dot2{

top:120px;
right:30px;

animation-delay:.5s;

}

.dot3{

bottom:80px;
left:50px;

animation-delay:1s;

}

.dot4{

bottom:10px;
right:100px;

animation-delay:1.5s;

}

/*==============================*/

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-20px);

}

}

@keyframes pulse{

0%,100%{

transform:scale(1);

}

50%{

transform:scale(1.15);

}

}

@keyframes pulse2{

0%,100%{

transform:scale(1);

}

50%{

transform:scale(.8);

}

}

@keyframes rotate{

from{

transform:rotate(0deg);

}

to{

transform:rotate(360deg);

}

}

@keyframes rotateReverse{

from{

transform:rotate(360deg);

}

to{

transform:rotate(0deg);

}

}

@keyframes blink{

0%,100%{

opacity:.3;

transform:scale(.8);

}

50%{

opacity:1;

transform:scale(1.4);

}

}

@keyframes fadeUp{

from{

opacity:0;
transform:translateY(40px);

}

to{

opacity:1;
transform:translateY(0);

}

}

@keyframes lineMove{

0%{

left:-60px;

}

100%{

left:120%;

}

}

/*==============================*/

@media(max-width:991px){

.people-banner{

padding:80px 40px;
height:auto;

}

.banner-content h1{

font-size:52px;

}

.floating-elements{

display:none;

}

}

@media(max-width:600px){

.banner-content h1{

font-size:38px;
line-height:1.3;

}

.small-title{

letter-spacing:3px;

}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e614814 *//*=========================
Overview Section
=========================*/

.overview-section{
    background:#ffffff;
    padding:100px 20px;
}

.overview-container{
    max-width:900px;
    margin:0 auto;
}

.overview-container h2{
    margin:0;
    font-size:clamp(48px,6vw,78px);
    font-weight:800;
    letter-spacing:-2px;
    color:#2E3854;
    line-height:1;
}

.overview-line{
    width:140px;
    height:3px;
    background:#C7031E;
    margin:32px 0 40px;
    border-radius:10px;
}

.overview-container p{
    font-size:20px;
    line-height:1.9;
    color:#3f3f46;
    margin:0 0 28px;
    text-align:justify;
    font-weight:400;
}

/* Responsive */

@media(max-width:768px){

.overview-section{
    padding:70px 25px;
}

.overview-container h2{
    font-size:48px;
}

.overview-container p{
    font-size:17px;
    line-height:1.8;
    text-align:left;
}

.overview-line{
    width:100px;
    margin:25px 0 30px;
}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ad0ef13 *//*==================================================
WHAT WE OFFER
==================================================*/

.offer-section{
    position:relative;
    padding:110px 7%;
    overflow:hidden;
    isolation:isolate;
}

/* Background Image */

.offer-section::before{

    content:"";

    position:absolute;
    inset:0;

    background:url("YOUR-BACKGROUND-IMAGE.jpg") center center/cover no-repeat;

    transform:scale(1);

    animation:bgZoom 20s ease-in-out infinite alternate;

    z-index:-2;

}

/* Dark Overlay */

.offer-section::after{

    content:"";

    position:absolute;
    inset:0;

    background:
    linear-gradient(
    90deg,
    rgba(12,18,30,.82) 0%,
    rgba(12,18,30,.65) 45%,
    rgba(12,18,30,.78) 100%);

    z-index:-1;

}

.offer-container{

    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:320px 1fr;
    gap:60px;
    align-items:start;

}

.offer-heading{

    position:sticky;
    top:120px;

}

.offer-heading h2{

    color:#fff;

    font-size:60px;

    line-height:1.1;

    margin:0;

    font-weight:800;

    animation:titleFade .8s ease;

}

.heading-line{

    width:170px;
    height:3px;

    margin-top:30px;

    background:#C7031E;

    border-radius:30px;

}

/* Grid */

.offer-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

/* Card */

.offer-card{

    position:relative;

    overflow:hidden;

    padding:38px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.14);

    border-radius:22px;

    box-shadow:

    0 15px 40px rgba(0,0,0,.25);

    transition:.45s ease;

    opacity:0;

    transform:translateY(40px);

    animation:fadeUp .8s forwards;

}

.offer-card:nth-child(2){

animation-delay:.15s;

}

.offer-card:nth-child(3){

animation-delay:.3s;

}

.offer-card:nth-child(4){

animation-delay:.45s;

}

/* Shine */

.offer-card::before{

content:"";

position:absolute;

top:0;
left:-120%;

width:60%;
height:100%;

background:

linear-gradient(

90deg,

transparent,

rgba(255,255,255,.25),

transparent);

transition:1s;

}

.offer-card:hover::before{

left:150%;

}

/* Hover */

.offer-card:hover{

transform:translateY(-10px);

border-color:#C7031E;

box-shadow:

0 30px 70px rgba(0,0,0,.45);

}

/* Text */

.offer-card h3{

margin:0 0 20px;

color:#fff;

font-size:30px;

line-height:1.3;

font-weight:700;

}

.offer-card p{

margin:0;

font-size:17px;

line-height:1.9;

color:rgba(255,255,255,.88);

}

/* Animations */

@keyframes bgZoom{

0%{

transform:scale(1);

}

100%{

transform:scale(1.08);

}

}

@keyframes fadeUp{

to{

opacity:1;

transform:translateY(0);

}

}

@keyframes titleFade{

from{

opacity:0;

transform:translateY(35px);

}

to{

opacity:1;

transform:none;

}

}

/* Responsive */

@media(max-width:1024px){

.offer-container{

grid-template-columns:1fr;

}

.offer-heading{

position:relative;

top:0;

text-align:center;

}

.heading-line{

margin:25px auto 50px;

}

.offer-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.offer-section{

padding:80px 25px;

}

.offer-heading h2{

font-size:42px;

}

.offer-card{

padding:28px;

}

.offer-card h3{

font-size:24px;

}

.offer-card p{

font-size:16px;

line-height:1.8;

}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-595c5f4 */*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Inter,sans-serif;
background:#F8F9FB;
}

.why-hansvl{
padding:90px 8%;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title span{
font-size:13px;
font-weight:600;
letter-spacing:3px;
text-transform:uppercase;
color:#B82F41;
}

.section-title h2{
margin-top:12px;
font-size:48px;
color:#314459;
}

.faq-wrapper{
max-width:950px;
margin:auto;
display:flex;
flex-direction:column;
gap:22px;
}

details{

background:#fff;
border-radius:18px;
overflow:hidden;
border:1px solid rgba(49,68,89,.08);
box-shadow:0 15px 40px rgba(49,68,89,.08);
transition:.35s;
position:relative;

}

details::before{

content:"";
position:absolute;
left:0;
top:0;
width:5px;
height:100%;
background:#B82F41;

}

summary{

list-style:none;
cursor:pointer;
display:flex;
align-items:center;
justify-content:space-between;
padding:26px 30px;
font-size:22px;
font-weight:600;
color:#314459;

}

summary::-webkit-details-marker{
display:none;
}

summary span{

width:42px;
height:42px;
border-radius:50%;
background:#314459;
color:#fff;
display:flex;
justify-content:center;
align-items:center;
font-size:15px;
margin-right:18px;
flex-shrink:0;

}

summary i{

margin-left:auto;
color:#B82F41;
transition:.35s;

}

summary{
display:flex;
gap:20px;
}

details[open] summary i{

transform:rotate(45deg);

}

.faq-content{

padding:0 30px 28px 90px;
font-size:17px;
line-height:1.9;
color:#666;

}

details:hover{

transform:translateY(-5px);
box-shadow:0 20px 50px rgba(49,68,89,.12);

}

@media(max-width:768px){

.section-title h2{

font-size:34px;

}

summary{

font-size:18px;
padding:22px;

}

.faq-content{

padding:0 22px 22px 75px;
font-size:15px;

}

summary span{

width:36px;
height:36px;

}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0f310fa */*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Inter,sans-serif;
background:#F8F9FB;
}

.approach-section{
padding:90px 8%;
}

.section-heading{
text-align:center;
margin-bottom:60px;
}

.section-heading span{
color:#B82F41;
font-size:13px;
font-weight:600;
letter-spacing:3px;
text-transform:uppercase;
}

.section-heading h2{
font-size:46px;
margin-top:12px;
color:#314459;
}

.tabs input{
display:none;
}

/* Navigation */

.tab-nav{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:18px;
margin-bottom:45px;
}

.tab-nav label{
cursor:pointer;
padding:18px 28px;
border-radius:50px;
background:#ffffff;
border:1px solid rgba(49,68,89,.08);
box-shadow:0 8px 25px rgba(49,68,89,.08);
font-weight:600;
transition:.35s;
display:flex;
align-items:center;
gap:12px;
color:#314459;
}

.tab-nav span{
width:36px;
height:36px;
border-radius:50%;
background:#F3F5F7;
display:flex;
justify-content:center;
align-items:center;
font-size:14px;
font-weight:700;
color:#314459;
border:1px solid rgba(49,68,89,.12);
}

.tab-nav label:hover{
background:#314459;
color:#fff;
transform:translateY(-5px);
}

.tab-nav label:hover span{
background:#ffffff;
color:#B82F41;
}

#tab1:checked ~ .tab-nav label:nth-child(1),
#tab2:checked ~ .tab-nav label:nth-child(2),
#tab3:checked ~ .tab-nav label:nth-child(3),
#tab4:checked ~ .tab-nav label:nth-child(4),
#tab5:checked ~ .tab-nav label:nth-child(5){
background:linear-gradient(135deg,#314459,#425C77);
color:#fff;
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(49,68,89,.25);
}

#tab1:checked ~ .tab-nav label:nth-child(1) span,
#tab2:checked ~ .tab-nav label:nth-child(2) span,
#tab3:checked ~ .tab-nav label:nth-child(3) span,
#tab4:checked ~ .tab-nav label:nth-child(4) span,
#tab5:checked ~ .tab-nav label:nth-child(5) span{
background:#fff;
color:#B82F41;
}

/* Content */

.tab-content{
background:#fff;
border-radius:24px;
padding:45px;
border:1px solid rgba(49,68,89,.08);
box-shadow:0 20px 60px rgba(49,68,89,.08);
min-height:260px;
}

.content{
display:none;
align-items:center;
gap:35px;
animation:fade .4s;
}

.icon{
width:90px;
height:90px;
border-radius:22px;
background:linear-gradient(135deg,#314459,#B82F41);
display:flex;
align-items:center;
justify-content:center;
font-size:34px;
color:#fff;
flex-shrink:0;
box-shadow:0 15px 35px rgba(184,47,65,.18);
}

.content h3{
font-size:32px;
margin-bottom:18px;
color:#314459;
}

.content p{
font-size:16px;
line-height:1.9;
color:#6B7280;
max-width:700px;
}

#tab1:checked ~ .tab-content .content1{
display:flex;
}

#tab2:checked ~ .tab-content .content2{
display:flex;
}

#tab3:checked ~ .tab-content .content3{
display:flex;
}

#tab4:checked ~ .tab-content .content4{
display:flex;
}

#tab5:checked ~ .tab-content .content5{
display:flex;
}

@keyframes fade{
from{
opacity:0;
transform:translateY(15px);
}
to{
opacity:1;
transform:none;
}
}

@media(max-width:768px){

.tab-nav{
flex-direction:column;
}

.content{
flex-direction:column;
text-align:center;
}

.content h3{
font-size:28px;
}

.tab-content{
padding:30px;
}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4104825 *//*==================================================
HANSVL CONTACT HERO
==================================================*/

.hansvl-contact-hero{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    min-height:70vh;
    padding:120px 30px;
    overflow:hidden;
    isolation:isolate;
}

/*=================================
BACKGROUND IMAGE
Replace with your own image
==================================*/

.hansvl-contact-hero::before{
    content:"";
    position:absolute;
    inset:0;

    background:url("YOUR-BACKGROUND-IMAGE.jpg") center center/cover no-repeat;

    transform:scale(1);

    animation:hansvlZoom 20s ease-in-out infinite alternate;

    z-index:-3;
}

/*=================================
DARK OVERLAY
==================================*/

.hansvl-contact-hero::after{
    content:"";
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        135deg,
        rgba(12,18,28,.88),
        rgba(18,30,48,.78),
        rgba(8,12,20,.90)
    );

    z-index:-2;
}

/*=================================
FLOATING LIGHT
==================================*/

.hansvl-floating-light{

    position:absolute;

    width:550px;
    height:550px;

    right:-180px;
    top:-180px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(255,255,255,.18),
    transparent 70%);

    filter:blur(45px);

    animation:hansvlGlow 8s ease-in-out infinite;

    z-index:-1;

}

/*=================================
CONTENT
==================================*/

.hansvl-contact-content{

    max-width:820px;

    animation:hansvlFadeUp .9s ease;

}

.hansvl-contact-tag{

    display:inline-block;

    padding:10px 22px;

    border:1px solid rgba(255,255,255,.18);

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    border-radius:50px;

    color:#fff;

    font-size:13px;

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:30px;

}

.hansvl-contact-content h2{

    margin:0;

    color:#fff;

    font-size:clamp(52px,7vw,82px);

    line-height:1.1;

    font-weight:800;

    letter-spacing:-1px;

}

.hansvl-contact-line{

    width:170px;
    height:4px;

    margin:35px auto;

    background:#C7031E;

    border-radius:50px;

    animation:hansvlLine 1.2s ease;

}

.hansvl-contact-content p{

    color:rgba(255,255,255,.88);

    font-size:20px;

    line-height:1.9;

    max-width:760px;

    margin:0 auto 45px;

}

/*=================================
BUTTON
==================================*/

.hansvl-contact-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    position:relative;

    overflow:hidden;

    padding:18px 42px;

    text-decoration:none;

    color:#fff;

    background:#C7031E;

    border-radius:60px;

    font-size:17px;

    font-weight:600;

    transition:.45s ease;

    box-shadow:
    0 15px 40px rgba(199,3,30,.35);

}

.hansvl-contact-btn::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:

    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

    transition:1s;

}

.hansvl-contact-btn:hover::before{

    left:150%;

}

.hansvl-contact-btn:hover{

    transform:translateY(-8px);

    background:#d4142d;

    box-shadow:
    0 20px 55px rgba(199,3,30,.45);

}

/*=================================
ANIMATIONS
==================================*/

@keyframes hansvlZoom{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.08);

    }

}

@keyframes hansvlFadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes hansvlGlow{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(25px);

    }

}

@keyframes hansvlLine{

    from{

        width:0;

        opacity:0;

    }

    to{

        width:170px;

        opacity:1;

    }

}

/*=================================
RESPONSIVE
==================================*/

@media(max-width:991px){

.hansvl-contact-hero{

    min-height:60vh;

    padding:100px 30px;

}

.hansvl-contact-content h2{

    font-size:56px;

}

.hansvl-contact-content p{

    font-size:18px;

}

}

@media(max-width:768px){

.hansvl-contact-hero{

    min-height:auto;

    padding:80px 25px;

}

.hansvl-contact-tag{

    font-size:12px;

}

.hansvl-contact-content h2{

    font-size:42px;

}

.hansvl-contact-line{

    width:120px;

}

.hansvl-contact-content p{

    font-size:16px;

    line-height:1.8;

}

.hansvl-contact-btn{

    width:100%;

    max-width:260px;

}

}/* End custom CSS */