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

html, body {
    direction: rtl;
    min-height: 100vh;
    background-color: #F5D440;
    font-family: 'Heebo', sans-serif;
}

body{
    margin: 0 11.2%;
    display: flex;
    align-items: center;
}

a{
    color: rgba(0, 0, 0, 0.33);
    text-decoration: none;
    transition: color 0.32s ease;
}

a:hover{
    color:black
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.68rem;
    padding-top: 3.36rem;
    font-size: 1.68rem;
    text-align: right;
}

.content {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 22.4px;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin: 0 auto;
    max-width: 1800px;
    height: min-content;
}

.vertical-line {
    border-left: 1.6px solid #D74F00;
    height: 336px;
    box-shadow: 2.24px 0 5.6px rgba(0, 0, 0, 0.3);
}

.column {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 22.4px;
    max-width: 560px;
    text-align: center;
}

.right-column{
    flex:2;
}

.left-column{
    flex:3;
}

.kado-logo {
    height: 89.6px;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 22.4px;
    max-width: 784px;
}

.qr-code {
    width: 28%;
}

.phone-number {
    direction: ltr;
    font-size: 1.12rem;
    font-weight: 312;
    text-shadow: 2.24px 2.24px 4.48px rgba(0, 0, 0, 0.1);
}

.links{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    /* width: 100%; */
}

.description-text{
    font-size: 1rem;
    font-weight: 200;
    width: 70%;
}

.main-text {
    font-size: 1.34rem;
    text-shadow: 2.24px 2.24px 4.48px rgba(0, 0, 0, 0.2);
}

.rec-image {
    position: relative;
    background-image: url('/assets/landing-page/mobile-rec.png');
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    width: auto;
    height: 100%;
    max-width: 100%;
    margin-right: 33.6px;
    padding-bottom: 33.6px;
    width: 33.6vw;
    max-width: 784px;
}

.cases {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18.4px;
    width: 100%;
    cursor: default;
    overflow: visible;
    padding-left: 33.6px;
}

.case-1 {
    padding-right: 112px;
}

.case-2 {
    padding-right: 33.6px;
}

.case-3 {
    padding-right: 134.4px;
}

.case-4 {
    padding-right: 179.2px;
}

.case-5 {
    padding-right: 22.4px;
}

.case-6 {
    padding-right: 140.8px;
}

.date-text {
    display: inline-block;
    font-size: 1.12rem;
    border-radius: 28px;
    padding: 5.6px 11.2px;
    transition: transform 0.32s ease;
    background-color: white;
    font-weight: 224;
    white-space: nowrap;
}

.verb-text {
    display: inline-block;
    font-size: 1.12rem;
    border-radius: 28px;
    padding: 5.6px 11.2px;
    transition: transform 0.32s ease;
    border: 1px solid white;
    font-weight: 448;
    background-color: transparent;
    white-space: nowrap;
}

.date-text:hover, .verb-text:hover {
    transform: scale(1.08);
}

.dashed-line {
    border-top: 1.12px dashed #000;
    width: 100%;
    margin: 0 auto;
}

.dashed-circle, .dashed-circle-with-tick {
    width: 44.8px;
    height: 44.8px;
    border: 1.12px dashed #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    transition: transform 0.32s ease;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
}

.dashed-circle-with-tick {
    background-image: url('/assets/landing-page/tick-icon.png');
    background-size: 56%;
    background-position: center;
    background-repeat: no-repeat;
}

.dashed-circle:hover, .dashed-circle-with-tick:hover {
    transform: scale(1.08);
}

.whatsapp-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 11.2px;
    width: 100%;
    padding-left: 33.6px;
    padding-top: 33.6px;
}

.whatsapp-text-titile {
    font-size: 1.34rem;
    font-weight: 672;
    color: #000;
}

.whatsapp-icon-big-phone {
    width: 44.8px;
    height: 44.8px;
}

@media (max-width: 1200px) {
    html, body {
        padding: 0 5.6%;
    }

    .vertical-line {
        display: none;
    }

    .content {
        flex-direction: column;
        padding-top: 5.6vh;
        gap: 18.4px;
        flex-wrap: nowrap;
    }
}

@media (max-width: 768px) {
    .header {
        font-size: 1.34rem;
        padding-top: 22.4px;
    }

    .qr-code {
        width: 44.8%;
    }

    .cases {
        flex-direction: column;
        align-items: flex-start;
        gap: 18.4px;
    }
}

@media (max-width: 480px) {
    .main-text {
        font-size: 1.12rem;
    }

    .phone-number {
        font-size: 0.9rem;
    }
}
