﻿/* Header */

body {
    font-family: "Cairo", serif;
    font-optical-sizing: auto;
    font-style: normal;
    padding: 0px;
    overflow-x: hidden;
}

.cardf {
    width: 250px;
    height: 254px;
    background: #07182E;
    position: relative;
    display: flex;
    place-content: center;
    place-items: center;
    overflow: hidden;
    border-radius: 20px;
}

    .cardf img {
        z-index: 1;
        color: white;
        font-size: 2em;
    }

    .cardf::before {
        content: '';
        position: absolute;
        width: 100px;
        background-image: linear-gradient(180deg, rgb(0, 183, 255), rgb(255, 48, 255));
        height: 130%;
        animation: rotBGimg 3s linear infinite;
        transition: all 0.2s linear;
    }

@keyframes rotBGimg {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cardf::after {
    content: '';
    position: absolute;
    background: #07182E;
 
    inset: 5px;
    border-radius: 15px;
}  

.lr-icon {
    position: absolute;
    left: 20px;
    transition: 0.4s ease;
}
.rl-icon {
    position: absolute;
    right: 20px;
    transition: 0.4s ease;
}
.container {
    overflow-x: hidden;
}
.full-width-div {
    width: 100vw;
    height: 100px;
    background-color: lightblue;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: absolute; /* Takes the div out of the normal flow */
    top: 0;
    left: 0;
}
.backgroundhd {
    background-color: #212529;
    background-image: url("images/ballgif.gif");
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay; /* Blending images and black color */
    background-color: rgba(0, 0, 0, 0.8); /* Black overlay with transparency */
    overflow: hidden;
}
.large-header {
    position: relative;
    width: 50%;
    margin:auto;
    background: #333;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    z-index: 1;
    margin-left:100px;
    
}

#large-header {
    background-color: #212529;
    background-image: url("images/ballgif.gif");
    background-size: cover;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.9); 
   position:relative;
   margin-left:200px;
}
.imc {
    height:290px;
}
.bar-menu {
    position:fixed;
    top:0px;
}

.main-title {
    position: absolute;
    margin: 0;
    padding: 0;
    font-weight: 800;
    background-color: rgba(0, 0, 0, 0.0);
    color: #fdfcfb;
    text-align: center;
    top: 31%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.title2 {
    position: absolute;
    margin: 0;
    margin-top:15px;
    padding: 0;
    color: #fdfcfb;
    text-align: center;
    top: 47%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}



.main-title2 {
    position: absolute;
    margin: 0;
    padding: 0;
    color: #fdfcfb;
    text-align: center;
    top: 55%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.demo-1 .title2 {
    text-transform: uppercase;
    font-size: 4.2em;
    letter-spacing: 0.1em;
}

.title2 .thin {
    font-weight: 200;
}


.demo-1 .main-title {
    text-transform: uppercase;
    font-size: 4.2em;
    letter-spacing: 0.1em;
}

.main-title .thin {
    font-weight: 200;
}
.fullw {
    
}
.canheader{
    display:none;
}
.canheader2 {
    display: block;
}
.smallscreen {
    display: none;
}
.mainlscreen {
    display: block;
}

    @media only screen and (max-width: 700px) {
        .lr-icon {
            position: absolute;
            left: 20px;
            transition: 0.4s ease;
        }
        .smallscreen {
            display: block;
        }
        .demo-1 .main-title {
            font-size: 3em;
        }
        .canheader {
            display: block;
        }

        .canheader2 {
            display: none;
        }

        .fullw {
            width: 100%;
            margin: 40px;
        }
    }
@media (max-width:700px) {
    .cardf {
        width: 150px;
        height: 254px;
        background: #07182E;
        position: relative;
        display: flex;
        place-content: center;
        place-items: center;
        overflow: hidden;
        border-radius: 20px;
    }
    .lr-icon {
        position: absolute;
        left: 20px;
        transition: 0.4s ease;
    }
    .smallscreen{
       display:block;
    }

    .mainlscreen {
        display: none;
    }

    .fullw {
        width: 100%;
        margin:40px;
    }
    .canheader {
        display: block;
    }
    .canheader2 {
        display: none;
    }

}

@media (max-width:335px) {
    .cardf {
        margin:auto;
        width: 320px;
        height: 254px;
        background: #07182E;
        position: relative;
        display: flex;
        place-content: center;
        place-items: center;
        overflow: hidden;
        border-radius: 20px;
    }
}