@charset "UTF-8";
/* CSS Document */

/* ------------------------------------------- */
/* TRAINING SECTION general */
/* ------------------------------------------- */

.spacing {
	padding: 30px 30px 50px 30px;
}


.promote-box {
    background-color: #fff;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.promote-box img {
    width: 100%;
    height: auto;
    padding: 6px 6px 0 6px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}
.promotion-content {
    margin: 40px 45px 20px 45px;
}
.register-now {
    margin-top: -20px;
    margin-left: 45px;
}
.section-flipbook {
	margin-bottom: 150px;
}



.two-blocks {
	float: left;
    width: 50%;
    padding: 0 20px;
}
@media screen and (max-width: 600px) {
  .two-blocks {
    width: 100%;
  }
}
.promote-left {
	padding: 10px 10px 5px 10px;
    text-align: center;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px
}
.promote-left img {
	width: 100%;
}
.promote-text-left {
	margin-top: 20px;
	border: thin solid #E8E8E8;
	border-radius: 8px;
	padding: 20px;
	font-size: 90%;
}
.promote-right {
	padding: 10px 10px 5px 10px;
    text-align: center;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px
}
.promote-right img {
	width: 100%;
}
.promote-text-right {
	margin-top: 20px;
	border: thin solid #E8E8E8;
	border-radius: 8px;
	padding: 20px;
	font-size: 90%;
}
.two-block-reg {
	display: block;
	width: 125px;
	text-align: center;
	font-size: 90%;
	font-weight: 400;
	margin-top: 20px;
	padding: 8px;
	border-radius: 5px;
	border: thin solid #ff6666;
}

.promote-banner {
	padding: 10px 10px 5px 10px;
    text-align: center;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px
}
.promote-banner img {
	width: 100%;
}
.promote-text {
	margin-top: 20px;
	border: thin solid #E8E8E8;
	border-radius: 8px;
	padding: 20px;
	font-size: 90%;
}
.promote-text-style {
	margin-left: 20px;
}
.promote-reg {
	display: block;
	width: 125px;
	margin-left: 20px;
	text-align: center;
	font-size: 90%;
	font-weight: 400;
	margin-top: 25px;
	padding: 8px;
	border-radius: 5px;
	border: thin solid #ff6666;
}

/* ------------------------------------------- */
/* HOW IT WORKS training SECTION */
/* ------------------------------------------- */

.section-steps {
	background-color: #f8f9fa;
    padding: 50px 0;
}
.leaf-slide {
    display: block;
    float: left;
    width: 45%;
    padding: 20px 10px 20px 0;
    text-align: right;
}
.leaf-slide img {
    height: 550px;
    margin-top: -100px;
    margin-bottom: -200px;
    animation-duration: 3s;
}
.step-content {
    display: block;
    float: right;
    width: 55%;
    padding: 20px;
}
.works-step {
    margin-bottom: 15px;
}
.numbers {
	color: #FF6666;
    font-size: 105%;
	font-weight: 400;
	height: 38px;
	width: 38px;
    padding: 2px;
	border: 2px solid #FF6666;
	border-radius: 50%;
	display: inline-block;
	text-align: center;
	margin-right: 25px;
	float: left;
}
.works-step p {
	padding-top: 4px;
}
.reg-link:hover {
	border-bottom: thin dashed #ff6666;
	padding-bottom: 3px;
}


/* MODAL (popup) */
.modal {
    background-color: rgba(0,0,0,.8);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
}
.modal-content {
    width: 35%;
    height: auto;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 50px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
}
.modal-close {
    font-size: 180%;
    font-weight: 400;
    position: absolute;
    top: 30px;
    right: 35px;
}
#modal:target {
    opacity: 1;
    visibility: visible;
}
#modal:target .modal-content {
    opacity: 1;
    visibility: visible;
}


/* ------------------------------------------- */
/* WORKSHOP training SECTION */
/* ------------------------------------------- */

.section-workshops {
	margin: 100px 0;
}
.register {
    display: block;
}
.tc-list {
	margin-top: 20px;
	padding-left: 35px;
}
.tc-date {
	color: #ff6666;
}
.tc-green {
	color: #264D30;
	text-transform: uppercase
}
.tc-list-item {
	margin: 15px 0;
	padding: 5px 0;
}



.tooltip {
  position: relative;
  display: inline-block;
}
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #ff6666;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: -5px;
  left: 115%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}


/* ------------------------------------------- */
/* SALE online courses SECTION */
/* ------------------------------------------- */

.big-sale {
    margin-bottom: 40px;
    font-size: 300%;
    color: #ff6666;
    padding-top: 20px;
}
.sale-content p {
    margin-bottom: 3px;
}
.sale-view {
    margin-top: 20px;
    margin-left: 20px;
    font-size: 90%;
}




/* ------------------------------------------- */
/* TC SOCIAL MEDIA BOXES */
/* ------------------------------------------- */
.section-tc-socialmeadia {
	
}
.tcfb-container {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	padding: 1rem;
}
.tcfb-box {
	flex: 1 1 45%;
	padding: 1rem;
	border-radius: 8px;
	box-shadow: 02px 5px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
	.tcfb-box {
		flex: 1 1 100%;
	}
}



/* ------------------------------------------- */
/* TC SONJA'S BLOG */
/* ------------------------------------------- */



.ohtc-blog .hero {
    position: relative;
    height: var(--hero-height);
    overflow: hidden;
  }

  .ohtc-blog .hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .ohtc-blog .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(var(--overlay-colour), var(--overlay-opacity));
    pointer-events: none;
  }

  .ohtc-blog .hero-text {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: end;
    padding: 28px 0;
    z-index: 1;
  }

  .ohtc-blog .hero-text h1 {
    margin: 0;
    color: #fff;
    line-height: 1.1;
    letter-spacing: 0.2px;
    font-size: clamp(28px, 4vw, 54px);
    text-shadow: 0 2px 18px rgba(0,0,0,.25);
  }

  .ohtc-blog .hero-text p {
    margin: 10px 0 0;
    color: rgba(255,255,255,.92);
    max-width: 70ch;
    font-size: clamp(14px, 1.6vw, 18px);
  }





































