/* GLOBAL STYLE */
.freeMode .swiper-slide{
  width: fit-content;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.full_height{
  height: 100vh;
  overflow: hidden;
}

.full_width{
  height: 100vw;
  overflow: hidden;
}

::placeholder {
  color: #cccccc;
}

.pagination > .active > a{
    background-color: rgb(0, 0, 0, 0.5);
}

.pagination > li > a:focus,
.pagination > li > a:hover{
    border: 0;
}

.body-lights {
  background: rgb(0, 0, 0, 0.05);
}

.yes-shadow{
	-webkit-box-shadow: 0px 1px 10px -5px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 1px 10px -5px rgba(0, 0, 0, 0.2);
}
.no-shadow{
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.opacity{
  opacity: 0.5;
}

.greenbg {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  position: 10px 0px;
  width: 100%;
}

.columns-products {
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 2fr));
	align-items: center;
	justify-content: space-evenly;
}


.columns-courses {
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 2fr));
	align-items: center;
	justify-content: space-evenly;
}

.flex {
  -ms-flex: 1 1 0.000000001px;
  -webkit-flex: 1;
  flex: 1;
  -webkit-flex-basis: 0.000000001px;
  flex-basis: 0.000000001px;
}

.ql-align-right {
	text-align: right;
}
.ql-align-center {
	text-align: center;
}
.ql-align-left {
	text-align: left;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.post_content{
  font-size: 16px;
  line-height: 22px;
}

.post_content img{
  width: 100%;
  display: block;
  padding-bottom: 5px;
}

.line-1 {
	overflow:hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	white-space: pre-wrap;
}

.line-2 {
	overflow:hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	white-space: pre-wrap;
}

.line-3 {
	overflow:hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	white-space: pre-wrap;
}

.line-4 {
	overflow:hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	white-space: pre-wrap;
}

.line-5 {
	overflow:hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	white-space: pre-wrap;
}

.line-6 {
	overflow:hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 6;
	white-space: pre-wrap;
}

.capitalize-first-letter {
    text-transform: capitalize;
}

.grayimg {
  filter: contrast(0%);
  filter: brightness(0%);
}

.navbar_overlay {
  background-image: linear-gradient(to top,rgba(0,0,0,0) 0,rgb(24 24 24 / 80%) 100%);
}

.topnavbar {
  background-color: transparent;
  transition: all 0.5s ease;
  padding: 20px 0px;
}

.topnavbar .logo-brand img{
  height: 80px;
  transition: all 0.5s ease;
}


.topnavbar_small {
  transition: all 0.5s ease;
  padding: 5px 0px;
}

.topnavbar_small .logo-brand img{
  height: 60px;
  transition: all 0.5s ease;
  filter: grayscale(100%);
}

.autosize{
  transition: transform 0.5s ease;
}

@media (max-width: 500px) {

  .container{
    padding: 0px;
    margin: 0px;
  }


  .columns-products {
    grid-template-columns: repeat(auto-fill, minmax(150px, 2fr));
  }

}

@media (max-width: 300px) {

  .columns-products {
    grid-template-columns: repeat(auto-fill, minmax(100%, 2fr));
  }


  .columns-courses img{
    height:180px;
  }

}
