@import url("https://fonts.googleapis.com/css2?family=Notable&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  font-family: "Montserrat";
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.col-md-6 {
  padding: 0 0;
}.left-landing-image,
.right-landing-image {
  width: 100%;
  height: auto;
  position: relative;
 
}

.left-landing-image img,
.right-landing-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  z-index: -50;
}


.left-landing-image::before,
.right-landing-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.423); 
  z-index: -1;
}


.left-landing-image img,
.right-landing-image img {
  position: relative;

}

.left-landing-image img {
  height: 600px;
}
.right-landing-image img {
  height: 600px;
  max-height: 650px;
}

.box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  width: 80%;
  height: 80%;
  text-align: center;
}

.box h1 {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-weight: 500;
  line-height: 120%;
 
  letter-spacing: 0.8px;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 3rem;
  transform: translate(-50%, -50%);

  text-transform: uppercase;
}

.right-box {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

@media (max-width: 767px) {
  .row {
    display: flex;
    flex-direction: column;
  }

  .left-landing-image {
    display: none;
  }

  .right-landing-image {
    height: 100vh;
  }

  .right-landing-image img {
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .left-landing-image {
    display: none;
  }

  .right-landing-image {
    height: 80vh;
  }

  .right-landing-image img {
    height: 100%;
    object-fit: cover;
  }
}

.about-line {
  width: 10%;
  min-width: 50px;
  height: 2px;
  background-color: white;
  margin: 0 10px;
}
.right-loca {
  position: absolute;
  top: 10%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  width: 42%;
  background: black;
z-index: 1000;
  overflow: hidden;
  box-sizing: border-box;
}

.about-item {
  padding: 0 5px;
  text-align: center;
}

.about-item h6,
.about-item p {
  color: #fff;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.32px;
  text-transform: capitalize;
  margin: 0;
  
}

@media (max-width: 767px) {
  .right-loca {
    padding: 5px;
    font-size: 14px;
  }

  .about-item {
    padding: 0 3px;
  }
}

@media (max-width: 480px) {
  .right-loca {
    margin: 30px 32px;
    padding: 8px;
    width: 100%;
    max-width: 200px;
    font-size: 12px;
  }

  .about-item {
    padding: 0 2px;
  }
}

/*About Us*/
.about-page-heading {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
}

.about-page-heading h2 {
  color: #000;
  font-family: Montserrat;
  font-weight: 400;
  letter-spacing: 0.72px;
  text-transform: capitalize;
  font-size: 24px;
  margin-bottom: 4%;
}

.about-page-heading p {
  color: #535861;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
  text-transform: capitalize;
  text-align: center;
  margin-top: 20px;
  min-width: 250px;
  max-width: 900px;
  margin-bottom: 8%;
}

@media (max-width: 768px) {
  .about-page-heading h2 {
    font-size: 20px;
  }

  .about-page-heading p {
    font-size: 14px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .about-page-heading h2 {
    font-size: 18px;
  }

  .about-page-heading p {
    font-size: 12px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.about-main-pic {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 80px;
}

.about-pic-image {
  position: relative;
  width: 100%;
  max-width: 300px;
  height: 300px;
  margin: 10px;
  overflow: hidden;
}

.about-pic-image:hover img {
  transform: scale(1.1);
}

.about-pic-image img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s ease;
  object-fit: contain;
}

.about-pic-detail {
  position: absolute;
  bottom: 0;
  width: 100%;
  max-width: 300px;
  height: 80px;
  background: rgba(250, 244, 236, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

.about-pic-image:hover .about-pic-detail {
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

.about-pic-detail p {
  color: rgba(0, 0, 0, 0.8);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  text-transform: capitalize;
  text-align: center;
  margin: 0;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.about-pic-image:hover .about-pic-detail p {
  color: #fff;
}

@media (max-width: 768px) {
  .about-pic-detail p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .about-pic-detail p {
    font-size: 12px;
  }
}

/*About Best */
.about-best {
  margin-top: 40px;
  width: 100%;
  height: auto;
  padding-bottom: 70px;
  background: linear-gradient(
    100deg,
    rgba(237, 248, 255, 0.7) -0.61%,
    rgba(222, 242, 255, 0.7) 100%
  );
}

.about-best-heading {
  margin-top: 40px;
}

.about-best-heading p {
  max-width: 600px;

  font-size: 4px;
  line-height: 1.5;
  color: #38393c;
  text-align: justify;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.36px;
  text-transform: capitalize;
}
.about-image {
  margin-top: 40px;
}

@media (max-width: 768px) {
  .about-best {
    height: auto;
  }

  .about-best-heading {
    margin-top: 20px;
  }

  .about-image {
    margin-top: 20px;
  }

  .col-md-6 {
    width: 100%;
  }
}

@media (max-width: 480px) {

  p{
    font-size: 14;
  }
  .about-best {
    margin-top: 20px;
    padding: 0 10px;
  }

  .about-best-heading {
    margin-top: 20px;
  }

  .about-best-heading p {
   
    line-height: 28px;
  }

  .about-image {
    margin-top: 20px;
  }
}

/*Benefits */

.benefits {
  margin-top: 60px;
}
.benefit-img img {
  width: 100%;

  height: auto;
  display: block;
}

.benefit-heading p {
  border-radius: 8px;
  background: linear-gradient(90deg, #8ec2e2 0%, #e3f4ff 100%);
  width: 30%;
  padding: 10px;
  margin-top: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .benefit-heading p {
    width: 40%;
  }
}

@media (max-width: 480px) {
  .benefit-heading p {
    width: 60%;
  }

  .comman-sub-heading,
  .sketch-heading {
    text-align: center;
  }

  .partner-title {
    margin-top: -10px;
  }

  .benefit-heading {
    text-align: center;
  }
}

.benefit-list {
  margin-top: 20px;
}

.benefit-list ul {
  padding-left: 0;
  list-style-type: none;
}

.benefit-list ul li {
  color: #181818;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.18px;
  text-transform: capitalize;
  padding-left: 1.5em;
  position: relative;
}

.benefit-list ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #8ec2e2;
  font-size: 1.2em;
}

@media (max-width: 768px) {
  .benefit-list ul li {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .benefit-list ul li {
    font-size: 12px;
  }
}

.contact-about-bg {
  margin-top: 40px;
}


.mission-img{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30vh;
}

.mission img img{
  width: 100%;
}

.mission-para{
 
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30vh;
  text-align: justify;
}

.mission-heading{
  
  display: flex;
 
  align-items: center;
  height: 30vh;
}

.mission-heading1{
  color: rgba(0, 0, 0, 0.50);
}

.mission-heading2 h1{
color: #0E2E5F;
margin-left: 40px;
}

.vision{
  display: flex;
 
  align-items: center;
  
  justify-content: center;
}

.connemara {
  text-align: center;
 display: flex;
 justify-content: center;
 align-items: center;
 flex-direction: column;
 height: 80px;
  width: 100%;
  overflow: hidden;
}

.container span {
  text-transform: uppercase;
  display: block; 
}

.text1 {
  color: rgba(14, 46, 95, 0.05);
  font-size: 100px;
  font-weight: 700;
  letter-spacing: 8px;
  margin-bottom: 20px;

  position: relative;
/*   shorthand animation property: name | duration | iteration count */
/*   animation: text 4s 1; */
  animation-name: text;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}


@keyframes text {
  0% {
    color: rgba(14, 46, 95, 0.05);
  
  }
  30% {
    letter-spacing: 25px;
   
  }
  85% {
    letter-spacing: 8px;
   
  }
  100% {
   
  }
}

/*Youtube*/


.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 16px;
}

.flex-item {
  flex: 1 1 calc(33.333% - 32px); /* 3 items per row with gap consideration */
}

.flex-item .embed-responsive iframe {
  width: 100%;
  min-width: 400px;
  height: 320px;
}

