* {
    padding: 0;
    margin: 0;
    
}
.container{
    
    position: relative;
}
.nav {
    height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 0 8px rgba(168, 168, 168, 0.943);
    background-color: #ffffff;
    position: fixed;
    width: 100%;
    z-index: 999;
}
.menu-toggle{
    display: none;
}
.menu-icon{
    font-size: 26px;
    cursor: pointer;
    display: none;
    color: white;
}
.menu-toggle{
    display: none;
}
.menu-toggle:checked + .menu-icon + .nav-links{
    display: none;
}

.nav a {
    text-decoration: none;
}

.nav .links {
    width: 20%;
}

.nav .links ul {
    display: flex;
    justify-content: space-between;
}

.nav .links ul li {
    list-style-type: none;
}

.nav .logo a {
    color: #212529;
    font-size: 30px;
    font-weight: 700;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.nav .logo a::after {
    content: '.';
    color: red;
}

.nav .links a {
    color: #818181;
    font-size: 14px;
    font-weight: 600;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    position: relative;
}

.nav .links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1.3px;
    width: 0;
    background-color: rgb(196, 27, 27);
    transition: all 0.8s ease;
}

.nav .links a:hover {
    color: black;
}

.nav .links a:hover::after {
    width: 100%;
}

/*------------------------------------Header Styling-------------------------------------------------------*/
.header {
    height: 100vh;
    width: 100%;
    background-color: #eeeeee;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 50px;
}

.header .header-cont {
    width: 38%;
}

.header .header-pic {
    width: 35%;
}

.header .header-pic img {
    width: 100%;
}

@keyframes vibrate {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, 2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }

    100% {
        transform: translate(0);
    }
}

.header-pic img:hover {
    animation: vibrate 0.3s linear infinite;
}

.header-cont h2 {
    font-size: 60px;
    font-weight: 700;
    font-family: "Amatic SC", sans-serif;
    color: #37373F;
}

.header-cont p {
    color: #4F4F5A;
    font-size: 14px;
    font-weight: 400;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.header-cont .btn {
    display: flex;
    justify-content: space-between;
   background-color: #4f4f5a00;
   width: 57%;
   height: 20%;
   align-items: center;
}

.header-cont .btn .btn1 {
    margin-top: 10px;
}
.header-cont .btn .btn1 a:hover {
   background-color: red;
}
.header-cont .btn .btn1 a {
    text-decoration: none;
    color: #EEEEEE;
    background-color: #CF1212;
    padding: 10px 18px;
    border-radius: 0 20px 20px 20px;
    font-size: 12px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    transition: all 0.5s ease;
}

.header-cont .btn a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: black;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.5s ease;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.header-cont .btn .btn2-i{
    background: linear-gradient(to right,#CE1212  50%, #EEEEEE 50% )  ;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 30px;
}
.header-cont .btn .btn2-i i {
    color: aliceblue;
    border-radius: 50%;
    background-color: #212529;
    font-size: 30px;
    transition: all 0.5s ease;
}
.header-cont .btn .btn2-a a:hover{
    color: #CF1212;
}
.header-cont .btn .btn2-i i:hover{
    background-color: #f30707;
    cursor: pointer;
}
/*------------------------------------chefs Styling-------------------------------------------------------*/

.chefs-header {
    background-color: rgba(250, 235, 215, 0);
    padding-top: 50px;
    margin-top: 50px;
    text-align: center;
    height: 100vh;
    padding-inline: 50px;
}

.chefs-header h2 {
    color: #A8AAB0;
    font-size: 14px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
}

.chefs-header p {
    font-size: 50px;
    font-weight: 400;
    font-family: "Amatic SC", sans-serif;
}

.chefs-header p span {
    color: #CF1212;
}

.chefs-cards {
    background-color: #81818100;
    display: flex;
    justify-content: space-around;
    padding-top: 50px;
}

.chefs-cards .card1 {
    background-color: rgba(127, 255, 212, 0);
    width: 27%;
    border-radius: 5px;
    box-shadow: 0 0 8px #ebebeb;
    transition: 0.5s all ease;
    line-height: 24px;
    position: relative;
    overflow: hidden;

}

.chefs-cards .card1 img {
    width: 100%;
    border-radius: 5px;

}

.overlay {
    position: absolute;
    right: -40;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-top: 30px;
    background-color: #f3f0f041;
    border-radius: 3px;
    transition: all 0.5s ease;
}

.overlay i {
    padding: 7px 10px;
    color: #818181;
    transition: all 0.6s ease;
}

.chefs-cards .card1:hover .overlay {
    right: 10;
}

.chefs-cards .card1 .overlay i:hover {
    color: #212529;
    cursor: pointer;
}

.chefs-cards .waves {
    height: 100px;
    width: 100%;
    background-image: url(../images/team-shape.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    bottom: 90;
}

.chefs-cards .card1 .card-cont {
    padding: 10px 15px;
}

.chefs-cards .card1 .card-cont h3 {
    font-size: 16px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    color: #212529;
}

.chefs-cards .card1 .card-cont span {
    font-size: 12px;
    font-weight: 400;
    color: #9999A7;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.chefs-cards .card1 .card-cont p {
    font-size: 12px;
    font-weight: 400;
    color: #818181;
    font-style: italic;
    line-height: 15px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.chefs-cards .card1:hover {
    transform: scale(1.05);
}

/*------------------------------------Gallery Styling-------------------------------------------------------*/
.gallery {
    background-color: #EEEEEE;
    padding: 50px 50px;
    text-align: center;
}

.gallery-cont h2 {
    font-size: 11px;
    text-transform: uppercase;
    color: RGB(127, 127, 144);
    font-weight: 400;
    font-family: "Inter", sans-serif;
}

.gallery-cont p {
    text-transform: uppercase;
    font-family: "Amatic SC", sans-serif;
    font-size: 50px;
    font-family: 400;
}

.gallery-cont p span {
    color: #CF1212;
}

.gallery-masonry {
    column-count: 3;
    column-gap: 2;
    margin: 20px;
    padding: 10px 30px;
}

.gallery-masonry .iitem {
    position: relative;
    width: 100%;
    border: 3px white solid;
    margin-bottom: 20px;
    overflow: hidden;
}

.gallery-masonry .iitem img {
    width: 100%;
    transition: all 0.5s ease-in;
}

.overlay-mas {
    background-color: rgba(0, 0, 0, 0.543);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    color: #ebebeb;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: all 0.5s ease;
    transform: translateY(100%);
}
.gallery-masonry .iitem img:hover{
    transform: scale(1.2);
}
.gallery-masonry .iitem:hover .overlay-mas {
    transform: translateY(0);
}

.iitem .overlay-mas h2 {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-family: 600;
}

.iitem .overlay-mas p {
    font-size: 12px;
    font-family: 200;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/*------------------------------------Contact Styling-------------------------------------------------------*/
.contact {
    background-color: rgba(127, 255, 212, 0);
    margin-top: 30px;
    padding: 50px;
}

.contact-content {
    text-align: center;
    padding-bottom: 30px;
}

.contact-content h2 {
    font-size: 12px;
    font-weight: 400;
    color: RGB(127, 127, 144);
    font-family: "Inter", sans-serif;
}

.contact-content p {
    font-size: 40px;
    font-family: "Amatic SC", sans-serif;
    font-weight: 400;
    color: RGB(33, 37, 41);
}

.contact-content p span {
    color: #CF1212;
}

.contact-map {
    margin-bottom: 50px;
    padding-inline: 50px;
}

.contact-icon {
    background-color: rgba(127, 255, 212, 0);
    margin-bottom: 50px;
    padding-inline: 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-icon .icon1 {
    background-color: #F5F5F5;
    margin-bottom: 20px;
    width: 45%;
    padding: 30px 20px;
    display: flex;
    flex-direction: row;
}

.contact-icon .icon1 i {
    background-color: #CF1212;
    padding: 10px 10px;
    border-radius: 50%;
    margin-left: 20px;
    color: #ebebeb;
    font-size: 18px;
}

.contact-icon .contact-font {
    padding-left: 6px;
}

.contact-icon .icon1 h3 {
    font-size: 16px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    color: RGB(125, 125, 125);
    padding-left: 10px;
    height: fit-content;
}

.contact-icon .icon1 p {
    color: RGB(33, 37, 41);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 12px;
    font-family: 400;
    padding-left: 10px;
}

/*------------------------------------Form styling Styling-------------------------------------------------------*/
.contact-form {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
}

.whole-div {
    background-color: #ffffff;
    box-shadow: 5px 5px 15px 5px rgba(230, 230, 230, 0.486);
    padding: 0px 20px;
}

.contact-form .form-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.form-row {
    flex: 1;
}

.input1 {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 1.5px solid #d3d3d3;
    font-size: 10px;
    transition: 0.5s;
}

textarea {
    resize: none;
    height: 150px;
}

.input1:focus,
textarea:focus {
    border-color: #e17777;
    outline: none;
}

.whole-div .btn {
    display: flex;
    justify-content: center;
}

.whole-div .btn button {
    background-color: #CF1212;
    padding: 12px 30px;
    border-radius: 20px;
    color: #EEEEEE;
    border: none;
    cursor: pointer;
    margin-top: 30px;
    transition: all 0.5s ease;
    text-transform: capitalize;
    font-size: 12px;
    margin-bottom: 9px;
}

.whole-div .btn button:hover {
    background-color: rgb(232, 5, 5);
}
.contact-font span{
   font-weight: 700;
}

/*------------------------------------Footer Styling-------------------------------------------------------*/
.footer {
    background-image: url(../images/textured-metal-background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #ebebeb;
    display: flex;
    padding: 20px 50px;
}

.footer ul li {
    list-style-type: none;
}

.mealify .logo-mealify img {
    width: 100%;
}

.logo-mealify {
    display: flex;
    width: 14%;
    margin-bottom: 10px;
}

.mealify {
    padding: 0 40px;
    box-sizing: border-box;
    margin-left: 30px;
    width: 40%;
}

.mealify h2 {
    margin-left: 10px;
    font-size: 28px;
    font-weight: 700;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}
.mealify h2::after{
    content: '.';
    color: #CF1212;
}
.mealify p {
    font-size: 13px;
    font-family: 400;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

.mealify hr {
    border: none;
    height: 2px;
    background-color: #5A5A5A;
}

.mealify h3 {
    text-align: center;
    margin-block: 10px;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
}

.mealify ul {
    display: flex;
    margin-top: 20px;
    justify-content: center;
}

.mealify ul li {
    padding-inline: 20px;
}
.mealify ul li i{
    font-size: 20px;
    cursor: pointer;
}


.quick-liks {
    padding-inline: 40px;
}

.getin {
    margin-right: 50px;
    width: 30%;
}

.getin h2 {
    font-size: 16px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    margin-bottom: 10px;

}

.getin i {
    color: #CF1212;
    padding-right: 10px;
}

.getin ul li {
    display: flex;
    margin-bottom: 20px;
}

.getin span {
    font-size: 12px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 400;
    display: flex;
    align-items: flex-start;
}

.subscribe {
    padding-right: 25px;
}

.subscribe h2 {
    font-size: 16px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
}

.subscribe p {
    font-size: 12px;
    font-weight: 400;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin-top: 6px;
}

.subscribe h3 {
    font-size: 16px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
}
.subscribe i{
    padding-right: 10px;
    font-size: 10px;
}
.subscribe table td li{
    list-style-type: none;
    width: 200px;
    text-transform: capitalize;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 13px;
    cursor: pointer;
    padding-bottom: 7px;
    transition: all 0.5s ease;
}
.subscribe table td li:hover{
    background-color: #222222b5;
    transform: translateX(5%);
    width: 190px;
   
}
.subscribe table  {
   color: #ffffff;
   column-count: 2;
}
.input-subs .info {
    width: 77%;
    padding-block: 8px;
    padding-left: 5px;
    margin-block: 20px;
    font-size: 10px;
    outline: none;
    border: none;
}

.input-subs button {
    padding: 7px 10px;
    border: none;
    background-color: #CF1212;
    color: white;
    border: none;
    font-size: 12px;
    transition: all 0.6s ease;
}

.input-subs button i {
    font-size: 13px;
    padding-right: 5px;
}
.input-subs button:hover{
    background-color: red;
    cursor: pointer;
}


