 :root {
    --th-black: #031b4e;
    --th-green: #28a745;
    --th-blue: #0444f9;
    --th-d-blue: #0030b3;
}
 .enquiry .content {
    position: relative;
    padding: 60px;
    background: var(--th-black) url(../../images/pages/enquiry/bg.svg) center no-repeat;
    background-size: 600px;
    background-position-y: bottom;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(3,27,78,.1);
}
.enquiry .content .head {
    margin-bottom: 40px;
}
.enquiry .content .head h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 200;
}
.enquiry .content .head p {
    color: #fff;
    font-size: 16px;
    font-weight: 200;
}
.enquiry .content .head p a {
    color: #fff;
    font-weight:500;
    -webkit-transition: color .25s linear;
    transition: color .25s linear;
}
.enquiry .content .head p a:hover {
    color: var(--th-green);
}
.enquiry .content .items {
    margin-bottom: 40px;
}
.enquiry .content .items .card:not(:last-child) {
    margin-bottom: 20px;
}
.enquiry .content .items .card {
    background: transparent;
    border: 0;
}
.enquiry .content .items .card .card-header {
    border: 0;
}
.enquiry .content .items .card .card-header h2 button.collapsed {
    border-color: rgba(255, 255, 255, .6);
    color: rgba(255, 255, 255, .6);
    border-radius: 4px;
}
.enquiry .content .items .card .card-header h2 button {
    padding: 25px 0px 25px 15px;
    background: transparent;
    color: rgba(255, 255, 255, 1);
    font-weight: 300;
    border-color: rgba(255, 255, 255, 1);
    font-size: 20px;
    border-radius: 4px 4px 0 0;
    -webkit-transition: all .25s linear;
    transition: all .25s linear;
}
.enquiry .content .items .card .card-header h2 button .name i {
    font-size: 26px;
}
.enquiry .content .items .card .card-header h2 button .collapse-icon {
    position: absolute;
    right: 80px;
    padding: 25px 0px 25px 15px;
}

.enquiry .content .items .card .card-header h2 button.collapsed .collapse-icon i {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.enquiry .content .items .card .card-header h2 button .collapse-icon i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: -webkit-transform .25s linear;
    transition: -webkit-transform .25s linear;
    transition: transform .25s linear;
    transition: transform .25s linear, -webkit-transform .25s linear;
}
.enquiry .content .items .card .card-body {
    color: var(--thDarBorderColor);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    border: 1px solid rgba(255, 255, 255, 1);
    border-top: 0;
    letter-spacing: 1px;
    font-family: arial !important;
}
.th-btn-fill {
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    color: #fff !important;
    font-size: 16px;
    background: var(--th-blue);
    height: 48px;
    line-height: 48px;
    padding: 0 24px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(3,27,78,.06);
    border: 1px solid var(--th-blue);
}
.th-btn-fill:hover {
    background: var(--th-d-blue);
    border-color: var(--th-d-blue);
}



@media (max-width: 767.98px) {
	.enquiry .content .items .card .card-header h2 button{
		font-size: 18px;
	}
}
@media (max-width: 991.98px){
	.enquiry .content .items .card .card-header h2 button span span {
    	white-space: normal;
	}
}