.card-container{
    &:has(.card-label){
        padding: 45px 22px 10px;
    }
    padding: 20px 22px 10px;
    .card-label{
        background: #07D2F5;
        margin-top: -60px;
    }
    .card-content{
        align-items: flex-start;
    }
    .card-logo{
        align-items: flex-start;
        flex: 0 1 140px;
        @media screen and (max-width:767px){
            flex: 1 1 auto;
        }
        &>img{
            max-width: 135px;
            object-fit: contain;
            margin-bottom: 5px !important;
        }
        .rating{
            margin: 0;
            margin-right: auto;
            @media screen and (max-width:767px){
                margin-inline: auto;
            }
        }
        .logo-text{
            display: flex;
            gap: 5px;
            margin-top: 63px;
            h4 {
                margin: 0;
                text-transform: uppercase;
                font-size: 15px;
                line-height: 22px;
                font-weight: 500;
            }
            p{
                display: none;
            }
            @media screen and (max-width:767px){
                margin-top: 10px;
            }
        }
    }
    .card-text{
        flex: 3 1 300px;
        max-width: 448px;
        p {
            font-size: 13px;
            line-height: 22px;
        }
    }
    
    .card-button{
        position: relative;
        text-decoration: none;
        color: #fff;
        background-color: #FF005B;
        padding: 11px 34px;
        font-size: 15px;
        display: block;
        max-width: 100%;
        width: fit-content;
        transition: 0.4s ease;
        &:hover {
            color: #fff;
            text-decoration: none;
            transform: scale(0.98);
        }
    }
    .card-text{
        border-left: 0;
        padding-left: 0;
        .awrd{
            padding-left: 0px;
            font-size: 19px;
            line-height: 28px;
            &::after{
                display: none;
            }
        }
        h3 {
            font-size: 18px;
            line-height: 26px;
        }
        .offer-content{
            ul{
                li::marker{
                    color: #FF005B;
                }
                li{
                    font-size: 13px;
                    line-height: 22px;
                }
            }
        }
    }
    .card-actions{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: -webkit-fill-available;
    }
    @media screen and (max-width:767px){
        .card-content{
            align-items: center;
            .awrd,h3{
                text-align: center;
            }
        }
        .card-button{
            margin-inline: auto;
        }
    }
}

.msg-container{
    align-items: center;
    &:has(.tip-icon-section){
        background-color: #e9f5e9;
        border: 1px solid #ABF4C6;
    }
    &:has(.warning-icon-section){
        background-color: #fcf8e3;
        border: 1px solid #F8EDA4;
    }
    .tip-content-section,.warning-content-section{
        border-left: 0;
        @media screen and (max-width:767px){
            padding: 20px;
        }
        h2{
            display: none;
        }
        .tip-text p,.warning-text p{
            max-width: 500px;
            width: 100%;
            font-size: 12px;
            line-height: 24px;
            margin: 0;
        }
    }
    .tip-icon-section,.warning-icon-section{
        width: auto;
        padding-right: 0;
        h2{
            margin: 0;
            font-size: 22px;
            line-height: 32px;
            font-weight: 500;
            color: #198F44;
            margin-top: 0;
            margin-bottom: 10px;
        }
        p{
            margin-bottom: 0px;
        }
        @media screen and (max-width:767px){
            padding: 20px 0px;
        }
    }
    .warning-icon-section H2 {
        color: #FFBA03;
    }
}

.pros-cons{
    padding: 0;
    gap: 0;

    .content {
        h3{
            text-align: center;
            margin-bottom: 0;
            font-size: 18px;
            line-height: 26px;
            font-weight: 500;
            background-color: #FFEFEF;
            border: 1px solid #FFD5D5;
            color: #E84A4A;
            padding: 5px 0px;
        }
        &:first-of-type{
            border-right: 1px solid #E8E8E8;
            h3{
                background-color: #DFFFEB;
                border: 1px solid #ABF4C6;
                color: #198F44;
            }
        }
        ul {
           padding: 15px 17px; 
           li{
            font-size: 13px;
           }
        }
    }
}

.solutions-grid{
    table {
        th,td {
            border: none;
        }
        th{
            background: #E3FAFF;
            font-size: 15px;
            line-height: 30px;
            font-weight: 500;
            color: #212121;
            text-align: left;
            border-top: 1px solid #D1F2F8;
            border-bottom: 1px solid #D1F2F8;
            padding-left: 0px;
        }
        tr{
            td{
                background-color: #F3FDFF;
                border-bottom: 1px solid #D1F2F8;
                padding: 17px 10px;
                .flex{
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    gap: 10px;
                    flex-wrap: wrap;
                }
                &:nth-of-type(3){
                    p{
                        max-width: 170px;
                    }
                }
                h2{
                    padding: 0px 15px;
                    font-size: 22px;
                    line-height: 32px;
                    font-weight: 500;
                }
                p{
                    font-size: 13px;
                    line-height: 22px;
                    color: #606060;
                    flex: 1 1 110px;
                    margin-bottom: 0px;
                }
                a{
                    text-decoration: none;
                    background-color: #07D2F5;
                    color: #fff;
                    padding: 11px 18px;
                    font-size: 15px;
                    margin-right: 15px;
                }
            }
            &:nth-of-type(odd){
                td{
                    background-color: #D1F2F8;
                    border-bottom: 1px solid #D1F2F8;
                }
            }
        }
        @media screen and (max-width:992px) {
            tr{
                td{
                    a{
                        display: none;
                    }
                    &:first-of-type{
                        display: none;
                    }
                    img{
                        max-width: 80px;
                    }
                }
                th:first-of-type{
                    display: none;
                }
                th,td{
                    padding: 5px;
                }
                th{
                    text-align: center;
                }
            }
        }
        @media screen and (max-width:768px){
            tr{
                th{
                    font-size: 10px;
                    line-height: 16px;
                }
                td{
                    img{
                        width: 60px;
                    }
                    p{
                        font-size: 14px;
                    }
                }
            }
        }
    }
}
.download-widget{
    position: relative;
    width: 100%;
	max-width:723px;
	margin-bottom:40px;
	margin-inline:auto;
    padding: 24px 15px;
    border: 1px solid #E0E5E8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:30px;
    flex-wrap: wrap;
    @media screen and (max-width:768px){
        gap: 10px;
    }
    .img-cont{
      position: relative;
      display: grid;
      place-items: center;
      padding: 26px 21px 26px 0px;
      border-right: 1px solid #E2E2E2;
      img{
        position: relative;
        display: block;
        width: 100%;
        max-width: 123px;
        @media screen and (max-width:768px){
            max-width: 200px;
        }
      }
    }
    .text-cont{
      max-width: 346px;
      h2{
        font-size: 14px;
        line-height: 26px;
        margin-bottom: 5px;
      }
      p{
        font-size: 12px;
        line-height: 26px;
      }
    }
    .btn-cont{
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
        a.btn{
            margin-left: auto;
          position: relative;
          display: flex;
          align-items: center;
          justify-content: center;
          max-width: 164px;
          padding: 15px 20px;
          border-radius: 5px;
          background-color: #FF005B;
          color: #fff;
          font-weight: 600;
          text-decoration: none;
          font-size: 14px;
          line-height: 20px;
          transition: 0.4s ease;
          text-align: center;
          &:hover{
            transform: scale(0.98);
          }
          @media screen and (max-width:768px){
            max-width: 100%;
            width: 250px;
            font-size: 14px;
          }
        }
    }
    @media screen and (max-width:768px) {
      justify-content: center;
      .img-cont{
        border-right: 0px;
        border-bottom: 1px solid #E0E5E8;
        padding-right: 0px;
        padding: 0px 30px 24px;
      }
      .btn-cont{
        flex-direction: column-reverse;
      }
    }
}
.both .download-widget{
	margin-bottom:00px;
}

.download-widget.vertical {
	-webkit-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 0;
}
.download-widget.vertical .img-cont {
	padding: 0;
	border: 0;
}
.download-widget.vertical .img-cont img {
	max-width: 75%;
}
.download-widget.vertical .text-cont {
	text-align: left;
	max-width: 310px;
}
.download-widget.vertical .text-cont h2 {
	margin-top: 0;
}


.effortless-widget{
    position: relative;
    max-width: 723px;
    width: 100%;
    margin: 10px auto 20px !important;
    border: 1px solid #E2E2E2 !important;
    background-color: #F9F9F9 !important;
    padding: 7px 40px 0px !important;
    @media screen and (width<=600px){
        padding: 7px 10px 0px !important;
    }
    p{
        margin: 0 !important;
    }
    .flex{
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 20px !important;
        .content{
            flex : 1 1 300px !important;
            h2 {
                font-family: 'Oswald', sans-serif;
                font-size: 31px !important;
                line-height: 38px !important;
                font-weight: 600 !important;
                margin-bottom: 35px !important;
                margin-top: 0px !important;
            }
            a.btn {
                position: relative !important;
                display: block !important;
                text-decoration: none !important;
                color: #fff !important;
                background-color: #FF005B !important;
                padding: 11px 33px !important;
                width: 100% !important;
                max-width: fit-content !important;
                font-size: 20px !important;
                line-height: 23px !important;
                font-weight: 600 !important;
                transition: 0.4s ease !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                height: fit-content !important;
                &:hover{
                    transform: scale(0.98) !important;
                }
                br{
                    display: none !important;
                }
            }
            @media screen and (width<=600px) {
                padding: 20px 20px 0px !important;
                h2{
                    font-size: 24px !important;
                    line-height: 30px !important;
                    margin-bottom: 15px !important;
                    text-align: center !important;
                }
                a.btn {
                    font-size: 16px !important;
                    line-height: 18px !important;
                    margin-inline: auto !important;
                }
            }
        }
        img{
            position: relative !important;
            display: block !important;
            object-fit: contain !important;
            max-width: 100% !important;
            flex: 1 1 150px !important;
            max-width: 196px !important;
        }
    }
}

.effortless-widget.text-only{
    padding: 34px 40px !important;
    @media screen and (width<=600px){
        padding: 20px !important;
    }
    .flex{
        .content{
            h2{
                margin-bottom: 10px !important;
            }
            a{
                font-size: 20px !important;
                line-height: 23px !important;
                font-weight: bold !important;
                color: #006FFF !important;
            }
            @media screen and (width<=600px) {
                padding: 0px !important;
                a {
                    font-size: 16px !important;
                    line-height: 18px !important;
                    margin-inline: auto !important;
                    text-align: center !important;
                    display: block !important;
                }
            }
        }
    }
}