@import url('https://fonts.googleapis.com/css2?family=Cantarell:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Cantarell:ital,wght@0,400;0,700;1,400;1,700&display=swap');

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

@font-face {
    font-family: Gotham;
    src: url(fonts/GothamBook.ttf);
}

:root {
    --mainBg: rgb(16 185 129 /1);
    --color: #454545;
    --mainColor: rgb(79, 70, 156);

}

a {
    text-decoration: none
}

body {
    font-family: "cairo", sans-serif;
}

.nav_space {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 99;
    background: white;

}


.navbar-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 10px;
    font-weight: 500;

}

.nav-link.active {
    border-color: rgb(27, 27, 27);
    border-bottom: 2px solid;
}

.navbar img {
    height: 60px;
    object-fit: contain;
}

.navbar-toggler {
    border: 0px;
}

.navbar-toggler:focus {
    border: 0px;
    box-shadow: none;
}

.nav_space {
    box-shadow: 0 2px 6px 0px rgba(0, 0, 0, 0.2);
}




/* ads */

#carouselExampleControls {
    border-radius: 5px;
    overflow: hidden;
}

.carousel-control-next,
.carousel-control-prev {
    width: unset;

}

.carousel-control-prev-icon {
    width: 20px;
    margin: 0px 5px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}

.carousel-control-next-icon {
    width: 20px;
    margin: 0px 5px;

    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}




.project:before {
    opacity: 1;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(0%, rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.75) 100%);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.75) 100%);
}

.project {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
}

.layer {
    width: 100%;
    padding: 20px 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: white;
    justify-content: flex-end;
    position: absolute;
    top: 0px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(0%, rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.75) 100%);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.75) 100%);
}

.layer p {
    margin-bottom: 0px;
}

.project_name {
    font-weight: 700;
    margin-bottom: 5px !important;
}


.slide_h2 {
    font-size: 20px;
    color: #333;
    font-weight: 700;
    position: relative;
    z-index: 10;
    margin-bottom: 25px;
    width: fit-content;
}

.slide_h2::before {
    background-color: var(--mainBg) !important;
    content: "";
    height: 5px;
    width: 50%;
    position: absolute;
    border-radius: 2px;
    bottom: -50%;
    z-index: -2;
}


es-btn {
    min-height: 40px;
    padding-bottom: 8px;
    padding-top: 8px;
    padding-right: 16px;
    padding-left: 16px;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
    background: var(--mainBg);
    color: white;
    padding: 8px 20px;
    font-size: 13px;
    border-radius: 0.25rem;
    width: fit-content;
    font-weight: 700;

}




.group {
    position: relative;
}

input,
textarea {
    width: 100%;
    font-size: 15px;
    color: rgb(59, 59, 59);
    padding: 7px 16px;
    padding-top: 23px;
    background-color: rgb(241, 241, 241);
    outline: none;
    border: 0px;
    font-weight: 600;
}

input:focus,
textarea:focus {
    border: 1px solid black;
}

label {
    transition: all 0.15s ease 0s;
    position: absolute;
    top: 33%;
    color: rgb(59, 59, 59);
    right: 16px;
    font-weight: 500;
    pointer-events: none;
}



label.move {
    top: 5px !important;
    font-size: 13px;
    color: rgb(120, 119, 107);
    transition: all 0.15s ease 0s;
}



.es-btn {
    background: white;
    font-size: 14px;
    min-height: 50px;
    color: rgb(120, 119, 107);
    border: 1px solid black;
    padding: 4px 16px;

}

.es-btn:after {
    border-top: 1px solid !important;
    width: 18px;
    height: 0.1px;
    display: inline-block;
    content: "";
    margin-left: 8px;
    margin-right: 8px;

    color: rgb(120, 119, 107);
}

.es-btn:before {
    border-top: 1px solid !important;
    width: 18px;
    height: 0.1px;
    display: inline-block;
    content: "";
    margin-right: 8px;
    margin-left: 8px;

    color: rgb(120, 119, 107);
}


.es-btn:hover {
    border-color: rgb(219, 218, 204);
    background-color: rgb(219, 218, 204);
    color: rgb(21, 21, 21);
}


p {
    margin-bottom: 5px;
}

.data a {
    color: var(--mainBg)
}

.watsapp {
    background-color: rgb(69, 90, 100);
    color: white !important;
    padding: 8px 20px;
    min-height: 50px;
    display: inline-block;
    border-radius: 2px;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    width: fit-content;
}

.error {
    color: rgb(239, 0, 0);
    margin-top: 4px;
}


.content {
    margin-top: 105px
}



.path {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    padding: 0px;
}

.path li {
    padding-right: 5px;
    font-size: 16px;
}

.path li a {
    text-decoration: none;
    /* border-bottom: 1px dashed gray; */
    color: #000000;
    font-weight: 600;
}

.path li.active {
    color: #999;
}

@media (max-width: 993px) {
    .path li {
        padding-top: 10px;
    }
}








/* footer */

footer {
    background-color: #f2f3f7c2;
    margin-top: 20px;
    padding: 30px;
}

.social {
    width: 140px;
    position: fixed;
    top: 50%;
    z-index: 99;
    left: 0px;
}

i,
svg {
    font-size: 25px;
    color: white;
    margin-right: 10px;
    margin-left: 10px;
}



.social-btn {
    width: 140px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom-right-radius: 30px;
    border-top-right-radius: 30px;
    color: white;
    padding: 5px;
    margin-bottom: 5px;
    left: -95px;
    transition: all .5s;
    position: relative;
}

.social-btn {
    flex-direction: row-reverse;
}




.social-btn:hover {
    left: 0px;
    transition: all .5s;
}

.social-btn.facebook {
    background-color: #0084c6;
}

.social-btn.whatsapp {
    background-color: #24cc63;
}

.social-btn.instagram {
    background-color: #f62782;
}

.social-btn.call {
    background-color: #0084c6;
}
