* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

html {
  font-family: 'Inter', sans-serif;
  color: #191b1d;
  font-size: 16px;
}

body {
  margin: 5% 0;
}

img {
  width: 100%;
}

/*------- header styles ---------*/
header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  margin: 0 5%;
}

.site-logo {
  width: 130px;
}

.footer-logo {
  width: 95px;
  margin: 0 auto;
  padding: 80px 0 15px;
}

.header-cta {
  display: block;
}

.header-cta a {
  text-decoration: none;
  color: rgba(25, 27, 29, .6);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 20px;
  display: block;
  position: relative;
}

.header-cta a::before {
  content: "";
  display: block;
  position: absolute;
  left: -25px;
  z-index: -1;
  width: 50px;
  height: 50px;
  background: #dedede;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50px;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.header-cta a::after {
  content: attr(data-hover);
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  overflow: hidden;
  white-space: nowrap;
  color: #191b1d;
  -webkit-transition: width .4s ease;
  -o-transition: width .4s ease;
  transition: width .4s ease;
}

.header-cta a:hover::after {
  width: 100%;
}

.header-cta a:hover::before {
  width: calc(100% + 50px);
}

.site-header.light .header-cta a {
  color: hsla(0, 0%, 100%, .4)
}

.site-header.light .header-cta a::before {
  background: #2b2e31
}

.site-header.light .header-cta a::after {
  color: #fff
}
/*-----/ header styles /-----*/

.intro {
  margin: 5% 5%;
}
.intro h1 {
  font-size: 10vw;
  line-height: 1.1;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.06em;
  /* line-height: 100px; */
  margin-left: -7px;
  margin-top: 20px;
  margin-bottom: 69px;
  padding-right: 10px;
}

.intro h1 a, a::after {
  color: inherit;
}

.capabilities {
  display: flex;
  margin: 0 5%;
}

.capabilities h3 {
  font-size: 30px;
  line-height: 1.2;
  margin-left: -1px;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.capabilities hr {
  margin: 30px 0 40px;
  border-top: 1px solid #191b1d;
}

.left {
  flex: 15%;
}
.right {
  flex: 85%;
}

.capabilities-list {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 30px;
}
.capabilities-column {
  width: 250px;
}
.capabilities-column h5 {
  font-size: 18px;
  line-height: 35px;
  margin-left: -1px;
  font-weight: normal;
  /* margin-bottom: 1em; */
}

.contact-us {
  background: #101010;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 60px 0;
  gap: 20px;
}
.contact-us .column-left {
  width: 30%;
  align-self: center;
}
.contact-us .column-right{
  width: 50%;
}

.contact-us h1 {
  color: #ffffff !important;
  font-style: normal;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: -0.06em;
}
.contact-us h4 {
  color: rgba(255, 255, 255, 0.4);
  font-size: 24px;
  line-height: 35px;
  margin-left: -1px;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.contact-us h4 a {
  color: #ffffff;
  
}


@media only screen and (max-width: 890px) {
  .left {
    display: none;
  }

  .capabilities-column h5 {
    font-size: 2vw;
    line-height: 35px;
    margin-left: -1px;
    font-weight: normal;
  }

  .contact-us {
    flex-direction: column;
    align-items: center;
  }
  .contact-us h1 {
    font-size: 35px;
  }
  .contact-us h4 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 828px) {
  body {
    margin: 5% 0;
  }

  .intro h1 {
    margin-top: 50px;
    margin-left: 0px;
  }

  .capabilities h3 {
    font-size: 5vw;
  }

  .capabilities hr {
    display: none;
  }

  .capabilities-list {
    margin-top: 20px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 0px;
  }

  .capabilities-column {
    width: 100%;
    margin-left: 25px;
  }

  .capabilities-column h5 {
    font-size: 3.5vw;
    line-height: 1.5;
    margin-left: unset;
    font-weight: normal;
  }
  .contact-us h4 {
    line-height: 1.5;

  }
  .contact-us .column-left {
    width: unset;
  }

  .contact-us .column-right {
    width: 75%;
  }
  .footer-logo {
    width: 95px;
    margin: 0 auto;
    padding: 50px 0 15px;
  }
}