@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&family=Cairo:wght@200..1000&display=swap');

* {
    font-family: "Cairo", sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: clip;
}

html {
    scroll-behavior: smooth;
}

:root {
    --main-color: #3533cd;
    --second-color: #000000;
    --bg-img-color: #ff7878;
    --gray-color: gray;
    --font-amiri: "Amiri", sans-serif
}

body {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 20px 0 0;
}

.arabic {
    direction: rtl;
}

.chebka {
    background-image: linear-gradient(0deg, #41393920 1px, transparent 1px), linear-gradient(-90deg, #41393920 1px, #00000000 1px);
    background-size: 20px 20px;
}

@media (max-width: 430px) {
    body {
        gap: 20px;
        padding: 10px 0 0;
    }

    .chebka {
        background-image: linear-gradient(0deg, #41393920 1px, transparent 1px), linear-gradient(-90deg, #41393920 1px, #00000000 1px);
        background-size: 15px 15px;
    }
}

.container {
    padding: 0 100px;
    overflow: visible;
}

@media (max-width: 430px) {
    .container {
        padding: 0 20px;
    }
}

.cadre {
    /* background: linear-gradient(to right, #000000 10%, #3533cd);
            box-shadow: 0 4px 10px 5px rgba(0, 0, 0, 0.5);*/
    border-top: 1px solid;
    border-bottom: 1px solid;
}

/*@media (max-width: 430px) {
            .background-linear {
                box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.5);
            }
        } */

/* ~~~~~~~~~~~~~ CTA button ~~~~~~~~~~~~~ */


.cta {
    text-decoration: none;
    background-color: #fff;
    color: #000;
    font-size: 18px;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid;
    transition: 0.3s ease;
    width: fit-content;
    margin: auto;
}

.cta.black {
    background-color: #000000;
    color: #ffffff;
    border: none;
}

.cta:hover {
    transform: scale(0.9);
}

/* ~~~~~~~~~~~~~ CTA phone button ~~~~~~~~~~~~~ */
@media (max-width: 430px) {

    .cta {
        font-size: 14px;
        padding: 10px;
        text-align: center;
    }
}

/* ~~~~~~~~~~~~~ Title of sections ~~~~~~~~~~~~~ */
.title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

/*.title.white {
            color: white;
        } */

.title p {
    text-transform: uppercase;
    font-style: italic;
    font-weight: 600;
    width: 100%;
}

.title h2 {
    font-size: 60px;
    width: 855px;
    line-height: 100%;
}

/* .title.white h2 {
            text-shadow: 0 4px 15px rgba(53, 51, 205, 1);
        } * /

        /* ~~~~~~~~~~~~~ Title of phone sections ~~~~~~~~~~~~~ */
@media (max-width: 430px) {
    .title {
        gap: 5px;
        padding: 0 10px;
    }

    .title h2 {
        font-size: 36px;
        width: 100%;
        line-height: 105%;
    }

    .title p {
        font-size: 12px;
    }
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* Start header */
.header {
    display: flex;
    flex-direction: column;
    gap: 140px;
}

.header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    background-color: #ffffff;
    border-radius: 50px;
    padding: 0 30px;
    height: 60px;
    position: fixed;
    left: 100px;
    right: 100px;
    z-index: 100;
    direction: rtl;
    transition: top 0.2s ease;
    border: 1px solid;
}

.header nav .online {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row-reverse;
}

.header nav .online span {
    width: 15px;
    height: 15px;
    background-color: #3cdd1c;
    border-radius: 50%;
    animation: status 0.5s infinite alternate;
    margin-left: 6px;
}

.header nav .online p {
    color: #c0c0c0;
}

.header nav .links {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-direction: row-reverse;
}

.header nav .links a {
    color: rgb(0, 0, 0);
    font-size: 18px;
    text-decoration: none;
}

.header nav .links a:nth-last-child(1) {
    margin-left: 250px;
}

.header nav svg {
    display: none;
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.header nav.active svg {
    transform: rotate(180deg);
}

.header .content {
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 150px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.header .content img {
    border: 1px solid;
    border-radius: 100%;
}

.header .content div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.header .content div h1 {
    font-size: 42px;
    line-height: 150%;
    width: 95%;
    font-weight: 500;
}

.header .content div h1 b {
    display: inline-block;
    font-weight: 400;
    font-family: var(--font-amiri);
    color: #ff0000;
}

.header .content div p {
    font-size: 20px;
    font-weight: 500;
}

.header .content div span {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    padding: 0 20px;
}

.header .content div span a:nth-last-child(1) {
    color: #000;
    background-color: #FFF;
    border: 1px solid;
    box-shadow: none;
}

/* End header */
/* Start phone header */
@media (max-width: 430px) {
    .header {
        gap: 50px;
        padding: 0;
    }

    .header nav {
        padding: 0 30px 0 24px;
        height: 44px;
        left: 20px;
        right: 20px;
        z-index: 100;
    }

    .header nav .online span {
        width: 10px;
        height: 10px;
    }

    .header nav .online p {
        font-size: 12px;
    }

    .header nav .links {
        gap: 10px;
        flex-direction: column;
        position: absolute;
        padding: 10px;
        right: 0;
        align-items: end;
        background-color: #fff;
        border-radius: 0 0 10px 10px;
        transform: rotateX(90deg);
        border: 1px solid;
    }

    .header nav.active {
        border-radius: 50px 50px 0 50px;
    }

    .header nav.active .links {
        transform: rotateX(0deg);
        top: 44px;
    }

    .header nav .links a {
        font-size: 18px;
        text-decoration: none;
    }

    .header nav .links a:nth-last-child(1) {
        margin-left: 0;
    }

    .header nav svg:nth-of-type(1) {
        display: block;
    }

    .header .content {
        margin-top: 104px;
        gap: 10px;
        padding: 0 5px;
    }

    .header .content img {
        display: none;
    }

    .header .content div {
        gap: 0px;
    }

    .header .content div h1 {
        font-size: 26px;
        width: 90%;
        line-height: 120%;
        font-weight: 400;
        text-align: start;
    }

    .header .content div h1 b {
        font-size: 24px;
    }

    .header .content div p {
        font-size: 11px;
        width: 90%;
        margin: 10px 0 0;
    }

    .header .content div span {
        margin-top: 30px;
        gap: 15px;
    }
}

/* End phone header */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Start Service */
.header .service {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.header .service .card {
    padding: 20px 40px;
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid;
}

.header .service .card p {
    font-size: 20px;
}

.header .service .card h2 {
    font-size: 28px;
    line-height: 1;
}

.header .service .card h4 {
    height: 50px;
    font-size: 17px;
    color: #000000;
    text-align: end;
    background-color: #ffffff;
    padding: 2px 0;
    line-height: 1;
    text-align: center;
    align-content: center;
    direction: rtl;
    border: 1px solid;
}

.header .service .card ul li {
    list-style-position: inside;
    padding-right: 1px;
}

/* End Service */
/* Start phone Service */
@media (max-width: 430px) {
    .header .service {
        display: grid;
        grid-template-columns: 80%;
        justify-content: center;
        gap: 20px;
    }

    .header .service .card {
        padding: 15px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 90%;
    }

    .header .service .card p {
        font-size: 16px;
    }

    .header .service .card h2 {
        font-size: 18px;
    }

    .header .service .card h4 {
        font-size: 11px;
        height: 30px;
    }

    .header .service .card ul li {
        font-size: 10px;
    }
}

/* End phone Service */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Start Process */
.process {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
}


.process .steps {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
    position: relative;
    padding-top: 60px;
}

.process .steps>div:not(:nth-last-child(1)) {
    width: 100%;
}

.process .steps .left {
    display: flex;
    flex-direction: row-reverse;
}

.process .steps .card {
    width: 500px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 20px;
    border: 1px solid black;
    background-color: #FFFFFF;
}

.process .steps .card h3 {
    font-size: 30px;
    font-weight: 500;
    font-family: var(--font-amiri);
    direction: rtl;
    color: red;
}

.process .steps .card p {
    font-size: 16px;
}

.process .steps .card ul li {
    font-weight: 600;
    list-style-position: inside;
    font-style: italic;
}

.process .timeline {
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.process .timeline svg {
    padding: 13px;
    border: 1px solid rgba(0, 0, 0, 100%);
    border-radius: 50%;
}

.process .timeline .groupe {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.process .timeline .groupe .circle {
    color: black;
    font-size: 26px;
}

.process .timeline .groupe .line {
    width: 1px;
    height: 122px;
    background-color: #000000;
}

/* End Process */
/* Start phone Process */
@media (max-width: 430px) {
    .process {
        align-items: start;
        gap: 30px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .process .steps {
        width: 100%;
        padding-top: 30px;
        gap: 10px;
        overflow: visible;
    }

    .process .steps>div:not(:nth-last-child(1)) {
        width: auto;
    }

    .process .steps .left {
        flex-direction: row;
    }

    .process .steps .card {
        width: fit-content;
        height: fit-content;
        justify-content: space-between;
        gap: 10px;
        padding: 10px;
    }

    .process .steps .card h3 {
        font-size: 19px;
    }

    .process .steps .card p {
        font-size: 11px;
    }

    .process .steps .card ul li {
        font-weight: 500;
        font-size: 11px;
        padding-right: 1px;
    }

    .process .timeline {
        display: none;
    }

    .process a {
        margin: auto
    }
}

/* End phone Process */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Start Template 
        .templates {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 50px;
        }

        .templates .demos {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            margin-bottom: 100px;
        }

        .templates .demos .card {
            display: flex;
            align-items: center;
            flex-direction: column;
            position: relative;
        }

        .templates .demos .card img {
            width: 600px;
            height: 340px;
        }

        .templates .demos .card .info {
            position: absolute;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;
            border-radius: 20px;
            background-color: rgba(0, 0, 0, 0.5);
            box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
            bottom: -50%;
            transform: translateY(-50%);
            width: 60%;
        }

        .templates .demos .card .info h3 {
            font-size: 32px;
            font-weight: 600;
            color: #FFFFFF;
            letter-spacing: 1.5px;
        }

        .templates .demos .card .info a {
            color: #FFFFFF;
            text-decoration: none;
            padding: 10px 20px;
            background-color: #000000;
            border-radius: 8px;
            box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.6);
            transition: all 0.3s ease;
        }

        .templates .demos .card .info a:hover {
            box-shadow: none;
            transform: scale(1.1);
        }

        .templates .content {
            display: grid;
            grid-template-columns: 45% 45%;
            align-items: center;
            justify-content: space-between;
        }

        .templates .content .template-process {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .templates .content .template-process h3 {
            font-size: 36px;
            letter-spacing: 1.5px;
        }

        .templates .content .template-process p {
            color: #6C6C6C;
            line-height: 130%;
        }

        .templates .content .template-process ul {
            padding-right: 16px;
        }

        .templates .content .template-process ul li {
            font-size: 20px;
            list-style: decimal;
            line-height: 200%;
            list-style-position: inside;
        }

        .templates .content .FAq {
            display: flex;
            flex-direction: column;
            gap: 20px;
            color: #FFFFFF;
        }

        .templates .content .FAq .Q {
            padding: 15px 20px;
            display: flex;
            flex-direction: column;
            gap: 5px;
            background-color: rgba(0, 0, 0, 0.8);
            border-radius: 8px;
            width: -webkit-fill-available;
        }

        .templates .content .FAq .Q h5 {
            font-size: 19px;
        }

        .templates .content .FAq .Q p {
            font-size: 16px;
        }
        */
/* End Template */
/* Start phone Template
        @media (max-width: 430px) {
            .templates {
                padding-top: 0px;
                gap: 30px;
            }

            .templates .demos {
                gap: 50px;
                width: 100%;
                margin-bottom: 0;
                flex-direction: column;
            }

            .templates .demos .card img {
                width: 100%;
                height: 100%;
            }

            .templates .demos .card .info {
                padding: 10px;
                gap: 10px;
                border-radius: 10px;
                bottom: -80px;
                width: 70%;
            }

            .templates .demos .card .info h3 {
                font-size: 20px;
                font-weight: 500;
            }

            .templates .demos .card .info a {
                font-size: 14px;
                padding: 7px 10px;
            }

            .templates .content {
                grid-template-columns: 100%;
                gap: 20px;
            }

            .templates .content .template-process {
                gap: 20px;
                margin-top: 20px;
            }

            .templates .content .template-process h3 {
                font-size: 24px;
            }

            .templates .content .template-process p {
                font-size: 12px;
            }

            .templates .content .template-process ul {
                padding-right: 0;
            }

            .templates .content .template-process ul li {
                font-size: 12px;
            }

            .templates .content .FAq {
                gap: 10px;
            }

            .templates .content .FAq .Q {
                padding: 10px 15px;
                height: fit-content;
                gap: 10px;
            }

            .templates .content .FAq .Q h5 {
                font-size: 16px;
            }

            .templates .content .FAq .Q p {
                font-size: 14px;
            }
        }
        */
/* End phone Template */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Start pricing */
.pricing {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: 20px 0;
}

.pricing .packages {
    display: grid;
    grid-template-columns: 0 auto auto auto 0;
    justify-content: space-between;
    gap: 20px;
}

.pricing .packages .pack {
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
    background-color: #FFFFFF;
    border-radius: 8px;
    justify-content: space-between;
    border: 2px solid #000000;
}

.pricing .packages .pack>div {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.pricing .packages .pack div .price,
.pricing .form .price {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pricing .packages .pack div .price>span {
    padding: 5px 15px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 8px;
    border: 1px solid;
    text-transform: uppercase;
    width: fit-content;
    letter-spacing: 1px;
    font-size: 14px;
}

.pricing .packages .pack div .price h3,
.pricing .form .price h3 {
    font-size: 50px;
    text-transform: uppercase;
    direction: ltr;
    letter-spacing: 5px;
    display: flex;
    align-items: center;
}

.pricing .packages .pack div .price h3 span,
.pricing .form .price h3 span {
    font-size: 24px;
    text-decoration: line-through;
    font-weight: 300;
    color: black;
    background: transparent !important;
    padding-right: 5px;
}

.pricing .packages .pack div .price h3 b,
.pricing .form .price h3 b {
    font-size: 25px;
}

.pricing .packages .pack div .price p,
.pricing .form .price p {
    font-size: 16px;
    font-weight: 600;
}

.pricing .packages .pack div .details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing .packages .pack div .details p {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 5px;
}

.pricing .packages .pack div .details p svg {
    width: 34px;
    height: 20px;
}

.pricing .packages .pack a {
    padding: 15px;
    font-size: 14px;
    background-color: #ffffff;
    width: fit-content;
    text-decoration: none;
    color: #000000;
    border-radius: 8px;
    border: 1px solid;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing .packages .pack a:hover {
    transform: scale(1.1);
}

/*  
.pricing .blur,
.pricing .blur-success {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.1s ease-in-out;
    transform: scale(0);
}

.pricing .form {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 50%;
    transform: translate(-50%, 120%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #000000;
    padding: 20px 10px;
    border-radius: 12px;
    gap: 30px;
    z-index: 1000;
    transition: all 0.1s ease;
}

.pricing.show .blur {
    transform: scale(1);
}

.pricing.show .form {
    transform: translate(-50%, -50%);
}

.pricing .form svg {
    position: absolute;
    top: 20px;
    right: 10px;
    cursor: pointer;
}

.pricing .form .price span {
    padding: 5px 15px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 8px;
    text-transform: uppercase;
    width: fit-content;
    letter-spacing: 1px;
    font-weight: 300;
    font-size: 14px;
}

.pricing .form .price h3 {
    color: #FFFFFF;
}

.pricing .form .price p {
    color: #FFFFFF;
    width: 70%;
}

.pricing .form form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    align-items: center;
}

.pricing .form form input,
.pricing .form form textarea {
    font-size: 17px;
    color: #FFFFFF;
    padding: 15px;
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    background-color: transparent;
    outline: none;
    width: -webkit-fill-available;
    resize: none;
}

.pricing .form form input::placeholder,
.pricing .form form textarea::placeholder {
    color: #FFFFFF;
}

.pricing .form form input:focus,
.pricing .form form textarea:focus {
    background-color: rgba(255, 255, 255, 0.5);
}

.pricing .form form input[type="submit"] {
    background-color: #FFFFFF;
    border: none;
    width: fit-content;
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000000;
}

.pricing .form form input[type="submit"]:hover {
    transform: scale(0.9);
}

.pricing #success-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    border-radius: 8px;
    background-color: #000000;
    color: #ffffff;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 50%;
    z-index: 1000;
    transform: scale(0);
    transition: all 0.2s ease;
}

.pricing.show-success #success-form {
    transform: scale(1);
    transform: translate(-50%, -50%);
}

.pricing.show-success .blur-success {
    transform: scale(1);
}

.pricing #success-form svg:nth-child(1) {
    position: absolute;
    left: 40px;
    top: 40px;
    cursor: pointer;
}

.pricing #success-form h3 {
    font-size: 40px;
}
*/
.pricing section {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    width: 100%;
    align-items: center;
    border-bottom: 1px solid #00000050;
}

.pricing section span {
    margin-bottom: 30px;
}

.pricing section span h2 {
    font-size: 55px;
    font-family: var(--font-amiri);
    color: red;
}

.pricing section span h3 {
    font-size: 26px;
    font-family: var(--font-amiri);
}

.pricing section span h4 {
    font-size: 26px;
    font-weight: 400;
}

.pricing section img {
    width: 30%;
}

/* End pricing */
/* Start phone pricing */
@media (max-width: 430px) {
    .pricing {
        padding: 40px 0;
        gap: 30px;
    }

    .pricing .packages {
        display: grid;
        grid-template-columns: 0 90% 90% 90% 0;
        gap: 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
    }

    .pricing .packages::-webkit-scrollbar {
        display: none
    }

    .pricing .packages .pack {
        padding: 20px;
        scroll-snap-align: center;
        flex-shrink: 0;
    }

    .pricing .packages .pack a {
        padding: 12px 10px;
        font-size: 12px;
    }

    .pricing .packages .pack>div {
        gap: 20px;
    }

    .pricing .packages .pack div .price h3 span,
    .pricing .form .price span {
        padding: 5px 10px;
        border-radius: 4px;
        font-size: 16px;
        font-weight: 600;
    }

    .pricing .packages .pack div .price h3,
    .pricing .form .price h3 {
        font-size: 40px;
    }

    .pricing .packages .pack div .price p,
    .pricing .form .price p {
        font-size: 12px;
    }

    .pricing .packages .pack div .details {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .pricing .packages .pack div .details p {
        font-size: 14px;
    }

    .pricing .packages .pack div .details li {
        font-size: 12px;
    }

    .pricing .form {
        width: 80%;
    }

    .pricing .form .price p {
        width: 100%;
    }

    .pricing #success-form {
        width: 80%;
        height: 50%;
        padding: 20px;
    }

    .pricing #success-form svg:nth-child(1) {
        left: 20px;
        top: 20px;
    }

    .pricing #success-form h3 {
        font-size: 24px;
    }

    .pricing section {
        display: flex;
        flex-direction: column;
        width: 90%;
        margin: auto;
    }

    .pricing section span h2 {
        font-size: 21px;
    }

    .pricing section span h3 {
        font-size: 18px;
    }

    .pricing section span h4 {
        font-size: 18px;
    }

    .pricing section img {
        width: 80%;
    }
}

/* End phone pricing */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Start FAQ */
.FAQ {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.FAQ .qs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 100px;
}

.FAQ .qs .q {
    padding: 20px 100px;
    border-radius: 12px;
    border: 1px solid black;
}

.FAQ .qs .q h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.FAQ .qs .q p {
    font-size: 20px;
    letter-spacing: 1.5px;
}

/* End FAQ */
/* Start phone FAQ */
@media (max-width:430px) {

    .FAQ {
        gap: 30px;
    }

    .FAQ .qs {
        padding: 0;
    }

    .FAQ .qs .q {
        padding: 10px;
    }

    .FAQ .qs .q h3 {
        font-size: 18px;
    }

    .FAQ .qs .q p {
        font-size: 11px;
        letter-spacing: 1px;
    }
}

/* End phone FAQ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Start Portfolio */
.portfolio {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.portfolio .projects {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.portfolio .projects .project {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.portfolio .projects .project img {
    width: 650px;
    height: 290px;
}

.portfolio .projects .project .info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #000000;
}

.portfolio .projects .project .info svg {
    margin-right: 10px;
    width: 130px;
}

.portfolio .projects .project .info p:nth-child(2) {
    font-size: 14px;
    color: #adadad;
}

.portfolio .projects .project .info p:nth-child(4) {
    font-size: 20px;
    font-weight: 400;
}

.portfolio .projects .project .info span {
    width: 100%;
    height: 1px;
    background-color: #000000;
}

.portfolio .projects .project .info a {
    color: var(--main-color);
}

.portfolio .projects .project .info>a {
    color: #fff;
    background-color: #000;
    width: fit-content;
    padding: 9px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    margin-left: 10px;
}

.portfolio .projects .project .info a:hover {
    box-shadow: none;
    transform: scale(1.1);
}

/* End Portfolio */
/* Start phone Portfolio */
@media (max-width: 430px) {
    .portfolio {
        padding-bottom: 40px;
        gap: 30px;
    }

    .portfolio .projects .project {
        flex-direction: column-reverse;
        gap: 10px;
        width: 100%;
    }

    .portfolio .projects .project img {
        width: 100%;
        height: 100%;
    }
}

/* End phone Portfolio */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Start blog */
.blog {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding-bottom: 50px;
}

.blog .posts {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    gap: 30px;
}

.blog .posts iframe {
    width: 30%;
}

/* End blog */
/* Start phone blog */
@media (max-width: 430px) {
    .blog .posts {
        flex-direction: column;
    }

    .blog .posts iframe {
        width: 100%;
    }
}

/* End phone blog */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Start Contact */
.contact {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.contact>p {
    font-size: 24px;
    width: 70%;
    text-align: center;
    color: #000;
}

.contact .cards {
    display: grid;
    grid-template-columns: 590px 590px;
    justify-content: space-evenly;
    width: 100%;
    gap: 30px;
}

.contact .cards .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #000000d9;
    padding: 20px 10px;
    border-radius: 12px;
    align-items: center;
    height: 530px;
}

.contact .cards .card h2 {
    color: #fff;
    font-size: 30px;
}

.contact .cards .card img {
    width: 200px;
    height: 200px;
}

/* .contact .cards .card.form form {
            display: flex;
            flex-direction: column;
            gap: 25px;
            width: 100%;
            align-items: center;
        }

        .contact .cards .card.form form input {
            font-size: 17px;
            color: #fff;
            padding: 15px;
            border: 1px solid #fff;
            border-radius: 8px;
            background-color: transparent;
            outline: none;
            width: -webkit-fill-available;
            align-content: center;
        }

        .contact .cards .card.form form input::placeholder {
            color: #fff;
        }

        .contact .cards .card.form form input:focus {
            background-color: rgba(255, 255, 255, 0.5);
        }

        .contact .cards .card.form form input[type="submit"] {
            background-color: var(--main-color);
            border: none;
            width: fit-content;
            padding: 15px 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #fff;
        }

        .contact .cards .card.form form input[type="submit"]:hover {
            transform: scale(1.1);
        } */

.contact .cards .card.form>p {
    font-size: 13px;
    color: #c0c0c0;
}

.contact .cards .card div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-direction: row-reverse;
    gap: 10px;
}

.contact .cards .card div a {
    padding: 10px 20px;
    border-radius: 8px;
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact .cards .card div a:hover {
    transform: scale(0.9);
}

.contact .cards .card.media div:nth-of-type(1) a:nth-child(1) {
    background-color: #0866FF;
}

.contact .cards .card.media div:nth-of-type(1) a:nth-child(2) {
    background: linear-gradient(to bottom right, var(--main-color)10%, #ff0004);
}

.contact .cards .card.form div a:nth-child(1) {
    background-color: #25D366;
}

.contact .cards .card.media div:nth-of-type(2) a:nth-child(1) {
    background-color: #0A66C2;
}

.contact .cards .card.media div:nth-of-type(2) a:nth-child(2) {
    background-color: #000;
}

.contact .cards .card.media div:nth-of-type(2) a:nth-child(1) p {
    color: #fff;
}

.contact .cards .card.form div:nth-of-type(1) a:nth-child(2) {
    background-color: #000000;
}

.contact .cards .card div a p {
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
    width: max-content;
}

/* End Contact */
/* Start phone Contact */
@media (max-width: 430px) {
    .contact {
        gap: 30px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .contact>p {
        font-size: 12px;
        width: 100%;
    }

    .contact .cards {
        display: grid;
        grid-template-columns: 100%;
        justify-content: space-between;
        width: 100%;
        gap: 20px;
    }

    .contact .cards .card,
    .pricing .form {
        height: fit-content;
        gap: 15px;
    }

    .contact .cards .card h2 {
        font-size: 18px;
    }

    .contact .cards .card img {
        width: 150px;
        height: 100%;
    }

    /*             .contact .cards .card.form form input {
                font-size: 14px;
                padding: 12px;
            }

            .contact .cards .card.form form input[type="submit"] {
                font-size: 14px;
                padding: 15px 10px;
            } */

    .contact .cards .card.form>p {
        font-size: 10px;
    }

    .contact .cards .card div {
        overflow: scroll;
        border: 1px solid;
        padding: 8px 10px;
    }

    .contact .cards .card div::-webkit-scrollbar {
        display: none
    }

    .contact .cards .card div a {
        height: 60px;
    }

    .contact .cards .card div a:hover {
        transform: scale(0.9);
    }

    .contact .cards .card div a svg {
        width: 30px;
        height: 30px;
    }

    .contact .cards .card div a p {
        font-size: 20px;
        font-weight: 500;
        color: #FFFFFF;
    }
}

/* End phone Contact */
/* start Footer */
footer {
    width: 100%;
    background-color: #000000;
    color: #fff;
    display: flex;
    justify-content: center;
}

/* End Footer */

/* Start laptop respons */
@media (min-width: 900px) and (max-width: 1024px) {
    .container {
        padding-right: 60px;
        padding-left: 60px;
    }

    .header {
        gap: 80px;
    }

    .header nav {
        padding: 0 15px;
    }

    .header nav .online p {
        font-size: 14px;
    }

    .header nav .links a:nth-last-child(1) {
        margin-left: 0px;
    }

    .header nav .links a {
        font-size: 16px;
    }

    .header .content div h1 {
        font-size: 40px;
    }

    .header .content div p {
        font-size: 14px;
    }

    .header .content div {
        gap: 15px;
    }

    .cta {
        font-size: 16px;
    }

    .header .service .card {
        padding: 15px;
        width: 40%;
    }

    .header .service .card h2 {
        font-size: 20px;
    }

    .header .service .card h4 {
        font-size: 14px;
    }

    .header .service .card ul {
        font-size: 14px;
    }

    .title h2 {
        font-size: 45px;
    }

    .process .steps .card {
        width: 350px;
    }

    .FAQ .qs {
        padding: 0;
    }

    .FAQ .qs .q {
        padding: 20px 50px;
    }

    .FAQ .qs .q h3 {
        font-size: 22px;
    }

    .FAQ .qs .q p {
        font-size: 16px;
    }

    .portfolio .projects .project img {
        width: 500px;
        height: auto;
    }

    .templates .demos .card img {
        width: 430px;
        height: auto;
    }

    .templates .demos .card .info h3 {
        font-size: 20px;
    }

    .templates .content .template-process h3 {
        font-size: 30px;
    }

    .templates .content .template-process ul li {
        font-size: 16px;
    }

    .templates .content .FAq {
        gap: 10px;
    }

    .templates .content .FAq .Q h5 {
        font-size: 17px;
    }

    .templates .content .FAq .Q p {
        font-size: 14px;
    }

    .pricing .packages .pack {
        padding: 20px;
    }

    .pricing .packages .pack div .price span {
        font-size: 12px;
    }

    .pricing .packages .pack div .price h3,
    .pricing .form .price h3 {
        font-size: 35px;
    }

    .pricing .packages .pack div .price p,
    .pricing .form .price p {
        font-size: 14px;
    }

    .pricing .packages .pack>div {
        gap: 30px;
    }

    .pricing .packages .pack a {
        padding: 10px;
        font-size: 12px;
    }

    .contact>p {
        font-size: 20px;
    }

    .contact .cards {
        grid-template-columns: auto auto;
    }
}

/* End laptop respons */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* @keyframes */
@keyframes status {
    0% {
        box-shadow: 0 0 1px 1px rgba(60, 221, 28, 0.5);
    }

    100% {
        box-shadow: 0 0 1px 6px rgba(60, 221, 28, 0.5);
    }
}