::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --navbar-height: 56px;
    --navbar-background-color: white;
    --navbar-item-text-color: #888888;
    --navbar-item-background-color: var(--navbar-background-color);
    --navbar-item-text-color-hover: rebeccapurple;
    --navbar-item-font: bold 1rem/1rem "Open Sans", Arial, Helvetica, sans-serif;
    --navbar-item-background-color-hover: dimgray;
    --navbar-font-family: "Open Sans", Arial, Helvetica, sans-serif;
}

body {
    overflow-x: hidden;
}

html {
    font-family: var(--body-font);
    font-size: 10px;
    color: var(--body-font-color);
    scroll-behavior: smooth;
}

.input-align-right {
    float: right;
    width: 48%;
    margin-right: 3%;
}

.input-align-left {
    width: 48%;
    float: left;
}

section {

    overflow: hidden;
}

/*img {*/
/*    width: 100%;*/
/*    max-width: 100%;*/
/*}*/

a {
    text-decoration: none;
}

p {
    font-size: 1.6rem;
}


/* .container {
    width: 100%;
    max-width: 122rem;
    margin: 0 auto;
    padding: 0 2rem;
} */


/* style FAQ */

.container1 {
    margin: 0 auto;
    padding: 4rem;
    width: 48rem;
}




/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */




/* Style the accordion panel. Note: hidden by default */





.hero {
    width: 100%;
    height: 100vh;
    background: url(../img/software.avif) center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    text-align: center;
}

.sub-headline {
    font-size: 2rem;
    /* font-family: var(--secondary-font); */
    color: var(--secondary-font-color);
    font-weight: 20;
    line-height: .5;
    letter-spacing: 3px;
    opacity: 0;
    animation: fadeUp .5s forwards;
    animation-delay: .5s;
}

.first-letter {
    font-size: 8rem;
    text-transform: uppercase;
}

.headline {
    color: rgb(60, 46, 141);
    font-size: 3.7rem;
    font-family: var(--main-font);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .5rem;
    margin-right: -.5rem;
    opacity: 0;
    animation: scale .5s forwards;
}

.separator {
    display: flex;
    align-items: center;
    justify-content: center;
}

.line {
    width: 100%;
    max-width: 8.4rem;
    height: .25rem;
    background-color: #fff;
    position: relative;
    opacity: 0;
    animation: grow .5s forwards;
    animation-delay: 1s;
}

/*.img1 {*/
/*    border-radius: 50%;*/
/*    -webkit-transition: -webkit-transform .8s ease-in-out;*/
/*    transition: transform .8s ease-in-out;*/
/*}*/

/*img1:hover.hero {*/
/*    -webkit-transform: rotate(360deg);*/
/*    transform: rotate(360deg);*/
/*}*/

.line-left::before,
.line-right::before {
    content: " ";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: .6rem solid transparent;
    opacity: 0;
    animation: grow .5s forwards;
    animation-delay: 1.2s;
}

.flip-container {
    background: transparent;
    display: inline-block;
}

.flip-this {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-container:hover .flip-this {
    transition: 0.9s;
    transform: rotateY(180deg);
}

.line-right::before {
    border-right-color: #fff;
    right: 0;
}

.line-left::before {
    border-left-color: #fff;
    left: 0;
}

.asterisk {
    font-size: 1.3rem;
    color: var(--secondary-font-color);
    margin: 0 1.5rem;
    opacity: 0;
    animation: spin .7s forwards;
    animation-delay: .4s;
}

.single-animation {
    opacity: 0;
    animation: fadeDown .5s forwards;
    animation-delay: 1.5s;
}

.headline-description h5 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 100;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    letter-spacing: 3px;
    margin-right: -3px;
}

.btn {
    display: inline-block;
    letter-spacing: 2px;
    margin-right: -2px;
    text-transform: uppercase;
}

.cta-btn {
    font-size: 1.1rem;
    background-color: #fff;
    padding: .9rem 1.8rem;
    color: black;
    border-radius: .4rem;
    margin: 1rem;
    transition: background-color .5s;
}

.cta-btn:hover,
.cta-btn:focus {
    color: #fff;
    background-color: var(--secondary-font-color);
}

.global-headline {
    text-align: center;
    margin-top: 3rem;
}

.discover-our-story .global-headline {
    margin-top: 6.9rem;
}

.global-headline .asterisk {
    /* color: var(--body-font-color); */
    margin: 2.4rem 0;
}

.headline-dark {
    /* color: var(--main-font-color-dark); */
    letter-spacing: .7rem;
    margin-right: -.7rem;
}

.global-headline .sub-headline {
    letter-spacing: 5px;
    line-height: .20;
}

.restaurant-info {
    text-align: center;
}

.restaurant-description {
    margin-bottom: 3rem;
}

.restaurant-description p {
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.body-btn {
    font-size: 1.5rem;
    color: var(--secondary-font-color);
    position: relative;
    transition: color .5s;
}

.body-btn::before {
    content: " ";
    position: absolute;
    left: 0;
    bottom: -3px;
    background-color: var(--secondary-font-color);
    width: 100%;
    height: 2px;
    transition: background-color .5s;
}

.body-btn:hover,
.body-btn:focus {
    /*color: var(--main-font-color-dark);*/
}

.body-btn:hover::before,
.body-btn:hover::before {
    background-color: var(--main-font-color-dark);
}

.features {
    color: black;
    text-align: center;
    font-size: 3rem;
    margin-top: 40px;
    font-style: inherit;
}

.fetaure-card {
    box-shadow: 0 4px 8px 0 #f1f1f1;
    padding: 16px 20px 0px 10px;
    height: 300px;
    margin-top: 50px;
    margin-bottom: 20px;
    text-align: center;
    margin: 20 10 10 20;
    background-color: #e7dfdf;
}

.tasteful-recepies {
    /* background:url(../img/tasteful-recipes.avif) center no-repeat; */
    background-size: cover;
}

.between {
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.image-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
}

.discover-our-menu .restaurant-description {
    padding-top: 3rem;
    margin-bottom: 0;
}

.perfect-blend {
    /* // background:url(../img/perfect-blend.avif) center no-repeat; */
    background-size: cover;
}



@keyframes fadeUp {
    0% {
        transform: translateY(5rem);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale {
    0% {
        transform: scale(2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes grow {
    0% {
        width: 0;
    }
    100% {
        opacity: 1;
        width: 100%;
    }
}

@keyframes fadeDown {
    0% {
        transform: translateY(-1rem);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0);
    }
    100% {
        opacity: 1;
        transform: rotate(360deg);
    }
}

@keyframes up {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-1rem);
    }
}

.dropbtn {
    background-color: #fdfdfd;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
}

.features-valuesoft {
    color: green;
    background-color: white;
}

.about-software {
    left: 5%;
    right: 10%;
    width: 100%;
    margin-top: 10px;
    font-size: 20px;
    color: black;
}

.fetaure-card-row {
    margin: 0, -5px;
}

.fetaure-card-colum {
    float: left;
    width: 25%;
    padding: 0 10px;
}

.fetaure-card.fetaure-card-row:after {
    content: "";
    display: table;
    clear: both;
}


/* .features-card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 16px;
    text-align: center;
    background-color: #f1f1f1;
} */

.fetaure-card-img {
    align-items: center;
    width: 200px;
}


/* Responsive columns - one column layout (vertical) on small screens */

@media screen and (max-width: 600px) {
    .column {
        width: 100%;
        display: block;
        margin-bottom: 20px;
    }
}

.third-level-menu {
    position: absolute;
    top: 0;
    right: -150px;
    width: 150px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
}

.third-level-menu>li {
    height: 30px;
    background: #999999;
}

.third-level-menu>li:hover {
    background: #CCCCCC;
}

.second-level-menu {
    position: absolute;
    top: 30px;
    left: 0;
    width: 150px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
}

.second-level-menu>li {
    position: relative;
    height: 30px;
    background: #999999;
}

.second-level-menu>li:hover {
    background: #CCCCCC;
}

.top-level-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.top-level-menu>li {
    position: relative;
    float: left;
    height: 30px;
    width: 150px;
    background: #999999;
}

.top-level-menu>li:hover {
    background: #CCCCCC;
}

.top-level-menu li:hover>ul {
    /* On hover, display the next level's menu */
    display: inline;
}


/* Menu Link Styles */

.top-level-menu a
/* Apply to all links inside the multi-level menu */

{
    font: bold 14px Arial, Helvetica, sans-serif;
    color: #FFFFFF;
    text-decoration: none;
    padding: 0 0 0 10px;
    /* Make the link cover the entire list item-container */
    display: block;
    line-height: 30px;
}

.top-level-menu a:hover {
    color: #000000;
}

.about-us-container {
    background-image: src="./img/about_us.avif";
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}


/* .flip-card {
    background-color: transparent;
    width: 25%;
    height: 200px;
    perspective: 1000px;
} */

.card-container {
    width: 1000px;
    overflow-x: scroll;
    display: flex;
    background-color: #100e17;
    padding: 3rem;
}

.date {
    color: #8a8a8a;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    margin: 1rem 0 1rem;
}

.tags div {
    font-size: 9px;
    font-weight: 700;
    padding: 4px 10px;
    border: 3px solid #28242f;
    border-radius: 2rem;
}

.topnav {
    position: relative;
    overflow: hidden;
    background-color: #333;
}

.topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.topnav a.active {
    background-color: #4CAF50;
    color: white;
}

.topnav-centered a {
    float: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.topnav-right {
    float: right;
    z-index: 9999;
    margin-top: 40px;
}


/* Responsive navigation menu (for mobile devices) */

@media screen and (max-width: 600px) {
    .topnav a,
    .topnav-right {
        float: none;
        display: block;
    }
    .topnav-centered a {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
    }
}


/* 
//////////////////////why vakueSoft card///////////////// */


/* 
.container-1 {
    height: 400px;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.container-1 .card {
    position: relative;
    cursor: pointer;
    z-index: 0;
}

.container-1 .card .face {
    width: 100%;
    height: 200px;
    transition: 0.5s;
}

.container-1 .card .face.face1 {
    position: relative;
    background: rgb(106, 191, 248);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transform: translateY(100px);
}

.container-1 .card:hover .face.face1 {
    background: #2a65a8;
    transform: translateY(0);
}

.container-1 .card .face.face1 .content {
    opacity: 0.2;
    transition: 0.5s;
}

.container-1 .card:hover .face.face1 .content {
    opacity: 1;
}

.container-1 .card .face.face1 .content img {
    max-width: 100px;
    align-items: center;
}

.container-1 .card .face.face1 .content h3 {
    margin: 10px 0 0;
    padding: 0;
    color: white;
    text-align: center;
    font-size: 0.7em;
}

.container-1 .card .face.face2 {
    position: relative;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transform: translateY(-100px);
}

.container-1 .card:hover .face.face2 {
    transform: translateY(0);
}

.container-1 .card .face.face2 .content p {
    margin: 0;
    padding: 0;
}

.container-1 .card .face.face2 .content a {
    /* margin: 10px 0 0; */


/* display: inline-block;
    text-decoration: none;
    font-weight: 400;
    color: rgb(35, 32, 173);
    padding: 5px;
    border: 1px solid #333;
}

.container-1 .card .face.face2 .content a:hover {
    background: rgb(213, 236, 250);
    color: #fff;
}  */


/* ////////// bottom to top///////////////// */

.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 2s;
    animation-name: animatebottom;
    animation-duration: 2s
}

@-webkit-keyframes animatebottom {
    from {
        bottom: -50px;
        opacity: 0
    }
    to {
        bottom: 0px;
        opacity: 1
    }
}

@keyframes animatebottom {
    from {
        bottom: -50px;
        opacity: 0
    }
    to {
        bottom: 0;
        opacity: 1
    }
}


/* ///////////////////image container mobile features//////////////////// */

.a1 {
    text-decoration: none;
    display: inline-block;
    padding: 8px 16px;
}

.a1:hover {
    background-color: #ddd;
    color: black;
}

.previous {
    background-color: #f1f1f1;
    color: black;
}

.next {
    background-color: #4CAF50;
    color: white;
}

.round {
    border-radius: 50%;
}
/* ===========================
   Global Header Styles
=========================== */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: linear-gradient(135deg, #1d3557, #457b9d);
    box-shadow: 0 4px 10px rgba(171, 91, 91, 0.1);
}

/* ===========================
   Navbar Main Styles
=========================== */
.nav {
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

/* ===========================
   Logo Section
=========================== */
.nav-left {
    float: left;
    width: 150px;
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.nav-left img {
    width: 100px;
    height: auto;
    transition: transform 0.3s ease;
}

.nav-left img:hover {
    transform: scale(1.1);
}

/* ===========================
   Menu Section
=========================== */
.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    margin-top: 0;
    padding: 0;
}

.nav-item {
    margin-left: 25px;
}

.nav-link {
    text-decoration: none;
    font-size: 1.4rem;
    text-transform: uppercase;
    color: #f8f8f8;
    padding: 10px 20px;
    border-radius: 3px 3px 15px 15px;
    transition: background-color 0.6s ease, transform 0.6s;
    display: inline;
}
 
.nav-link:hover {
    background-color: #00bdff;
    color: #fff;
    transform: translateY(-3px);
}

/* ===========================
   Right Side Menu (Login/Sign Up etc.)
=========================== */
.nav-right {
    float: right;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
}

/* ===========================
   Menu Toggle for Mobile
=========================== */
.menu-toggle {
    display: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    margin-right: 20px;
}

/* ===========================
   Mobile Menu Style
=========================== */
.nav-list-mobile {
    list-style: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background-color: #1d3557;
    padding-top: 60px;
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out;
    z-index: 1200;
}

.nav-list-mobile .nav-item {
    margin: 20px 0;
    text-align: center;
}

.nav-list-mobile .nav-link {
    font-size: 1.4rem;
    color: #fff;
    padding: 12px 20px;
    border-bottom: 1px solid #ffffff40;
}

.nav-list-mobile .nav-link:hover {
    background-color: #00bdff;
    color: #fff;
    transform: translateY(-3px);
    border-radius: 4px;
}

/* ===========================
   Menu Open State
=========================== */
.open .nav-list-mobile {
    transform: translateX(0);
}

/* ===========================
   Menu Overlay for Mobile
=========================== */
.nav-overlay {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.open .nav-overlay {
    opacity: 1;
    visibility: visible;
}

/* ===========================
   Mobile Media Queries
=========================== */
@media screen and (max-width: 768px) {
    .nav {
        padding: 0 20px;
    }

    .nav-list {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-right {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .nav-left img {
        width: 80px;
    }

    .menu-toggle {
        font-size: 1.8rem;
    }

    .nav-list-mobile {
        width: 250px;
    }
}


/* ///////////////////////////////////////////////////////////////////////////// */




