@charset "UTF-8";
p {
  font-family: var(--rt-font-dm);
}

h1,
h2,
h3 {
  font-family: var(--rt-font-ibm);
}

.dream-team-hero {
  padding: 80px 32px 0;
  background-color: #132C55;
}
.dream-team-hero .title {
  max-width: 515px;
  width: 100%;
}
.dream-team-hero .title h1 {
  color: #fff;
  font-size: 48px;
  line-height: 58px;
  margin-bottom: 32px;
  font-weight: 700;
}
.dream-team-hero .title p {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  line-height: 31px;
}
.dream-team-hero img {
  width: 540px;
  height: 466px;
  object-fit: cover;
}
@media (max-width: 1100px) {
  .dream-team-hero .d-flex {
    justify-content: center;
    row-gap: 30px;
  }
  .dream-team-hero .title {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .dream-team-hero {
    padding: 80px 24px;
  }
}
@media (max-width: 480px) {
  .dream-team-hero img {
    width: 330px;
    height: 310px;
  }
}

.team_block {
  background-color: #0F2441;
  margin-top: -20px;
  padding: 52px 32px;
}
.team_block .blocks {
  gap: 90px;
}
.team_block .blocks .block {
  flex-wrap: nowrap;
  gap: 25px;
  flex-basis: calc(50% - 45px);
}
.team_block .blocks .block img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.team_block .blocks .block p {
  font-size: 18px;
  line-height: 26px;
  color: #F3F8FF;
}
@media (max-width: 768px) {
  .team_block .blocks .block {
    flex-basis: 100%;
  }
}
@media (max-width: 768px) {
  .team_block .blocks {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .team_block {
    padding: 32px 24px;
  }
}

.team_mates {
  margin: 82px 0;
}
.team_mates .title {
  max-width: 808px;
  text-align: center;
  margin: auto;
}
.team_mates .title h2 {
  font-size: 36px;
  line-height: 44px;
  color: #333;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}
.team_mates .title p {
  color: #333;
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
}
.team_mates .blocks {
  gap: 15px;
  margin-top: 48px;
}
.team_mates .blocks .block {
  flex-basis: calc(33% - 7.5px);
  flex-grow: 0;
  border-radius: 30px;
  background-color: #EEF5FF;
  border-bottom: 8px solid #498BF9;
  padding: 42px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.team_mates .blocks .block img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.team_mates .blocks .block h3 {
  font-size: 24px;
  line-height: 34px;
  color: #333;
  font-weight: 700;
  margin-bottom: 0;
}
.team_mates .blocks .block p {
  color: #646464;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .team_mates .blocks .block {
    flex-basis: calc(50% - 7.5px);
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .team_mates .blocks .block {
    flex-basis: 100%;
    padding: 30px;
  }
}
.team_mates .global-btn {
  margin: 48px auto 0;
  text-align: center;
}
.team_mates .global-btn a {
  border: 2px solid var(--rt-hover-blue);
  background-color: var(--rt-hover-blue);
  font-size: 14px;
  line-height: 16px;
}
.team_mates .global-btn a:hover {
  background-color: #629DFF;
  border-color: #629DFF;
}

.add_team_mates {
  margin: 82px 0;
}
.add_team_mates .title {
  max-width: 930px;
  width: 100%;
  text-align: center;
  margin: auto;
}
.add_team_mates .title h2 {
  font-size: 36px;
  line-height: 44px;
  color: #333;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}
.add_team_mates .title p {
  color: #333;
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
}
.add_team_mates .steps {
  margin-top: 48px;
  margin-bottom: 48px;
  gap: 15px;
}
.add_team_mates .steps .step {
  border: 1px solid #DFECFE;
  padding: 42px;
  border-radius: 30px;
  border-bottom-left-radius: 0px;
  flex-basis: calc(25% - 13px);
  flex-grow: 1;
  position: relative;
  min-height: 282px;
}
.add_team_mates .steps .step p {
  color: #333;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  position: relative;
  z-index: 2;
}
.add_team_mates .steps .step p strong,
.add_team_mates .steps .step p a {
  font-weight: 700;
  color: #498BF9;
  text-decoration: none;
}
.add_team_mates .steps .step ul {
  max-width: 820px;
  margin: auto;
  padding-left: 1.2em;
}
.add_team_mates .steps .step li {
  line-height: 27px;
  font-size: 18px;
  color: #333333;
  font-family: var(--rt-font-dm);
}
.add_team_mates .steps .step li strong,
.add_team_mates .steps .step li a {
  font-weight: 700;
  color: #498BF9;
  text-decoration: none;
}
.add_team_mates .steps .step li:before {
  content: "•";
  color: #498BF9;
  position: absolute;
  margin-left: -1.2em;
}
.add_team_mates .steps .step h3,
.add_team_mates .steps .step h4,
.add_team_mates .steps .step h2 {
  font-family: var(--rt-font-dm);
  color: #333333;
  font-size: 24px;
  line-height: 32px;
}
.add_team_mates .steps .step img {
  width: auto;
  height: 32px;
  margin-bottom: 30px;
}
.add_team_mates .steps .step .counter {
  position: absolute;
  bottom: -17px;
  left: -2px;
  font-size: 100px;
  line-height: 120px;
  font-family: var(--rt-font-ibm);
  color: #DFECFE;
  font-weight: 700;
  z-index: 0;
}
@media (max-width: 900px) {
  .add_team_mates .steps .step {
    flex-basis: calc(50% - 12px);
  }
}
@media (max-width: 600px) {
  .add_team_mates .steps .step {
    flex-basis: 100%;
    padding: 30px;
    min-height: 200px;
  }
}
.add_team_mates .link {
  justify-content: center;
  gap: 32px;
  align-items: center;
  display: flex;
}
.add_team_mates .link p {
  font-size: 24px;
  line-height: 22px;
  color: #333;
}
.add_team_mates .link a {
  background-color: #498BF9;
  color: #fff;
  font-size: 14px;
  line-height: 16px;
  transition: all 0.3s;
  padding: 15px 46px 15px 56px;
  position: relative;
  border-radius: 32px;
  display: inline-block;
}
.add_team_mates .link a:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  left: 32px;
  top: 18px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  background-image: url(../images/Polygon-1.svg);
}
.add_team_mates .link a:hover {
  background-color: #629DFF;
  transition: all 0.3s;
}
@media (max-width: 600px) {
  .add_team_mates .link {
    flex-wrap: wrap;
  }
  .add_team_mates .link a {
    display: block;
  }
}

.joining {
  background-color: #132C55;
  padding: 81px 32px 93px;
}
.joining .wrapper {
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 24px;
  max-width: 700px;
  width: 100%;
  margin: auto;
}
.joining .wrapper img {
  width: 123px;
  height: 123px;
  object-fit: contain;
}
.joining .wrapper h2 {
  font-size: 36px;
  line-height: 43px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0;
}
.joining .wrapper p {
  color: #fff;
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
}
.joining .wrapper p a {
  color: rgb(207, 207, 81);
  font-weight: 700;
}
.joining .wrapper .link {
  margin-top: 22px;
}
.joining .wrapper .link a {
  color: #498BF9;
  padding: 15px 32px;
  border-radius: 32px;
  border: 2px solid #A4C5FC;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  transition: all 0.3s;
  display: inline-block;
}
.joining .wrapper .link a:hover {
  color: #A4C5FC;
  border: 2px solid #498BF9;
  transition: all 0.3s;
}