@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
html {
  scroll-behavior: smooth;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

a {
    text-decoration: none;
}

a,
button {
    transition: all 0.5s;
}

button,
input,
textarea,
select {
    outline: none;
}

li {
    list-style: none;
}

.container-cs {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 150px;
}

:root {
    --main-color: #3d7085;
    --blue1: #094aad;
    --blue2: #0b5394;
    --blue3: #2987c0;
    --blue4: #4bb7ff;
    --blue5: #5a95bc;
    --blue6: #a7cee5;
    --blue7: #dfebf3;
    --blue-grey: #8490a8;
    --grey1: #737373;
    --grey2: #8a8a8a;
    --grey3: #b6bcc8;
    --grey4: #d4d3d2;
    --grey5: #d6d4d4;
    --bright-red: #ff3131;
    --bright-red: #ffeaea;
}

input,
textarea,
select {
    border: 1px solid var(--grey3);
    padding: 10px;
    font-size: 14px;
    display: block;
    border-radius: 4px;
}

select {
    background-image: url(/images/down-arrow.svg);
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: calc(100% - 12px) center;
    appearance: none;
}

.desc {
    color: #000;
    font-size: 15px;
    font-weight: 500;
}

.desc a {
    color: var(--blue4);
}

.desc a:hover {
    color: var(--blue1);
}

.p-80 {
    padding: 80px 0;
}

p {
    line-height: 1.5rem;
}

.mt-20 {
    margin-top: 20px;
}

.w-100 {
    width: 100%;
}

.mt-10 {
    margin-top: 10px;
}

img.cs-show-gif {
    height: auto !important;
}
/*hero-sec*/
.main-logo {
    text-align: center;
    padding-bottom: 120px;
}

.main-logo img {
    width: 110px;
}

.hero-sec {
    background-image: url(./images/banner-image.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px 0 150px;
}

.hero-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-row>div {
    width: 50%;
}

.hero-content h1 {
    font-size: 51px;
    color: #fff;
    line-height: 3.6rem;
    text-transform: uppercase;
    font-weight: 500;
    max-width: 500px;
    margin-bottom: 20px;
    position: relative;
}

.hero-content h1:before {
    content: "";
    position: absolute;
    background: var(--blue5);
    width: 32px;
    height: 3px;
    top: -10px;
}

.hero-content p {
    color: #fff;
    font-size: 22px;
    max-width: 400px;
    line-height: 1.7rem;
}

.serial-box {
    background: #fff;
    border-radius: 5px;
    padding: 30px;
}

.serial-box label {
    color: #000;
    font-size: 16px;
    display: block;
    margin-bottom: 15px;
}

.serial-box input {
    width: 100%;
    margin-bottom: 20px;
    height: 50px;
}

/*.serial-box button {
    background: var(--grey5);
    width: 100%;
    padding: 17px;
    border: none;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: var(--grey3);
    cursor: pointer;
}*/

.serial-box form {
    padding-bottom: 20px;
}

.serial-box p {
    color: #000;
    font-size: 14px;
}

.serial-box p a {
    color: var(--blue4);
}

.serial-box p a:hover {
    color: var(--blue1);
}


/*contact-sec*/

.contact-row {
    display: flex;
}

.contact-col-left {
    padding: 0 80px 0 0;
    width: 60%;
}

.contact-form h2 {
    color: var(--blue2);
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-form p {
    color: var(--grey1);
    font-size: 14px;
    margin-bottom: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-grid input,
.full-width input {
    padding: 12px;
    width: 100%;
}

.full-width {
    margin-bottom: 25px;
}

.checkbox-container {
    text-align: left;
    font-size: 12px;
    color: #000;
    margin-bottom: 20px;
}

.submit-btn {
    background-color: var(--blue4);
    color: #fff;
    padding: 16px;
    width: 100%;
    border: none;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.submit-btn:hover {
    background-color: rgba(75, 183, 255, .8);
}

.thankyou-sec a.submit-btn {
    background: transparent;
    border: 1px solid #fff;
    width: fit-content;
    margin: 50px auto 0;
    min-width: 200px;
    font-weight: 600;
    display: none;
}

.thankyou-sec a.submit-btn:hover {
    background: #fff;
    color: var(--blue1);
}

.thankyou-sec img {
    width: 110px;
    margin: auto;
}

.thankyou-sec a:first-child {
    width: 100%;
    text-align: center;
    display: block;
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    margin: auto;
}


.checkbox-container label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

#cs-offer-area {
    height: auto !important;
    padding: 80px 0;
    width: 100%;
}

.contact-col-right {
    background: var(--blue7);
    width: 40%;
    padding: 40px;
    border-radius: 5px;
}

.owner-info {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 40px;
}

p.owner-name {
    font-size: 18px;
    color: var(--grey1);
}

.owner-info li,
.owner-info li a {
    color: var(--grey1);
    font-size: 16px;
}

.owner-info li {
    padding-top: 8px;
}

.owner-info li a:hover {
    color: var(--blue1);
}

.country-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.country-box {
    text-align: center;
    background: var(--blue6);
    padding: 18px 15px;
    color: var(--blue3);
    font-size: 14px;
    font-weight: 700;
}

/*offer-section*/
.offer-box-row {
    display: flex;
    gap: 50px;
}

.offer-ready-sec {
    position: relative;
    padding: 80px 0;
}

.offer-heading {
    text-align: center;
}

.offer-ready-sec:before {
    content: "";
    position: absolute;
    background: linear-gradient(to bottom, #0086e3, #8bd3f4);
    height: 390px;
    width: 100%;
    z-index: -1;
    top: 0;
}

.offer-heading h2 {
    color: #fff;
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 50px;
}
.offer-heading img {
    width: 110px;
    margin: auto;
}
.offer-heading a:first-child {
    width: 100%;
    text-align: center;
    display: block;
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    margin: auto;
}

.offer-heading p {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.offer-box-cs {
    background: #fff;
    border-radius: 15px;
    padding: 30px 70px;
    max-width: 1100px;
    margin: 70px auto 0;
    box-shadow: 0px 60px 80px -10px #2121210d;
}

.offer-col-left {
    width: 45%;
    text-align: center;
}

.offer-col-right {
    width: 55%;
    padding: 30px;
    position: relative;
}

.offer-col-left h6 {
    font-size: 18px;
    text-transform: uppercase;
    color: var(--blue2);
    margin-bottom: 10px;
}

.offer-col-left h3 {
    color: var(--blue2);
    font-size: 65px;
    font-weight: 600;
}

.offer-button-cs {
    margin: 25px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.offer-button-cs a {
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    padding: 16px;
    border: 1px solid var(--grey3);
    border-radius: 5px;
    color: #fff;
}

.accept-btn {
    background: var(--blue4);
}

.accept-btn:hover {
    background: rgba(75, 183, 255, .8);
}

.learn-more-btn {
    background: var(--grey1);
}

.learn-more-btn:hover {
    background: #000;
}

.expire-offer {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.expire-offer p {
    font-size: 16px;
    color: var(--grey1);
}

.expire-offer img {
    width: 20px;
}

.offer-col-right h5 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 4px;
    color: var(--blue2);
}

.offer-col-right h6 {
    font-size: 15px;
    color: var(--blue3);
}

.offer-col-right .owner-info {
    padding: 0;
    margin: 30px 0 0 0;
    border-radius: 0;
}

.offer-col-right:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 70%;
    left: -10px;
    background: var(--grey4);
    top: 10px;
}

.accept-offer-row {
    display: flex;
    gap: 80px;
}

.accept-col-left {
    width: 60%;
}

.accept-col-right {
    width: 40%;
}

.small-heading {
    font-size: 18px;
    font-weight: 600;
    color: var(--blue1);
    margin-bottom: 6px;
}

.accept-col-left ul li {
    color: #000;
    font-size: 16px;
    list-style: disc;
    padding-bottom: 8px;
    font-weight: 500;
}

.accept-offer-box>ul {
    padding: 35px 0;
    padding-left: 18px;
}

.accept-col-left ul ul {
    padding-left: 25px;
    padding-top: 11px;
}

.accept-col-left ul ul li {
    list-style: circle;
}

.upload-box {
    text-align: center;
    cursor: pointer;
    margin-bottom: 20px;
    border-radius: 5px;
    position: relative;
}

.upload-box input[type="file"] {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-box label {
    font-weight: 600;
    color: var(--blue-grey);
    display: block;
    margin-bottom: 5px;
}

.checkbox-agree {
    margin-bottom: 30px;
    color: var(--grey1);
    font-size: 16px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.checkbox-agree input {
    position: relative;
    top: 3px;
}

.signature-box {
    border: 1px solid var(--grey3);
    padding: 20px;
    height: 130px;
    color: var(--blue-grey);
    text-align: center;
    background-image: url(https://upload.wikimedia.org/wikipedia/commons/thumb/5/55/Signature_placeholder.svg/1200px-Signature_placeholder.svg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
    margin-bottom: 25px;
    font-weight: 600;
    margin-top: 20px;
    border-radius: 5px;
}

.signature-box canvas {
    width: 100%;
    height: 80px;
}

.royalty-width {
    max-width: 400px;
    padding-top: 40px;
}

.upload-box span {
    color: var(--grey1);
    font-size: 14px;
}

.accept-offer-sec {
    z-index: 2;
    position: relative;
}

.next-step-sec {
    background: var(--blue7);
    padding: 40px 40px 50px;
    border-radius: 10px;
}

.next-step-sec h3 {
    font-size: 32px;
    color: var(--blue2);
    font-weight: 500;
}

.step-col {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    padding-top: 40px;
}

.step-box {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-box h4 {
    color: #000;
    margin-bottom: 6px;
    font-size: 18px;
    margin-top: 0;
    font-weight: 500;
}

.step-box img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.step-box p {
    color: #000;
    font-size: 15px;
    line-height: 1.4rem;
}

.thankyou-sec {
    background: linear-gradient(to bottom, #0086e3, #8bd3f4);
    padding: 80px 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.thankyou-sec h2 {
    text-align: center;
    font-size: 60px;
    color: #fff;
    max-width: 800px;
    margin: auto;
}

.thankyou-sec p {
    color: #fff;
    text-align: center;
    font-weight: 600;
    margin-top: 30px;
}

.accept-offer-box p a {
    color: #000;
    white-space: nowrap;
}

.accept-offer-box p a:hover {
    color: var(--blue1);
}

.upload-box img {
    width: 30px;
    margin-bottom: 8px;
}


/*offer-found-css*/
.offer-found-sec .option {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 25px;
}

.offer-found-sec .option input[type="radio"] {
    margin-top: 5px;
}

.offer-found-sec .option-label {
    display: flex;
    flex-direction: column;
    color: var(--grey1);
    font-size: 16px;
    position: relative;
}

.offer-found-sec form {
    margin-top: 20px;
}

.offer-found-sec .option-label span {
    font-size: 14px;
}

.offer-found-sec .small-heading {
    text-transform: inherit;
}

.offer-found-sec .option-label:before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border: 1px solid var(--grey1);
    left: -35px;
    top: 4px;
    border-radius: 50px;
}

.offer-found-sec .option input {
    opacity: 0;
}

.offer-found-sec input:checked+.option-label:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--grey1);
    left: -31px;
    border-radius: 50px;
    top: 8px;
}

.option-icons {
    display: flex;
    align-items: center;
}

.option-icons img {
    width: 25px;
    position: relative;
    left: -5px;
}

.more-cs {
    margin-top: 40px;
}

.submit-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 16px;
}

.submit-wrapper .submit-btn {
    width: 25%;
}

.submit-wrapper input {
    width: 75%;
}

.step-box p a {
    color: var(--blue2);
    white-space: nowrap;
    cursor: pointer;
}

.step-box p a:hover {
    color: var(--blue1);
}
.custom-modal .upload-box {
    margin-top: 20px;
    border: none;
    padding: 0;
}
/*sn-not-found*/

.additional-destails-content {
    padding-bottom: 50px;
}

.additional-destails-content p:first-child {
    padding-bottom: 40px;
}

.royality-statement-sec .upload-box {
    margin-top: 15px;
}

.options {
    display: grid;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: stretch;
}

.options .option {
    position: relative;
}

.options input[type="radio"] {
    display: none;
}

.options label {
    padding: 12px 20px;
    border: 1px solid var(--grey3);
    border-radius: 4px;
    cursor: pointer;
    min-width: 120px;
    text-align: center;
    background-color: #fff;
    transition: background-color 0.2s, color 0.2s;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.options input[type="radio"]:checked+label {
    background-color: var(--blue4);
    color: #fff;
    border-color: var(--blue4);
}

.follow-again-btn {
    display: flex;
    gap: 30px;
}

.follow-again-btn button:last-child {
    background: var(--grey1);
}

.follow-again-btn button:last-child:hover {
    background: #000;
}

.select-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.amount-sec input,
.date-sec input {
    width: 200px;
}

/*reviews-section*/
.review-sec {
    background: var(--blue7);
    padding-top: 80px;
    position: relative;
    z-index: 1;
}

/*.review-sec:before {
    height: 30%;
    top: -30%;
    content: '';
    display: block;
    background-color: #ffffff !important;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 100%;
    -webkit-transform: skewy(-5deg);
    transform: skewy(-5deg);
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
    right: 0;
    left: 0;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}*/

.main-heading {
    font-size: 31px;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
}

.review-heading .main-heading {
    text-align: center;
}

.review-heading img {
    width: 125px;
    padding-top: 34px;
}

.review-heading h3 {
    font-size: 30px;
    font-weight: 500;
    padding-left: 45px;
    margin-top: 5px;
    position: relative;
}

.review-heading h3:after {
    position: absolute;
    content: "";
    top: 3px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #3d7085;
    bottom: 0;
    margin: auto;
}

.review-heading .desc {
    margin: 15px 0 10px;
    max-width: 570px;
}

.review-heading a {
    border-bottom: 1px solid rgba(0, 0, 0, .3);
    font-weight: 500;
    color: #09f;
}

.review-heading a:hover {
    color: var(--blue4);
}

.review-slider-wrapper {
    margin-top: 80px;
}

.slider-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
}

.slider-box img {
    width: 100px;
}

.slider-box>p {
    margin: 10px 0 20px;
    color: rgba(40, 26, 23, .6);
    min-height: 120px;

}

.slider-box a {
    text-decoration: underline;
    color: #09f;
    font-size: 16px;
}

.slider-box a:hover {
    color: var(--blue4);
}

.meta_tags {
    padding-top: 30px;
}

.meta_tags p,
.meta_tags span {
    color: var(--grey1);
}

.meta_tags p b {
    color: var(--blue2);
}


.review-slider-wrapper .slick-slide {
    margin: 0 15px;
}

.review-slider-wrapper .slick-list {
    margin: 0 -15px;
}

.review-slider-wrapper .slick-arrow:before {
    display: none;
}

.review-slider-wrapper .slick-arrow {
    background: #fff !important;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background-size: 10px !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    opacity: 1 !important;
}

.review-slider-wrapper .slick-prev {
    left: -60px;
    background-image: url(./images/left-arrow.svg) !important;
}

.review-slider-wrapper .slick-next {
    right: -60px;
    background-image: url(./images/right-arrow.svg) !important;
}


/*start-faq-sec*/
.faq-item {
    border-bottom: 1px solid #c3c3c3;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 18px;
    padding: 25px 20px 25px 0;
    color: rgba(40, 26, 23, .8);
    gap: 10px;
}

.faq-answer {
    display: none;
    color: #000000;
    font-size: 16px;
    line-height: 1.5;
    padding-bottom: 30px;
    border-top: 1px solid #c3c3c3;
    padding-top: 20px;
    /*    transition: all 0.4s ease;*/
    overflow: hidden;
}

/*.faq-item.active .faq-answer {
  display: block;
}*/

.faq-icon {
    font-weight: bold;
    font-size: 30px;
    transition: transform 0.3s ease;
    color: #281a17;
    line-height: 23px;
    display: flex;
    align-items: center;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-row {
    display: flex;
    gap: 30px;
}

.faq-left-col {
    width: 40%;
}

.faq-right-col {
    width: 60%;
}

.faq-sec {
    padding-top: 300px;
    position: relative;
    z-index: 0;
    padding-bottom: 90px;
}

.faq-sec:before {
    background: #dfebf3;
    height: 40%;
    top: -35%;
    content: '';
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 100%;
    -webkit-transform: skewy(-5deg);
    transform: skewy(-5deg);
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
    right: 0;
    left: 0;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.faq-left-col p {
    margin-top: 24px;
    font-size: 20px;
    max-width: 80%;
    line-height: 1.5em;
    color: rgba(40, 26, 23, .6);
}

.faq-item:first-child .faq-question {
    padding-top: 0;
}

.faq-left-col .main-heading {
    max-width: 500px;
}

.footer-copyright {
    background: var(--main-color);
    text-align: center;
    padding: 20px 0;
    color: #fff;
}

.faq-answer img {
    width: 100%;
    max-width: 70%;
}

.get-offer-btn {
    text-align: center;
    padding-top: 70px;
}

.get-offer-btn a {
    display: inline-block;
    width: 240px;
}


#cs-offer-not-accept-learn-more {
    padding: 0 0 80px;
}

.checkbox-container input[type="checkbox"] {
    position: relative;
    top: 3px;
}

.checkbox-container input[type="checkbox"]#showProduction {
    top: 1px;
}

form#cs-learn-more-form {
    padding-bottom: 30px;
}
#cs-accept-offer-sec {
    padding-top: 80px;
}
.additional-counties {
    margin-bottom: 20px;
}
.cs-serial-not-found {
    text-align: center;
    width: 100%;
    display: block;
    padding: 10px;
    border: 1px solid red;
    border-radius: 5px;
    margin-bottom: 15px;
    color: red !important;
    background: #fff;
}
.cs-serial-found {
    text-align: center;
    width: 100%;
    display: block;
    padding: 10px;
    border: 1px solid green;
    border-radius: 5px;
    margin-bottom: 15px;
    color: green !important;
    background: #fff;
}
.back-to-home img {
    width: 15px;
}

.back-to-home a {
    color: #000;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.back-to-home {
    padding-bottom: 20px;
}

.back-to-home a:hover {
    text-decoration: underline;
}

.county-block select {
    width: 180px;
}

.county-block {
    display: flex;
    gap: 20px;
}


.tooltip-cs {
  position: relative;
  display: inline-block;
}

.tooltip-cs .tooltiptext-cs {
  visibility: hidden;
  width: 450px;
  background-color: #e0ebf3;
  color: #000000;
  text-align: center;
  border-radius: 6px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -80px;
  border: 1px solid var(--blue4);
}

.tooltip-cs:hover .tooltiptext-cs {
  visibility: visible;
}

#county-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.submit-btn-back {
    background: transparent;
    color: var(--blue4);
    border: 1px solid var(--blue4);
}

.submit-btn-back:hover {
    color: #fff;
}
.submit-btn-back {
    padding-top: 13px;
    padding-bottom: 13px;
}

.custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Show modal */
.custom-modal.active {
  opacity: 1;
  visibility: visible;
}

/* Modal box */
.custom-modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    width: 100%;
}

/* Animate modal box when visible */
.custom-modal.active .custom-modal-content {
  transform: scale(1);
}

/* Close button */
.close-cs {
    font-size: 35px;
    cursor: pointer;
    position: absolute;
    right: 26px;
    top: 22px;
}

.more-cs .submit-btn-back {
    margin-top: 20px !important;
}

.file-details-container {
    margin-bottom: 15px;
}


.book-call-sec form {
    margin-top: 0;
}

.date_book_row {
    margin-top: 10px;
    display: flex;
    gap: 20px;
}

.date_book_row input {
    width: calc(70% - 10px);
}

.date_book_row .submit-btn {
    width: calc(30% - 10px);
}
.select_reason_sec form {
    margin-top: 0;
}

#reason-cs {
    margin-top: 20px;
}

.remove-confirmation-cs {
    padding: 30px 0;
}

.remove-confirmation-cs p {
    padding-bottom: 20px;
}

.remove-confirmation-cs .checkbox-container {
    margin-top: 20px;
    clear: both;
    display: inline-block;
}

.readonly-field {
    width: calc(50% - 10px);
    border: 1px solid var(--grey3);
    padding: 10px;
    font-size: 14px;
    border-radius: 4px;
}

.readonly_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

body:has(.remove-confirmation-cs[style="display: none;"]) #reason-cs {
    margin-bottom: 20px;
}

.checkbox-container label a {
    color: var(--blue4);
}

/*start-media-queries*/
@media (max-width: 1299px) {
    .container-cs {
        padding: 0 80px;
    }
}

@media (min-width: 1025px) and (max-width: 1250px) {
    .hero-content h1 {
        font-size: 50px;
    }

    .contact-col-left {
        padding: 30px;
    }

    .contact-col-right {
        padding: 30px;
    }
}


@media (min-width: 768px) and (max-width: 1024px) {
    .next-step-sec {
        padding-left: 20px;
        padding-right: 20px;
    }
}


@media (max-width: 1024px) {
    .container-cs {
        padding: 0 20px;
    }

    .faq-sec {
        padding-top: 220px;
    }

    .review-sec {
        padding-top: 70px;
        padding-bottom: 10px;
    }

    .faq-sec {
        padding-bottom: 70px;
    }

    .hero-row,
    .contact-row {
        flex-direction: column;
    }

    .hero-row>div {
        width: 100%;
    }

    .contact-col-left,
    .contact-col-right {
        width: 100%;
        padding: 60px 20px;
    }

    .contact-col-left {
        padding: 0 0 40px 0;
    }

    .hero-sec {
        padding: 0 0 70px;
    }

    .offer-ready-sec {
        padding: 60px 0;
    }

    .offer-box-cs {
        padding: 30px;
        margin-top: 40px;
    }

    .offer-heading h2 {
        font-size: 45px;
    }

    .offer-col-left h3 {
        font-size: 48px;
    }

    .offer-col-left h6 {
        font-size: 16px;
    }

    .offer-box-row {
        gap: 20px;
    }

    .offer-col-right:before {
        left: 5px;
    }

    .accept-offer-row {
        gap: 30px;
    }

    .accept-offer-sec {
        padding-bottom: 60px;
    }

    .thankyou-sec h2 {
        font-size: 48px;
        max-width: 600px;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .hero-content p {
        font-size: 22px;
    }

    .p-80 {
        padding: 60px 0;
    }

    .options {
        grid-template-columns: 1fr 1fr;
    }

    .main-logo {
        padding-bottom: 70px;
        padding-top: 30px;
    }

    .follow-again-btn {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 30px;
        line-height: 2.3rem;
        margin-bottom: 10px;
        text-align: center;
    }

    .hero-content p {
        font-size: 18px;
        text-align: center;
    }

    .hero-content h1:before {
        left: 0;
        right: 0;
        margin: auto;
    }

    .hero-row {
        gap: 30px;
    }

    .serial-box label {
        font-size: 16px;
    }

    .serial-box {
        padding: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }

    .country-row {
        grid-template-columns: 1fr;
    }

    .offer-box-row {
        flex-direction: column;
    }

    .offer-col-left,
    .offer-col-right {
        width: 100%;
    }

    .offer-box-cs {
        padding: 30px 20px;
    }

    .offer-col-right {
        padding: 20px 0 0 0;
    }

    .offer-col-right:before {
        display: none;
    }

    .offer-col-right .owner-info {
        margin-top: 20px;
    }

    .offer-col-left h3 {
        font-size: 40px;
    }

    .offer-col-left h6 {
        font-size: 14px;
    }

    .offer-heading h2 {
        font-size: 30px;
    }

    .accept-offer-row {
        flex-direction: column;
    }

    .accept-col-left,
    .accept-col-right {
        width: 100%;
    }

    .small-heading {
        font-size: 16px;
    }

    .next-step-sec {
        padding: 30px 20px;
    }

    .step-col {
        padding-top: 30px;
        gap: 40px;
    }

    .step-box h4 {
        font-size: 18px;
    }

    .next-step-sec h3 {
        font-size: 22px;
    }

    .thankyou-sec h2 {
        font-size: 35px;
        font-weight: 500;
    }

    input,
    textarea,
    select {
        padding: 12px 10px;
        font-size: 15px;
    }

    .serial-box button {
        padding: 12px;
        font-size: 16px;
    }

    .serial-box p {
        font-size: 15px;
    }

    .submit-btn {
        padding: 14px 10px;
        font-weight: 600;
    }

    .checkbox-agree {
        font-size: 14px;
    }

    .step-box img {
        width: 50px;
    }

    .submit-wrapper {
        gap: 10px;
    }

    .submit-wrapper .submit-btn {
        width: 30%;
    }

    .options label {
        font-size: 14px;
    }

    .main-heading {
        font-size: 25px;
    }

    .review-heading img {
        width: 100px;
        display: block;
        margin: auto;
    }

    .review-heading {
        text-align: center;
    }

    .review-heading h3 {
        font-size: 22px;
        display: inline-block;
    }

    .slider-box {
        text-align: center;
    }

    .slider-box img {
        margin: auto;
    }


    .faq-row {
        flex-direction: column;
        gap: 60px;
    }

    .faq-row>div {
        width: 100%;
    }

    .faq-left-col {
        text-align: center;
    }

    .faq-left-col p {
        max-width: 100%;
        font-size: 20px;
    }

    .faq-question {
        font-size: 15px;
        padding: 15px 0;
        gap: 10px;
    }

    .faq-answer {
        font-size: 14px;
        padding: 12px 0 20px;
    }

    .review-slider-wrapper {
        margin-top: 50px;
    }

    #cs-offer-not-accept-learn-more {
        padding: 0 0 70px;
    }

    .full-width {
        margin-bottom: 15px;
    }

    .review-sec {
        padding-bottom: 0;
    }

    .get-offer-btn {
        padding-top: 50px;
    }

    .serial-box input {
        height: 43px;
    }

    .faq-sec {
        padding-top: 180px;
    }

    .faq-icon {
        font-size: 24px;
    }

    .contact-col-left {
        padding: 0 0 40px 0;
    }

    #cs-offer-area {
        padding: 70px 0;
    }

    .contact-col-right {
        padding: 35px 20px;
    }

    #cs-accept-offer-sec {
        padding-top: 70px;
        padding-bottom: 10px;
    }

    .expire-offer p {
        font-size: 14px;
        line-height: 1rem;
        text-align: left;
    }

    .county-block select {
        width: 130px;
    }

    .tooltip-cs .tooltiptext-cs {
        width: 300px;
        left: 0;
        margin-left: 0;
    }

    #production-form .tooltip-cs .tooltiptext-cs {
        left: 0;
    }

    .tooltip-cs {
        display: block;
    }

}