/* Font Tajawal */
.tajawal-extralight {
    font-family: "Tajawal", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.tajawal-light {
    font-family: "Tajawal", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.tajawal-regular {
    font-family: "Tajawal", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.tajawal-medium {
    font-family: "Tajawal", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.tajawal-bold {
    font-family: "Tajawal", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.tajawal-extrabold {
    font-family: "Tajawal", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.tajawal-black {
    font-family: "Tajawal", sans-serif;
    font-weight: 900;
    font-style: normal;
}

html,
body {
    margin: 0px;
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

svg {
    display: block;
    vertical-align: middle;
}

body {
    font-size: 16px;
    line-height: 24px;
    color: #4b5563;
    font-family: "Tajawal", sans-serif;
    font-weight: 400;
    font-style: normal;
}

a {
    transition: 0.3s ease-in-out;
}

.container {
    width: 100%;
    padding-inline: 16px;
    margin-inline: auto;
}

/* Site Wrapper */
.site_wrapper {}

/* Header */
.site_header {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    position: sticky;
    z-index: 10;
    top: 0;
    background-color: #fff;
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-ring-shadow: 0 0 #0000;
    --tw-ring-offset-shadow: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.site_header .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo_wrapper {}

.logo_wrapper .logo {
    max-width: 224px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo_wrapper .logo .icon {
    width: 36px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.logo_wrapper .logo:hover .icon {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.navigation {}

.navigation ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    display: flex;
    align-items: center;
}

.navigation ul li {}

.navigation ul li a {
    display: block;
    color: #4b5563;
    text-decoration: none;
    padding: 8px 16px;
    line-height: 1;
}

.navigation ul li:hover a,
.navigation ul li a.active {
    color: #b91c1c;
}

.btn {
    font-size: 16px;
    line-height: 1;
    font-family: "Tajawal", sans-serif;
    font-weight: 400;
    font-style: normal;
    border-radius: 50px;
    border: #000 1px solid;
    color: #FFFFFF;
    letter-spacing: -0.3px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn_primary {
    background: #C31D1D;
    border-color: #C31D1D;
}

.btn_primary:hover {
    background: #A31818;
    border-color: #A31818;
}

.btn_white {
    background-color: #fff;
    border-color: #fff;
    color: #991b1b;
}

.btn_outline_white {
    border-color: #fff;
}

.btn_outline_white:hover {
    background-color: #fff;
    color: #991b1b;
}

/* Typo */
h1 {
    margin-block: 0px;
    font-size: 3rem;
    line-height: 1;
    color: #1f2937;
}

h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    margin-block: 0px;
    color: #1f2937;
}

h3 {
    font-size: 1.25rem;
    line-height: 1;
    margin-top: 0;
    color: #1f2937;
}

h4 {
    font-size: 1rem;
    line-height: 1;
    margin-top: 0;
    color: #1f2937;
}

p {
    margin-top: 0px;
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0px;
}

/* Hero Banner */
.hero_wrapper {
    background: linear-gradient(135deg, #8B0000 0%, #C31D1D 100%);
    padding-block: 30px;
}

.hero_wrapper .row {
    display: flex;
    align-items: center;
}

.hero_wrapper .hero_media {
    width: 40%;
}

figure {
    vertical-align: middle;
    margin-block: 0px;
}

.hero_wrapper .hero_media figure {
    display: table;
    margin-inline: auto;
    max-width: 200px;
}

.hero_wrapper .hero_context {
    width: 60%;
}

.hero_wrapper .hero_context h1 {
    color: #fff;
    margin-bottom: 2rem;
}

.hero_wrapper .hero_context {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #fff;
}

.hero_wrapper .hero_context p {
    margin-bottom: 2rem;
}

.hero_wrapper .hero_context .button_block {
    display: flex;
    gap: 20px;
}

.hero_wrapper .hero_context .button_block .btn {
    padding-inline: 2rem;
    font-weight: 500;
}

/* Features Section */
.features_wrapper {
    padding-block: 80px;
}

.section_header {
    text-align: center;
    margin-bottom: 70px;
}

.section_header h2 {
    margin-bottom: 1rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card {
    position: relative;
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-ring-shadow: 0 0 #0000;
    --tw-ring-offset-shadow: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 0.75rem;
}

.transition {
    transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card .feature_icon {
    background: linear-gradient(135deg, #C31D1D 0%, #8B0000 100%);
    margin-bottom: 1.25rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50px;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card .feature_icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.card h3 {
    margin-bottom: 0.75rem;
}

/* How it works */
.how_it_works {
    background-color: #f9fafb;
    padding-block: 80px;
}

.how_it_works .card .top_element {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #B91C1A;
    border-radius: 50px;
    font-size: 20px;
}

.how_it_works .card {
    text-align: center;
    padding: 2rem;
}

.how_it_works .card .icon {
    width: 4rem;
    height: 4rem;
    color: #b91c1c;
    margin-inline: auto;
    margin-bottom: 1rem;
}

.how_it_works .card h3 {
    font-weight: 600;
}

.text_center {
    text-align: center;
}

.section_footer {
    margin-top: 4rem;
}

.how_it_works .btn {
    padding: 15px 2rem;
    font-weight: 500;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

/* Download Section */
.app_download_wrapper {
    padding-block: 80px;
    background: linear-gradient(135deg, #8B0000 0%, #C31D1D 100%);
}

.app_download_wrapper .row {
    align-items: center;
}

.app_download_wrapper .media_wrapper {
    width: 40%;
}

.app_download_wrapper .media_wrapper .media_block {
    position: relative;
    display: table;
    margin-inline: auto;
    max-width: 220px;
    transform: rotate(3deg);
    overflow: hidden;
    /*background-color: #fff;
    padding: 0.5rem;
    border-radius:0.5rem;
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);*/
}

.app_download_wrapper .media_wrapper .media_block .figure {
   /*
    background-color: #fff;
    padding: 0.5rem;
    border-radius: 1.5rem;
    transform: rotate(3deg);

    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    */
}

.app_download_wrapper .media_wrapper .media_block .figure svg {
    color: #b91c1c;
    width: 20rem;
    height: 20rem;
}

.move_element {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background-color: #facc15;
    color: #7f1d1d;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 50px; display: none;
}

.app_download_wrapper .context_wrap {
    width: 60%;
}

.app_download_wrapper .context_wrap h2 {
    color: #fff;
    margin-bottom: 2rem;
}

.app_download_wrapper .context_wrap {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #fff;
}

.app_download_wrapper .context_wrap p {
    margin-bottom: 2rem;
}

.app_download_wrapper .context_wrap .button_block {
    display: flex;
    gap: 20px;
}

.app_download_wrapper .context_wrap .button_block .image_btn {
    max-width: 160px; transition: 0.3s ease-in-out;
}

.app_download_wrapper .context_wrap .button_block .image_btn:hover {
    /* opacity: 0.7; */
    transform: scale(1.025);
}

/* Contact Wrapper */
.contact_wrapper {
    padding-block: 80px;
}

.contact_grid_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.bg_color {
    background-color: #f9fafb;
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.contact_form_block,
.contact_details_block {
    padding: 2rem;
    border-radius: 0.75rem;
}

.contact_form_block h3,
.contact_details_block h3 {
    margin-bottom: 1.5rem;
}

.feild_row+.feild_row {
    margin-top: 1rem;
}

.feild_row label {
    display: block;
    color: #374151;
    margin-bottom: 0.5rem;
}

.contact_form_block .form_control {
    border: #d1d5db 1px solid;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    vertical-align: middle;
    font-family: "Tajawal", sans-serif;
}

.form_control:focus {
    outline: #ef4444 2px solid;
}

.contact_form_block .btn.w-full {
    width: 100%;
}

.contact_form_block button {
    font-weight: 500;
    cursor: pointer;
    margin-top: 1rem;
}

.contact_details_block .details {}

.contact_details_block .details .flex {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact_details_block .details .flex+.flex {
    margin-top: 1.5rem;
}

.contact_details_block .details .flex svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #b91c1c;
    flex-shrink: 0;
}

.contact_details_block .details h4 {
    font-weight: 500;
    margin-bottom: 0px;
}

.social_wrap {
    margin-top: 2rem;
}

.social_wrap h4 {
    font-weight: 500;
    margin-bottom: 1rem;
}

.social_links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social_links a {
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50px;
    background-color: #B91C1D;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.social_links a svg {
    width: 1.25rem;
}


/* Footer */
.site_footer {
    padding-block: 3rem;
    background-color: #1f2937;
    color: #9ca3af;
}

.footer_top_row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer_top_row .col_item>h4 {
    color: #fff;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 1rem;
}

.logo_place {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.logo_place .icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50px;
    background-color: #B91C1D;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo_place .icon span {
    color: #fff;
    font-weight: 700;
}

.logo_place span.text {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: #fff;
}

.site_links {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.site_links li {}

.site_links li+li {
    margin-top: 8px;
}

.site_links li a {
    color: #9ca3af;
    display: inline-block;
    text-decoration: none;
    line-height: 1;
}

.site_links li:hover a {
    color: #fff;
}

.subscription_form {
    /* display: flex;
    align-items: center; */
    overflow: hidden;
}

.subscription_form input {
    color: #1E293B;
    padding: 0.5rem 1rem;
    background-color: #fff;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    border: none;
    font-family: "Tajawal", sans-serif;
}



.subscription_form input:focus {
    outline: none;
}

.subscription_form button {
    background-color: #b91c1c;
    padding: 0.5rem 1rem;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    color: #fff;
    border: none;
    cursor: pointer;
}

.subscription_form button:hover {
    background-color: #991B1A;
}

.subscription_form button svg {
    width: 1.25rem;
    height: 1.5rem;
}


.footer_bottom_row {
    border-top: #374151 1px solid;
    padding-top: 1.5rem;
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #9ca3af;
    margin-bottom: 0;
}

.social_icon {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social_icon a {
    color: #9ca3af;
}

.social_icon a:hover {
    color: #fff;
}

.social_icon a svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Humbergur Icon */
#nav-icon2 {
    width: 60px;
    height: 45px;
    position: relative;
    -webkit-transform: rotate(0deg) scale(0.5);
    -moz-transform: rotate(0deg) scale(0.5);
    -o-transform: rotate(0deg) scale(0.5);
    transform: rotate(0deg) scale(0.5);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    margin-left: -15px;
  }  
#nav-icon2 span {
    display: block;
    position: absolute;
    height: 9px;
    width: 50%;
    background: #b91c1c;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }
  
  #nav-icon2 span:nth-child(even) {
    left: 50%;
    border-radius: 0 9px 9px 0;
  }
  
  #nav-icon2 span:nth-child(odd) {
    left:0px;
    border-radius: 9px 0 0 9px;
  }
  
  #nav-icon2 span:nth-child(1), #nav-icon2 span:nth-child(2) {
    top: 0px;
  }
  
  #nav-icon2 span:nth-child(3), #nav-icon2 span:nth-child(4) {
    top: 18px;
  }
  
  #nav-icon2 span:nth-child(5), #nav-icon2 span:nth-child(6) {
    top: 36px;
  }
  
  #nav-icon2.open span:nth-child(1),#nav-icon2.open span:nth-child(6) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  #nav-icon2.open span:nth-child(2),#nav-icon2.open span:nth-child(5) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  
  #nav-icon2.open span:nth-child(1) {
    left: 5px;
    top: 7px;
  }
  
  #nav-icon2.open span:nth-child(2) {
    left: calc(50% - 5px);
    top: 7px;
  }
  
  #nav-icon2.open span:nth-child(3) {
    left: -50%;
    opacity: 0;
  }
  
  #nav-icon2.open span:nth-child(4) {
    left: 100%;
    opacity: 0;
  }
  
  #nav-icon2.open span:nth-child(5) {
    left: 5px;
    top: 29px;
  }
  
  #nav-icon2.open span:nth-child(6) {
    left: calc(50% - 5px);
    top: 29px;
  }


/* Mobile Button */
.app_download_for_mobile {
    text-align: center;
    margin-top: 3rem;
}

/* Form success */
.successfull, .warning {color: green; text-transform: capitalize; font-size: 16px; line-height: 24px;    margin-top: 1rem;
    text-align: center; font-weight: 500;}
.warning {color: orange;}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    #nav-icon2 {
        display: none;
    }
    .app_download_for_mobile {display: none;}
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1312px;
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1536px;
    }
}

@media screen and (max-width:1024px){
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
     .how_it_works .grid {
        row-gap: 3.25rem;
    }
    .app_download_wrapper .media_wrapper .media_block .figure svg {
        width: 15rem;
        height: 15rem;
    }
    .app_download_wrapper .context_wrap .button_block .image_btn {
        max-width: 140px;
    }
   /* .app_download_wrapper .row {
        flex-direction: column;
        row-gap: 80px;
    }
    .app_download_wrapper .context_wrap {
        width: 100%; text-align: center;
    }
    .app_download_wrapper .context_wrap .button_block {
        justify-content: center;
    }
    .app_download_wrapper .media_wrapper {
        width: 100%;
    }
    .contact_grid_wrap {
        grid-template-columns: repeat(1, 1fr);
    } */


    .footer_top_row {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer_top_row .col_item:last-child {
        grid-column: 3 / 1;
    }
}

@media screen and (max-width:767px){
    h1 {
        font-size: 2.25rem;
    }
    .app_download {
        display: none;
    }

    .navigation {
        padding-block: 100px;
        position: fixed;
        top: -75vh;
        left: 0;
        height: 100vh;
        width: 100vw;
        background-color: #fff;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
    }
    .menu_open .navigation {
        top: 0px;
        opacity: 1;
        visibility:visible;
    }
    .navigation ul {
        flex-direction: column;
    }
    .navigation ul li a {
        line-height: 1.5;
        font-size: 20px;
    }
    .hero_wrapper {
        padding-block: 48px;
    }
    .hero_wrapper .row {
        flex-direction: column;
        row-gap: 48px;
    }
    .hero_wrapper .hero_context, .hero_wrapper .hero_media {
        width: 100%;
    }
    .features_wrapper, .features_wrapper, .how_it_works, .app_download_wrapper, .contact_wrapper {
        padding-block: 48px;
    }
    .section_header {
        margin-bottom: 48px;
    }
    .section_footer {
        margin-top: 3rem;
    }
    .grid {
        grid-template-columns: repeat(1, 1fr);
    }
   .app_download_wrapper .row {
        flex-direction: column;
        row-gap: 48px;
    }
    .app_download_wrapper .context_wrap {
        width: 100%; text-align: center;
    }
    .app_download_wrapper .context_wrap .button_block {
        justify-content: center;
    }
    .app_download_wrapper .media_wrapper {
        width: 100%;
    }
    .contact_grid_wrap {
        grid-template-columns: repeat(1, 1fr);
    } 
    .app_download_wrapper .context_wrap .button_block .image_btn {
        max-width: 160px;
    }
    .footer_top_row {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer_top_row .col_item:last-child {
        grid-column: 2 / 2;
    }
    .app_download_wrapper .context_wrap .button_block {
        gap: 16px;
    }
}

@media screen and (max-width:639px){
    .footer_top_row {
        grid-template-columns: repeat(1, 1fr);
   }
   .footer_top_row .col_item:last-child {
    grid-column: 1;
}
   .footer_bottom_row {
        flex-direction: column;
        row-gap: 1.5rem;
    }
}