main {
  background-color: #EEF5FF;
}

p {
  font-family: var(--rt-font-dm);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: var(--rt-dark);
}

h2 {
  font-family: var(--rt-font-ibm);
  font-weight: 700;
}

.global-btn {
  margin-top: 0;
}

.btn-style-3 {
  border: 2px solid #ADC8F4;
  text-decoration: none;
  color: var(--rt-hover-blue) !important;
  transition: all 0.3s;
}
.btn-style-3:hover {
  color: var(--rt-white) !important;
  background-color: var(--rt-hover-blue) !important;
  border: 2px solid var(--rt-hover-blue);
  transition: all 0.3s;
}

.hero {
  background-color: var(--rt-blue);
  padding: 110px 0 260px 0;
}
.hero .wrapper {
  max-width: 971px;
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin: auto;
  text-align: center;
}
.hero .wrapper h1 {
  color: var(--rt-white);
  font-size: 48px;
  line-height: 58px;
  font-family: var(--rt-font-ibm);
}
.hero .wrapper .desc {
  max-width: 715px;
  width: 90%;
  text-align: center;
  margin: auto;
}
.hero .wrapper .desc p {
  color: var(--rt-white);
  font-size: 22px;
  line-height: 32px;
}
.hero .container {
  position: relative;
}
.hero .container .cnt_left,
.hero .container .cnt_right {
  position: absolute;
  top: 60px;
  left: 0;
}
.hero .container .cnt_right {
  right: 0;
  left: auto;
}

.support {
  margin-top: -170px;
  padding-bottom: 80px;
}
.support .wrapper {
  max-width: 1050px;
  width: 100%;
  margin: auto;
  display: flex;
  gap: 20px;
  align-items: stretch;
  flex-wrap: wrap;
}
.support .wrapper .item {
  width: calc(50% - 20px);
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  padding: 60px;
  background-color: var(--rt-white);
  border-radius: 30px;
  border: 2px solid var(--rt-hover-blue);
  border-bottom: 5px solid var(--rt-hover-blue);
  gap: 20px;
}
.support .wrapper .item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 20px;
}
.support .wrapper .item h2 {
  color: var(--rt-dark);
  font-size: 24px;
  line-height: 38px;
  padding-bottom: 10px;
  font-family: var(--rt-font-dm);
}
.support .wrapper .item p {
  font-family: var(--rt-font-dm);
}
.support .wrapper .item p a {
  color: #41C46E;
}

.service {
  padding-bottom: 80px;
}
.service h2 {
  text-align: center;
  color: var(--rt-dark);
  font-size: 36px;
  line-height: 43px;
  margin-bottom: 20px;
}
.service p {
  text-align: center;
}
.service .services_block {
  margin: 42px auto 0;
  display: flex;
  gap: 20px;
  max-width: 1050px;
  width: 100%;
  align-items: stretch;
  flex-wrap: wrap;
}
.service .services_block .item {
  width: calc(33.3333% - 20px);
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  padding: 40px;
  background-color: var(--rt-white);
  border-radius: 30px;
  border: 2px solid #ADC8F4;
  border-bottom: 5px solid #ADC8F4;
  gap: 20px;
}
.service .services_block .item img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  margin-bottom: 20px;
}
.service .services_block .item .info p {
  font-weight: 700;
  font-size: 24px;
  text-align: left;
  margin-top: 10px;
  line-height: 33px;
}
.service .services_block .item .info p a {
  color: #41C46E;
}
.service .services_block .item .info span {
  text-transform: uppercase;
  font-size: 12px;
  color: #646464;
}

.interest {
  padding-bottom: 80px;
}
.interest .wrapper {
  max-width: 670px;
  width: 100%;
  margin: auto;
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.interest .wrapper h2 {
  font-size: 36px;
  line-height: 43px;
}
.interest .wrapper img {
  width: 63px;
  height: 63px;
  object-fit: cover;
}
.interest .wrapper .global-btn {
  margin-top: 20px;
}
.interest .wrapper .global-btn .btn-style-3 {
  background-color: var(--rt-white);
}

@media (max-width: 940px) {
  .hero .container .cnt_left,
  .hero .container .cnt_right {
    top: 0;
    width: 100px;
  }
  .service .services_block {
    justify-content: center;
  }
  .service .services_block .item {
    width: calc(50% - 20px);
  }
}
@media (max-width: 768px) {
  .hero .wrapper h1 {
    font-size: 38px;
    line-height: 48px;
  }
  .service h2,
  .interest .wrapper h2 {
    font-size: 30px;
    line-height: 36px;
  }
  .support .wrapper .item, .service .services_block .item {
    width: 100%;
    padding: 20px;
    gap: 0;
  }
  .interest .wrapper .global-btn {
    margin-top: 0;
  }
}
@media (max-width: 440px) {
  .hero .container .cnt_left,
  .hero .container .cnt_right {
    display: none;
  }
}