/* Reset styles */
/* #DAFB94 */
/* @font-face { */
/* font-family: "Skyscapers"; */
/* src: url("//2ttf.com/webfont/6IF8GLA3aiM/webfont.ttf") format("truetype"); */
/* } */
/* sample using the font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
.headding1 {
  margin-top: 60px;
  font-family: "Exo", sans-serif;
  font-style: italic;
  font-size: 80px;
  /* font-weight: 100; */
  color: #1d1d1f;
}

.nav-links {
  z-index: 1;
}
/* a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
iframe,
div,
section {
  cursor: none;
} */
.headding2 {
  font-family: "Poppins", sans-serif;
  font-size: 70px;
  /* font-weight: 100; */
  color: #1d1d1f;
}
.MainHeadding {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
  padding: 20px 0px;
  font-family: "Montserrat", sans-serif;
  /* font-style: */
  font-weight: bold;
  /* font-weight: 900px !important; */
}
.sotialmedia-container {
  margin: 30px 30px 30px 0;
  border: 1px solid #1d1d1f;
  border-radius: 100px;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1d1d1f;
}
.sotialmedia-container2 {
  margin: 30px 30px 30px 0;
  /* border: 1px solid #1d1d1f; */
  border-radius: 100px;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f7;
}
.m-r {
  margin-right: 15px;
}
.sotialmedia {
  font-size: 30px;
  color: #fff;
  transition: 0.4s;
}
.sotialmedia2 {
  font-size: 30px;
  color: #1d1d1f;
  transition: 0.4s;
}
.sotialmedia:hover {
  color: #d7b46a;
  /* background-color: #1d1d1f; */
}
.sotialmedia2:hover {
  color: #d7b46a;
  /* background-color: #1d1d1f; */
}

/* mouse animation begin */
.home-hero__mouse-scroll-cont {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: #1d1d1f;
}

@media only screen and (max-width: 37.5em) {
  .home-hero__mouse-scroll-cont {
    display: none;
  }
}
/*  */
.nav_margin {
  padding-top: 8vh;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "Poppins", sans-serif; */
  /* cursor: none; */
  scroll-behavior: smooth;
}
body {
  background-color: #f5f5f7;
  color: #1d1d1f;
}
/* Navigation styles Begin*/

#navbar {
  position: fixed;
  transition: top 0.7s;
  z-index: 99;
  width: 90%;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 8vh;
  background-color: #f5f5f7;
  margin: 0 6vw;
}

.logo-img-nav {
  width: 180px;
  margin-top: 2vh;
}
.nav-links {
  display: flex;
  justify-content: space-around;
  width: 60%;
}

.nav-links li {
  list-style: none;
}
.mailto {
  list-style: none;
  color: #1d1d1f;
  text-decoration: none;
}
.nav-links a {
  color: #1d1d1f;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger .line {
  width: 30px;
  height: 3px;
  background: #1d1d1f;
  margin: 5px;
}

@media screen and (max-width: 768px) {
  .nav-links {
    width: 60%;
  }
}

@media screen and (max-width: 576px) {
  .hamburger {
    display: block;
    z-index: 9999;
  }

  .nav-links {
    position: absolute;
    right: -30px;
    height: 90vh;
    top: 0;
    background-color: #f5f5f7;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
    z-index: 999;
  }

  .nav-links li {
    opacity: 0;
  }

  .nav-active {
    transform: translateX(0%);
  }

  @keyframes navLinkFade {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0px);
    }
  }

  .toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .toggle .line2 {
    opacity: 0;
  }

  .toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}

.nav-button {
  color: white;
  text-decoration: none;
  font-size: 25px;
  border: none;
  background: none;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.nav-button::before {
  margin-left: auto;
}

.nav-button::after,
.nav-button::before {
  content: "";
  width: 0%;
  height: 3px;
  background: #d7b46a;
  display: block;
  transition: 0.5s;
}

.nav-button:hover::after,
.nav-button:hover::before {
  width: 100%;
}

/* Navbar Ends */

/*  */
/* Hero Begin */
.hero-container {
  display: flex;
  flex-direction: row;
}
.line {
  width: 50px;
  height: 4px;
  background-color: #d7b46a;
  margin: 0 auto 25px auto; /* Centers the line horizontally */
  border-radius: 10px;
}

::-moz-selection {
  /* Code for Firefox */
  color: #1d1d1f;
  background: #d7b46a;
}

::selection {
  color: #1d1d1f;
  background: #d7b46a;
}

img::selection {
  background: transparent;
}
.red {
  background-color: red;
}
.blue {
  background-color: blue;
}
.gold {
  color: #d7b46a;
}
.bold {
  font-weight: 800;
}
.grey {
  color: #7d7d7d;
}
.margin-down {
  margin-bottom: 1rem;
}
.half {
  width: 50vw;
  height: 92vh;
  /* overflow: hidden; */
}
.left {
  position: relative;
  overflow: hidden;
  bottom: 0;
  padding-left: 6vw;
}
.right {
  position: relative;
  overflow: hidden;
}

.hero-text {
  position: absolute;
  bottom: 30%;
}
/* Animation class */
.top-down {
  overflow: hidden;
  position: absolute;
  animation: top-down 10s ease infinite;
  height: 5rem;
}

@keyframes top-down {
  0% {
    top: 0;
  }
  50% {
    top: calc(100px + 0px);
  }
  100% {
    top: 0;
  }
}

/* SVG positions */
#svg1 {
  left: 10px;
  top: 100px;
}

#svg2 {
  left: 200px;
  top: 300px;
}

#svg3 {
  left: 400px;
  top: 150px;
}
.hero-img {
  bottom: 1rem;
  right: 0;
  width: 40vw;
  position: absolute;
  pointer-events: none;
  border-top-left-radius: 30%;
}
/* Hero End */
/*  */

/*  */
/* Google Map Begin */
#map-canvas {
  width: 100%;
  height: 500px;
}
/* Google Map End */
/*  */

/*  */

/*  */
/* Our Leaders Css Begin */
.projcard-container {
  margin: 50px 0;
}

.projcard-container,
.projcard-container * {
  box-sizing: border-box;
}

.projcard-container {
  margin-left: auto;
  margin-right: auto;
  width: 1000px;
}

.projcard {
  position: relative;
  width: 100%;
  height: 300px;
  margin-bottom: 40px;
  border-radius: 10px;
  background-color: #fff;
  border: 2px solid #ddd;
  font-size: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 21px -12px rgba(0, 0, 0, 0.66);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.projcard:hover {
  box-shadow: 0 34px 32px -33px rgba(0, 0, 0, 0.18);
  transform: translate(0px, -3px);
}

.projcard::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.07;
}

.projcard-innerbox {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.projcard-img {
  position: absolute;
  height: 300px;
  width: 400px;
  top: 0;
  left: 0;
  transition: transform 0.2s ease;
}

.projcard:nth-child(2n) .projcard-img {
  left: initial;
  right: 0;
}

.projcard:hover .projcard-img {
  transform: scale(1.05) rotate(1deg);
}

.projcard:hover .projcard-bar {
  width: 70px;
}

.projcard-textbox {
  position: absolute;
  top: 7%;
  bottom: 7%;
  left: 430px;
  width: calc(100% - 470px);
  font-size: 17px;
}

.projcard:nth-child(2n) .projcard-textbox {
  left: initial;
  right: 430px;
}

.projcard-textbox::before,
.projcard-textbox::after {
  content: "";
  position: absolute;
  display: block;
  background: #ff0000bb;
  background: #fff;
  top: -20%;
  left: -55px;
  height: 140%;
  width: 60px;
  transform: rotate(8deg);
}

.projcard:nth-child(2n) .projcard-textbox::before {
  display: none;
}

.projcard-textbox::after {
  display: none;
  left: initial;
  right: -55px;
}

.projcard:nth-child(2n) .projcard-textbox::after {
  display: block;
}

.projcard-textbox * {
  position: relative;
}

.projcard-title {
  font-family: "Voces", "Open Sans", arial, sans-serif;
  font-size: 24px;
}

.projcard-subtitle {
  font-family: "Voces", "Open Sans", arial, sans-serif;
  color: #888;
}

.projcard-bar {
  left: -2px;
  width: 50px;
  height: 5px;
  margin: 10px 0;
  border-radius: 5px;
  background-color: #424242;
  transition: width 0.2s ease;
}

.projcard-customcolor .projcard-bar {
  background-color: var(--projcard-color);
}

.projcard-description {
  z-index: 10;
  font-size: 15px;
  color: #424242;
  height: 125px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.projcard-tagbox button {
  bottom: 3%;
  font-size: 25px;
  cursor: default;
  user-select: none;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  border: none;
  outline: none;
  background: purple;
  box-shadow: 0 4px 21px -12px rgba(0, 0, 0, 0.66);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.projcard-tagbox a {
  text-decoration: none;
  color: #ddd;
}

/* Our Leaders Css End*/
/*  */

/*  */
/* Scroll Down Animation Begin */

@-webkit-keyframes ani-mouse {
  0% {
    opacity: 1;
    top: 29%;
  }
  15% {
    opacity: 1;
    top: 50%;
  }
  50% {
    opacity: 0;
    top: 50%;
  }
  100% {
    opacity: 0;
    top: 29%;
  }
}
@-moz-keyframes ani-mouse {
  0% {
    opacity: 1;
    top: 29%;
  }
  15% {
    opacity: 1;
    top: 50%;
  }
  50% {
    opacity: 0;
    top: 50%;
  }
  100% {
    opacity: 0;
    top: 29%;
  }
}
@keyframes ani-mouse {
  0% {
    opacity: 1;
    top: 29%;
  }
  15% {
    opacity: 1;
    top: 50%;
  }
  50% {
    opacity: 0;
    top: 50%;
  }
  100% {
    opacity: 0;
    top: 29%;
  }
}
.scroll-btn {
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4vh;
  text-align: center;
  flex-direction: column;
}
.scroll-btn > * {
  display: inline-block;
  line-height: 18px;
  font-size: 13px;
  font-weight: normal;
  color: #000000;
  color: #000000;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 2px;
}
.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *.active {
  color: #000000;
}
.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *:active,
.scroll-btn > *.active {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.scroll-btn .mouse {
  position: relative;
  display: block;
  width: 30px;
  height: 50px;
  margin: 0 auto 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 3px solid rgb(0, 0, 0);
  border-radius: 23px;
}
.scroll-btn .mouse > * {
  position: absolute;
  display: block;
  top: 29%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background: rgb(0, 0, 0);
  border-radius: 50%;
  -webkit-animation: ani-mouse 2.5s linear infinite;
  -moz-animation: ani-mouse 2.5s linear infinite;
  animation: ani-mouse 2.5s linear infinite;
}
.center {
  display: flex;
  flex-direction: column;
}

/* Scroll Down Animation End */
/* 
*/

/* 
*/
/* Blog Page Css Begin */

.blog-main-container {
  display: flex;
  flex-direction: column;
}
.blog-slider {
  width: 95%;
  position: relative;
  max-width: 80vw;
  margin: auto;
  background: #1d1d1f;
  box-shadow: 0px 14px 80px rgba(255, 255, 255, 0.2);
  padding: 25px;
  border-radius: 25px;
  /* height: 400px; */
  transition: all 0.3s;
  height: fit-content;
}
@media screen and (max-width: 768px) {
  .blog-slider {
    min-height: 500px;
    height: auto;
    margin: 180px auto;
  }
}
@media screen and (max-width: 1018px) {
  .right {
    display: none;
  }
  .half {
    width: 100%;
  }
}
@media screen and (max-width: 486px) {
  .headding1 {
    font-size: 15vw;
    margin-top: 20px;
  }
  .headding2 {
    font-size: 15vw;
  }
}

@media screen and (max-height: 500px) and (min-width: 992px) {
  .blog-slider {
    height: 350px;
  }
}
.blog-slider__item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .blog-slider__item {
    flex-direction: column;
  }

  .blog-slider__content {
    width: 75vw !important;
  }
}
.blog-slider__item.swiper-slide-active .blog-slider__img img {
  opacity: 1;
  transition-delay: 0.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > * {
  opacity: 1;
  transform: none;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(1) {
  transition-delay: 0.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(2) {
  transition-delay: 0.4s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(3) {
  transition-delay: 0.5s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(4) {
  transition-delay: 0.6s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(5) {
  transition-delay: 0.7s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(6) {
  transition-delay: 0.8s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(7) {
  transition-delay: 0.9s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(8) {
  transition-delay: 1s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(9) {
  transition-delay: 1.1s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(10) {
  transition-delay: 1.2s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(11) {
  transition-delay: 1.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(12) {
  transition-delay: 1.4s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(13) {
  transition-delay: 1.5s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(14) {
  transition-delay: 1.6s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(15) {
  transition-delay: 1.7s;
}
.blog-slider__img {
  width: 300px;
  flex-shrink: 0;
  height: 300px;
  border-radius: 20px;
  transform: translateX(-80px);
  overflow: hidden;
}
.blog-slider__img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  opacity: 0.8;
}
.blog-slider__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  border-radius: 20px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .blog-slider__img {
    transform: translateY(-50%);
    width: 90%;
  }
}
@media screen and (max-width: 576px) {
  .blog-slider__img {
    width: 95%;
  }
}
@media screen and (max-height: 500px) and (min-width: 992px) {
  .blog-slider__img {
    height: 270px;
  }
}
.blog-slider__content {
  padding-right: 25px;
  width: 50vw;
}
@media screen and (max-width: 768px) {
  .blog-slider__content {
    margin-top: -80px;
    text-align: center;
    padding: 0 30px;
  }
}
@media screen and (max-width: 576px) {
  .blog-slider__content {
    padding: 0;
  }
}
.blog-slider__content > * {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.4s;
}
.blog-slider__code {
  color: #ffffff;
  margin-bottom: 15px;
  display: block;
  font-weight: 500;
}
.blog-slider__title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}
.blog-slider__text {
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.5em;
}
.blog-slider__button {
  display: inline-flex;
  padding: 15px 35px;
  border-radius: 50px;
  color: #1d1d1f;
  background-color: #f5f5f7;
  text-decoration: none;
  font-weight: 500;
  justify-content: center;
  text-align: center;
  letter-spacing: 1px;
}
@media screen and (max-width: 576px) {
  .blog-slider__button {
    width: 100%;
  }
}
.blog-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.blog-slider .swiper-pagination-custom,
.blog-slider .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}
.blog-slider__pagination {
  position: absolute;
  z-index: 21;
  right: 20px;
  width: 11px !important;
  text-align: center;
  left: auto !important;
  top: 50%;
  bottom: auto !important;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .blog-slider__pagination {
    transform: translateX(-50%);
    left: 50% !important;
    top: 205px;
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 8px 0;
}
@media screen and (max-width: 768px) {
  .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
  }
}
.blog-slider__pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  display: block;
  border-radius: 10px;
  background: #f7f7f7;
  opacity: 0.2;
  transition: all 0.3s;
}
.blog-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #7d7d7d;
  height: 30px;
}
@media screen and (max-width: 768px) {
  .blog-slider__pagination .swiper-pagination-bullet-active {
    height: 11px;
    width: 30px;
  }
}

/* Blog Page Css End */

/* 
 */
/* second section begin */
.second-section2 {
  padding-top: 10vh;
  /* height: 105vh; */
  background-color: #f7f8fa;
}
.second-section {
  /* padding-top: 10vh; */
  /* height: 105vh; */
  background-color: #f7f8fa;
}

/* second section begin */
/* 
 */

.second-section-header {
  margin: 0 15vw 8vh 15vw;
  text-align: center;
  /* font-size: 1rem; */
}
.header2 {
  margin-top: 5vh;
  padding-bottom: 3vh;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3vh;
}

.card {
  position: relative;
  width: 300px;
  height: 280px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease-in-out;
  margin: 10px;
}
.card2 {
  position: relative;
  width: 300px;
  height: 330px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease-in-out;
  margin: 10px;
}

.pink-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #d7b46a;
  transition: height 0.3s ease-in-out;
}

.card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card:hover .pink-line {
  height: 100%;
}
.card2:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card2:hover .pink-line {
  height: 100%;
}

.card-content {
  position: relative;
  padding: 20px;
  text-align: center;
  color: #333;
  z-index: 5;
  font-family: "Poppins", sans-serif;
  p {
    margin-top: 30px;
  }
}

.card:hover .card-content {
  color: #000;
}
/* second section end */
/* 
  */

/* 
*/
/* Contact Section Begin */

.contact-section {
  margin: 0 6vw;
}

.margin-down {
  margin-bottom: 4vh;
}

.right-border {
  border-right: 1px solid rgb(159, 159, 159);
}

.contact-container {
  display: flex;
  /* padding: 0 6vw; */
  flex-direction: row;
  margin-top: 5vh;
  margin-bottom: 5vh;
}
.contact-sotial {
  display: flex;
  flex-direction: row;
}
.contact-div {
  width: 33.33%;
  padding: 0 35px;
}

@media screen and (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  .contact-div {
    width: 100%;
  }

  .right-border {
    border-right: 0px;
  }
}

.mail-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  gap: 15px;
  background-color: #181717;
  outline: 3px #181717 solid;
  outline-offset: -3px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: 400ms;
  padding-left: 45px;
  padding-right: 45px;
}

.mail-button .mail-button-text {
  color: white;
  font-weight: 700;
  font-size: 1.3em;
  transition: 400ms;
}

.mail-button svg path {
  transition: 400ms;
}

.mail-button:hover {
  background-color: transparent;
}

.mail-button:hover .mail-button-text {
  color: #181717;
}

.mail-button:hover svg path {
  fill: #181717;
}
/* Contact Section End */
/* 
*/

/* 
*/
/* Projects Section start */

.projects-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.projects-card {
  position: relative;
  width: 300px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  margin: 20px; /* Increased margin */
}

.projects-card:hover {
  transform: rotate(-5deg) scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.projects-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leadership-margin {
  margin-top: 10vh;
}

.card__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  background-color: #fff;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.projects-card:hover .card__content {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 1;
}

.card__title {
  margin: 0;
  font-size: 24px;
  color: #333;
  font-weight: 700;
}

.card__description {
  margin: 10px 0 0;
  font-size: 14px;
  color: #777;
  line-height: 1.4;
}

.projects-card:hover img {
  scale: 0;
  transform: rotate(-45deg);
}

.text-center {
  text-align: center;
}

.leadership-container {
  display: flex;
  flex-direction: column;
}
.flex-row {
  width: 100%;
  justify-content: center;
  display: flex;
  flex-direction: row;
}
@media (max-width: 768px) {
  .projects-card {
    width: 100%;
    /* max-width: 300px; */
    width: fit-content;
    margin: 20px; /* Increased margin */
  }

  .flex-row {
    flex-direction: column;
    align-items: center;
  }

  .MainHeadding {
    font-size: 40px;
  }

  .cursor {
    display: none;
  }
  .cursor2 {
    display: none;
  }
}
/* Projects Section start */
/* 
 */

/* 
  */
/* Footer Section begin */
.custom-shape-divider-top-1717058555 {
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1717058555 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 82px;
}

.custom-shape-divider-top-1717058555 .shape-fill {
  fill: #f5f5f7;
}

footer {
  background-color: #1d1d1f;
  color: #f5f5f7;
  overflow: hidden;
}

.footer-contact-sotial {
  display: flex;
  flex-direction: row;
}

.footer-section-container {
  margin-top: 4vh;
  display: flex;
  flex-direction: row;
  padding-bottom: 4vh;
  padding-left: 6vw;
  padding-right: 6vw;
}
.footer-section1 {
  width: 50%;
  padding: 0 6vw;
}
.footer-section2 {
  width: 25%;
}
.footer-section3 {
  width: fit-content;
}

.footer-logo {
  margin-left: 12vw;
}

.gold {
  color: #d7b46a;
}

.footer-logo-line {
  margin-top: 3vh;
  width: 16vw;
  height: 1px;
  background-color: #d7b46a;
}

.logo-img-footer {
  width: 100px;
}

.sotial-gold:hover {
  color: #d7b46a;
  /* background-color: #1d1d1f; */
  /* border: 2.3px solid #d7b46a; */
}
@media (max-width: 1014px) {
  .sotialmedia-container {
    margin: 30px 9px 30px 0;
  }
}

@media (max-width: 820px) {
  .footer-section-container {
    flex-direction: column;
  }
  .footer-section1 {
    width: 100%;
  }
  .footer-section2 {
    width: 100%;
    padding: 0 6vw;
  }
  .footer-section2 {
    width: 100%;
    padding: 0 6vw;
  }
  .footer-contact-sotial {
    padding: 0 6vw;
  }
  .custom-shape-divider-top-1717058555 {
    width: 180%;
  }
}

.letter-spacing {
  letter-spacing: 1px;
}

/* Footer Section End */

.montserrat {
  font-family: "Montserrat", sans-serif;
}

.f-size {
  font-size: 16px;
  font-weight: 400;
}
