: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 {
  position: relative;
  background: var(--medium-blue);
}
.hero__banner .hero__banner--content {
  width: 100%;
  max-width: 100%;
}
.hero__banner .hero__banner--content .hero-swiper {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}
.hero__banner .hero__banner--content .hero-swiper::before {
  content: "";
  position: absolute;
  top: 200px;
  right: 0;
  width: 67.56vw;
  height: 100%;
  background: url(../images/home/hero-shape-2.svg);
  z-index: 2;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.8;
}
.hero__banner .hero__banner--content .hero-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 600px;
  max-height: calc(100vh - 180px);
}
.hero__banner .hero__banner--content .hero-swiper .swiper-slide:first-child .hero-content h1 {
  max-width: 734px;
}
.hero__banner .hero__banner--content .hero-swiper .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(14, 38, 56, 0.22);
  z-index: -1;
}
.hero__banner .hero__banner--content .hero-swiper .swiper-slide .hero-content {
  display: flex;
  align-items: center;
  height: 105vh;
}
.hero__banner .hero__banner--content .hero-swiper .swiper-slide .hero-content h2 {
  font-size: 48px;
  max-width: 658px;
  margin-bottom: 20px;
  color: var(--white);
}
.hero__banner .hero__banner--content .hero-swiper .swiper-slide .hero-content h4 {
  text-transform: uppercase;
  font-size: 18px;
  color: var(--white);
  position: relative;
  margin-bottom: 32px;
}
.hero__banner .hero__banner--content .hero-swiper .swiper-slide .hero-content a {
  color: var(--white);
  display: inline-block;
  position: relative;
}
.hero__banner .hero__banner--content .hero-swiper .swiper-slide .hero-content a::after {
  background: none repeat scroll 0 0 transparent;
  bottom: -2px;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  background: #fff;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
.hero__banner .hero__banner--content .hero-swiper .swiper-slide .hero-content a:hover::after {
  width: 100%;
}
.hero__banner .hero__banner--content .hero-swiper .container {
  position: relative;
}
.hero__banner .hero__banner--content .hero-swiper .container .hero-pagination {
  left: 20px;
  bottom: 52px;
  display: flex;
  align-items: center;
  justify-content: start;
}
.hero__banner .hero__banner--content .hero-swiper .container .hero-pagination .swiper-pagination-bullet {
  background: #fff;
  width: 8px;
  height: 8px;
  opacity: 0.7;
  margin: 0 6px;
}
.hero__banner .hero__banner--content .hero-swiper .container .hero-pagination .swiper-pagination-bullet-active {
  background: #fff;
  width: 14px;
  height: 14px;
  opacity: 1;
}
.hero__banner .hero__banner--content .thumbs-swiper {
  width: 100%;
  padding: 15px 0;
  height: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__banner .hero__banner--content .thumbs-swiper .swiper-wrapper {
  align-items: center;
}
.hero__banner .hero__banner--content .thumbs-swiper .swiper-slide {
  height: auto;
  overflow: hidden;
  cursor: pointer;
}
.hero__banner .hero__banner--content .thumbs-swiper .swiper-slide h4 {
  color: var(--white) 3;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}
.hero__banner .hero__banner--content .thumbs-swiper .swiper-slide p {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.3);
}
.hero__banner .hero__banner--content .thumbs-swiper .swiper-slide.swiper-slide-thumb-active h4, .hero__banner .hero__banner--content .thumbs-swiper .swiper-slide.swiper-slide-thumb-active p {
  color: #fff;
}

@media (max-width: 991px) {
  .hero__banner .hero__banner--content .hero-swiper .swiper-slide {
    height: 80vh;
  }
  .hero__banner .hero__banner--content .hero-swiper .swiper-slide .hero-content {
    height: 80vh;
  }
  .hero__banner .hero__banner--content .hero-swiper .swiper-slide .hero-content h2 {
    font-size: 32px;
    max-width: 60vw;
  }
  .hero__banner .hero__banner--content .hero-swiper .hero-pagination {
    left: 20px;
    bottom: 30px;
  }
  .hero__banner .hero__banner--content .thumbs-swiper {
    height: auto;
    padding: 20px 0;
  }
}
@media (max-width: 767px) {
  .hero__banner .hero__banner--content .hero-swiper .swiper-slide {
    height: 60vh;
  }
  .hero__banner .hero__banner--content .hero-swiper .swiper-slide .hero-content {
    height: 70vh;
  }
  .hero__banner .hero__banner--content .hero-swiper .swiper-slide .hero-content h2 {
    font-size: 28px;
    max-width: 80%;
  }
  .hero__banner .hero__banner--content .thumbs-swiper .swiper-slide p {
    font-size: 14px;
  }
  .hero__banner .hero__banner--content .thumbs-swiper .swiper-slide h4 {
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .hero__banner .hero__banner--content .hero-swiper .swiper-slide .hero-content h2 {
    max-width: 100%;
  }
}
.acr__about {
  padding: 91px 0;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.acr__about .acr__about-content {
  border-radius: 0 0 0 20px;
  background: var(--white);
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.acr__about .acr__about-content.acr__center .acr__about-list ul li .list-img {
  width: 100px;
  height: auto;
}
.acr__about .acr__about-content .acr__about-heading {
  text-align: center;
  padding: 33px 20px;
  background: var(--green);
  min-height: 155px;
}
.acr__about .acr__about-content .acr__about-heading .title {
  margin-bottom: 5px;
}
.acr__about .acr__about-content .acr__about-heading .title h3 {
  color: var(--white);
}
.acr__about .acr__about-content .acr__about-heading p {
  margin-bottom: 0;
  color: var(--white);
  font-weight: 300;
  max-width: 305px;
  margin: 0 auto;
}
.acr__about .acr__about-content .acr__about-list {
  flex: 1;
}
.acr__about .acr__about-content .acr__about-list ul {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.acr__about .acr__about-content .acr__about-list ul li {
  display: flex;
  align-items: center;
  -moz-column-gap: 11px;
       column-gap: 11px;
  padding: 15px;
  flex: 1;
}
.acr__about .acr__about-content .acr__about-list ul li:not(:last-child) {
  border-bottom: 1px solid #EAEAEA;
}
.acr__about .acr__about-content .acr__about-list ul li a {
  display: flex;
  align-items: center;
  -moz-column-gap: 11px;
       column-gap: 11px;
  width: 100%;
}
.acr__about .acr__about-content .acr__about-list ul li a:hover .list-content h6 {
  color: var(--primary-color);
}
.acr__about .acr__about-content .acr__about-list ul li .list-img {
  width: 73px;
  height: 73px;
  display: flex;
  justify-content: center;
}
.acr__about .acr__about-content .acr__about-list ul li .list-img svg {
  width: 100%;
  height: 100%;
}
.acr__about .acr__about-content .acr__about-list ul li .list-content {
  flex: 1;
}
.acr__about .acr__about-content .acr__about-list ul li .list-content h6 {
  max-width: 222px;
}
.acr__about .acr__about-content .acr__about-list ul li .list-content h6 b {
  font-size: 54px;
  display: block;
  line-height: 1;
}

@media (max-width: 1299px) {
  .acr__about .acr__about-content .acr__about-heading {
    min-height: 180px;
  }
}
@media (max-width: 1199px) {
  .acr__about .row {
    row-gap: 40px;
  }
  .acr__about .col-3 {
    max-width: 50%;
    flex: 0 0 50%;
  }
  .acr__about .acr__about-content .acr__about-heading {
    min-height: auto;
  }
  .acr__about .acr__about-content .acr__about-heading p {
    max-width: 100%;
  }
  .acr__about .acr__about-content .acr__about-list ul li .list-content h6 b {
    font-size: 46px;
  }
}
@media (max-width: 991px) {
  .acr__about {
    padding: 50px 0;
  }
  .acr__about .acr__about-content .acr__about-heading {
    padding: 20px;
  }
  .acr__about .acr__about-content .acr__about-list ul li {
    padding: 15px 15px 15px 8px;
  }
  .acr__about .acr__about-content .acr__about-list ul li .list-content h6 {
    max-width: 100%;
  }
  .acr__about .acr__about-content .acr__about-list ul li .list-content h6 b {
    font-size: 40px;
  }
}
@media (max-width: 600px) {
  .acr__about .col-3 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .acr__about .acr__about-content .acr__about-list ul li .list-content h6 b {
    font-size: 30px;
  }
}
.acr__featured-news {
  padding: 80px 0;
}
.acr__featured-news .row {
  margin-bottom: 25px;
}
.acr__featured-news .acr__featured-news-top .acr__news-content .acr__news-tab {
  margin-bottom: 19px;
}
.acr__featured-news .acr__featured-news-top .acr__news-content .acr__news-title {
  margin-bottom: 10px;
}
.acr__featured-news .acr__featured-news-top .acr__news-content .acr__news-desc {
  margin-bottom: 34px;
}
.acr__featured-news .col-25 {
  position: relative;
}
.acr__featured-news .col-25:not(:last-child)::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #eaeaea;
}
.acr__featured-news span {
  color: var(--footer-bg);
  display: block;
}
.acr__featured-news .acr__featured-news-heading {
  margin-bottom: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.acr__featured-news .acr__featured-news-heading h1 {
  font-size: 26px;
  font-weight: 700;
}
.acr__featured-news .acr__featured-news-heading a {
  color: var(--footer-bg);
  transition: all 0.6s;
  color: var(--medium-blue);
}
.acr__featured-news .acr__featured-news-heading a:hover {
  color: var--primary-color);
}
.acr__featured-news a:hover .acr__news-img img {
  transform: scale(1.1);
}
.acr__featured-news a:hover .acr__news-content .acr__news-title .title h3, .acr__featured-news a:hover .acr__news-content .acr__news-title .title h6 {
  color: var--primary-color);
}
.acr__featured-news .acr__news-img {
  position: relative;
  width: 100%;
  padding-top: 61.6%;
  overflow: hidden;
  -webkit-border-radius: 10px 10px 0 10px;
  display: block;
}
.acr__featured-news .acr__news-img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: all 0.6s;
}
.acr__featured-news .acr__news-content {
  padding: 20px 0;
  max-width: 488px;
}
.acr__featured-news .acr__news-content .acr__news-tab {
  font-size: 12px;
  border: 1px solid var(--green);
  color: var(--green);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 19px;
  background: none;
}
.acr__featured-news .acr__news-content .acr__news-title {
  margin-bottom: 40px;
}
.acr__featured-news .acr__news-content .acr__news-title .title h6 {
  font-size: 20px;
  max-width: 228px;
  font-weight: 600;
  transition: all 0.6s;
}
.acr__featured-news .acr__news-content .acr__news-desc {
  margin-bottom: 34px;
  color: var(--medium-blue);
}
.acr__featured-news .acr__news-content .acr__news-author {
  color: #76777B;
  font-size: 14px;
  font-weight: 700;
}
.acr__featured-news .acr__news-content .acr__news-date {
  color: #76777B;
  font-size: 14px;
}

@media (max-width: 1299px) {
  .acr__featured-news .acr__news-content {
    max-width: 100%;
  }
  .acr__featured-news .acr__news-content .acr__news-desc {
    margin-bottom: 30px;
  }
}
@media (max-width: 1199px) {
  .acr__featured-news .acr__featured-news-heading {
    margin-bottom: 30px;
  }
  .acr__featured-news .acr__news-content .acr__news-title {
    margin-bottom: 20px;
  }
  .acr__featured-news .acr__news-content .acr__news-title .title h4 {
    font-size: 18px;
  }
  .acr__featured-news .acr__news-content .acr__news-title .title h5 {
    max-width: 100%;
    font-size: 18px;
  }
  .acr__featured-news .acr__news-content .acr__news-desc {
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .acr__featured-news {
    padding: 50px 0;
  }
  .acr__featured-news .col-25 {
    max-width: 50%;
    flex: 0 0 50%;
  }
  .acr__featured-news .col-25:not(:last-child)::before {
    height: 90%;
  }
  .acr__featured-news .acr__featured-news-heading {
    margin-bottom: 30px;
  }
  .acr__featured-news .acr__featured-news-heading h1 {
    font-size: 24px;
  }
  .acr__featured-news .acr__news-content {
    padding: 10px 0;
    margin-bottom: 20px;
  }
  .acr__featured-news .acr__news-content .acr__news-title {
    max-width: 100%;
    margin-bottom: 10px;
  }
  .acr__featured-news .acr__news-content .acr__news-title .title h6 {
    font-size: 16px;
    max-width: 100%;
  }
  .acr__featured-news .acr__news-content .acr__news-desc {
    max-width: 100%;
    margin-bottom: 10px;
  }
  .acr__featured-news .acr__news-content .acr__news-tab {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .acr__featured-news {
    padding: 50px 0 50px;
  }
  .acr__featured-news .row {
    margin-bottom: 0;
  }
  .acr__featured-news .col-25 {
    max-width: 50%;
    flex: 0 0 50%;
  }
  .acr__featured-news .acr__featured-news-heading h1 {
    font-size: 22px;
  }
  .acr__featured-news .acr__featured-news-top .acr__news-content .acr__news-desc {
    margin-bottom: 15px;
  }
  .acr__featured-news .acr__featured-news-bottom .acr__news-content .acr__news-title {
    margin-bottom: 15px;
  }
  .acr__featured-news .acr__news-content {
    padding: 15px 0;
  }
  .acr__featured-news .acr__news-content .acr__news-title .title h6 {
    max-width: 100%;
  }
  .acr__featured-news .acr__news-content .acr__news-title .title h5 {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .acr__featured-news .col-25 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .acr__featured-news .acr__news-content .acr__news-title .title h4 {
    max-width: 100%;
  }
}
.acr__work {
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background: var(--green);
}
.acr__work .row {
  row-gap: 40px;
}
.acr__work .acr__work-markets {
  padding: 0 28px 40px 40px;
  padding-top: 44.1%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px 20px 0 20px;
  box-shadow: 0 22px 74px 0 rgba(0, 0, 0, 0.3);
}
.acr__work .acr__work-markets::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 25px;
  width: 22.43vw;
  height: 100%;
  background: url(../images/home/work-shape.png);
  z-index: 0;
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.5;
}
.acr__work .acr__work-markets .acr__work-inner {
  max-width: 34.13vw;
}
.acr__work .acr__work-markets .acr__work-inner .title {
  margin-bottom: 20px;
}
.acr__work .acr__work-markets .acr__work-inner .title h3 {
  color: var(--white);
}
.acr__work .acr__work-markets .acr__work-inner p {
  margin-bottom: 40px;
  color: var(--white);
  min-height: 120px;
}

@media (max-width: 991px) {
  .acr__work {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .acr__work .row {
    row-gap: 50px;
  }
  .acr__work .acr__work-markets {
    padding: 30px 20px;
    padding-top: 45.9%;
  }
  .acr__work .acr__work-markets::before {
    width: 50%;
    height: 50%;
  }
  .acr__work .acr__work-markets .acr__work-inner {
    max-width: 100%;
    position: static;
  }
  .acr__work .acr__work-markets .acr__work-inner p {
    min-height: auto;
    margin-bottom: 20px;
  }
}

/* home page banner carpusel hide labels */
@media (max-width: 767px) {
  .hero__banner .hero__banner--content .thumbs-swiper {
    display:block;
  }
}
@media (min-width: 768px) and (max-width:1199px){
  .hero__banner .hero__banner--content .thumbs-swiper {
    display:none;
  }
}
@media (min-width: 1200px){
  .hero__banner .hero__banner--content .thumbs-swiper {
    display:block;
  }
}



/*# sourceMappingURL=home.css.map */


