/* cards */

#wrapper {
    display: block;
    margin: 50px auto 50px;
    max-width: 1170px;
}
#box1, #box2, #box3 {
    border-radius: 5px;
    background: aliceblue;
}
#box1 h1, #box1 h2, #box1 h3,
#box2 h1, #box2 h2, #box2 h3,
#box3 h1, #box3 h2, #box3 h3 {
    text-align: center;
    font-size: 26px;
    color: #FFF;
    margin: 0 10px 0 10px;
    position: relative;
    top: -20px;
    border-radius: 5px;
    padding: 5px;
    font-family: cursive;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}
#wrapper > h1 {
   text-align: center;
   font-family: cursive;
   margin-bottom: 2.5em;
   text-shadow: 0 0 5px #FFF, 0 0 10px #FFF, 0 0 15px #FFF, 0 0 20px #795548, 0 0 30px #795548, 0 0 40px #795548, 0 0 55px #795548, 0 0 75px #795548, -40px -40px 0px rgba(28,110,164,0);
}
#wrapper h1 span {
   color: #2196fd;
}
#wrapper h1 span:nth-child(2) {
   color: #fd5263;
}
#wrapper h1 span:last-child {
   color: #7983f8;
}
#flexbox #box1 {
    border: 1px solid #34c5e4;
}
#flexbox #box2 {
    border: 1px solid #f90;
}
#flexbox #box3 {
    border: 1px solid #a7c;
}
#box1 h3 {
    background: linear-gradient(38deg, #2196fd, #04ffb4);
}
#box2 h2 {
    background: linear-gradient(38deg, #ffe74f, #fd5263);
}
#box3 h1 {
    background: linear-gradient(38deg, #ff6da2, #7983f8);
}
#box1 p, #box2 p, #box3 p {
    text-align: center;
    padding: 10px 0;
    font-size: 18px;
    color: #a7c;
    margin: 0;
}
#first {
    color: #a7c;
}
#second {
    color: #f90;
}
#third {
    color: #34c5e4;
}
#first-contents, #second-contents, #third-contents {
    text-align: justify !important;
    padding: 15px 15px !important;
    font-size: 15px !important;
}
#first, #second, #third {
    display: block;
    text-align: center;
    color: #a7c;
    font-size: 53px;
    margin-bottom: 5px;
}
#flexbox {
    display: flex;
    flex-wrap: wrap;
    margin: 50px 15px;
    justify-content: center;
}
#flexbox #box1, #flexbox #box2, #flexbox #box3 {
    width: 280px;
    box-sizing: border-box;
    margin: 0 15px;
    margin-bottom: 5em;
    position: relative;
}
#flexbox #box1:after, #flexbox #box2:after, #flexbox #box3:after {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    bottom: -10%;
    left: 5%;
    height: 20px;
    width: 90%;
    background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
}
#content-scroll, #content-scroll1, #content-scroll2 {
    height: 200px;
    overflow-y: auto;
    scroll-behavior: smooth;
}
#content-scroll::-webkit-scrollbar, #content-scroll1::-webkit-scrollbar, #content-scroll2::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}
#content-scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #FFF;
    background-image: -webkit-gradient(linear, 40% 0%, 75% 84%, from(#04ffb4), to(#2196fd), color-stop(.6,#2196fd));
}
#content-scroll1::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #FFF;
    background-image: -webkit-gradient(linear, 40% 0%, 75% 84%, from(#fd5263), to(#ffe74f), color-stop(.6,#ffe74f));
}
#content-scroll2::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #FFF;
    background-image: -webkit-gradient(linear, 40% 0%, 75% 84%, from(#ff6da2), to(#7983f8), color-stop(.6,#7983f8));
}

/* end cards */

#plans-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

#essential-plan, #finest-plan, #assured-plan {
    border: 1px solid #ccc;
    padding: 20px;
    width: 30%;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#essential-title, #finest-title, #assured-title {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
}

#essential-features, #finest-features, #assured-features {
    list-style-type: none;
    padding: 0;
    margin-bottom: 15px;
}

#essential-features li, #finest-features li, #assured-features li {
    margin: 10px 0;
    font-size: 16px;
    color: #666;
}

#essential-subscription, #finest-subscription, #assured-subscription {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-top: 15px;
}

#essential-plan:hover, #finest-plan:hover, #assured-plan:hover {
    background-color: #e0f7fa;
    border-color: #00acc1;
}

#essential-title {
    color: #1e88e5;
}

#finest-title {
    color: #43a047;
}

#assured-title {
    color: #f4511e;
}
