* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

main {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 100vh;
    overflow: hidden;
}

@media screen and (max-width:768px) {
    main {
        display: flex;
        flex-direction: column-reverse;
    }
}

@media screen and (min-width:768px) {
    .left {
        align-self: flex-start;
        height: 100vh;
        overflow: auto;
    }
}

.left::-webkit-scrollbar {
    background-color: #fff;
    border-radius: 6px;
    width: 6px;
}

.left::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}

.left::-webkit-scrollbar-thumb {
    border-radius: 2rem;
    background-color: #0a3a6e;
}

.content {
    padding: 50px 40px 0;
}

.content p {
    margin-top: 15px;
}

@media screen and (max-width:575px) {
    .content {
        padding: 20px;
    }
}

.content h1 {
    font-size: 36px;
    text-transform: uppercase;
    line-height: 1;
    font-weight: 900;
    color: #0a3a6e;
}

.content span {
    color: #d698b5;
}

.content h2 {
    color: #606060;
    font-size: 22px;
    font-weight: normal;
}

.border-one {
    height: 2px;
    width: 100%;
    background: #606060;
    margin: 10px;
}

.right {
    height: 100%;
}

.img-wrapper {
    overflow: hidden;
    height: 100%;
    position: relative;
}

.img-wrapper .logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
    height: auto;
}

.img-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media screen and (min-width:575px) and (max-width:768px) {
    .img-wrapper img {
        width: 500px;
        display: block;
        border-radius: 16px;
        margin: 20px auto 0;
    }
}

.subPoints {
    margin-top: 30px;
}

.subPoints h3 {
    color: #fff;
    background: #606060;
    display: inline-block;
    padding: 5px 10px;
}

.subPoints ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 20px;
}

.subPoints ul li {
    position: relative;
    padding-left: 15px;
}

.subPoints ul li::before {
    content: "";
    background: #606060;
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 100%;
}

.subPoints ul li:not(:last-child) {
    margin-bottom: 10px;
}

.space-one {
    height: 30px;
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 0;
    transform: translateX(71%);
    transition: all 0.4s ease-in-out;
}

.whatsapp:hover {
    transform: none;
}

.whatsapp a img {
    width: 30px;
    filter: brightness(100) invert(1);
}

.whatsapp a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    gap: 10px;
    background: linear-gradient(45deg, #1EBEA5, #00E676);
    padding: 10px;
    border-radius: 50px 0 0 50px;
}

.whatsapp a span {
    font-size: 14px;
    line-height: 1;
    margin-bottom: 0;
}

.become-member {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

@media screen and (min-width:768px) and (max-width:992px) {
    .become-member{
        display: block;
    }
    .become-member .card{
        width: 223.23px;
        margin: auto;
    }
    .become-member .card:first-child{
        margin-bottom: 20px;
    }
}
@media screen and (max-width:575px) {
    .become-member{
        display: block;
    }
    .become-member .card{
        width: 223.23px;
        margin: auto;
    }
    .become-member .card:first-child{
        margin-bottom: 20px;
    }
}

.become-member .card {
    border-radius: 16px;
    overflow: hidden;
    padding: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transition: all 0.4s;
}

.become-member .card:hover{
    background: #d698b51a;
}


.become-member .card.recommened .term {
    color: #606060;
}

.become-member .card.recommened .amount {
    background: #606060;
}

.become-member .card .amount del {
    color: #fff;
    font-weight: normal;
}

.become-member .card .amount span {
    color: #fff;
    text-transform: uppercase;
    margin-left: 5px;
    font-weight: 700;
}

.become-member .card .recommendation {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    color: #d698b5;
    background: #d698b52e;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.become-member .card .term {
    text-align: center;
    text-transform: capitalize;
    font-weight: 700;
    padding: 10px 0;
    text-align: center;
    font-size: 24px;
    color: #d698b5;
}

.become-member .card .heads {
    margin-bottom: 20px;
}

.become-member .card .heads h4 {
    font-size: 16px;
    font-weight: normal;
}

.become-member .card .heads span {
    color: inherit;
    text-transform: uppercase;
    font-style: oblique;
}

.become-member .card .amount {
    background: #d698b5;
    padding: 10px;
    width: 150px;
    margin: auto;
    border-radius: 10px;
    text-align: center;
}

.become-member .card .amount del {
    color: #fff;
    font-weight: normal;
}

.become-member .card .amount span {
    color: #fff;
    text-transform: uppercase;
    margin-left: 5px;
    font-weight: 700;
}