* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.popup-wrapper {
    margin-bottom: 100px;
}

.popup-intro {
    max-width: 1000px;
    margin: 0 30px 50px 30px;
}

.popup-description {
    font-size: 18px;
    font-weight: 100;
}

.popup-h2 {
    margin: 0 auto;
    padding-top: 50px;
    text-align: left;
}

.popup-main {
    max-width: 1000px;
    margin: 0 auto;
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    justify-content: space-around;
    gap: 20px;
    align-items: center;
}

.popup-h3 {
    justify-content: center;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 10px;
}
.popup-main-p {
    font-size: 15px;
    font-weight: 100;
}

.popup-main-border {
    max-width: 400px;
    max-height: 400px;
    border: 1px solid rgb(40, 87, 72);
    padding: 25px;
}

.popup-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.popup-btn {
    display: block;
    margin: 0 auto;
    padding: 15px 20px;
    width: fit-content;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    color: white;
    background-color: rgb(40, 87, 72);
    cursor: pointer;
}

@media (min-width: 450px) {
    .popup-main {
        margin: 0 auto;
        margin-bottom: 50px;
    }

    .popup-intro {
        margin: 0 auto;
        margin-bottom: 50px;
    }

    .popup-main-border {
        max-width: 400px;
        height: 400px;
        padding: 45px;
    }
    .popup-main-p {
        font-size: 16px;
        
    }
   
}

@media (min-width: 450px) and (max-width: 912px) {
    .popup-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    justify-content: space-around;
    gap: 20px;
    align-items: center;
    }

    .popup-intro {
        margin: 0 30px 50px 30px;
    }

    .popup-main {
        margin-left: 30px;
        margin-right: 30px;
    }
}