:root {
  --primary-color: #218A3D;
  --secondary-color: #00205B;
  --medium-blue: #142e42;
  --dark-blue: #0E2638;
  --blue: #004E7D;
  --green: #218A3D;
  --white: #ffffff;
  --black: #000000;
  --gray: #f8fafc;
  --transition: all 0.6s;
  --border: 1px solid var(--white);
  --border-radius: 10px 10px 0 10px;
}

.hero__banner {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 138px 0 16%;
  position: relative;
}
.hero__banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 0;
}
.hero__banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: var(--medium-blue);
  z-index: 1;
}
.hero__banner .acr__breadcrumbs {
  position: relative;
  padding-top: 20px;
  margin-bottom: 230px;
}
.hero__banner .acr__breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
}
.hero__banner .acr__breadcrumbs ul li {
  display: inline-flex;
  align-items: center;
}
.hero__banner .acr__breadcrumbs ul li:not(:last-child)::after {
  display: inline-block;
  content: "";
  margin: 0 0.2em;
  background: url("../images/download.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 14px;
  height: 14px;
  color: var(--medium-blue);
}
.hero__banner .acr__breadcrumbs ul li a {
  font-size: 14px;
  color: var(--medium-blue);
  font-weight: 400;
}
.hero__banner .acr__breadcrumbs ul li:not(:last-child) a {
  font-weight: 700;
}
.hero__banner .hero__banner--content {
  position: relative;
  z-index: 1;
}
.hero__banner .hero__banner--content h6 {
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  margin-bottom: 12px;
}
.hero__banner .hero__banner--content h1 {
  max-width: 882px;
  color: var(--white);
  margin-bottom: 17px;
}
.hero__banner .hero__banner--content h3 {
  color: var(--white);
  font-weight: 400;
  max-width: 719px;
}

@media (max-width: 1199px) {
  .hero__banner .hero__banner--content h3 {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .hero__banner {
    padding: 120px 0 16%;
  }
  .hero__banner::after {
    height: 50px;
  }
  .hero__banner .hero__banner--content h3 {
    font-size: 20px;
  }
  .hero__banner .hero__banner--content h1 {
    max-width: 100%;
  }
  .hero__banner .acr__breadcrumbs {
    margin-bottom: 60px;
  }
}
@media (max-width: 480px) {
  .hero__banner {
    padding: 120px 0 100px;
  }
  .hero__banner::after {
    height: 50px;
  }
}
.acr__what-we-do {
  padding: 100px 0 65px;
  background: #f2f3f5;
}
.acr__what-we-do .acr__what-we-do-content h3 {
  font-weight: 400;
  margin-bottom: 22px;
}
.acr__what-we-do .acr__what-we-do-content p {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .acr__what-we-do {
    padding: 50px 0 35px;
  }
  .acr__what-we-do .title {
    margin-bottom: 20px;
  }
  .acr__what-we-do .acr__what-we-do-content h3, .acr__what-we-do .acr__what-we-do-content p {
    margin-bottom: 15px;
  }
}
.acr__work {
  padding: 84px 0 60px;
  background-position: center 65%;
  background-repeat: no-repeat;
  background-size: cover;
}
.acr__work .col-6 {
  max-width: 42.9%;
  flex: 0 0 42.9%;
}
.acr__work .col-3 {
  max-width: 28.55%;
  flex: 0 0 28.55%;
}
.acr__work .acr__work-img {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.acr__work .acr__work-inner {
  text-align: center;
}
.acr__work .acr__work-inner:not(:last-child) {
  margin-bottom: 70px;
}
.acr__work .acr__work-inner .acr__work-img {
  margin-bottom: 11px;
}
.acr__work .acr__work-inner .acr__work-img img, .acr__work .acr__work-inner .acr__work-img svg {
  margin: 0 auto;
}
.acr__work .acr__work-inner .acr__work-content p {
  color: var(--white);
  min-height: 101px;
  font-weight: 300;
  margin: 0 auto;
}
.acr__work .col-3:first-child .acr__work-inner:nth-child(2) p {
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .acr__work {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .acr__work .col-3, .acr__work .col-6 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .acr__work .col-3:last-child .acr__work-inner, .acr__work .col-6:last-child .acr__work-inner {
    padding-top: 20px;
  }
  .acr__work .acr__work-inner {
    margin-bottom: 20px;
  }
  .acr__work .acr__work-inner:not(:last-child) {
    margin-bottom: 20px;
  }
  .acr__work .acr__work-inner .acr__work-img {
    margin-bottom: 15px;
  }
  .acr__work .acr__work-inner .acr__work-content p {
    min-height: auto;
    max-width: 50%;
  }
  .acr__work .col-3:first-child .acr__work-inner:nth-child(2) p {
    max-width: 50%;
  }
}
@media (max-width: 600px) {
  .acr__work .col-4 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .acr__work .acr__work-img {
    max-width: 80%;
    margin: 0 auto;
  }
  .acr__work .acr__work-inner .acr__work-img {
    width: 100%;
  }
  .acr__work .acr__work-inner .acr__work-content p {
    min-height: auto;
    max-width: 90%;
  }
  .acr__work .col-3:first-child .acr__work-inner:nth-child(2) p {
    max-width: 90%;
  }
}
.acr__our-team {
  padding: 98px 0 81px;
  background: var(--dark-blue);
  position: relative;
}
.acr__our-team::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/about/team-shape.png);
  z-index: 2;
  background-position: top left;
  background-repeat: repeat;
  background-size: 962px;
}
.acr__our-team span {
  display: block;
}
.acr__our-team .acr__our-team-top {
  margin-bottom: 45px;
  position: relative;
  z-index: 3;
}
.acr__our-team .acr__our-team-top .title {
  margin-bottom: 54px;
}
.acr__our-team .acr__our-team-top .title h3 {
  color: var(--white);
  font-weight: 600;
}
.acr__our-team .acr__our-team-top a {
  font-size: 22px;
  color: var(--white);
  font-weight: 400;
}
.acr__our-team .acr__our-team-top a.active-a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.acr__our-team .acr__our-team-top a:first-child {
  position: relative;
  padding-right: 20px;
  margin-right: 20px;
}
.acr__our-team .acr__our-team-top a:first-child::after {
  position: absolute;
  content: "";
  top: 55%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 90%;
  background: #E2E6E9;
}
.acr__our-team .acr__our-team-top .acr__our-team-content {
  max-width: 731px;
}
.acr__our-team .acr__our-team-top .acr__our-team-content p {
  color: var(--white);
  font-weight: 300;
}
.acr__our-team .acr__our-team-top .acr__our-team-content ~ .acr__our-team-content {
  display: none;
}
.acr__our-team .acr__our-team-bottom {
  position: relative;
  z-index: 3;
}
.acr__our-team .acr__our-team-bottom .row {
  row-gap: 28px;
}
.acr__our-team .acr__our-team-bottom .acr__our-team-details .acr__our-team-img {
  overflow: hidden;
  border-radius: 100%;
  width: 18.05vw;
  height: 18.05vw;
  -webkit-mask-image: -webkit-radial-gradient(#ffffff, #000000);
}
.acr__our-team .acr__our-team-bottom .acr__our-team-details .acr__our-team-img img {
  transition: all 0.6s;
  margin: 0 auto;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.acr__our-team .acr__our-team-bottom .acr__our-team-details .acr__our-team-desc {
  padding: 14px 0 0;
  text-align: center;
}
.acr__our-team .acr__our-team-bottom .acr__our-team-details .acr__our-team-desc .our-team-title {
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 8px;
  transition: all 0.6s;
  color: var(--white);
}
.acr__our-team .acr__our-team-bottom .acr__our-team-details .acr__our-team-desc .our-team-designation {
  max-width: 240px;
  margin: 0 auto;
  line-height: 1.4;
  font-weight: 300;
  color: var(--white);
}
.acr__our-team .acr__our-team-bottom .acr__our-team-details:hover .acr__our-team-img img {
  transform: scale(1.1);
}
.acr__our-team .acr__our-team-bottom .acr__our-team-details:hover .our-team-title {
  color: var(--primary-color);
}

@media (min-width: 1442px) {
  .acr__our-team .acr__our-team-bottom .acr__our-team-details .acr__our-team-img {
    width: 260px;
    height: 260px;
    margin: 0 auto;
  }
}
@media (max-width: 991px) {
  .acr__our-team {
    padding: 50px 0;
  }
  .acr__our-team::before {
    background-size: 600px;
    background-repeat: repeat;
  }
  .acr__our-team .col-25 {
    max-width: 33.33%;
    flex: 0 0 33.33%;
  }
  .acr__our-team .acr__our-team-top {
    margin-bottom: 20px;
  }
  .acr__our-team .acr__our-team-top .acr__our-team-content {
    max-width: 100%;
  }
  .acr__our-team .acr__our-team-top .title {
    margin-bottom: 25px;
  }
  .acr__our-team .acr__our-team-top a {
    display: inline-block;
    font-size: 18px;
    margin-bottom: 20px;
  }
  .acr__our-team .acr__our-team-bottom .acr__our-team-details .acr__our-team-img {
    width: 100%;
    height: auto;
  }
  .acr__our-team .acr__our-team-bottom .acr__our-team-details .acr__our-team-desc {
    padding: 10px 0 0;
  }
  .acr__our-team .acr__our-team-bottom .acr__our-team-details .acr__our-team-desc .our-team-title {
    margin-bottom: 5px;
  }
}
@media (max-width: 767px) {
  .acr__our-team .acr__our-team-top .title {
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .acr__our-team .col-25 {
    max-width: 50%;
    flex: 0 0 50%;
  }
}
@media (max-width: 400px) {
  .acr__our-team .col-25 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
.acr__contact-us {
  padding: 127px 0 133px;
}
.acr__contact-us .row:last-child {
  row-gap: 35px;
}
.acr__contact-us .acr__contact-us-content {
  border: 1px solid var(--green);
  border-radius: 10px;
  padding: 15px 20px;
  transition: all 0.6s;
  height: 100%;
}
.acr__contact-us .acr__contact-us-content .acr__contact-us-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  transition: all 0.6s;
  color: var(--green);
}
.acr__contact-us .acr__contact-us-content p {
  max-width: 499px;
  min-height: 101px;
  transition: all 0.6s;
}
.acr__contact-us .acr__contact-us-content p a {
  text-decoration: underline;
  font-weight: 400;
}
.acr__contact-us .acr__contact-us-content p a:hover {
  color: var(--medium-blue);
}
.acr__contact-us .acr__contact-us-content:hover {
  background: var(--green);
}
.acr__contact-us .acr__contact-us-content:hover .acr__contact-us-heading, .acr__contact-us .acr__contact-us-content:hover p {
  color: var(--white);
}
.acr__contact-us .acr__contact-us-content:hover .acr__contact-us-heading a, .acr__contact-us .acr__contact-us-content:hover p a {
  color: var(--white);
}

@media (max-width: 991px) {
  .acr__contact-us {
    padding: 50px 0;
  }
  .acr__contact-us .acr__contact-us-content p {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .acr__contact-us .acr__contact-us-content p {
    min-height: auto;
  }
}

/*# sourceMappingURL=about-us.css.map */
