/*Font Face
========================================================================================*/
@import "normalize.css";
@import url('https://cdn.jsdelivr.net/npm/@mdi/font@7.2.96/css/materialdesignicons.min.css');
@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@100;200;300;400;500;600;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import 'header.css';
@import 'footer.css';

/* =Box Sizing 
========================================================================================*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --orange: #f18449;
  --orange-light: #f7d75e;
  --mid-orange: #f4966c;
  --darker-gray: #071330;
  --medium-gray: #151b25;
  --med-gray: #214358;
  --light-gray: #F2F6F9;
  --mid-gray: #E7EEF3;
  --lighest-gray: #aeb8c4;
  --light-blue: #a2c4e0;
  --dark-blue: #071330;
  --medium-blue: #202358;
  --stroke-gray: #d4d4d4;
  --green: #104962;
  --black: #000;
  --white: #fff;
  --text-color: #1F1F1F;
  --blue-light-bg: #EEF3F7;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
textarea,
select,
input[type="button"],
input[type="submit"],
button {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  margin-top: 0 !important;
}

body {
  font-size: 18px;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  line-height: 1.65;
  color: var(--med-gray);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Antonio", Arial, Helvetica, sans-serif;
}

a {
  color: var(--green);
  text-decoration: none;
}

.container-fluid {
  padding: 0 60px;
}

#header .top-container {
  padding: 10px 0;
  border-bottom: 1px solid var(--stroke-gray);
}

#header .top-container a {
  color: var(--text-color);
  font-size: 15px;
}

#header .top-container a .mdi {
  font-size: 18px;
  margin-right: 10px;
  vertical-align: middle;
}

#header .bottom-container {
  padding: 10px 0;
}

#logo {
  width: 120px;
  display: block;
}

#logo img {
  width: 100%;
  height: auto;
}

#menumain ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#menumain li:not(:first-child) {
  margin-left: 12px;
}

#menumain li a {
  display: block;
  color: var(--text-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 15px;
  padding: 6px;
  border-bottom: 2px solid transparent;
}

#menumain li a:hover {
  color: var(--orange);
}

#menumain li.current a {
  color: var(--orange);
  border-color: var(--orange);
}

#mainbanner .item {
  height: calc(100vh - 150px);
  position: relative;

}

#mainbanner .item .image-container,
#mainbanner .item .video-container {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

#mainbanner .item .video-container:before,
#mainbanner .item .image-container:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background: url(../images/banner-bg.png) 50% 50% no-repeat #F9FBFC; */
  background: rgba(231, 238, 243, 0.2);
  background-blend-mode: soft-light;
  background-size: cover;
  z-index: 100;
}

#mainbanner .item .video-container:after,
#mainbanner .item .image-container:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/banner-bg.png) 50% 50% no-repeat;
  opacity: 0.75;
}

#mainbanner .item .video-container video {
  width: 100%;
  height: auto;
  filter: grayscale(0.5);
}

#mainbanner .btn.btn-outline-secondary {
  border: 1px solid var(--text-color) !important;
}

#mainbanner .banner-content {
  width: 100%;
  height: calc(100% - 10px);
  position: absolute;
  left: 0;
  z-index: 101;
  top: 0;
}

#mainbanner .banner-info {
  width: 900px;
  text-align: center;
}

#mainbanner .banner-info h1 {
  font-size: 54px;

  font-weight: 700;
  color: var(--dark-blue);
  margin: 0 0 20px;
  transform: translateY(2000px);
  transition: all 1s ease;

}

#mainbanner .banner-info h1 strong {
  font-weight: 200;
  transform: translateY(2000px);
  transition: all 1.5s ease;
  transition-delay: 550ms;
}

#mainbanner .banner-info p {
  font-size: 20px;
  color: var(--text-color);
  margin: 0;
  transform: translateY(2000px);
  transition: all 2s ease;
  transition-delay: 750ms;
}

#mainbanner .banner-info ul {
  margin: 20px  0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  text-align: left;
  transform: translateY(2000px);
  transition: all 2s ease;
  transition-delay: 750ms;
}

#mainbanner .banner-info li {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 10px 0 30px;
  margin-top: 10px;
  position: relative;
}

#mainbanner .banner-info li .mdi {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--mid-orange);
}

#mainbanner .buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  transform: translateY(2000px);
  transition: all 2s ease;
  transition-delay: 1s;
}

#mainbanner .slick-active .banner-info h1,
#mainbanner .slick-active .banner-info h1 strong,
#mainbanner .slick-active .banner-info p,
#mainbanner .slick-active .buttons,
#mainbanner .slick-active .banner-info ul {
  transform: translateY(0);
}

#mainbanner .slick-dots {
  z-index: 110;
}

.btn {
  font-size: 16px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 0;
  text-transform: uppercase;
}

.btn.btn-secondary {
  background-color: var(--mid-orange);
  border-color: var(--white);
}

.btn.btn-secondary:hover {
  background-color: var(--orange);
}

.btn.btn-outline-secondary {
  border-color: var(--text-color) !important;
  color: var(--text-color);
}

.btn.btn-outline-success {
  border: 1px solid var(--green) !important;
  color: var(--green);
  border-radius: 6px;
}

.btn.btn-link {
  color: var(--green);
  padding: 0;
  text-decoration: none;
}

.btn.btn-outline-success:hover {
  background-color: var(--green);
  color: var(--white);
}

.btn.btn-outline-secondary:hover {
  border-color: var(--text-color);
  background-color: var(--text-color);
  color: var(--white);
}

.stats-section {
  padding: 60px 0 0;
}

.stats-cols {
  display: flex;
  flex-wrap: wrap;
}

.stats-cols .stats-col {
  flex: 1;
  height: 174px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: relative;
  color: var(--white);
}

.stats-cols .stats-col:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgb(25, 81, 158);
  background: linear-gradient(90deg, rgba(25, 81, 158, 1) 0%, rgba(29, 213, 230, 1) 100%);
  opacity: 0.7;
}

.stats-cols .stats-col:nth-child(2)::before,
.stats-cols .stats-col:nth-child(5)::before {
  background: rgb(67, 68, 195);
  background: linear-gradient(90deg, rgba(67, 68, 195, 1) 0%, rgba(204, 106, 196, 1) 100%);
}

.stats-cols .stats-col:nth-child(3)::before {
  background: rgb(242, 153, 74);
  background: linear-gradient(90deg, rgba(242, 153, 74, 1) 0%, rgba(242, 201, 76, 1) 100%);
}

.stats-cols .stats-info {
  position: relative;
  z-index: 10;
}


.stats-cols .stats-col h4 {
  font-size: 40px;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: -0.05rem;
  margin: 0;
}

.stats-cols .stats-col h6 {
  font-size: 18px;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  margin: 0;
}

.about-section {
  padding: 60px 0 0;
  background: url(../images/about-image-bg.png) 100% 0 no-repeat #fcfdfe;
  background-size: 70% auto;
}

.about-section .col-container {
  padding: 0 0 0 30px;
}

.about-section .section-info p {
  font-size: 18px;
  color: rgba(31, 31, 31, 0.7);
  line-height: 1.65;
}

.about-section .section-info p:last-child {
  margin: 0;
}

.about-section .btn.btn-outline-secondary {
  margin: 30px 0 0;
}

.about-section .image-col figure {
  margin: 0;
}

.about-section .image-col img {
  width: 100%;
  height: auto;
}

.offer-section {
  padding: 70px 0 10px;
  background-color: var(--white);
  position: relative;
  z-index: 10;
}

.offer-section .slider-section-offering,
.project-section .slider-section,
.our-value-section .slider-section-value {
  margin: 60px 0 0;
}

.offer-section .slick-list,
.project-section .slick-list,
.team-container .slick-list,
.how-work-section .slick-list {
  padding: 0 26px;
}

.offer-section .slick-track,
.project-section .slick-track {
  display: flex;
  flex-wrap: wrap;
}

.project-section {
  padding: 70px 0 0;
}

.offer-section .item,
.project-section .item,
.our-value-section .item {
  padding: 0 15px 60px;
  height: auto;
}

.our-value-section {
  padding: 0;
}

.our-value-section .section-title h3 {
  color: var(--white);
}

.our-value-section .item {
  padding: 0;
  height: 640px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
}

.our-value-section .item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.75;
  /* background: url(../images/banner-bg.png) 50% 50% no-repeat #F9FBFC; */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(1, 6, 16, 0.887194)), color-stop(93%, rgba(1, 6, 16, 0.350677)));
  background: linear-gradient(180deg, rgba(1, 6, 16, 0.887194) 0%, rgba(1, 6, 16, 0.350677) 93%);
  background-blend-mode: multiply;
  background-size: cover;
  z-index: 100;
}

.offer-section .col-container,
.project-section .col-container {
  text-align: center;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  position: relative;
  border: 1px solid #d4d4d4;
}

.our-value-section {
  position: relative;
}

.our-value-section .section-title {
  position: absolute;
  left: 0;
  top: 60px;
  width: 100%;
  z-index: 100;
}

.our-value-section .col-container {
  position: relative;
  width: 70%;
  margin: 0 auto;
  text-align: center;
  z-index: 100;
}

.our-value-section figure {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0px 20px 40px rgba(0, 0, 0, 0.15);
  display: block;
  text-indent: -999em;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-value-section figure img {
  width: 54px;
  height: auto;
}

.offer-section .slick-active .col-container {
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}


.offer-section .col-container {
  padding-bottom: 30px;
}

.team-container .col-container {
  height: 100%;
}


.project-section .col-container {
  background-color: #fff;
}

.offer-section .col-container .btn-outline-success {
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
}

.offer-section .col-container .icon,
.offer-section .col-container .date {
  width: 70px;
  height: 70px;
  background: url(../images/sprites.svg) -31px -28px no-repeat var(--green);
  position: absolute;
  right: 30px;
  display: block;
  text-indent: -999em;
  border-radius: 8px;
  bottom: -35px;
}

.offer-section .col-container figure {
  width: 70px;
  height: 70px;
  background: var(--green);
  position: absolute;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-indent: -999em;
  margin: 0;
  border-radius: 8px;
  display: none;
  bottom: -35px;
}

.offer-section .col-container figure img {
  width: 48px;
  height: auto;
}

.offer-section .col-container .icon.offering-icon-02 {
  background-position: -117px -28px;
}

.offer-section .col-container .icon.offering-icon-03 {
  background-position: -203px -28px;
}


.offer-section .image-container,
.project-section .image-container {
  background-color: var(--light-gray);
  position: relative;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}


.offer-section .image-container:before,
.project-section .image-container:before,
.our-value-section .image-container::before {
  content: "";
  display: block;
  padding-top: 60%;
}

.offer-section .col-container .section-info {
  padding: 70px 30px 30px;
}

.our-value-section .section-info {
  padding: 30px;
  color: var(--white);
}

.offer-section .col-container .section-info h4 {
  font-size: 20px;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  color: rgba(31, 31, 31, 0.7);
  font-weight: 700;
  margin: 0;
}

.our-value-section .section-info  p {
  color: rgba(255, 255, 255, 0.7);
}

.offer-section.offer-section.blog-section .col-container .section-info h4 {
  margin: 0 0 20px;
}

.how-work-section {
  padding-bottom: 60px;
  position: relative;
}

.how-work-section .item {
  padding: 0;
}


.how-work-section figure {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0px 20px 40px rgba(0, 0, 0, 0.15);
  text-indent: -999em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.how-work-section figure img {
  width: 64px;
  height: auto;
}

.how-work-section .icon.icon-01 {
  background-position: -24px -121px;
}

.how-work-section .icon.icon-02 {
  background-position: -162px -121px;
}

.how-work-section .icon.icon-03 {
  background-position: -300px -121px;
}

.how-work-section .icon.icon-04 {
  background-position: -22px -258px;
}


.how-work-section .col-container {
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  position: relative;
  background-color: var(--white);
  cursor: pointer;
  border: 1px solid #d4d4d4;
  transition: all 550ms linear;
}

.how-work-section .item:nth-child(even) .col-container {
  background-color: #F8FAFC;
}

.how-work-section .col-container:hover,
.how-work-section .item:nth-child(even) .col-container:hover {
  background-color: var(--green);
}

.how-work-section .col-container:hover .icon,
.how-work-section .item:nth-child(even) .col-container:hover .icon {
  background-color: var(--white);
}

.how-work-section .col-container:hover h4,
.how-work-section .col-container:hover p {
  color: var(--white)
}

.how-work-section .col-container:hover .icon.icon-01 {
  background-position: -24px -457px;
}

.how-work-section .col-container:hover .icon.icon-02 {
  background-position: -162px -457px;
}

.how-work-section .col-container:hover .icon.icon-03 {
  background-position: -300px -457px;
}

.how-work-section .col-container:hover .icon.icon-04 {
  background-position: -435px -457px;
}

.how-work-section .col-container h4 {
  font-size: 20px;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  color: rgba(31, 31, 31, 0.7);
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 0 15px;
}

.how-work-section .col-container p {
  font-size: 17px;
  color: rgba(31, 31, 31, 0.7);
  margin: 0;
}

.how-work-section .col-container .btn.btn-outline-success {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
}

.offer-section.blog-section {
  margin-top: 0;
}

.offer-section.blog-section .col-container,
.project-section .col-container {
  text-align: left;
  padding-bottom: 40px;
}

.project-section .col-container {
  padding-bottom: 60px;
}

.offer-section.blog-section .col-container .date {
  border-radius: 0;
  border: 1px solid var(--stroke-gray);
  background-color: var(--white);
  right: auto;
  left: 40px;
  font-size: 24px;
  font-weight: 700;
  color: var(--green);
  display: flex;
  line-height: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-indent: 0;
}

.offer-section.blog-section .col-container .date em {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--text-color);
  font-style: normal;
}

.offer-section.blog-section .col-container .buttons {
  right: 30px;
  bottom: 20px;
  position: absolute;
  left: 30px;
  display: flex;
  justify-content: flex-end;
}

.offer-section.blog-section .col-container .buttons:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--green);
  position: absolute;
}

.offer-section.blog-section .col-container .btn-link {
  position: relative;
  top: -20px;
  background-color: var(--white);
  padding: 5px 10px;
}

.project-section {
  padding: 57px 0 0;
  background-color: var(--light-gray);
}

.project-section.xs-section {
  background-color: var(--white);
  padding-bottom: 0;
}

.project-section .summary-box {
  padding: 30px 40px;
}

.project-section .summary-box h4,
.project-section .summary-box h5 {
  font-size: 24px;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 10px;
}

.project-section .summary-box h5 {
  color: var(--text-color);
  font-size: 18px;
}

.project-section .summary-box ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.project-section .summary-box li {
  display: flex;
  align-items: center;
  font-size: 18px;
  justify-content: space-between;
  border-top: 1px solid var(--stroke-gray);
  padding: 10px 0;
}

.project-section .summary-box li .title {
  font-weight: 600;
  color: rgba(31, 31, 31, 0.5);
}

.project-section .summary-box li .value {
  color: var(--text-color);
}

.project-section .notes {
  font-size: 14px;
  color: rgba(31, 31, 31, 0.5);
}

.project-section .bottom-section {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.project-section .bottom-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
  border-top: 1px solid var(--stroke-gray);
}

.project-section .bottom-section li .btn {
  padding: 5px 30px;
}

.project-section .bottom-section li .btn .mdi {
  font-size: 20px;
  line-height: 1;
  vertical-align: middle;
}

.team-container .item {
  padding: 0 15px;
}


.team-container .col-container {
  border: 1px solid var(--stroke-gray);
  perspective: 1000px;
  height: 360px;
}

.team-container .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.team-container .col-container:hover .card-inner {
  transform: rotateY(180deg);
}

.team-container  .card-front, .team-container .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  padding-left: 50%;
}

.team-container .card-front {
  color: black;
}

.team-container .card-back {
  color: white;
  background: #fff;
  transform: rotateY(180deg);
  padding-left: 110px;
}

.team-container .image-container {
  width: 50%;
  background-color: var(--light-gray);
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: 50% 0;
  background-repeat: no-repeat;
}

.team-container .card-back .image-container {
  width: 100px;
  height: 100px;
  top: 20px;
  left: 20px;
}

.team-container .content-box {
  padding: 40px 40px 0;
}

.team-container .social {
  padding: 0 40px;
}

.team-container .content-box .summary-box {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.team-container .card-back .content-box {
  padding: 20px 30px;
}

.team-container .card-back  .content-box .summary-box {
  height: 180px;
  overflow-y: auto;
}

.team-container .card-back .social {
  padding: 0 30px;
}

.team-container h4 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--green);
  text-transform: none;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
}

.team-container h5 {
  font-size: 18px;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  color: var(--black);
  margin: 0 0 10px;
}

.team-container .summary-box {
  font-size: 16px;
  color: rgba(31, 31, 31, 0.7);
}

.news-section {
  padding: 70px 0 0;
}

.latest-news-section {
  margin-top: 40px;
}

.latest-news-section .col {
  margin-top: 20px;
}

.latest-news-section .col-container {
  position: relative;
  padding-left: 160px;
  height: 100%;
  padding-bottom: 10px;
  min-height: 120px;
  border-bottom: 1px solid #d4d4d4;
}

.latest-news-section .content-box {
  position: relative;
  padding-left: 90px;
}

.latest-news-section .content-box h4 {
  color: rgba(31, 31, 31, 0.7);
  font-size: 20px;
  font-weight: 600;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
}

.latest-news-section .content-box p {
  font-size: 16px;
  color: rgba(31, 31, 31, 0.7);
}

.latest-news-section .content-box .date {
  width: 68px;
  position: absolute;
  text-align: center;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-size: 32px;
  color: var(--black);
  font-weight: 600;
  left: 0;
  top: 0;
  line-height: 1;
}

.latest-news-section .content-box .date em {
  display: block;
  font-style: normal;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--green);
  margin-top: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid var(--stroke-gray);
  border-bottom: 1px solid var(--stroke-gray);
}

.latest-news-section .col-container figure {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  width: 126px;
}

.latest-news-section .col-container figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 200/140;
}

.hidden {
  display: none;
}

body .slick-next {
  width: 15px;
  height: 21px;
  right: 0;
  background: url(../images/sprites.svg) -219px -270px no-repeat;
}

body .slick-prev {
  width: 15px;
  height: 21px;
  left: 0;
  z-index: 101;
  background: url(../images/sprites.svg) -197px -270px no-repeat;
}

body .slick-next:hover,
body .slick-next:focus {
  background: url(../images/sprites.svg) -219px -270px no-repeat;
}

body .slick-prev:hover,
body .slick-prev:focus {
  background: url(../images/sprites.svg) -197px -270px no-repeat;
}

.slick-next:before,
.slick-prev:before {
  display: none;
}

.faq-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.faq-section .row {
  margin-top: 60px;
}

.faq-section .accordion-body h4 {
  font-size: 16px;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin: 0 0 15px;
  line-height: 1.45;
  color: var(--text-color);
}

.faq-section .accordion-body ul li {
  margin: 10px 0 0;
}

.accordion-button {
  font-size: 18px;
  font-weight: 600;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  color: var(--text-color);
}

.accordion-body {
  font-size: 16px;
  color: rgba(31, 31, 31, 0.7);
  padding: 40px;
}

.accordion-button {
  border-radius: 0;
  background-color: var(--blue-light-bg);
  box-shadow: none !important;
  border: 0 !important;
  padding: 30px 80px 30px 40px;
  position: relative;
  border-radius: 0 !important;
}

.accordion-button::after {
  position: absolute;
  right: 40px;
}

.accordion-button:not(.collapsed) {
  background-color: var(--blue-light-bg);
  padding: 30px 80px 0 40px;
}

.accordion-item {
  border: 0;
  background-color: var(--blue-light-bg);
}

.accordion-item:not(:first-child) {
  margin-top: 12px;
}

.accordion-button::after {
  width: 20px;
  height: 20px;
  background: url(../images/sprites.svg) -95px -403px no-repeat;
}

.accordion-button:not(.collapsed):after {
  width: 20px;
  height: 20px;
  background: url(../images/sprites.svg) -95px -403px no-repeat;
  background-position: -125px -403px;
}

.form-control {
  height: 52px;
  border: 1px solid var(--stroke-gray);
  background-color: #fff;
  border-radius: 0;
  box-shadow: none;
  padding: 6px 20px;
}

.newsletter-col .form-container {
  position: relative;
}

.newsletter-col .form-container .form-control {
  padding-right: 60px;
}

.newsletter-col .form-container input[type="submit"] {
  width: 32px;
  height: 32px;
  font-size: 0;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/sprites.svg) -348px -399px no-repeat var(--green);
  border-radius: 50%;
  border: 0;
}

.newsletter-col ul {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.newsletter-col li {
  margin: 20px 0 0;
}

.newsletter-col li a {
  color: #7895A2;
  min-height: 24px;
  display: block;
  position: relative;
  padding-left: 40px;
}

.newsletter-col li a:before {
  width: 24px;
  height: 24px;
  background: url(../images/sprites.svg) 0 0 no-repeat;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.newsletter-col li.mail a:before {
  background-position: -285px -401px;
}

.newsletter-col li.phone a:before {
  width: 21px;
  height: 20px;
  background-position: -316px -403px;
}

.team-container .slick-track,
.how-work-section .slick-track {
  display: flex;
  flex-wrap: wrap;
}

.team-container .slick-track .item,
.how-work-section .slick-track .item {
  height: auto;
}

.contact-us-section {
  padding: 60px 0;
  background: url(../images/contact-bg.png) 100% 50% no-repeat;
  background-size: cover;
}

.contact-us-section .get-in-touch-section {
  width: 1100px;
  margin: 0 auto;
}

.contact-us-section .get-in-touch-section>.row {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.contact-us-section .col-container .info a {
 word-wrap: break-word;
  color: rgba(255, 255, 255, 0.7);
}

.contact-us-section .col-container .info a:hover {
  color: var(--white);
}

.contact-us-section .social ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}


.contact-us-section .social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid var(--white);
  border-radius: 4px;
}

.contact-us-section .social li a .mdi {
  margin-right: 0;
  color: var(--white);
}

.contact-us-section .social li a:hover {
  color: var(--white);
  border-color: var(--orange);
  background-color: var(--orange);
}

.contact-us-section .social li a:hover .mdi {
  color: var(--white);
}

.why-choose-section {
  padding-bottom: 80px;
}

.why-choose-section .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}


.why-choose-section .top-container {
  height: 350px;
  padding: 60px 0 0;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-color: var(--text-color);
  background-size: cover;
}

.why-choose-section .top-container .section-title h3 {
  color: var(--white);
}

.tabbing-section .row {
  min-height: 540px;
  margin-top: -180px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.tabbing-section .image-col {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  background-color: var(-med-gray);
  display: block;
  text-indent: -999em;
}

.tabbing-section .nav-col {
  background-color: #517281;
  display: flex;
  align-items: center;
}

.tabbing-section .nav-col .nav-tabs {
  border-bottom: 0;
  display: flex;
  flex: 0 0 100%;
  max-width: 100%;
  flex-wrap: wrap;
}

.tabbing-section .nav-item {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  padding: 0 20px;
}

.tabbing-section .nav-tabs .nav-link {
  display: flex;
  width: 100%;
  color: var(--white);
  border: 0;
  border-top: 1px solid var(--white);
  padding: 10px 10px 15px 10px;
  font-family: "Antonio", Arial, Helvetica, sans-serif;
  border-radius: 0;
  font-size: 20px;
  display: flex;
  text-align: left;
  flex-wrap: wrap;
  text-transform: uppercase;
}

.tabbing-section .nav-tabs .nav-link:after {
  width: 4px;
  height: 100%;
  background-color: var(--white);
  position: absolute;
  right: -12px;
  top: 0;
  content: "";
}

.tabbing-section .nav-tabs .nav-link.active:after {
  background-color: var(--green);
}

.tabbing-section .nav-tabs .nav-link figure {
  flex: 0 0 40px;
  max-width: 40px;
  height: 40px;
  background: #7895A2;
  border-radius: 50%;
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.tabbing-section .nav-tabs .nav-link figure img {
  width: 28px;
  height: auto;
}

.tabbing-section .nav-tabs .nav-link .title {
  flex: 0 0 calc(100% - 58px);
  max-width: calc(100% - 58px);
  margin-left: auto;
}

.tabbing-section .nav-tabs .nav-link .icon.icon-01 {
  background-position: -198px -311px;
}

.tabbing-section .nav-tabs .nav-link .icon.icon-02 {
  background-position: -253px -311px;
}

.tabbing-section .nav-tabs .nav-link .icon.icon-03 {
  background-position: -306px -311px;
}

.tabbing-section .nav-tabs .nav-link .icon.icon-04 {
  background-position: -356px -311px;
}

.tabbing-section .nav-tabs .nav-link .icon.icon-05 {
  background-position: -406px -311px;
}

.tabbing-section .nav-tabs .nav-link.active {
  background-color: transparent;
}

.tabbing-section .nav-tabs .nav-link:hover {
  border: 0;
  border-top: 1px solid var(--white);
  border-radius: 0;
}

.tabbing-section .content-col {
  background-color: var(--white);
}

.tabbing-section .content-col .tab-content {
  padding: 60px;
}

.tabbing-section .content-col .tab-content h4 {
  font-size: 30px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.tabbing-section .content-col .tab-content p {
  font-size: 18px;
  color: rgba(31, 31, 31, 0.7);
}

.tabbing-section .content-col .tab-content ul {
  margin: 0 -15px 30px;
  padding: 0 0 0 20px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.tabbing-section .content-col .tab-content li {
  padding: 0 15px 0 22px;
  flex: 0 0 50%;
  font-size: 18px;
  margin-top: 15px;
  max-width: 50%;
  position: relative;
}

.tabbing-section .content-col .tab-content li:before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--green);
  position: absolute;
  left: 0;
  top: 10px;
}

.testimionial-section {
  position: relative;
  padding-left: 50%;
  min-height: 580px;
  background-color: #fbfbfb;
  display: flex;
  align-items: center;
  justify-content: center;

  &:before {
    content: "";
    width: 50%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/testimonial-bg.png) 0 0 no-repeat;
    background-size: cover;
  }
}

.our-team-section {
  padding: 60px 0 0;
}

.ratings {
  margin-bottom: 30px;
}

.ratings i {
  color: #cecece;
  font-size: 22px;
}

.rating-color {
  color: var(--green) !important;
}

.testimonial-summary {
  font-size: 22px;
}

.testimonial-summary::before {
  content:"";
  display: block;
  width: 64px;
  height: 64px;
  background: url(../images/quote.png) 0 0 no-repeat;
  background-size: 64px auto;
  margin: 0 0 20px;
}

.testimonial-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
}

.testimonial-info h4,
.testimonial-info h5 {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
}

.testimonial-info h5 {
  color: var(--green);
}

.testimonial-info figure {
  margin: 0 10px 0 0;
  flex: 0 0 60px;
  max-width: 60px;
}

.testimonial-info .info {
  padding-left: 20px;
  flex: 0 0 calc(100% - 70px);
  max-width: calc(100% - 70px);
}

.testimionial-section .section-title h3::after {
  content: "";
  width: 50px;
  height: 2px;
  margin: 30px 0 0;
  background-color: #d9d9d9;
  display: block;
}

.map-col iframe {
  width: 100% !important;
  height: 100% !important;
}

.contact-us-section .container-fluid {
  padding: 0 180px;
}

.contact-us-section .left-col {
  padding: 40px;
  background-color: var(--white);
}

.contact-us-section .map-col {
  padding: 0;
}

.contact-us-section .middle-col {
  background-color: #132540;
  padding: 20px;
  color: var(--white);
}

.contact-us-section .middle-col h4 {
  font-size: 20px;
  margin: 0 0 15px;
}

.contact-us-section .col-container {
  margin-bottom: 20px;
}

.contact-us-section .col-container .info {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.45;
}

.form-container ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.form-container li {
  margin: 10px 0 0;
}

.form-container .form-control {
  height: 48px;
}

.form-container li textarea.form-control {
  height: 100px;
}

.our-team-section .social ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.our-team-section .social li a {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: 6px;
}

.our-team-section .social li a:hover {
  background-color: var(--green);
  color: var(--white);
}


#wrapper {
  padding-top: 105px;
}

.slider-section-offering .slick-list::before,
.how-work-slider .slick-list:before,
.slider-section .slick-list:before,
.team-container .slick-list::before {
  content: "";
  width: 15px;
  z-index: 100;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--white);
}

.slider-section-offering .slick-list::after,
.how-work-slider .slick-list:after,
.slider-section .slick-list:after,
.team-container .slick-list::after {
  content: "";
  width: 15px;
  z-index: 100;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-color: var(--white);
}


.how-work-slider .slick-list:before,
.how-work-slider .slick-list:after {
  width: 25px;
}

.slider-section-offering .slick-list {
  padding: 0 26px;
}

.project-section .slider-section .slick-list:before,
.project-section .slider-section .slick-list:after {
  background-color: var(--light-gray);
}

.our-value-section .slider-section-offering .slick-list::before,
.our-value-section .slider-section-offering .slick-list::after,
.slider-section-value .slick-list::before,
.slider-section-value .slick-list:after {
  background-color: #f8fafc;
}

.project-section.xs-section .slider-section .slick-list:before,
.project-section.xs-section .slider-section .slick-list:after {
  background-color: var(--white);
}

.about-us-section .section-title {
  margin: 0;
}

.about-us-section .section-title h3 {
  font-size: 80px;
}

.about-us-section .section-title em {
  font-style: normal;
  display: block;
  color: var(--mid-orange);
}

.about-us-section .top-container {
  padding: 60px 40px;
  background: url(../images/about-image-bg.png) 100% 0 no-repeat #fcfdfe;
  background-size: auto 100%;
}

.about-us-section .info-col {
  color: rgba(31, 31, 31, 0.7);
}

.about-us-section .bottom-container {
  padding: 0 40px 60px;
  margin-top: -60px;
}

.about-us-section .bottom-container .col-container {
  border: 1px solid var(--stroke-gray);
  border-radius: 8px;
  background-color: var(--white);
  height: 100%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
  padding-left: 42%;
}

.about-us-section .bottom-container .image-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  font-size: 0;
  height: 100%;
  background-color: var(--light-gray);
  text-indent: -999em;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.about-us-section .bottom-container .info h4 {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color);
  margin: 0 0 20px;
}

.about-us-section .bottom-container .info {
  padding: 30px 40px 20px 30px;
  color: rgba(31, 31, 31, 0.7);
  font-size: 17px;
}

.our-value-section h4 {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 15px;
}

.our-value-section p {
  font-size: 18px;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.stats-section {
  padding: 30px 0 0;
}

.invest-now {
  position: fixed;
  width: 60px;
  height: 170px;
  z-index: 1000;
  background-color: var(--text-color);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 8px 0 0 8px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.invest-now:hover {
  background-color: var(--mid-orange);
}

.invest-now em {
  display: block;
  transform: rotate(-90deg);
  white-space: nowrap;
  font-style: normal;
  transform-origin: right bottom;
  position: relative;
  top: 70px;
}



/*History Section
-----------------------*/
.history-section {
  padding: 80px 0;
  position: relative;
}

.history-section:before {
  content:"";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  background: url(../images/pattern-bg.jpg) 50% 0 no-repeat;
  background-size: 100% auto;
}

.history-section:after {
  content:"";
  position: absolute;
  left: 0;
  bottom: -80px;
  width: 100%;
  height: 50%;
  background: url(../images/wave-bg.png) 100% 50% no-repeat;
  background-size: contain;
  filter: brightness(0.5) saturate(0%);
  opacity: 0.5;
}


.history-section .section-title {
  text-align: center;
}

.history-section .container {
  position: relative;
  z-index: 100;
}

.history-list {
  position: relative;
  padding-bottom: 95px;
}

.history-list:before {
  content: "";
  width: 3px;
  height: 100%;
  background-color: #d4d4d4;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.history-list:after {
  bottom: 0;
}

.history-list .history-row {
  padding: 75px 0 0;
  position: relative;
}

.history-list .history-row:first-child::before,
.history-list .history-row:last-child::after {
  content: "";
  width: 23px;
  height: 23px;
  background-color: #d4d4d4;
  border-radius: 50%;
  left: 50%;
  top: 0;
  position: absolute;
  margin-left: -12px;
}

.history-list .history-row:last-child::after {
  top: auto;
  bottom: -110px;
}

.history-list  .hisotry-col {
  margin-left: auto;
  position: relative;
  padding-left: 70px;
}

.history-list .history-row:nth-child(even) .hisotry-col {
  margin-left: 0;
  padding-left: 15px;
  padding-right: 70px;
}

.history-list .hisotry-col .year {
  width: 72px;
  height: 72px;
  background-color: var(--green);
  border-radius: 50%;
  color: var(--white);
  margin: 0;
  position: absolute;
  left: -36px;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  box-shadow: 0 20px 30px rgba(0,0,0,0.2);
}

.history-list .hisotry-col figure img {
  width: 102px;
  border-radius: 50%;
  height: 102px;
}

.history-list .history-row:nth-child(even) .hisotry-col .year {
  left: 100%;
  background-color: var(--orange);
  margin-left: -36px;
}

.history-list .history-row:nth-child(even) .hisotry-col {
  text-align: right;
}

.history-list .hisotry-col .box-container {
  margin: 0;
  padding: 20px 30px;
  background-color: var(--white);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
  list-style: none;
  border: 1px solid #d4d4d4;
  border-radius: 8px;
}

.history-list .hisotry-col .box-container p:last-child {
  margin: 0;
}


.project-detail-box,
.loction-section {
  padding-bottom: 60px;
}

.loction-section .listing .col {
  margin-bottom: 30px;
}

.loction-section .listing .col-container {
  height: 100%;
  background-color: var(--white);
  border: 1px solid var(--stroke-gray);
  position: relative;
  border-radius: 6px;
  padding: 20px 30px 20px 50px;
}

.loction-section .listing .col-container .mdi {
  font-size: 24px;
  position: absolute;
  left: 15px;
  top: 15px;
}

.loction-section .listing .col-container h4 {
  font-size: 22px;
  margin: 0 0 15px;
}

.loction-section .listing .col-container h5 {
  font-size: 16px;
  color: var(--orange);
  margin: 0;
}

.project-detail-box .section-info {
  width: 800px;
  text-align: center;
  margin: 0 auto;
}

.project-detail-box .section-info h2 {
  font-size: 64px;
  margin: 0 0 20px;
  color: var(--orange);
}

.project-detail-box .section-info h3 {
  font-size: 36px;
  margin: 0 0 30px;
  color: var(--green);
}

.project-detail-box .section-info p {
  font-size: 22px;
  margin: 0;
  color: rgba(31, 31, 31, 0.7);
}

.loction-section figure, 
.project-detail-box figure {
  margin: 0 0 40px;
}

.loction-section figure img,
.project-detail-box figure img {
  width: 100%;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.15);
  border: 20px solid var(--white);
  height: auto;
}

.project-detail-box figure img {
  box-shadow: none;
}