@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}
.hero-section{
    padding-top: 40px;
    background-image: url(https://work.xtrazcon.com/freewirelesslifeline/assest/image/backgroung_layer.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 40px;
}
.hero-section .content h1{
    font-size: 56px;
    font-weight: 700;
    width: 700px;
    margin: auto;
    margin-bottom: 20px;
}
.hero-section .content p{
    font-size: 28px;
    margin: auto;
    margin-bottom: 40px;
    font-weight: 500;
    width: 760px;
}

.service {
    margin-bottom: 40px;
}
.service .content h2,
.plans h2,
.eligible h2,
.new-start h2,
.apply-service .content h2{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}
.service .content p{
    font-size: 16px;
    background-color: #ffffff;
    border-radius: 5px;
    border: 1px solid #034EA0;
    height: 100%;
    padding: 10px;
    color: #034EA0;
    margin-bottom: 0px;
}

.plans,
.new-start{
    background-color: #ececec;
    padding: 40px 0px;
    margin-bottom: 40px;
}
.plans p,
.eligible p,
.new-start p,
.apply-service .content p{
    text-align: center;
    margin-bottom: 20px;
}
.plans .content{
    background-color: #034EA0;
    height: 100%;
    border-radius: 5px;
    box-shadow: 0px 0px 14px #00000067;
    padding: 20px;
}
.plans .content h3{
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}
.plans .content ul{
    padding: 0px;
    margin-bottom: 0px;
}
.plans .content ul li{
    list-style: none;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.plans .content ul li span{
    display: block;
    height: 20px;
    width: 20px;
    background-color: #ffffff;
    color: #034EA0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}
.plans .content ul li:last-child{
    margin-bottom: 0px;
}

.eligible{
    margin-bottom: 40px;
}
.eligible .content {
    cursor: pointer;
    text-align: center;
}
.eligible .content h3{
    font-size: 18px;
    margin-top: 5px;
    font-weight: 700;
}
.eligible .content .image{
    border-radius: 10px;
    overflow: hidden;
}
.eligible .content .image img{
    height: 200px;
    object-fit: cover;
}
.eligible .content .image img{
    transition: 0.7s;
}
.eligible .content:hover .image img{
    transform: scale(1.04);
}

.new-start ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 0px;
    padding: 0px;
    background-color: #034EA0;
    border-radius: 5px;
}
.new-start ul li{
    position: relative;
    padding: 10px 20px;
    width: 100%;
    list-style: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.new-start ul li::before{
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 1px;
    background-color: #ffffff;
}
.new-start ul li:last-child:before{
    display: none;
}

.apply-service{
    margin-bottom: 40px;
}
.apply-service .content a{
    text-decoration: none;
    background-color: #034EA0;
    font-size: 18px;
    color: #ffffff;
    padding: 10px 20px;
    display: inline-block;
    margin-bottom: 10px;
    animation: color-change 5s infinite ease-in-out;
}
@keyframes color-change {
    0%{
        background-color: #034EA0;
    }
    25%{
        background-color: #a00303;
    }
    50%{
        background-color: #a07b03;
    }
    75%{
        background-color: #03a00b;
    }
    100%{
        background-color: #034EA0;
    }
}
.apply-service .content{
    height: 100%;
}
.apply-service .content h2{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}
.apply-service .content p{
    text-align: center;
    margin-bottom: 20px;
}

footer{
    background-color: #034EA0;
    padding: 10px 0px;
}
footer p{
    margin-bottom: 0px;
    color: #ffffff;
}
footer .p{
    color: #b4b4b4;
}

@media (max-width: 991px) {
    .hero-section .content h1{
        width: 100%;
    }
    .hero-section .content p{
        width: 100%;
    }
    .new-start ul {
        grid-template-columns: 1fr;
    }
    .new-start ul li::before {
        top: auto;
        right: 0px;
        bottom: 0px;
        height: 1px;
        width: 100%;
    }
}
@media (max-width: 767px) {
    .hero-section .content h1 {
        font-size: 36px;
        margin-bottom: 10px;
    }
    .hero-section .content p {
        font-size: 18px;
    }
    .service .content h2, .plans h2, .eligible h2, .new-start h2, .apply-service .content h2 {
        font-size: 18px;
    }
}