@import url('https://fonts.googleapis.com/css2?family=Lilita+One&family=Poetsen+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Freeman&family=Lilita+One&family=Poetsen+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Outfit:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    text-decoration: none;
    font-family: "poppins", sans-serif;
}

body {
    background-color: black;

}

body::before {
    content: '';
    position: absolute;
}

body::-webkit-scrollbar {
    display: none;
}

.navbar {
    color: white;
    z-index: 100;
    background-color: rgba(11, 11, 11, 0.8) !important;
}

.nav-link {
    color: white;
    position: relative;
    font-family: "Freeman", sans-serif;
    font-size: large;
    font-family: Outfit;
    list-style: none;
}

.nav-link::before {
    content: "";
    position: absolute;
    transform: scaleX(0);
    width: 100%;
    height: 2px;
    background: #a39fa0;
    transition: all 0.6S ease;
    bottom: 0;
    left: 0;
}

.nav-link:hover::before {
    transform: scaleX(1);
}

.nav-link:hover {
    color: #a39fa0;

}

.part2 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 80vh;
    text-align: center;
    align-items: center;
}

.uppertext {
    color: white;
    font-size: 90px;
    background-image: url(blue.gif);
    background-size: 10% auto;
    display: flex;
    justify-content: center;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: animate 30s alternate infinite;
    font-weight: 600;
    -webkit-text-stroke: 0.5px #ffffff;
    font-family: Outfit;
}

.maintext {
    margin-top: 200px;
    font-family: Outfit;

}

.lowertext {
    display: flex;
    justify-content: center;
    color: white;
    text-align: center;
    width: 70%;
    font-size: large;
    font-family: Outfit;
    margin-right: auto;
    margin-left: auto;
}

.navbar-brand {
    color: #a39fa0;
}



.abouttext {
    color: #16E2F5;
    margin: 10px 10px 10px 10px;
}

.about-but:hover,
.abouttext:hover {
    background-color: #fcfbfb;
    color: #0762C8;
    transform: scaleX(5px);
    font-family: Outfit;
}



.heading-1 {
    font-weight: bolder;
    font-size: xx-large;
    display: flex;
    justify-content: center;
    color: rgb(255, 255, 255);
    position: relative;
    font-family: Outfit;
}

.heading-1::before {
    content: "";
    position: absolute;
    transform: scaleX(0);
    width: 100%;
    height: 2px;
    background: #edecec;
    transition: all 0.6S ease;
    bottom: 0;
    left: 0;
}

.heading-1:hover::before {
    transform: scaleX(1);
}

.heading-1:hover {
    color: #a39fa0;
}

.extra {
    margin-top: 70px;
}

.logo {
    height: 50px;
    width: 50px;
}

.preloader {
    width: 100%;
    height: 100vh;
    background: #ffffff url(preloader.html);
    position: fixed;
    z-index: 100;
}


.timeline {
    margin-top: 100px;
}

.box2 {
    margin-top: 10px;
    text-align: center;
    border: solid;
    border-color: #fcfbfb;
    border-radius: 10px;
    height: 50px;
    padding: 10px 20px 20px;
    width: 90%;
    color: white;
    transform: translateY(5px);
    transition: 0.5s all;
}

.box2:hover {
    color: #16E2F5;
    border-color: #16E2F5;
    transform: translateY(0px);
    box-shadow: rgba(255, 255, 255, 0.12) 0px 2px 4px 0px, rgba(238, 238, 238, 0.32) 0px 2px 16px 0px;
}

.card1 {
    width: 300px;
    height: 350px;
    padding: 2rem 1rem;
    background: #ffffff;
    position: relative;
    display: flex;
    align-items: flex-end;
    box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.5);
    transition: 0.5s ease-in-out;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid grey;
    background-size: cover;
    background-position: center;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0.3)), url('main1.jpg');
}

.card1:hover {
    transform: translateY(-15px);
    box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.3), 0px 12px 18px rgba(0, 0, 0, 0.15);
}

.card1:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 2;
    transition: 0.5s all ease-in-out;
    opacity: 0;
    border-radius: 20px;
}

.card1:hover::before {
    opacity: 1;
}

.card1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.4s ease, filter 0.4s ease;
    border-radius: 20px;
}

.card1:hover img {
    transform: scale(1.1);
    filter: brightness(70%);
}

.card1 .info {
    position: relative;
    z-index: 3;
    color: rgb(255, 255, 255);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    font-weight: 600;
    text-align: center;
}

.card1:hover .info {
    opacity: 1;
    transform: translateY(0);
}

.card1 .info h1 {
    margin: 0;
    font-weight: bolder;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.card1 .info p {
    letter-spacing: 1px;
    font-size: 15px;
    margin-top: 8px;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    opacity: 0.85;
}

.card1 .info h1,
.card1 .info p {
    transition: color 0.3s ease;
}

.card1:hover .info h1,
.card1:hover .info p {
    color: #f1f1f1;
}

.card1 .info p {
    transition: transform 0.3s ease;
}

.card1:hover .info p {
    transform: translateY(-5px);
}


.card1:hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.5));
    z-index: 1;
    border-radius: 20px;
}

@media (max-width: 991.98px) {
    .navbar-nav {
        text-align: center;
        margin: 0 auto;
        display: block;
    }
}




.container {
    width: 80%;
    margin: 20px auto;
    background-color: #302f2f;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.container h2 {
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #222;
    color: #fff;
}

textarea {
    height: 100px;
}

::placeholder {
    font-weight: 600;
    text-align: center;
    color: #fcfbfb;
}

button[type="submit"] {
    padding: 10px 20px;
    border: solid;
    border-radius: 5px;
    background-color: rgb(0, 0, 0);
    color: #ffffff;
    cursor: pointer;
    border-color: #edecec;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: rgb(252, 252, 252);
    color: black;
}

.about-but {
    padding: 10px 10px 10px 10px;
    transition: all 0.5s ease;

}

.about-but:hover {
    transform: scale(0.9);
    background-color: white;
    color: #000000;
}

.icon1 {
    transition: all 0.5s ease;
    color: #e8e8e8;
}

.icon1:hover {
    color: #A020F0;
    transform: scale(1.5);
}

.icon2 {
    transition: all 0.5s ease;
    color: white;
}

.icon3 {
    transition: all 0.5s ease;
    color: white;
}


.icon2:hover {
    transform: scale(1.5);
    color: #0762C8;
}

.icon3:hover {
    transform: scale(1.5);
    color: #f14fe4;
}


.card2 .image {
    height: 150px;
    width: 150px;
    padding: 4px;
    background-color: #16E2F5;
    border-radius: 50%;
    max-width: 400px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid white;
}

.container2 {
    align-items: center;
    border-radius: 12px;
    justify-content: center;
    max-width: 450px;
    width: 100%;
    gap: 12px;
    color: white;
    padding: 30px;
    display: flex;
    background: rgb(255, 255, 255);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    scroll-snap-type: x mandatory;
    overflow-x: scroll;
    scroll-padding: 30px;
}

::-webkit-scrollbar {
    height: 8px;
}

::-webkit-scrollbar-track {
    background-color: #a1a1a1;
    border-radius: 25px;
}





.container2 .card2 {
    background: rgb(89, 84, 84);
    display: flex;
    flex: 0 0 100%;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
    scroll-snap-align: start;
    border-radius: 12px;
}

.card2 h2 {
    margin-top: 25px;
    color: #000000;
    font-size: 22px;
    font-weight: 600;
}

.card2 {
    margin-top: 4px;
    font-size: 18px;
    font-weight: 400;
    text-align: center;

}

.Resources {
    font-size: 50px;
    font-family: "Lilita One", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.content h1 {
    text-decoration: underline;
    font-weight: 600;
}

.content h3 {
    font-weight: 600;

}

.content img {

    max-width: 100%;
    height: auto;
    overflow: auto;
}

.content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.row1 {
    display: flex;
    justify-content: center;
    font-family: "Poetsen One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.card-title {
    font-weight: 600;
}

.main-box {

    background: rgba(255, 255, 255, 0.28);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(9.4px);
    -webkit-backdrop-filter: blur(9.4px);
    border: 1px solid rgba(255, 255, 255, 0.33);
}

.video1 {
    max-width: 90%;
    height: auto;
    overflow: auto;
}

.project-heading {
    color: white;
    font-size: 25px;
    font-weight: bolder;
    font-family: sans-serif;
}

.description {
    color: #edecec;
}

.project-box {
    width: 90%;
    padding: 10px 10px 10px 10px;
    background: rgba(227, 219, 219, 0.36);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(227, 219, 219, 0.4);
    margin-left: auto;
    margin-right: auto;
}

li::marker {

    font-size: 1.2em;
}

.content img {

    max-width: 100%;
    height: auto;
    overflow: auto;
}

.content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.box2 {
    border: none;
    width: 150px;
    font-size: 14px;
    height: auto;
    font-family: Verdana, Geneva, Tahoma, sans-serif;

    box-shadow: rgba(113, 113, 122, 0.25) 0px 30px 60px -12px inset, rgba(103, 100, 100, 0.3) 0px 18px 36px -18px inset;
}

.row4 {
    display: flex;
    justify-content: center;

}

.row4 div {
    margin: 10px;
}


.service-box {
    border: none;
    background-image: url(blue.gif);
    width: 33%;
    height: 250px;
    padding: 20px 20px 20px 20px;
    border-radius: 20%;

}

.heading-1 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.p-container {
    position: relative;
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px;
}

.p-container .mycard {
    position: relative;
    max-width: 300px;
    height: 255px;

    margin: 30px 10px;
    padding: 20px 15px;
    display: flex;

    flex-direction: column;
    box-shadow: 0 5px 10px rgb(95, 94, 94);
    transition: 0.5s ease-in-out;

}

.p-container .mycard:hover {
    height: 510px;
    border-radius: 6px;
}

.p-container .mycard .cimg {
    position: relative;
    max-width: 260px;
    height: 260px;
    top: -60px;
    left: 5px;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.cimg img {
    width: 260px;
    height: 260px;
    background-size: cover;
}

.p-container .mycard .cimg img {
    max-width: 100%;
    border-radius: 10px;
    height: 100%;

}

.p-container .mycard .cdetails {
    position: relative;
    margin-top: -60px;
    padding: 10px 15px;
    text-align: center;
    color: #ffffff;
    opacity: 0;
    transition: 0.5s ease-in-out;
    visibility: hidden;
}

.p-container .mycard:hover .cdetails {
    visibility: visible;
    opacity: 1;

}

@media (max-width: 800px) {
    .row4 {
        flex-direction: column;
    }

    .project-container {
        display: none;
    }
}

#gif-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    z-index: 9999;
}

#gif-preloader img {
    width: 100px;
    height: auto;
}

.contact-container {
    font-family: outfit;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.contact-left {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.contact-left-title h2 {
    font-weight: 600;
    color: #2783fb;
    font-size: 40px;
    margin-bottom: 5px;
}

.contact-left-title hr {

    width: 120px;
    height: 5px;
    background-color: #00a1eb;
    border-radius: 10px;
    margin-bottom: 20px;

}

.contact-inputs {
    width: 400px;
    height: 50px;
    border: 3px solid #00a1eb;
    padding-left: 25px;
    font-weight: 500;
    color: #666;
    border-radius: 50px;
    background: white;
}

.contact-left textarea {
    height: 140px;
    padding-top: 15px;
    border-radius: 15px;
    border: 3px solid #00a1eb;
}

.contact-inputs:focus {
    border: 2px solid #ff994f;
}

.contact-inputs::placeholder {
    color: #398cf9;
}

.contact-left button {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: white;
    border-radius: 50px;
    background: linear-gradient(270deg, #ff994f, #fa6d86);
    cursor: pointer;
}

.contact-left button img {
    height: 15px;
}

.contact-right img {
    width: 500px;
}

@media (max-width:800px) {
    .contact-inputs {
        width: 80vw;
    }

    .contact-right {
        display: none;
    }

    .phonetext1 {
        display: none;
    }
}

.frontphoto img {
    height: 200px;
    width: 200px;
    margin-top: 40px;
    background-image: url(profile-pic\ \(1\).png);
}

.frontphoto img {
    border-radius: 50%;
    box-shadow: 0 0 30px rgb(0, 170, 255);
}

.about-main {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 60px 0;
}

.about-main img {
    border: 3px solid rgba(106, 173, 225, 0.7);
    filter: grayscale(10%);
    box-shadow: 0 10px 25px rgba(67, 82, 197, 0.3);
    height: auto;
    width: 300px;
    max-width: 100%;
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
    object-fit: cover;
}

.about-main img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.about-text {
    width: 50%;
    letter-spacing: 1px;
    line-height: 1.6;
    font-size: 18px;
    color: #fafafa;
}

.about-text h1 {
    font-size: 50px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    border-left: 5px solid #007bff;
    padding-left: 10px;
}

.about-text h5 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fffbfb;
}

.about-text h5 span {
    color: rgb(85, 184, 255);
}

.about-text p {
    font-size: 18px;
    color: #878686;
    margin-bottom: 30px;
}

.about-buttons {
    display: flex;
    gap: 15px;
}

.about-main a {
    background: #00a1eb;
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.about-main a:hover {
    background: #0056b3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cv {
    background: #333;
}

.cv:hover {
    background: black;
}


@media (max-width: 992px) {
    .about-main {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .about-text {
        width: 80%;
    }

    .about-main img {
        width: 80%;
        height: auto;
    }

    .about-buttons {
        justify-content: center;
    }
}

.tech-container {
    text-align: center;
    background: #1e1e1e;
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    width: 90%;
}

.tech-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
}

.tech-card {
    background: #2a2a2a;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}

.tech-card:hover {
    transform: scale(1.05);
    background: #333;
    border: 1px solid #00a1eb;
}

.tech-icon {
    font-size: 40px;
    margin-bottom: 10px;
    color: #f4f4f4;
}

.tech-text {
    font-size: 16px;
    font-weight: bold;
}

.head-main {
    display: flex;
    justify-content: left;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
    flex-wrap: wrap;
}
.part-1-about-main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    padding: 50px;
    background-color: hsl(232, 33%, 14%);
    border-radius: 20px;
  }
  
  .part-1-about-img {
    width: 320px;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid #16E2F5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  }
  
  .part-1-about-text {
    max-width: 600px;
  }
  
  .part-1-about-text h1 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 10px;
  }
  
  .part-1-about-text h5 {
    font-size: 1.5rem;
    color: #aaaaaa;
    margin-bottom: 20px;
  }
  
  .part-1-about-text h5 span {
    color: #00b4d8;
  }
  
  .part-1-about-text p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 30px;
  }
  
  .part-1-head-below {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .part-1-talk-button {
    background-color: #00b4d8;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 6px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
  }
  
  .part-1-talk-button:hover {
    background-color: #009ec2;
  }
  
  .part-1-icon {
    font-size: 2rem;
    height: 50px;
    width: 50px;
    background: #2e2e2e;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }
  
  .part-1-icon.instagram {
    color: #E1306C;
  }
  
  .part-1-icon.twitter {
    color: #1DA1F2;
  }
  
  .part-1-icon.github {
    color: #ffffff;
  }
  
  .part-1-icon.linkedin {
    color: #0077b5;
  }
  
  /* Responsive for mobile */
  @media (max-width: 768px) {
    .part-1-about-main {
      padding: 30px;
      gap: 30px;
    }
  
    .part-1-about-img {
      width: 250px;
      height: 300px;
    }
  
    .part-1-about-text h1 {
        display: flex;
        justify-content: center;
      font-size: 2.2rem;
    }
  
    .part-1-about-text h5 {
      font-size: 1.3rem;
    }
  
    .part-1-about-text p {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .part-1-about-text {
      text-align: center;
    }
    
    .part-1-head-below {
      justify-content: center;
    }
  }
  .progress_container{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  justify-content: center;
   gap: 20px;
   max-width: 90%;
   margin: 0 auto;
}
.progress_container a{
 text-decoration: none;
}
.prog_box{
    display: flex;
    position: relative;
    justify-content: space-around;
    text-align: center;
    align-items: center;
   
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    background-color: hsl(235, 32%, 10%);
    overflow: hidden; 
    transition: all 0.5s ease;
}
.prog_box img{
    width: 30%;
    height: auto;
    border: 2px solid black;
    border-radius: 10px;
    object-fit: cover;
}
.prog_box p{
    color: white ;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: larger;
}
.pat {
    position: absolute;
    top: 10px; 
    right: 5px;
    width: 50px; 
    height: 50px; 
    background-image: url("./pattern1.png"); 
    background-size: cover; 
    background-repeat: no-repeat; 
    z-index: 1; 
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.pat2 {
    position: absolute;
    top: 10px;
    right: 5px;
    width: 50px;
    height: 50px;
    background-image: url("./pattern2.png");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0;
    transform: translateY(-60px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.prog_box:hover .pat {
    opacity: 0; 
    transform: translateX(60px);
}
.prog_box:hover .pat2 {
    opacity: 1;
    transform: translateY(0);
}

.explore_btn {
    padding: 8px 16px;
    background-color: hsl(235, 50%, 20%);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;/* Space below button */
}

@media (max-width: 768px) {
   .progress_container{
      grid-template-columns: repeat(2,1fr);

   }
}
@media (max-width: 508px) {
    .progress_container{
      grid-template-columns: repeat(1,1fr);

    }
}
