@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

body {
  margin: 0;
  color: #222;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.projects .container {
  max-width: 740px;
}

h1 {
	font-size: 55px;
	font-weight: 800;
	line-height: 100%;
}

.intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 120px 20px 160px 20px;
}

.intro-text {
  flex: 1;
  padding-right: 40px;
}

.intro img {
  max-width: 700px;
  height: auto;
  width: 100%;
  transform: scale(1);
}

.blue-section {
  background: #2e7c8c;
  color: #fff;
  padding: 60px 0;
}

.blue-section > h2 {
  font-size: 44px;
  text-align: center;
  margin-bottom: 0px;
  margin-top: 24px;
}

.blue-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.blue-grid > div {
  /*background: rgba(255,255,255,0.05);*/
  padding: 0px 20px 0px 20px;
  border-radius: 8px;
}

.blue-grid h3 {
  font-size: 20px;
  margin-bottom: 0px;
}

.blue-grid p {
  margin-top: 0px;
}

.section {
  text-align: center;
  padding: 0px 20px;
}

.section h2 {
  font-size: 44px;
  text-align: center;
  margin-bottom: 20px;
}

.our-team {
	padding-bottom: 100px;
  /*background: #f5f5f5;*/
  border-radius: 8px;
  /*border-top: 10px solid #2d7d8c;*/
  margin-top: 0px;
}

.our-team h2 {
  padding-top: 20px;
}

embed {
  margin-top: 14px;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #2e7c8c;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #1b6675;
}

.flex {
  display: flex;
  gap: 12px;
  align-items: start;
}

.projects .flex-space-between {
  padding-bottom: 60px;
}

.flex-space-between {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.project-image {
  position: relative;
}

.project-image img {
  width: 350px;
  height: 350px;
  border-radius: 8px;
}

.project-image:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 8px;
}

.project-text {
  width: 350px;
  text-align: left;
}

.project-text h4 {
    margin-top: 0;
}

footer {
  background: white;
  padding: 0px 0;
  text-align: center;
  font-size: 14px;
  color: #666;
}