@import "userpanel.css";


/* ----------------------------------------------- General */ 
:root {
  --body-font-size:16px;
  --font1:'Urbanist', sans-serif;
  --font2:'Averia Serif Libre', cursive;
  --activeColor:#1ab69d;
  --activeColorHover:#00c4a4;
  --white:#FFF;
  --white50:rgb(255 255 255 /50%);
  --beige: #f7f4ef;
  --black:#000;
  --black5:rgb(0 0 0 /5%);
  --black10:rgb(0 0 0 /10%);
  --black20:rgb(0 0 0 /20%);
  --black30:rgb(0 0 0 /30%);
  --black40:rgb(0 0 0 /40%);
  --black50:rgb(0 0 0 /50%);
  --black60:rgb(0 0 0 /60%);
  --black70:rgb(0 0 0 /70%);
  --black80:rgb(0 0 0 /80%);
  --black90:rgb(0 0 0 /90%);
  --aragosta:#EE4A62;
  --aragostapanel:#EE4A62;
  --azuregreen:#e2fef3;
  --antracite:#3D3C3B;
  --antracite2:#313131;
  --yellowpanel:#fff2cb;
  --yellowattention:#fff7e0;
  --gold:#e5b934;
  --gold2:#ffcb30;
  --orange:#fa9e27;
  --lightgrey:#f8f9fa;
  --shadowgrey:#c9c9c9;
  --linegrey:#f0f0f0;
  --superlightgrey:#f5f5f5;
  --mediumgrey:#c9c9c9;
  --grey:#666;
  --success:#e9f7d9;
  --ok:#0ed32a;
  --ko:#EE4A62;
  --green:#39b43d;
  --greenpanel:#dbfff9;;
  --panna:rgb(255 249 215 / 40%);
  --butter:#f7f5f2;
  --lightviolet:#d1d1ff;
}

/* Scrollbar */
::-webkit-scrollbar-track{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
/*  border-radius: 10px;*/
  background-color: var(--antracite);
}

::-webkit-scrollbar{
  width: 12px;
  background-color: var(--antracite);
}

::-webkit-scrollbar-thumb{
/*  border-radius: 10px;*/
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  background-color: var(--brand-rosso);
}

/* Text Selection */
/*::selection {
  background: var(--official-green);
}
::-moz-selection {
  background: var(--official-green);
}
*/

.accordion-button:not(.collapsed) {
    color: var(--white) !important;
    font-weight: 600;
    background-color: var(--activeColor) !important;
  }

.hamburgerWrap{
  display: none;
}

.hamburger {
  cursor: pointer;
  display: flex;
  padding: 0;
  width: 44px;
}
.line {
  fill: none;
  stroke: black;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}






.bg-success {
    background-color: rgb(25 182 157) !important;
}
.bg-infoViolet{
    background:var(--lightviolet);
}
.bg-yellow{
    background:var(--yellowattention);
}

.bg_azuregreen{
  background: var(--azuregreen);
}
.bg_azuregreen.seafood{
  background: url(../img/bg-seafood.webp)no-repeat bottom center var(--azuregreen);
  background-size: 100%;
  padding-bottom:300px !important;
}


.activeColor,.activecolor{
  color: var(--activeColor) !important;
}

.bg-activeColor,
.bgactiveColor {
    background:var(--activeColor);
    color: var(--white);
}

.greenpanelBg{
  background: var(--greenpanel);
}

.form-check-input:checked {
    background-color: var(--activeColor);
    border-color: var(--activeColor);
}

.blur{
  opacity: 0.2;
  filter: blur(3px);
}

.r8{
  border-radius: 8px;
}

.r15{
  border-radius: 15px;
}
.r20{
  border-radius: 20px;
}


.video-container {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0,0,0,0.3);
  }

  .video-container video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 9/16; /* mantiene formato verticale */
    background: #000;
    cursor: pointer;
  }

  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    width: 80px;
    height: 80px;
    background: var(--black80);
    border-radius: 50%;
    display:flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    z-index: 10;
  }

  .play-button:hover {
    background: var(--black40);
    transition: all 0.3s ease;
  }


.userInitialaCircle{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--activeColor);
  color: var(--white);
}

.argumentBanner {
  position: relative;
  overflow: hidden;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.argumentBanner .overText{
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
  top: 0;
  left:0;
  display: flex;
  align-items: center;
  padding-bottom: 30px;
  background: var(--black50);
}
.argumentBanner .overText h1{
  color: var(--white);
  font-size: 3rem;
}
.argumentBanner .overText p.lead{
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1.1em;
}

.argumentBanner picture img{
  min-height: 100%;
  min-width: 100%;
  width: auto !important;
}



.fourResHero{
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.fourResHero .textOverlay{
  position: absolute;
  padding:0 10%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:var(--black40);
}
.fourResHero.moreHeight{
  position: relative;
  height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.fourResHero img,
.fourResHero.moreHeight img{
  min-height: 100%;
  min-width: 100%;
  width: auto !important;
}







.leadextra{
  font-size: 1.7rem;
}

/* General style */

body{
    background: var(--white);
    font-family: var(--font1);
    font-weight: 300;
    font-size: 17px;
    color: var(--antracite);
}
.h1,.h2,.h3,.h4,.h5,.h6,
h1,h2,h3,h4,h5,h6{
/*    font-family: var(--font2);*/
      font-family: var(--font1);
      font-weight: 600;
      color: var(--antracite);
}
strong{
  font-weight: 600;
}

h1.extra{
  font-size: 50px;
}


a:link,
a:visited{
  color: var(--body-font-color);
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

a:hover{
  opacity: 0.7;
  text-transform: none;
}

input[type="submit"].cta-standard,
button.cta-standard,
a.cta-standard{
  background: var(--activeColor);
  color: var(--white) !important;;
  font-weight: 400;
  font-size: 16px;
  padding: 7px 20px;
  border: 0;
  border-radius: 4px;
  width: max-content;
  transition: all 0.3s ease-in-out;
  display: block;
  cursor: pointer;
}
input[type="submit"].cta-standard:hover,
button.cta-standard:hover,
a.cta-standard:hover{
  background: var(--activeColorHover);
  transition: all 0.3s ease-in-out;
}


input[type="submit"].cta-standard-white,
button.cta-standard-white,
a.cta-standard-white{
  background: var(--white);
  color: var(--activeColor) !important;;
  font-weight: 400;
  font-size: 16px;
  padding: 7px 20px;
  border: 0;
  border-radius: 4px;
  width: max-content;
  transition: all 0.3s ease-in-out;
  display: block;
  cursor: pointer;
}
input[type="submit"].cta-standard-white:hover,
button.cta-standard-white:hover,
a.cta-standard-white:hover{
  background: var(--white);
  transition: all 0.3s ease-in-out;
}



input[type="submit"].cta-standard-outline,
button.cta-standard-outline,
a.cta-standard-outline{
  background: transparent;
  color: var(--antracite) !important;;
  font-weight: 400;
  font-size: 16px;
  padding: 7px 20px;
  border: 1px solid var(--antracite);
  border-radius: 4px;
  width: max-content;
  transition: all 0.3s ease-in-out;
  display: block;
  cursor: pointer;
}
input[type="submit"].cta-standard-outline:hover,
button.cta-standard-outline:hover,
a.cta-standard-outline:hover{
  background: var(--antracite);
  border: 1px solid var(--antracite);
  color: var(--white) !important;
  transition: all 0.3s ease-in-out;
}

input[type="submit"].cta-standard.big,
button.cta-standard.big,
a.cta-standard.big,
input[type="submit"].cta-standard-outline.big,
button.cta-standard-outline.big,
a.cta-standard-outline.big{
  font-size: 18px;
  padding: 12px 30px;
  display: block;
  cursor: pointer;
}

input[type="submit"].cta-standard.little,
button.cta-standard.little,
a.cta-standard.little,
input[type="submit"].cta-standard-outline.little,
button.cta-standard-outline.little,
a.cta-standard-outline.little{
  font-size: 13px;
  padding: 6px 16px;
  display: block;
  cursor: pointer;
}




input[type="submit"].cta-standard.long,
button.cta-standard.long,
a.cta-standard.long,
input[type="submit"].cta-standard-outline.long,
button.cta-standard-outline.long,
a.cta-standard-outline.long,
input[type="submit"].cta-standard.little.long,
button.cta-standard.little.long,
a.cta-standard.little.long,
input[type="submit"].cta-standard-outline.little.long,
button.cta-standard-outline.little.long,
a.cta-standard-outline.little.long{
  width: 100%;
  display: block;
  text-align: center;
  cursor: pointer;
}


.butZero{
  border: 0;
  background: transparent;
  cursor: pointer;
}


.notPayed{
  opacity:0.6;
  position: relative;
}


.inactive,
.inactive:hover,
.cta-standard-outline.inactive,
.cta-standard-outline.inactive:hover{
  border: 1px solid var(--superlightgrey) !important;
  color: var(--mediumgrey) !important;
  background: var(--superlightgrey) !important;
  cursor: not-allowed;
}

.bg-grey{
  background: var(--lightgrey);
}

.preTitle{
  letter-spacing: 2px;
}

.green{
  color: var(--green);
}

.bt{
  border-top: 1px solid var(--linegrey);
}

.bb{
  border-bottom: 1px solid var(--linegrey);
}

/* Body elements style */

#top_nav,
#top_nav_minimal{
  /*position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;*/
  padding: 10px 0;
  background: transparent;
  transition: all 0.3s ease-in-out;
  background: var(--white);
  box-shadow: 0px 0px 20px #eee;
}

.fixed-top {
    top: -100px;
    transform: translateY(100px);
    transition: transform .4s;
}


#top_nav .logo,
#top_nav_minimal .logo{
  width: 150px;
}
#top_nav .logo{
/*  filter: contrast(0%) brightness(2);*/
  transition: all 0.3s ease-in-out;
}

#top_nav.scrolled{
  background: var(--white);
  padding: 5px 0;
  box-shadow: 0px 0px 20px rgb(0 0 0 / 10%);
}

#top_nav.scrolled .logo{
  filter: initial;
  width: 150px;
}

#top_nav .topMenuWrap{
  display:block;
}

#top_nav .topMenu ul{
  margin:0;
  padding:0;
  display: flex;
}
#top_nav .topMenu ul li{
  list-style: none;
}

#top_nav .topMenu ul li a{
  padding: 5px 12px;
  display: block;
  font-weight: 600;
}

#top_nav .utilityMenu .wishlist{
  position: relative;
}
#top_nav .utilityMenu .wishlist i{
  font-size: 20px;
}
#top_nav .utilityMenu .wishlist small{
  position: absolute;
  top: -5px;
  right: -12px;
  color: var(--white);
  background: var(--activeColor);
  border-radius: 40px;
  padding: 4px 8px;
  z-index: 5;
  font-weight: 600;
  line-height: 1em;
  font-size: 12px;
  transition: all 0.3s ease-in-out;
}


#top_nav .utilityMenu .cart{
  position: relative;
  width: 40px;
  height: 40px;
  background: var(--activeColor);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#top_nav .utilityMenu .cart i{
  font-size: 18px;
  color: var(--white);
} 
#top_nav .utilityMenu .cart small{
  position: absolute;
  top: -3px;
  right: -9px;
  color: var(--grey);
  background: var(--white);
  border-radius: 40px;
  padding: 2px 7px;
  z-index: 5;
  font-weight: 600;
  font-size: 14px;
  line-height: 1em;
  box-shadow: 0px 0px 10px #5fa093;
}

#top_nav .utilityMenu .account a{
  font-weight: 600;
}

#top_nav .utilityMenu .account a i{
  font-size: 18px;
}

.heroSlider{
  position: relative;
}

.heroSlider{
  position: relative;
  background:var(--lightgrey);
}
.heroSlider:after{
  content: "";
  position: absolute;
  bottom: -50px;
  width: 100%;
  height: 50px;
  background:var(--lightgrey);
  z-index: 2;
  border-radius: 0 0 100% 100%;
}

.fourResHero{
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.fourResHero .textOverlay{
  position: absolute;
  padding:0 10%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:var(--black40);
}
.fourResHero.moreHeight{
  position: relative;
  height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.fourResHero img,
.fourResHero.moreHeight img{
  min-height: 100%;
  min-width: 100%;
  width: auto !important;
}


.trustCardBar .card{
  box-shadow: 0px 0px 40px var(--superlightgrey);
}


.aboutCourseInfo .imgWrap{
  position: relative;
}

.aboutCourseInfo .imgWrap .focusImg{
  border:20px solid var(--white);
  box-shadow: 0px 0px 40px var(--superlightgrey);
}

.aboutCourseInfo .imgWrap .detailImg{
  position: absolute;
  top: 210px;
  left: 340px;
  z-index: 2;
}

ul.checkList{
  padding: 0;
  margin: 0;
}

ul.checkList li{
  list-style: none;
  background: url("../img/trueCheck.svg")no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 5px;
}


.courseCard{
  background: var(--butter);
  border-radius: 12px;
  overflow:hidden;
}
.courseCard .courseImgWrap{
  position: relative;
  overflow: hidden;
}

.courseCard .courseImgWrap .courseImg img{
  transform: scale(1.0);
  transform-origin: center center;
  transition: all 0.3s ease-in-out;
}
.courseCard:hover .courseImgWrap .courseImg img{
  transform: scale(1.04);
  transition: all 0.3s ease-in-out;
}

.courseCard .courseInfoWrap{
  position: relative;
}
.courseCard .courseInfoWrap .coursePrice{
  background: var(--activeColor);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  position: absolute;
  top: -32px;
  right: 25px;
  z-index: 2;
}
.courseCard .courseInfoWrap .courseInfo{
  display: flex;
  flex-wrap: wrap;
}









.courseCardPreview{
  background: var(--butter);
  border-radius: 12px;
  position: relative;
}
.courseCardPreview .courseCardDesktopHoverMoreDetails{
  position: absolute;
  width: 400px;
  top: 0px;
  right: -420px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0px 0px 30px -10px var(--shadowgrey);
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.coursesGrid .col:nth-child(3n) .courseCardPreview .courseCardDesktopHoverMoreDetails{
  right: initial;
  left: -420px;
}
.courseCardPreview:hover .courseCardDesktopHoverMoreDetails{
  right: -410px;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
}

.courseCardPreview .courseCardDesktopHoverMoreDetails .progress{
  height: 7px;
}


.courseCardPreview .courseImgWrap{
  position: relative;
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.courseCardPreview .courseImgWrap img{ 
  width: 100%;
}
.courseCardPreview .courseImgWrap .courseTags{
  position: absolute;
  top: 20px;
  left:20px;
  z-index: 2;
}
.courseCardPreview .courseImgWrap .courseTags span{
  border: 1px solid var(--antracite);
  background: var(--antracite);
  color: var(--white);
  font-size: 13px;
  border-radius: 3px;
  font-weight: 600;
  padding: 2px 8px;
  margin-right: 5px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.courseCardPreview .courseImgWrap .courseTags span.new{
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--white);
}

.courseCardPreview .courseImgWrap .courseTags span.promo{
  border: 1px solid var(--activeColor);
  background: var(--activeColor);
  color: var(--white);
}


.courseCardPreview .courseImgWrap .courseDate{
  position: absolute;
  bottom: 50px;
  right: 20px;
  z-index: 2;
  background: var(--activeColor);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 600;
  line-height: 1em;
}
.courseCardPreview .courseImgWrap .courseDate span{
  font-size: 14px;
  line-height: 1em;
}


.courseCardPreview .courseImgWrap .coursePercent{
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  background: var(--activeColor);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
}

.courseCardPreview .courseImgWrap .courseImg {
    min-height: 300px;
    min-width: 100%;
}

.courseCardPreview .courseImgWrap .courseImg img{
  transform: scale(1.0);
  transform-origin: center center;
  transition: all 0.3s ease-in-out;
}
.courseCardPreview:hover .courseImgWrap .courseImg img{
  transform: scale(1.04);
  transition: all 0.3s ease-in-out;
}

.courseCardPreview .courseInfoWrap{
  position: relative;
}

.courseCardPreview .courseInfoWrap .courseWishlistBut a.wlist.off{
  background: url(../img/ico-heart-3-line.svg)no-repeat center center;
  background-size: 22px;
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.courseCardPreview .courseInfoWrap .courseWishlistBut a.wlist.on{
  background: url(../img/ico-heart-3-line-on.svg)no-repeat center center;
  background-size: 22px;
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.courseCardPreview .courseInfoWrap .courseAbstract{
  display: none;
}
.courseTeacher,
.courseCardPreview .courseInfoWrap .courseInfo .courseTeacher{
  display: flex;
  align-items: center;
}
.courseTeacher .avatar img,
.courseCardPreview .courseInfoWrap .courseInfo .courseTeacher .avatar img{
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.courseTeacher .avatar .fullname,
.courseCardPreview .courseInfoWrap .courseInfo .courseTeacher .avatar .fullname{
  font-size: 12px;
}




/* E blur sulle card solo sopra i 1024px */
@media (min-width: 1025px) {

  /* quando UNA card è in hover, allora tutte le altre diventano blur */
  .cardsWrapper:has(.courseCardPreview:hover) .courseCardPreview {
    filter: blur(2px);
    opacity: 0.5;
  }

  /* la card attiva resta nitida e magari risalta un po' */
  .cardsWrapper:has(.courseCardPreview:hover) .courseCardPreview:hover {
    filter: none;
    opacity: 1;
  }
}




.argumentBanner .courseTeacher .avatar img{
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.argumentBanner .courseTeacher .fullname{
  color: var(--gold);
  font-weight: 600;
  font-size: 18px;
}
.argumentBanner .courseTeacher .tut_card_payoff{
  color: var(--white);
}



.ratingBar{
  position: relative;
  height: 18px;
  width: 90px;
}
.ratingBar img{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.ratingBar .ratingBarWrapper{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.ratingBar .ratingBarWrapper .ratingBar {
  background:#F9B233;
  width: 100%;
  height: 100%;
}


.coursePriceOffer{
  font-weight: 600;
}

.coursePercent{
  font-size: 14px;
  color: var(--white);
  background: var(--orange);
  padding: 4px 15px;
  border-radius: 4px;
  font-weight: 600;
}


#testimonialRating .card .card-body{
  min-height: 190px;
}


#teacherList .card.teacherCard{
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

#teacherList .card.teacherCard .overText{
 position: absolute;
 width: 100%;
 height: 100%;
 padding: 30px;
 left: 0;
 bottom: 0;
 z-index: 2;
 display: flex;
 flex-direction: column;
 justify-content: end;
 overflow: hidden;
 transition: all 0.3s ease-in-out;
}

#teacherList .card.teacherCard .overText .teacherName,
#teacherList .card.teacherCard .overText .teacherAbility{
  background: var(--white);
  padding: 5px 20px;
  border-radius: 8px;
  width: max-content;
}
#teacherList .card.teacherCard .overText .teacherName{
  font-weight: 600;
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
}
#teacherList .card.teacherCard .overText .teacherAbility{
  font-size: 12px;
  margin-bottom: -60px;
  transition: all 0.3s ease-in-out;
}
#teacherList a:hover .card.teacherCard .overText{
  background: rgb(26 181 158 / 81%);
  transition: all 0.3s ease-in-out;
}

#teacherList a:hover .card.teacherCard .overText .teacherAbility{
  margin-bottom: 0px;
  transition: all 0.3s ease-in-out;
}


.fullWCta{
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.fullWCta .textOverlay{
  position: absolute;
  padding:0 10%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgb(0 0 0 /30%);
  z-index: 2;
}

.fullWCta.redbck{
  background: var(--red);
}

.fullWCta.redbck img{
  mix-blend-mode: multiply;
  filter: saturate(0);
}


.fullWCta img{
  min-height: 100%;
  min-width: 100%;
  width: auto !important;
}

a.newsCardLnk:hover{
  opacity: initial;
}

.newsCard.card .imgWrap{
  overflow:hidden;
   border-radius:12px;
}

.newsCard.card .imgWrap img{
  transition: all 0.3s ease-in-out;
}
.newsCard.card .imgWrap.squareImg{
  aspect-ratio: 1/1;
  overflow: hidden;
}

a.newsCardLnk:hover .newsCard.card .imgWrap img{
  transform-origin: center center;
  transform: scale(1.04);
}
.newsCard.card .contentWrap{
  width: 90%;
  margin-left: 5%;
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  transform: translateY(-80px);
  box-shadow: 0px 0px 60px -10px var(--mediumgrey);
  position: relative;
}
.newsCard.card .contentWrap .newsCircleBut{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--activeColor);
  position: absolute;
  top: -30px;
  right: 50px;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.newsCard.card .contentWrap .newsCircleBut i{
  color: var(--white);
  font-size: 24px;
}
a.newsCardLnk:hover .newsCard.card .contentWrap .newsCircleBut{
  right: 30px;
  opacity: 1;
  visibility: visible;
}

.newsCard.card .contentWrap .newsArgument{
  font-size: 13px;
}

.newsCard.card .contentWrap .newsTitle{
  transition: all 0.3s ease-in-out;
}
a.newsCardLnk:hover .newsCard.card .contentWrap .newsTitle{
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
}
/*.newsCard.card .contentWrap .newsInfo{}
.newsCard.card .contentWrap .newsInfo .newsDate{}
.newsCard.card .contentWrap .newsInfo .newsComment{}
.newsCard.card .contentWrap .newsAbstract{}*/


.wishlist{
  position: relative;
}

.wishlist .subMenuWrap{
  position: absolute;
  background: var(--white);
  width: 300px;
  border-radius: 12px;
  box-shadow: 0px 14px 30px -1px var(--shadowgrey);
  top: 30px;
  left: -215px;
  padding: 10px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.wishlist:hover .subMenuWrap{
  top: 50px;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
}
.wishlist .subMenuWrap ul{
  margin: 0;
  padding: 0;
}
.wishlist .subMenuWrap ul li{
  list-style: none;
}
/*.wishlist .subMenuWrap ul li:not(:last-child){
  border-bottom: 1px solid var(--linegrey);
}*/


.stepWrapper .step{
  border: 3px solid var(--mediumgrey);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--mediumgrey);
  position: relative;
}

.stepWrapper .step span{
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -8px;
  right: -5px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  box-shadow: -2px 3px 6px var(--activeColor);
}

.stepWrapper .step span i {
  font-size: 16px;
  color: var(--activeColor);
}
.stepWrapper .step i{
  font-size: 24px;
}

.stepWrapper .step.on{
  border: 3px solid var(--activeColor);
  color: var(--activeColor);
  font-weight: 900;
}

.stepWrapper .step.done span{
  opacity: 1;
  visibility: visible;
}


.stepWrapper .step.done{
  border: 3px solid var(--activeColor);
  background: var(--activeColor);;
  color: var(--white);
  font-weight: 900;
}


.stepWrapper .orizontaldivider{
  height: 25px;
  border-bottom: 1px solid var(--mediumgrey);
  margin:0 10px;
}

.qtaWrapper .addPrd,
.qtaWrapper .removePrd{
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 5px;
}
.qtaWrapper .qtaPrd{
  width: 60px;
}

#userCheckTab .nav-link{
  border-radius: 0;
  color: var(--grey);
  border:1px solid var(--mediumgrey) ;
  max-width: 180px;
  width: 180px;
}
#userCheckTab .nav-link.active{
  background: var(--activeColor);
  color: var(--white);
  border:1px solid var(--activeColor) ;
}

#userCheckTab .nav-item:nth-child(1) .nav-link{
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  border-right: 0;
}
#userCheckTab .nav-item:nth-child(2) .nav-link{
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border-left: 0;
}


footer {
  background: var(--white);
}

footer ul{
  padding: 0;
}

footer ul li{
  list-style: none;
}


#newsletterSubscribe input{
  background: var(--superlightgrey);
  border: 0;
  padding: 8px 20px;
}

/* ----------- Password Helper  ----------- */

#message {
  display:none;
}

.valid {
  color: var(--green);
}

.valid:before {
  position: relative;
  margin-right: 7px;
  content: "✔";
}

.invalid {
  color: var(--aragosta);
}

.invalid:before {
  position: relative;
  margin-right: 7px;
  content: "✖";
}
.choosePwd{
  position: relative;
}
#formEye{
  position: absolute;
  right:10px;
  bottom:5px;
  z-index: 2;
}

.paymentTabsWrap ul{
  width: 100%;
  display: flex;
}
.paymentTabsWrap ul li{
  padding:5px;
  width: 100px;
  flex-grow: 1;
}
.paymentTabsWrap .nav-link{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  border:1px solid var(--shadowgrey);
  color: var(--grey);
  overflow: hidden;
  position: relative;
}
.paymentTabsWrap .nav-link:disabled{
  border:1px dotted var(--shadowgrey);
  opacity: 0.5;
}
.paymentTabsWrap .nav-link:disabled i{
  color: var(--black40);
}

.paymentTabsWrap .nav-link div.selected{
  position: absolute;
  right: 7px;
  top: 5px;
  color: var(--white);
  background: var(--activeColor);
  font-size: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
}


/*.paymentTabsWrap .nav-link.active{
  border:1px solid var(--activeColor);
  background: var(--activeColor);
  color: var(--white);
}*/


.paymentTabsWrap .nav-link.active{
  border:1px solid var(--black);
  color: var(--black);
  background: transparent;
  position: relative;
  overflow: hidden;
}

.paymentTabsWrap .nav-link.active div.selected{
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}

.paymentTabsWrap .nav-link i{
  font-size: 24px;
}

/*.paymentTabsWrap  #paypalEmail{
  background: #253B80;
  color: #2997DB;
}*/

.courseTag{
  background: var(--greenpanel);
  color: var(--activeColor);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 4px;
  display: block;
  width: max-content;
}

.courseTag.yellow{
  background: var(--yellowpanel);
  color: var(--gold);
}

.courseTag.alert{
  background: var(--aragosta);
  color: var(--white);
}


.productCard a{
  text-decoration: none;
}

.productCard{
  position: relative;
}

.productCard a.wlist.off{
  background: url(../img/ico-heart-3-line.svg)no-repeat center center;
  background-size: 22px;
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.productCard a.wlist.on{
  background: url(../img/ico-heart-3-line-on.svg)no-repeat center center;
  background-size: 22px;
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.productCard .card .card-header{
  min-height: 40px;
}

#niceCookHeroCarousel img.decoration{
 position: relative;
 border: 10px solid #fff;
}
#niceCookHeroCarousel img.decoration:after{
  content: "";
  width: 400px;
  height: 400px;
  background: var(--shadowgrey);
  z-index: -1;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}


#countdownWrapper{
  display: flex;
  align-items: center;
  justify-content: center;
}
#countdownWrapper .boxCount{ 
  border:1px solid var(--white);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin-right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#countdownWrapper .boxCount:last-child(){
  margin-right: 0;
}

.blogBlock a{
  position: relative;
  display: block;
}

.blogBlock a span.data{
  position: absolute;
  top: 0;
  left:0;
  padding: 7px 25px;
  background: var(--white);
  font-size: 16px;
  z-index: 2;
  border-bottom-right-radius:15px;
}

.blogBlock a .imgWrap{
  overflow: hidden;
  border-radius: 15px;
}

.blogBlock a .imgWrap img{
  transition: all 0.8s ease-in-out;
}
.blogBlock a:hover .imgWrap img{
  filter:saturate(2);
  transform: scale(1.04);
  transition: all 0.8s ease-in-out;
}

.locationHero{
  background-size: cover;
  background-position: center center;
  height: 100vh;
  position: relative;
}
.tutorCard{
  height: 100vh;
  position: relative;
  overflow: auto;
}

.locationHero .overText{
  background: var(--black50);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.locationHero .overText .imgWrap{
  width: 300px;
  border-radius: 10px;
  overflow: hidden;
  border:15px solid var(--white);
  background: var(--white);
}

.locationHero .overText .imgWrap img{
  width: 300px;
}

.imgWrapTutor{
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
}
.imgWrapTutor img{
  width: 200px;
  height: auto;
}






/* ----------- Media Query  ----------- */

@media (max-width: 575px) {
  #userCheckTab .nav-link{
    width: initial;
  }
}

@media (max-width: 767px){

}

@media (max-width: 768px) {
  #teacherList .card.teacherCard .overText {
    display: none;
  }
  .bg_azuregreen.seafood{
    background: url(../img/bg-seafood-mobile.webp)no-repeat bottom center var(--azuregreen);
    background-size: 100%;
    padding-bottom:280px !important;
  }
}

@media (max-width: 1024px) {
    h1.extra {
      font-size: 45px;
      line-height: 1em;
  }

  .courseCardPreview .courseCardDesktopHoverMoreDetails,
  .courseCardPreview:hover .courseCardDesktopHoverMoreDetails{
    display: none;
  }
  .courseCardPreview .courseInfoWrap .courseAbstract{
    display: block;
  }

  #top_nav .topMenuWrap{
    display:none;
  }
  #top_nav .topMenuWrap.is-active{
    display:block;
  }

  #top_nav .topMenuWrap.is-active .topMenu{
    background: var(--antracite);
    position: absolute;
    z-index: 100;
    width: 100%;
    top: 73px;
    left: 0;
    padding: 20px 20px 30px 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0px 20px 20px var(--black30);
  }
  .hamburgerWrap{
    display: block;
  }
  #top_nav .topMenuWrap.is-active .topMenu ul{
      display: initial;
    }

  #top_nav .topMenuWrap.is-active .topMenu ul li a:link,
  #top_nav .topMenuWrap.is-active .topMenu ul li a:visited{
      color: var(--white);
      font-size: 20px;
      line-height: 1.8em;
  }

  .account span{
    display: none;
  } 

}

@media (min-width: 992px) {
  
}

@media (min-width: 1200px) {

}

@media (min-width: 1400px) {

}





