.qr__code-car {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 60px;
}

.qr__code-img {
  flex-shrink: 0;
}

.q__rcode-img img {
  max-width: 100%;
  height: auto;
  display: block;
}

.qr__code-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.qr__code-desc {
    flex: 1;
}

.qr__code-desc-first, .qr__code-desc-second {
  font-size: 14px;
  line-height: 19.6px;
  color: #3E3E3E;
  margin-bottom: 20px;
}

span.sel {
   font-weight: 700;
}

.qr__code-desc-second {
  font-weight: 700;
}

.qr__code-car-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    max-width: 100%;
    height: 50px;
    background: linear-gradient(0deg, #FBB040, #FBB040), #034694;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    padding: 14.5px 60.5px;
    font-size: 16px;
    line-height: 20.8px;
    color: #FFFFFF;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 1024px) {
            .qr__code-car {
                gap: 25px;
                margin-bottom: 50px;
            }
            
            .qr__code-img img {
                max-width: 180px; 
            }
            
            .qr__code-car-link {
                width: 280px;
            }
}

@media (max-width: 768px) {
            .qr__code-car {
                flex-direction: column;
                gap: 20px;
                margin-bottom: 40px;
            }

            .qr__code-content {
                display: contents;
            }

            .qr__code-desc {
               order: 1;
            }   
            
            .qr__code-img {
                align-self: center;
                order: 2;
            }

            .uk-margin-medium-top {
                order: 3;
                width: 100%;
            }

            .qr__code-car-link {
                width: 100%;
            }
}
        
@media (max-width: 480px) {
            .qr__code-car {
                margin-bottom: 60px !important;
                gap: 20px;
            }
            
            .qr__code-desc-first, .qr__code-desc-second {
                margin-bottom: 20px;
            }

            .qr__code-img img {
                max-width: 200px;
            }
}

