* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --main-background-color: #a05e2b;
    --secondary-background-color: #efe0bb;

}


html {
    scroll-behavior: smooth;
}

body {
    /* English Font */
    font-family: "Nunito", sans-serif;
    /* Arabic Font */
    font-family: 'Baloo Bhaijaan 2';
    background-color: var(--secondary-background-color);
}


.container {
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
}

ul li {
    text-transform: capitalize;
    list-style: none;
}

/* start components */
.main-heading {
    text-align: center;
    font-size: 50px;
    text-transform: capitalize;
    border-bottom: 3px solid black;
    width: fit-content;
    margin: 20px auto 20px;
    position: relative;
    font-family: 'Baloo Bhaijaan 2';
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
}

.padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* respnsive */
@media (max-width:1000px) {
    .main-heading {
        font-size: 40px;
    }
}

@media (max-width:800px) {
    .main-heading {
        font-size: 30px;

    }
}

@media (max-width:767px) {
    .main-heading {
        font-size: 25px;

    }
}

/* responsive */



/* ends components */

/* scrolling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #a05e2b;
}

::-webkit-scrollbar-thumb {
    background-color: #fff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

/* scrolling */


/* preloader */
#preloader {
    background-color: var(--main-background-color);
    background-image: url(../images/fixed_Logo.png);
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 100;
    transition: 0.4s;
    animation-name: scale;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
}

@keyframes scale {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    100% {
        transform: scale(1.5);
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
    }
}

@media (max-width:767px) {
    #preloader {
        background-size: 30%;
    }
}

@media (max-width:900px) {
    #preloader {
        background-size: 55%;
    }
}

@media (max-width:1000px) {
    #preloader {
        background-size: 60%;
    }
}

#btn {
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: white;
    border: 3px solid #a05e2b;
    color: #a05e2b;
    border-radius: 50%;
    font-size: 50px;
    line-height: 1.3;
    position: fixed;
    right: 10px;
    bottom: 10px;
    display: none;
    transition: 0.4s;
}


/* preloader */
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 985px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1185px;
    }
}

.dots {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    transition: 0.4s;
    display: none;
    /* background-color: red; */
}

.dots span {
    margin-top: 10px;
    height: 2px;
    width: 100%;
    display: block;
    background-color: white;
    transition: 0.4s;
}

.fristspan {
    transform: rotate(45deg) translate(17px);
}

.secondspan {
    opacity: 0;
}

.lastspan {
    transform: rotate(-45deg) translate(17px);
}

header {
    background-color: var(--main-background-color);
    transition: 0.5s;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fffaf1;
    background-color: var(--main-background-color);
    max-width: 100%;
    position: relative;
}

header img {
    width: 100px;
    height: 100px;
}

header ul {
    display: flex;
}

header nav li {
    margin: 14px;
    font-size: 17px;
}

header nav li:hover {
    border-bottom: 4px solid white;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
}

header nav li a {
    text-decoration: none;
    color: white;
}

header nav label {
    margin: auto;
    text-transform: capitalize;
}

header nav select {
    padding: 0 15px;
    background-color: var(--main-background-color);
    width: fit-content;
    color: white;
    border: none;
    text-transform: uppercase;
    margin: 0 auto;
}

header nav select:focus {
    outline: none;
}



/* header media quaries */

@media (max-width:1200px) {
    header nav li {
        font-size: 17px;
        margin: 15px;
    }

    #language {
        font-size: 17px;
    }
}

@media (max-width:1000px) {
    header nav li {
        font-size: 17px;
        margin: 15px;
        padding: 10px;
    }

    #language {
        font-size: 17px;
    }
}

@media (max-width:990px) {
    header nav li {
        font-size: 13px;
        margin: 7px;
    }

    #language {
        font-size: 13px;
        padding: 0;
    }
}

@media (max-width:890px) {
    header nav li {
        font-size: 11px;
        width: fit-content;
        margin: 0 auto;
    }

    #language {
        font-size: 11px;
        padding: 0;
    }
}

@media (max-width: 767px) {
    header nav ul li a {
        font-size: 15px;
        padding: 15px;
    }
}

@media (max-width: 767px) {
    header nav ul {
        display: none;
    }

    header .dots {
        display: block;

    }
}

.burger {

    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 2;
    padding: 10px;
    text-align: center;
    background-color: var(--main-background-color);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}


@media (max-width:767px) {
    /* header nav:hover ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        z-index: 2;
        padding: 10px;
        text-align: center;
        background-color: var(--main-background-color);
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
    } */
}

@media (min-width: 768px) {
    header .bars {
        display: none;
    }
}

/* header media quaries */


/* landing ********************************************************* start */
.landing {
    position: relative;
    background-image: url(../images/ladmding.jpg);
    background-size: cover;
    height: 100vh;
    max-width: 100%;
    object-fit: contain;
}

.landing .text {
    position: absolute;
    top: 45%;
    transform: translatey(-50%);
    color: #fff;
}

.landing h2 {
    text-transform: capitalize;
    font-size: 50px;
    font-weight: bold;
    padding: 20px;
    text-align: center;
    font-family: "Permanent Marker", cursive;
    letter-spacing: 3px;

}

.landing h3 {
    text-transform: uppercase;
    font-size: 40px;
    font-weight: normal;
    padding: 20px;
    font-family: "Permanent Marker", cursive;
    letter-spacing: 2px;

}

/* landing media quaries */


@media (max-width:1200px),
(max-width:1600px) {
    .landing {
        background-position: top;
        height: 100vh;
        background-repeat: no-repeat;
    }
}

@media (max-width:992px) {
    .landing .text h2 {
        font-size: 35px;

    }

    .landing .text h3 {
        font-size: 30px;
    }
}

@media (max-width:767px) {
    .landing .text h2 {
        font-size: 30px;

    }

    .landing .text h3 {
        font-size: 25px;

    }
}

/* landing media quaries */


/* landing ********************************************************* start */


/* who we *********************************************************** are */

.sombrero .container .card {
    display: flex;
    justify-content: center;
    background-color: white;
    padding: 20px;
    margin: 0 auto;
    max-width: fit-content;
    height: 600px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: 0.8s;
    -webkit-transition: 0.8s;
    -moz-transition: 0.8s;
    -ms-transition: 0.8s;
    -o-transition: 0.8s;
}

.sombrero .card img {
    max-width: 100%;
    border-radius: 5px;
}

.sombrero .card .text {
    padding: 10px;
}

.sombrero .card .text p img {
    width: 40px;
    height: 40px;
    margin-top: 10px;
}

.img-fx {
    display: flex;
}

.img-fx img {
    width: 40px;
    height: 40px;
    margin-top: 10px;
}

.sombrero .card .text h2 {
    text-transform: uppercase;
    font-weight: bold;
}

.sombrero .card .text span,
p {
    text-transform: capitalize;
    font-size: 25px;
    padding: 10px;
}

.sombrero .card .text p {
    line-height: 2;
}

/* who we are media quaries */

@media (max-width: 1000px) {
    .sombrero .container .card {
        height: fit-content;
        flex-direction: column;
        align-items: center;
        text-align: center;
        line-height: 1.4;
        max-width: 500px;
        transition: 0.8s;
        -webkit-transition: 0.8s;
        -moz-transition: 0.8s;
        -ms-transition: 0.8s;
        -o-transition: 0.8s;
    }
}

@media (max-width:280px) {
    .sombrero .card .text p {
        line-height: 1.4;
    }
}

/* who we are media quaries */


/* who we *********************************************************** are */


/* event ************************************************************** start */


.events {
    background-color: white;
}

.events p {
    text-align: center;
}

.coffee {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.coffee .f {
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
}

@media (max-width:1200px) {
    .coffee {
        justify-content: center;
    }
}

.coffee form {
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px, rgb(51, 51, 51) 0px 0px 0px 3px;
}

.coffee .var {
    height: fit-content;
}



.coffee img {
    border-radius: 5px;
    transition: 0.4s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px, rgb(51, 51, 51) 0px 0px 0px 3px;
}

.front {
    padding: 20px;
    background-color: white;
}

.coffee form {
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-bottom: 50px;
}

.coffee label {
    display: flex;
    text-transform: capitalize;
    padding: 10px;
    font-size: 19px;
}

.coffee input,
textarea {
    margin-left: 10px;
}

textarea {
    height: 120px;
    width: calc(100% - 20px);
    resize: none;
    border: 2px solid var(--main-background-color);
    padding: 5px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

textarea::placeholder {
    border: none;
    text-transform: capitalize;
}

.coffee input {
    border: none;
    border-bottom: 2px solid var(--main-background-color);
}

.coffee form [type="submit"] {
    display: flex;
    border: none;
    padding: 10px 15px;
    text-transform: uppercase;
    border-radius: 5px;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.coffee form [type="submit"]:hover {
    background-color: var(--main-background-color);
    color: white;
}

input:focus,
textarea:focus {
    outline: none;
}

select {
    margin-left: 10px;
}

.required::after {
    content: " \f8c0";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    color: red;
    margin-left: 5px;
    margin-top: 3px;
}

form ::placeholder {
    padding: 5px;
}

.events .col {
    text-align: center;
}

.events .col img {
    margin: 0 auto;
    max-width: 200px;
    padding: 20px;
}

.event-w {
    display: none;
}

.event-w button {
    outline: none;
    border: none;
    padding: 10px;
    border-radius: 5px;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.event-w button:hover {
    color: white;
    background-color: #a05e2b;
}


.coffee #ice-btn:hover .f {
    display: flex;
}

/* event media quaries */

@media (max-width:700px) {

    .coffee img,
    .coffee form,
    .coffee .f {
        width: 500px;
    }

    .coffee .f {
        display: none;
        transition: 0.4s;
        -webkit-transition: 0.4s;
        -moz-transition: 0.4s;
        -ms-transition: 0.4s;
        -o-transition: 0.4s;
    }

    .event-w {
        text-align: center;
        display: inline-block;
        transition: 0.4s;

    }

    .event-w button {
        margin: 5px;
    }

}

@media (max-width:550px) {

    .coffee img,
    .coffee form,
    .coffee .f {
        width: 400px;
    }

    form div {
        display: flex;
    }
}

@media (max-width:500px),
(max-width:320px) {

    .coffee img,
    .coffee form,
    .coffee .f {
        width: 300px;
    }
}

/* event media quaries */


/* event ***************************************************************end */



/* delivery ************************************************************** start */
.delivery {
    background-color: var(--secondary-background-color);
}

.delivery .text {
    font-size: 28px;
    text-transform: capitalize;
    margin-bottom: 40px;
    text-align: center;
}

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

.img img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    padding: 20px;
}

/* delivery media quaries */
@media (max-width:1000px) {
    .delivery .text h2 {
        font-size: 25px;
    }
}

@media (max-width:750px) {
    .delivery .text h2 {
        font-size: 20px;
    }
}

@media (max-width:500px) {
    .delivery .text h2 {
        font-size: 17px;
    }
}

/* delivery media quaries */

/* delivery ************************************************************** end */

/* gallery************************************************************ */

.gallery {
    background-color: white;
}

.gallery .box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;

}

.gallery .box img {
    max-width: 300px;
    max-height: 300px;
    object-fit: contain;
    padding: 3px;
}



/* gallery************************************************************ */


/* servies *********************************************************/


.servies .ser-img {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.servies .ser-img img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    margin: 10px;
}

@media (max-width:700px) {
    .servies .ser-img img {
        width: 250px;
        height: 200px;
    }
}



/* servies ********************************************************/


/* find ***************************************************************** start */

.find-us {
    background-color: #fff;
}

.location {
    display: flex;
    flex-basis: 60%;
    margin-bottom: 30px;


}

.find-us .box {
    display: flex;
    justify-content: space-between;
}

@media (max-width:1200px) {
    .find-us .box {
        display: flex;
        flex-direction: column;
    }

    .location iframe {
        width: 1000px !important;
    }
}

@media (max-width:1000px) {
    .location iframe {
        width: 900px !important;
    }
}

@media (max-width:767px) {
    .location iframe {
        width: 650px !important;
    }
}

@media (max-width:700px) {
    .location iframe {
        width: 600px !important;
    }
}

@media (max-width:650px) {
    .location iframe {
        width: 500px !important;
    }
}

@media (max-width:550px),
(max-width:400px) {
    .location iframe {
        width: 380px !important;
    }
}

@media (max-width:380px) {
    .location iframe {
        width: 350px !important;
    }
}


.location iframe {
    width: 681px;
    height: 600px;
    border: 3px solid #a05e2b;
    margin: 0 auto;
}

@media (max-width: 650px) {
    .location iframe {
        width: 450px;
        height: 450px;
    }
}

@media (max-width: 400px) {
    .location iframe {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 350px) {
    .location iframe {
        width: 330px;
        height: 330px;
    }
}

@media (max-width: 280px) {
    .location iframe {
        width: 250px !important;
        height: 250px !important;
    }
}

.group {
    margin-left: 66px;

}

.group .con i {
    color: var(--main-background-color);
    margin-right: 10px;
    font-size: 25px;

}


.group {
    display: flex;
    flex-direction: column;
}


.group .con {
    padding: 10px;
}

.group .con div {
    display: flex;

}

.group span {
    margin-left: 54px;
    text-transform: capitalize;
    font-size: 25px;
    margin-bottom: 20px;
    margin-right: 50px;

}

.group .con div i {
    margin-top: 13px;

}

.group .socials {
    display: flex;
    justify-content: space-evenly;
}

@media (max-width:650px) {
    .group {
        margin-left: 0px !important;

    }
}

/* find us end */

/* footer ************************************************************ start */


.footer {
    background-color: var(--main-background-color);
    padding: 60px;
    text-transform: capitalize;
    text-align: center;
}

.footer .open {
    padding: 20px;
    text-transform: capitalize;
}

.footer h3,
h4 {
    margin: 10px 0 10px 0;
    color: white;
}

.footer p {
    font-size: 15px;
    color: white;
}



.footer .icon img {
    padding: 10px;
    backface-visibility: hidden;
    overflow: hidden;
}

.footer span {
    color: white;
    font-size: 20px;
    text-transform: capitalize;
}

.footer a i {
    color: white;
}

.footer label {
    margin: auto;
    text-transform: capitalize;
}

.footer select {
    padding: 0 15px;
    background-color: var(--main-background-color);
    width: fit-content;
    color: white;
    border: none;
    text-transform: uppercase;
    margin: 0 auto;
}

.footer select:focus {
    outline: none;
}

#date {
    font-size: 15px;
}
