/*
Theme Name: Sorin Tutu
Theme URI: -
Author: anmido.studio
Author URI: http://anmido.studio
Description: A custom theme
Version: 1.0
*/


:root {
  --color-green: #4EEB9D;
  --color-yellow: #FBDE4D;
  --color-purple: #9E95F5;
  --color-red: #ED7D7E;
  --color-black: #0A0708;
  --color-white: #FFFFFF;
  --color-grey: #F6F6F6;
  --color-lime:#E2FE77;
  --space-0: 0px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-7: 56px;
  --space-8: 64px;
  --space-9: 72px;
  --space-10: 80px;
  --space-11: 88px;
  --space-12: 96px;
  --space-14: 112px;
  --space-16: 128px;
  --space-20: 160px;
  --space-24: 192px;
  --space-28: 224px;
  --space-32: 256px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  height: 100%;
  overflow: hidden; /* Prevent native scrolling */
}
body{
  background-color:var(--color-grey);
  font-family: 'Inter', sans-serif;

}
header{
  display: flex;
  position: fixed;
  width: 100%;
  background:var(--color-white);
  padding-top:var(--space-2);
  padding-bottom:var(--space-2); 
  z-index: 99;
  left:0;
  justify-content: center;
  top:0px;
  right: 0;
  align-items: center;
  transform: translateY(-80px);
 
}
.MobileNav{
  display: none;
}
.menuMmobile{
  display: none;
}
.c-scrollbar{
  z-index: 9999;
}
.c-scrollbar_thumb{
  background-color: var(--color-yellow) !important;
  opacity: 1 !important;
}
section{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
header .wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
 
  
}
nav{
  font-family: "Synonym-Semibold";
  color:var(--color-black);
  display: flex;
  column-gap: 2vw;
  align-items: center;
}
nav span, nav a{
  cursor: pointer;
  position: relative;
  text-decoration: none;
  color:var(--color-black);
}
nav span > span, nav a > span {
  position: absolute;
  width: 100%;
  height: 3px;
  top: -4px;
  background-color: var(--color-green);
  transform-origin: left; 
  transform: scaleX(0);    
  transition: transform 0.5s ease-in-out;
}

nav span.active{
  
  transform: scaleX(1);
}


nav span:hover > span , nav a:hover > span{
  transform: scaleX(1);   
  transform-origin: left; 
}


nav span > span, nav a > span {
  transform-origin: right;
  transition: transform 0.5s ease-in-out 0.2s; 
}

nav span:hover > span , nav a:hover > span{
  transition: transform 0.5s ease-in-out; 
}
p{
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 0.75vw, 16px);
  line-height: 140%;
}
nav .cta-mail{
  background-color: var(--color-green);
  border-radius: 50%;
  width:2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.cta-mail span{
  background-color: var(--color-black);
  border-radius: 100%;
  width: 60px;
  height: 60px;
  position: absolute;
  bottom: -150%;
  transform: scale(1);
  z-index: 1;
  transition: .4s transform cubic-bezier(.4,0,.1,1);
}
.cta-mail img{
position: absolute;
z-index: 2;
}
.cta-mail:hover span{
 transform: scale(2.4);
}
.wrapper{
  width: 1260px;
}
h1{
  font-family: "Synonym-Bold";
  color: var(--color-black);
  font-size: clamp(58px, 4.15vw, 120px);
  text-align: center;
  line-height: 140%;
  margin-top:var(--space-12);
  margin-bottom:var(--space-4);
}
h1 span{
  color:var(--color-green);
  position: relative;
}
#underline{
  position: absolute !important;
  width: 100%;
  height: 2rem;
  bottom: -1rem;
  left: -1rem;;
}
#underline svg{
  position: absolute !important;
  top: 0px;
  left: 0;
}
h2{
  font-family: "Synonym-Bold";
  color: var(--color-black);
  font-size: clamp(32px, 3vw, 66px);
  text-align: left;
  line-height: 120%;
  margin-top:var(--space-0);
  margin-bottom:var(--space-2);
}
h3{
  font-family: "Synonym-Bold";
  color: var(--color-black);
  font-size: clamp(24px, 1.7vw, 32px);
  text-align: left;
  line-height: 125%;
  margin-top:var(--space-0);
  margin-bottom:var(--space-2);
}
h4{
  font-family: "Synonym-Semibold";
  color: var(--color-black);
  font-size: clamp(14px, 0.85vw, 18px);
  text-align: left; 
  line-height: 130%;
  margin-top:var(--space-0);
  margin-bottom:var(--space-0);
}
.collapse h3{
  font-family: "Synonym-Semibold";
  color: var(--color-black);
  font-size: clamp(18px, 0.85vw, 18px);
  text-align: left; 
  line-height: 130%;
  margin-top:var(--space-0);
  margin-bottom:var(--space-0);
}
.logo{
  height: clamp(42px, 2.5vw, 46px);
}
  .menuMobile{
      display: none;
  }
  .btnCTA{
    background-color: var(--color-black);
    border-radius: 10px;
    height: 48px;
    color:var(--color-white);
    font-family: "Synonym-Semibold";
    width:240px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
   
  }
  
  .btnCTA p {
    width: calc(100% - 48px);
    font-family: "Synonym-Semibold";
  }
  .btnCTA span{
    position: relative;
    overflow: hidden;
    background-color:var(--color-green);
    width:48px;
    height: 48px;
    border-radius: 10px;
    right: -1px;
  }
  .btnCTA .arrowI{
    background: url(img/arrowIcon.svg) no-repeat center center;
    position: absolute;
    transition: .4s color,.4s transform cubic-bezier(.4,0,.1,1);
    z-index: 1;
    top: 0;
    left: 0;
  }
  .btnCTA .arrowA{
    background: url(img/arrowIcon.svg) no-repeat center center;
    position: absolute;
    transition: .4s color,.4s transform cubic-bezier(.4,0,.1,1);
    z-index: 1;
    top: 0;
    left: 0;
    transform: translateX(-100%);
  }
  .btnCTA:hover .arrowI{
    transform: translateX(100%);
  }
  .btnCTA:hover .arrowA{
    transform: translateX(0);
  }

  .loader{width: 100%;
  height: 100vh;
  z-index: 9999;
  position: fixed;
  display: flex;
  top:0;
  left:0;
  right: 0;
  bottom: 0;
  }
  .loader span{
    flex:1;
    height: 100vh;
    background-color:var(--color-yellow);
    display: inline-flex;
  }

/* HERO */
.hero{
  min-height: 100vh;
}
#heroTitle .word{
clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);  
}
#heroTitle .char{
transform: translateY(115px);
transition: transform .2s;
}
.heroBg{
background-color: var(--color-white);
height: 100vh;
transform: rotate(-10deg);
width: 125%;
position: absolute;
z-index: 0;
transform-origin: center;
top: -20vh;
}

.bar1 {
background-color: var(--color-purple);
width: 15vw;
bottom: -2vh;
left: -5vw;
position: absolute;
height: 40px;
transform-origin: center;
}
.bar2 {
background-color: var(--color-yellow);
width: 5vw;
bottom: -4vh;
left: -5vw;
position: absolute;
height: 40px;
transform-origin: center;
}
.bar3 {
background-color: var(--color-red);
width: 10vw;
bottom: 0vh;
right: 0;
position: absolute;
height: 40px;
transform-origin: center;

}
.bar4 {
background-color: var(--color-lime);
width: 15vw;
bottom: -2vh;
right: 0;
position: absolute;
height: 40px;
transform-origin: center;
}


.hero .wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.hero > .wrapper > p{
  width: 41.67%;
  text-align: center;
}
#heroImg{
  margin-top:var(--space-5);
  width: 100%;
  position: relative;
  transform: translateY(60px);
}
.hero .cta{
  width: 41.67%;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1vw;
  margin-top:var(--space-5);
}
.hero .cta div{
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1rem;
}
.hero .cta > div > span{
  font-family: "Inter", sans-serif;
  font-size: clamp(12px, 0.75vw, 16px);
  color: var(--color-black);
}

.heroContent{
  position: absolute;
  z-index: 3;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
  top:var(--space-12);
}
.heroTitle{
  display: flex;
  align-items: flex-end;
  column-gap: var(--space-1);
  font-family: "Synonym-Semibold";
  font-size: clamp(12px, 2vw, 18px);
}
.heroNumber{
  font-family: "Synonym-Bold";
  font-size: clamp(18px, 2vw, 36px);
}
.iconGraph{
  height: 30px;
  display: flex;
  align-items: flex-end;
}
.iconGraph span:nth-child(1){
  display: inline-flex;
  width: 7.5px;
  height: 9px;
  background-color: var(--color-green);
  border-radius: 20px;
  margin-right: 2px;
  transform-origin: bottom;
}
.iconGraph span:nth-child(2){
  display: inline-flex;
  width: 7.5px;
  height: 15px;
  background-color: var(--color-yellow);
  border-radius: 20px;
  margin-right: 2px;
  transform-origin: bottom;
}
.iconGraph span:nth-child(3){
  display: inline-flex;
  width: 7.5px;
  height: 24px;
  background-color: var(--color-purple);
  border-radius: 20px;
  margin-right: 2px;
  transform-origin: bottom;
}

/* How */
.how .wrapper{
  display: flex;
  flex-direction: column;
}
.how{
  display: flex;
  flex-direction: column;
  margin-top:var(--space-20);
  align-items: center;
}
.how h2{
  width: 50%;
}
.how h2 span{
  background-color: var(--color-green);
  color:var(--color-white);
  position: relative;

}
#Title1Overlay{
position: absolute;
z-index: 9;
width: 100%;
height: 100%;
top:0;
clip-path: inset(0% 0% 0% 0%);
transform-origin: left;
}
.how .container{
  display: flex;
  column-gap: 1.5vw;
  margin-top:var(--space-4);
}
.how .card{
  flex: 1 1 calc(33.333% - 2vw);
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  border-radius: 20px;
  justify-content: flex-end ;
  max-height: 560px;
  border:3px solid var(--color-black);
  padding-top:0;
}
.how .card h3{
padding-left:var(--space-4);
padding-right: var(--space-4);
}
.how .card p{
padding-left:var(--space-4);
padding-right: var(--space-4);
padding-bottom: var(--space-4);
}
.how .card img{
  width: 100%;
}
.how .card:nth-child(1){
  margin-top:var(--space-12);
}
.how .card:nth-child(2){
  margin-top:var(--space-6);
}
#graph, #focus{
position: relative;
}
#graph{
top:2rem;
}

#focus svg{
width: 105% !important;
}

/* Truth */
#Title2Overlay{
position: absolute;
z-index: 9;
width: 100%;
height: 100%;
top:0;
clip-path: inset(0% 0% 0% 0%);
transform-origin: left;
}
.truth{
  margin-top:var(--space-20);
  z-index: 5;
}
.truth h2{
  width: 50%;
}
.truth h2 span{
  background-color: var(--color-purple);
  color:var(--color-white);
  position: relative;
}
.truth .container{
  display: flex;
  column-gap: 1.5vw;
  margin-top:var(--space-4);
}
.truth .card{
  display: flex;
  width: 41.67%;
  flex-direction: column;
  background-color: var(--color-white);
  border-radius: 20px;
  justify-content: flex-end ;
  position: relative;
  border:3px solid var(--color-black);
  min-height: 410px;
}
.truth .card h3{
padding-left:var(--space-4);
padding-right: var(--space-4);
}
.truth .card p{
padding-left:var(--space-4);
padding-right: var(--space-4);
padding-bottom: var(--space-4);
}
.truth .card:not(.xl) img{
  position: absolute;
  top:-1rem;
  transform: translateX(50%);
}
.card.xl{
  width: 58.33%;
  flex-direction: row;
  align-items: flex-end;
}
#colectareDate{
min-width: 344px;
height: 100%;
}
#python{
position: relative;
height: 230px;
  top: -1.5rem;

}
#balance{
position: relative;
height: 230px;
  top: -1.5rem;
}
#rapoarte{
  min-width: 339px;
  height: 100%;
}
/* Results */
.resultBg{
background: var(--color-white) url(img/resultPattern.svg);
height: 100vh;
transform: rotate(10deg);
width: 125%;
position: absolute;
z-index: -1;
transform-origin: center;
top: -20vh;
}

.bar5 {
background-color: var(--color-yellow);
width: 25vw;
bottom: -2vh;
left: -5vw;
position: absolute;
height: 40px;
transform-origin: center;
}
.bar6 {
background-color: var(--color-green);
width: 15vw;
bottom: -4vh;
left: 0vw;
position: absolute;
height: 40px;
transform-origin: center;
}
.bar7 {
background-color: var(--color-red);
width: 15vw;
top: -4vh;
right: 0;
position: absolute;
height: 40px;
transform-origin: center;

}
.bar8 {
background-color: var(--color-purple);
width: 20vw;
top: -2vh;
right: 0;
position: absolute;
height: 40px;
transform-origin: center;
}
.results{
  margin-top:var(--space-20);
}
.results h2{
  width: 50%;
}
.results h2 span{
  background-color: var(--color-yellow);
  color:var(--color-white);
  position: relative;
  display: inline-block;
}
#Title3Overlay{
 position: absolute;
  z-index: 9;
  width: 100%;
  height: 100%;
  top: 0;
  clip-path: inset(0% 0% 0% 0%);
  transform-origin: left;
}
.results p{
  width: 50%;
}
.results .container{
  display: flex;
  column-gap: 2vw;
  margin-top:var(--space-4);
}
.results .container .column{
  width: 50%;
}
.collapse{
  display: flex;
  justify-content: space-between;
  border-bottom: 3px solid var(--color-black);
  align-items: center;
  padding-bottom: var(--space-1);
  cursor: pointer;
  padding-top:var(--space-1);
  column-gap: 1rem;
}
.collapse p{
  width: 100%;
}
.column .collapse:last-of-type{
  border:0;
}
.plus{
  width:43px;
  height:43px;
  background: url(img/plusIcon.svg) no-repeat center center;
  display: inline-flex;  
  flex-shrink: 0;
}
.minus{
  width:43px;
  height:43px;
  background: url(img/minusIcon.svg) no-repeat center center;
  display: inline-flex;  
  flex-shrink: 0;
}
.hidden {
  display: none; 
}

/* Partners */
.partners{
  margin-top:var(--space-20);
  flex-direction: column;
}
.partners h2{
  width: 50%;
}
.partners h2 span{
  background-color: var(--color-red);
  color:var(--color-white);
  position: relative;
  display: inline-flex;
}
#Title4Overlay{
 position: absolute;
  z-index: 9;
  width: 100%;
  height: 100%;
  top: 0;
  clip-path: inset(0% 0% 0% 0%);
  transform-origin: left;
}
.partners p{
  width: 50%;
}
#wrapper-partners{
  display: flex;
  column-gap: 1.5vw;
  margin-top:var(--space-4);
  cursor: grab;
  overflow-x: scroll; /* Ensure horizontal scrolling is enabled */
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none;  /* For Internet Explorer and Edge */
  overflow-y: hidden;
  align-items: stretch;
  -webkit-user-select: none; /* Chrome/Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE10+ */
  user-select: none;      
  padding-right: 1.5vw;
}
.card-partners{
  background-color: var(--color-white);
  border-radius: 20px;
  padding: var(--space-4);
  border:3px solid var(--color-black);
  row-gap: var(--space-4);
  display: flex;
  flex-direction: column;
}
.card-partners .image img{
  border-radius: 12px;
  pointer-events: none;    
}
.card-partners .desc{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.card-partners h3{
  margin-bottom: var(--space-1);
}
.card-partners p{
  width: 100%;
}
.links{
display: flex;

}
.card-partners .links a{
  height: 25px;
  display: inline-flex;
}
/* About */
.about{
  margin-top: var(--space-20);

}
.about .wrapper{
  display: flex;
  justify-content: space-between;
  column-gap: 1.5vw;
}
.about h2 span{
  background-color: var(--color-green);
  color:var(--color-white);
  position: relative;
}
#Title5Overlay{
position: absolute;
  z-index: 9;
  width: 100%;
  height: 100%;
  top: 0;
  clip-path: inset(0% 0% 0% 0%);
  transform-origin: left;
}
.about-left{
  position: relative;
  width: 50%;
}
.about-right{
  width: calc(50% - 2* var(--space-2));
  padding-left:var(--space-2);
  padding-right: var(--space-2);
}
.aboutImage{
  position: absolute;
  left:0;
  bottom: 2rem;
  z-index: 2;
}
.aboutIcon1{
  position: absolute;
  top: -4rem;
  left: 9rem;
}
.aboutIcon2{
  position: absolute;
  top: 11rem;
  left: 3rem;
}
.aboutIcon3{
  position: absolute;
  top:0;
  left:9rem;
  z-index: 1;
}
.about-right .btnCTA{
  margin-top:var(--space-4);
}

.feedback{
margin-top:var(--space-20);
flex-direction: column;
}
.feedback h2 span{
background-color: var(--color-purple);
color:var(--color-white);
position: relative;
display: inline-flex;
}
#Title6Overlay{
position: absolute;
  z-index: 9;
  width: 100%;
  height: 100%;
  top: 0;
  clip-path: inset(0% 0% 0% 0%);
  transform-origin: left;
}
.feedback .wrapper{
display: flex;
flex-direction: column;
column-gap: 1.5vw;
}
.feedback-left{
width: 50%;
}
#wrapper-feedback
{
  display: flex;
  column-gap: 1.5vw;
  margin-top:var(--space-4);
  cursor: grab;
  overflow-x: scroll; /* Ensure horizontal scrolling is enabled */
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none;  /* For Internet Explorer and Edge */
  overflow-y: hidden;
  align-items: stretch;
  -webkit-user-select: none; /* Chrome/Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE10+ */
  user-select: none;      
  padding-right: 1.5vw;
  padding: 1rem;
   flex-wrap: nowrap;
}

.feedback-container {
display: flex;
flex-direction: column;
row-gap: var(--space-4);
position: absolute;
width: calc(100% - 2* var(--space-2));
  margin-left: var(--space-2);
  margin-right: var(--space-2);
animation: scrollFeedback 40s linear infinite;
}
@keyframes scrollFeedback {
0% { transform: translateY(0); }
100% { transform: translateY(-100%); }
}


.card-feedback{
background:var(--color-white);
border-radius: 20px;
outline:3px solid var(--color-black);
display: flex;
flex-direction: column;
width:600px;
flex: 0 0 auto;
}
.card-body{
margin:var(--space-4);
}
.card-header{
display: flex;
width: 100%;
height: 2.5rem;
align-items: center;
justify-content: flex-end;
padding-right: var(--space-4);
}
.card-header span{
width:8px;
height: 8px;
border-radius: 50%;
background-color: var(--color-black);
display: inline-flex;
margin-left: 4px;
}
.card-green{
background-color: var(--color-green);
border-top-left-radius: 20px;
border-top-right-radius: 20px;
}
.card-yellow{
background-color: var(--color-yellow);
border-top-left-radius: 20px;
border-top-right-radius: 20px;
}
.card-red{
background-color: var(--color-red);
border-top-left-radius: 20px;
border-top-right-radius: 20px;
}
.card-footer{
display: flex;
margin:var(--space-4);
justify-content: space-between;
align-items: flex-end;
}
.card-footer h3{
margin-bottom: var(--space-0);
}
.card-feedback-video{
background:var(--color-white);
border-radius: 20px;
outline:3px solid var(--color-black);
display: flex;
padding: var(--space-2);
width: 600px;
    flex: 0 0 auto;
}
.card-feedback-video iframe{
border-radius: 20px;
    width: 100%;
}

/* CTA Section*/
.cta-section{

margin-top:var(--space-20) ;

}
.cta-container{
background-color: var(--color-purple);
  border-radius: 20px;
  outline: 3px solid var(--color-black);
  position: relative;
  height: 436px;
  padding: var(--space-4);
  align-items: center;
  display: flex;
  overflow: hidden;
  z-index: 1;
  width: 100%;

}
.cta-section .wrapper{
display: flex;
column-gap: 1.5vw;
padding: var(--space-4);
height: 100%;
align-items: center;
position: relative;
}
.cta-section h2{
color:var(--color-white);
font-size: clamp(32px, 3vw, 46px);
}
.cta-img{
position: absolute;
bottom: -4rem;
right: 6vw;
z-index: 2;
}
.cta-text{
width: 45%;
position: relative;
}
.cta-container .btnCTA{
margin-top:var(--space-4);
}
.cta-animation{
position: absolute;
left: 0;
width: 100%;
height: 200%;
overflow: hidden;
display: flex;
justify-content: flex-end;
align-items: flex-end;
}
.cta-animation span{
right: -7rem;
z-index: 0;
position: absolute;
border-radius: 50%;
border:3px solid #B0A5FF;
animation: a1 15s linear infinite;
transform-origin: center;

}
.cta-animation span:nth-child(1){
animation-delay: 0s;

}
.cta-animation span:nth-child(2){
animation-delay: 5s;
}
.cta-animation span:nth-child(3){
animation-delay: 10s;
}
.cta-animation span:nth-child(4){
animation-delay: 15s;
}
@keyframes a1 {
0%{
    opacity: 1;
    width: 700px;
    height: 700px;
}
99%{
    opacity: 1;
}
100%{
    width: 1500px;
    height: 1500px;
    opacity: 0;
}
}

/* Blog */
.blog{
height: 120vh;
background:#1F1F1F url('img/blogPattern.svg') ;
background-repeat: repeat;
position: relative;
top: -10vh;
z-index: 0;
}

.blog h2{
color:var(--color-white);
width: 55%;
}
.blog h2 span{
background-color: var(--color-yellow);
color:var(--color-white);
position: relative;
display: inline-block;
}
#Title7Overlay{
position: absolute;
  z-index: 9;
  width: 100%;
  height: 100%;
  top: 0;
  clip-path: inset(0% 0% 0% 0%);
  transform-origin: left;
}
.blog-container{
display: flex;
column-gap: var(--space-4);
margin-top:var(--space-4);
}
.featured{
flex: 0 0 calc((8 / 12) * 100%);
max-width: calc((8 / 12) * 100%);
display: flex;
column-gap: var(--space-2);
position: relative;
}

.featured::after{
content: '';
position: absolute;
height: 120%;
width: 2px;
background-color: var(--color-white);
right: -1.1rem;
top: -1.5rem;
}
.featured img{
border-radius: 20px;
max-width: 400px;
object-fit: cover;
filter: grayscale(100%);
}
.blog h3{
font-size: clamp(16px, 3vw, 24px);
color: var(--color-white);
}
.blog h3 a{
  color:var(--color-white);
  text-decoration: none;
}
.blog p{
color: var(--color-white);
opacity: 0.8;
}
.blog-content{
display: flex;
flex-direction: column;
justify-content: space-between;
}
.view{
color:var(--color-green);
font-family: "Synonym-Semibold";
text-decoration: none;
text-transform: uppercase;
display: flex;
  align-items: center;
  column-gap: var(--space-1);
  margin-top: var(--space-2);
  font-size: 12px;

}
.view:hover{text-decoration: underline;  font-family: "Synonym-Bold";}
.view span{
background: url('img/arrowGreenIcon.svg') no-repeat;
background-position: right;
width: 16px;
height: 16px;
display: inline-block;
}
.blog-footer{
display: flex;
justify-content: space-between;
color:#fff;
opacity: 0.8;
}
.readW{
background: url("img/clockWIcon.svg") no-repeat;
padding-left:var(--space-3);
font-size: 12px;
height: 16px;
display: flex;
align-items: center;
}
.dateW{
background: url("img/dateWIcon.svg") no-repeat;
padding-left:var(--space-3);
font-size: 12px;
height: 16px;
display: flex;
align-items: center;
}
.readB{
background: url("img/clockBIcon.svg") no-repeat;
padding-left:var(--space-3);
font-size: 12px;
height: 16px;
display: flex;
align-items: center;
}
.dateB{
background: url("img/dateBIcon.svg") no-repeat;
padding-left:var(--space-3);
font-size: 12px;
height: 16px;
display: flex;
align-items: center;
}
.last{
display: flex;
flex-direction: column;
justify-content: space-between;
row-gap: var(--space-4);
}
.last .blog-content{
height:50%;
position: relative;
row-gap: var(--space-3);
}

.last .blog-content:first-of-type::after{
content: "";
position: absolute;
width: 100%;
height: 2px;
background-color: var(--color-white);
bottom: -1.1rem;
}
/* Contact */
.contact{
position: relative;
top: -20vh;
}
.contact-container{
outline:3px solid var(--color-black);
border-radius: 20px;
display: flex;
column-gap: var(--space-6);
justify-content: space-between;
background-color: var(--color-white);
}
.contact-header{
display: flex;
flex-direction: column;
padding: var(--space-6);
justify-content: space-between;

}
#blog .contact-header h2{
  font-family: "Synonym-Bold";
  font-size: clamp(32px, 3vw, 66px);
}
#blog .contact-body h3{
      font-size: clamp(24px, 1.7vw, 32px);
}
.contact-container .desc{
display: flex;
flex-direction: column;
align-items: flex-start;
column-gap: var(--space-2);
}
.contact-container .desc > div{
display: flex;
flex-direction: row;
align-items: flex-start;
column-gap: var(--space-2);
margin-top:var(--space-4);
}
.heroNumber{
display: inline-flex;
}
.heroNumber div{
overflow: hidden;
}
.heroNumber span{
transform: translateY(100%);
display: inline-block;
}
.heroNumber div:nth-child(2){
margin-right: var(--space-1);
}
.desc p{
font-size: clamp(12px, 0.75vw, 14px);
}
.contact-container .desc a{
color:var(--color-black);
text-decoration: none;
margin-top:var(--space-2);
display: block;
}
.desc h3{
font-family: 'Inter', sans-serif;
font-weight: 700;
font-size: 16px;
margin:0;
}
.socials{
display: flex;
justify-content: flex-start;
gap: var(--space-4);
}
.contact-body{
outline:3px solid var(--color-black);
flex: 1;
border-radius: 20px;
padding: var(--space-8);
background-color: var(--color-yellow);
position: relative;
}
form div{
display: flex;
flex-direction: column;
margin-top: var(--space-6);
}
.field:focus-within label {
font-weight: bold;
}
input[type="text"], input[type="email"]{
background-color: transparent;
height:var(--space-4);
outline: 0;
border:0;
border-bottom: 3px solid var(--color-black);
font-family: 'Inter', sans-serif;
font-size: 14px;
border-radius: 0;
}
textarea{
background-color: transparent;
outline: 0;
border:0;
height: var(--space-20);
border-bottom: 3px solid var(--color-black);
resize: none;
font-size: 14px;
border-radius: 0;
font-family: 'Inter', sans-serif;
margin-top:var(--space-1);
}
button[type="submit"]{
background-color: var(--color-black);
border-radius: 8px;
width: 100%;
height: var(--space-6);
color:var(--color-white);
font-family: "Synonym-Semibold";
margin-top:var(--space-4);
border:0;
outline: 0;
font-size: 16px;
cursor: pointer;
}
button[type="submit"]:hover{
transform: scale(0.99);
}
/* Footer*/
footer{
margin-bottom: var(--space-4);
margin-top: -10vh;
width: 100%;
display: flex;
justify-content: center;
}
footer .wrapper{
display: flex;
justify-content: space-between;
border-top:3px solid var(--color-black);
padding-top:var(--space-4);
align-items: flex-end;

}
.contactBg{
background: var(--color-white) url(img/resultPattern.svg);
height: 130vh;
transform: rotate(10deg);
width: 125%;
position: absolute;
z-index: -1;
transform-origin: center;
top: 0;
}
.contactBg .bar5{
bottom: auto;
top:-2vh;
width: 14vw;
}
.contactBg .bar6{
bottom: auto;
width: 12vw;
}
.contactBg .bar7{
right: 9vw;
}
.contactBg .bar8{
right: 2vw;
}
blockquote {
font-style: italic;
font-family: "Synonym-Semibold";
  color: var(--color-black);
  font-size: clamp(14px, 0.85vw, 18px);
  text-align: left; 
  line-height: 130%;
color: var(--color-black);
border-left: 4px solid var(--color-green);
padding: var(--space-2);
margin: 20px 0;
background-color: var(--color-white);

}
.wp-block-separator{
border-top:2px solid var(--color-black);
margin-top:var(--space-2);
margin-bottom: var(--space-2);
}
#blog ul{
margin-left:var(--space-2);
margin-top:var(--space-2);
list-style-type: square;
}
#blog ul li{
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 0.75vw, 16px);
  line-height: 140%;
}
#blog ul li::marker{
color:var(--color-green);
}
.blog-container .wrapper{
display: flex;
column-gap: var(--space-6);
}
.blog-container .blog-text{
flex:8;
position: relative;
}
.blog-container .blog-text::after{
content: '';
position: absolute;
top:0;
width: 2px;
height: 100%;
right:-1.5rem;
background-color: var(--color-black);
}
.blog-container .blog-sidebar{
flex:4;
  display: flex;
  flex-direction: column;
  row-gap: var(--space-4);
}
#blog .contact{
top:var(--space-12);

}
.blogImage{
  min-height: var(--space-10);
}
.blogImage img{
width: 100%;
margin-top: var(--space-14);
border-radius: 20px;
object-fit: cover;
max-height: 450px;
object-position: top;
filter: grayscale(100%);
}
#blog h1{
font-size: clamp(32px, 3vw, 66px);
text-align: left;
margin-top:0;
margin-bottom: var(--space-6);
}
#blog h2{
font-size: clamp(24px, 1.7vw, 32px);
margin-top:var(--space-4);
}

#blog h3{
font-size: clamp(18px, 1.2vw, 24px);
margin-top:var(--space-4);
}
#blog footer{
margin-top:var(--space-20);
width: 100%;
display: flex;
  justify-content: center;
}
.sidebar-widget .head-green{
background-color: var(--color-green);
padding-left:var(--space-2);
height: 3rem;
display: flex;
align-items: center;

}
.sidebar-widget .head-purple{
background-color: var(--color-purple);
padding-left:var(--space-2);
height: 3rem;
display: flex;
align-items: center;

}
.sidebar-widget .head-yellow{
background-color: var(--color-yellow);
padding-left:var(--space-2);
height: 3rem;
display: flex;
align-items: center;

}
.sidebar-widget .head-red{
background-color: var(--color-red);
padding-left:var(--space-2);
height: 3rem;
display: flex;
align-items: center;

}
.sidebar-body .btnCTA{
margin-top:var(--space-2);
}
.sidebar-widget h2{
color:#fff;
margin-top:0 !important;
margin-bottom: 0 !important;
}
.sidebar-body{
margin-left:var(--space-2);
margin-right: var(--space-2);
margin-top:var(--space-2);
}
.sidebar-body h3{
margin-top:0 !important;
}
.sidebar-widget .socials{
width: 50%;
margin-top:var(--space-2);
margin-left:var(--space-2);
}
.sidebar-body .blog-footer{
color:var(--color-black);
opacity: 0.8;
margin-top:var(--space-2);
}
.sidebar-body .blog-content{
position: relative;
}
.sidebar-body .blog-content::after{
content:'';
position: absolute;
width: 100%;
height: 2px;
background-color: var(--color-black);
bottom: -1.1rem;
}
.sidebar-body .blog-content:last-of-type::after{
height: 0;
}
.sidebar-body {
display: flex;
flex-direction: column;
row-gap: var(--space-4);
}
#messageSent{
position: absolute;
margin-left: auto;
margin-right: auto;
top: 0;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: none;
}
#messageSent h3{
text-align: center;
}
#formResponse{
display: none;
color:var(--color-red);
}
/*Blog All*/
  .blog-section{
  margin-top:var(--space-14);
}
.blog-section h1{
      font-size: clamp(32px, 3vw, 66px);
      color:var(--color-white);
}
.blog-section .cta-container{
  height: 21rem;
}
.blog-section .cta-img{
     bottom: -6rem;
    right: 1vw;
}
.blog-section .cta-img img{
  width: 80%;
}
.blog-section .cta-text{
  width: 55%;
} 
.blog-section .wrapper{
  position: relative;
}
.featured-blog{
  margin-top:var(--space-24);
}
.featured-blog h2{
      font-size: clamp(24px, 3vw, 32px);   
}
.featured-blog .wrapper{
  display: flex;
  column-gap: var(--space-6);
  margin-bottom: var(--space-10);
}
.featured-blog .wrapper > div{
  width: 50%; 
  border-top:2px solid var(--color-black);
   display: flex;
    flex-direction: column;
  justify-content: space-between;
   

}
.featured-blog h2{
  font-size: clamp(24px, 4vw, 32px);
}
.featured-blog .wrapper img{
  width: 50%; 
  max-height: 20rem;
  border-radius: 20px;
  object-fit: cover;
  filter: grayscale(100%);
}
.featured-blog  .wrapper div > div img{
  height: 1rem;
  width: 1rem;
}
.featured-blog .date{
  width: 50%;
}
.blog-item-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top:var(--space-2)
}
.blog-item-head .date, .blog-item-head .read{
  display: flex;
  align-items: center;
  font-size: 14px;
}
.blog-item-head .date img, .blog-item-head .read img{
  margin-right: var(--space-1);
}
#blog .blog-item{
  border-top:2px solid var(--color-black);
}
#blog .blog-container-all .wrapper{
  display: grid;
      grid-template-columns: repeat(12, 1fr);
   gap:var(--space-6)
}
#blog .blog-container-all .wrapper .blog-item{
  grid-column: span 4;
  margin-top:var(--space-6);
}
#blog .blog-container-all .wrapper .pagination{
  grid-column: span 12;
}
.pagination{
  margin-top: var(--space-3);
}
.pagination a, .pagination span{
   min-width: 3.3rem;
    text-decoration: none;
    padding: 1rem;
    color: var(--color-black);
    display: inline-flex;
    border: 2px solid var(--color-black);
    border-radius: 20px;
    align-items: center;
    justify-content: center;
}
.pagination a{
  color:var(--color-purple);
}


@media (min-width: 2000px) {
.wrapper{
 width: 1440px;
}
.how .card{
  max-height: 640px;
}
.blog {
  height: 100vh;
}
}
@media (max-width: 1440px) {
 .wrapper{
  width: 1100px;
 }
}
@media (max-width: 1280px) {
  header .wrapper{
      margin:0;
  }
  .hero .cta{
      width: 50%;
  }
  .wrapper{
      width: calc(100% - 2 * var(--space-6));
      margin-left:var(--space-6);
      margin-right:var(--space-6);
  }
}
@media (max-width: 1024px) {
  .blog-section .cta-img{
    right: -14vw;
  }
  .blog-section .cta-text{
    width: 45%;
  }
  .blog-section .cta-img img{
    width: 70%;
  }
  .hero > p{
      width: 100%;
  }
  .hero .cta {
      width: 50%;
      flex-direction: column-reverse;
      row-gap: 2vh;
  }
}
@media (max-width: 767px)  {
  .menuMmobile{
    display: block;
  }
  .blog-section .cta-img{
    right: -5vw;
  }
  .contact{
    top:-14vh;
  }
  .blog-section .cta-img img{
    width: 80%;
  }
  .featured-blog .wrapper{
    flex-direction: column;
  }
  .featured-blog .wrapper > div, .featured-blog .wrapper img{
    width: 100%;
  }
  .featured-blog .wrapper > div{
    margin-bottom: var(--space-3);
  }
  .blog-section .cta-text{
    width: 70%;
  }
  #blog .blog-container-all .wrapper{
    gap:0;
  }
  #blog .blog-container-all .wrapper .blog-item{
    grid-column: span 12;
  }
  .hero{
    min-height: auto;
  }
  .how .card svg{
    max-width: 350px ;
    margin: 0 auto;
      display: flex;
  }
  .contactBg {
    width: 145%;
  }
  .logo{
    height: 32px;
  }
  .heroBg{
    width:140%;
    height: 125vh;
  }
  .bar3{
    right: 4rem;
  }
  .bar4{
    right: 4rem;
  }
  header nav{
      display: none;}
  footer .menuMobile{
    display: none;
  }
  footer nav{
    flex-direction: column;
            align-items: flex-end;
        gap: var(--space-3);
  }
  .menuMobile{
      display: block;
  }
  .nav-visible{
    display: inline-flex !important;
  }
  .cta-mail{
    display: none !important;
  }
  .MobileNav{
    display: flex;
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height: 100vh;
    background:var(--color-white);
    z-index: 98;
    transform: translateY(-100%);
    flex-direction: column;
    justify-content: center;
    
}
.MobileNav span, .MobileNav a{
  font-family: "Synonym-Semibold";
color: var(--color-black);
font-size: clamp(32px, 3vw, 66px);
text-align: left;
line-height: 120%;
margin-top: var(--space-0);
margin-bottom: var(--space-2);
margin-left:var(--space-3);
margin-right: var(--space-3);
border-bottom: 2px solid var(--color-black);
padding-bottom: var(--space-2);
text-decoration: none;

}
.MobileNav a:last-of-type{
  border-bottom: 0;
}
.MobileNav a .word{
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);  
  }
  .MobileNav a .char{
  transform: translateY(115px);
  transition: transform .2s;
  }
  .wrapper{
      width: calc(100% - 2 * var(--space-3));
      margin-left:var(--space-3);
      margin-right:var(--space-3);
  }
  h1 {
    margin-top: var(--space-8);
    font-size: 42px;
    margin-bottom: var(--space-3);
    line-height: 130%;
  }
  .hero > .wrapper > p{
    width: 100%;
  }
  .hero .cta, .truth h2{
    width: 100%;
  }
  .heroContent{
    top:var(--space-8);
    padding-left:var(--space-2);
    padding-right: var(--space-2);
  }
  .how, .truth, .results, .partners, .about, .feedback, .cta-section{
    margin-top:var(--space-10);
  }
  .how h2{
    width: 100%;
  }
  .how .container, .truth .container{
    flex-wrap: wrap;
  }
  .how .card:nth-child(1), .how .card:nth-child(2), .how .card:nth-child(3){
    margin-top:var(--space-4);
  }
  .how .card{
    max-height: 505px;
    flex:auto;
    width: 100%;
  }
  .truth .container{
    row-gap: var(--space-4);
  }
  .card.xl{
    width: 100%;
    flex-direction: column-reverse;
    
  }
  #colectareDate{
    min-width: 290px;
    margin:0 auto;
  }
  #rapoarte{
    margin:0 auto;
  }
  .truth .card{
    width: 100%;
  }
  .truth .card svg{
    max-width: 350px;
    display: flex;
    margin:0 auto;
  }
  .results h2, .results p, .partners h2 , .partners p{
    width: 100%;
  }
  .results .container{
    flex-wrap: wrap;
  }
  .mobile-border{
    border-top: 3px solid var(--color-black);
  }
  .results .container .column{
    width: 100%;
  }
  .resultBg{
      width: 187%;
      height: 210vh;
  }
  .bar7, .bar8{
    right: 29vw;
  }
  .bar5{
    left:-5vw;
  }
  .bar6{
    left: 0vw;
  }
  .card-partners{
    padding: var(--space-2);
  }
  .card-partners .image{
    width: 250px;
  }
  .card-partners .image img{
    width: 100%;
  }
  .about .wrapper{
    flex-wrap: wrap;
  }
  .about-left, .aboutImage, .aboutBg, .about-right, .feedback-left, #wrapper-feedback, .blog h2{
    width: 100%;
  }
  .about-right{
    margin-top:var(--space-3);
    padding: 0;
  }
  .aboutImage{
    bottom:1rem;
  }
  .aboutIcon2 {
    position: absolute;
    top: 3rem;
    left: -1rem;
}
  .aboutIcon3{
    width: 100%;
    left:5rem;
  }
  .feedback .wrapper{
    flex-wrap: wrap;
  }
 .card-feedback, .card-feedback-video{
  width: 90vw;
 }
.card-feedback-video{
  align-items: center;
}
 .card-footer img{
  width: 6rem;
 }
 #wrapper-feedback{
  column-gap: 3vw;
 }
  .card-body, .card-footer{
    margin: var(--space-2);
  }
  .feedback .wrapper{
    row-gap: var(--space-4);
  }
  .card-footer{
    flex-wrap: wrap;
    row-gap: var(--space-2);
  }
  .cta-section .wrapper{
    padding: 0;
  }
  .cta-container{
    height: 450px;
    align-items: flex-start;
    padding: 0;
  }
  .cta-text{
    width: 100%;
    margin:var(--space-3);
  }
  .cta-img{
    bottom: -4rem;
    left: 0;
    right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cta-img img{
    width: 80%;
    max-width: 400px;
  }
  .blog .wrapper{
    margin-top:15vh;
  }
  .featured{
    flex: 100%;
    max-width: 100%;
    flex-direction: column;
  }
  .blog h3{
    margin-top:var(--space-3);
  }
  .blog-footer{
    margin-top:var(--space-4);
  }
  .blog-container{
    flex-wrap: wrap;
    row-gap: var(--space-4);
  }
  .blog{
    height: 210vh;
  }
  .featured::after{
    content: '';
    height: 2px;
    width: 100%;
    bottom: -1.1rem;
    right: auto;
    top:auto;
  }
  .contact-container{
    flex-direction: column;
  }
  .contact-header{
    padding: var(--space-4);
    row-gap: var(--space-4);
  }
  .contact-body{
    padding: var(--space-4);
  }
  .loader span{
    width: 33.33%;
  }
  .loader span:nth-child(6), .loader span:nth-child(5), .loader span:nth-child(4){
  display: none;
  }
  footer{
    width: 100%;
  }
  .c-scrollbar{
   display: none;
  }
  .blog-container .wrapper{
    flex-wrap: wrap;
    row-gap: var(--space-6);
  }
  .blog-container .blog-text::after{
    content: '';
    position: absolute;
    top: calc(100% + 1.5rem);
    width: 100%;
    height: 2px;
    background-color: var(--color-black);
    left: 0;
}
  .blog-container .blog-text{
    flex:100%;
  }
  .blog-container .blog-sidebar{
    flex:100%;
  }
  .last{
    width: 100%;
  }
  .featured img{
    width: 100%;
    max-width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .how, .truth, .results, .partners, .about, .feedback, .cta-section{
    margin-top:var(--space-12);
  }
  .hero{
    min-height: auto;
  }
  .heroContent{
    top:var(--space-8);
    padding-left: var(--space-2);
    padding-right: var(--space-2);
  }
  .hero > .wrapper > p{
    width: 50%;
  }
  .heroBg{
    height:80vh;
  }
 
  .how .card h3, .how .card p{
    padding-left:var(--space-3);
    padding-right: var(--space-3);
  }
  .truth .card h3{
    padding-left:var(--space-3);
    padding-right: var(--space-3);
  }
  .truth .card p {
    padding-left:var(--space-3);
    padding-right: var(--space-3);
    padding-bottom: var(--space-3);
  }
  .how .container{
    flex-wrap: wrap;
  }
  .how .card:nth-child(1){
    margin-top:var(--space-6)
  }
  .how .card:nth-child(3){
    margin-top:var(--space-6);
  }
  .how .card svg{
    max-width: 350px ;
  }
  .how .card{
    flex:auto;
    width: 100%;
    height: 440px;
  }
  .truth .card{
    width: 50%;
    justify-content: space-between;
  }
  .card.xl{
    width: 50%;
    flex-direction: column-reverse;
    justify-content: space-between;
  }
  #colectareDate, #rapoarte{
    height: 230px;
    width: 100%;
  }
  .card-partners{
    padding: var(--space-3);
  }
  .aboutBg, .aboutImage{
    width: 100%;
  }
  .aboutIcon3{
    width: 80%;
  }
  .feedback .wrapper{
    flex-wrap: wrap;
    row-gap: var(--space-4);
  }
  #wrapper-feedback{
    width: 100%;
  }
  .cta-section .wrapper{
    padding: 0;;
  }
  .cta-img{
    right:-11vw;
  }
  .cta-img img{
    width: 80%;
  }
  .featured{
    flex: 100%;
    max-width: 100%;
    flex-direction: column;
  }
  .last{
    width: 100%;
  }
  .blog h3{
    margin-top:var(--space-3);
  }
  .blog-footer{
    margin-top:var(--space-4);
  }
  .blog-container{
    flex-wrap: wrap;
    row-gap: var(--space-4);
  }
  .blog{
    height: 150vh;
  }
  .featured::after{
    content: '';
    height: 2px;
    width: 100%;
    bottom: -1.1rem;
    right: auto;
    top:auto;
  }
  .contact-header, .contact-body{
    padding: var(--space-4);
  }
  footer{
    width: 100%;
  }
}