:root {
  --primary-color: #002d3c;
  --secondary-color: #ff5242;
  --accent-color: #c1233b;
  --text-color-light: #fff;
  --text-color-dark: #002d3c;
  --background-color: #f1f6f7;
  --background-light-color: #fff;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.6rem;
}

ul {
  list-style: none;
}

ul li {
  list-style: none;
  text-transform: capitalize;
}

a {
  text-decoration: none;
  display: inline-block;
}

h1 {
  color: var(--primary-color);
  text-transform: capitalize;
}

h2,
h3,
h4,
h5 {
  font-family: poppins;
  text-transform: capitalize;
  color: var(--primary-color);
}

h2 {
  font-size: 4.4rem;
  line-height: 1;
  margin-bottom: 20px;
}

p {
  font-family: "nunito sans", sans-serif;
  color: #5c727d;
  font-size: 1.6rem;
  line-height: 1.8;
}

/* icon */

.icon-angle-right {
  font-size: 1.3rem;
  color: var(--primary-color);
}

/* block */
.block {
  width: 85%;
  margin: 0 auto;
}

/* top-ribbon */
.top-ribbon-container {
  background-color: var(--primary-color);
}

.top-ribbon {
  display: flex;
  /* justify-content: space-between; */
  color: var(--text-color-light);
}

.contact-info {
  display: flex;
  /* align-items: center; */
  flex: 1;
}

.contact-info i {
  color: var(--secondary-color);
  font-weight: 700;
}

.social-container {
  display: flex;
  align-items: center;
  gap: 25px;
}

.top-ribbon a {
  padding: 1rem 2rem;
  font-size: 1.4rem;
  font-family: "Nunito Sans";
  color: var(--text-color-light);
  text-decoration: none;
  font-weight: 700;
}

.social-container > a:last-of-type {
  background-color: var(--secondary-color);
}

.social-icon a {
  padding: 0.5rem;
}

.icon-facebook {
  transform: scale(1.1);
  display: inline-block;
}
.icon-twitter-bird {
  transform: scale(1);
  display: inline-block;
}
.icon-linkedin-rect {
  transform: scale(1.1);
  display: inline-block;
}
.icon-youtube-play {
  transform: scale(1.1);
  display: inline-block;
}

/* navbar */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.8rem;
  margin: 30px auto;
  flex-wrap: wrap;
}

.navbar img {
  max-height: 50px;
}

.list-items {
  list-style: none;
  display: flex;
  gap: 0 45px;
  text-transform: capitalize;
}

.list-item a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
   transition: color 0.4s ease; 
}

.list-item a:hover {
  color: var(--accent-color);
}

/* hero section */
.hero-container {
  background-color: var(--background-color);
}

#hero-section {
  display: flex;
  /* border: 1px solid #000; */
  justify-content: center;
  align-items: center;
  gap: 0 7rem;
}

 

.icon-home {
  color: var(--accent-color);
}

#hero-section > p:first-child {
  color: var(--primary-color);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
}

#hero-section h1 {
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 20px;
}

.line-text {
  border-left: 1px solid var(--accent-color);
}

.line-text p {
  padding-left: 30px;
  margin-bottom: 40px;
}

#hero-section .hero-btn {
  padding: 17px 40px;
  font-size: 1.6rem;
  background-color: var(--accent-color);
  font-family: "Poppins", sans-serif;
  color: var(--text-color-light);
  transition: background 0.4s ease; 
  cursor: pointer;
}


#hero-section .hero-btn:hover {
  background-color: var(--primary-color);
}

#hero-section img {
  max-width: 500px;
  padding: 3rem 0;
  /* max-height: 100%; */
}

.hero-sub-heading {
  margin-bottom: 2rem;
  font-weight: 500;
  color: var(--text-color-dark);
}

/* about section */
#about-section {
  display: flex;
  /* border: 1px solid #000; */
  justify-content: center;
  align-items: center;
  gap: 0 7rem;
}

.about-top img {
  max-width: 500px;
  padding: 3rem 0;
  /* max-height: 100%; */
}

#about-section h2 {
  font-size: 4.4rem;
  line-height: 1;
  margin-bottom: 20px;
}

.about-card {
  display: flex;
  padding: 2.5rem;
  border: 2px solid #f4faff;
  transition: all 0.3s ease 0s;
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.about-card:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 51%;
  bottom: 51%;
  left: 0;
  width: 4px;
  background: var(--accent-color);
  transition: top 0.3s ease-out, bottom 0.3s ease-out;
}

.about-card:hover:before {
  top: 0;
  bottom: 0;
}

.about-card:hover {
  box-shadow: 0 16px 32px 0 rgba(7, 28, 31, 0.1);
}

.about-card h3:hover {
  color: var(--accent-color);
}

.about-card1 {
  margin: 3rem 0;
}

.flaticon {
  filter: brightness(0) saturate(100%) invert(14%) sepia(93%) saturate(2646%)
    hue-rotate(331deg) brightness(95%) contrast(109%);
}

.about-card-icon {
  margin-right: 2rem;
}

/* project section */

.project-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 0 1rem;
}

.project-card-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.project-container {
  background-color: var(--background-color);
}

#project-section {
  padding: 10.4rem 0;
}

#project-section h2 {
  margin-bottom: 3rem;
}

/* .project-card-content> p:nth-of-type(2),
.project-card-content> p:nth-of-type(3){
  font-size: 1.3rem;
} */

.project-card-content p {
  font-size: 1.2rem;
}

.project-card-content h3 {
  color: var(--primary-color);
}

.project-card {
  /* border: 1px solid #cecece; */
  border: 1px solid #eaeaea;
  background-color: #fff;
  /* box-shadow: 0 16px 32px 0 rgba(7, 28, 31, 0.1); */
  /* border-radius: 5px; */
}

.project-card-content {
  text-align: center;
  padding: 1rem;
}

.project-card:hover {
  position: relative;
  box-shadow: 0 16px 32px 0 rgba(7, 28, 31, 0.1);
  box-shadow: 0 16px 32px 0 rgba(7, 28, 31, 0.1);
  z-index: 1000;

  transition: all 0.2s ease-out;
  box-shadow: 0 4px 8px rgb(38 38 38 / 0.2);
  top: -4px;
}

/* footer section  */
#footer {
  z-index: 1;
}

footer h3,
footer p,
footer a {
  color: var(--text-color-light);
}

footer h3 {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 2px;
  background-color: var(--accent-color);
}

footer .contact-info {
  flex-direction: column;
  margin-top: 2rem;
}
.footer-content-container {
  background-color: var(--primary-color);
  padding-top: 17rem;
}

.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 0 1rem;
  margin-bottom: 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
}

.footer-address {
  display: flex;
  justify-content: space-between;
  gap: 0 10rem;
}

.footer-logo {
  width: 5rem;
}

.footer-logo-container p {
  font-size: 2rem;
  font-weight: 700;
}

.quick-links a {
  text-decoration: none;
}
/* footer ribbon */

.footer-ribbon-container {
  background-color: var(--primary-color);
  border-top: 1px solid #e2e2e236;
}

.footer-ribbon {
  text-align: center;
}

.footer-ribbon p {
  padding: 1rem;
  text-transform: capitalize;
}

footer li {
  margin-top: 1rem;
}

footer ul {
  margin-top: 2rem;
}

.footer-social p {
  line-height: 1.5;
}

footer .social-container {
  margin: 6rem 0 5rem 0;
}

footer .social-icon a {
  padding: 0;
  margin: 0.5rem 2.5rem 0.5rem 0;
}

footer .contact-info a {
  margin-bottom: 1rem;
  display: flex;
  line-height: 1.5;
  gap: 0 0.5rem;
}
.footer-social {
  margin-top: -1.1rem;
}

/* .image-gallery {
  display: grid;
  grid-template-columns: repeat(2, 100px);
  grid-template-rows: repeat(2, 100px);
  gap: 10px 10px;
  margin: 2rem 0 3rem 0;
} */

.image-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gallery Styles */
.gallery_container {
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1300px) and (max-width: 2560px) {
  .popup-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}

@media (min-width: 700px) and (max-width: 1299px) {
  .popup-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

@media (min-width: 300px) and (max-width: 699px) {
  .popup-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
}

.gallery_item {
  margin-bottom: 5px;
  overflow: hidden;
}

.popup-gallery a {
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.popup-gallery a:hover {
  transform: scale(1.05);
  border-color: #fff;
}

/* .popup-gallery img {
  display: block;
  width: 100%;
  object-fit: cover;
  min-height: 250px;
  max-height: 250px;
} */

@media only screen and (max-width: 1000px) {
  .popup-gallery img {
    min-height: 150px;
    max-height: 150px;
  }
}

/* END  */

.singicon_btn_nlf {
  position: absolute;
  top: 44%;
  bottom: 56%;
  left: 44%;
  right: 56%;
  opacity: 0;
}

.singicon_btn_nlf svg {
  color: #fff;
}

.popup-gallery a:hover .singicon_btn_nlf {
  opacity: 1;
}

.hover_affect_nlf:hover img {
  opacity: 0.5;
}

.popup-gallery {
  display: grid;
  grid-template-columns: repeat(2, 100px);
  grid-template-rows: repeat(2, 100px);
  gap: 10px 10px;
  margin: 0 0 3rem 0;
}

.popup-gallery svg {
  width: 1.8rem;
  height: 1.8rem;
}

/* founder message */

.cta-block {
  width: 72%;
  margin: 0 auto;
}
#founder-msg {
  padding: 10.4rem 0 0 0;
  /* margin-bottom: 5rem; */
}

.msg-cards {
  display: flex;
  gap: 0 3rem;
}

.msg-cards p {
  line-height: 2.8rem;
}

.icon-quote-left {
  font-size: 2rem;
}

.msg-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.founder-img {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

#call-to-action {
  background-color: var(--accent-color);
  padding: 5rem 6rem;
  margin-bottom: -8.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 1.2rem;
}

.container-cta {
  position: relative;
  z-index: 5;
  margin-top: 10rem;
}

#call-to-action h2 {
  font-size: 3.6rem;
  color: var(--text-color-light);
}

#call-to-action p {
  color: var(--text-color-light);
}

#call-to-action a {
  padding: 1.7rem 4rem;
  background-color: var(--background-light-color);
  color: var(--primary-color);
  font-weight: 500;
  font-family: poppins;
  transition: background 0.4s ease;
}

#call-to-action a:hover{
  background-color: var(--primary-color);
  color: var(--background-color);
}

/* contact us form  */
.page-heading {
  padding: 5rem 0;
  background-color: var(--background-color);
  margin-bottom: 10.2rem;
}
.page-heading h1 {
  font-size: 3.3rem;
  margin-bottom: 2rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
}

.icon-home {
  margin-right: 0.5rem;
}

.icon-angle-right {
  margin: 0 0.7rem;
}

.breadcrumb {
  font-weight: 600;
  text-transform: capitalize;
}

.breadcrumb a {
  text-transform: capitalize;
  font-weight: 600;
  color: #5c727d;
}

.contact-us {
  display: flex;
}

.contact-us img {
  width: 8rem;
}

.contact-us h2 {
  font-size: 2.5rem;
}

/* .contact-us div{
  display: flex;
 } */

/* temp  section*/
#white {
  width: 100vw;
  height: 100vh;
}

/* who we are section*/
.who-we-container {
  /* background-color: var(--background-color); */
}

.who-we-section {
  padding: 8rem 0 6rem 0;
}

.who-we-content {
  display: flex;
  gap: 0 3rem;
}

.who-we-content > div {
  /* display: flex;
  flex-direction: column;
  justify-content: space-between; */
  flex: 1;
  padding: 3rem 0;
}

.who-we-section > h2,
.who-we-section > p {
  text-align: center;
}

.who-we-section > h2 {
  margin-bottom: 1rem;
}

.contact-us-content {
  display: flex;
  flex-direction: column;
}

.contact-us a {
  font-family: "nunito sans", sans-serif;
  color: #5c727d;
  font-size: 1.6rem;
  line-height: 1.7;
}

.contact-us .flaticon {
  filter: brightness(0) saturate(100%) invert(8%) sepia(98%) saturate(749%)
    hue-rotate(157deg) brightness(91%) contrast(90%);
  margin-bottom: 3.5rem;
}

.contact-us > div {
  padding: 3rem 5rem;
  border: 1px solid #ededed;
  margin: 0 1.5rem;
  text-align: center;
  flex: 1;
}

main .contact-us {
  margin: 0 auto;
  justify-content: center;
}

/* heading ribbon section */
.heading-ribbon-contanier {
  background-color: var(--background-color);
}

.heading-ribbon {
  padding: 5rem 0;
}

.who-we-sub {
  width: 70%;
  font-size: 1.3rem;
  margin: 0 auto;
  /* font-weight: 700; */
  /* color: var(--primary-color) */
}

/* our value section */
.our-value-container {
  background-color: var(--background-color);
}
.our-value {
  padding: 8rem 0 6rem 0;
}
.our-value h2 {
  text-align: center;
}

.our-value-cards {
  display: flex;
  /* gap: 0 3rem; */

  margin-top: 5rem;
}

.our-value img {
  margin-bottom: 2rem;
  width: 6rem;
  height: 6rem;
}

.our-value h3 {
  margin-bottom: 0.5rem;
}

.our-value-cards > div {
  border: 1px solid #dedede;
  border-right: none;
  padding: 2.5rem;
  flex: 1;
  border-collapse: collapse;
  vertical-align: middle;
  transition: all 0.3s ease 0s;
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.our-value-cards > div:hover {
  box-shadow: 0 16px 32px 0 rgba(7, 28, 31, 0.1);
}

.our-value-cards > div:last-child {
  border: 1px solid #dedede;
}

.our-value-cards p {
  font-size: 1.4rem;
}

.our-value-cards > div:hover:before {
  right: 0;
}
.our-value-cards > div:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 4px;
  background: var(--accent-color);
  transition: right 0.3s ease-out;
}

/* about page  */
.about-pg-container {
  display: flex;
  align-items: center;
  margin-bottom: 6rem;
}

.about-pg-container div {
  flex: 1;
}

.about-pg-container img {
  width: 100%;
  height: 100%;
}

.about-promoters {
  padding: 10.4rem 0;
}

.about-promoters h2 {
  margin-bottom: 20px;
}

.promoters-info {
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
  margin-top: 5rem;
}

.promoters-info img {
  width: 200px;
  height: auto;
  border-radius: 50%;
  box-shadow: 3.2px 6.4px 6.4px hsl(0deg 0% 0% / 0.4);
}

.promoter-img h3 {
  text-align: center;
}

.dark-bg {
  background-color: var(--background-color);
  margin-bottom: 8rem;
}

.promoters-info div {
  display: flex;
  gap: 0 2rem;
 
}

.promoter-img > span> div{
    flex-direction:column;
    align-items: center;
}
.promoters-info > div:first-child > .promoter-img{
    margin-top:-3.5rem;
}
.promoters-info > div:last-child > p{
    margin-top: 3rem;
}

/* .promoters-info > div > * {
    flex: 1;
} */

.line {
  position: relative;
  padding-bottom: 1rem;
  /* display: inline-block; */
}
.line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  border-radius: 10px;
  width: 10%;
  background-color: var(--accent-color);
}

.about-pg-container h2 {
  font-size: 4.2rem;
}

#about-page .page-heading {
  margin-bottom: 5.2rem;
}

.temp {
  margin-bottom: 2rem;
}

/* toggler functionality start */
#toggler-btn {
  display: none;
}
.toggler {
  display: none;
}

.toggler span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}
.navbar > a {
  flex: 1;
}

/* toggler functionality end */

/* timeline section */

.container {
  max-width: 1024px;
  width: 90%;
  margin: 0 auto;
}

.timeline-item {
  padding: 3em 2em 2em;
  position: relative;
  color: rgba(0, 0, 0, 0.7);
  border-left: 2px solid #d44945;
}

.timeline-item p {
  font-size: 1.6rem;
}

.timeline-item::before {
  content: attr(date-is);
  position: absolute;
  left: 2em;
  top: 1em;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
}

.timeline-item::after {
  width: 10px;
  height: 10px;
  display: block;
  top: 1em;
  position: absolute;
  left: -7px;
  /* border-radius: 10px; */
  content: "";
  border: 2px solid #d44945;
  background: white;
}

.timeline-item:last-child {
  border-left: 2px solid transparent;
  border-image: linear-gradient(
      to bottom,
      rgba(212, 73, 69, 1) 60%,
      rgba(0, 0, 0, 0)
    )
    1 100%;
  border-image-slice: 1;
}

.timeline-item > div {
  display: flex;
  gap: 0 2rem;
  align-items: center;
}
.timeline-image img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  box-shadow: 3.2px 6.4px 6.4px hsl(0deg 0% 0% / 0.4);
}
.timeline-content h2 {
  font-size: 3.3rem;
}

/* animation */
/* Base animation class */
.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

/* fadeInUp animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Animation class */
.animate__fadeInUp {
  animation-name: fadeInUp;
}

/*new*/
 
.founder-msg-block{
    width:70%;
    margin:0 auto;
}
.msg-card {
  display: flex;
  gap:0 4rem;
}
 
.msg-card img {
  width: 180px;
  height: 180px;
}
.founder-img {
  flex-direction: column;
  text-align: center;
}
.animate__fadeInUp {
  animation-name: fadeInUp;
}

.msg-card > div:last-child {
  display: flex;
  gap: 0 2rem;
  margin-top:-3rem;
}

 

@media screen and (max-width: 768px) {
  h2 {
    font-size: 3.3rem;
    line-height: 1.2;
  }

  p {
    font-size: 1.4rem;
    line-height: 1.6;
  }

  /* page title  */
  .page-heading {
    font-size: 1.4rem;
    padding: 4rem 0;
  }
  .page-heading h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  .breadcrumb a {
    font-size: 1.2rem;
  }
  .icon-angle-right {
    margin: 0;
  }

  /* ribbon */
  .top-ribbon a {
    padding: 1rem 0;
  }

  .social-container > a:last-of-type {
    padding: 1rem;
  }

  /* make UL always participate in layout (flex-direction only) */
  .list-items {
    display: flex; /* keep it flex so its children lay out in a column */
    flex-direction: column;
    overflow: hidden; /* clip its contents when closed */
    max-height: 0; /* start closed */
    opacity: 0; /* invisibile when closed */
    transition: max-height 0.3s ease, /* height “slide” */ opacity 0.4s ease; /* fade in */
  }

  /* when the checkbox is checked, open it */
  #toggler-btn:checked ~ nav .list-items {
    max-height: 500px; /* big enough to show all items */
    opacity: 1;
  }

  .toggler {
    display: block;
  }
  .list-items {
    flex-direction: column;
  }
  nav {
    width: 100%;
  }
  .list-item a {
    width: 100%;
    text-align: center;
    padding: 2rem 0;
  }
  #toggler-btn:checked ~ .toggler span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 5px);
  }
  #toggler-btn:checked ~ .toggler span:nth-child(2) {
    opacity: 0;
  }
  #toggler-btn:checked ~ .toggler span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -5px);
  }

  /* header */
  .contact-info a:last-child {
    display: none;
  }
  header .social-icon {
    display: none;
  }

  /* hero section */
  #hero-section {
    padding: 4rem 0 3rem 1px;
  }

  #hero-section h1 {
    font-size: 3.9rem;
  }
  .line-text p {
    padding-left: 20px;
    margin-bottom: 30px;
  }
  #hero-section .hero-btn {
    padding: 15px 25px;
    font-size: 1.4rem;
  }

  #hero-section,
  #about-section,
  .our-value-cards,
  .about-card {
    flex-direction: column;
  }
  .project-cards {
    grid-template-columns: repeat(1, 1fr);
  }

  #hero-section h1 br {
    display: none;
  }
  .about-top img,
  #hero-section img {
    max-width: 100%;
  }

  /* temp start  */
  .msg-cards {
    flex-direction: column;
  }
  /* temp end  */

  /* about section */
  #about-section {
    padding: 4rem 0 3rem 1px;
  }
  #about-section h2 {
    font-size: 3.3rem;
  }
  .about-card-icon {
    margin-bottom: 1rem;
  }

  .about-top {
    order: 2;
  }
  .about-card {
    padding-right: 1.8rem;
  }

  /* our value */
  .our-value-cards > div {
    border: 1px solid #dedede;
    border-bottom: none;
  }

  .about-bottom {
    order: 1;
  }

  /* how we are  */
  .who-we-sub {
    width: 100%;
  }
  .who-we-section > h2,
  .who-we-section > p {
    text-align: start;
  }
  .who-we-content {
    flex-direction: column;
  }
  .who-we-content > div {
    padding: 3rem 0 0 0;
  }

  /* feature product  */
  .project-cards {
    gap: 3rem 0;
  }
  #project-section {
    padding: 7.4rem 0;
  }
  #project-section h2 {
    font-size: 3rem;
  }

  /* management team */
  .founder-msg-block{
    width:85%;
  }
  .msg-card {
    display: flex;
    flex-direction: column;
  }
  .founder-name{
      text-align:start;
  }
  
  .founder-img {
   
    margin:2rem 0 1.3rem 0 !important;
    flex-direction:row;
  }
  .msg-cards {
    gap: 2.6rem 0;
  }
  .msg-card img{
      width:100px;
      height:100px
  }

  /* contact us page */
  .contact-us {
    flex-direction: column;
  }
  .contact-us > div {
    margin: 1rem 0;
  }
  .contact-us img {
    width: 7rem;
  }
  .contact-us h2 {
    font-size: 2.5rem;
  }
  .contact-us a {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .contact-us .flaticon {
    margin-bottom: 1.5rem;
  }
  .page-heading ~ .contact-us h2 {
    margin-bottom: 1rem;
  }

  /* about page  */
  .promoter-img > span{
    display: flex;
    align-items: center;
            gap: 0 1.5rem;
  }
  .promoters-info > div:first-child > .promoter-img{
      margin:0;
  }
  .promoter-img > span> div{
      align-items: start;
  }
  .about-pg-container {
    flex-direction: column;
  }
  .about-pg-img {
    order: 2;
  }
  .about-pg-content {
    order: 1;
  }
  .promoters-info > div {
    flex-direction: column;
    gap: 2rem 0;
  }
  .promoters-info div:last-child .promoter-img {
    order: 2;
    flex-direction:column;
    gap: 1.5rem 0;
  }
  .promoters-info div:last-child p {
    order: 1;
  }
  .promoter-img > span {
    flex: 1;
   
  }
  .promoters-info img {
    width: 100px;
    height: 100px;
  }
  .about-pg-container h2 {
    font-size: 3.2rem;
  }
  .about-promoters {
    padding: 7.4rem 0;
  }
  .promoter-img > span> div {
      display:flex;
  }
  .promoters-info > div:last-child > p{
    margin-top:  0;
}
  
  /* footer  */
  #call-to-action {
    flex-direction: column;
    text-align: center;
    padding: 5.5rem 0;
  }
  #call-to-action a {
    padding: 1rem 3rem;
  }
  #call-to-action h2 {
    font-size: 3rem;
    padding: 0 0.8rem;
    margin-bottom: 3rem;
  }
  #call-to-action p {
    display: none;
  }

  .footer-content {
    flex-direction: column;
  }
  .footer-address {
    flex-direction: column;
    gap: 6rem;
  }

  /* call to action */
  .cta-block {
    width: 100%;
  }

  /* footer */
  .footer-content-container {
    padding-top: 14rem;
  }
  footer h3 {
    font-size: 2.2rem;
  }
  .footer-logo-container p {
    font-family: poppins, sans-serif;
    font-size: 2.5rem;
  }
  .popup-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .popup-gallery img {
    min-height: 100%;
    max-height: 150px;
  }
  footer h3 {
    padding-bottom: 5px;
  }
  .footer-social {
    margin-top: 0;
  }
  .popup-gallery {
    margin-top: 2rem;
  }
  footer .social-container {
    margin: 3rem 0 5rem 0;
  }
  .footer-ribbon p {
    padding-bottom: 2.5 rem;
  }
  /* temp */
  header .icon-mail {
    display: none;
  }

  /* project or timeline  */
  .timeline-item > div {
    flex-direction: column;
  }
  .timeline-content h2 {
    font-size: 3rem;
    margin: 2rem 0;
    line-height: 1.1;
  }
}
