/* Copyright Mehdi Hachem from Weynspire - Follow me on LinkedIn: https://www.linkedin.com/in/mehdi-hachem-54a8672b0/ */


* {
    font-family: 'Lato', sans-serif;
    text-decoration: none;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f2f2f2;
}





.background-image {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.overlay {
    bottom: 0;
    padding: 20px;
    width: 50vw;
    font-size: 100%;
    margin-top: 60vh;
}

h1 {
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #dddddd;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 24px;
    }
}

.background-image {
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
}

.navbar {
    background-color: #ffffff;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 100;

}

.fixed-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    height: 12vh;
}

.navbar ul li {
    margin: 0 20px;
}

.navbar ul li a {
    color: #000;
    font-size: 1.3rem;
    position: relative;
}

.navbar ul li.logo {
    margin-right: auto;
}

.navbar ul li a img {
    height: 120px;
}

.navbar ul li a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: #000000;
    transition: width 0.3s ease;
}

.navbar ul li a:hover::before {
    width: 100%;
}

.navbar ul li a:hover {
    text-decoration: none;
}

@media screen and (max-width: 1024px) {
    .navbar ul li a {
        font-size: 100%;
    }
    .navbar ul li {
        margin: 0 30px;
    }

    .navbar ul li a img {
        height: 80px;
    }
    .overlay {
        font-size: 70%;
        width: 80vw;
        margin-top: 40vh;
    }
}
@media screen and (max-width: 768px) {
    .navbar ul li a {
        font-size: 100%;
    }

    .navbar ul li a img {
        height: 120px;
    }
    .overlay {
        font-size: 70%;
        width: 80vw;
        margin-top: 70vh;
    }
}

@media screen and (max-width: 560px) {
    .navbar ul li a {
        font-size: 80%;
    }
    .navbar ul li {
        margin: 0 5px;
    }

    .navbar ul li a img {
        height: 50px;
    }
    .overlay {
        font-size: 70%;
        width: 80vw;

    }
}
@media screen and (max-width: 414px) {
    .navbar ul li a {
        font-size: 80%;
    }
    .navbar ul li {
        margin: 0 5px;
    }

    .navbar ul li a img {
        height: 50px;
    }
    .overlay {
        width: 90vw;
        font-size: 78%;
    }
}

@media screen and (max-width: 376px) {
    .navbar ul li a {
        font-size: 65%;
    }
    .navbar ul li {
        margin: 0 5px;
    }

    .navbar ul li a img {
        height: 50px;
    }
    .overlay {
        width: 100vw;
        font-size: 65%;
    }
}































.bg-img {
    height: 100%;
    width: 100%;
}

.site-footer {
    background-color: #f8f9fa;
    padding: 50px 0;
}

.site-footer h3 {
    color: #333;
}

.site-footer p {
    color: #555;
}

.site-footer ul {
    list-style: none;
    padding: 0;
}

.site-footer ul li {
    margin-bottom: 10px;
}

.site-footer ul li a {
    color: #555;
    text-decoration: none;
}

.site-footer ul li a:hover {
    color: #007bff;
    text-decoration: underline;
}

a.text-white {
    position: relative;
    text-decoration: none;
}

a.text-white::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: white;
    transition: width 0.7s ease-in-out;
}

a.text-white:hover::before {
    width: 100%;
}

a.text-white:hover::before {
    width: 100%;
}
a.text-black {
    position: relative;
    text-decoration: none;
}

a.text-black::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: rgb(0, 0, 0);
    transition: width 0.7s ease-in-out;
}

a.text-black:hover::before {
    width: 100%;
}

.img-zoom {
    transition: 1s;
}

.img-zoom:hover {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}


