/* ================== Font ================== */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
/* ================== Root ================== */
:root {
  --white:#fff;
  --black:#000;
  --manrope:"Manrope", sans-serif;
  --black-shade:#303030;
}
body, html {
  overflow-x: hidden;
  font-family: var(--manrope);
}
a {
  text-decoration: none;
  font-family: var(--manrope);
}
/* ul{
  padding-inline-start: 0;
  list-style: none;
} */
/* ================== Scroll Bar ================== */
/* ::-webkit-scrollbar-track
{
    border-left: 1px solid #e0e0e0;
    margin: 0px;
}
::-webkit-scrollbar {
    width: 10px;
    background-color: #fff;
}
::-webkit-scrollbar-thumb {
    border-radius: 25px;
    background-color: #d2d3d5;
} */
/* ================== Button ================== */
.btn, .btn-primary, .btn-outline-primary{
  padding: 10px 18px;
  border-radius: 0px;
  font-size: 18px;
  font-weight: 800;
  font-family: var(--manrope);
}
.btn-primary{
  background-color: var(--black);
  color: var(--white);
  border-color: var(--white);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active {
  background-color: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline-primary{
  border-color: var(--white);
  background-color: transparent;
  color: var(--white);
}
.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active, .btn-outline-primary.active{
  background-color: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn i.fa-sort-down{
  transform: rotate(-45deg);
  font-size: 70%;
  color: inherit;
  transition: all .15s;
}
/* ================== Text ================== */

h1, h2, h3, h4, h5, h6{
  font-family: var(--manrope);
}
.heading-primary{
  font-size: 45px;
  font-weight: 700;
  color: var(--black-shade);
  margin-bottom: 2.5rem;
}
.small-heading{
  font-size: 21px;
  font-weight: 700;
  color: var(--black-shade);
  margin: 1rem 0;
}
.heading-secondary{
  font-size: 25px;
  font-weight: 700;
  color: var(--black-shade);
  margin: 1rem 0;
}
.heading-third{
  font-size: 30px;
  font-weight: 700;
  color: var(--black);
  margin: 1rem 0;
}
p{
  color: var(--black-shade);
  font-size: 21px;
  font-weight: 400;
  font-family: var(--manrope);
  /* line-height: 27px; */
  margin-bottom: 1.5rem;
}
.bg-gray{
    background-color: #f7f7f7;
}
/* ================== Navbar Section ================== */
.navbar-nav .nav-link,  
.navbar-nav .show>.nav-link,
.navbar-nav .dropdown-item,
.navbar-expand-md .navbar-nav .nav-link{
  font-size: 18px;
  font-weight: 800;
  color: var(--black-shade);
}
.navbar-nav .nav-link:hover, header .navbar .nav-link.text-blue,.footer-logo .navbar-brand img {
  color:#084887;
}
header .navbar .nav-link.text-red{
  color: #CC2936;
}
.dropdown-toggle::after{
  border: none;
}

/* ================== Banner Section ================== */
.banner {
  padding: 13rem 0;
  background: url("../images/img1.jpg") no-repeat;
  background-size: cover;
}
.banner h1{
  font-size: 64px;
  font-weight: 600;
  color: var(--white);
}
.banner p{
  font-size: 22px;
  color: var(--white);
  font-weight: 600;
}
/* ================== Section ================== */
.custom-section{
  padding:5rem 0
}
/* ================== About Section ================== */
.about-cnt img {
  height: 500px !important;
  object-fit: cover;
  margin-bottom: 2.5rem;
}
/* ================== Services Section ================== */
.service-card{
  margin-bottom: 25px;
}
.service-card-cnt {
  background: var(--black);
  border: 1px solid var(--black);
  padding: 1rem;
  transition: all .3s;
}
.service-card:hover .service-card-cnt{
  background: var(--white);
  border: 1px solid var(--black);
}
.service-card h3 {
  color: var(--white);
  margin-bottom: 0;
  transition: all .3s;
}
.service-card:hover h3{
  color: var(--black);
}
.service-card-img{
  transition: all .3s;
  overflow: hidden;
}
.service-card-img img{
  transition: all .3s;
}
.service-card:hover .service-card-img img{
  transform: scale(1.1);
}
.project-card{
  margin-bottom: 25px;
}
.project-card p{
  margin: 1rem 0 1.5rem;
}
/* ================== Contact Us Section ================== */
.contact-section{
  position: relative;
}
.contact-section .heading-primary{
  font-size: 36px;
}
.contact-section .left-img{
  position: absolute;
  top: 0;
  right: 0;
  width: 43%;
  height: 100%;
  overflow: hidden;
  background: url("../images/img1.jpg");
}
.contact-form {
  background: #fff;
  box-shadow: 0px 6px 9px #00000029;
  padding: 3rem;
  text-align: center;
}
 ::placeholder,  .form-control{
  font-size: 18px;
  color: var(--black-shade);
}
.contact-form ::placeholder {
  opacity: .5;
}
.form-control{
  border-radius: 0;
  border: 1.5px solid var(--black-shade);
}
.contact-form .btn{
  display: block;
}
.contact-details{
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.contact-details .icon-div {
  border-radius: 50%;
  border: 1px solid var(--black-shade);
  width: 28px !important;
  height: 28px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-details p,.contact-details a{
  font-size: 16px;
  color: var(--black);
  font-weight: 500;
  margin-bottom: 0;
}
.contact-details.phone a,.contact-details.email-blue a,.contact-details.email-red a{
  font-size:20px;
  font-weight: 700;
  line-height: 20px;
}
.contact-details.email-red a{
  color: #CC2936;
}
.contact-details.email-blue a{
  color: #084887;
}

/* ================== Footer Section ================== */
.footer{
  padding-bottom: 1rem;
}
.footer-logo {
  padding: 1rem 0;
  border-bottom: 2px solid #000;
  margin-bottom: 1rem;
}
.footer a, .footer p{
  color: var(--black);
  font-size: 12px !important;
  font-weight: 400 !important;
  margin-bottom: 0;
}
.footer p, .footer p a{
  font-weight: 800 !important;
  padding: 0 !important;
}
.footer .navbar-nav{
  flex-direction: row;
  align-items: center;
}
.footer a{
  padding: 0 1rem;
}
/* ================== Banner Inner Pages ================== */
.inner-page-banner h1{
  font-size: 62px;
}
.sector{
  margin: 2rem 0;
}
.form-check {
  display: flex;
  align-items: center;
}
.project-list label{
  font-size: 16px;
  color: var(--black);
  margin-left: 20px;
}
input[type="radio"] {
  width: 1.8em;
  height: 1.8rem;
  accent-color: var(--black);
}
.project-tags ul{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  margin-top: 1rem;
}
.project-tags ul li{
  border: 1px solid var(--black);
  text-align: center;
  margin-left: 5px;
  padding: 4px 8px;
  font-size: 14px;
  color: var(--black);
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.project-tags ul li i, .project-tags ul li iconify-icon{
  margin-right: 5px;
}
.contact-details.phone, .contact-details.email-blue, .contact-details.email-red {
  align-items: center;
}
.inner-page.about-section .about-cnt{
  background-color: var(--white);
  box-shadow: 0px 6px 9px #00000029;
}
.inner-page.about-section .about-cnt .inner-page-about-cnt{
  padding: 0 1.5rem 2rem;
}
.inner-page.about-section .inner-page-about-cnt .heading-secondary{
  font-size: 33px;
}
.inner-page.about-section .inner-page-about-cnt p{
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
}
.contact-card .heading-third {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-card .heading-third i{
  font-size: 80%;
}
.news-section .news-cnt{
  background-color: var(--white);
  box-shadow: 0px 6px 9px #00000029;
  padding: 2rem 2rem;
}
.news-section img{
  object-fit: cover;
}
.owl-nav .owl-prev, .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.owl-nav .owl-prev {
  left: -2%;
}
.owl-nav .owl-next {
  right: -2%;
}
.logo-slider img.big-quote {
    width: 153px;
    height: 153px;
    object-fit: contain;
}
.logo-slider .carousel-wrap {
    margin-bottom: 25px;
}
.contact-card img {
    height: 245px !important;
    object-fit: cover;
}
/* ================== Responsive Section ================== */
@media (min-width: 1200px) {
  .navbar-expand-xl .navbar-nav .nav-link {
      padding-right: 1rem;
      padding-left: 1rem;
  }
}
@media(min-width:992px){
/*   .about-cnt{
    transform: translateY(-60px);
  } */
/*   .about-cnt img {
    transform: translateY(-40px);
    margin-bottom: 0;
  } */
  .inner-gray-box img{
/*     position: absolute; */
    top: 0;
    left: 0;
/*     width: 45% !important; */
    height: 100% !important;
    object-fit: cover;
  }
  .news-section .news-cnt {
    transform: translateY(10%) translateX(10%);
}
.owl-nav .owl-prev {
  left: -4%;
}
.owl-nav .owl-next {
  right: -4%;
}
.map-section .col-12 {display: flex;gap: 25px;}
.map-section p {width: 50%;}
}

@media(max-width:991.5px){
  .custom-section {
    padding: 3rem 0;
}
.contact-section .left-img{
  display: none;
}
.btn, .btn-primary, .btn-outline-primary, 
.navbar-nav .nav-link,  
.navbar-nav .show>.nav-link,
.navbar-nav .dropdown-item,
.navbar-expand-md .navbar-nav .nav-link, p, .form-control{
  font-size: 16px !important;
}
p{
  line-height: 18px;
}
h1, .inner-page-banner h1{
  font-size: 40px;
}
.heading-primary{
  font-size: 28px;
  font-weight: 700;
  color: var(--black-shade);
  margin-bottom: 2.5rem;
}
.small-heading{
  font-size: 20px;
  font-weight: 700;
  color: var(--black-shade);
  margin: 1rem 0;
}
.heading-secondary, .heading-third{
  font-size: 22px;
}
.contact-section .heading-primary, .inner-page.about-section .inner-page-about-cnt .heading-secondary{
  font-size: 26px;
}
.banner p, .contact-details.phone p, .contact-details.email-blue p, .contact-details.email-red p, .contact-form ::placeholder{
  font-size: 18px;
}
.inner-gray-box img{
  margin-bottom: 1rem;
}
}


#timeline {
  position: relative;
  width: 100%;
  height: fit-content;
  margin: 0px auto;
  transition: all .3s;
}
#timeline .stamp {
  position: relative;
  float: left;
  text-align: center;
  padding: 10px;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  transition: all .3s;
}
.marker {
  display: block;
  width: 18px;
  height: 18px;
  margin: 0px auto 20px;
  border-radius: 50%;
  background: var(--white);
  z-index: 100;
  border: 4px solid #CC2936;
  /* -webkit-box-shadow: 2px 3px 6px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 2px 3px 6px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 3px 6px 0px rgba(0, 0, 0, 0.2); */
  cursor: pointer;
  transition: all .3s;
}
.present .marker{
  border-color: #084887;
}
.marker:hover {
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -o-transform: scale(1.5);
  transform: scale(1.5);
}

.happening {
  text-transform: uppercase;
  font-weight: 700;
  transition: all .3s;
}

.stamp:first-child:nth-last-child(1),
.stamp:first-child:nth-last-child(1) ~ .stamp {
  width: 100%;
}

.stamp:first-child:nth-last-child(2),
.stamp:first-child:nth-last-child(2) ~ .stamp {
  width: 50%;
}

.stamp:first-child:nth-last-child(3),
.stamp:first-child:nth-last-child(3) ~ .stamp {
  width: 33.3333333333%;
}

.stamp:first-child:nth-last-child(4),
.stamp:first-child:nth-last-child(4) ~ .stamp {
  width: 25%;
}

.stamp:first-child:nth-last-child(5),
.stamp:first-child:nth-last-child(5) ~ .stamp {
  width: 20%;
}

.stamp:first-child:nth-last-child(6),
.stamp:first-child:nth-last-child(6) ~ .stamp {
  width: 16.6666666667%;
}

.stamp:first-child:nth-last-child(7),
.stamp:first-child:nth-last-child(7) ~ .stamp {
  width: 14.2857142857%;
}

.stamp:first-child:nth-last-child(8),
.stamp:first-child:nth-last-child(8) ~ .stamp {
  width: 12.5%;
}

.stamp:first-child:nth-last-child(9),
.stamp:first-child:nth-last-child(9) ~ .stamp {
  width: 11.1111111111%;
}

.stamp:first-child:nth-last-child(10),
.stamp:first-child:nth-last-child(10) ~ .stamp {
  width: 10%;
}

.stamp:before {
  content: "";
  position: absolute;
  top: 15%;
  z-index: -1;
  height: 18px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  background: #D1D8E0;
}
.stamp:first-child .marker, .stamp:last-child .marker {
  background: var(--white);
}

.stamp:first-child:before {
  left: 0%;
  -webkit-transform: translateX(0) translateY(-50%);
  -moz-transform: translateX(0) translateY(-50%);
  -ms-transform: translateX(0) translateY(-50%);
  -o-transform: translateX(0) translateY(-50%);
  transform: translateX(0) translateY(-50%);
}

.stamp:last-child:before {
  left: 0%;
  -webkit-transform: translateX(0) translateY(-50%);
  -moz-transform: translateX(0) translateY(-50%);
  -ms-transform: translateX(0) translateY(-50%);
  -o-transform: translateX(0) translateY(-50%);
  transform: translateX(0) translateY(-50%);
}
div#timeline p {
  font-size: 14px;
  text-transform: none;
}
.date {
  background: #CC2936;
  width: fit-content;
  padding: 5px 15px;
  border-radius: 25px;
  color: var(--white);
  margin: auto;
  position: relative;
  transition: all .3s;
}
.present .date{
  background: #084887;
}
.date svg {
  width: 40px !important;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(180deg);
  bottom: -14px;
  z-index: -1;
}
.date svg path {
  fill: #cc2936;
  stroke: #cc2936;
}
.present .date svg path{
  fill: #084887;
  stroke: #084887;
}
.present .marker{
  border-color: #084887;
}

.happening {
  margin-bottom: 10px;
}
.happening p{
  color: #666;
  font-size: 16px;
  font-weight: 300;
  text-align: left;
}
@media(min-width:1200px){
  #timeline {
    display: flex;
    padding: 100px 0 0;
  }
  #timeline .stamp{
    overflow: initial !important;
  }
  #timeline .stamp .marker{
    opacity: 0;
    display: none;
  }
  #timeline .stamp:nth-child(even) .stamp-cnt{
    position: absolute;
    top: -65%;
  }
  #timeline .stamp:nth-child(odd) .stamp-cnt{
    margin-top: -35%;
  }
  #timeline .stamp .stamp-cnt{
    display: flex;
    flex-direction: column;
    height: 185px;
    overflow: hidden;
    justify-content: space-between;
  }
  /* #timeline .stamp:nth-child(even) .stamp-cnt .marker{
    order: 2;
    margin: 0 auto 0px !important;
  } */
  #timeline .stamp:nth-child(even) .stamp-cnt .date{
    order: 3;
    margin: auto auto 0 !important;
  }
  #timeline .stamp:nth-child(odd) .stamp-cnt .date{
    order: 0;
    margin: 0 auto auto !important;
  }
  #timeline .stamp:nth-child(even) .stamp-cnt .date svg{
    transform: rotate(0);
    bottom: 8px;
  }
  /* #timeline .stamp:nth-child(odd) .stamp-cnt .marker{
    margin: 20px auto 20px;
  } */
  .stamp:before {
    clip-path: polygon(98.5% 0%, 100% 50%, 98.5% 100%, 0% 100%, 1.5% 50%, 0% 0%);
  }
  #timeline .stamp:first-child::before {
    clip-path: polygon(98.5% 0%, 100% 50%, 98.5% 100%, 0% 100%, 0% 50%, 0% 0%);
  }
  #timeline .stamp:last-child::before {
    clip-path: polygon(100% 0%, 100% 50%, 100% 100%, 0% 100%, 1.5% 50%, 0% 0%);
  }
  .happening {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #timeline .stamp:nth-child(even) .happening{
    margin-bottom: 1.5rem;
  }
  #timeline .stamp:nth-child(odd) .happening {
    margin-bottom: 0;
    margin-top: 1.5rem;
  }
  #timeline .stamp:nth-child(even) .happening p,  #timeline .stamp:nth-child(odd) .happening p{
    margin: 0 !important;
  }

  .stamp::after {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--white);
    z-index: 100;
    border: 4px solid #CC2936;
    cursor: pointer;
    transition: all .3s;
    position: absolute;
    left: 50%;
  transform: translateX(-50%);
}
.present::after{
  border-color: #084887;
}
.stamp:nth-child(odd)::after {
  top: 9%;
}
.stamp:nth-child(even)::after {
  top: 9%;
  left: 52%;
}
#timeline .stamp:hover .stamp-cnt{
  background: #fbfbfb;
  overflow-y: auto !important;
  padding: 1rem;
  height: fit-content !important;
  position: absolute;
}
#timeline .stamp:hover .happening{
  display: block;
  -webkit-line-clamp: initial;
  -webkit-box-orient: initial;
  overflow: initial;
  text-overflow: initial;
  background: #fbfbfb;
  margin-top: 0;
}
#timeline .stamp:hover .marker, #timeline .stamp:hover .date, #timeline .stamp:hover::after{
  opacity: 0 !important;
  display: none;
}
#timeline .stamp:hover p{
  margin-top: 0 !important;
}
}
@media(min-width:1615px){
  #timeline .stamp:nth-child(even) .stamp-cnt{
    top: -65%;
  }
  #timeline .stamp:nth-child(odd) .stamp-cnt{
    margin-top: -25%;
  }
}
@media screen and (max-width: 1199.5px) {
  
  #timeline {
    max-width: 98%;
    overflow: visible;
    height: auto;
    margin: auto !important;
  }
  #timeline .stamp {
    float: none;
    overflow: visible;
    padding: 0;
    width: 100%;
    padding: 0px 1rem;
  }
  #timeline .stamp:before {
    top: 0;
    width: 2px;
    height: 100%;
  }
  #timeline .stamp:before {
    left: 50%;
    -webkit-transform: translate(-50%, 15%);
    -moz-transform: translate(-50%, 15%);
    -ms-transform: translate(-50%, 15%);
    -o-transform: translate(-50%, 15%);
    transform: translate(-50%, 15%);
  }
  #timeline .stamp:last-child:before {
    -webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    -o-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
  }
  #timeline .marker {
    margin: 0px auto;
    position: absolute;
    width: 12px;
    height: 12px;
    left: 50%;
    transform: translateX(-50%);
  }

  .date {
    /* white-space: nowrap;
    text-align: right;
    position: absolute;
    left: 50px; */
    margin-bottom: 1rem;
  }
  .happening {
    /* white-space: nowrap;
    text-align: right;
    position: absolute;
    left: 50px; */
    padding: 2rem 1rem;
    background: #F5F5F5;
    margin-top: 3rem;
  }
}