/*flexbox*/
/*Flexbox SASS mixins*/
.flex {
  display: flex;
}
.flex__wrap {
  flex-wrap: wrap;
}
.flex__col {
  flex-direction: column;
}
.flex__row {
  flex-direction: row;
}
.flex__reverse {
  flex-direction: row-reverse;
}
.flex__grow {
  flex-grow: 1;
  min-width: 1px;
}
.flex__shrink {
  flex-shrink: 0;
}
.flex__1 {
  flex: 1;
}
.flex__2 {
  flex: 2;
}
.flex__3 {
  flex: 3;
}
.flex__aln-start {
  align-items: flex-start;
}
.flex__aln-center {
  align-items: center;
}
.flex__aln-end {
  align-items: flex-end;
}
.flex__jfy-start {
  justify-content: flex-start;
}
.flex__jfy-center {
  justify-content: center;
}
.flex__jfy-end {
  justify-content: flex-end;
}
.flex__jfy-between {
  justify-content: space-between;
}
.flex__jfy-around {
  justify-content: space-around;
}

.clock-banner{

	display: flex;

	flex-direction: row;

}

.clock-banner .cbox{

	display: flex;

	flex-direction: column;

	margin-right: 24px;

	align-items: center;

}

.clock-banner .cbox:last-child{

  margin-right: 0;

}

.clock-banner .cbox-digit{

	font-size: 2.75rem;

	line-height: 1;

  font-weight: 700;

  letter-spacing: 2px;

  color: #ffffff;

}

.clock-banner .cbox-txt{

    font-size: 17px;

    padding-top: 5px;

    font-weight: 300;

}

.data-row .abox-5{

	text-align: center;

}

main {

  min-height: 100vh;

  display: grid;

  place-content: center;

  padding : 1rem;

}

/* Timeline */

/* Code Here ↓ */



.timeline {

  padding: 24px;

  /* padding: 3rem 2rem;

  background-color: white;

  box-shadow: 0 4px 25px -20px rgba(0,0,0.2); */

}



.tl-content .tl-header, 

.tl-content .tl-body {

  padding-left: 24px;

  border-left: 3px solid gainsboro;

}

.schedule-event{

  margin: 0;

}

.tl-body {

  padding-bottom:1rem;

}



.tl-content:last-child .tl-body {

  border-left: 3px solid transparent;

}



.tl-header {

  position: relative;

  display: grid;

/*   

  padding-top: 1rem;

  padding-bottom: 1rem; */

}



.tl-title {

  font-weight: 600;

  font-size: 1em;

  

  border-bottom: 1px solid gainsboro;

}



.tl-time {

  font-size: 0.7em;

}



.tl-marker {

  display:block;

  position: absolute;

  left: -1.3rem;

  top: 8px;

  transform: translate(50%, 0%);

  padding: 1.6px;

  width: 20px;

  height: 20px;

  border: 2px solid #64b671;

  background-color: #64b671;

  background-clip: content-box;

  box-shadow: 0 0 15px -2px #64b671;

  border-radius: 50%;

}

/* Code Here ↑ */

/* Timeline */



/* ==================== */



.blog-post .img-fluid{

  max-width: 100%;

  height: 300px;

  object-fit: cover;

  object-position: center;

}

.speaker-container{

  max-width: 1700px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 16px;

}

.speaker-container .item-col{

  position: relative;

}

.speaker-container .speaker-1{

  width: 100%;

  height: 432px;

}

.speaker-container .speaker-1 a{

  display: block;

  width: 100%;

  height: 100%;

}

.speaker-container .hover-overlay{

  width: 100%;

  height: 100%;

  overflow: hidden;

  position: relative;

}

.speaker-container .hover-overlay img{

  width: 100%;

  height: 100%;

  object-fit: cover;

  transform: scale(1.08);

}

.speaker-container .speaker-meta{

  position: absolute;

  width: 100%;

  height: 100%;

  background-color: rgba(0, 0, 0, .4);

  z-index: 3;

  top: 0;

  left: 0;

  display: none;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  text-align: center;

}

.speaker-container .speaker-meta p{

  color: white;

}

.speaker-container .item-col:hover .speaker-meta{

  display: flex;

}

.gallery-items-list{

  max-width: 1700px;

  margin: 0 auto;

}

.collapse-title {

  display: flex;

  align-items: center;

  cursor: pointer;

}

.collapse-title i{

  margin-right: 8px;

  flex: 1;

  display: flex;

  justify-content: end;

}

.collapse-box{

  display: none;

}

.brands-holder-carousel{
  position: relative;
  padding: 0 32px;
}
.brands-holder-carousel .owl-stage{
  display: flex ;
  flex-direction: row;
}

.brands-holder-carousel button{

  position: absolute;

  top: 30%;

  outline: 0;

}

.brands-holder-carousel button.disabled span{

  color: #333;

}

.owl-prev{

  left: -32px;

}

.owl-next{

  right: -32px;

}

.brands-holder-carousel span{

  font-size: 44px;

  color: #64b671;

}
.hotel-info {
  border: 1px solid #e5e5e5;
  background: #ffffff;
  transition: all 300ms ease-in-out;
}
.hotel-info:hover {
    background-color: #fff;
    border: 1px solid #f5f5f5;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.hotel-info img{
  width: 100%;
  height: 244px;
  object-fit: cover;
}
.hotel-name,
.hotel-data{
  padding: 0 16px;
}
.hotel-data{
  padding-bottom: 16px;
}
.expand-all{
  padding: 8px 24px;
  margin-top: 24px;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid #64b671;
  outline: 0;
}
.expand-all:hover,
.expand-all:focus{
  background-color: transparent!important;
  border-color: #444;
  color: #444!important;
  border: 2px solid #444;
}
.btn-primary.focus, 
.btn-primary:focus{
  box-shadow: none!important;
}
#register-form label.error{
  display: none!important;
}
#register-form input.error{
  border-color: #e74c3c;
}
.message {
  position: fixed;
  max-width: 600px;
  margin: 0;
  top: 120px;
  left: 50%;
  z-index: 9;
  padding: 8px 32px 8px 16px;
  transform: translate(-50%, 0);
  color: white;
  line-height: 32px;
  font-size: 14px;
  display: none;
}
.message.show {
  display: block;
}
.message i,
.message svg {
  position: absolute;
  right: 8px;
  top: 8px;
  cursor: pointer;
}
.message__success {
  background: #64b671;
}
.message__error {
  background: #e74c3c;;
}
.abox-10-icon{
  width: 100px;
  height: 100px;
  margin: 0 auto;
}
.abox-10-icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.lang {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  font-family: 'Oxygen', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 10px 12px;
  line-height: 50px;
  text-transform: uppercase;
  text-decoration: none;
}
.lang li a {
  display: flex;
  align-items: center;
  flex-direction: row;
  line-height: 2em;
  font-family: 'Oxygen', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
}
.lang li i, .lang li svg {
  margin-left: 8px;
  margin-top: 4px;
}
.lang .dropdown-menu {
  position: absolute;
  min-width: 300px;
  background: rgba(255, 255, 255, .7);
  color: black;
  box-shadow: 0px 0px 1.45px rgba(0, 0, 0, 0.32);
  padding: 16px;
  display: none;
  top: 36px;
  left: 0;
  animation: growDown 300ms ease-in-out forwards;
  transform-origin: top center;
  min-width: 50px;
  border-radius: 0;
  flex-direction: column;
}
.lang:hover .dropdown-menu{
  display: flex;
}
.scroll .lang{
  color: #222;
}
.e-library__row:last-child {
  box-shadow: none;
  margin-bottom: 0;
}

.e-library__row {
  padding: 12px 16px;
  width: 100%;
  background: #fbfbfb;
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 1px;
}
.e-library__row .file-text {
  width: calc(100% - 64px);
  justify-content: center;
  margin-left: 16px;
}
.e-library__row .file-text h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.5px;
}
.e-library__row .action-row .download-btn {
  height: 44px;
  border: 1px solid #DEDEDE;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  padding: 12px 14px;
  text-align: center;
  margin-right: 16px;
  transition: all ease-in-out 0.3s;
  text-align: center;
}
.e-library__row .action-row .download-btn:last-child{
  margin-right: 0;
}
.content-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 16px;
  position: relative;
  margin-top: 16px;
}
.content-gallery .col-25 {
  margin-bottom: 24px;
  width: 100%;
  height: 164px;
  position: relative;
  overflow: hidden;
}
.content-gallery .col-25 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-gallery .col-25:hover i{
  opacity: 1;
}
.content-gallery .col-25 i{
  color: #ffffff;
  font-size: 24px;
  opacity: 0;
  z-index: 3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.content-gallery .col-25::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-gallery .col-25:hover::after {
  opacity: 1;
}
.brands-holder-carousel .owl-stage,
.brands-holder-carousel .owl-item,
.brands-holder-carousel .item {
  /* width: 100%!important; */
}


.brands-holder-carousel .brand-logo{
  width: 500px;
  height: 250px;
  padding: 8px;
  margin: 0 auto;
}
.brands-holder-carousel .brand-logo img{
  width: 100%;
  object-fit: contain;
  object-position: center;
  height: 100%;
}
