* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    display: block;
}

body {
    max-width: 2000px;
    background-color: black;
}

.wrapper {
    background: linear-gradient(
        to bottom,
        rgba(100,100,90,0.8),
        rgba(10,20,50,0.9)
    ),
    url(images/wavepat.png) no-repeat center center;
}

.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.header .logo{
    width: 100px;
}

.header .right-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.right-nav .nav-bar{
    list-style-type: none;
    align-items: center;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.right-nav .nav-bar li{
    float: left;
}

.right-nav .nav-bar li a{
    align-items: center;
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 15px;
    color: white;
}

.right-nav .nav-bar li a:hover{
    color: #0d172f;
}

.footer{
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 30px;

}

.footer .fa{
    font-size: 30px;
    width: 30px;
    text-decoration: none;
    border-radius: 50%;
    color: white;
}
.footer .fa:hover{
    color: #4c4d46;
}

.services-container{
    padding: 0;
    margin: 0;
}

.services-wrapper{
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 10px;
    font-weight: 600px;
    line-height: 1.6;
}

.services-wrapper-2{
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 10px;
    font-weight: 600px;
    line-height: 1.6;
}


.pricing-cards a{
    text-decoration: none;
    color:darkblue;
}

.pricing-cards ul{
    list-style: none;
}

.pricing-cards li{
    padding-bottom: 10px;
}

.pricing-cards{
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}
.card{
    flex: 1;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.card h2{
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding: 15px;
    color: #0d172f;
    background: #f7f7ff
}

.mini-tier h2{
    background: linear-gradient(
        90deg,
        rgba(255, 194, 194,1) 13%,
        rgba(254, 118, 197,1) 100%
    );
    color: #fff;
}

.basic-tier h2{
    background: linear-gradient(
        90deg,
        rgba(254, 118, 197,1) 13%,
        rgba(177, 118, 254,1) 100%
    );
    color: #fff;
}

.standard-tier h2{
    background: linear-gradient(
        90deg,
        rgb(223, 34, 43) 13%,
        rgb(218, 200, 38) 100%
    );
    color: #fff;
}

.premium-tier h2{
    background: linear-gradient(
        90deg,
        rgb(221, 38, 197) 13%,
        rgb(62, 221, 48) 100%
    );
    color: #fff;
}

.professional-tier h2{
    background: linear-gradient(
        90deg,
        rgb(247, 2, 2) 13%,
        rgb(37, 15, 228) 100%
    );
    color: #fff;
}

.card .price{
    font-size: 45px;
    font-weight: 700px; 
}

.card .price sup{
    font-size: 18px;
    position: relative;
    left: -5px;
}

.card .tier-description{
    font-size: 14px;
    margin-bottom: 50px;
}

.tier-btn{
    display: block;
    background-color: white;
    color: #0d172f;
    border: 1px solid black;
    border-radius: 5px;
    padding: 15px;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
}

.tier-btn:hover{
    background-color: lightgray;
    color: white;
}

