@font-face {
    font-family: myFont;
    src: url(coolvetica\ rg.otf);
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Poppins;
}
html{
    scroll-behavior: smooth;
}

body{
    background: #080808;
    color: #ffffff;
}

#header{
    width: 100%;
    height: 100vh;
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
}

.container{
    padding: 10px 10%;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background: hsl(0 0% 100% / 0.1);
    backdrop-filter: blur(1rem);
    margin: 20px;
    border-radius: 20px;
}

.logo{
    width: 80px;
    padding: 20px;
    height: auto;
}

nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a{
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    margin-right: 10px;
}

nav ul li a:hover{
    color: #ff004f;
}

nav ul li a span{
    position: absolute;
    margin-top: 20px;
    width: 100%;
    height: 100%;
    height: 3px;
    background: #ff004f;
    top: 0;
    left: 0;
    z-index: -1;
    border-bottom: 2px solid #ff004f;
    border-radius: 10px;
    transform: scale(0) translateY(50px);
    opacity: 0;
    transition: 0.5s;
}

nav ul li a:hover span{
    transform: scale(1) translateY(0);
    opacity: 1;
}


.header-text{
    margin-top: 10%;
    font-size: 60px;
    font-weight: bold;
}

.header-text h1{
    margin-top: 20px;
    font-size: 25px;
    font-weight: 500;
}

.header-text span{
    color: #ff004f;
}


/* -----side bar----- */
.menu-btn{
    display: none;
}
.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    color: #020202;
    background-color: #0000008e;
    box-shadow: -10px 0 10px rgba(0,0,0,0.1);
    backdrop-filter: blur 10px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

}
.sidebar li{
    width: 100%;
}
.sidebar a{
    width: 100%; 
}

/* Key services */
#container{
    padding-left: 120px;
    padding-right: 120px;
    padding-top: 10px;
}

.sub-title{
    font-size: 60px;
    font-weight: bold;
}

.services-list{
    /* display: flex;
    align-items: center;
    justify-content: space-between; */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;

}

.services-list div{
    width: 300px;
    background: #262626;
    font-size: 16px;
    font-weight: 400;
    padding: 40px;
    border-radius: 10px;
    transition: 0.2s all;
}

.services-list div:hover{
    cursor: pointer;
    border: 2px solid #ff004f;
    box-shadow: 0 5px 5px #ff004f;
}

.services-list div img{
    width: 100%;
    height: auto;
    padding-bottom: 10px;
}
.Brand-design img{
    width: 100%;
    height: 20%;
}

.services-list div a{
    color: #ffffff;
    text-decoration: none;
    padding-top: 10px;
    cursor: pointer;
}

.services-list div p{
    padding-top: 10px; 
    padding-bottom: 10px;
}


/* footer */
.SignUp{
width: 100%;
position: relative;
/* background-color: #020202; */
display: flex;
justify-content: center;
align-items: center;
}

.left-col{
align-items: center;
} 

.left-col p{
padding-top: 5px;
padding-bottom: 10px;
cursor: pointer;
}

.left-col h1{
font-size: 40px;
font-weight: bold;
}
.left-col img{
padding-right: 10px;
}

.socials{
padding: 10px;
padding-left: 0;
transition: 0.5s;
}

.socials a img:hover{
transform: scale(1.2);
}

/* .btn{
    padding: 14px 60px;
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 30px;
    cursor: pointer;
    color: #ffffff;
    border: none;
    border-radius: 5px;
} */
.btn{
    display: inline-block;
    text-decoration: none;
    padding: 14px 40px;
    font-size: 18px;
    cursor: pointer;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    background: #ff004f;
    margin-left: 0;
    margin-bottom: 60px;
}


/* media queries */
@media(max-width:800px){
    .hideOnMobile{
        display: none;
    }
    .menu-btn{
        display: flex;
    }
    /* ---work section */
    #Work button{
        display: block;
    }
     /* services */
    #container{
        padding: 50px;
        padding-top: 50px;
    }

    /* services */
    #Work{
        padding: 20px;
        padding-top: 20px;
    }

    .SignUp{
        display: block;
        margin: 10px;
        justify-content: center;
        align-items: flex-start;
        width: 100%;
    }
    .left-col{
        padding: 10px;
    }
    /* about me */
    .about-col1 {
        flex-basis: 100%;
    }
    .card-wrapper{
        margin: 0 10px 25px;
    }
    .swiper-slide-button{
        display: none;
    }  

  }

  /* ------------phone screen---------- */
  @media(max-width:400px){
    .hideOnMobile{
        width: 100%;
    }
  }