
@font-face {
    font-family: "sans-light";
    src: url(../Fonts/open-sans/OpenSans-Light.ttf);
}
@font-face {
    font-family: "sans-regular";
    src: url(../Fonts/open-sans/OpenSans-Regular.ttf);
}
@font-face {
    font-family: "sans-bold";
    src: url(../Fonts/open-sans/OpenSans-Bold.ttf);
}
@font-face {
    font-family: "bigilla-bold";
    src: url(../Fonts/begilla/Bigilla-Bold.otf);
}
@font-face {
    font-family: "playfair-regular";
    src: url(../Fonts/playfair-display/PlayfairDisplay-Regular.ttf);
}
@font-face {
    font-family: "mono-regular";
    src: url(../Fonts/andele-mono/AndaleMono.ttf);
}
*{
    margin: 0px;
    box-sizing: border-box;
    direction:ltr;
}
body{
    background-color: #07070a;
    text-decoration:none;
    font-family: "sans-regular";
}
/***************************** Global Style *****************************/
h1 , h2 , h3{
    font-family: "sans-bold";
}
h4 , h5 , h6{
    font-family: "sans-bold";
}
p{
    font-size: 12px;
    font-family: "sans-regular";
    color: #555;
}
a{
    color: #000;
    transition: all .3s ease-in-out;
    &:hover{
        text-decoration:none
    }
    &:focus{
       outline:0
    }
}
ul{
    list-style-type:none
}
button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
    transition: all .3s ease;
    outline: 0;
    box-shadow: none;
}
.scroll-top-btn{
    display: inline-block;
    width: 80px;
    height: 80px;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    background: linear-gradient(-135deg, #8f9196, #ccc);
    color: #000;
    text-align: center;
    line-height: 50px;
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index: 1000;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    transition: all 0.1s ease-in-out;
    i{
        position: relative;
        top: 35px;
        font-size: 25px;
        left: 10px;
    }
    &:hover {
        background: linear-gradient(-135deg, #fff, #fff);
        color: #07070a;
        
    }
}
.brand-header{
    height: 85vh;
    position: relative;
    .overlay{
        width: 100%;
        height: 100%;
        background-color: #000;
        position: absolute;
        top: 0;
        left: 0;
        opacity: .8;
    }
    .text{
        text-transform: uppercase;
        color: #fff;
        position: absolute;
        top: 55%;
        transform: translateY(-45%);
        h1{
            font-family: "playfair-regular";
            font-size: 75px;
        }
        p{
            font-family: "sans-regular";
            font-size: 25px;
            color: #999;
        }
    }
}
/***************************** Animations *****************************/
@keyframes slideInDown {
    0% {
    transform: translateY(-150%);
    visibility: visible;
    }
    100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    }
} 
.slideInDown {
    animation-name: slideInDown;
    animation-duration: 1s;
    animation-fill-mode: both;
}      
@keyframes shine {
    100% {
        left: 125%;
    }
}
/***************************** Nav & Footer *****************************/
.navbar{
    &.bg-light{
        background-color: #07070a !important;
    }
    .navbar-brand img{
        width: 160px;
    }
    .item{
        color: #fff;
        border: 1px solid #ccc;
        padding: .375rem 1.75rem;
        border-radius: 20px;
        transition: all .3s ease-in-out;
        cursor: pointer;
        margin-left: 5px;
        .navbar-toggler
        {
            width: 20px;
            height: 20px;
            cursor: pointer;
            background-color: transparent;
            border: none;
            position: relative;
            display: inline-block;
            &.active{
                .navbar-toggler-icon {
                    box-shadow: 0px 0px 0px grey;
                    background: rgba(0, 0, 0, 0);
                    &::before {
                        top: 0px !important;
                        transform: rotate(45deg);
                    }
                    &::after {
                        top: 0px !important;
                        transform: rotate(135deg);
                    }
                }
            }
            .navbar-toggler-icon
            {
                width: 15px;
                height: 2px;
                background: #fff;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                transition: 0.5s;
                &::after,
                &::before
                {
                    content: "";
                    position: absolute;
                    width: 15px;
                    height: 2px;
                    background: #fff;
                    transition: 0.5s;
                }
                &::after{
                    top: -5px;
                    right: 0px;
                }
                &::before{
                    top: 5px;
                    right: 0px;
                }
            }

        }
        &:hover ,
        &.active{
            background-color: #fff;
            color: #07070a;
            .navbar-toggler-icon{
                background: #07070a;
                &::after,
                &::before
                {
                    background: #07070a;
                }
            }
        }
    }
}
marquee{
    color: #777;
    padding: 5px 0px;
    margin-bottom: -6px;
    span{
        margin-bottom: 0;
        font-size: 12px;
        margin-right: 10px;
    }
}
.nav-collapse{
    padding: 30px 0px;
    position: absolute;
    width: 100%;
    z-index: 9;
    display: none;
    background-color: #07070a;
    .nav-inner{
        display: inline-flex;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        .collapse-item{
            margin: 0px 20px;
            a{
                color: #fff;
                font-family: "playfair-regular";
                font-size: 18px;
            }
        }
    }
}
//start edit footer
footer{
    height: 40vh;
    position: relative;
    overflow: hidden;
    p{
        color: #fff;
        margin-bottom: 0;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    .logo-footer{
        opacity: .7;
        position: absolute;
        right: 0;
        width: 57vw;
        bottom: -100px;
    }
    .icons-content{
        display: inline-block;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        margin: 25px 0px;
        a{
            width: 30px;
            height: 30px;
            background-color: #999;
            color: #07070a;
            text-align: center;
            border-radius: 5px;    
            display: inline-block; 
            margin: 0px 3px;
            i{
                position: relative;
                top: 3px;
            }           
            &:hover{
                background-color: #fff;
            }
        }
    }
}
//start edit banners
.banners{
    padding: 25px 0px;
    .image-content{
        width: 100%;
        height: 80vh;
        margin: 50px 0px;
        position: relative;
        overflow: hidden;
        &::before {
            content: '';
            position: absolute;
            top: 0;
            left: -75%;
            z-index: 2;
            display: block;
            width: 50%;
            height: 100%;
            background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
            transform: skewX(-25deg);

        }
        &:hover{
            &::before{
                animation: shine 1.2s;

            }
        }

        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
}
//start edit other works
.other-work{
    padding: 100px 0px;
    .text{
        h3{
            width: fit-content;
            color: #fff;
            font-family: "bigilla-bold";
            position: relative;
            letter-spacing: 2px;
            margin-bottom: 25px;
            &::after{
                content: '';
                width: 100%;
                height: 1px;
                background-color: #555;
                display: block;
                position: absolute;
                left: 0;
                top: 120%;
            }
        }
    }
    .card{
        border: none;
        background-color: transparent;
        .image-content{
            width: 100%;
            height: 350px;
            img{
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
        .card-body{
            h5{
                font-family: "sans-regular";
                text-transform: capitalize;
                color: #fff;
            }
            p{
                text-transform: uppercase;
            }
        }
    }
}
/***************************** Start Edit Home Page *****************************/


/***************************** Start Edit Contact Page *****************************/
//section contact
.contact{
    padding: 100px 0px;
    overflow: hidden;
    .text{
        h2{
            width: fit-content;
            color: #fff;
            font-family: "bigilla-bold";
            position: relative;
            letter-spacing: 2px;
            margin-bottom: 25px;
            &::after{
                content: '';
                width: 100%;
                height: 1px;
                background-color: #555;
                display: block;
                position: absolute;
                left: 0;
                top: 120%;
            }
        }
        h5{
            text-transform: uppercase;
            color: #fff;
            letter-spacing: 3px;
            padding-top: 25px;
        }
        .links{
            a{
                display: flow-root;
                color: #999;
                margin: 5px 0px;
                i{
                    margin-right: 10px;
                }
                .phone{
                    position: relative;
                    top: 15px;
                }
                &.anoter-num{
                    margin-left: 30px;
                }
                &:hover{
                    color: #fff;
                }
            }
        }
        .icons-content{
            display: inline-block;
            margin-top: 25px;
            a{
                width: 30px;
                height: 30px;
                background-color: #999;
                color: #07070a;
                text-align: center;
                border-radius: 5px;    
                display: inline-block; 
                margin: 0px 3px;
                i{
                    position: relative;
                    top: 3px;
                }           
                &:hover{
                    background-color: #fff;
                }
            }
        }
    }
    .form-container{
        .form-control{
            background-color: transparent;
            border-radius: 0;
            border: none;
            border-bottom: 1px solid #999;
            color: #fff;
            margin: 30px 0px;
            &::placeholder{
                color: #999;
            }
            &:focus{
                border-bottom: 1px solid #fff;
                box-shadow: none;
                outline: none;
            }
        }
        .btn-primary{
            width: 100%;
            padding: .7rem 0;
            border: 1px solid #999;
            color: #ccc;
            transition: all .3s ease-in-out;
            background-color: transparent;
            &:hover{
                background-color: #fff;
                color: #07070a;
            }
        }
    }
}
/***************************** Start Edit About Page *****************************/
.about{
    padding: 50px 0px;
    .text{
        h2{
            width: fit-content;
            color: #fff;
            font-family: "bigilla-bold";
            position: relative;
            letter-spacing: 2px;
            margin-bottom: 25px;
            &::after{
                content: '';
                width: 100%;
                height: 1px;
                background-color: #555;
                display: block;
                position: absolute;
                left: 0;
                top: 120%;
            }
        }
        h5{
            text-transform: uppercase;
            color: #fff;
            letter-spacing: 3px;
            padding-top: 25px;
        }
        p{
            color: #f5f5f5;
            line-height: 1.8rem;
            font-size: 18px;
            font-family: "sans-light";

        }
    }
    .image-content{
        width: 100%;
        height: 60vh;
        img{
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }
}
.leadership{
    padding: 50px 0px;
    overflow: hidden;
    .text{
        h3{
            width: fit-content;
            color: #fff;
            font-family: "bigilla-bold";
            position: relative;
            letter-spacing: 2px;
            margin-bottom: 25px;
            &::after{
                content: '';
                width: 100%;
                height: 1px;
                background-color: #555;
                display: block;
                position: absolute;
                left: 0;
                top: 120%;
            }
        }
    }
    .card{
        border: none;
        background-color: transparent;
        .image-content{
            width: 100%;
            height: 500px;
            img{
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
        .card-body{
            text-transform: capitalize;
            h5{
                font-family: "sans-regular";
                color: #fff;
            }

        }
    }
}
//start edit partnership
.partnership{
    padding: 50px 0px;
    .text{
        h3{
            width: fit-content;
            color: #fff;
            font-family: "bigilla-bold";
            position: relative;
            letter-spacing: 2px;
            margin-bottom: 25px;
            &::after{
                content: '';
                width: 100%;
                height: 1px;
                background-color: #555;
                display: block;
                position: absolute;
                left: 0;
                top: 120%;
            }
        }
    }
    img{
        height: 170px;
        object-fit: contain;
    }
    .owl-theme .owl-nav
    {
        display: none;
    }
    .owl-theme .owl-dots .owl-dot.active span, 
    .owl-theme .owl-dots .owl-dot:hover span {
        background: #fff;
    }
    .owl-theme .owl-dots .owl-dot span {
        background: #999;
    }
}
/***************************** Start Edit Sketch Page *****************************/
//start header
.sketch-header{
    background: url(../images/sketch-header.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
//start edit main banner 
.main-banner{
    padding: 50px 0px;
    .image-content{
        width: 100%;
        height: 240vh;
        img{
            width: 100%;
            height: 100%;
            
        }
    }
}
//start edit sketch banners
.sketch-banners .image-content img {
    object-fit: contain;
}
/***************************** Start Edit Tanami Medical Page *****************************/
//start header
.medical-header{
    background: url(../images/medical-header.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
/***************************** Start Edit MDR Page *****************************/
//start header
.mdr-header{
    background: url(../images/mdr-header.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
/***************************** Start Edit ANAN boutique Page *****************************/
//start header
.anan-header{
    background: url(../images/anan-header.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
/***************************** Start Edit Tashyed Page *****************************/
//start header
.tashyed-header{
    background: url(../images/other-work-1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
/***************************** Start Edit Art & Shapes Page *****************************/
//start header
.art-header{
    background: url(../images/other-work-2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
/***************************** Start Edit Al youm host Page *****************************/
//start header
.alyoum-header{
    background: url(../images/alyoum-header.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
/***************************** Start Edit Brandy Page *****************************/
//start header
.brandy-header{
    background: url(../images/brandy-header.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
/***************************** Start Edit zoom Page *****************************/
//start header
.zoom-header{
    background: url(../images/zoom-header.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
/***************************** Start Edit diablo Page *****************************/
//start header
.diablo-header{
    background: url(../images/diablo-header.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
/***************************** Start Edit intellect Page *****************************/
//start header
.intellect-header{
    background: url(../images/intellect-banner-4.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
/***************************** Start Edit Projects Page *****************************/
//start projects header
.projects-header{
    background-color: #07070a;
    text-transform: uppercase;
    padding: 50px 0px;
    .text-header{

        h5{
            color: #f4f4f4;
            font-family: "mono-regular";
            font-size: 15px;
        }

        
        h2{
            color: #fff;
            font-family: "playfair-regular";
            line-height: 5rem;
            font-size: 70px;
            transition: .5s;


        }
        .underline{
            display: flex;
            span{
                font-family: "mono-regular";
                position: relative;
                width: fit-content;
                font-size: 18px;
                &::after{
                    content: '';
                    height: 2px;
                    width: 100%;
                    background-color: #999;
                    display: block;
                    margin-top: -10px;
                }
                &:first-child{
                    margin-right: 20px;
                }
                &:last-child{
                    margin-left: 20px;
                }
            }
        }
        .right{
            float: right;
        }
    }
}
//start edit our projects
.our-projects{
    padding: 50px 0px;
    overflow: hidden;
    .card{
        margin: 5px 0px;
        border: none;
        background-color: transparent;
        .image-content{
            img{
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
        .card-body{
            position: relative;
            padding-right: 50px;
            background-color: #07070a;
            h5{
                color: #fff;
                text-transform: capitalize;
                font-family: "sans-regular";

            }
            .flag{
                width: 50px;
                position: absolute;
                right: 0;
                top: 1.25rem;
                height: 30px;
                object-fit: contain;
            }
            p{
                color: #676767;
                text-transform: uppercase;
            }
        }
    }
}