.intro{
    background: url(./assets/JPEG/pexels-cottonbro-5999682.jpg);
    background-size: cover;
    background-repeat: no-repeat;    
    background-position: center center;
    padding: var(--size-1200);
    width: inherit;
    height: 700px;
    color: var(--clr-base-100);
    margin: 8px auto;
}

.intro article{
    justify-self: end;
}

#intro-content{
    position: relative;
}

#intro-content p{
    max-width: 12ch;
}

.promo-content{
    position: relative;
    height: 1600px;
    background-color: var(--secondary-color);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 1fr);
    place-items: center;
    color: var(--clr-base-100);
    padding: var(--size-600);
}

.promo-card{
    position: relative;
    width: 800px;
    height: 250px;
    background-color: var(--tertiary-accent-400);
    border-radius: 32px;
}

.promo-card-trailing{
    position: absolute;
    transform: translate(0%, -1%);
    background-color: var(--tertiary-accent-300);
    width: 36px;
    height: calc(100% + 4px);
    border-radius: 32px;
}

.promo-text{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding-top: var(--size-200);
    padding-left: var(--size-700);
    padding-right: var(--size-400);
    margin: 0 auto;
}

.promo-text p{
    line-height: 1.25;
    max-width: 28ch;
}

.promo-btn{
    cursor: pointer;
    border: none;
    text-decoration: none;
    background-color: var(--primary-color);
    width: 180px;
    height: 60px;
    border-radius: 20px;
    color: var(--clr-base-100);
}

.promo-btn:hover,
.promo-btn:focus-within{
    background-color: var(--secondary-color);
}

.promo-ending{
  z-index: 5;
}
/*Circle Position*/
#circle-1{
    position: absolute;
    left: -20px;
    top: -8px;
    
}

#circle-2{
    position: absolute;
    right: 12px;
    bottom: 20px;
    transform: translate(20%, -100%);
}

#circle-3{
    position: absolute;
    bottom: -4px;
    left: -24px;
}

.circle{
    opacity: 0.8;
    background-color: var(--tertiary-accent-500);
    width: 400px;
    height: 400px;
    border-radius: 50%;
}
