*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.banner {
	background:url(../images/banner/about-banner.jpg)
} 
#History{
	padding-top: 3rem;
}
.box1 .date{background:#41516C!important;}
.box1 .date::before{background:#41516C!important;}
.box1 .date::after{border:0.3rem solid #41516C!important;}

.box2 .date{background:#FBCA3E!important;}
.box2 .date::before{background:#FBCA3E!important;}
.box2 .date::after{border:0.3rem solid #FBCA3E!important;}

.box3 .date{background:#E24A68!important;}
.box3 .date::before{background:#E24A68!important;}
.box3 .date::after{border:0.3rem solid #E24A68!important;}
  
.box4 .date{background:#1B5F8C!important;}
.box4 .date::before{background:#1B5F8C!important;}
.box4 .date::after{border:0.3rem solid #1B5F8C!important;}
  
.box5 .date{background:#900028!important;}
.box5 .date::before{background:#900028!important;}
.box5 .date::after{border:0.3rem solid #900028!important;}
   
.box6 .date{background:#4CADAD!important;}
.box6 .date::before{background:#4CADAD!important;}
.box6 .date::after{border:0.3rem solid #4CADAD!important;}
    
.timeline  ul {
  --col-gap: 2rem;
  --row-gap: 2rem;
  --line-w: 0.25rem;
  display: grid;
  grid-template-columns: var(--line-w) 1fr;
  grid-auto-columns: max-content;
  column-gap: var(--col-gap);
  list-style: none;
  width: min(70rem, 90%);
  margin-inline: auto;
}
 
.timeline  ul::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / span 20;
  background: rgb(225, 225, 225);
  border-radius: calc(var(--line-w) / 2);
}

 
.timeline  ul li:not(:last-child) {
  margin-bottom: var(--row-gap);
}
 
.timeline  ul li {
  grid-column: 2;
  --inlineP: 1.5rem;
  margin-inline: var(--inlineP);
  grid-row: span 2;
  display: grid;
  grid-template-rows: min-content min-content min-content;
}
 
.timeline  ul li .date {
  --dateH: 3rem;
  height: var(--dateH);
  margin-inline: calc(var(--inlineP) * -1);

  text-align: center;
  background-color: var(--accent-color);

  color: white;
  font-size: 1.25rem;
  font-weight: 700;

  display: grid;
  place-content: center;
  position: relative;

  border-radius: calc(var(--dateH) / 2) 0 0 calc(var(--dateH) / 2);
}
 
.timeline  ul li .date::before {
  content: "";
  width: var(--inlineP);
  aspect-ratio: 1;
  background: var(--accent-color);
  background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
  position: absolute;
  top: 100%;

  clip-path: polygon(0 0, 100% 0, 0 100%);
  right: 0;
}
 
.timeline  ul li .date::after {
  content: "";
  position: absolute;
  width: 2rem;
  aspect-ratio: 1;
  background: var(--bgColor);
  border: 0.3rem solid var(--accent-color);
  border-radius: 50%;
  top: 50%;

  transform: translate(50%, -50%);
  right: calc(100% + var(--col-gap) + var(--line-w) / 2);
}
 
.timeline  ul li .title,
.timeline  ul li .descr {
  background: var(--bgColor);
  position: relative;
  padding-inline: 1.5rem;
}
.timeline  ul li .title {
  overflow: hidden;
  padding-block-start: 0rem;
  padding-block-end: 1rem;
  font-weight: 500;
  
  padding-inline: 0rem;
}
.timeline  ul li .descr {
  padding-block-end: 1.5rem;
  font-weight: 300;
}

/* <!-- shadows -->*/
.timeline  ul li .title::before,
.timeline  ul li .descr::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 0.5rem;
  background: rgba(0, 0, 0, 0.5);
  left: 50%;
  border-radius: 50%;
  filter: blur(4px);
  transform: translate(-50%, 50%);
}
.timeline  ul li .title::before {
  bottom: calc(100% + 0.125rem);
}

.timeline  ul li .descr::before {
  z-index: -1;
  bottom: 0.25rem;
}

@media (min-width: 40rem) {
  .timeline  ul {
    grid-template-columns: 1fr var(--line-w) 1fr;
  }
  .timeline  ul::before {
    grid-column: 2;
  }
  .timeline  ul li:nth-child(odd) {
    grid-column: 1;
  }
  .timeline  ul li:nth-child(even) {
    grid-column: 3;
  }

   .timeline  ul li:nth-child(2) {
    grid-row: 2/4;
  }

  .timeline  ul li:nth-child(odd) .date::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    left: 0;
  }

  .timeline  ul li:nth-child(odd) .date::after {
    transform: translate(-50%, -50%);
    left: calc(100% + var(--col-gap) + var(--line-w) / 2);
  }
  .timeline ul li:nth-child(odd) .date {
    border-radius: 0 calc(var(--dateH) / 2) calc(var(--dateH) / 2) 0;
  }
}
 

#timeline {
  display: flex;
  background-color: #031625;
}
#timeline:hover .tl-item {
  width: 23.3333%;
}

.tl-item {
  transform: translate3d(0, 0, 0);
  position: relative;
  width: 25%;
  height: 100vh;
  min-height: 600px;
  color: #fff;
  overflow: hidden;
  transition: width 0.5s ease;
}
.tl-item:before, .tl-item:after {
  transform: translate3d(0, 0, 0);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.tl-item:after {
  background: rgba(3, 22, 37, 0.85);
  opacity: 1;
  transition: opacity 0.5s ease;
}
.tl-item:before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 75%);
  z-index: 1;
  opacity: 0;
  transform: translate3d(0, 0, 0) translateY(50%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.tl-item:hover {
  width: 30% !important;
}
.tl-item:hover:after {
  opacity: 0;
}
.tl-item:hover:before {
  opacity: 1;
  transform: translate3d(0, 0, 0) translateY(0);
  transition: opacity 1s ease, transform 1s ease 0.25s;
}
.tl-item:hover .tl-content {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.75s ease 0.5s;
}
.tl-item:hover .tl-bg {
  filter: grayscale(0);
}

.tl-content {
  transform: translate3d(0, 0, 0) translateY(25px);
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 1.618em;
  top: 60%;
  opacity: 0;
}
.tl-content h1 {
 
  text-transform: uppercase;
  color: #1779cf;
  font-size: 1.3rem;
  font-weight: normal;
}

.tl-year {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.tl-year p {
	
  font-size: 1.728rem;
  line-height: 2;
  margin-bottom:0;
  
}

.tl-bg {
  transform: translate3d(0, 0, 0);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  transition: filter 0.5s ease;
  filter: grayscale(100%);
}
.special-place img {
    width: 100%;
    padding: 0;margin-top:0
	
}
#PeopleStories .OurProfession{
	background:#fff;
	padding:10px 20px;
	border-radius:10px
}
.InitiactivesBox img{
	min-height:250px;
	objet-fit:cover
}
 
.owl-theme .owl-dots, .owl-theme .owl-nav{
	margin-top:30px
}
.InitiactivesBox {
    background-color: white;
    border-top: 4px solid #345c8f;
    padding: 0px;
    position: relative;
    box-shadow: 0 0 8px #ccc; 
	cursor: pointer;
}
.InitiactivesBox img {
    min-height: 325px;
    object-fit: cover;
    border: 1px solid #355d8f; 
    border-radius: 0%;
    margin: 0% auto;
}
.MultiOffers a {
    font-size: 14px;
    color: #345c8f;
    text-decoration: none;
    display: inline-block;
    text-transform:capabilities; 
    font-weight: 700;
}

.MultiOffers a:hover {
	color: #9a183c;
}
.EventInfo {
    min-height: 225px;
}
.MultiOffers{margin-bottom:0}
#management-team{
	padding:2rem 0  
}

.EventInfo{
	background: #f3f3f3;
    font-size: 16px!important;
    padding: 10px;
}
.EventInfo h5{
	font-size: 18px;
    margin-top: 10px;
}
.EventInfo h5{
	font-size: 18px;
    margin-top: 10px;
}

.MultiOffers a {
    font-size: 14px;
    color: #345c8f;
    text-decoration: none;
    display: inline-block;
    text-transform: capabilities;
    font-weight: 700;
}




