@import url('https://fonts.googleapis.com/css2?family=Baloo+Chettan+2:wght@400;600&family=Noto+Sans+JP:wght@300;400;900&display=swap');

:root {
  --english-font: 'Noto Sans JP', sans-serif;
  --malayalam-font: 'Baloo Chettan 2', cursive;
}

html {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}
body {
  width: 100%;
}
.lang-eng {
  font-family: var(--english-font);
}
.lang-mal {
  font-family: var(--malayalam-font);
}
@media screen and (min-width: 576px) {
  body {
    width: calc(100% - 50%);
  }
}
header {
  background: url(../img/header-bg.png), #5cbb51;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 55px;
  position: relative;
}
nav .lang-links {
  display: flex;
}
nav .lang-links a:first {
  font-family: var(--malayalam-font);
}
nav .lang-links a {
  background-color: #f4f3f2;
  padding: 5px 10px;
  display: block;
  text-decoration: none;
  font-size: 12px;
  color: #5cbb51;
  border-radius: 100px;
}
nav .lang-active {
  background-color: white !important;
  box-shadow: 2px 2px 6px 0px #625e5a;
  font-weight: bold;
  border: 2px solid #50a045;
}
nav .prof-img {
  text-align: center;
  position: relative;
  top: 25px;
  z-index: 2;
}
.triangle-bottom {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.triangle-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 110px;
  transform: rotateY(180deg);
}
.triangle-bottom .shape-fill {
  fill: #fff;
}
main .prof-text h1 {
  font-size: 35px;
  font-weight: 600;
}
main .prof-text h4 {
  color: #625e5a;
}
main .cta-links .cta-btn {
  background-color: #5cbb51;
  display: flex;
  justify-content: center;
  border-radius: 100px;
}
main .cta-links .cta-link-wrap {
  width: calc(100% - 30%);
}
main .cta-links .cta-link-wrap span {
  font-size: 18px;
  color: white;
}

main .reach-us-links .reach-us-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 85px;
  height: 85px;
  padding: 20px;
  text-decoration: none;
  color: #5cbb51;
  border-radius: 100%;
  box-shadow: 1px 1px 8px 0px #b7b7b6;
}
main .reach-us-links .reach-us-btn span {
  margin-top: 4px;
  font-size: 10px;
}

main .connect-us-links svg {
  color: #625e5a;
}

footer {
  background: #50a045;
}
