/*slides*/
.s-banner {
    min-height: calc(100vh - 80px);
    margin-top: 80px;
    color: white;
    overflow: hidden;
    padding: 0;
}

.d-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.d-slides .item {
    flex: 1 0 auto;
    width: 100%;
    height: 100vh;
    display: none;
    position: relative;
}

.d-slides .item::before {
    background-color: black;
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 100;
}

.d-slides .item.active {
    display: block;
}

.d-slides .item .content {
    position: relative;
    z-index: 120;
    display: flex;
    align-content: center;
    align-items: center;
    height: 100vh;
}

.d-slides .item .d-card {
    width: 600px;
}

.d-slides .item .d-card h1 {
    color: white;
    font-size: 60px;
}

@media screen and (max-width: 425px) {
    .d-slides .item .d-card {
        width: auto;
    }

    .d-slides .item .d-card h1 {
        font-size: 50px;
    }
}

.d-slides .item .d-card p {
    font-size: 18px;
}

.d-slides .item .d-card a {
    background-color: purple;
    color: white;
    display: inline-block;
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
}
/*end slides*/

/* titles */
.s-title {
    text-align: center;
    margin: 80px auto;
    width: 650px;
}

.s-title h1 {
    font-size: 60px;
    color: #555;
}

.s-title p {
    font-size: 18px;
}

.s-title a {
    display: inline-block;
    background-color: purple;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    color: white;
    padding: 15px;
}

@media screen and (max-width: 768px) {
    .s-title {
        width: 100%;
        padding: 0 40px;
    }
}
/* end title */

/* cards */
.s-cards {}

.d-cards {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.d-cards .item {
    flex: 0 0 300px;
    min-width: 300px;
    box-shadow: 2px 2px 10px 1px rgba(184, 24, 23, 0.1);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    color: #444;
}

@media screen and (max-width: 425px) {
    .d-cards .item {
        flex-basis: 100%;
    }
}

.d-cards .item img {
    width: 40px;
    margin-bottom: 20px;
}

.d-cards .item h5 {
    font-size: 18px;
    text-transform: uppercase;
    color: #555;
    font-weight: bold;
    padding-bottom: 5px;
    margin: 0;
}
/* end cards */

/* section one */
.s-one {}

.s-one span {
    font-weight: 200;
}

.s-one-body {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.s-one-body .item {
    flex: 1;
}

.s-one .titles {
    margin-bottom: 40px;
    text-align: right;
}

.s-one .titles, .statistic {
    width: 550px;
    color: #555555;
}

.s-one .titles h1 {
    font-size: 60px;
}

.s-one .statistic {
    list-style: none;
    text-align: right;
    margin: 0;
    padding: 0;
}

.s-one .statistic li {
    color: #444444;
}

@media screen and (max-width: 1024px) {
    .s-one-body {
        flex-direction: column;
        gap: 100px;
    }
}

@media screen and (max-width: 600px) {
    .s-one-body .titles, .statistic {
        text-align: center;
        width: 100%;
    }

    .s-one .statistic {
        text-align: center;
    }

    .s-one-body .titles h1 {

    }
}

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

}

/* end section one */

/* plans */
.s-plans {
    background-color: #FEFEFE;
    margin: 80px 0;
    padding: 80px 0;
}

.d-plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.d-plans .item {
    flex: 0 0 320px;
    border-radius: 10px;
    border: 1px solid #D8D8D8;
    transition: transform 0.3s ease;
    padding: 30px;
}

.d-plans .item:hover {
    transform: translateY(-10px);
}

.d-plans .item .header {
    border-radius: 10px 10px 0 0;
    position: relative;
}

.d-plans .megas {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.d-plans .megas h1 {
    font-size: 70px;
    font-weight: bold;
}

.d-plans .details ul {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

.d-plans .details li {
    padding-bottom: 20px;
    border-bottom: 1px solid white;
}

.d-plans .details li:last-child {
    border-bottom: none;
}

.d-plans .megas p {
    font-size: 18px;
}

.d-plans .item.recommended {
    background-color: purple;
    color: white !important;
}

.d-plans .header h1 {
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

.d-plans .item ul {
    list-style: none;
    margin: 40px 0;
    padding: 0;
}

.d-plans .item ul li {
    margin: 15px 0;
}

.d-plans .item .price {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.d-plans .item .price h1 {
    font-size: 30px;
    margin: 0;
    padding: 0;
}

.d-plans .item .price small {
    font-size: 14px;
}

.d-plans .item .footer a {
    display: inline-block;
    background-color: purple;
    padding: 20px 15px;
    color: white;
    border-radius: 10px;
    width: 100%;
    text-align: center;
    margin: 30px 0;
    cursor: pointer;
}

.d-plans .item .footer .recommended {
    background-color: white !important;
    color: purple;
}

/* end plans */

/* invites */
.invite {
    height: auto;
    min-height: 550px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.invite .fades {
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.invite h1 {
    max-width: 600px;
    margin: 0 auto;
    font-size: 65px;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

@media screen and (max-width: 600px) {
    .invite h1 {
        width: 80%;
        font-size: 40px;
        padding: 50px 10px;
    }
}


/* end invites */

/* pagination */
.pagination {
    display: flex;
    list-style: none;
    padding: 0;
}

.pagination li {
    margin-right: 5px;
    display: inline-block;
}

.pagination a, .pagination span {
    padding: 5px 10px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
}

.pagination .active span {
    background-color: purple;
    color: #fff;
    border-color: purple;
}

.pagination .disabled span {
    color: #999;
    cursor: not-allowed;
}

.more-images {
    margin: 100px 0;
    text-align: center;
}

.more-images a {
    color: purple;
}