
*{
    margin: 0px;
    padding: 0px;
    font-family: sans-serif;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
header{
    display: flex;
    align-items: center;
    background: #001F3D;
    color: white;
    border-top: 1px solid #ccc;
    border-bottom:1px solid #ccc;
    gap: 30px;
}
.headerLeft{
    display: flex;
    align-items: center;
}
.logo{
    padding: 20px 30px;
    border-right: 1px solid #ccc ;
}
.headerAddress{
    padding: 20px 30px;
}
.headerAddress h3{
    font-size: 18px;
}
.headerRight{
    display: flex;
    gap:20px;

}
.headerRight a{
    text-decoration: none;
    color:white
}
.headerRight button{
    padding: 10px;
    background: transparent;
    border: none;
    font-size: 16px;
}
.headerRight button:last-child{
    border-bottom:1px solid #ffffff;
}
.bannerSectioin{
    margin: auto;
    max-width: 1680px;
}
.bannerSectioin img{
    width: 100%;
}

.tDisplay{
    margin: auto;
    max-width: 1280px;
    padding: 30px 0px;

}
.tTitle{
    width: 100%;
    text-align: center;
    font-size: 30px;
    font-weight: 800;
}

.tCardRrow{
    display: flex;
    flex-wrap: wrap;
}

.cCard{
    width: 100%;
    flex-basis: 33%;
    border: 1px solid #ccc;
    background: #001F3D;
    color: white;
    border-radius: 20px;
    height: 600px;

}

.cTitle{
    padding: 20px;
    font-size: 20px;
    font-weight: 400;
    max-width: 70%;
    
}
.cDiscription{
    font-size: 12px;
    padding-top: 8px;
    max-width: 70%;
}
.cCardFlex{
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgb(194, 193, 193);
    margin-bottom: 10px;

}
.cDetailFlex{
    display: flex;
    align-items: center;
    gap: 10px;
}
.tStatus{
    background:white ;
    text-align: center;
    width: 150px;
    height: 40px;
    border-radius: 10px;
    color: black;
    margin: 20px;
}
.tStatus p{
    margin: 10px;
    max-width: 30%;
}
.cDetail1{
    display: flex;
    align-items: center;
    width: 50%;
    margin: 0px 0px 10px 20px;
    gap: 5px;
}
.cDetail1 p{
    font-size: 12px;
}
.cDetail2{
    display: flex;
    align-items: center;
    width: 50%;
    margin: 0px 20px 10px 0px;
    gap: 5px;
}
.cDetail2 p{
    font-size: 12px;
}

.cCard {
    height: 350px;
}

.cCardBtn{
    margin: 10px;
    gap:20px
}

.cCardBtn a{
    text-decoration:none ;
    color:white;
}
