* {
    margin: 0px;
    padding: 0px;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #888;
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

body {
    overflow-x: hidden;
    min-width: 100vw;
    background: linear-gradient(90deg, #05d9f5, #0d2dff);
    background-repeat: no-repeat;   
}


.container1 {
    display: grid;
    min-height: 100vh;
    grid-template-rows: max-content max-content max-content max-content max-content;
    row-gap: 22px;
    margin-top: 160px;
}

.item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.item h1 {
    font-size: 64px;
    color: white;
    font-weight: 500;
    text-align: center;
}

.item p {
    font-size: 24px;
    color: white;
}

.item .selection-buttons {
    display: flex;
}

.item .selection-buttons button {
    position: relative;
    padding: 8px 20px 8px 16px;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 10px;
    color: white;
    font-size: 24px;
    margin: 8px;
    transition: 150ms ease;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.item .selection-buttons img {
    transform: translateY(-10%);
    width: 25px;
    height: auto;
    margin-right: 8px;
    user-select: none;
}

.item .selection-buttons button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.get-started button {
    width: 272px;
    height: 80px;
    background-color: white;
    color: black;
    border: none;
    border-radius: 50px;
    font-size: 32px;
    transition: 150ms ease;
}

.get-started button:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.container2 {
    background-color: white;
    width: 100%;
    height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-box {
    width: 1120px;
    height: 464px;
    display: flex;
    flex-direction: column;
    justify-content:space-between;
}

.center-box h1 {
    font-size: 64px;
    font-weight: 50;
}

.benefits-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 22px;

}

.benefit {
    margin: 10px;
    border-top: 1px solid black;
}

.benefit .header {
    margin-top: 10px;
    margin-bottom: 10px;
}

.benefit .header h2 {
    font-size: 24px;
}

/* Dynamic selections */

.selected {
    background-color: rgba(255, 255, 255, 0.3) !important;
    transform: scale(1.1);
}

#lastingPartnerships {
    padding: 10px;
    border-radius: 10px;
    border: none;
    transition: 200ms ease; 
    background-color: black;
    color: white;
}

#lastingPartnerships:hover {
    transform: scale(1.08);
    cursor: pointer;
}

.container3 {
    position: relative;
    background: linear-gradient(to right, #263280, #0B1555);
    height: fit-content;
    width: 100%;
    display: grid;
    grid-template-rows: max-content max-content max-content max-content max-content;
    row-gap: 22px;
    padding-top: 160px;
    border-bottom: 3px solid white;
}

.card-container {
    padding: 80px;
}



.card-container .business-card {
    position: relative;
    border: 2px solid none;
    width: 1000px; /* 7:4 aspect ratio */
    height: 571.43px;
    border-radius: 5px;
    background-color: white;
    box-shadow: 0px 0px 30px -5px black;
    margin: 20px;
}

.businessPicture {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background-color: transparent;
    border: 2px solid gray;
    border-radius: 50%;
}

#profilePicture {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: linear-gradient(-45deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3))
}

.business-name {
    font-size: 50px;
    position: absolute;
    width: 90%;
    text-align: center;
    left: 50%;
    top: 70%;
    transform: translate(-50%, -50%);
    color: black;
}

.container4 {
    height: auto;
    width: 100%;
    background-color: white;
    display: flex;
    justify-content: center ;
}

.container4 .left-container {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.container4 .left-container h1 {
    font-size: 48px;
    font-weight: 50;
}

.container4 .right-container {
    background: linear-gradient(0deg, #FFA07A, #141b4e);
    width: 100%;
    border-bottom: 3px solid white;
    border-radius: 21px;
}

.partnershipInformation {
    position: relative;
    width: 100%;
    height: auto;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    flex-direction: column;
    justify-content: space-between;
}

.businessHeader {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    font-size: 48px;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    background-color: white;
    box-shadow: 0px 10px 15px -10px black;
}

.businessBody {
    width: 100%;
    height: 100%;
    display: block;
    overflow-y: scroll;
    padding: 10px;
}

.businessBody h3 {
    font-size: 24px;
}

.businessBody h3:first-of-type {
    margin-top: 10px;
}

.description {
    width: 100%;
    height: fit-content;
    background-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 15px -5px black;
    border: 1px solid white;
    font-size: 15px;
    padding: 10px;
    line-height: 150%;
    border-radius: 10px;
    margin-bottom: 30px;
    margin-top: 5px;
}

.missionStatement {
    width: 100%;
    height: fit-content;
    background-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 15px -5px black;
    border: 1px solid white;
    font-size: 15px;
    padding: 10px;
    line-height: 150%;
    border-radius: 10px;
    margin-bottom: 30px;
    margin-top: 5px;
}

.servicesBody {
    width: 100%;
    display: flex;
    background-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 15px -5px black;
    border: 1px solid white;
    border-radius: 10px;
    justify-content: center;
    margin-bottom: 30px;
    margin-top: 5px;
}

.servicesWantedBody {
    width: 100%;
    display: flex;
    background-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 15px -5px black;
    border: 1px solid white;
    border-radius: 10px;
    justify-content: center;
    margin-bottom: 30px;
    margin-top: 5px;
}

.servicesBody ul {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 85%;
}

.servicesBody li:first-of-type {
    margin-top: 15px;
}

.servicesBody li {
    margin-bottom: 15px;
}

.servicesWantedBody ul {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-evenly;
    width: 85%;
}

.servicesWantedBody li:first-of-type {
    margin-top: 15px;
}

.servicesWantedBody li {
    margin-bottom: 15px;
}

/* Screen sizes */

@media (max-width: 735px) {
    .item h1 {
        font-size: 8vw;
    }
}
