/* default css start */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    background-color: #FAF9F6;
}
.flex-column{
    display: flex;
    flex-direction: column;
}
.text-left{
    text-align: center;
}
.text-center{
    text-align: center;
}
.d-align{
    display: flex;
    align-items: center;
}
.d-align-justify{
    display: flex;
    align-items: center;
    justify-content: center;
}
.mt-auto{
    margin-top: auto;
}
.mx-auto{
    margin: 0 auto;
}
a{
    transition: all 0.3s;
}
a:hover{
    color: #6e5494;
}
.list-style-none{
    list-style: none;
}
/* default css end */
.pyway-section{
    --pyway-space: 50px;
    padding: var(--pyway-space) 12px;
    max-width: 1000px;
    min-height: calc(100vh - var(--pyway-space));
}
.logo{
    max-width: 350px;
    margin-bottom: 20px;
}
.pyway-section h2{
	background: linear-gradient(to right, #30cfd0 0%, #330867 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
    font-size: 40px;
    max-width: 700px;
    margin-bottom: 30px;
    line-height: 1.5;
}
.pyway-section ul{
    margin-bottom: 30px;
    max-width: 500px;
}
.pyway-section ul li:not(:last-child){
    padding-bottom: 20px;
}
.pyway-section ul li a{
    font-size: 18px;
    text-decoration: none;
    word-break: break-all;
}
.pyway-section ul li span{
    margin-left: auto;
}
.badge{
    width: max-content;
    min-width: 100px;
    min-height: 40px;
    border-radius: 5px;
    background-color: #000;
    color: #fff;
    transition: all 0.3s;
}
.badge.bg-success{
    background-color: #4078c0;
}
.badge.bg-primary{
    background-color: #c9510c;
}
.badge.bg-purple{
    background-color: #6e5494;
}
.pyway-section ul li a:hover .badge{
    background-color: rgba(0,0,0,0.7);
}
.pyway-details-box-wrap{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 30px;
    border-radius: 15px;  
}
.pyway-details-box-wrap p{
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    line-height: 1.8;
}
.pyway-details-box-wrap p:not(:last-child){
    padding-bottom: 15px;
}
.pyway-details-box-wrap p b{
    color: blue;
}
.copyright-text{
    display: block;
    width: 100%;
    background-color: #eee;
    padding: 15px;
    text-align: center;
}