* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html {
    scroll-behavior: smooth;
}
.container {
    max-width: 1440px;
    margin: auto;
}

.Header {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(image12.jpg);
    position: relative;
    background-position: center;
    background-size: cover;
    overflow-x: hidden;

}

.nav_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2% 6%;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.justify_between {
    justify-content: space-between;
}

.flex-1 {
    flex-basis: 50%;
}

.nav_bar img {
    width: 150px;
}

.nav_links {
    flex: 1;
    text-align: right;
}

.nav_links ul li {
    list-style: none;
    padding: 8px 12px;
    display: inline-block;
    position: relative;
}

.nav_links ul li a {
    text-decoration: none;
    color: white;
    font-size: 13px;
    text-transform: uppercase;
}

.nav_links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: .4s;
}

.nav_links ul li:hover::after {
    width: 100%;
}
.content_main {
    height: 80vh;
    position: relative;
}
.icon_next {
    position: absolute;
    bottom: 5%;
    left: 49%;
    /* transform: translateX(-45%); */
    max-width: 50px;
    cursor: pointer;
    animation: moveUp 2s ease-in alternate infinite;
}
@keyframes moveUp {
    from{
        transform: translateY(20px);
    }
    to {
        transform: translateY(0);
    }
    
}
.text_box {
    color: white;
    text-align: center;    
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.text_box h1 {
    font-size: 62px;
}

.text_box p {
    font-size: 20px;
}

.text_box a {
    text-decoration: none;
    color: #fff3f3;
    font-size: 20px;
    font-weight: 600;

    display: inline-block;

    border: 1px solid #fff3f3;
    border-radius: 5px;
    padding: 15px 34px;

    position: relative;
    cursor: pointer;
    transition: .8s;
}

.text_box a:hover {
    background: #f44336;
    border: 1px solid #f44336;
    transition: .3s;
}

.nav_bar ion-icon {
    display: none;
}

ion-icon {
    font-size: 30px;
    font-weight: 700;
    color: white;
}

@media(max-width:700px) {
    .Header {
        background-position: -75%;
        min-height: 50vh;
    }
    img.icon_next {
        max-width: 35px;
    }
    .content_main {
        height: 50vh;
    }
    .text_box h1 {
        font-size: 35px;
    }
    .text_box a {
        padding: 10px;
        width: 80%;
        margin: auto;
    }
    .nav_links ul li {
        display: block;
    }

    .nav_links ul {
        padding: 30px;
    }

    .nav_links {
        position: absolute;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -100%;
        text-align: left;
        z-index: 2;
        transition: .5s;
    }

    .text_box p {
        font-size: 13px;
        padding: 14px 60px;

    }

    .hero_btn {
        font-size: 10px;
        border: 1px solid white;
        border-radius: 5px;
        padding: 8px 24px;
        margin: auto;
    }

    .nav_bar ion-icon {
        font-size: 30px;
        color: white;
        display: block;
        cursor: pointer;
        margin: 10px;
        font-weight: 700;
    }

}

/* text with image */
.snap_quailty {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: auto;
    padding-top: 80px;
    gap: 80px;
}

.text h2 {
    font-size: 32px;
    font-weight: 700;
    padding-bottom: 5px;
}

.text p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
}

.snap_quailty img {
    width: 100%;
}

.text a {
    text-decoration: none;
    color: #fff3f3;
    font-size: 20px;
    display: inline-block;
    border: 1px solid #f44336;
    background: #f44336;
    border-radius: 5px;
    padding: 12px 34px;
    position: relative;
    cursor: pointer;
    margin-top: 24px;
}

@media(max-width:700px) {
    .snap_quailty {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding-top: 20px;
    }

    .text h2 {
        font-size: 24px;
        font-weight: 700;
        padding-bottom: 5px;
    }
}

/* 2n image with text */

.quailty {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: auto;
    padding-top: 80px;
    gap: 80px;
}

.sqimage {
    flex-basis: 50%;
}

.sqimage img {
    width: 100%;
    height: 362px;
}
@media(max-width:700px) {
    .quailty {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding-top: 20px;
    }
    .quailty .sqimage {
        order: 1;
    }
    .text h2 {
        font-size: 24px;
        font-weight: 700;
        padding-bottom: 5px;
    }
    .sqimage img {
        width: 100%;
        height: 260px;
    }
}

/* customer says */
.colums {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: white;
}

.nam {
    font-size: 25px;
    font-weight: 600;
}

.col:hover {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

.col {
    display: flex;
    flex-direction: column;
    gap: 13px;
    flex-basis: 31%;
    background: #f5594e;
    border-radius: 10px;
    padding: 30px 40px;
    margin-bottom: 5%;
    box-sizing: border-box;
    transition: .4s;
    text-align: center;
    justify-content: center;
    align-items: center;

}

#col {
    padding-bottom: 56px;
}

.colums img {
    width: 150px;

}

#col2 {
    padding-bottom: 56px;
}

.customer {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    gap: 20px;
    margin-top: 61px;
}

.customer h2 {
    font-size: 32px;
    font-weight: 700;
    padding-bottom: 5px;
}

@media(max-width:700px) {
    .colums {
        display: flex;
        flex-direction: column;
        text-align: center;
        text-align: center;
    }

    .customer h2 {
        font-size: 24px;
        font-weight: 700;
        padding-bottom: 5px;
    }
}

/* pricing */
#pera3 {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    text-align: center;
}

.price h2 {
    font-size: 32px;
    font-weight: 700;
    padding-bottom: 5px;
}

.pkg {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 30px 0;
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
}

.usa {
    width: 273px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    height: 328px;
    background: #FEE;
}

.pkg1 {
    align-items: center;
    text-align: center;
    display: flex;
    justify-content: center;
    width: 273px;
    height: 55px;
    flex-shrink: 0;
    background: #F5594E;
    color: #F5F5F5;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.pkg4 {
    align-items: center;
    text-align: center;
    display: flex;
    justify-content: center;
    width: 273px;
    height: 55px;
    flex-shrink: 0;
    background: #F5594E;
    color: #F5F5F5;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.pkg2 {
    color: #000;
    font-family: Inter;
    font-size: 39px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.pkg5 {
    color: #000;
    font-family: Inter;
    font-size: 39px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.pkg3 {
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 0 22px;
}

.pkg6 {
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 0 19px;
}

.more {
    align-items: center;
    text-align: center;
    display: flex;
    justify-content: center;
    width: 273px;
    height: 40px;
    flex-shrink: 0;
    background: #F5594E;
    color: #F5F5F5;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.twain {
    width: 273px;
    height: 328px;
    background: #FEE;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}
@media(max-width:700px){
    .price {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 80%;
    }
    .pkg {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 30px 0;
    }
    #pera3 {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        text-align: center;
    }
}

/* download here */
.snap3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: auto;
    padding-top: 80px;
    gap: 80px;
}

.image_demo {
    flex-basis: 50%;
}

.image_demo img {
    width: 100%;
    height: 362px;
}


/* how to buy */
.buy {
    width: 50%;
    margin: auto;
    text-align: center;
    padding-bottom: 63px;
}

.buy h2 {
    font-size: 32px;
    font-weight: 700;
    padding-bottom: 5px;
    margin-top: 61px;
}

.buy p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
}

.buy a {
    text-decoration: none;
    color: #fff3f3;
    font-size: 20px;
    display: inline-block;
    border: 1px solid #f44336;
    background: #f44336;
    border-radius: 5px;
    padding: 12px 45px;
    position: relative;
    cursor: pointer;
    margin: 15px 0;
    transition: .8s;
}


/* support */
.support {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(image11.jpg);
    background-size: cover;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    color: #fff3f3;
    width: 80%;
    margin: auto;
    padding: 15px 25px;
    margin-bottom: 61px;
}

.support h2 {
    font-size: 32px;
    font-weight: 700;
    padding-bottom: 5px;
}

.support p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 2px 120px;
}

.support a {
    text-decoration: none;
    color: #fff3f3;
    font-size: 20px;
    background: #f44336;
    display: inline-block;
    border: 1px solid #f44336;
    border-radius: 5px;
    padding: 12px 34px;
    position: relative;
    cursor: pointer;
    margin: 15px 0;

}



@media(max-width:700px) {
    .image_demo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .support {
        text-align: center;
    }
    .buy {
        width: 70%;
    }
    .support p {
        padding: 0;
    }
    .snap3 {
        flex-direction: column;
        gap: 35px;
        
    }
    h2 {
        font-size: 24px;
    }
}

/* next step */
.next_step {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: auto;
    width: 40%;
}

.next_step h2 {
    font-size: 32px;
    font-weight: 700;
    padding-bottom: 5px;
}

.next_step p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding-bottom: 14px;
}

.next_step a {
    text-decoration: none;

    color: #fff3f3;
    font-size: 20px;
    display: inline-block;
    background: #f44336;
    border: 1px solid #f44336;
    border-radius: 5px;
    padding: 12px 45px;
    cursor: pointer;
    margin: 15px 0;
    transition: .8s;
    margin: auto;
    position: relative;
}

.next_step a:hover {
    background: #f44336;
    border: 1px solid #f44336;

    color: white;
}

/* trademark */
.Trademark {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: auto;
    width: 80%;
    margin-top: 62px;
    flex-wrap: wrap;
}

.Trademark h2 {
    font-size: 32px;
    font-weight: 700;
    padding-bottom: 5px;
}

.Trademark p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding-top: 15px;
}

/* imprint */
.adress {
    display: flex;
    justify-content: space-around;

    text-align: left;

    margin: auto;
}

.footer {
    width: 100%;
    margin: auto;

    background: black;
    color: #fff3f3;
    margin-top: 80px;
    text-align: center;
    padding: 35px 25px;
}

.footer h2 {
    font-size: 32px;
    font-weight: 700;
    padding-bottom: 38px;
    ;
}

.footer p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;

}

.mail {
    width: 30%;
}

.adress p {
    padding: 10px 0;
    color: #fff3f3;
}

#dress {
    color: #fff3f3;
}

@media (max-width:700px) {
    .next_step {
        width: 80%;
    }
    .adress {
        flex-direction: column;
    }
    br {
        display: none;
    }
    .mail {
        width: 80%;
    }
}