*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font: normal 16px/1.5 "Helvetica Neue", sans-serif;
  background: #252627;
  color: #fff;
  overflow-x: hidden;
  padding-bottom: 50px;
  text-transform: capitalize;
  padding-left: 0rem;
}

/* INTRO SECTION
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.intro {
  background: #5b6af4;
  padding: 100px 0;
}

h1 {
  font-size: 2.5rem;
}
.modal-body{
  padding: 40px;
  color: #4193eb;
}
.btn{
  text-transform: capitalize;
  padding: 10px;
  width: 150px;
  
}
.navbar-collapse .navbar-nav{
  color: #e1e7ee;
}

/* TIMELINE
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.timeline ul {
  background: #0e1114;
  padding: 50px 0;
}

.timeline ul li {
  list-style-type: none;
  position: relative;
  width: 6px;
  margin: 0 auto;
  padding-top: 50px;
  background: #fff;
}

.timeline ul li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: inherit;
  z-index: 1;
}

.timeline ul li div {
  position: relative;
  bottom: 0;
  width: 400px;
  padding: 15px;
  background: #5b6af4;
}
.timeline ul li h4 {
  color: #848588;
  background: #5b6af4;
  font-size: 1.2em;
  font-weight: 800;
}
.timeline ul li .time-font {
  color: #1e1f22;
  background: #5b6af4;
  text-align: right;
}


.timeline ul li div::before {
  content: "";
  position: absolute;
  bottom: 7px;
  width: 0;
  height: 0;
  border-style: solid;
}

.timeline ul li:nth-child(odd) div {
  left: 45px;
}

.timeline ul li:nth-child(odd) div::before {
  left: -15px;
  border-width: 8px 16px 8px 0;
  border-color: transparent #5b6af4 transparent transparent;
}

.timeline ul li:nth-child(even) div {
  left: -439px;
}

.timeline ul li:nth-child(even) div::before {
  right: -15px;
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent #5b6af4;
}

time {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
}
.modal .modal-content{ 
  background-color: #3e3f41;
  color: #fff;
  width: 400px;
}
.modal .modal-body{ 
  background-color: #313233;
  color: #fff;
  width: px;

}
.modal .modal-body ul li{ 
  color: #4193eb;
  font-size: 1.1em;

}
.modal .modal-body ul li p{ 
  color: #fff;

}



/* EFFECTS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.timeline ul li::after {
  transition: background 0.5s ease-in-out;
}

.timeline ul li.in-view::after {
  background: #5b6af4;
}

.timeline ul li div {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.timeline ul li:nth-child(odd) div {
  transform: translate3d(200px, 0, 0);
}

.timeline ul li:nth-child(even) div {
  transform: translate3d(-200px, 0, 0);
}

.timeline ul li.in-view div {
  transform: none;
  visibility: visible;
  opacity: 1;
}


/* GENERAL MEDIA QUERIES
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media screen and (max-width: 900px) {
  .timeline ul li div {
    width: 250px;
  }
  .timeline ul li:nth-child(even) div {
    left: -289px;
    /*250+45-6*/
  }
}

@media screen and (max-width: 600px) {
  .timeline ul li {
    margin-left: 20px;
  }
  .timeline ul li div {
    width: calc(100vw - 91px);
  }
  .timeline ul li:nth-child(even) div {
    left: 45px;
  }
  .timeline ul li:nth-child(even) div::before {
    left: -15px;
    border-width: 8px 16px 8px 0;
    border-color: transparent #5b6af4 transparent transparent;
  }
}


/* EXTRA/CLIP PATH STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.timeline-clippy ul li::after {
  width: 40px;
  height: 40px;
  border-radius: 0;
}

.timeline-rhombus ul li::after {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.timeline-rhombus ul li div::before {
  bottom: 12px;
}

.timeline-star ul li::after {
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.timeline-heptagon ul li::after {
  clip-path: polygon(
    50% 0%,
    90% 20%,
    100% 60%,
    75% 100%,
    25% 100%,
    0% 60%,
    10% 20%
  );
}

.timeline-infinite ul li::after {
  animation: scaleAnimation 2s infinite;
}

@keyframes scaleAnimation {
  0% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.25);
  }
  100% {
    transform: translateX(-50%) scale(1);
  }
}


/* FOOTER STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-footer {
  position: fixed;
  right: 0;
  bottom: 20px;
  display: flex;
  align-items: center;
  padding: 5px;
  color: black;
  background: rgba(255, 255, 255, 0.65);
}

.page-footer a {
  display: flex;
  margin-left: 4px;
}
  
  .title-pro-main{
    color: #e1e7ee;
    font-size: 2.2em;
  }
  
  .ul-pro{
    color: #4193eb;
    text-transform: capitalize;
    margin-bottom: 8px;
  }
  .text-li{
    font-weight: 700;
    color: #acc5df;
    margin-left: 5px;
  }
  .col-lg-12 div h4{
    color:#acc5df; 
    text-transform:capitalize; 
    font-size:1.1em;
    line-height: 160%;
  }
  .title-pro{
    color: #4193eb;
  }
  .text-pro{
    color: #acc5df;
    line-height: 150%;
  }
  .btn-exp{
    padding: 40px 0px;
    margin-bottom: 100px;
    width: 350px;
    font-size: 1.2em;
}
.btn-exp a{
  color: aliceblue;
}
.btn-exp a:hover{
  color: #0e1114;
  text-decoration: none;
}
.page-footer a img {
  padding: 5px ;
  width: 40px;
  height: 40px;
  
}
.page-footer a img:hover {
  padding: 5px ;
  width: 42px;
  height: 42px;
  -webkit-box-shadow: 0px 10px 13px -7px #0b0c0c, 7px 7px 13px 5px rgba(196,196,196,0); 
  box-shadow: 0px 10px 13px -7px #0e0f11, 7px 7px 13px 5px rgba(196,196,196,0);
  
}

.page-footer a {
  display: flex;
  margin-left: 6px;
}

.footer-copy h5{
  text-transform: capitalize;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: 1em;
}
