* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: Arial, sans-serif;
  background-color: white;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}
html h1, body h1 {
  color: #333;
  text-align: center;
  margin-top: 50px;
}

.row {
  display: flex;
  flex-direction: row;
}

.cover-photo-container {
  position: relative;
  background: url("../images/Maitri Company Pic SML 1.png") no-repeat center center;
  background-size: cover;
  width: 100%;
  padding-top: 41.37%;
  height: 0;
  margin-top: 100px;
  overflow: hidden;
}
.cover-photo-container .parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease;
}

.content-container {
  position: relative;
  z-index: 1;
  background-color: #0C1943;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 54px;
  min-height: 342px;
}
.content-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 112%;
  height: 100%;
  background-image: url("../images/Pattern.png");
  background-size: cover;
  background-position: -50px;
  background-repeat: repeat;
  opacity: 0.11;
  z-index: -1;
}
.content-container .text {
  max-width: 967px;
}
.content-container .text .upper-text {
  font-family: "Poppins";
  font-size: 36px;
  font-weight: 600;
}
.content-container .text .middle-text {
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
.content-container .text .lower-text {
  text-align: center;
  margin: 0 auto;
  font-family: "Open Sans";
  font-size: 18px;
}

.info-section {
  display: flex;
  flex-direction: row;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2);
  width: 100vw;
  min-height: 363px;
}
.info-section .info-box {
  width: 50vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
  font-size: 24px;
}
.info-section .info-box--left {
  background: linear-gradient(to right, #2f9600, #78d500);
  color: white;
  padding: 80px;
  padding-left: 50px;
  justify-content: center;
  align-items: center;
}
.info-section .info-box--left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/Vector-leaf.png");
  background-size: contain;
  background-position: 5%;
  background-repeat: no-repeat;
  z-index: -1;
}
.info-section .info-box--left .text {
  display: flex;
  flex-direction: column;
  align-items: start;
  max-width: 487px;
}
.info-section .info-box--left .text .info-title {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}
.info-section .info-box--left .text .info-description {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  text-align: left;
  font-weight: 600;
}
.info-section .info-box--right {
  background-color: #f8f8f8;
  color: black;
  text-align: left;
  padding: 80px;
  padding-left: 50px;
  align-items: center;
}
.info-section .info-box--right .text {
  max-width: 488px;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  text-align: left;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .info-section {
    flex-direction: column;
  }
  .info-section .info-box {
    width: 100vw;
    text-align: left;
  }
}

.profile-container {
  margin-top: 56px;
}
.profile-container .profile-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 128px;
  padding-right: 128px;
}
.profile-container .profile-content .profile-image {
  object-fit: contain;
  max-width: 359.22px;
  max-height: auto;
  padding-top: 1.43%;
}
.profile-container .profile-content .profile-text {
  max-width: 732px;
  display: flex;
  flex-direction: column;
  padding-left: 100px;
}
.profile-container .profile-content .profile-text .profile-name {
  font-size: 20px;
  font-weight: 600;
  font-family: "Poppins";
}
.profile-container .profile-content .profile-text .profile-title {
  font-size: 20px;
  color: #00AA96;
  font-family: "Poppins";
  font-weight: 600;
}
.profile-container .profile-content .profile-text .profile-description {
  margin-top: 20px;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
}
@media screen and (max-width: 1200px) {
  .profile-container .profile-content {
    padding-right: 20px;
    padding-left: 50px;
    padding-bottom: 0px;
  }
  .profile-container .profile-content .profile-image {
    object-fit: contain;
    max-width: 35vw;
    max-height: auto;
  }
  .profile-container .profile-content .profile-text {
    padding-left: 50px;
  }
}
@media screen and (max-width: 768px) {
  .profile-container {
    margin-top: 50px;
  }
  .profile-container .profile-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }
  .profile-container .profile-content .profile-image {
    min-width: calc(100vw - 30px);
    object-fit: contain;
    margin-bottom: 20px;
  }
  .profile-container .profile-content .profile-text {
    text-align: center;
    padding-left: 0px;
    padding-right: 0px;
  }
  .profile-container .profile-content .profile-description {
    text-align: justify;
    margin-left: 10px;
    margin-right: 10px;
  }
}