@media(max-width:1000px)
{
  .timeline{
    width:100%;
  }
}
@media only screen and (max-width: 767px) {
  .contact-form {
    width: 100% !important;
  }
  .contact-address {
    width: 100% !important;
    margin-left: 30px !important;
  }
  .header-banner.bg-image.contact-us {
    margin-bottom: 100px !important;
  }
  .contact-form h2 {
    font-size: 24px;
  }
  .contact-address h4 {
    font-size: 18px;
    margin-top: 12px;
  }
  .contact-address span {
    font-size: 16px;
  }
  .contact-form .freeform-input {
    padding: 10px;
  }
  .contact-form button {
    font-size: 14px;
    line-height: 18px;
    padding: 12px 26px;
  }
  .positions-row h3,
  .Benefits h3 {
  	font-size: 30px;
    line-height: 34px;
  }
  .Positions-Item {
  	padding: 20px 0 20px;
  }
  .Positions-List .Positions-Item span {
  	font-size: 14px;
    line-height: 26px;
  }
  .Positions-List .Positions-Item h5 {
  	font-size: 28px;
  	line-height: 32px;
  }
  .careers .banner-image {
	margin: 0 auto;
	display: block;
	float: unset;
  }
}

.home-awards {
  background: #F4F6F9;
}

.home-awards h3 {
  font-family: Nexa;
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  line-height: 113.1%;
  /* or 27px */

  letter-spacing: 0.03em;
}

.home-awards p {
  font-family: Nexa;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 175%;
  /* or 28px */

  letter-spacing: 0.03em;

  color: #525252;
}

/* Timeline refactor */
.timeline {
  position:relative;
  margin:50px auto;
  width:100%;
  box-sizing:border-box;
}

.timeline:before {
  content:'';
  position:absolute;
  left:50%;
  width:1px;
  height:100%;
  background:#54BBC4;
}
.timeline:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    left: 50%;
    background: #54BBC4;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(233,33,99,0.2);
    margin-left: -4px;
}

.timeline ul {
  display: flex;
  flex-direction: column;
}

.timeline ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;

  margin-bottom: 120px;
}

.timeline ul li div {
  width: 50%;
}

.timeline .time {
  position: relative;
  padding: 0 10%;
  margin: 0 auto;
}

.timeline .time h6 {
  font-family: Nexa;
  font-style: normal;
  font-weight: 200;
  font-size: 30px;
  line-height: 113.1%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.timeline .time h2 {
  font-family: Nexa;
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  line-height: 113.1%;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.timeline .time p {
  font-family: Nexa;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 175%;
  letter-spacing: 0.03em;
  color: #FFFFFF;
}

/* Lines for the content sections */
.timeline ul li div.time h6:after {
  position: absolute;
  display: block;
  content: "";
  width: 60px;
  height: 1px;
  color: #54BBC4;
  background: #54BBC4;
  top: 13px;
}

.timeline ul li:nth-child(odd) div.time h6:after {
  left: 0;
}

.timeline ul li:nth-child(even) div.time h6:after {
  right: 0;
}
/* endof Lines for the content sections */


/* Dots for the content sections */
.timeline ul li div.time h6:before {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  top: 13px;

  background: #54BBC4;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(233,33,99,0.2);
}

.timeline ul li:nth-child(odd) div.time h6:before {
  left: 0;
  transform: translate(60px, -50%);
}

.timeline ul li:nth-child(even) div.time h6:before {
  right: 0;
  transform: translate(-60px, -50%);
}

.timeline ul li:nth-child(odd) .content {
  margin-left: -1px;
}

.timeline ul li:nth-child(even) .content {
  margin-right: -1px;
}

.timeline ul li:nth-child(even) .content {
  order: 2;
}

.timeline ul li:nth-child(even) .time {
  order: 1;
  text-align: right;
}


@media (max-width: 768px) {
  .timeline ul li div.time h6:after,
  .timeline ul li div.time h6:before,
  .timeline:before,
  .timeline:after {
    display: none;
  }

  .timeline ul {
    margin-top: 50px;
  }

  .timeline ul li {
    display: flex;
    flex-direction: column;
  }

  .timeline ul li div {
    width: 100%;
  }

  .timeline .time {
    padding: 10%;
  }

  .timeline ul li:nth-child(odd) .content {
    margin-left: 0px;
  }
  .timeline ul li:nth-child(even) .content {
    margin-right: 0px;
    order: 1;
  }
  .timeline ul li:nth-child(even) .time {
    order: 2;
    text-align: left;
  }
}