@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* outline: 1px solid red; */
}
body {
    font-family: "Open Sans", sans-serif;
}

:root {
    --main-color: #fff;
    --elrawda-color: #41B06E;
    --text-larg: #141E46;
    --text-small: #6295A2;
}
p{
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 1px;
}

.style-text-p {
    color: var(--text-small);
    font-size: 14px;
    margin-bottom: 10px;

}
.style-text-h2 {
    color: var(--text-larg);
    font-size: 25px;
    font-weight: 600;
}


::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track{
    background-color: var(--main-color);
}
::-webkit-scrollbar-thumb {
    background-color: var(--elrawda-color);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
/* -----------------------Header---------------------- */
header {
    position: relative;
    overflow: hidden;
}

nav {
    width: 90%;
    padding: 6px;
    background-color: var(--elrawda-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    position: fixed;
    top: 20px;
    left: 5%;
    z-index: 9;
    
}
nav .logo {
    flex-basis: 30%;
    height: 60px;
    /* padding-left: 10px; */
}
nav .logo a {
    display: block;
    width: 100%;
    height: 100%;
}
nav .logo img {
    width: 100%;
    height: 100%;
}
nav .nav-link {
    flex-basis: 55%;
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: 10px;
}
nav .nav-link .btn-icon {
    display: block;
    color: var(--main-color);
    font-size: 20px;
    cursor: pointer;
}


/* ====================================start btn icon show========================= */
nav .nav-link .overlay-menu {
    position: fixed;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    left: -100%;
    width: 100%;
    height: 100vh;
    z-index: 2;
    transition: left 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-transition: left 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: left 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: left 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: left 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
nav .nav-link .btn-links {
    position: fixed;
    top: 0;
    left: -70%;
    background: #88D66C;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    width: 70%;
    height: 100vh;
    overflow: auto;
    padding: 30px;
    z-index: 999999999999999;
    transition: left 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-transition: left 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: left 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: left 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: left 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
nav .nav-link .btn-links .hide-menu {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    position: absolute;
    top: 10px;
    right: 10px;
}
nav .nav-link .overlay-menu.open{
    left: 0;
}
nav .nav-link .btn-links.open {
    left: 0;
}
nav .nav-link .btn-links .call {
    padding: 15px 0;
    border-top: 2px solid rgba(37, 36, 36, 0.1);
}
nav .nav-link .btn-links .call div {
    display: inline-block;
    margin-left: 3px;
    font-size: 16px;
    padding: 10px;
    background: var(--main-color);
    
    border-radius: 50%;
} 
nav .nav-link .btn-links .call div a {
    color: var(--elrawda-color);
}
nav .nav-link .btn-links>ul {
    margin-top: 30px;
}
nav .nav-link .btn-links ul li {
    list-style: none;
    padding: 15px 0;
    border-top: 2px solid rgba(37, 36, 36, 0.1);
}
nav .nav-link .btn-links ul li a {
    text-decoration: none;
    font-size: 18px;
    color: var(--main-color);
}
nav .nav-link .btn-links .prod-drop-menu .down-icon{
    margin-left: 10px;
    display: inline-block;
    transform: rotate(0deg);
    transform-origin: center center;
    transition: .5s ease-in-out;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
}
nav .nav-link .btn-links .prod-drop-menu .down-icon.top-icon {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
}
nav .nav-link .btn-links .prod-drop-menu .drop-menu {
    width: 100%;
    padding: 10px 20px;
    background-color: #88D66C;
    position: relative;
    top: 12px;
    display: none;
    transform-origin: top right;
    transition: all .4s linear;
    -webkit-transition: all .4s linear;
    -moz-transition: all .4s linear;
    -ms-transition: all .4s linear;
    -o-transition: all .4s linear;
    transform: rotateX(-90deg);
    -webkit-transform: rotateX(-90deg);
    -moz-transform: rotateX(-90deg);
    -ms-transform: rotateX(-90deg);
    -o-transform: rotateX(-90deg);
}
nav .nav-link .btn-links .prod-drop-menu .drop-menu.drop-block{
    display: block;
}
nav .nav-link .btn-links .prod-drop-menu .drop-menu.drop-anim{
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
}
nav .nav-link .btn-links .prod-drop-menu .drop-menu li {
    border-top: 2px solid rgba(37, 36, 36, 0.1);
}
nav .nav-link .btn-links .prod-drop-menu .drop-menu a {
    color: var(--main-color);
}
nav .nav-link .links {
    display: none;
}

/* ----------------------------- */
#google_translate_element {
margin-left: 10px;
position: relative;
text-align: center;
}
#google_translate_element p {
    width: 100%;
    height: 100%;
    /* padding-left: 10px; */
    padding-top: 2px;
    background-color: var(--elrawda-color);
    color: var(--main-color);
    font-size: 18px;
    position: absolute;
    top: 0;
    cursor: pointer;
    z-index: 1;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}
#google_translate_element:hover p {
    background: none;
    padding-top: 0;
    top: -40px;
    opacity: 0;
}
#google_translate_element .para1 {
    display: none;
}
#google_translate_element .goog-te-gadget {
    height: 30px;
    overflow: hidden;
}
#google_translate_element .goog-te-gadget span {
    display: none;
}
#google_translate_element .goog-te-gadget .goog-te-combo {
    margin: 4px 0;
    width: 25px;
    height: 30px;
    font-size: 13px;
    padding: 3px;
    border: none;
    outline: none;
    color: #146b37;
}

/* ----------------------------- */
/* ====================================end btn icon show========================= */


/* -------------------------------------- start slider banner---------------------- */

.banner {
    width: 100vw;
    height: calc(100vh + 60px);
    overflow: hidden;
    position: relative;
}
.banner .list .item {
    width: 130px;
    height: 180px;
    position: absolute;
    top: 80%;
    left: 70%;
    transform: translateY(-70%);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    background-position: 50% 50%;
    background-size: cover;
    z-index: 6;
    transition: .8s linear;
    -webkit-transition: .8s linear;
    -moz-transition: .8s linear;
    -ms-transition: .8s linear;
    -o-transition: .8s linear;
}
.banner .list .item:nth-child(1),
.banner .list .item:nth-child(2) {
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}
.banner .list .item:nth-child(3) {
    left: 65%;
    opacity: 0;
}
.banner .list .item:nth-child(4) {
    left: calc(65% + 150px);
    opacity: 0;
}
.banner .list .item:nth-child(5) {
    left: calc(65% + 300px);
    opacity: 0;
}
.banner .list .item .overlay {
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    /* border-radius: 20px; */
}
.banner .list .item .content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 5%;
    width: 80%;
    color: var(--main-color);
    display: none;
}
.banner .list .item:nth-child(2) .content {
    display: block;
}
.banner .list .item .content h1 {
    font-size: 25px;
    text-transform: capitalize;
    letter-spacing: 1.5;
    margin-bottom: 10px;
    opacity: 0;
    -webkit-animation: animate 1s ease-in-out 0.3s 1 forwards;
            animation: animate 1s ease-in-out 0.3s 1 forwards;
}
.banner .list .item .content button {
            margin-top: 10px;
            border: none;
            background: none;
            opacity: 0;
            -webkit-animation: animate 1s ease-in-out 0.6s 1 forwards;
            animation: animate 1s ease-in-out 0.6s 1 forwards;
}
.banner .list .item .content button a {
    text-decoration: none;
    color: var(--main-color);
    padding: 8px 16px;
    background-color: var(--elrawda-color);
    border-radius: 8px;
    font-size: 18px;
    display: inline-block;
    transition: 0.5s;
}
.banner .list .item .content button a:hover {
    background-color: var(--main-color);
    color: var(--elrawda-color);
}

@-webkit-keyframes animate {
    from {
        opacity: 0;
        transform: translate(0, 100px);
        -webkit-filter: blur(33px);
                filter: blur(33px);
    }

    to {
        opacity: 1;
        transform: translate(0);
        -webkit-filter: blur(0);
                filter: blur(0);
    }
}

@keyframes animate {
    from {
        opacity: 0;
        transform: translate(0, 100px);
        -webkit-filter: blur(33px);
                filter: blur(33px);
    }

    to {
        opacity: 1;
        transform: translate(0);
        -webkit-filter: blur(0);
                filter: blur(0);
    }
}

.banner .arrows {
    position: absolute;
    top: 75%;
    right: 45%;
    z-index: 8;
    width: 150px;
    max-width: 20%;
    display: flex;
    gap: 10px;
    align-items: center;
}
.banner .arrows button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--elrawda-color);
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    color: var(--main-color);
    transition: .5s;
}
.banner .arrows button:hover {
    background-color: var(--main-color);
    color: var(--elrawda-color);
}
.banner .timeRunning {
    position: absolute;
    z-index: 8;
    width: 0;
    height: 4px;
    background-color: var(--elrawda-color);
    left: 0;
    top: 0;
    -webkit-animation: runningTime 4s linear 1 forwards;
            animation: runningTime 4s linear 1 forwards;
}
@-webkit-keyframes runningTime {
    from {
        width: 0;
    }
    to {
        width: 100%;
        display: none;
    }
}
@keyframes runningTime {
    from {
        width: 0;
    }
    to {
        width: 100%;
        display: none;
    }
}
/* -------------------------------------- end slider banner------------------------------ */

/* --------------------------------------start section recipes ---------------------------*/

.recipes {
    padding: 80px 20px;
}
.recipes .recipes-text {
    padding-left: 20px;
    margin-bottom: 35px;
}

.recipes .recipes-content {
    padding: 25px;
    height: 400px;
    margin-bottom: 30px;
    background-position: center;
    background-size: cover;
    border-radius: 15px;
    box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    flex-direction: column;
    transition: all .5s;
}
.recipes .recipes-content:hover {
    scale: 1.1;
}
.recipes .recipes-content:nth-child(1) {
    background-image: url(../images/recipes-1.jpg);
}
.recipes .recipes-content:nth-child(2) {
    background-image: url(../images/recipes-2.jpg);
    background-position: 30%;
}
.recipes .recipes-content:nth-child(3) {
    background-image: url(../images/recipes-3.jpg);
    
}
.recipes .recipes-content .content {
    width: 80%;
    color: var(--main-color);
}
.recipes .recipes-content .content h2 {
    font-size: 30px;
    
}
.recipes .recipes-content .content p {
    margin: 15px 0;
}
.recipes .recipes-content .content button {
    background: none;
    border: none;
    outline: none;
}
.recipes .recipes-content .content button a {
    color: var(--main-color);
    font-size: 18px;
    padding: 8px 16px;
    border: 1px solid var(--elrawda-color);
    border-radius: 4px;
    text-decoration: none;
}
.recipes .recipes-content .content button a:hover {
    color: var(--elrawda-color);
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
}
/* --------------------------------------end section recipes -----------------------------*/


/* -------------------------------------- start section experience------------------------ */

.experience {
    padding: 70px 20px;
    background-image: url(../images/banner5.png);
    background-position: center;
    background-size: cover;

}
.experience .experience-img {
margin: auto;
}
.experience .experience-img img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}
.experience .experience-text {
    padding: 30px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.3);
    margin-top: 40px;
    color: var(--text-larg);
    box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.8);
}
.experience .experience-text h3{
    margin-bottom: 20px;
    font-size: 20px;
}
/* -------------------------------------- end section experience------------------------ */


/* -----------------------------------------start section quality -----------------------*/

.quality {
    padding: 70px 20px;
}
.quality .quality-text {
    width: 100%;
    margin: auto;
    text-align: center;
    padding-bottom: 35px;
} 
.quality .quality-text h2{
    margin: 15px 0;
}
.quality .quality-text p{
    color: #006769;
    font-size: 14px;
    padding: 10px;
}
.quality .quality-imgs {
    display: flex;
    justify-content: space-between;
    height: 300px;
    margin-top: 25px;
    margin-bottom: 25px;
    position: relative;
}
.quality .quality-imgs .qua-img {
    flex-basis: 49%;
}
.quality .quality-imgs .qua-img img {
    width: 100%;
    height: 100%;
}
.quality .quality-imgs .qua-img-1 img {
    border-bottom-left-radius: 40%;
}
.quality .quality-imgs .qua-img-2 img {
    border-top-right-radius: 40%;
}
.quality .quality-imgs .position-img {
    width: 100px;
    height: 100px;
    border: 7px solid #fff;
    overflow: hidden;
    position: absolute;
    left: calc(50% - 50px);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.quality .quality-imgs .top-img {
    top: -50px;
}
.quality .quality-imgs .center-img {
    top: calc(50% - 50px);
}
.quality .quality-imgs .bottom-img {
    bottom: -50px;
}
.quality .quality-imgs .position-img img {
    max-width: 100%;
    height: 100%;
}
/* ----------------------------- */
.quality .quality-icon {
    margin-top: 20px;
}
.quality .quality-icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.quality .quality-icon .icon-box {
    flex-basis: 100%;
    padding: 10px;
    text-align: center;
}
.quality .quality-icon .icon-box .icon-img {
    height: 250px;  
}
.quality .quality-icon .icon-box .icon-img img {
    width: 100%;
    height: 100%;
}
.quality .quality-icon .icon-box .icon-text {
    padding: 10px;
}
.quality .quality-icon .icon-box .icon-text  h4 {
    color: var(--elrawda-color);
    font-size: 18px;
    margin-bottom: 10px;
}
.quality .quality-icon .icon-box .icon-text  p {
    color: #006769;
    font-size: 16px;
}

/* -------------------------------------------end section quality-------------------------*/

/* ------------------------------------- start section Production-slider -----------------*/

.production-slider {
    padding: 70px 0;
    overflow: hidden;
}
.production-slider .text {
    text-align: center;
    margin-bottom: 35px;
}
.production-slider .owl-carousel {
    width: 100%;
    display: block;
}
.production-slider .owl-carousel .owl-stage-outer {
    overflow: visible;
}
.production-slider .item {
    width: 250px;
    height: 400px;
    background-color: #e5e3da;
    position: relative;
    overflow: hidden;
    margin: auto;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.production-slider .item img {
    max-width: 100%;
    height: 100%;
    z-index: -1;
}
.production-slider .item .overlay-content {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    z-index: 1;
    top: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
    border-radius: 10px;
    transition: top .6s ease-in-out;
    -webkit-transition: top .6s ease-in-out;
    -moz-transition: top .6s ease-in-out;
    -ms-transition: top .6s ease-in-out;
    -o-transition: top .6s ease-in-out;
}
.production-slider .item .overlay-content a{
    display: block;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    color: #41B06E;
    margin-bottom: 30px;
}
.production-slider .item .overlay-content a:hover {
    color: #88D66C;
}
.production-slider .item:hover .overlay-content {
    top: 0;
}
/* ------------------------------------- end section Production-slider --------------------*/

/* -------------------------------------- start section why ------------------------------ */

.why {
    
    background-color: rgb(229, 225, 225);
    padding: 70px 20px;
}
.why .why-text {
    width: 100%;
    margin: auto;
    text-align: center;
    margin-bottom: 35px;
    
}
.why .why-text .style-text-p{
    color: #006769;
}
.why .why-text h2 {
    margin: 15px 0;
    color: #141E46;
}
.why .why-text p {
    margin: 10px 0;
    font-size: 14px;
    /* color: rgb(109, 109, 109); */
    color: #141e46;
}
.why .why-boxs {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}
.why .why-boxs .box {
    flex-basis: 100%;
    background-color: #fff;
    margin-bottom: 30px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}
.why .why-boxs .box:hover {
    transform: translateY(-25px);
    -webkit-transform: translateY(-25px);
    -moz-transform: translateY(-25px);
    -ms-transform: translateY(-25px);
    -o-transform: translateY(-25px);
}
.why .why-boxs .box .anim {
    width: 100%;
    height: 210px;
    border-bottom: 2px solid rgb(51, 141, 51);
}
.why .why-boxs .box .content {
    text-align: center;
    padding: 10px;
}
.why .why-boxs .box .content h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-larg);
    margin: 5px 0 10px;
}
.why .why-boxs .box .content p {
    font-size: 16px;
    color: rgb(109, 109, 109);

}
/* -------------------------------------- end section why -------------------------------- */
/* -------------------------------------------start section wide--------------------------- */
.wide {
    padding: 70px 20px;
}
.wide .wide-imges {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.wide .wide-imges .img {
    flex-basis: 100%;
    height: 450px;
    margin-bottom: 20px;
}
.wide .wide-imges .img img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.wide .wide-text {
    padding-left: 15px;
}
.wide .wide-text h2 {
    padding-bottom: 8px;
}
.wide .wide-text p {
    padding: 8px 0;
    font-size: 14px;
    color: #006769;
}
/* -------------------------------------------end section wide----------------------------- */

/* -----------------------------------------start section certificates--------------------- */
.certificates {
    padding: 40px 0;
}
.certificates .slider-certificates {
    width: 70%;
    height: 200px;
    margin: auto;
}
.certificates .slider-certificates .swiper {
    width: 100%;
    height: 100%;
}
.certificates .slider-certificates .swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
}
/* ---------------------------------------------------------------- */



/* ----------------------------------start scroll-to-top---------------------------------- */
.scroll-to-top {
    position: fixed;
    bottom: 15px;
    right: -50px;
    background-color: var(--elrawda-color);
    color: var(--main-color);
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
    z-index: 1;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    transition: .7s ease-in-out;
    -webkit-transition: .7s ease-in-out;
    -moz-transition: .7s ease-in-out;
    -ms-transition: .7s ease-in-out;
    -o-transition: .7s ease-in-out;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}
.scroll-to-top.show{
    right: 15px;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}
/* ---------------------------------end scroll-to-top------------------------------------- */
/* ------------------------------------ start footer-------------------------------------- */
footer {
    background-image: url(../images/pg-footer.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
footer .footer-overlay {
    padding: 70px 20px;
    background-color: rgba(0, 0, 0, 0.8);
}
footer .footer-overlay .box {
    margin-bottom: 35px;
}
footer .footer-overlay .logo {
    width: 100%;
    height: 100px;
    margin-bottom: 30px;
}
footer .footer-overlay .logo img{
    max-width: 100%;
    height: 100%;
}
footer .footer-overlay .location {
    color: #fff;
    font-size: 16px;
}
footer .footer-overlay .location a {
    color: #fff;
    padding-left: 10px;
    text-decoration: none;
}
footer .footer-overlay h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}
footer .footer-overlay ul li {
    list-style: none;
    padding: 5px 0;
    transition: .3s linear;
    -webkit-transition: .3s linear;
    -moz-transition: .3s linear;
    -ms-transition: .3s linear;
    -o-transition: .3s linear;
}
footer .footer-overlay ul li:hover {
    padding-left: 10px;
}
footer .footer-overlay ul a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    
}
footer .footer-overlay .box:nth-child(3) div {
    color: #fff;
    margin-bottom: 10px;
    font-size: 16px;
}
footer .footer-overlay .box:nth-child(3) div a {
    color: #fff;
    padding-left: 5px;
    font-size: 16px;
    text-decoration: none;
}
footer .footer-overlay .box:last-child span a{
    font-size: 22px;
    color: #fff;
    padding: 0 7px;
    text-decoration: none;
}
footer .designer {
    background-color: #142016;
    color: #e5e3da;
    font-size: 17px;
    letter-spacing: 1.2;
    padding: 20px;
    text-align: center;
}
footer .designer a{
    color: #e5e3da;
    font-size: 17px;
}
/* ------------------------------------- end footer -------------------------------------- */

/* ================== Responsive Media Queries Mobile-First Approch ================= */

@media (min-width: 576px) {
    p{
        font-size: 16px;
    }
    .style-text-p {
        font-size: 16px;
    
    }
    .style-text-h2 {
        font-size: 30px;
    }
    nav .logo {
        height: 60px;
        flex-basis: 18%;
    }
    /* ====================================start btn icon show========================= */
    nav .nav-link .btn-links {
        left: -50%;
        width: 50%;
    }
     /* ====================================end btn icon show========================= */
    .banner .list .item .content {
        width: 70%;
    }
    .banner .list .item .content h1 {
        font-size: 30px;
    }
    .recipes {
        padding: 70px 0px;
    }
    .recipes .recipes-content .content {
        width: 75%;
    }
    .experience {
        padding: 70px 0px;
    }
    .experience .experience-text h3{
        font-size: 22px;
    }
    .quality .quality-text, .why .why-text {
        width: 90%;
    }
    .quality .quality-text p{
        font-size: 16px;
    }
    .quality .quality-imgs {
        height: 350px;
        margin-top: 30px;
    }
    .quality .quality-imgs .position-img {
        width: 120px;
        height: 120px;
        left: calc(50% - 60px);
    }
    .quality .quality-imgs .top-img {
        top: -60px;
    }
    .quality .quality-imgs .center-img {
        top: calc(50% - 60px);
    }
    .quality .quality-imgs .bottom-img {
        bottom: -60px;
    }
    .quality .quality-icon .icon-box {
        flex-basis: 49%;
    }
    .quality .quality-icon .icon-box .icon-img {
        height: 220px;  
    }
    .production-slider .item {
        width: 240px;
    }
    .why .why-overlay{
        padding: 70px 0;
    }
    .why .why-text p {
        font-size: 16px;
    }
    .wide .wide-imges .img {
        flex-basis: 48%;
    }
    .wide .wide-text p {
        font-size: 16px;
    }
    footer .footer-overlay .location {
        font-size: 18px;
    }
    footer .footer-overlay h3 {
        font-size: 24px;
    }
    footer .footer-overlay ul a {
        font-size: 18px;
    }
    footer .footer-overlay .box:nth-child(3) div {
        font-size: 18px;
    }
    footer .footer-overlay .box:nth-child(3) div a {
        font-size: 18px;
    }
}


@media (min-width: 768px) {
    p{
        font-size: 16px;
    }
    .style-text-p {
        font-size: 18px;
    
    }
    .style-text-h2 {
        font-size: 35px;
    }
    nav .logo {
        height: 70px;
        flex-basis: 20%;
    }
    .banner .list .item .content h1 {
        font-size: 35px;
    }
    .recipes .recipes-content .content {
        width: 65%;
    }
    .production-slider .item {
        width: 300px;

    }
    .quality .quality-text, .why .why-text {
        width: 80%;
    }
    .quality .quality-imgs {
        height: 450px;
        margin-top: 45px;
    }
    .quality .quality-imgs .position-img {
        width: 150px;
        height: 150px;
        left: calc(50% - 75px);
    }
    .quality .quality-imgs .top-img {
        top: -75px;
    }
    .quality .quality-imgs .center-img {
        top: calc(50% - 75px);
    }
    .quality .quality-imgs .bottom-img {
        bottom: -75px;
    }
    .why .why-boxs .box {
        flex-basis: 48%;
    }
}


@media (min-width: 992px) {
    nav .logo {
        flex-basis: 15%;
        height: 80px;
    }
    nav .nav-link {
        flex-basis: 80%;
    }
    nav .nav-link .btn-icon {
        display: none;
    }
    nav .nav-link .links {
        display: block;
    }
    nav .nav-link .links > ul {
        text-align: right;
        display: flex;
        align-items: center;
    }
    nav .nav-link .links ul li {
        list-style: none;
        display: inline-block;
        margin-right: 5px;
    }
    nav .nav-link .links ul li a {
        text-decoration: none;
        padding: 6px 12px;
        color: var(--main-color);
        font-size: 18px;
        border-radius: 5px;
        transition: .5s;
    }
    nav .nav-link .links ul li a.active, nav .nav-link .links ul li a:hover {
        background-color: var(--main-color);
        color: var(--elrawda-color);
    }
    nav .nav-link .links .prod-drop {
        position: relative;
    }
    nav .nav-link .links .prod-drop .dropdown {
        width: 230px;
        padding: 10px 20px;
        background-color: var(--main-color);
        position: absolute;
        top: 51px;
        left: 0px;
        text-align: left;
        transform-origin: top right;
        transition: all .4s linear;
        -webkit-transition: all .4s linear;
        -moz-transition: all .4s linear;
        -ms-transition: all .4s linear;
        -o-transition: all .4s linear;
        transform:rotateX(90deg);
        -webkit-transform:rotateX(90deg);
        -moz-transform:rotateX(90deg);
        -ms-transform:rotateX(90deg);
        -o-transform:rotateX(90deg);
}
    nav .nav-link .links .prod-drop .dropdown li {
        display: block;
    }
    nav .nav-link .links .prod-drop .dropdown a {
        color: var(--elrawda-color);
        display: inline-block;
        padding: 10px 0;
        
    }
    nav .nav-link .links .prod-drop:hover .dropdown{
        transform: rotateX(0deg);
        -webkit-transform: rotateX(0deg);
        -moz-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
        -o-transform: rotateX(0deg);
    }

    /* ----------- */
    #google_translate_element .para1 {
        display: block;
    }
    #google_translate_element .para2 {
        display: none;
    }
    #google_translate_element .goog-te-gadget .goog-te-combo {
        width: 120px;
    }
    /* ----------- */
    .banner .list .item .content h1 {
        font-size: 40px;
    }
    .banner .list .item .content button a {
        padding: 10px 20px;
        border-radius: 10px;
        font-size: 20px;
    }
    .banner .arrows {
        position: absolute;
        top: 78%;
        right: 48%;
    }
    .banner .arrows button {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    .recipes .recipes-content .content {
        width: 80%;
    }
    .production-slider .item {
        width: 310px;
    }
    .why .why-boxs .box {
        flex-basis: 23%;
    }
}



@media (min-width: 1200px) {
    nav .logo {
        height: 90px;
    }
    nav .nav-link .links ul li a {
        padding: 10px 20px;
    }
    nav .nav-link .links .prod-drop .dropdown {
        top: 56px;
    }
    .banner .list .item .content h1 {
        font-size: 50px;
    }
    .experience .experience-text h3{
        font-size: 30px;
    }
    .production-slider .item {
        width: 320px;
    }
}