/* ------------------------------------------ */
/* Root elements                              */
/* ------------------------------------------ */

:root{
  --breakpoint-large: 1024px;
  --min-header-height:68px;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
}

body {
  min-height: 100%;
  overflow-wrap:anywhere;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.o-hidden {
  overflow: hidden;
}


/* ------------------------------------------ */
/* Footer                                     */
/* ------------------------------------------ */

.footer{
  margin-top: auto;
  border-top-width: 1px;
  background-color: rgb(249 250 251);
}
@media (min-width: 768px) { 
  .footer_grid{
    display:grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
 }

 .footer-img {
  width: fit-content;
  max-width: 100%;
 }

/* ------------------------------------------ */
/* Header                                     */
/* ------------------------------------------ */
.Header, #header{
  position:relative;  /*fallback */
  position: -webkit-sticky;
  position: sticky;
  width:100%;
  top:0;
  left:0;
  z-index: 200;
  background-color: white;
  border-bottom-width: 1px;
  transition: 0.2s ease-in-out;
}
.Header-backdrop{
  position: fixed;
  width:100%;
  height: 100%;
  top:0;
  left:0;
  border:none;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 0, 0.15);
  visibility: hidden;
  z-index: 500;
}
.Header-backdrop.open{
  visibility: visible;
}
.Header-content{
  position: relative;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  align-items: center;
  min-height: var(--min-header-height);
}
.Header-mobile-content{
  margin-top:auto;
  margin-bottom: auto;
  width: 100%;  
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content:space-between;
  align-items: center;
  z-index: 1000;
}
.Header-logo{
  display: flex;
  align-items: center;
}
.Header-logo img{
  width: fit-content;
  max-width: 100%;
  max-height: 1.6rem;
  padding-right: 60px;
}
.Header-mobile-Button--menu {
  border:none;
  background-color:#ffffff00;
  cursor: pointer;
  position: absolute;
  top: 0;
  right:0;
  width: 80px;
  height: 60px;
}
.hamburger,.hamburger:before,
.hamburger:after{  
  position: absolute;
  height: 3px;
  width: 20px;
  background-color: rgb(17 24 39);
  border-radius: .5rem;
  transition: 0.5s;
}
.hamburger {  
  left:30px;
  top:33px;
}
.hamburger:before {
  left:0px;
  top: -6px;
}
.hamburger:after {
  left:0px;
  top: 6px;
}
.hamburger:before,
.hamburger:after {
  content: ''; 
}
.Header-mobile-Button--menu.active .hamburger {
  background:rgba(0,0,0,0);
}
.Header-mobile-Button--menu.active .hamburger:before {
  top: 0;
  transform:rotate(135deg);
}
.Header-mobile-Button--menu.active .hamburger:after {
  top: 0;
  transform:rotate(225deg);
}
.HeaderMenu{  
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;  
  right: 0;
  display: flex;
  justify-content: flex-end; 
  padding: 3.5rem 0 1rem  1rem;
  padding-top: var(--min-header-height);
  display: none;
}
.HeaderMenu.active{
  display: flex;
}
.header-menu-wrapper{
  height: 100%;
  width: 100%;
  max-width: 30rem; 
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  overflow: auto;
  padding: 1.5rem; 
  padding-top: 0;
  border-width: 1px;
  border-radius: .5rem;
  border-color:rgb(107 114 128); 
  background-color: white;
  z-index: 1000;
}
.HeaderMenu-item{
  position: relative;
  display: block;
}
.HeaderMenu-link{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1rem 0; 
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  border-bottom: 1px solid #e6e8e9;
}
.HeaderMenu-link-icn, .HeaderLang-btn-icn{
  height: 0.7rem;
  transition: transform 0.3s;
}
.HeaderMenu-link.active{
  color: rgb(26 86 219);
}
.HeaderMenu-link.open .HeaderMenu-link-icn{
  transform: rotate(90deg);
}
.HeaderMenu-link-dropdown-menu{
  position: relative;
  margin: 0;
  padding: 0.5rem 0;
  background-color: rgb(255, 255, 255);  
  border-bottom: 1px solid #e6e8e9;
  display: none;
}
.HeaderMenu-link-dropdown-menu.open{
  display: block;
}
.HeaderMenu-dropdown-link{
  position: relative;
  display: flex;
  align-items: center;
  font-size: .875rem;
  color:rgb(75 85 99);
  line-height: 1.4;
  text-decoration: none;
  padding: 0.5rem 0;  
}

/*
.HeaderMenu-dropdown-link.active{
  color: #1a56db;
}
.HeaderMenu-dropdown-link.active .HeaderMenu-dropdown-title{
  color: rgb(26 86 219);
}
*/

.HeaderMenu-dropdown-icn{
  display: inline-block;
  height: 2.3rem;
  width: 2.3rem;
  vertical-align: text-bottom;
  margin-right: 0.7rem;
  padding:0.6rem;
  border-radius: .5rem;
  border: 1px solid #e6e8e9;
  background-color: rgb(249 250 251);
}
.HeaderMenu-dropdown-icn.courses{
  border-color: rgb(250 202 21);
  background-color: rgb(253 246 178);
}
.HeaderMenu-dropdown-icn.hr{
  border-color: rgb(164 202 254);
  background-color: rgb(225 239 254);
}
.HeaderMenu-dropdown-icn.user{
  border-color: rgb(248 180 180);
  background-color: rgb(253 232 232);
}

.HeaderMenu-dropdown-title{
  color:rgb(17 24 39);
  font-size: 1rem;
  font-weight: 600;
}
/* HEADER LANGUAGE */
.HeaderLang{
  position: relative;
  display: block;
  width: 100%;
}
.HeaderLang-btn{
  width: 100%;
  display: flex;
  align-items: center;
  align-self: flex-start;
  justify-content: space-between;
  padding: 1rem 0; 
  font-size: .875rem;
  line-height: 1.25rem;
  font-weight: 500;
  border-bottom: 1px solid #e6e8e9;
}

.HeaderLang-btn-wrap{
  display: flex;
  align-items: center;
}
.HeaderLang-flag, .HeaderLang-btn-flag{
  border-width: 1px;
  border-color: #9CA3AF;
}
.HeaderLang-flag{
  width: 1.25rem;
  /* margin-right: .5rem; */
}
.HeaderLang-btn-flag{
  width: 1.5rem;
  /* margin-right: .5rem; */
}
.HeaderLang-btn.open .HeaderLang-btn-icn{
  transform: rotate(90deg);
}
.HeaderLang-dropdown-menu{
  position: relative;
  margin: 0;
  padding: 0.5rem 0;
  background-color: rgb(255, 255, 255);  
  border-bottom: 1px solid #e6e8e9;
  display: none;
}
.HeaderLang-dropdown-menu.open{
  display: block;
}
.HeaderLang-dropdown-link{
  position: relative;
  display: flex;
  align-items: center;
  font-size: .875rem;
  line-height: 1.25;
  color: rgb(55 65 81);
  text-decoration: none;
  padding: 0.5rem 0;  
}
/* HEADER BUTTONS CTA */
 .HeaderMenu-Btns{
  display: flex;
  align-items: center;
  margin-bottom: 0;  
  gap:1rem;
  flex-direction: column;
 }
 .HeaderMenu-Btn{
    width: 100%; 
    border-radius: .5rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    padding: 0.8rem 1rem; 
 }
 .Btn--sign-in{
   color: white;
    background-color: rgb(17 24 39);
    border-width: 1px;
    border-color:  rgb(17 24 39);
 }
 .Btn--sign-in:hover{
  background-color: #000000;
 }
 .Btn--sign-up{
   color:rgb(17 24 39);
   background-color: white;
   border-width: 1px;
  border-color:  rgb(229, 231, 235);
 }
 .Btn--sign-up:hover{
  background-color: rgb(243 244 246);
  color:rgb(26 86 219);
 }

 @media (min-width: 1160px) {
  .Header-backdrop{
    display:none;
  } 
  .Header-content{
    flex-direction: row;
    padding-left: 1.5rem; 
    padding-right: 1.5rem;
  } 
 .Header-mobile-content{
    width: max-content;
  } 
 .Header-mobile-Button--menu{
    display: none;
  } 
  .Header-logo img{
    max-height: 1.6rem;
    padding:0;
    margin-right: 3rem;
  }
  .HeaderMenu{
    display: flex;
    position: relative;
    flex-direction: column;
    max-width:none;
    margin-top: 0;
    padding: 0;
  } 
 .header-menu-wrapper{
    flex-direction: row;
    overflow: visible;
    max-width:none;
    padding: 0;
    border-radius:0;
    border:none; 
    align-items: center;
    flex-wrap: wrap;
    gap:0.5rem;
  } 
  .HeaderMenu-Links{
    display:flex;
    flex-direction: row;
    gap:2.5rem;
  } 
 .HeaderMenu-item{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center; 
  } 
.HeaderMenu-link{
    width: auto;
    padding: 0; 
    font-size: 1rem;
    font-weight: 500;
    border:none;
  } 
  .HeaderMenu-link-icn{
    height: 0.55rem;
    margin-top: 0.2rem;
    width:auto;
    transform: rotate(90deg);
    transition: transform 0.3s;
  }
  .HeaderMenu-link:hover{
    color: rgb(106, 107, 109);
  }
  .HeaderMenu-link.open .HeaderMenu-link-icn{
    transform: rotate(270deg);   
  }
 .HeaderMenu-link-dropdown-menu{
    position: absolute;
    top:35px;
    left: -1rem;
    display: none;
    min-width: max-content;    
    border-radius: .5rem;
    border: 1px solid #e6e8e9;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  } 
  .HeaderMenu-link-dropdown-menu.open{  
    display: flex;
  }
 .HeaderMenu-dropdown-link{    
    padding: 0.5rem 1rem;
    max-width: 500px;
  } 
  .HeaderMenu-dropdown-link:hover{    
    background-color: rgb(243 244 246);
  }

 .HeaderLang{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center; 
    width: auto;
  } 
  .HeaderLang-btn:hover{
    background-color: rgb(243 244 246);
  }
 .HeaderLang-btn{
    display: flex;    
    border: none;
    padding: .5rem 1rem;
    border-radius: .5rem;
  } 
  .HeaderLang-btn-icn{
    display: none;
  }

  .HeaderLang-flag{
    width: 1.25rem;
    /* margin-right: .5rem; */
  }
  .HeaderLang-dropdown-menu{
    position: absolute;
    top:40px;
    left: 0;
    min-width: max-content;
    border-radius: .5rem;
    border: 1px solid #e6e8e9;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    display: none;
  } 
  .HeaderLang-dropdown-menu.open{    
    display: flex;
  }
  .HeaderLang-dropdown-link{    
    padding: 0.5rem 1rem;
  } 
  .HeaderLang-dropdown-link:hover{
    background-color: rgb(243 244 246);
  }
  .HeaderMenu-Btns{
    margin:0;
    margin-left: 1rem;
    flex-direction: row;
   }
   .HeaderMenu-Btn{
    width: auto;
    font-size: .875rem;
    line-height: 1.25rem;    
    padding:  .625rem 1.25rem;
   }
}



/* CARDS */
.card_truncate{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}




/* BREADCRUMB */
.breadcrumb{
  overflow: hidden;
  white-space: nowrap;
}
.breadcrumb li+li::before {
  display: inline-flex; 
  min-width:0.75rem;
  height: 0.75rem;
  margin: 0 0.75rem;
  content:'';
  background: url('../images/icn-angle-right.svg') no-repeat;
  background-size: contain;
}
.breadcrumb_truncate{
  white-space:normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}


/* ------------------------------------------ */
/* Common                                     */
/* ------------------------------------------ */

/* Show/hide */
.si-show {
  display: block !important;
}

.si-hide {
  display: none !important;
}


/* ------------------------------------------ */
/* Lazy load images                           */
/* ------------------------------------------ */
.skeleton {
  background-color: hsl(200, 20%, 80%);
  min-height: 100px;
}


/* ------------------------------------------ */
/* Loader                                     */
/* ------------------------------------------ */

/* popup container */
#ldr {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 50px;
  padding-left: 10px;
  padding-right: 10px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  -webkit-box-sizing:border-box;
  -moz-box-sizing: border-box;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
  text-align: center;
}

/* loader container */
#ldr {
  z-index: 4;
}

#ldr > div, #ldr > div:after {
  border-radius: 50%;
  width: 15em;
  height: 15em;
}

#ldr > div {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 2.5em solid rgba(255,255,255, 0.2);
  border-right: 2.5em solid rgba(255,255,255, 0.2);
  border-bottom: 2.5em solid rgba(255,255,255, 0.2);
  border-left: 2.5em solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Do linkow */
:target {
  scroll-margin-top: 68px;
  scroll-margin-top: var(--min-header-height);
}
 /* Image hover */
.img-scale{
  transition: transform .5s cubic-bezier(.165,.84,.44,1);
}
.img-scale:hover{
  transform:scale(1.017);
}


/* chart JS blog */
.aspectratio{
  aspect-ratio: 4 / 3;
}



/* ACCORDION */
.question {
  padding: 1.25rem;
  cursor: pointer;
  color:rgb(17 24 39); 
  border-top-width: 1px;
  border-color: rgb(228, 228, 228);
  background-color:  rgb(249 250 251);
  display:flex;
  align-items: center;
  justify-content: space-between;
  font-weight:600;
  width:100%;
  text-align: left;
}
.question:first-of-type{
  border:none;
}
.question:hover {
  background-color:  rgb(243 244 246); 
}
.question:after {
  content: '\002B';
  color: #181818;
  font-weight: bold;
  margin-left: 5px;
  font-size: 1.3rem;
  padding-left: 1rem;
}
.question.activeq:after {
  content: "\2212";
}
.activeq {
  display: flex;
  color:black;
}
.answer {
  display: none;   
  background-color: #ffffff; 
  padding: 1.25rem;
  border-top-width: 1px;
  border-color: rgb(228, 228, 228);
}
.activea {
  display: block;
}
.answer ol li {     
  list-style-type: decimal;
  list-style-position: inside; 
  margin-bottom: .5rem;
  padding-inline-start: 1.25rem;
} 
.answer ul li {     
  list-style-type:circle;
  list-style-position: inside; 
  margin-bottom: .5rem;
  padding-inline-start: 1.25rem;
} 
.answer *{
  margin-bottom: .5rem;
}




/* BACKGROUNDS */
.demobg{
  background: url("../images/clover/hatch.svg"), linear-gradient(to right,#ebf5ff, #fafafa);
}
/* .herobg{
  background: url("../images/starscta.svg") no-repeat;
  background-position: bottom center; 
} */
.sysheroimg{
  height: auto;   
  top: -12rem;
  right: -4.3rem;
  position:absolute;   
  transition: all .25s ease-out;
}
.sysctabg{
   background: url("../images/clover/cloverCTA.svg") no-repeat, radial-gradient(circle,#eff7ff,#ebf5ff );
   background-position: bottom right;
}
.sysctaimg{
   position:relative;  
   width: 100%;
   height: auto;    
   transition: all .25s ease-out;
   display:none;   
}  
/* .sysctaimg:hover,.sysctaimg:focus{
   transform: rotate(2deg) scale(0.99);
} */
@media (min-width: 1024px){
  .sysctaimg{
  display:block;       
  }
}
@media (min-width: 1124px){
   .sysctaimg{
      top: -18.5rem;
      right: -4.3rem;
      position:absolute;        
   }
}

.checked_mark_list li {     
  list-style-type: disc;
  list-style-image: url('/images/icn-circle-check.svg');
  list-style-position:outside; 
  margin-bottom: 0.6rem;
  margin-right:0.7rem;
  margin-left: 1.5rem;
} 


.about-timeline-grid{
  display: grid;
  grid-template-columns: auto;
  grid-gap: 0.25rem;
  justify-content: center;
  /* align-items: center; */
}


@media (min-width: 500px) {
  .about-timeline-grid {
    grid-template-columns: auto 1fr;
    grid-gap: 0.65rem;
  }
}



/* BLOG ARTICLE: previous article and next article */
.art-previous-next{
  display: grid;
  justify-content: space-between;
  gap: 2rem;
  grid-template-columns: repeat(1,minmax(0,1fr));
}
.art-previous-next .previous, .art-previous-next .next{
  color: #111827;
  display: flex;
  gap: 1rem;
  text-decoration: none;
  align-items: center;
}
.art-previous-next .grid-next{
  display: grid;
}
.art-previous-next .next{
  justify-self: end;
  /* grid-column: 2 / 2; */
}
.art-previous-next .previous span, .art-previous-next .next span{
  display: flex;
  flex-flow: column;
}
.art-previous-next .previous:hover, .art-previous-next .next:hover{
  color: #2563eb;
  text-decoration: underline;
}

@media (min-width: 500px) {
  .art-previous-next{
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .art-previous-next .previous .art-title, .art-previous-next .next .art-title{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
}


object{
  height: auto;
  max-width: 100%;
}

.cookie-overlay{
  position: fixed;
  width: 100%;
  height: 100%;
  border: none;
  background: #000000;
  opacity: 0.2;
  top: 0;
  left: 0;
  z-index: 9999;
  /* pointer-events: none; */
}

.cookie-content{
  z-index: 99999;
  right: 0; 
  left: 0;
}

.hero-image-container-en{
  aspect-ratio: 800 / 500;
  max-width: 100%; 
  position: relative;
}
.hero-image-container-pl{
  aspect-ratio: 800 / 650;
  max-width: 100%; 
  position: relative;
}
.blog-art-more-bg{
  background: #EBF5FF;
  background: linear-gradient(0deg, rgba(235, 245, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}
.form-shadow-blue{
  box-shadow: rgb(235, 245, 255) 12px 12px, rgb(118, 169, 250) 12px 12px 0px 1px;
}