body {
    line-height: 1.3;
    font-family: "Golos Text", sans-serif;
    font-weight: 400;
    background: #f2f4fc;
}
button,
input,
select,
textarea {
    font-family: "Golos Text", sans-serif;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
}
.container {
    width: 83.75rem;
}
section {
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 3.125rem;
    padding: 0.625rem 2rem;
    border-radius: 6.25rem;
    transition: all 0.25s ease-in;
    white-space: nowrap;
}
.btn.lil-width {
    width: 13.5rem;
}
.blue {
    background: #1e3489;
    color: #fff;
}
.blue:hover {
    background: #bd0f13;
}
.btn.red {
    border: 1px solid #fff;
    background: #bd0f13;
    color: #fff;
}
.btn.red:hover {
    background: #9d0c10;
    border: 1px solid #9d0c10;
}
.btn.white {
    background: #fff;
    color: black;
}
.btn.white:hover {
    color: #fff;
    background: #9d0c10;
}
.top-block {
    padding-top: 6rem;
}
/* Header */
.site-header {
    background: #f2f4fc;
}
.risa-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 1.2rem 0;
}
.risa-logo img {
    height: 3.125rem;
    width: auto;
    display: block;
}
.risa-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    justify-content: center;
}
.risa-nav a {
    color: #1e3489;
    font-size: 0.9rem;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-decoration-thickness: 0.08rem;
    text-underline-offset: 5px;
    transition: all 0.2s ease-in;
}
.risa-nav a:hover {
    text-decoration-color: #1e3489;
}
.burger {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: none;
    width: 5.125rem;
    height: 2.85rem;
    cursor: pointer;
    border-radius: 6.25rem;
    flex-shrink: 0;
    background: #1e3489;
}
.burger span {
    display: block;
    width: 1.85rem;
    height: 1.65px;
    background: #fff;
    transition: all 0.25s ease;
}

.mob-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    visibility: hidden;
    pointer-events: none;
}
.mob-menu.open {
    visibility: visible;
    pointer-events: all;
}
.mob-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mob-menu.open .mob-menu-overlay {
    opacity: 1;
}
.mob-menu-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 82%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 1.2rem 15px;
    padding-left: 1.25rem;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}
.mob-menu.open .mob-menu-inner {
    transform: translateX(0);
}
.mob-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mob-close {
    background: #1e3489;
    color: #fff;
    width: 5.125rem;
    height: 2.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 2.25rem;
    font-weight: 200;
    border-radius: 6.25rem;
}
.mob-nav {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.mob-nav a {
    padding-top: 1rem;
    padding-bottom: 1.25rem;
    font-weight: 500;
    color: #1e3489;
}

/* Hero Section */
.risa-hero-section {
    margin-bottom: 4rem;
}
.risa-hero-inner {
    border-radius: 1.25rem;
    background: linear-gradient(180deg, #1e3489 0%, #0e247b 100%);
    box-shadow: 0 4px 123px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.85rem;
    overflow: hidden;
    min-height: 30rem;
    position: relative;
    color: white;
}
.exclude {
    position: absolute;
    height: 100%;
    right: 39%;
}
.risa-hero-left {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 40rem;
}
.section-title {
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
}
.risa-hero-desc {
    font-size: 1.25rem;
}
.risa-hero-btns {
    display: flex;
    gap: 1rem;
}
.risa-hero-btns .btn {
    flex: 1;
}
.risa-hero-right {
    flex-shrink: 0;
}
.risa-hero-img {
    height: 28rem;
    width: auto;
    object-fit: cover;
    display: block;
    border-radius: 1rem;
}

/* Features Section */
.features-section {
}
.features-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.65rem;
}
.feature-card {
    background: #fff;
    box-shadow: 0 4px 123px 0 rgba(0, 0, 0, 0.1);
    border-radius: 1.25rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 16rem;
    color: #1e3489;
}
.feature-card--active {
    background: linear-gradient(180deg, #1e3489 0%, #0e247b 100%);
}
.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
}
.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.feature-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.65rem;
}
.feature-card--active .feature-title {
    color: #fff;
}
.feature-desc {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}
.feature-card--active .feature-desc {
    color: #fff;
}

/* Detail Section  */
.detail-section {
}
.detail-head {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    color: #1e3489;
}
.detail-head.white {
    color: white;
}
.detail-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.65rem;
    align-items: start;
}
.detail-card--top {
    margin-top: 0;
}
.detail-card--bottom {
    margin-top: 3.5rem;
}

.detail-card {
    border-radius: 1.25rem;
    background: #fff;
    padding: 0.625rem;
    box-shadow: 0 4px 123px 0 rgba(0, 0, 0, 0.1);
    color: #1e3489;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.detail-img-wrap {
    position: relative;
}
.detail-img {
    width: 100%;
    height: 17rem;
    border-radius: 1rem;
    object-fit: cover;
    display: block;
    margin-bottom: 0.65rem;
}

.detail-badge {
    position: absolute;
    top: 0.625rem;
    left: 0.65rem;
    width: 2.5rem;
    height: 2.5rem;
}

.detail-card-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.65rem;
}
.detail-card-desc {
    margin-bottom: 0.15rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Flosser Section*/
.flosser-section {
    background: linear-gradient(180deg, #1e3489 0%, #0e247b 100%);
    filter: drop-shadow(0 4px 117.8px rgba(0, 0, 0, 0.25));
    border-radius: 1.5rem;
    /* height: 100vh; */
    color: #fff;
    padding: 2rem 0;
    overflow: hidden;
}

.flosser-stage {
    position: relative;
    height: 65vh;
}
.ellipse {
    position: absolute;
    inset: 0;
    width: 70.69056rem;
    height: 70.69056rem;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
    pointer-events: none;
}
.flosser-product-img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -2rem;
    height: 36.25rem;
    width: auto;
    object-fit: contain;
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(4.918px 11.474px 12.704px rgba(0, 0, 0, 0.25));
}
.flosser-tag {
    position: absolute;
    padding: 1.0245rem 2.049rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 2;
    border-radius: 5.1225rem;
    background: rgba(217, 217, 217, 0.2);
    box-shadow: 0 4px 45.1px 0 rgba(0, 0, 0, 0.25);
}
.flosser-tag.t1 {
    top: 12%;
    left: 17%;
}
.flosser-tag.t2 {
    top: 39%;
    left: 8.7%;
}
.flosser-tag.t3 {
    top: 68%;
    left: 3.6%;
}
.flosser-tag.t4 {
    top: 12%;
    right: 10%;
}
.flosser-tag.t5 {
    top: 39%;
    right: 7.4%;
}
.flosser-tag.t6 {
    top: 68%;
    right: 0.5%;
}
.tag-dot {
    display: inline-block;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background: #fff;
    flex-shrink: 0;
}

.flosser-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}
.flosser-footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    max-width: 24rem;
}
.flosser-footer-desc {
    max-width: 26rem;
    font-weight: 500;
    text-align: right;
}

.flosser-btn-wrap {
    display: flex;
    justify-content: center;
}
.flosser-btn-wrap .btn {
    width: 41rem;
}

.why-us .detail-card {
    height: 100%;
}

/* Compare Section */
.compare-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.compare-card {
    padding: 1.85rem 3rem;
    padding-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 1.875rem;
    justify-content: center;
    gap: 1.5rem;
    box-shadow: 0 4px 123px 0 rgba(0, 0, 0, 0.1);
}
.compare-card--blue {
    background: linear-gradient(180deg, #1e3489 0%, #0e247b 100%);
    color: #fff;
}
.compare-card--light {
    background: #fff;
    color: #1e3489;
}

.compare-card-title--dark {
    color: #1e3489;
}

.compare-img-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 14rem;
}
.compare-img {
    height: 100%;
}

.compare-list {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.compare-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    padding: 1.25rem 0;
    font-size: 1.25rem;
    font-weight: 500;
    justify-content: center;
    color: #fff;
    border-top: 2px dashed rgba(255, 255, 255, 0.3);
}
.compare-item:first-child {
    border-top: none;
}

.compare-list.white .compare-item {
    color: #1e3489;
    border-top-color: rgba(30, 52, 137, 0.3);
}
.compare-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    line-height: 1;
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.product-card {
    border-radius: 1.25rem;
    background: #e7ebf8;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.product-tag {
    display: inline-flex;
    align-items: center;
    background: #1e3489;
    color: #fff;
    border-radius: 0.25rem;
    padding: 0.3125rem 0.625rem;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    align-self: flex-start;
}
.product-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 14rem;
}
.product-img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    display: block;
}
.product-name {
    font-weight: 600;
    color: #1e3489;
}
/* Reviews Section */
.reviews-slider-wrap {
    margin: 0 -0.5rem;
    padding: 0 0.5rem;
    overflow: hidden;
}
.js-reviews-slider {
    margin: 0 -0.45rem;
}
.js-reviews-slider .slick-list {
    overflow: visible;
}
.js-reviews-slider .slick-slide {
    padding: 0 0.45rem;
}
.js-reviews-slider .slick-prev,
.js-reviews-slider .slick-next {
    display: none !important;
}

.review-card {
    border-radius: 1.875rem;
    background: #fff;
    padding: 1.25rem;
    display: flex !important;
    flex-direction: column;
    gap: 0.75rem;
    height: 100%;
}
.review-stars {
    font-size: 1.5rem;
    line-height: 1;
    color: #ffae00;
    letter-spacing: 0.1em;
}
.review-author {
    font-weight: 700;
}
.review-text {
    opacity: 0.7;
    margin-bottom: 0;
    flex: 1;
}

/*  Kaspi CTA Section  */
.kaspi-section {
}
.kaspi-box {
    border-radius: 1.25rem;
    background: linear-gradient(180deg, #1e3489 0%, #0e247b 100%);
    padding: 1.875rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    color: #fff;
}
.kaspi-subtitle {
    font-size: 1.25rem;
    font-size: 1.25rem;
    margin: 0;
}
.kaspi-text {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.kaspi-btn {
    gap: 0.5rem;
    width: 21rem;
}
.kaspi-btn img {
    width: 2.0625rem;
    height: 2rem;
}

/* Start Section */
.start-title {
    color: #1e3489;
    margin-bottom: 1.5rem;
}

.start-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    align-items: start;
}

.start-img-wrap {
    position: sticky;
    top: 6.5rem;
    border-radius: 1.875rem;
    overflow: hidden;
}
.start-img {
    width: 100%;
    height: 100%;
    height: 24rem;
    object-fit: cover;
    display: block;
}

.start-cards {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.start-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 4px 123px 0 rgba(0, 0, 0, 0.1);
    color: #1e3489;
}
.start-num {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    margin-bottom: 0.65rem;
}
.start-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
}
.start-card-desc {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: unset;
}

.placement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
}

.placement-card {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
}
.placement-img {
    width: 100%;
    height: 22rem;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-in;
}
.placement-card:hover .placement-img {
    transform: scale(1.03);
}
.placement-label {
    position: absolute;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5.1225rem;
    border: 1px solid #fff;
    background: rgba(217, 217, 217, 0.2);
    box-shadow: 0 4px 45.1px 0 rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10.350000381469727px);
    color: white;
    padding: 0.625rem 1.25rem;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    white-space: nowrap;
}

.income-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
}

.income-card {
    background: #fff;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    border-radius: 1.25rem;
    background: #e8ebf3;
    color: #1e3489;
    justify-content: space-between;
}
.income-card-title {
    font-size: 1.75rem;
    font-weight: 600;
    text-transform: uppercase;
}
.income-card-desc {
    font-weight: 600;
    margin-bottom: 0;
}
.income-card-in {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.income-params-label {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.income-params-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.income-params-list li {
    font-size: 0.9rem;
    padding-left: 1.15rem;
    position: relative;
    font-weight: 600;
}
.income-params-list li::before {
    content: "•";
    position: absolute;
    left: 0.1rem;
    top: -0.3rem;
    color: #1e3489;
    font-size: 1.5rem;
}
.income-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    margin-top: 1rem;
}
.income-stats--2col {
    grid-template-columns: repeat(2, 1fr);
}
.income-stat-card {
    background: #1e3489;
    border-radius: 1rem;
    padding: 1.25rem;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: space-between;
    height: 10.3125rem;
    color: #fff;
}
.income-stat-title {
    font-size: 1.2rem;
    font-weight: 600;
}
.income-stat-row {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    align-items: center;
}

.why-img-wrap {
    border-radius: 1.875rem;
    overflow: hidden;
    flex-shrink: 0;
    height: 100%;
}
.why-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.why-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.why-item {
    padding: 1.25rem;
    border-radius: 1.25rem;
    background: #fff;
    color: #1e3489;
    box-shadow: 0 4px 123px 0 rgba(0, 0, 0, 0.1);
}
.why-item-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.65rem;
}
.why-item-desc {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0;
}

.cta-form-box {
    background: linear-gradient(135deg, #1e3489 0%, #0e247b 100%);
    border-radius: 1.85rem;
    padding: 1.875rem;
    color: #fff;
}
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.cta-form-desc {
    line-height: 1.5;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.cta-input {
    width: 100%;
    height: 3rem;
    border-radius: 6.25rem;
    border: none;
    background: rgba(255, 255, 255);
    padding: 0.625rem 1.25rem;
    font-size: 0.95rem;
    color: #333;
    outline: none;
    transition: box-shadow 0.2s ease-in;
}
.cta-input::placeholder {
    color: #a3a3a3;
}
.cta-input:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}
.cta-form-agree {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: unset;
}
.result{
    font-size: 0.875rem;
}
.page_box{
    width: 70%;
    border-radius: 30px;
    background: white;
    padding: 2rem;
    margin: 3rem auto;
}
.result p{
    margin-bottom: 0!important;
}
.cta-form-agree a {
    color: #fff;
    text-decoration: underline;

}
.cta-form-agree a:hover {
    text-decoration: none;
    text-underline-offset: 2px;
}

.contacts-inner {
    display: grid;
    grid-template-columns: 20rem 1fr;
    gap: 2rem;
    align-items: start;
}
.contacts-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.contacts-title {
    color: #1e3489;
    margin-bottom: 2rem;
}
.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.contacts-label {
    font-weight: 500;
    text-transform: uppercase;
    color: #7b7b7b;
    margin-bottom: 0.65rem;
}
.contacts-value {
    font-weight: 500;
}
.contacts-link {
    transition: opacity 0.2s ease;
}
.contacts-link:hover {
    color: #1e3489;
}

.contacts-socials {
    display: flex;
    gap: 0.65rem;
}
.contacts-social {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 1px solid #1e3489;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3489;
    transition: all 0.25s ease-in;
    font-size: 1.45rem;
}
.contacts-social:hover {
    background: #1e3489;
    border-color: #1e3489;
    color: #fff;
}

.contacts-map {
    overflow: hidden;
    height: 28rem;
}
.contacts-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

footer {
    margin-bottom: 2rem;
}
.footer-inner {
    background: linear-gradient(135deg, #1e3489 0%, #0e247b 100%);
    border-radius: 2.5rem;
    padding: 1.85rem;
    display: grid;
    grid-template-columns: 18rem 15rem 1fr;
    gap: 2rem;
    align-items: start;
    color: #fff;
    position: relative;
}
.ft-img {
    position: absolute;
    height: 18.09713rem;
    width: 50.23069rem;
    left: 2rem;
    pointer-events: none;
}
.footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.footer-logo img {
    height: 5.5rem;
    width: auto;
    display: block;
}
.footer-copy {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-size: 0.8rem;
}
.footer-copy a {
    color: #fff;
}
.footer-copy a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.footer-nav a {
    color: rgba(255, 255, 255);
    text-decoration: underline;
    text-decoration-color: transparent;
    text-decoration-thickness: 0.08rem;
    text-underline-offset: 5px;
    transition: all 0.2s ease-in;
}
.footer-nav a:hover {
    text-decoration-color: #fff;
}

.footer-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
    gap: 1.5rem;
}
.footer-tagline {
    font-weight: 500;
    margin-bottom: 0;
    text-align: right;
    font-size: 1.25rem;
}
.footer-btn {
    width: 20.46875rem;
}
.footer-socials {
    display: flex;
    gap: 0.6rem;
}
.footer-social {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.25s ease;
}
.footer-social:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}
.footer-social svg {
    width: 1.15rem;
    height: 1.15rem;
    display: block;
}

