section .wrapper {
    display: flex;
    gap: 40px 0px;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
    flex-direction: column;
}
section .wrapper h2.t-2.glance-title {
    display: none;
}
section .wrapper .glance-text {
    order: 1;
    width: 90%;
    margin: 0 auto;
}
section .wrapper .glance-text p {
    font-size: 11px;
    font-weight: 400;
    line-height: 13px;
    color: var(--gray-texts);
}
section .wrapper h2.t-2.glance-title-mobile {
    width: 100%;
    font-size: 20px;
    display: block;
    line-height: 21px;
    margin: 0;
}
section .wrapper .glance-container {
    order: 2;
    width: 80%;
    margin: 0 auto;
}
section .wrapper .glance-container img {
   width: 100%;
}


@media only screen and (min-width: 768px) {
 section .wrapper {
    flex-wrap: unset;
    flex-direction: column;
 }
 section .wrapper .glance-container img {
    width: 65%;
 }
 section .wrapper h2.t-2.glance-title-mobile {
    display: none;
 }
 section .wrapper .glance-text {
    width: 75%;
    align-self: center;
    min-width: 610px;
 }
 section .wrapper h2.t-2.glance-title {
    display: block;
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    line-height: 42px;
    padding-bottom: 30px;
 }
 section .wrapper .glance-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
 }
 section .wrapper .glance-container {
    width: 100%;
    text-align: center;
    min-width: 35%;
 }
}

@media only screen and (min-width: 992px) {
 section .wrapper {
    flex-direction: unset;
    gap: 0 60px;
    width: 100%;
 }
 section .wrapper .glance-text {
    order: 2;
    align-self: unset;
 }
 section .wrapper .glance-text p {
    text-align: start;
 }
 section .wrapper .glance-container {
    order: 1;
    min-width: 40%;
 }
 section .wrapper h2.t-2.glance-title {
    overflow: hidden;
    white-space: nowrap;
    width: unset;
    padding-bottom: 0;
    text-align: start;
 }
 section .wrapper .glance-container img {
     width: 90%;
 }
}



@media only screen and (min-width: 1400px) {
  section .wrapper .glance-text {
      align-self: center;
  }
  section .wrapper .glance-container {
      width: 80%;
  }
}