.stamp-duty-calculator-container {
    width: 100%;
    padding: 64px 32px;
    display: flex;
    /* justify-content: center; */
    flex-direction: column;
    align-items: center;
}

.stamp-duty-calculator-container .stamp-duty-wrapper {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: row;
    gap: 32px;
}

@media (max-width: 1024px) {
    .stamp-duty-calculator-container .stamp-duty-wrapper {
        flex-direction: column;
        max-width: 900px;
    }
}

@media (max-width: 767px) {
    .stamp-duty-calculator-container .stamp-duty-wrapper .calc-results .results-wrapper {
        padding: 20px !important;
    }
}

.stamp-duty-calculator-container .stamp-duty-wrapper .calcs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (max-width: 1024px) {
    .stamp-duty-calculator-container {
        padding: 32px 16px !important;
    }
}

@media (max-width: 576px) {

    .stamp-duty-calculator-container .stamp-duty-wrapper .i-am-buying-wrapper .buying-input-wrapper,
    .stamp-duty-calculator-container .stamp-duty-wrapper .property-price-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        min-width: unset !important;
    }
}

/* im buying  */

.stamp-duty-calculator-container .stamp-duty-wrapper .i-am-buying-wrapper {
    width: auto;
    position: relative;
}

.stamp-duty-calculator-container .stamp-duty-wrapper .i-am-buying-wrapper.error::after {
    content: '';
    position: absolute;
    left: -14px;
    top: 0;
    width: 8px;
    height: 100%;
    background-color: red;
}

.stamp-duty-calculator-container .stamp-duty-wrapper .i-am-buying-wrapper h4 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 12px;
}

.stamp-duty-calculator-container .stamp-duty-wrapper .i-am-buying-wrapper .buying-input-wrapper {
    height: 48px;
    width: 100%;
    max-width: 440px;
    min-width: 440px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(212, 212, 212);
    border-image: initial;
    padding: 4px 8px;
}

.stamp-duty-calculator-container .stamp-duty-wrapper .i-am-buying-wrapper .buying-input-wrapper span {
    font-size: 18px;
}

.stamp-duty-calculator-container .stamp-duty-wrapper .i-am-buying-wrapper .buying-input-wrapper .buying-chevron-wrapper {
    width: 24px;
    height: 24px;
    min-width: 24px;
    max-width: 100%;
}

.stamp-duty-calculator-container .stamp-duty-wrapper .i-am-buying-wrapper .buying-input-wrapper .buying-chevron-wrapper svg {
    width: 100%;
    height: 100%;
    max-width: 100%;
    transition: transform 0.3s ease-in-out;
}

.stamp-duty-calculator-container .stamp-duty-wrapper .i-am-buying-wrapper .buying-input-wrapper.active .buying-chevron-wrapper svg {
    transform: rotate(180deg);
}

/* dropdown  */

.stamp-duty-calculator-container .stamp-duty-wrapper .i-am-buying-wrapper .buying-input-wrapper .buying-dropdown {
    position: absolute;
    background-color: rgb(241, 239, 239);
    width: 100%;
    max-height: 0px;
    overflow-y: auto;
    margin-top: 20px;
    left: 0px;
    visibility: hidden;
    pointer-events: none;
    top: 100%;
    z-index: 2;
    padding: 16px;
    transition: max-height 0.3s ease-in-out, visibility 0.3s;
}

.stamp-duty-calculator-container .stamp-duty-wrapper .i-am-buying-wrapper .buying-input-wrapper.active .buying-dropdown {
    max-height: 400px;
    visibility: visible;
    pointer-events: all;
}

.stamp-duty-calculator-container .stamp-duty-wrapper .i-am-buying-wrapper .buying-input-wrapper .buying-dropdown .buying-dropdown-list {
    width: 100%;
}

.stamp-duty-calculator-container .stamp-duty-wrapper .i-am-buying-wrapper .buying-input-wrapper .buying-dropdown .buying-dropdown-list ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

.stamp-duty-calculator-container .stamp-duty-wrapper .i-am-buying-wrapper .buying-input-wrapper .buying-dropdown .buying-dropdown-list ul li {}

.stamp-duty-calculator-container .stamp-duty-wrapper .i-am-buying-wrapper .buying-input-wrapper .buying-dropdown .buying-dropdown-list ul li button {
    display: flex;
    color: rgb(0, 0, 0);
    align-items: center;
    justify-content: start;
    width: 100%;
    font-size: 16px;
    background-color: rgb(255, 255, 255);
    padding: 20px;
    border: unset;
    text-decoration: underline;
    text-align: start;
}

.stamp-duty-calculator-container .stamp-duty-wrapper .i-am-buying-wrapper .buying-input-wrapper .buying-dropdown .buying-dropdown-list ul li:not(:first-child) button {
    border-top: 1px solid rgb(212, 212, 212) !important;
}

/* property price  */

.stamp-duty-calculator-container .stamp-duty-wrapper .property-price {
    position: relative;
}

.stamp-duty-calculator-container .stamp-duty-wrapper .property-price.error::after {
    content: '';
    position: absolute;
    left: -14px;
    top: 0;
    width: 8px;
    height: 100%;
    background-color: red;
}

.stamp-duty-calculator-container .stamp-duty-wrapper .property-price-wrapper {
    height: 48px;
    width: 100%;
    max-width: 440px;
    min-width: 440px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(212, 212, 212);
    border-image: initial;
    padding: 0;
}

.stamp-duty-calculator-container .stamp-duty-wrapper .property-price h4 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 12px;
}

.stamp-duty-calculator-container .stamp-duty-wrapper .property-price-wrapper .pound-icon-wrapper {
    height: 100%;
    width: 40px;
    min-width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 12px;
    max-width: 100%;
    background-color: rgb(243 241 243);
}

.stamp-duty-calculator-container .stamp-duty-wrapper .property-price-wrapper input {
    flex-grow: 1;
    height: 100%;
    font-size: 18px;
    border: unset;
    padding: 4px 8px 4px 16px;
}

/* end of property price  */

/* purchase date  */

.stamp-duty-calculator-container .stamp-duty-wrapper .purchase-date {
    width: 100%;
    position: relative;
}

.stamp-duty-calculator-container .stamp-duty-wrapper .purchase-date.error::after {
    content: '';
    position: absolute;
    left: -14px;
    top: 0;
    width: 8px;
    height: 100%;
    background-color: red;
}

.stamp-duty-calculator-container .stamp-duty-wrapper .purchase-date h4 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 12px;
}

.stamp-duty-calculator-container .stamp-duty-wrapper .purchase-date p {
    margin-top: 0;
    margin-bottom: 16px;
}

.stamp-duty-calculator-container .stamp-duty-wrapper .purchase-date .purchase-date-inputs-wrapper {
    display: flex;
    gap: 12px;
    align-items: center;
}

.stamp-duty-calculator-container .stamp-duty-wrapper .purchase-date .purchase-date-inputs-wrapper .day-wrapper,
.stamp-duty-calculator-container .stamp-duty-wrapper .purchase-date .purchase-date-inputs-wrapper .month-wrapper,
.stamp-duty-calculator-container .stamp-duty-wrapper .purchase-date .purchase-date-inputs-wrapper .year-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stamp-duty-calculator-container .stamp-duty-wrapper .purchase-date .purchase-date-inputs-wrapper .day-wrapper input,
.stamp-duty-calculator-container .stamp-duty-wrapper .purchase-date .purchase-date-inputs-wrapper .month-wrapper input {
    width: 56px;
    min-width: 56px;
    max-width: 100%;
    height: 40px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(212, 212, 212);
    padding: 4px 8px;
    text-align: center;
    font-size: 18px;
}

.stamp-duty-calculator-container .stamp-duty-wrapper .purchase-date .purchase-date-inputs-wrapper .year-wrapper input {
    width: 80px;
    min-width: 80px;
    max-width: 100%;
    height: 40px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(212, 212, 212);
    padding: 4px 8px;
    text-align: center;
    font-size: 18px;
}

/* submit btn  */

.stamp-duty-calculator-container .stamp-duty-wrapper .submit-btn {}

.stamp-duty-calculator-container .stamp-duty-wrapper .submit-btn #calc-stamp-btn {
	width: fit-content;
	 display: flex;
    justify-content: center;
    align-items: center;
    background-color: #004155;
    padding: 12px 16px;
    color: #fff;
    border: 1px solid transparent;
    text-decoration: none;
	border-radius: 0;
    transition: .2s ease-in-out;
}

.stamp-duty-calculator-container .stamp-duty-wrapper .submit-btn #calc-stamp-btn:hover {
	background: transparent;
	border: 1px solid #004155;
	color: black;
}

.stamp-duty-calculator-container .stamp-duty-wrapper .submit-btn .error-message {
    margin-top: 8px;
    display: none;
    position: relative;
}


.stamp-duty-calculator-container .stamp-duty-wrapper .submit-btn .error-message.active {
    display: block;
}

.stamp-duty-calculator-container .stamp-duty-wrapper .submit-btn .error-message span {
    color: red;
    font-size: 12px;
}

/* calc results  */

.stamp-duty-calculator-container .stamp-duty-wrapper .calc-results {
    display: none;
}

.stamp-duty-calculator-container .stamp-duty-wrapper .calc-results.active {
    display: block;
}


.stamp-duty-calculator-container .stamp-duty-wrapper .calc-results .results-wrapper {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(212, 212, 212);
}

.stamp-duty-calculator-container .stamp-duty-wrapper .calc-results .results-wrapper h3 {
    margin: 0;
    font-size: 32px;
    font-weight: bold;
}

.stamp-duty-calculator-container .stamp-duty-wrapper .calc-results .results-wrapper h3 span {
  
}

.stamp-duty-calculator-container .stamp-duty-wrapper .calc-results .results-wrapper .stamp-result {
    font-size: 48px;
    font-weight: bold;
}

.stamp-duty-calculator-container .stamp-duty-wrapper .calc-results .results-wrapper .stamp-based-on,
.stamp-duty-calculator-container .stamp-duty-wrapper .calc-results .results-wrapper .stamp-tax-rate {
    font-size: 24px;
}


/* how calculated  */

.stamp-duty-calculator-container .how-calculated-accordion {
    width: 100%;
    display: flex;
    justify-content: start;
    max-width: 1400px;
    margin-top: 48px;
}

@media (max-width: 1024px) {
    .stamp-duty-calculator-container .how-calculated-accordion {
        max-width: 900px;
    }
}

.stamp-duty-calculator-container .how-calculated-accordion .how-calculated-wrapper {
    width: 100%;
}

.stamp-duty-calculator-container .how-calculated-accordion .how-calculated-wrapper .calc-wrapper-btn {
	all: unset;
    background-color: unset;
    border: unset;
    width: 100%;
    cursor: pointer;
    max-width: 900px;
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.stamp-duty-calculator-container .how-calculated-accordion .how-calculated-wrapper .calc-wrapper-btn:hover .how-calculated-head span {
    text-decoration: none;
}

.stamp-duty-calculator-container .how-calculated-accordion .how-calculated-wrapper .calc-wrapper-btn:active {
    background-color: #e5e7eb;
    border-color: #bfc6d1;
}

.stamp-duty-calculator-container .how-calculated-accordion .how-calculated-wrapper .calc-wrapper-btn:focus {
    outline: none;
}

.stamp-duty-calculator-container .how-calculated-accordion .how-calculated-wrapper .calc-wrapper-btn:focus-visible {
    outline: 3px solid rgba(17, 24, 39, 0.22);
    outline-offset: 4px;
}

.stamp-duty-calculator-container .how-calculated-accordion .how-calculated-wrapper .calc-wrapper-btn:focus-within {
    box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.12);
}


.stamp-duty-calculator-container .how-calculated-accordion .how-calculated-wrapper .calc-wrapper-btn .how-calculated-head {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 16px 0;
}

.stamp-duty-calculator-container .how-calculated-accordion .how-calculated-wrapper .calc-wrapper-btn .how-calculated-head svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    max-width: 100%;
    fill: #000;
}

.stamp-duty-calculator-container .how-calculated-accordion .how-calculated-wrapper .calc-wrapper-btn .how-calculated-head span {
    font-size: 16px;
    text-decoration: underline;
    color: #000;
}

/* body  */

.stamp-duty-calculator-container .how-calculated-accordion .how-calculated-wrapper .calc-wrapper-btn .how-calculated-body {
    background-color: rgb(243, 241, 243);
    padding: 32px;
    width: 100%;
    max-width: 900px;
    text-align: start;
    display: none;
}

.stamp-duty-calculator-container .how-calculated-accordion .how-calculated-wrapper .calc-wrapper-btn .how-calculated-body.active {
    display: block !important;
}

@media (max-width: 576px) {
    .stamp-duty-calculator-container .how-calculated-accordion .how-calculated-wrapper .calc-wrapper-btn .how-calculated-body {
        padding: 16px !important;
    }
}

.stamp-duty-calculator-container .how-calculated-accordion .how-calculated-wrapper .calc-wrapper-btn .how-calculated-body p {
    margin-top: 0;
    font-size: 16px;
}

.stamp-duty-calculator-container .how-calculated-accordion .how-calculated-wrapper .calc-wrapper-btn .how-calculated-body ul {
    font-size: 16px;
}

.stamp-duty-calculator-container .how-calculated-accordion .how-calculated-wrapper .calc-wrapper-btn .how-calculated-body ul li {
    margin-bottom: 16px;
}


.how-calculated-body .first-time-buyer-is {
    margin-top: 32px;
}

.how-calculated-body .stamp-duty-rates {
    margin-top: 32px;
}

/* reset bootstrap table css  */
table td, table th {
	border-top: unset!important;
	border-left: unset!important;
	border-right: unset!important;
}

/* tables */
.how-calculated-accordion .first-time-table,
.how-calculated-accordion .stamp-rate-table {
    margin-top: 24px;
    margin-bottom: 24px;
    width: 100%;
    overflow-x: auto;
}

.how-calculated-accordion .first-time-table table,
.how-calculated-accordion .stamp-rate-table table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
}

.how-calculated-accordion .first-time-table th,
.how-calculated-accordion .first-time-table td,
.how-calculated-accordion .stamp-rate-table th,
.how-calculated-accordion .stamp-rate-table td {
    text-align: left;
    padding: 16px 18px;
    font-size: 16px;
    line-height: 1.35;
}

.how-calculated-accordion .first-time-table thead th,
.how-calculated-accordion .stamp-rate-table thead th {
    font-weight: 700;
    color: #000;
    border-bottom: 1px solid #c3c3c3;
}

.how-calculated-accordion .first-time-table tbody td,
.how-calculated-accordion .stamp-rate-table tbody td {
    border-bottom: 1px solid #c3c3c3;
    color: #000;
}

.how-calculated-accordion .first-time-table tbody tr td,
.how-calculated-accordion .stamp-rate-table tbody tr:last-child td {
    border-bottom: none;
}

/* Column sizing similar to screenshot */
.how-calculated-accordion .first-time-table th:last-child,
.how-calculated-accordion .first-time-table td:last-child,
.how-calculated-accordion .stamp-rate-table th:last-child,
.how-calculated-accordion .stamp-rate-table td:last-child {
    width: 220px;
}


/* page  */

.stamp-hero {
    width: 100%;
    padding: 64px 32px;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #09203D;
}

@media (max-width: 767px) {
    .stamp-hero {
        padding: 32px 16px !important;
    }

    .stamp-hero .stamp-wrapper .stamp-content h1 {
        font-size: 48px !important;
    }

    .stamp-hero .stamp-wrapper .stamp-content p {
        font-size: 18px !important;
    }

    .stamp-hero .stamp-wrapper .stamp-content .stamp-ctas {
        flex-direction: column;
    }

    .stamp-hero .stamp-wrapper .stamp-content .stamp-ctas .primary-link,
    .stamp-hero .stamp-wrapper .stamp-ctas .secondary-link {
        width: 100% !important;
    }
}

.page-separator{
	width: 100%;
	height: 4px;
	background: #09203d;
	display: block;
}

.stamp-hero .stamp-wrapper {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.stamp-hero .stamp-wrapper .stamp-content {
    text-align: center;
    color: #fff;
}

.stamp-hero .stamp-wrapper .stamp-content h1 {
    font-size: 64px;
    font-weight: bold;
	color: #fff;
    margin-bottom: 40px;
}

.stamp-hero .stamp-wrapper .stamp-content p {
    font-size: 20px;
    margin-bottom: 32px;
}

.stamp-hero .stamp-wrapper .stamp-content .stamp-ctas {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stamp-hero .stamp-wrapper .stamp-content .stamp-ctas .primary-link {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #004155;
    padding: 12px 16px;
    color: #fff;
	border: 1px solid transparent;
    text-decoration: none;
	transition: .2s ease-in-out;
}

.stamp-hero .stamp-wrapper .stamp-content .stamp-ctas .primary-link:hover {
	background: transparent;
	border: 1px solid #004155;
}

.stamp-hero .stamp-wrapper .stamp-ctas .secondary-link {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #bf9903;
    padding: 12px 16px;
    color: #fff;
	border: 1px solid transparent;
    text-decoration: none;
	transition: .2s ease-in-out;
}

.stamp-hero .stamp-wrapper .stamp-ctas .secondary-link:hover {
	background: transparent;
	border: 1px solid #bf9903;
}


/* end of hero  */


/* what is stamp duty  */

.what-is-stamp-duty-container {
    width: 100%;
    padding: 0px;
    display: flex;
    justify-content: center;
}

@media (max-width: 1024px) {
    .what-is-stamp-duty-container .what-is-stamp-wrapper {
        flex-direction: column;
    }

    .what-is-stamp-duty-container .what-is-stamp-wrapper .what-is-stamp-content,
    .what-is-stamp-duty-container .what-is-stamp-wrapper .what-is-stamp-img {
        width: 100% !important;
    }

    .what-is-stamp-duty-container .what-is-stamp-wrapper .what-is-stamp-img {
        display: flex;
        justify-content: center;
        min-height: 400px!important;
        max-height: 400px!important;
    }

    .what-is-stamp-duty-container .what-is-stamp-wrapper .what-is-stamp-img img {
        max-width: 100% !important;
    }
    .what-is-stamp-duty-container .what-is-stamp-wrapper .what-is-stamp-content .inner-wrapper {
        max-width: 100%!important;
        padding: 16px 16px 0 16px!important;
    }
}

@media (max-width: 767px) {
    .what-is-stamp-duty-container {
        padding: 0px !important;
    }
}

.what-is-stamp-duty-container .what-is-stamp-wrapper {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
}

.what-is-stamp-duty-container .what-is-stamp-wrapper .what-is-stamp-content,
.what-is-stamp-duty-container .what-is-stamp-wrapper .what-is-stamp-img {
    width: 50%;
}

.what-is-stamp-duty-container .what-is-stamp-wrapper .what-is-stamp-content {
    display: flex;
    justify-content: end;
}

.what-is-stamp-duty-container .what-is-stamp-wrapper .what-is-stamp-img {
    min-height: 700px;
    position: relative;
}

.what-is-stamp-duty-container .what-is-stamp-wrapper .what-is-stamp-content .inner-wrapper {
    max-width: 600px;
    width: 100%;
    padding-left: 32px;
}

.what-is-stamp-duty-container .what-is-stamp-wrapper .what-is-stamp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    max-width: 100%;
}

.what-is-stamp-duty-container .what-is-stamp-wrapper .what-is-stamp-content {
    display: flex;
    
}

.what-is-stamp-duty-container .what-is-stamp-wrapper .what-is-stamp-content h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 24px;
}

.what-is-stamp-duty-container .what-is-stamp-wrapper .what-is-stamp-content p {
    margin-top: 0;
}

.what-is-stamp-duty-container .what-is-stamp-wrapper .what-is-stamp-content a {
    width: fit-content;
    display: flex;
    margin-top: 24px;
    justify-content: center;
    align-items: center;
    background-color: #004155;
    padding: 12px 16px;
    color: #fff;
    text-decoration: none;
	border: 1px solid transparent;
	transition: .2s ease-in-out;
}

.what-is-stamp-duty-container .what-is-stamp-wrapper .what-is-stamp-content a:hover {
	background: transparent;
	color: black;
	border: 1px solid #004155;
}

/* end of what is stamp duty  */

/* how much is stamp duty  */

.how-much-is-stamp-duty-container {
    width: 100%;
    padding: 64px 32px;
    display: flex;
    justify-content: center;
}

.how-much-is-stamp-duty-container .how-much-wrapper {
    width: 100%;
    max-width: 1140px;
    display: flex;
    flex-direction: column;
}

.how-much-is-stamp-duty-container .how-much-wrapper .how-much-intro {
    max-width: 900px;
    width: 100%;
    text-align: center;
    margin: 0 auto 24px auto;
}

.how-much-is-stamp-duty-container .how-much-wrapper .how-much-intro h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: bold;
}

.how-much-is-stamp-duty-container .how-much-wrapper .how-much-intro p {
    margin-top: 0;
}

.how-much-is-stamp-duty-container .how-much-wrapper .how-much-jumbo-wrapper {
    padding: 50px;
    background-color: hsl(213, 74%, 92%);
    border-radius: 12px;
    width: 100%;
}

@media (max-width: 767px) {
	.how-much-is-stamp-duty-container .how-much-wrapper .how-much-jumbo-wrapper {
		padding: 50px 16px!important;
	}
}

.how-much-is-stamp-duty-container .how-much-wrapper .how-much-jumbo-wrapper .how-much-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 767px) {
    .how-much-is-stamp-duty-container {
        padding: 32px 16px !important;
    }

    .how-much-is-stamp-duty-container .how-much-wrapper .how-much-jumbo-wrapper .how-much-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.how-much-is-stamp-duty-container .how-much-wrapper .how-much-jumbo-wrapper .how-much-grid .how-much-item {
    display: flex;
    flex-direction: column;
}

.how-much-is-stamp-duty-container .how-much-wrapper .how-much-jumbo-wrapper .how-much-grid .how-much-item .item-title {
    margin-bottom: 20px;
    width: 100%;
    text-align: start;
    display: flex;
    align-items: center;
    gap: 12px;
}

.how-much-is-stamp-duty-container .how-much-wrapper .how-much-jumbo-wrapper .how-much-grid .how-much-item .item-title img {
    width: 40px;
    min-width: 40px;
    height: auto;
    max-width: 100%;
}

.how-much-is-stamp-duty-container .how-much-wrapper .how-much-jumbo-wrapper .how-much-grid .how-much-item .item-title svg {
    width: 64px;
    min-width: 64px;
    height: auto;
    max-width: 100%;
}

.how-much-is-stamp-duty-container .how-much-wrapper .how-much-jumbo-wrapper .how-much-grid .how-much-item .item-title h4 {
    margin-top: 0;
    font-size: 20px;
    margin-bottom: 0;
    font-weight: bold;
}

.how-much-is-stamp-duty-container .how-much-wrapper .how-much-jumbo-wrapper .how-much-grid .how-much-item .item-content {
    text-align: start;
    width: 100%;
}

.how-much-is-stamp-duty-container .how-much-wrapper .how-much-jumbo-wrapper .how-much-grid .how-much-item .item-content p {
    margin-top: 0;
}

/* end of how much is stamp duty  */

/* faqs  */

.stamp-faqs-container {
    padding: 64px 32px;
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
    .stamp-faqs-container {
        padding: 32px 16px !important;
    }
}

.stamp-faqs-container .stamp-faqs-wrapper {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.stamp-faqs-container .stamp-faqs-wrapper .faq-intro {
    margin-bottom: 24px;
    text-align: center;
}

.stamp-faqs-container .stamp-faqs-wrapper .faq-intro h2 {
    font-size: 32px;
    font-weight: bold;

}

.stamp-faqs-container .stamp-faqs-wrapper .faqs {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.stamp-faqs-container .stamp-faqs-wrapper .faqs .faq {
    width: 100%;
}

.stamp-faqs-container .stamp-faqs-wrapper .faqs .faq .faq-title {
    background-color: transparent;
    position: relative;
    border-top: 1px solid #e9ecf1;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    outline: none;
    padding: 34px 0;
    text-align: left;
	gap: 20px;
    transition: all .3s cubic-bezier(.47, 0, .745, .715) 0s;
    width: 100%;
}

.stamp-faqs-container .stamp-faqs-wrapper .faqs .faq .faq-title h4 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    white-space: normal;
}

.stamp-faqs-container .stamp-faqs-wrapper .faqs .faq .faq-title::after {
    align-items: center;
    background-color: #f4f6fb;
    background-image: url('https://www.axept.io/hubfs/4424028/axeptio-hs-theme/plus.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 24px;
    border-radius: 50%;
    content: "";
    display: flex;
    height: 36px;
    justify-content: center;
    position: relative;
    right: 0;
    transition: .2s;
    transition: all .15s ease 0s;
    width: 36px;
	min-width: 36px;
}

.stamp-faqs-container .stamp-faqs-wrapper .faqs .faq .faq-title.active::after {
    background-image: url('https://www.axept.io/hubfs/4424028/axeptio-hs-theme/minus.svg');
    transform: rotate(180deg);
}

.stamp-faqs-container .stamp-faqs-wrapper .faqs .faq .faq-answer {
    width: 100%;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .25s ease;
}

.stamp-faqs-container .faq .faq-answer .faq-answer-inner {
    overflow: hidden;
}

/* Open state */
.stamp-faqs-container .faq.is-open .faq-answer {
    grid-template-rows: 1fr !important;
}

/* Optional: spacing + a slightly nicer reveal */
.stamp-faqs-container .faq .faq-answer .faq-answer-inner p {
    margin: 0;
    padding: 0 0 24px;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .2s ease, transform .2s ease;
}

.stamp-faqs-container .faq.is-open .faq-answer .faq-answer-inner p {
    opacity: 1;
    transform: translateY(0);
}


/* end of faqs  */