body {
  margin: 0;
  padding: 0;
  font-family: 'Cairo', sans-serif;
  font-weight: 300;
  background: #fff;
}

.container {
  max-width: 1080px;
  padding: 0;
  width: 100%;
  margin: 0 auto;
}

.menu-bar {
  font-size: 40px;
  text-align: center;
  height: 125px;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-logo {
  height: 100%;
  width: auto;
}

.construction-banner {
  font-weight: 600;
  height: 32px;
  font-size: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background: orange;
  text-transform: initial;
}

.feature {
  position: relative;
  margin: auto;
  margin-bottom: 20px;
  width: 1080px;
  height: 720px;
  max-width: 100%;
  max-height: 66.67vw;
}

.big-picture-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s;
}

.big-picture-background.active {
  opacity: 1;
  z-index: 1;
}

.description {
  width: 400px;
  height: 150px;
  position: absolute;
  left: 30px;
  bottom: 30px;
  background-color: rgba(34, 34, 34, 0.85);
  background-color: rgba(255, 255, 255, 0.75);
  z-index: 100;
  box-sizing: border-box;
  padding: 30px;
  font-weight: 500;
}

.description .slide-title {
  font-size: 24px;
}

.description .slide-subtitle {
  font-size: 16px;
}

.description .pagination {
  position: absolute;
  right: 40px;
  bottom: 30px;
}

.description .pagination span {
  float: left;
  display: block;
  margin: 0 0 0 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
  transition: background-color linear 200ms;
  text-indent: -99999px;
}

.description .pagination span:hover, .description .pagination span.cycle-pager-active {
    background-color: #000;
}

.grid {
  width: 100%;
}

.item {
  display: flex;
  flex-direction: column;
  width: calc(50% - 10px);
  height: 280px;
  margin-bottom: 20px;
  background-color: #ccc;
  float: left;
  padding: 30px;
  box-sizing: border-box;
}

.item-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 20px;
}

.item-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
}

.item-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-around;
  height: 100%;
}

.item-icon {
  margin-right: 8px;
}

.our-services {
  background-color: #ebebeb;
  margin-right: 20px;
}

.contact-us {
  background-color: #ccc;
}

.company-name-footer {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #2E378F;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1024px) {
  .item {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
