@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    list-style: none !important;
    font-family: "poppins";
}

:root {
    --primary: #000000;
    --secondary: #FAA710;
    --bg: #F5F2E5;
}

body {
    background-color: var(--bg);
}

header {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
        url(../images/bg-3.jpg);
    background-size: 100%;
    -webkit-animation: kenburns-top 10s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite alternate backwards;
    animation: kenburns-top 10s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite alternate backwards;
}

@-webkit-keyframes kenburns-top {
    0% {
        background-size: 100%;
    }

    100% {
        background-size: 150%;
    }
}

@keyframes kenburns-top {
    0% {
        background-size: 100%;
    }

    100% {
        background-size: 150%;
    }
}


nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

nav ul {
    display: inline-flex;
    border: 1px solid var(--bg);
    border-radius: 40px;
    padding: 8px 10px;
}

nav a {
    color: var(--bg);
    padding: 5px 20px;
    text-transform: uppercase;
    font-size: 13px;
    transition: all .5s ease;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px 20px;
    border-radius: 40px;
    color: var(--bg);
}

nav a.active {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px 20px;
    border-radius: 40px;
    color: var(--bg);
}

nav button {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px 20px;
    border-radius: 40px;
    color: var(--bg);
    border: 1px solid var(--bg);
    background-color: transparent;
}

h1 {
    font-size: 70px;
    line-height: 70px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--bg);
    font-family: "El Messiri", sans-serif;
}

h2 {
    font-family: "El Messiri", sans-serif;
    font-size: 50px;
    line-height: 50px;
}

h3,
h4 {
    font-family: "El Messiri", sans-serif;
}

.hero {
    height: 100%;
    display: flex;
    flex-direction: column;
}

small {
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--bg);
    font-size: 15px;
    letter-spacing: 1px;
    border-radius: 40px;
    border: 1px solid var(--bg);
}

.white-button {
    padding: 15px 35px;
    border: 1px solid var(--bg);
    background-color: var(--bg);
    border-radius: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    font-weight: 500;
    font-size: 14px;
}

.primary-button {
    padding: 15px 35px;
    border: 1px solid var(--bg);
    background-color: var(--bg);
    border-radius: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    transition: all .5s ease-in-out;
}

.primary-button:hover {
    background-color: var(--primary);
    color: var(--bg);
}

.grid-card {
    position: relative;
    overflow: hidden;
}

p {
    color: #adadad;
    font-weight: 500;
    font-size: 14px;
}

.grid-card h1 {
    position: absolute;
    bottom: 10px;
    left: 30px;
    z-index: 1;
    text-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
}

.icon {
    min-width: 40px;
    color: var(--bg);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    border-radius: 50%;
}

.footer a {
    color: #606163;
}

@media only screen and (max-width: 600px) {
    nav ul {
        display: none;
    }

    h1 {
        font-size: 55px;
        line-height: 50px;
    }
}

.banner {
    width: 100%;
    height: 50vh;
    background: url(../images/bg-4.jpg);
    /* background-position: center; */
}

.offcanvas a {
    color: #000;
    padding-top: 15px !important;
}

.offcanvas li {
    padding-top: 15px !important;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-icon {
    width: 50px;
    height: 50px;
    background-color: #128c7e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
    border-radius: 50%;
    bottom: 50px;
    right: 50px;
    position: fixed;
    cursor: pointer;
}