:root {
    --main: #7843E9;
    --second: #F8F8FF;
}

*, *::before, *::after {
    box-sizing: border-box;
}
* {
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 65px;
}
@font-face {
    font-family: Poppins;
    font-weight: 400;
    font-display: fallback;
    src: url(/fonts/Poppins-Regular.woff2);  
 }
 @font-face {
    font-family: Poppins;
    font-weight: 500;
    font-display: fallback;
    src: url(/fonts/Poppins-Medium.woff2);
 }
 @font-face {
    font-family: Poppins;
    font-weight: 600;
    font-display: fallback;
    src: url(/fonts/Poppins-SemiBold.woff2);

 }
 @font-face {
    font-family: Poppins;
    font-weight: bold;
    font-display: fallback;
    src: url(/fonts/Poppins-Bold.woff2);
 }
 
 * {
    font-family: Poppins;
 }
 
body {
    line-height: 1.5;
    min-height: 100vh;
    font-family: "Poppins", "san-serif";
    
}

img {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
    font-size: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;

}

p {
    font-weight: 500;
    font-size: 1.2em;

}

h2, h3, h4, h5, h6 {
    text-transform: uppercase;
    font-size: 2em;
}
ul {
    list-style: none;
}

.btn {
    padding: 15px 20px;
    display: block; 
    width: 30%;
    background-color: var(--main);
    border: none;
    color: white;
    font-size: 1.2em;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    box-shadow: 1px 1px 10px #d8d4d4;
    text-decoration: none;
    text-align: center;
    letter-spacing: 1.2px;
    border: 1px solid var(--main);
}

.btn:hover {
    background-color: rgb(79, 118, 247);
    transform: scale(1.05);
    transition: .4s ease;
}
.btn-back {
    padding: 15px 40px;
    display: block; 
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--main);
    color: var(--main);
    font-size: 1em;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    letter-spacing: 1px;
}

.btn-back:hover {
    
    color: black;
    transform: scale(1.05);
    transition: .4s ease;
    border: 1px solid var(--main);
}

#wrapper {
    width: 100%;
    background-color: rgb(255, 255, 255);
    margin: 0 auto;
    padding: 0;
}

header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    height: 100px;
    align-items: center;
    background-color: white;
    padding: 0px 0px 0px 30px;
    box-shadow: #ccc 1px 1px 5px;
    margin-bottom: 3px;
    z-index: 1;
    margin-top: 0;
    transition: 0.5 ease-in-out;
}
#logo {
    width: 40%;
    display: flex;
}

#logo img {
    width: 10%;
    height: auto;
    margin-left: 10px;

}

#logo h1 {
    font-size: 1em;
    text-transform: capitalize;
    font-size: 1.2em;
}
nav ul {
    display: flex;
    gap: 10px;
    margin-right: 30px;
}
nav ul li a {
    text-decoration: none;
    color: black;
    text-transform: capitalize;
    font-weight: 600;
    padding: 8px 15px;
    position: relative;
    font-size: 1.2em;
}

nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0; 
    left: 0;
    width: 0; 
    height: 2px; 
    background-color: var(--main); 
    transition: width .3s ease-in-out; 
    z-index: -1;    
}

nav ul li a:hover::after {
    width: 100%; 
}
  
nav ul li a.active {
    color: var(--main); 
}
  
  
nav ul li a.active::after {
    width: 0;
    transition: .3s ease-in-out; 
}

#mobile {
   display: none;
}

main {
    padding: 0px 0px;
    height: auto;
}
#hero {
    min-height: 80vh;
    padding-top: 80px;
    padding-bottom: 150px;
    background-image: url("images/hero-bg.webp");
    background-size: cover;
    width: 100%;
    background-repeat: no-repeat;
    padding: 200px 180px;
    background-position: 50%;
   
}

#hero p {
    color: var(--main);
    text-align: center;
    padding-top: 0px;
    font-weight: 700;
    font-size: 1.5em;
   
}

#hero h1 {
    color: black;
    line-height: 1.2em;
    font-size: 3em;
    width: 85%;
    padding-top: 30px;
    margin: 0 auto;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
}

#hero a {
    text-decoration: none;
}

#hero button {
    padding: 1em 4em;
    display: block;
    align-items: center;
    width: 30%;
    margin: 0 auto;
    background-color: var(--main);
    border: none;
    color: white;
    font-size: 1.2em;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    margin: 50px auto;
    box-shadow: 1px 1px 10px #d8d4d4;
    letter-spacing: 1px;
    position: relative;
    
}

#hero button:hover {
    background-color: rgb(79, 118, 247);
    transform: scale(1.05);
    transition: .4s ease;
}

.section {
    height: auto;
    background-color: white;
    padding: 50px 30px 50px 30px;
    display: flex;
    justify-content: space-between;
    margin: 0;
}

.box {
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    width: 100%;
    color: white;
}

.box p {
    padding-right: 100px;
    font-size: 1.1em;
    color: black;
  
}

.pill {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
   
}

.box h2 {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    color: black;
}

.box h2::after {
    content: "";
    position: absolute;
    width: 15%; 
    height: 5px; 
    background-color: #587EF4; 
    right: 0;
    left: 0; 
   bottom: 0;
}

.pill span {
    background-color: rgb(60, 63, 78);
    color: white;
    text-transform: none;
    font-size: .9em;
    font-weight: 500;
    padding: 10px 15px;
    height: auto;
    margin: 8px 8px;
    border-radius: 5px;
    border: none;
    box-shadow: 1px 1px 10px #edebeb;
    width: auto;
    text-transform: uppercase;
    letter-spacing: 1px;
} 

.companies {
    width: 100%;
    display: flex; 
    justify-content: space-between; 
    align-items: center; /* Align items vertically */
    flex-wrap: wrap;
    padding: 30px 0px 80px 0px;
    margin: 0;
    
    
}

.companies img {
    display: flex;
    width: 25%;
    max-width: 100%; 
    height: 35px;
    object-fit: contain;
    
}

.porfolio { 
    display: block;
    background-color: var(--second);
    height: auto;
    width: 100%;
    margin: 10px auto;
    padding: 50px 20px;
}

.porfolio a {
    text-decoration: none;
    color: white;
    font-size: 1.3em;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: .8px;
    color: var(--main);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    width: 15%;
    text-align: center;
}

.porfolio a:hover {
   text-decoration: underline;
   
}
#all-link {
    cursor: pointer;
    font-size: 1.2em;
}

.tabs {
    display: flex;
    align-items: center;
    padding-bottom: 30px;
    
}

.tabs h2 {
    width: 40%;
    font-size: 2em;
    position: relative;
    margin-left: 20px;
    padding-left: 20px;
    padding-bottom: 10px;
    
}
.tabs h2::after {
    content: "";
    position: absolute;
    width: 14%; 
    height: 5px; 
    background-color: #587EF4; 
    left: 0; 
    bottom: 0;
    margin-left: 20px; 
}

#wd, #dm {
    width: 30%; 
    max-width: 350px; 
    color: var(--main);
    text-decoration: none;
    font-size: 1.2em;
    background-color: transparent;
    border-radius: 5px;
    text-transform: capitalize;
    font-weight: 700;
    margin: 15px auto; 
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center; 
    position: relative;
}

#wd {
    margin-right: 20px;
}
#dm {
    margin-right: 25px;
}

/* Icon styling */
#wd::before, #dm::before {
    position: relative;
    content: "";
    display: inline-block;
    width: 45px; /* Fixed width for better alignment */
    height: 45px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px; /* Spacing between icon and text */
}

#wd::before {
    background-image: url("images/developer.png");
}
 
#dm::before {
    background-image: url("images/digital_marketing.png");
}

/* Hover effects */
#wd:hover, #dm:hover {
    transition: .4s ease;
    text-decoration: underline;
    
}
#wd:hover::before, #dm:hover::before {
    transition: .4s ease;
}
   
 #first-tab {
    display: flex;
   padding-left: 20px;
   flex-direction: row;
   padding-bottom: 30px;
    
 }
 
.work-wrapper {
    
    width: 100%;
    border: 1px solid #eae0e0;
    box-shadow: rgba(240, 233, 233, 0.2) 1px 1px 10px; 
    border-radius: 10px;
    padding: 20px 10px;
    background-color: white;
    margin: 10px;
   
}

.work-image {
    padding-right: 10px;
    padding-left: 10px;
    margin: 0;
    width: 100%;
}
.work-image img {
    width: auto;
   display: block;   
    object-fit: cover;
    margin-bottom: 10px;
}

.text-content {
    overflow: hidden;
}

.work-text {
    display: flex;
    flex-direction: column;
    height: 20em;
    background-color: white;
    margin-left: 10px;
    width: auto;
}

.work-text h3 {
    padding-top: 20px;
    font-size: 1.2em;
    text-transform: none;
}

.work-text p {
    padding-top: 20px;
    margin-left: 0;
    padding-left: 0;
    
    font-size: 1.1em;
    padding-right: 10px;
}

.link-wrapper {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin-top: 30px;
    height: 70px;
}

.link-wrapper .btn {
    background-color: var(--main);
    color: white;
    border-radius: 5px;
    box-shadow: 1px 10px 10px #eee9e9;
    width: 100%;
    transition: 0.4s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
    margin-left: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 1em; 
    margin-bottom: 20px;
    height: 55px;
    letter-spacing: 1px;
}

.link-wrapper a:hover {
    background-color: rgb(79, 118, 247);
    transform: scale(1.05);
    transition: 0.4s ease;
    text-decoration: none;
}

#second-tab {
    display: flex;
    padding-left: 20px;
    flex-direction: row;
    padding-bottom: 30px; 
}

#second-tab .work-wrapper {
    width: 100%; /* Ensures it occupies full width like #first-tab */
    border: 1px solid #eae0e0;
    box-shadow: rgba(240, 233, 233, 0.2) 1px 1px 10px;
    border-radius: 10px;
    padding: 20px 10px;
    background-color: white;
    margin: 10px;
    display: flex;
    flex-direction: column; 
    align-items: center;
}

#second-tab .work-image {
    padding-right: 10px;
    padding-left: 10px;
    width: 100%;
}

#second-tab .work-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    margin-bottom: 10px;
}

#second-tab .text-content {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: white; /* Remove the green background */
    width: 100%;
    padding: 10px;
}

#second-tab .work-text {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 100%;
    height: 370px;
}

#second-tab .work-text h3 {
    padding-top: 20px;
    font-size: 1.2em;
    text-transform: none;
    padding-right: 5px;
    padding-bottom: 10px;
}

#second-tab .work-text p {
    padding-top: 10px;
    font-size: 1.1em;
    padding-right: 10px;
}

#second-tab .link-wrapper {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin-top: 30px;
    height: 70px;
}

/* Define the flying-in animation */
@keyframes flyIn    {
    from {
      transform: translateX(100%); /* Start off-screen to the right */
      opacity: 0; /* Fully transparent */
    }
    to {
      transform: translateX(0); /* End at original position */
      opacity: 1; /* Fully visible */
    }
  }
  
  /* Apply animation to the tab */
  .fly-in {
    animation: flyIn  .5s  ease-out; /* Duration and easing of animation */
  }

  @keyframes flyOut    {
    from {
      transform: translateX(-100%); /* Start off-screen to the right */
      opacity: 0; /* Fully transparent */
    }
    to {
      transform: translateX(0); /* End at original position */
      opacity: 1; /* Fully visible */
    }
  }
  
  /* Apply animation to the tab */
  .fly-out {
    animation: flyOut  .5s  ease-out; /* Duration and easing of animation */
  }
  
  @keyframes fadeInScale {
    0% {
      opacity: 0;
      transform: translateY(150px) scale(0.8);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
  
  .fadeInScale {
    opacity: 0;
    animation: fadeInScale 0.6s ease-out forwards;
  }
  @keyframes fadeInFlip {
    0% {
      opacity: 0;
      transform: translateY(150px) rotateX(-30deg);
    }
    60% {
      opacity: 1;
      transform: translateY(0) rotateX(10deg);
    }
    100% {
      transform: rotateX(0);
    }
  }
  
  .fadeInFlip {
    opacity: 0;
    animation: fadeInFlip 0.6s ease-out forwards;
  }
  @keyframes fadeInSlide {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes fadeScaleIn {
    0% {
      opacity: 0;
      transform: scale(0.8); /* Starts slightly smaller */
    }
    100% {
      opacity: 1;
      transform: scale(1); /* Grows to normal size */
    }
  }
  .animated-tab {
    opacity: 0; /* Start hidden */
    animation: fadeInSlide 0.6s ease-out forwards;
  }

.contact {
    width: 100%;
    background-color: white;
    display: block;
    padding-bottom: 50px;
    padding-top: 50px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
}
.contact h2 {
    text-align: center;
    position: relative;
    margin: 0 auto;
    width: 40%;
    padding-bottom: 10px;
}

.contact h2::after {
    content: "";
    position: absolute;
    width: 15%; 
    height: 5px; 
    background-color: #587EF4; 
    left: 0; 
    bottom: 0;
    right: 0;
    margin: 0 auto;
}

#contact-form {
    width: 70%;
    margin: 30px auto;
    background-color: var(--second);
    padding: 40px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    
}

#contact-form input[type=text] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    background-color: white;
    
  }
  #contact-form input[type=email] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    background-color: white;
    
  }  

#message {
    height: 300px;
    width: 100%;
    background-color: white;
    border: 1px solid #ccc;
    padding: 12px;
}
  
#submit-form  {
    background-color: #7843E9;
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 40%;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.1em;
    margin: 10px 0px;
    position: relative;
    overflow: hidden; 
    transition: 0.4s ease-in-out;
    box-shadow: 1px 10px 10px #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

#submit-form::before {
    content: "";
    position: absolute;
    top: 0;
    right: 100%; /* Start from the right outside */
    width: 100%;
    height: 100%;
    background-color: rgb(79, 118, 247);
    transition: right 0.4s ease-in-out;
    z-index: -1;
}

#submit-form:hover::before {
    right: 0; /* Slide to fully cover the button */
}

#submit-form  {
    position: relative;
    z-index: 2; /* Ensure text stays above the effect */
    color: white; /* Ensure text color remains visible */
    transition: color 0.4s ease-in-out;
}

#submit-form:hover {
    color: white; 
    background-color: green;
    transform: scaleX(1.05);
    transition: 0.4s ease;
    background-color: rgb(79, 118, 247);

}

#submit-form:active {
    
    transition: 0.4s ease;
}

.form-sent-message {
    display: none;
    align-items: center;
    justify-content: center;
    background-color: var(--second);
    width: 70%;
    margin: 0px auto;
    border-radius: 5px;
    padding: 30px;
    height: auto;
    border-radius: 5px;
    box-shadow: 10px 10px 10px rgb(236, 233, 233);
}
.form-sent-message p {
    display: block;
    color: green;
    font-size: 1.5em;
    text-align: center;
    padding-top: 0px;
}
.error-border {
    border: 1px solid red;
  }

footer {
    display: block;
    align-items: center;
    padding: 20px 0;
    width: 100%;
    background-color: black;
}
footer p {
    color: white;
    text-align: center;
    font-size: .8em;
}
footer img {
    width: 4%;
  
    display: block;
    margin: 0 auto;
    padding-bottom: 10px;
    padding-top: 10px;
}  

.project img {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
    padding-top: 50px;
    border-radius: 10px;
    padding-bottom: 50px;
}
.project {
    width: 60%;
    height: auto;
    margin: 0 auto;
}
.project h2 {
    padding-top: 30px;
    padding-bottom: 30px;
}
.project p {
    padding-bottom: 10px;
    line-height: 35px;
    font-weight: 400;
}

.project ol li {
    padding: 0px;
    font-size: 1.2em;
    margin-left: 20px;
    margin-bottom: 30px;
    margin-top: 30px;
    font-weight: 600;
}

.project a {
    margin-right: 40px;
    margin-bottom: 50px;
}
.flex-row {
    display: flex;
    flex-direction: row;
}

@media (max-width: 768px) {

    body {
        background-color: white;
    }

    h2 {
        font-size: 1.2em;
    }

    p {
        font-size: 1em;
    }

    #wrapper {
        width: 100%;
    }

    header {
        position: static;
        height: 70px;
        transition: 0.5s all;
        width: 100%;
        color: white;
        overflow: hidden;
        display: flex;
        padding-left: 5px;
    }

    #logo {
        width: 100%;
        padding-left: 0px;
    }

    #logo img {
        width: 12%;
        margin-left: 10px;
    }

    #logo h1 {
        font-size: 1.2em;
    }

    nav {
        position: relative;
    }

    #menu li {
        display: flex;
    }

    #menu a {
        transition: 0.3s;
        color: white;
        display: block;
        font-size: 1.2em;
        padding-top: 30px;
        
    }

    #menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--main);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        margin-top: 70px;
        z-index: 100;
    }

    #menu.active {
        transform: translateX(0);
        transition: transform .4s ease-in-out;
    }

    #mobile {
        display: block;
        cursor: pointer;
        padding-right: 10px;
    }

    #mobile img {
        width: 100%;
        height: auto;
    }

    .close {
        display: none; /* Hide close icon initially */
    }

    .box {
        padding: 10px 10px;
    }

    #hero {
            width: 100%;
            min-height: 350px;
            background-position: 10%;
            background-size: auto;
            padding: 50px 0px 0px 0px; 
            
    }
    #hero h1 {
            font-size: 1.3em;
            width: 100%;
            margin: 0 auto;
            padding: 20px 20px 0px 20px;
    }

    #hero p {
            font-size: 1.1em;
    }
    #hero button {
        font-size: 1.1em;
        display: block;
        margin: 15 auto;
        width: 70%;
        
    }
        
    .section {
        display: flex;
        width: 100%;
        flex-direction: column;
        gap: 10px;
        padding: 10px 10px;
            
    }

    #about {
        width: 100%;
        flex-direction: column;
        height: auto;
        
    }
    #about p {
            width: 100%;
            font-size: 1em;
    }
    .pill {
        align-items: center;
    }
    .pill span {
            font-size: .8em;
            font-weight: 500;
    }
    .companies {
        justify-content: space-evenly;
        padding-bottom: 30px;
        padding-top: 20px;
    }
    .companies img {
        width: 20%;
        padding-bottom: 20px;
        height: 40px;
    }
    .box p {
        width: 100%;
        padding-right: 0%;
        display: inline-block;
        
    }
    
    .porfolio {
        padding: 10px 10px;
        width: 100%;
    }
        
    .porfolio a {
        display: flex;
        flex-direction: row;
    }
    .tabs {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-bottom: 20px;

    }
    .tabs h2 {
        width: 100%;
        font-size: 1.2em;
        margin: 0 auto;
        padding-bottom: 10px;
        padding-top: 20px;
        display: none;
    }
    .tabs h2::after {
            bottom: 0;
            right: 0;
            left: 0;
            width: 15%;
    } 
    #all-link {
        display: inline-block;
        width: 30%;
        font-size: 1em;
        margin-top: 10px;
        margin-right: 10px;
            
    }
#wd {
        
    width: 30%;
    font-size: 1em;
    text-align: center;
    margin-right: 15px;
    padding: 0;

}
    #wd::before {
    display: none;
    }
    #dm {
    text-align: center;
    width: 30%;
    font-size: 1em;
    margin: 0;
    padding: 0;

    }
    #dm::before {
    display: none;
    }

    #first-tab {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0px 10px 0px 0px;
    }
    #first-tab .link-wrapper {
    margin-bottom: 30px;
    }
    #second-tab .link-wrapper {
    margin-bottom: 30px;
    }
    #wd, #dm  {
    display: inline-block;
    }
    .work-wrapper {
    display: flex;
    flex-direction: column;
    margin: 10px;
    }
    .work-text {
    height: auto;

    }
    .link-wrapper .btn {
    height: 55px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 1em;
    }
    .work-image {
    width: 100%;
    }
    .work-image img {
    width: 100%;
    }
    #second-tab .work-wrapper {
    width: 100%;
    margin: 10px 0px 20px 0px;
    padding: 0;
    }
    #second-tab {
    flex-direction: column;
    width: 100%;
    margin: 0px 0px 20px 0px;
    padding: 0px 10px 0px 10px;
    }
    #second-tab .work-text h3 {
    padding-right: 10px;
    }
    #second-tab .work-text {
        height: auto;
    }
    .work-text p {
        font-size: 1em;
    }

    .contact {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    }
    #contact-form {
    width: 100%;
    padding: 30px;
    margin-bottom: 0;

    }
    #submit-form {
    width: 50%;
    height: 50px;
    font-size: 1em;
    letter-spacing: .5px;

    }
    #submit-form:hover {
        background-color: rgb(79, 118, 247);
       
    }
    #contact h2::after {
    width: 45%;
    }
    .form-sent-message {
        width: 85%;
        height: 100px;
        margin-bottom: 50px;
        
    }
    .form-sent-message p {
        width: 100%;
        font-weight: bold;
        font-size: 1.2em;

        
    }
    footer img {
    width: 10%;
    }


}
/* Show menu inline on larger screens */
@media (min-width: 769px) {
    #mobile {
        display: none;
    }
}