.pa-container {
	font-family: 'Trebuchet MS','Lucida Grande','Lucida Sans Unicode','Lucida Sans','Tahoma',sans-serif;
	box-sizing: border-box;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
	 font-size: 80%;
}

.pa-top {
    display: flex;
    overflow: hidden;
}

.leftpanel {
    background-color: #883b36;
    width: 520px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    position: relative;
}

.leftpanel::after {
    display: block;
    position: absolute;
    content: '';
    right: -17px;
    width: 0; 
    height: 0; 
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 18px solid #883b36;
}

.leftpanel::before {
    display: block;
    position: absolute;
    content: '';
    right: -19px;
    width: 0; 
    height: 0; 
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 18px solid #FFF;
}

.leftpanel p,
.rightpanel p {
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;
	 margin: 0 !important
}

.leftpanel .logo {
    width: 80px;
    position: relative;
}

.leftpanel .logo::after {
    display: block;
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    background-color: #c49d9b;
    right: -25px;
    top: 2px;
}

.leftpanel .logo img {
    width: 100%;
    height: 100%;
}

.rightpanel {
    background-color: #545e6e;
    width: calc(100% - 520px);
    padding-left: 80px;
    display: flex;
    gap: 30px;
    align-items: center;
}

.rightpanel button{
    background-color: #fff;
    padding: 5px 15px;
    border: none;
    border-radius: 5px;
    color: #883b36;
    font-weight: 600;
    font-size: 16px;
}

.rightpanel button a {
    color: inherit;
    text-decoration: none;
}

.rightpanel button:hover {
    background-color: #883b36;
    color: #fff;
    transition: 0.2s;
    cursor: pointer;
}

@media(max-width: 1300px) {
    .rightpanel p {
        display: none;
    }
    .rightpanel {
        padding-right: 20px;
        justify-content: flex-end;
        padding-left: 30px;
    }
}

@media(max-width: 756px) {
    .pa-top {
        flex-wrap: wrap;
    }

    .rightpanel {
        width: 100%;
        justify-content: center;
        padding: 10px;
        background-color: #883b36;
    }

    .leftpanel {
        width: 100%;
    }
}

@media(max-width: 756px) {
    .logo {
        display: none;
    }

    .leftpanel {
        justify-content: center;
        padding-top: 15px;
        padding-bottom: 0px;
    }

    .leftpanel p {
        text-align: center;
    }
}