@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --primary: #00BFFF;
  --accent: #708090;
  --white: #ffffff;
  --black: #0F172A;
  --gradient1: linear-gradient(45deg,#00BFFF 0%, #34D399 100%);
  --gradient2: linear-gradient(45deg,#00BFFF 0%, #34D399 100%);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

input,
textarea,
select,
button {
  font: inherit;
  color: inherit;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

textarea {
  resize: none;
}

.inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h1.title {
  margin-bottom: 20px;
  font-size: 72px;
}
@media screen and (max-width: 1279px) {
  h1.title {
    font-size: 60px;
  }
}
@media screen and (max-width: 1023px) {
  h1.title {
    font-size: 48px;
    text-align: center;
  }
}
@media screen and (max-width: 479px) {
  h1.title {
    font-size: 40px;
  }
}

.subtitle {
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
}
@media screen and (max-width: 1279px) {
  .subtitle {
    font-weight: 500;
  }
}
@media screen and (max-width: 1023px) {
  .subtitle {
    font-size: 16px;
  }
}

.title_label {
  text-align: center;
  margin: 0 auto 10px;
}

h2 {
  margin-bottom: 80px;
  font-size: 48px;
  text-align: center;
}
@media screen and (max-width: 1279px) {
  h2 {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1023px) {
  h2 {
    margin-bottom: 40px;
    font-size: 38px;
  }
}

h3 {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 24px;
}

.text_primary {
  color: var(--primary);
}

.text_gray {
  color: #64748B;
}

body {
  background-color: var(--white);
  color: var(--black);
}

.container {
  max-width: 1328px;
  margin: 0 auto;
}

section {
  padding: 120px 0;
}
@media screen and (max-width: 1023px) {
  section {
    padding: 60px 0;
  }
}

.section_dark {
  background: linear-gradient(45deg, #0F172A 0%, #1E293B 100%);
  color: var(--white);
}

.section_light {
  background: #F8FAFC;
  color: var(--black);
}

.content {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 50px;
}
@media screen and (max-width: 1279px) {
  .content {
    padding: 0 32px;
  }
}
@media screen and (max-width: 1023px) {
  .content {
    padding: 0 20px;
  }
}

.gradient_1 {
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 3px 0 3px 1px;
  background: var(--gradient1);
  color: var(--black);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  text-shadow: -2px 2px 1px var(--black);
}
.gradient_1:has(img) {
  padding: 0;
}

.gradient_2 {
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 3px 0 3px 1px;
  background: var(--gradient2);
  color: var(--black);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  text-shadow: -2px 2px 1px var(--black);
}
.gradient_2:has(img) {
  padding: 0;
}

.block {
  padding: 40px;
  border-radius: 10px;
  background-color: var(--white);
  color: var(--black);
}
@media screen and (max-width: 639px) {
  .block {
    max-width: 360px;
    margin: 0 auto;
  }
}
.block_image {
  width: 63px;
  height: 62px;
  margin-bottom: 20px;
}
.block_image img {
  width: 100%;
}
.block_text {
  font-weight: 700;
  font-size: 17px;
}

.form {
  width: 100%;
  border-radius: 8px;
  background-color: var(--white);
  overflow: hidden;
}
.form_top {
  padding: 60px 40px 80px;
}
@media screen and (max-width: 1279px) {
  .form_top {
    padding: 40px 30px;
  }
}
.form h2 {
  margin-bottom: 32px;
  padding: 20px;
  background: #121534;
  font-weight: 400;
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 479px) {
  .form h2 {
    font-size: 24px;
  }
}
.form_bottom {
  padding: 20px 40px;
  border-top: 2px solid #E2E8F0;
  background: #F8FAFC;
  font-weight: 700;
  font-size: 12px;
}
@media screen and (max-width: 1279px) {
  .form_bottom {
    padding: 20px 30px;
  }
}
.form_bottom .underline {
  color: var(--black);
  text-decoration: underline;
}

lead-form .leadform-wrapper {
  padding: 0 50px;
}
@media screen and (max-width: 1279px) {
  lead-form .leadform-wrapper {
    padding: 0 30px;
  }
}
@media screen and (max-width: 479px) {
  lead-form .leadform-wrapper {
    padding: 0 20px;
  }
}

lead-form .leadform {
  width: 100%;
  padding: 0;
  background: transparent;
}

lead-form .leadform input {
  height: 42px;
  padding: 10px 12px;
  border: 1px solid #000;
}

lead-form .leadform input::-moz-placeholder {
  color: #94A3B8;
}

lead-form .leadform input::placeholder {
  color: #94A3B8;
}

lead-form .leadform button {
  height: 52px;
  background-color: #121534;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
}

.btn {
  min-width: 206px;
  height: 62px;
  padding: 10px;
  background-color: var(--primary);
  color: var(--white);
  text-shadow: 1px 1px var(--accent), -1px -1px var(--accent);
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.btn:hover {
  filter: brightness(70%);
}

.btn_started {
  width: 205px;
  margin: 0 auto;
}
.btn_started::after {
  content: url("../images/arrow.svg");
}

.btn_login {
  min-width: 88px;
  height: 42px;
  font-size: 16px;
}

.btn_invert {
  background-color: transparent;
  text-shadow: none;
}

.header {
  padding: 4px 0;
  background-color: transparent;
}
.header .navbar {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 1023px) {
  .header .navbar {
    gap: 20px;
  }
}
.header .logo {
  height: 44px;
}
.header .logo img {
  height: 100%;
}
.header .nav {
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 1023px) {
  .header .nav {
    gap: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .header .nav {
    display: none;
  }
}
.header .nav_item {
  font-weight: 700;
  font-size: 17px;
}
.header .header_right {
  margin-left: auto;
  display: flex;
  gap: 5px;
}
@media screen and (max-width: 479px) {
  .header .header_right {
    display: none;
  }
}

.footer {
  padding: 130px 0 50px;
  border-top: 1px solid #E2E8F0;
}
@media screen and (max-width: 1023px) {
  .footer {
    padding: 60px 0 30px;
  }
}
.footer_top {
  margin-bottom: 95px;
  display: flex;
  gap: 100px;
}
@media screen and (max-width: 1279px) {
  .footer_top {
    gap: 50px;
  }
}
@media screen and (max-width: 1023px) {
  .footer_top {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 639px) {
  .footer_top {
    flex-direction: column;
    gap: 30px;
  }
}
.footer .block_text {
  max-width: 64%;
  color: #475569;
  font-weight: 700;
  font-size: 14px;
  line-height: 180%;
}
@media screen and (max-width: 1023px) {
  .footer .block_text {
    max-width: 75%;
  }
}
@media screen and (max-width: 639px) {
  .footer .block_text {
    max-width: none;
  }
}
.footer .block_text p {
  margin-bottom: 20px;
}
@media screen and (max-width: 1023px) {
  .footer .block_text p {
    margin-bottom: 15px;
  }
}
.footer .block_text p:last-of-type {
  margin-bottom: 0;
}
.footer .logo {
  height: 40px;
  margin-bottom: 44px;
}
@media screen and (max-width: 1023px) {
  .footer .logo {
    margin-bottom: 20px;
  }
}
.footer .logo img {
  height: 100%;
}
.footer .block_nav {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1023px) {
  .footer .block_nav {
    flex-direction: column;
  }
}
@media screen and (max-width: 639px) {
  .footer .block_nav {
    margin: 0 auto;
    flex-direction: row;
  }
}
@media screen and (max-width: 479px) {
  .footer .block_nav {
    flex-direction: column;
  }
}
.footer_nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 1023px) {
  .footer_nav {
    gap: 20px;
  }
}
.footer .nav_title {
  font-weight: 700;
  font-size: 15px;
}
.footer_link {
  color: #475569;
  font-weight: 700;
  font-size: 14px;
}
.footer .footer_link_big {
  width: 150px;
}
@media screen and (max-width: 639px) {
  .footer .footer_link_big {
    width: 200px;
  }
}
.footer_bottom {
  padding-top: 30px;
  border-top: 1px solid #E2E8F0;
}
.footer .copyright {
  color: #64748B;
  font-weight: 700;
  font-size: 12px;
}

.hero {
  padding: 0;
}
.hero_bg {
  min-height: 100vh;
  padding-bottom: 100px;
  background-image: url("../images/hero_bg.webp");
  background-position: 100% 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1279px) {
  .hero_bg {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 1023px) {
  .hero_bg {
    padding-bottom: 40px;
  }
}
.hero .block_flex {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 1279px) {
  .hero .block_flex {
    margin-top: 60px;
    gap: 32px;
  }
}
@media screen and (max-width: 1023px) {
  .hero .block_flex {
    margin-top: 40px;
    flex-direction: column;
    gap: 50px;
  }
}
.hero .block_one {
  max-width: 630px;
}
.hero .rating {
  margin-bottom: 40px;
  display: flex;
  gap: 15px;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .hero .rating {
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 479px) {
  .hero .rating {
    flex-direction: column;
  }
}
.hero .rating_stars {
  display: flex;
  gap: 5px;
}
.hero .rating_text {
  padding-left: 15px;
  border-left: 1px solid #334155;
  font-weight: 700;
  font-size: 14px;
}
@media screen and (max-width: 1023px) {
  .hero .rating_text {
    font-weight: 500;
  }
}
@media screen and (max-width: 479px) {
  .hero .rating_text {
    border: none;
    padding: 0;
  }
}
.hero .companies {
  width: 420px;
  height: 138px;
  padding: 1px;
  background: var(--accent);
}
@media screen and (max-width: 1023px) {
  .hero .companies {
    margin: 0 auto;
  }
}
@media screen and (max-width: 479px) {
  .hero .companies {
    width: 100%;
  }
}
.hero .companies_bg {
  width: 100%;
  height: 100%;
  padding: 25px 30px;
  border-radius: 16px;
  background: #0F172A;
}
@media screen and (max-width: 639px) {
  .hero .companies_bg {
    padding: 25px 20px;
  }
}
.hero .companies_title {
  margin-bottom: 20px;
}
.hero .companies_images {
  display: flex;
  justify-content: space-between;
}
.hero .companies_images img {
  height: 48px;
}
@media screen and (max-width: 479px) {
  .hero .companies_images img {
    height: 32px;
  }
}
.hero .block_two {
  flex-shrink: 0;
  width: 448px;
}
@media screen and (max-width: 639px) {
  .hero .block_two {
    width: 100%;
    max-width: 448px;
  }
}

.coins {
  background-color: var(--white);
}
.coins_row {
  height: 96px;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.coins img {
  height: 40px;
}

.section1 {
  padding: 0;
}
.section1_bg {
  padding: 100px 0;
  background-image: url("../images/pattern1.svg"), url("../images/pattern2.svg");
  background-size: 738px auto, auto;
  background-position: 0% 0%, 100% 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1279px) {
  .section1_bg {
    padding: 60px 0;
    background-size: 600px auto, 50vw auto;
  }
}
@media screen and (max-width: 1023px) {
  .section1_bg {
    padding: 60px 0;
    background-size: 520px auto, 500px auto;
  }
}
.section1 h2 {
  max-width: 870px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section1 .grid {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (max-width: 1279px) {
  .section1 .grid {
    gap: 30px;
  }
}
@media screen and (max-width: 1023px) {
  .section1 .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .section1 .grid {
    gap: 30px;
  }
}
@media screen and (max-width: 639px) {
  .section1 .grid {
    grid-template-columns: 1fr;
  }
}

.section2 {
  padding: 160px 0 145px;
}
@media screen and (max-width: 1279px) {
  .section2 {
    padding: 100px 0;
  }
}
@media screen and (max-width: 1023px) {
  .section2 {
    padding: 80px 0;
  }
}
.section2 .flex {
  display: flex;
  gap: 80px;
  align-items: center;
}
@media screen and (max-width: 1279px) {
  .section2 .flex {
    gap: 30px;
  }
}
@media screen and (max-width: 1023px) {
  .section2 .flex {
    flex-direction: column;
    gap: 60px;
  }
}
@media screen and (max-width: 639px) {
  .section2 .flex {
    gap: 40px;
  }
}
.section2 .title_label {
  margin-left: 0;
}
.section2 h2 {
  text-align: left;
}
@media screen and (max-width: 1023px) {
  .section2 .ul {
    max-width: 700px;
    margin: 0 auto;
  }
}
.section2 .ul_li {
  margin-bottom: 30px;
  display: flex;
  gap: 10px;
}
.section2 .ul_li:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 639px) {
  .section2 .ul_li {
    margin-bottom: 20px;
  }
}
.section2 .ul_img {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}
.section2 .ul_img img {
  width: 100%;
}
.section2 .ul_text {
  font-weight: 700;
  font-size: 16px;
  line-height: 180%;
}
.section2 .ul_gray {
  color: #475569;
}
.section2 .block_img {
  flex-shrink: 0;
  width: 592px;
}
@media screen and (max-width: 1279px) {
  .section2 .block_img {
    width: 450px;
  }
}
@media screen and (max-width: 1023px) {
  .section2 .block_img {
    width: 100%;
    max-width: 592px;
  }
}
.section2 .block_img img {
  width: 100%;
}

.section3 .flex {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1279px) {
  .section3 .flex {
    gap: 30px;
  }
}
.section3 .block {
  flex: 1;
  max-width: 328px;
  min-width: 280px;
}
.section3 .block_image {
  margin: 0 auto 20px;
}
.section3 .block_title {
  text-align: center;
}
.section3 .block_text {
  text-align: center;
}
.section3 .safeguards {
  max-width: -moz-max-content;
  max-width: max-content;
  min-height: 52px;
  margin: 0 auto 50px;
  padding: 12px 30px;
  border-radius: 26px;
  background: rgba(31, 41, 59, 0.8);
  display: flex;
  gap: 10px;
  align-items: center;
}
.section3 .safeguards_img {
  width: 16px;
  height: 18px;
}
.section3 .safeguards_text {
  font-size: 18px;
  line-height: 140%;
}

.info {
  padding: 73px 0 53px;
  background-color: var(--white);
}
@media screen and (max-width: 1023px) {
  .info {
    padding: 50px 0 40px;
  }
}
.info .ul {
  width: 100%;
  display: flex;
  justify-content: space-around;
  gap: 30px;
}
@media screen and (max-width: 1023px) {
  .info .ul {
    flex-wrap: wrap;
  }
}
.info .ul_title {
  margin: 0 auto 15px;
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 700;
  font-size: 48px;
}
@media screen and (max-width: 1023px) {
  .info .ul_title {
    font-size: 32px;
  }
}
.info .ul_text {
  color: #475569;
  font-weight: 700;
  font-size: 17px;
  text-align: center;
}

.section4 {
  padding: 0;
}
.section4_bg {
  padding: 100px 0 160px;
  background-image: url("../images/pattern3.svg"), url("../images/pattern4.svg");
  background-position: 0% -13%, 100% 55%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1279px) {
  .section4_bg {
    padding: 80px 100px;
    background-position: 0% -13%, 100% 90%;
  }
}
@media screen and (max-width: 1023px) {
  .section4_bg {
    padding: 50px 0 80px;
    background-size: 600px auto, auto;
    background-position: 0% -11%, 100% 95%;
  }
}
@media screen and (max-width: 639px) {
  .section4_bg {
    background-position: 0% -7%, 100% 100%;
  }
}
.section4 .grid {
  display: grid;
  grid-template-areas: "b a a c" "d a a c" "d e f g";
  gap: 40px;
}
@media screen and (max-width: 1279px) {
  .section4 .grid {
    grid-template-areas: "a a a" "b c d" "e f g";
  }
}
@media screen and (max-width: 1023px) {
  .section4 .grid {
    max-width: 700px;
    margin: 0 auto;
    grid-template-areas: "a a" "b c" "d e" "f g";
    gap: 40px;
  }
}
@media screen and (max-width: 639px) {
  .section4 .grid {
    grid-template-areas: "a" "b" "c" "d" "e" "f" "g";
    gap: 20px;
  }
}
.section4 .grid > :nth-child(1) {
  grid-area: a;
  max-width: 800px;
}
@media screen and (max-width: 1279px) {
  .section4 .grid > :nth-child(1) {
    justify-self: center;
  }
}
.section4 .grid > :nth-child(2) {
  grid-area: b;
  align-self: start;
}
.section4 .grid > :nth-child(3) {
  grid-area: c;
  align-self: start;
}
.section4 .grid > :nth-child(4) {
  grid-area: d;
  align-self: start;
}
.section4 .grid > :nth-child(5) {
  grid-area: e;
  align-self: start;
}
.section4 .grid > :nth-child(6) {
  grid-area: f;
  align-self: start;
}
.section4 .grid > :nth-child(7) {
  grid-area: g;
  align-self: start;
}
.section4 .block {
  padding: 20px;
}
.section4 .block_text {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 140%;
}
.section4 .block_accent {
  padding: 40px;
}
@media screen and (max-width: 639px) {
  .section4 .block_accent {
    max-width: none;
  }
}
@media screen and (max-width: 479px) {
  .section4 .block_accent {
    padding: 20px;
  }
}
.section4 .block_accent .block_text {
  font-size: 24px;
}
.section4 .block_bottom {
  display: flex;
  gap: 10px;
  align-items: center;
}
.section4 .block_image {
  width: 39px;
  height: 38px;
  margin-bottom: 0;
}
.section4 .block_span {
  font-weight: 700;
  font-size: 16px;
}

.section5 {
  padding: 115px 0 100px;
}
@media screen and (max-width: 1023px) {
  .section5 {
    padding: 50px 0;
  }
}
.section5 h2 {
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .section5 h2 {
    margin-bottom: 30px;
  }
}
.section5 .subtitle {
  max-width: 770px;
  margin: 0 auto 80px;
  color: #475569;
  font-size: 18px;
  line-height: 180%;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .section5 .subtitle {
    margin-bottom: 50px;
  }
}
.section5 .subtitle .underline {
  color: var(--black);
  text-decoration: underline;
}
.section5 .dl {
  font-weight: 700;
  font-size: 18px;
  line-height: 180%;
  display: grid;
  gap: 60px 40px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1023px) {
  .section5 .dl {
    gap: 30px 20px;
  }
}
@media screen and (max-width: 639px) {
  .section5 .dl {
    grid-template-columns: 1fr;
  }
}
.section5 .dl_dt {
  margin-bottom: 15px;
}
.section5 .dl_dd {
  color: #475569;
}

.section6 {
  padding: 40px 0 80px;
}
@media screen and (max-width: 1023px) {
  .section6 {
    padding: 30px 0 60px;
  }
}
.section6 .block_blue {
  padding: 80px 100px;
  border-radius: 25px;
}
@media screen and (max-width: 1023px) {
  .section6 .block_blue {
    padding: 50px 70px;
  }
}
@media screen and (max-width: 767px) {
  .section6 .block_blue {
    padding: 30px 40px;
  }
}
@media screen and (max-width: 479px) {
  .section6 .block_blue {
    padding: 20px 20px;
  }
}
.section6 h2 {
  margin-bottom: 40px;
}
@media screen and (max-width: 1023px) {
  .section6 h2 {
    margin-bottom: 25px;
  }
}
.section6 p {
  max-width: 610px;
  margin: 0 auto;
  color: #CBD5E1;
  font-weight: 700;
  font-size: 18px;
  line-height: 180%;
  text-align: center;
}
.section6 .btn_started {
  margin-top: 50px;
}
@media screen and (max-width: 1023px) {
  .section6 .btn_started {
    margin-top: 30px;
  }
}

.section7 {
  padding-top: 45px;
}
@media screen and (max-width: 1023px) {
  .section7 {
    padding-top: 30px;
  }
}
.section7 .block_lightgray {
  background: rgba(203, 213, 225, 0.6);
  border-radius: 10px;
}
.section7 .block_title {
  padding: 50px;
}
@media screen and (max-width: 767px) {
  .section7 .block_title {
    padding: 30px;
  }
}
@media screen and (max-width: 479px) {
  .section7 .block_title {
    padding: 20px;
  }
}
.section7 h2 {
  margin-bottom: 20px;
  font-size: 40px;
  text-align: left;
}
.section7 .subtitle {
  margin-bottom: 0;
  color: #374151;
  font-weight: 700;
  font-size: 17px;
}
.section7 .dl {
  font-weight: 700;
  font-size: 18px;
  line-height: 180%;
  display: grid;
  grid-template-columns: max-content 1fr;
}
@media screen and (max-width: 639px) {
  .section7 .dl {
    grid-template-columns: 1fr;
    line-height: 150%;
  }
}
.section7 .dl_dt {
  border-top: 1px solid #CBD5E1;
  padding: 30px 50px;
  display: flex;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .section7 .dl_dt {
    padding: 20px 10px 20px 30px;
  }
}
@media screen and (max-width: 639px) {
  .section7 .dl_dt {
    padding: 20px 30px;
  }
}
@media screen and (max-width: 479px) {
  .section7 .dl_dt {
    padding: 10px 20px;
  }
}
.section7 .dl_img {
  flex-shrink: 0;
  width: 27px;
  height: 26px;
}
.section7 .dl_img img {
  width: 100%;
}
.section7 .dl_dd {
  border-top: 1px solid #CBD5E1;
  padding: 30px 50px;
  color: #334155;
}
@media screen and (max-width: 767px) {
  .section7 .dl_dd {
    padding: 20px 30px 20px 10px;
  }
}
@media screen and (max-width: 639px) {
  .section7 .dl_dd {
    padding-left: 150px;
  }
}
@media screen and (max-width: 479px) {
  .section7 .dl_dd {
    padding: 10px 20px 10px 58px;
  }
}