* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: poppins, sans-serif;
}

img {
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #080808;
    color: #fff;
}

body p1 {
    font-family: "Lucida Console", "Courier New", monospace;
}

body p2 {
    font-family: "Lucida Console", "Courier New", monospace;
    margin-top: -500px;
}


.social-icons1 a {
    text-decoration: none;
    font-size: 35px;
    margin-bottom: -10px;
    margin-right: 15px;
    color: #b159ac;
    display: inline-block;
    transition: transform 0.5s;
}

.social-icons1 a:hover {
    color: #DA70D6;
    transform: translateY(-5px);
}

#header {
    width: 100%;
    height: 100vh;
    background-image: url(../img/bg4.jpg);
    background-color: rgba(0, 0, 0, 0.4);
    background-position: bottom-left;
}

.container {
    padding: 10px 5%;
}

nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.logo {
    width: 60px;
}

nav ul li {
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

nav ul li a::after {
    content: '';
    width: 0;
    height: 3px;
    background: #DA70D6;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

nav ul li a:hover::after {
    width: 100%;
}

/*header*/

.header-text {
    margin-top: 20%;
    font-size: 30px;
}

.header-text h1 {
    font-size: 55px;
    margin-top: 20px;
}

.header-text h1 span {
    color: #DA70D6;
}

/*about*/
#about {
    padding: 80px 0;
    color: #fff;
}

.sub-title span {
    color: #DA70D6;
}

.row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-col-1 {
    flex-basis: 35%;
}

.about-col-1 img {
    margin-left: 100px;
    max-width: 68%;
    width: 100%;
    border-width: 3.5px;
    border-color: #DA70D6;
    border-style: ridge;
    border-radius: 15px;
}

.about-col-2 {
    flex-basis: 60%;
}

.sub-title {
    font-size: 60px;
    font-weight: 600;
    color: #fff;
}

.tab-title {
    display: flex;
    margin: 20px 0 25px
}

.tab-links {
    margin-right: 50px;
    font-size: 18px;
    font-weight: 650;
    cursor: pointer;
    position: relative;
}

.tab-links::after {
    content: '';
    font-weight: 900;
    width: 0;
    height: 3px;
    background: #DA70D6;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
}

.tab-links.active-link::after {
    font-weight: 900;
    width: 50%;
}

.tab-contents ul li {
    list-style: none;
    margin: 15px;
}

.tab-contents {
    display: none;
}

.tab-contents ul li span {
    color: #DA70D6;
    font-size: 19px;
    font-weight: 650;
    margin-top: 20px;
}

.tab-contents ul li b {
    color: #ffc2fd;
    font-size: 15px
}

.tab-contents.active-tab {
    display: block;
}

/*services section*/
#services {
    padding: 30px 0;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
}

.services-list div {
    background: #252525;
    padding: 40px;
    font-size: 14px;
    font-weight: 300;
    border-radius: 20px;
    transition: 0.5s, transform 0.5s;
}

.services-list div i {
    font-size: 100px;
    margin-bottom: 30px;
    color: #DA70D6;
}

.services-list div h2 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
}

.services-list div a {
    text-decoration: underline;
    color: #ffc3fc;
    font-size: 13px;
    margin-top: 20px;
    display: inline-block;
}

.services-list div:hover {
    background: linear-gradient(#292929, #552a53, #9b4f98);
    transform: translateY(-10px);
}

/*projects*/
#projects {
    padding: 50px 0;
}

.work-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
}

.work {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.work img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.5s;
    display: block;
}

.layer {
    width: 100%;
    height: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), #34a4ff33);
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    font-size: 16px;
    transition: height 0.5s;
}

.layer h2 {
    font-weight: bold;
    margin-bottom: 20px;
}

.layer h2 a {
    font-weight: bolder;
    color: rgb(59, 200, 255);
}

.layer h2 img {
    width: 3%;
    position: absolute;
    top: 39%;
    left: 47.95%;
    transform: translate(-50%, -50%);
}

a:link {
    text-decoration: none;
    color: white;
}

.layer h2 white {
    color: white;
}

.layer h2 esports {
    color: white;
    margin-left: 20px;
}

.layer h3 {
    font-weight: 300;
}

.layer i {
    margin-top: 20px;
    color: #34a4ffda;
    text-decoration: none;
    font-size: 18px;
    line-height: 60px;
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
}

.work:hover img {
    transform: scale(1.1);
}

.work:hover .layer {
    height: 100%;

}

.btn {
    display: block;
    margin: 50px auto;
    width: fit-content;
    border: 1px solid #DA70D6;
    padding: 14px 50px;
    border-radius: 6px;
    text-decoration: none;
    color: #ffc3fc;
    transition: 0.5s
}

.btn:hover {
    background: #DA70D6;
}

/*Contact Us*/
.contact-left {
    flex-basis: 40%;
}

.contact-right {
    flex-basis: 60%;
}

.contact-left p {
    margin-top: 40px;
}

.contact-left p i {
    color: #DA70D6;
    margin-right: 10px;
    font-size: 25px;
}

.social-icons {
    margin-bottom: -10px;
}

.social-icons a {
    text-decoration: none;
    font-size: 30px;
    margin-right: 15px;
    color: #b159ac;
    display: inline-block;
    transition: transform 0.5s;
}

.social-icons a:hover {
    color: #DA70D6;
    transform: translateY(-5px);
}

.btn.btn2 {
    display: inline-block;
    background: #DA70D6;
    color: #080808;
}

.contact-right form {
    width: 100%;
}

form input,
form textarea {
    width: 100%;
    border: 0;
    outline: none;
    background: #292929;
    padding: 10px;
    margin: 15px;
    color: #ffddfd;
    font-size: 18px;
    border-radius: 6px;
}

form .btn2 {
    padding: 14px 60px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
}

.copyright {
    width: 100%;
    text-align: center;
    padding: 25px 0;
    background: #27272728;
    font-weight: 300;
    margin-top: 20px;
}

.copyright I {
    color: purple;
}

nav .fas {
    display: none;
}

/*media*/
@media only screen and (max-width: 600px) {
    #header {
        background-image: url(img/bg.png);
    }

    .header-text {
        margin-top: 100%;
        font-size: 16px;
    }

    .header-text h1 {
        font-size: 30px;
    }

    nav .fas {
        display: block;
        font-size: 25px;
    }

    nav .ul {
        background: #292929;
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 2;
        transition: right 0.5s;
    }

    nav ul li {
        display: block;
        margin: 25px;
    }

    nav ul .fas {
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;
    }
}