:root {
  --black: #000000;
  --black-grade-1: #3E3E3E;
  --navy-blue-grade-1: #2E4390;
  --white: #ffffff;
  --blue-grade-1: #2c234f;
  --grey: #808080;
  --gold: #ffd700;
  --background: #eadb84;
  --background2: #fff1c4;
  --purple-to-pink-to-red-orange-grad: linear-gradient(120deg, #ff3c2e 0%, #962EFF 50%, #F150FF 100%);
  --pink-to-red-grad: linear-gradient(90deg, #F150FF 0%, #ff3c2e 100%);
  --red-to-orange-grad: linear-gradient(90deg, #ff3c2e 0%, #f5a00d 100%);
  --bright-yellow: #ffec7d;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}


body {
  color: var(--black-grade-1);
  font-family: 'Poppins', sans-serif;
}

.background1{
  background-image: url(https://res.cloudinary.com/dqtcytdrk/image/upload/v1716658232/azeemStreak/homepage-background1_l2gg1k.webp);
  background-repeat: no-repeat;
  background-size: 100% 170%;
  background-position: center;
  background-attachment: fixed;
  backdrop-filter: blur(4px);
}

.container {
    max-width: 900px;
    padding: 25px 30px 0 30px;
    margin: auto;
    overflow: hidden;
}

.header{
    width: 100%;
    display: flex;
    align-items: center;
}

.logo{
    margin: 0 auto 0 0;
    width: 200px;
    height: 35px;
    /* background-color: var(--background2); */
    padding: 5px 8px;
    background-image: url(https://res.cloudinary.com/dqtcytdrk/image/upload/v1716622486/azeemStreak/azeemStreak_qbfxl7.svg);
    background-repeat: no-repeat;
    background-size: 90% auto;
    background-position: cover;
    cursor: pointer;
}

.img-in {
    width: 100%;
}

.go-to{
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-filled {
    background-color: var(--white);
    border-radius: 6px;
    padding: 5px 13px;
    text-decoration: none;
    color: var(--blue-grade-1);
    border: 1px solid var(--blue-grade-1);
    transition: background-color .3s ease-out, color .3s ease-out, border-color .3s ease-out, transform .3s ease-out, box-shadow .3s ease-out;
}

.btn-filled:hover {
    background-color: var(--blue-grade-1);
    border-color: var(--blue-grade-1);
    color: var(--gold);
}

.hero{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0px 0 0;
}

.hero-content{
    display: flex;
    flex-direction: column;
    max-width: 60%;
    gap: 18px;
}

.hero-content p{
    max-width: 82%;
}

h1{
    font-size: 36px;
    width: fit-content;
}


.text-18 {
    font-size: 17px;
}

.img-cont {
    
    margin: 70px 0px 0 0;
    background-image: url(https://res.cloudinary.com/dqtcytdrk/image/upload/v1716637191/azeemStreak/productive_man-min_nnltyj.webp);
    aspect-ratio: 1/0.6;
    width: 40%;
    background-repeat: no-repeat;
    background-size: 128% auto;
    background-position: center;
    border-radius: 84px;
    scale: 1.07;
    animation: updown 3s infinite ease-in-out;
}

.hero-btn {
    display: flex;
    gap: 14px;
    margin: 4px 0 0 0;
}

.hero-btn a{
    border-radius: 6px;
    padding: 7px 13px;
    text-decoration: none;
}

.btn-register{
    background: var(--purple-to-pink-to-red-orange-grad);
    transition: background-position .5s;
    background-size: 200% 200%;
    background-position: 100% 0;
    font-weight: 500;
    color: var(--bright-yellow);
}

.btn-register:hover{
    background-position: 0 0;
}

.working{ 
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 60px 0 0 0;
    justify-content: space-between;
    /* reverse order  */
}

h2{
    font-size: 32px;
}

.working-img{
    background-image: url(https://res.cloudinary.com/dqtcytdrk/image/upload/v1716637193/azeemStreak/workdone-min_cbclzk.webp);
    aspect-ratio: 1/0.85;
    width: 45%;
    background-repeat: no-repeat;
    background-size: 85% auto;
    background-position: center;
    animation: updown 3s infinite ease-in-out;
}

.working-content{
    width: 50%;
}

.reason-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 70px 0 0 0;
}

.caveat{
    font-family: 'Caveat', cursive;
    font-size: 31px;
    line-height: 112.8%;
    max-width: 75%;
    margin: 35px 0 45px 0;
    text-align: center;
}

.reason-list{
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 75%;
}

.reason{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.reason-content{
    max-width: 75%;
    margin-left: auto;
}

.reason-title{
    font-weight: 700;
    color: #474747;
    text-align: center;
    max-width: 130px;
    line-height: 20px;
}

.footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 180px 0 30px 0;
}

.line{
    width: 100%;
    height: 1px;
    background-color: var(--grey);
    margin: 20px 0;
}

.footer p{
    color: var(--grey);
    font-size: 12px;
    text-align: center;
}


@keyframes updown {
    0% {
        transform: translateY(0px);
        scale: 1.07;
    }
    50% {
        transform: translateY(-10px);
        scale: 1.1;
    }
    100% {
        transform: translateY(0px);
        scale: 1.07;
    }
}


@media screen and (max-width: 450px) {

    .background1{
        background-size: 150% 100%;
    }

    .container{
        padding: 25px 24px 0 24px;
    }

    .logo{
        width: 130px;
        height: 20px;
        background-size: 100% auto;
    }

    .go-to{
        gap: 12.3px;
        font-size: 14px;
    }

    .btn-filled{
        font-size: 14px;
        padding: 3.8px 12px;
        border-radius: 4px;
    }

    .hero-content{
        max-width: 100%;
        align-items: center;
    }
    h1{
        font-size: 27px;
        text-align: center;
        line-height: 128%;
    }
    .hero-content p{
        max-width: 100%;
    }
    .text-18{
        font-size: 15px;
        text-align: center;
    }
    .img-cont{
        display: none;
    }
    .hero-btn a{
        padding: 3.8px 12px;
        border-radius: 4px;
    }
    .btn-register{
        font-size: 14px;
    }

    .working{
        flex-direction: column;
        align-items: center;
        margin: 36px 0 0 0;
    }
    .working-img{
        width: 100%;
    }
    .working-content{
        width: 100%;
        text-align: center;
        margin: 30px 0 0 0;
    }
    h2{
        font-size: 25px;
        text-align: center;
    }
    .reason-section{
        margin: 77px 0 0 0;
    }
    .reason-section h2{
        font-size: 22.9px;
    }
    .caveat{
        font-size: 24px;
        max-width: 100%;
    }
    .reason-list{
        max-width: 100%;
    }
    .reason-title{
        font-size: 14px;
        max-width: 100px;
    }
    .reason-content{
        font-size: 14px;
        max-width: 64%;
    }
}