h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  line-height: 44px;
  font-weight: bold;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 30px;
  font-weight: bold;
}

.body {
  font-family: 'Open Sans', sans-serif;
  color: #1b4646;
  font-size: 16px;
  line-height: 20px;
}

.link-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 6vh;
  margin-bottom: 6vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #1b4646;
  text-align: center;
  text-decoration: none;
}

.section-hero {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  margin-left: 18vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: -webkit-linear-gradient(270deg, rgba(27, 70, 70, .4), rgba(27, 70, 70, .4)), url('../images/time-is-money.jpeg');
  background-image: linear-gradient(180deg, rgba(27, 70, 70, .4), rgba(27, 70, 70, .4)), url('../images/time-is-money.jpeg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 4px #000;
}

.navbar-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-right: 0px;
  margin-left: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.navbar {
  position: fixed;
  left: 0px;
  top: 0px;
  bottom: 0px;
  z-index: 1000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 18vw;
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  box-shadow: 2px 0 4px 0 rgba(0, 0, 0, .4);
}

.nav-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.h1-hero {
  margin-top: 0px;
  margin-bottom: 0px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: Poppins, sans-serif;
  font-size: 60px;
  line-height: 72px;
  font-weight: 600;
}

.h2-hero {
  margin-top: 0px;
  margin-bottom: 0px;
}

.nav-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 83.33333333%;
  padding: 2vh 0px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-right: 1vh solid transparent;
  border-left: 1vh solid transparent;
  -webkit-transition: -webkit-transform 200ms cubic-bezier(.215, .61, .355, 1);
  transition: -webkit-transform 200ms cubic-bezier(.215, .61, .355, 1);
  transition: transform 200ms cubic-bezier(.215, .61, .355, 1);
  transition: transform 200ms cubic-bezier(.215, .61, .355, 1), -webkit-transform 200ms cubic-bezier(.215, .61, .355, 1);
}

.nav-link:hover {
  border-left-color: #7ec935;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  color: #7ec935;
  font-weight: 700;
}

.nav-link.w--current {
  border-left-color: #7ec935;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  color: #7ec935;
  font-weight: 700;
}

.utility-page-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.utility-page-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 260px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.utility-page-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.tabs {
  width: 100%;
  height: auto;
  min-height: 87vh;
  margin-top: 2vh;
  border-radius: 1vmax;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .5);
}

.tabs-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 8vh;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-top-left-radius: 1vmax;
  border-top-right-radius: 1vmax;
  background-color: #fff;
}

.tab-link {
  width: 14%;
  margin-right: 2.5%;
  margin-left: 2.5%;
  padding: 1vh 0px;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  background-color: transparent;
  -webkit-transition: -webkit-transform 200ms cubic-bezier(.215, .61, .355, 1);
  transition: -webkit-transform 200ms cubic-bezier(.215, .61, .355, 1);
  transition: transform 200ms cubic-bezier(.215, .61, .355, 1);
  transition: transform 200ms cubic-bezier(.215, .61, .355, 1), -webkit-transform 200ms cubic-bezier(.215, .61, .355, 1);
  color: #1b4646;
  text-align: center;
}

.tab-link:hover {
  border-bottom-color: #7ec935;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  color: #7ec935;
  font-weight: 700;
}

.tab-link.w--current {
  border-bottom-color: #7ec935;
  background-color: transparent;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  color: #7ec935;
  font-weight: 700;
}

.tabs-content {
  min-height: 79vh;
  border-bottom-left-radius: 1vmax;
  border-bottom-right-radius: 1vmax;
  color: #fff;
}

.tab-pane {
  min-height: 79vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  border-bottom-left-radius: 1vmax;
  border-bottom-right-radius: 1vmax;
}

.para {
  min-height: 87vh;
  margin-top: 2vh;
  margin-bottom: 0px;
  padding: 4vh 4vw;
  border-radius: 1vmax;
  background-image: -webkit-linear-gradient(315deg, #fff 30%, hsla(0, 0%, 100%, .5)), url('../images/RKK-Office.jpg');
  background-image: linear-gradient(135deg, #fff 30%, hsla(0, 0%, 100%, .5)), url('../images/RKK-Office.jpg');
  background-position: 0px 0px, 90% 50%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
  background-attachment: scroll, fixed;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .4);
  line-height: 24px;
  text-align: justify;
}

.section-page {
  min-height: 100vh;
  margin-left: 18vw;
  padding: 2vh 1vw;
}

.link-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 75%;
  margin-bottom: 1vh;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px dashed #1b4646;
  -webkit-transition: -webkit-transform 200ms cubic-bezier(.215, .61, .355, 1);
  transition: -webkit-transform 200ms cubic-bezier(.215, .61, .355, 1);
  transition: transform 200ms cubic-bezier(.215, .61, .355, 1);
  transition: transform 200ms cubic-bezier(.215, .61, .355, 1), -webkit-transform 200ms cubic-bezier(.215, .61, .355, 1);
  color: #1b4646;
  text-decoration: none;
}

.link-footer:hover {
  background-color: #1b4646;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  color: #7ec935;
}

.div-in-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 1vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-perspective: 304px;
  perspective: 304px;
  color: #1b4646;
  font-size: 16px;
  line-height: 20px;
}

.txt-footer {
  font-size: 24px;
  line-height: 30px;
}

.txt-footer.small-txt-size {
  font-size: 12px;
  line-height: 16px;
}

.txt-copyright {
  font-size: 12px;
  line-height: 16px;
}

.div-accent {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 1vh;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
}

.div-accent.for-menu {
  display: none;
}

.div-accent.mobile {
  display: none;
}

.div-accent-line {
  height: 100%;
}

.div-accent-line.blue {
  width: 57%;
  background-color: #1b4646;
}

.div-accent-line.green {
  width: 43%;
  background-color: #7ec935;
}

.div-credits {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 15vh;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  font-family: Poppins, sans-serif;
}

.link-block {
  width: 40px;
  height: 40px;
  background-image: url('../images/Slashash-v7.0.svg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.html-embed {
  height: 42vh;
  margin-top: 2vh;
  border-top-left-radius: 1vmax;
  border-top-right-radius: 1vmax;
}

.div-contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 28vh;
  margin-top: 2vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 1vmax;
  background-color: #1b4646;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .5);
  color: #fff;
  text-shadow: none;
}

.div-horz {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 2vh 1vw;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

.txt-50 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 2vh;
  padding-bottom: 2vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 1vmax;
}

.link-25 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 20%;
  padding-top: 1vh;
  padding-bottom: 1vh;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 1vmax;
  -webkit-transition: -webkit-transform 200ms cubic-bezier(.215, .61, .355, 1);
  transition: -webkit-transform 200ms cubic-bezier(.215, .61, .355, 1);
  transition: transform 200ms cubic-bezier(.215, .61, .355, 1);
  transition: transform 200ms cubic-bezier(.215, .61, .355, 1), -webkit-transform 200ms cubic-bezier(.215, .61, .355, 1);
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
}

.link-25:hover {
  border-radius: 0vmax;
  background-color: #7ec935;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  font-weight: 600;
}

.text-span-contact {
  padding-right: 1vw;
  padding-bottom: 0.5vh;
  padding-left: 1vw;
  font-family: Poppins, sans-serif;
  color: #7ec935;
  font-size: 18px;
  font-weight: 600;
}

.div-filler {
  display: none;
}

.div-content {
  position: relative;
  min-height: 96vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.h1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 6vh;
  margin-top: 0px;
  margin-bottom: 0px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Poppins, sans-serif;
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
  letter-spacing: 2px;
}

.form-block {
  margin: 2vh 2vw 0px;
  padding-top: 4vh;
  padding-bottom: 4vh;
  border-radius: 1vmax;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .4);
}

.txtf-in-career {
  width: 100%;
  height: 4vh;
  margin-bottom: 0px;
  padding-right: 1vw;
  padding-left: 1vw;
  border-style: solid;
  border-width: 1px;
  border-color: transparent transparent rgba(0, 0, 0, .4);
  color: #1b4646;
  font-size: 20px;
  line-height: 24px;
}

.txtf-in-career:hover {
  border-bottom: 6px dashed #7ec935;
}

.txtf-in-career:focus {
  border-color: transparent transparent #7ec935;
  border-bottom-style: dashed;
  border-bottom-width: 6px;
}

.lbl-in-career {
  position: static;
  left: 4vw;
  top: 0px;
  bottom: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 2vh;
  margin-bottom: 0px;
  padding-left: 1vw;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: rgba(0, 0, 0, .4);
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  text-align: left;
}

.lbl-in-career.center {
  padding-left: 0vw;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.form-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 4vw;
  padding-left: 4vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.radio-btn-field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin-right: 2vw;
  margin-bottom: 0px;
  padding-left: 0px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.radio-btn-field:hover {
  color: #7ec935;
  font-style: italic;
}

.div-radio-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 4vh;
  padding-left: 1vw;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.submit-btn {
  margin-top: 2vh;
  padding: 2vh 4vw;
  background-color: #1b4646;
  font-family: Poppins, sans-serif;
}

.div-vert {
  width: 100%;
  height: 8vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.para-career {
  margin-bottom: 2vh;
  width:100%;
}

.para-in-tab {
  position: relative;
  z-index: 1;
  margin-bottom: 0px;
  padding: 4vh 4vw;
  color: #1b4646;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  text-align: justify;
}

.radio-button {
  margin-top: 0px;
  margin-right: 0.5vw;
  margin-left: 0px;
}

.field-label {
  margin-bottom: 0px;
}

.div-team {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 2vh;
  padding-bottom: 2vh;
  padding-left: 4vw;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-person-photo {
  width: 200px;
  height: 200px;
  margin-top: 2vh;
  margin-bottom: 1vh;
  border-radius: 100vmax;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .4);
}

.div-person-photo.part1 {
  /* background-image: url('../images/p-rajeshkankaria.jpg'); */
  background-position: 50% 0px;
  background-size: cover;
}

.div-person-photo.part2 {
  /* background-image: url('../images/p-uttamjain.jpg'); */
  background-position: 50% 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.div-person-photo.part3 {
  /* background-image: url('../images/p-babulalsurana.jpg'); */
  background-position: 50% 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.div-person-photo.part4 {
  /* background-image: url('../images/p-scbandhyopadhyay.jpg'); */
  background-position: 50% 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.div-person-photo.part5 {
  /* background-image: url('../images/p-yashbaid.jpg'); */
  background-position: 50% 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.div-person-photo.asso1 {
  /* background-image: url('../images/m-abhijitpuglia.JPG'); */
  background-position: 50% 0px;
  background-size: cover;
}

.div-person-photo.asso2 {
  /* background-image: url('../images/m-bimalbaidya.jpg'); */
  background-position: 50% 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.div-person-photo.asso3 {
  /* background-image: url('../images/m-daragpalsingh.jpg'); */
  background-position: 50% 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.div-person-photo.asso4 {
  /* background-image: url('../images/m-rishabhkankaria.jpg'); */
  background-position: 50% 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.div-person-photo.asso5 {
  /* background-image: url('../images/m-ashimmajumder.jpg'); */
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.div-person-photo.asso6 {
  /* background-image: url('../images/m-richashukla.jpg'); */
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.div-person {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 24vw;
  height: 45%;
  margin-bottom: 2vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: -webkit-transform 200ms ease;
  transition: -webkit-transform 200ms ease;
  transition: transform 200ms ease;
  transition: transform 200ms ease, -webkit-transform 200ms ease;
  color: #1b4646;
  cursor: pointer;
}

.div-person:hover {
  -webkit-filter: none;
  filter: none;
  -webkit-transform: translate(0px, -2vh);
  -ms-transform: translate(0px, -2vh);
  transform: translate(0px, -2vh);
}

.div-person.popup {
  width: auto;
  height: 60%;
  margin-right: 12vw;
  margin-bottom: 4vh;
  margin-left: 12vw;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 1vmax;
  background-color: #fff;
  -webkit-filter: none;
  filter: none;
  cursor: default;
}

.div-person.popup:hover {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.h1-title {
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: Poppins, sans-serif;
  font-size: 1.6vw;
  line-height: 2.5vw;
  font-weight: 600;
}

.h3-sub-title {
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: Poppins, sans-serif;
  font-size: 1vw;
  line-height: 1.5vw;
  font-weight: 400;
  letter-spacing: 1px;
}

.para-team {
  height: 75%;
  margin-bottom: 0px;
  padding-top: 2vh;
  padding-right: 4vw;
  padding-left: 4vw;
  border-bottom-left-radius: 1vmax;
  border-bottom-right-radius: 1vmax;
  background-color: #1b4646;
  color: #fff;
  line-height: 24px;
  text-align: justify;
}

.div-popup {
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1007;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(0, 0, 0, .75);
  -webkit-transform: translate(-100vw, 0vw);
  -ms-transform: translate(-100vw, 0vw);
  transform: translate(-100vw, 0vw);
}

.link-close {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 48px;
  height: 48px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vmax;
  background-color: #7ec935;
  -webkit-transition: -webkit-transform 250ms cubic-bezier(.55, .055, .675, .19);
  transition: -webkit-transform 250ms cubic-bezier(.55, .055, .675, .19);
  transition: transform 250ms cubic-bezier(.55, .055, .675, .19);
  transition: transform 250ms cubic-bezier(.55, .055, .675, .19), -webkit-transform 250ms cubic-bezier(.55, .055, .675, .19);
  font-size: 24px;
  line-height: 32px;
}

.link-close:hover {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.div-person-in-popup {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2vh;
  margin-bottom: 2vh;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-photo-in-popup {
  width: 100px;
  height: 100px;
  border-radius: 100vmax;
}

.div-photo-in-popup.part1 {
  background-image: url('../images/p-rajeshkankaria.jpg');
  background-position: 50% 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.div-person-title-in-popup {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 2vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-img {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  -webkit-filter: blur(2px);
  filter: blur(2px);
}

.div-img.accounts {
  background-image: -webkit-linear-gradient(315deg, #fff 20%, rgba(0, 0, 0, .3)), url('../images/accounting.jpg');
  background-image: linear-gradient(135deg, #fff 20%, rgba(0, 0, 0, .3)), url('../images/accounting.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
}

.div-img.advisory {
  background-image: -webkit-linear-gradient(315deg, #fff 20%, rgba(0, 0, 0, .3)), url('../images/advisory.jpeg');
  background-image: linear-gradient(135deg, #fff 20%, rgba(0, 0, 0, .3)), url('../images/advisory.jpeg');
  background-position: 0px 0px, 0px 0px;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
}

.div-img.audit {
  background-image: -webkit-linear-gradient(315deg, #fff 20%, rgba(0, 0, 0, .3)), url('../images/audit.jpg');
  background-image: linear-gradient(135deg, #fff 20%, rgba(0, 0, 0, .3)), url('../images/audit.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
}

.div-img.tax {
  background-image: -webkit-linear-gradient(315deg, #fff 20%, hsla(0, 0%, 100%, .3)), url('../images/tax.jpg');
  background-image: linear-gradient(135deg, #fff 20%, hsla(0, 0%, 100%, .3)), url('../images/tax.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
}

.div-img.roc {
  background-image: -webkit-linear-gradient(315deg, #fff 20%, rgba(0, 0, 0, .3)), url('../images/roc.jpg');
  background-image: linear-gradient(135deg, #fff 20%, rgba(0, 0, 0, .3)), url('../images/roc.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
}

.div-img.gst {
  background-image: -webkit-linear-gradient(315deg, #fff 20%, hsla(0, 0%, 100%, .3)), url('../images/gst.jpg');
  background-image: linear-gradient(135deg, #fff 20%, hsla(0, 0%, 100%, .3)), url('../images/gst.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
}

.div-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-sign-cntr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 75vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.div-sign-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 20vh;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.div-sign-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 32%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-sign-separator {
  width: 0.5vw;
  margin-top: 1vh;
  margin-bottom: 1vh;
  background-color: #1b4646;
}

.h2-sub-title {
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: Poppins, sans-serif;
  font-size: 1.2vw;
  line-height: 1.5vw;
  font-style: italic;
  font-weight: 500;
}

.img-logo {
  width: 72px;
}

.h4-sub-title {
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-align: center;
}

.link-in-sign {
  width: 12vw;
  font-family: 'Open Sans', sans-serif;
  color: #1b4646;
  text-decoration: none;
}

.div-services-cloud {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 4vw;
  padding-bottom: 2vh;
  padding-left: 4vw;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

.txt-service-name {
  margin-right: 1vw;
  margin-bottom: 1vh;
  padding: 1vh 2vw;
  border-radius: 1vmax;
  background-color: #1b4646;
  font-weight: 600;
}

html.w-mod-js *[data-ix="time-is-money"] {
  -webkit-transform: scale(0.01, 0.01);
  -ms-transform: scale(0.01, 0.01);
  transform: scale(0.01, 0.01);
}

html.w-mod-js *[data-ix="save-both"] {
  opacity: 0;
  -webkit-transform: translate(0px, -8vh);
  -ms-transform: translate(0px, -8vh);
  transform: translate(0px, -8vh);
}

@media (max-width: 991px) {
  .link-logo {
    height: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .div-title-text {
    margin-left: 2vw;
  }
  .section-hero {
    min-height: 100vh;
    margin-left: 0vw;
    padding-top: 9vh;
  }
  .navbar-container {
    width: 8vw;
    height: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }
  .navbar {
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: auto;
    width: 100vw;
    height: 8vh;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .nav-menu {
    margin-top: 0vh;
    background-color: #fff;
  }
  .image {
    height: 64px;
  }
  .nav-link {
    z-index: 1000;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 80%;
    margin: 1vh auto;
    padding-top: 2vh;
    padding-bottom: 2vh;
    background-color: #fff;
    font-size: 16px;
  }
  .menu-button {
    color: #7ec935;
  }
  .menu-button:active {
    background-color: #7ec935;
    color: #fff;
  }
  .menu-button.w--open {
    background-color: #7ec935;
  }
  .icon-menu:active {
    color: #fff;
  }
  .tabs {
    min-height: 79vh;
  }
  .tab-link:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  .tab-link.w--current {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  .tabs-content {
    min-height: 71vh;
  }
  .tab-pane {
    min-height: 71vh;
  }
  .para {
    min-height: 79vh;
  }
  .section-page {
    margin-left: 0vw;
    padding-top: 11vh;
  }
  .link-footer {
    width: 24vw;
  }
  .div-in-footer {
    display: none;
  }
  .txt-footer {
    width: 24vw;
  }
  .div-accent {
    display: none;
  }
  .div-accent.for-menu {
    position: relative;
    top: 0vh;
    z-index: 990;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-left: 0vw;
  }
  .div-accent.mobile {
    position: fixed;
    top: 8vh;
    z-index: 1001;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .4);
  }
  .div-credits {
    height: 9vh;
  }
  .html-embed {
    height: 36vh;
  }
  .div-contact {
    height: 32vh;
  }
  .div-horz {
    padding-top: 1vh;
    padding-bottom: 1vh;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .link-25 {
    width: 40%;
    padding-top: 1vh;
    padding-bottom: 1vh;
  }
  .div-filler {
    display: block;
    width: 8vw;
    height: 100%;
  }
  .div-content {
    min-height: 87vh;
  }
  .form-block {
    margin-right: 8vw;
    margin-left: 8vw;
    padding-bottom: 2vh;
  }
  .para-career {
    text-align: justify;
  }
  .para-in-tab {
    line-height: 24px;
  }
  .div-team {
    padding-left: 2vw;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .div-person-photo {
    width: 180px;
    height: 180px;
  }
  .div-person {
    width: 32vw;
    padding-left: 0px;
  }
  .div-person.popup {
    margin-right: 4vw;
    margin-left: 4vw;
  }
  .h1-title {
    font-size: 3vw;
    line-height: 4vw;
  }
  .h3-sub-title {
    font-size: 1.8vw;
    line-height: 2.2vw;
  }
  .link-close {
    width: 48px;
  }
}

@media (max-width: 767px) {
  .section-hero {
    min-height: 82vh;
    padding-top: 0vh;
  }
  .navbar-container {
    width: 12vw;
  }
  .navbar {
    position: static;
    height: 16vh;
  }
  .menu-button {
    padding: 12px;
  }
  .tabs {
    height: auto;
    min-height: 88vh;
  }
  .tabs-menu {
    min-height: 12vh;
  }
  .tab-link {
    font-size: 12px;
    line-height: 16px;
  }
  .tab-link:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  .tab-link.w--current {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  .tabs-content {
    min-height: 76vh;
  }
  .tab-pane {
    min-height: 76vh;
  }
  .para {
    min-height: 88vh;
    font-size: 12px;
    line-height: 16px;
  }
  .section-page {
    padding-top: 2vh;
  }
  .div-accent {
    top: 16vh;
    height: 2vh;
  }
  .div-accent.mobile {
    position: static;
    top: 16vh;
  }
  .div-credits {
    height: 16vh;
  }
  .div-contact {
    height: 36vh;
    margin-top: 2vh;
    font-size: 12px;
    line-height: 16px;
  }
  .div-horz {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 12px;
    line-height: 16px;
  }
  .txt-50 {
    width: 45%;
  }
  .link-25 {
    font-size: 12px;
    line-height: 16px;
  }
  .text-span-contact {
    font-size: 14px;
  }
  .div-content {
    height: auto;
    min-height: 96vh;
  }
  .h1 {
    font-size: 20px;
    line-height: 28px;
  }
  .txtf-in-career {
    height: 6vh;
    font-size: 16px;
    line-height: 20px;
  }
  .lbl-in-career {
    height: 4vh;
  }
  .div-radio-buttons {
    font-size: 12px;
    line-height: 16px;
  }
  .div-vert {
    height: 12vh;
  }
  .para-career {
    font-size: 12px;
    line-height: 16px;
  }
  .para-in-tab {
    font-size: 12px;
    line-height: 16px;
  }
  .div-team {
    padding-left: 6vw;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .div-person-photo {
    width: 150px;
    height: 150px;
  }
  .div-person {
    width: 45vw;
    height: 45%;
  }
  .div-person.popup {
    height: 80%;
    margin-bottom: 2vh;
  }
  .h1-title {
    font-size: 3vw;
    line-height: 4vw;
  }
  .h3-sub-title {
    font-size: 2vw;
    line-height: 2.5vw;
  }
  .para-team {
    overflow: scroll;
    font-size: 12px;
    line-height: 20px;
  }
  .link-close {
    width: 48px;
  }
  .div-photo-in-popup.part1 {
    width: 80px;
    height: 80px;
  }
  .txt-service-name {
    font-size: 12px;
    line-height: 16px;
  }
}

@media (max-width: 479px) {
  .section-hero {
    min-height: 100vh;
    padding-top: 13vh;
  }
  .navbar-container {
    width: 16vw;
  }
  .navbar {
    position: fixed;
    height: 12vh;
  }
  .image {
    width: 48px;
    height: 48px;
  }
  .h2-hero {
    font-size: 20px;
    line-height: 24px;
  }
  .nav-link {
    font-size: 14px;
  }
  .menu-button {
    padding: 12px;
  }
  .menu-button.w--open {
    padding: 12px;
  }
  .tabs {
    min-height: 75vh;
  }
  .tabs-menu {
    min-height: 8vh;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .tab-link {
    width: auto;
    margin-right: 1%;
    margin-left: 1%;
    font-size: 10px;
    line-height: 16px;
  }
  .tab-link.w--current {
    padding-top: 0vh;
  }
  .tabs-content {
    min-height: 67vh;
  }
  .tab-pane {
    min-height: 67vh;
  }
  .para {
    min-height: 75vh;
    background-image: -webkit-linear-gradient(270deg, #fff 15%, hsla(0, 0%, 100%, .5)), url('../images/RKK-Office.jpg');
    background-image: linear-gradient(180deg, #fff 15%, hsla(0, 0%, 100%, .5)), url('../images/RKK-Office.jpg');
    background-position: 0px 0px, 90% 50%;
    background-size: auto, cover;
    background-repeat: repeat, no-repeat;
    background-attachment: scroll, fixed;
  }
  .section-page {
    min-height: 100vh;
    padding-top: 15vh;
  }
  .link-footer {
    width: 40vw;
  }
  .txt-footer {
    width: 40vw;
  }
  .div-accent {
    top: 12vh;
    height: 1vh;
  }
  .div-accent.mobile {
    position: fixed;
    left: 0px;
    top: 12vh;
    right: 0px;
  }
  .div-credits {
    height: 8vh;
  }
  .html-embed {
    height: 32vh;
  }
  .div-contact {
    height: 32vh;
    margin-top: 2vh;
    margin-bottom: 0vh;
  }
  .div-horz {
    padding-top: 0.5vh;
    padding-bottom: 0.5vh;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .txt-50 {
    width: 75%;
    padding-top: 0vh;
    padding-bottom: 0vh;
    font-size: 12px;
    line-height: 20px;
  }
  .link-25 {
    font-size: 12px;
    line-height: 20px;
  }
  .text-span-contact {
    padding-bottom: 0vh;
    font-size: 14px;
  }
  .div-filler {
    width: 4vw;
  }
  .div-content {
    min-height: 83vh;
  }
  .h1 {
    font-size: 20px;
    line-height: 24px;
  }
  .txtf-in-career {
    font-size: 16px;
    line-height: 20px;
  }
  .radio-btn-field {
    margin-right: 4vw;
  }
  .div-radio-buttons {
    font-size: 12px;
    line-height: 16px;
  }
  .para-career {
    font-size: 12px;
    line-height: 16px;
  }
  .para-in-tab {
    font-size: 12px;
    line-height: 20px;
  }
  .div-team {
    padding-left: 0vw;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .div-person {
    width: 75%;
    height: 36vh;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .div-person.popup {
    height: 90%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .h1-title {
    font-size: 6vw;
    line-height: 8vw;
  }
  .h3-sub-title {
    font-size: 4vw;
    line-height: 5vw;
  }
  .link-close {
    width: 48px;
  }
  .div-person-in-popup {
    margin-top: 4vh;
  }
}

