/* ==========================================================
   Elementor Vertical Timeline
========================================================== */

.evt-timeline{
    position:relative;
    max-width:1200px;
    margin:0 auto;
    padding:40px 0;
}

.evt-timeline:before{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    bottom:0;
    width:2px;
    transform:translateX(-50%);
    background:#d8d8d8;
}

.evt-hide-line:before{
    display:none;
}

.evt-item{
    width:100%;
    position:relative;
    display:flex;
    align-items:center;
    margin-bottom:80px;
}

.evt-item:last-child{
    margin-bottom:0;
}

/* LEFT */

.evt-item.left{
    justify-content:flex-start;
}

.evt-item.left .evt-content{
    margin-right:90px;
}

/* RIGHT */

.evt-item.right{
    justify-content:flex-end;
}

.evt-item.right .evt-content{
    order:2;
    margin-left:90px;
}

.evt-item.right .evt-circle{
    order:1;
}

/* CONTENT */

.evt-content{

    width:calc(50% - 80px);

    background:#fff;

    border:1px solid #ececec;

    border-radius:10px;

    padding:35px;

    box-sizing:border-box;

    transition:.3s ease;

}

.evt-content:hover{

    transform:translateY(-5px);

}

.evt-year{

    font-size:32px;

    font-weight:700;

    color:#0F7CFF;

    margin-bottom:10px;

}

.evt-title{

    margin:0 0 15px;

    font-size:24px;

    line-height:1.3;

    font-weight:700;

    color:#222;

}

.evt-title a{

    color:inherit;

    text-decoration:none;

}

.evt-description{

    font-size:16px;

    line-height:1.8;

    color:#666;

}

.evt-description p:last-child{

    margin-bottom:0;

}

/* Circle */

.evt-circle{

    width:80px;

    height:80px;

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    border-radius:50%;

    border:3px solid #0F7CFF;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:5;

    transition:.3s;

}

.evt-circle:hover{

    transform:translate(-50%,-50%) scale(1.08);

}

.evt-circle img{

    max-width:34px;

    height:auto;

    display:block;

}

.evt-circle i{

    font-size:28px;

    color:#0F7CFF;

}

.evt-circle svg{

    width:28px;

    height:28px;

    fill:#0F7CFF;

}/* ==========================================================
   Responsive
========================================================== */

@media (max-width:1024px){

.evt-content{

    width:calc(50% - 60px);

    padding:25px;

}

.evt-circle{

    width:70px;

    height:70px;

}

.evt-year{

    font-size:28px;

}

.evt-title{

    font-size:22px;

}

}

@media (max-width:767px){

.evt-timeline{

    padding-left:40px;

}

.evt-timeline:before{

    left:20px;

    transform:none;

}

.evt-item{

    display:block;

    margin-bottom:60px;

}

.evt-item.left,
.evt-item.right{

    justify-content:flex-start;

}

.evt-content{

    width:100%;

    margin:0 !important;

}

.evt-circle{

    left:20px;

    top:35px;

    transform:translate(-50%,0);

}

.evt-circle:hover{

    transform:translate(-50%,0) scale(1.08);

}

}

.evt-content{

    transition:

        box-shadow .3s,

        border-color .3s,

        transform .3s;

}

.evt-content:hover{

    box-shadow:

        0 10px 30px rgba(0,0,0,.08);

}

.evt-circle{

    box-shadow:

        0 5px 15px rgba(0,0,0,.08);

}

.evt-circle img{

    max-width:40px;

}

.evt-circle svg{

    width:32px;

}

.evt-circle i{

    font-size:30px;

}

.evt-item:last-child{

    margin-bottom:0;

}

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

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#fff;
}

.timeline{
    width:1100px;
    margin:60px auto;
    position:relative;
    padding:30px 0;
}

.timeline:before{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    bottom:0;
    width:4px;
    background:#8d8d8d;
    transform:translateX(-50%);
}

/* Timeline Item */

.timeline-item{
    width:50%;
    position:relative;
    margin:50px 0;
}

.timeline-item.left{
    left:0;
    padding-right:90px;
    text-align:right;
}

.timeline-item.right{
    left:50%;
    padding-left:90px;
}

/* Connector */

.timeline-item:before{
    content:"";
    position:absolute;
    top:32px;
    width:80px;
    height:4px;
    background:#46c0dc;
}

.timeline-item.left:before{
    right:0;
}

.timeline-item.right:before{
    left:0;
}

/* Center Circle */

.timeline-item:after{
    content:"";
    position:absolute;
    width:22px;
    height:22px;
    border-radius:50%;
    background:#fff;
    border:4px solid #46c0dc;
    top:22px;
    z-index:2;
}

.timeline-item.left:after{
    right:-11px;
}

.timeline-item.right:after{
    left:-11px;
}

/* Year */

.year{
    font-size:36px;
    font-weight:bold;
    color:#555;
    margin-bottom:10px;
}

/* Content */

.content{
    display:inline-block;
    max-width:360px;
}

.content h4{
    color:#46c0dc;
    margin-bottom:8px;
    font-size:18px;
}

.content p{
    font-size:14px;
    color:#777;
    line-height:1.6;
}

/* Icon */

.icon{
    width:56px;
    height:56px;
    border-radius:50%;
    border:3px solid #46c0dc;
    display:flex;
    align-items:center;
    justify-content:center;
    position:absolute;
    top:5px;
    background:#fff;
    font-size:22px;
}

.timeline-item.left .icon{
    left:0;
}

.timeline-item.right .icon{
    right:0;
}

/* Responsive */

@media(max-width:768px){

.timeline{
    width:95%;
}

.timeline:before{
    left:25px;
}

.timeline-item,
.timeline-item.left,
.timeline-item.right{
    width:100%;
    left:0;
    padding-left:80px;
    padding-right:20px;
    text-align:left;
}

.timeline-item:before{
    left:25px;
    width:45px;
}

.timeline-item:after{
    left:14px;
}

.timeline-item .icon{
    left:0;
    right:auto;
}

.year{
    font-size:28px;
}

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

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#f6f6f6;
}

.pricing-section{
    padding:70px 20px;
}

.pricing-wrapper{
    max-width:1100px;
    margin:auto;
    display:flex;
    gap:25px;
    justify-content:center;
    align-items:stretch;
    flex-wrap:wrap;
}

.pricing-card{
    width:320px;
    background:#fff;
    border:1px solid #ddd;
    border-radius:18px;
    padding:22px;
    position:relative;
    transition:.3s;
}

.pricing-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.featured{
    border:2px solid #2e74d9;
}

.badge{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    top:-12px;
    background:#2e74d9;
    color:#fff;
    font-size:12px;
    padding:5px 14px;
    border-radius:20px;
    font-weight:600;
}
a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
    background: #08344E;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    font-family: Inter;
    padding: 14px 30px;
    border-radius: 9px;
    gap: 10px;
    display: inline-flex;
    align-items: center;
    width: 100%;
}
.pricing-card.mark-popular-yes {
    border: 1px solid #2e74d9;
}

.plan-type{
    color:#999;
    font-size:13px;
    display:block;
    margin-bottom:8px;
}

.pricing-card h3{
    color:#12345a;
    font-size:28px;
    margin-bottom:15px;
}

.price{
    font-size:34px;
    font-weight:700;
    color:#12345a;
    margin-bottom:25px;
}

.price span{
    display:block;
    font-size:13px;
    color:#888;
    font-weight:400;
}

ul{
    list-style:none;
    margin-bottom:30px;
}

ul li{
    position:relative;
    padding-left:26px;
    margin-bottom:14px;
    color:#555;
    line-height:1.5;
    font-size:15px;
}

.product-card .description ul li:before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#16b364;
    font-weight:bold;
}

.btn{
    display:block;
    text-align:center;
    background:#0b2c55;
    color:#fff;
    text-decoration:none;
    padding:14px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#16457d;
}

.down-arrow{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#fff;
    border:1px solid #ddd;
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    color:#666;
    box-shadow:0 4px 10px rgba(0,0,0,.1);
}

@media(max-width:992px){

.pricing-wrapper{
    flex-direction:column;
    align-items:center;
}

.pricing-card{
    width:100%;
    max-width:420px;
}

}
span.woocommerce-Price-amount.amount {
    display: ruby-text;
}
.eael-product-list-price-wrap{
        display: flex;
}