

:root {
    --primary: #40b7a9;
    --secondary: #10332f;
    --white: #fff;
    --dark: #0a1b16;
    --text: "Poppins",sans-serif
}
*{
    box-sizing: border-box;
}
html {
    overflow-x: hidden;
}
html body {
    font-size: 16px;
    font-family: var(--text);
    line-height: 140%;
    font-weight: 400;
    color: var(--secondary);
    margin: 0;
    padding: 0;
}
h1,h2,h3,h4,h5,h6 {
    line-height: normal;
    font-weight: 600;
    margin: 0;
}
h1{
    font-size: 54px;
    line-height: 130%;
    font-weight: 700;
}
a {
    color: var(--secondary);
    text-decoration: none;
    transition: all .4s
}
a:hover {
    color: var(--dark);
    text-decoration: none
}
p:last-child {
    margin-bottom: 0
}
ul {
    margin: 0;
    padding: 0;
    list-style: none
}
html .container {
    padding-left: 25px;
    padding-right: 25px;
    max-width: 1370px;
    margin: 0 auto;
}
/* b,strong {
    font-weight: 600
} */
.row {
    display: flex;
    margin-left: -25px;
    margin-right: -25px;
    flex-wrap: wrap;
}
.align-items-center {
    align-items: center
}
.justify-content-between {
    justify-content: space-between
}
[class*=col] {
    padding: 0 25px
}
.col-6 {
    width: 50%
}
img {
    width: auto;
    height: auto;
    max-width: 100%
}
.col-md-8 {
    width: 66.66%
}
.col-md-4 {
    width: 33.33%
}
.col-md-7{
    width:58.33333333%
}
.col-md-auto{
    width:auto
}
.col-md-5{
    width:41.66666667%
}
.col-md-6{
    width:50%
}
.btn{
    display: inline-flex;
    padding: 10px 12px 10px 22px;
    gap: 12px;
    background: #10332F;
    border-radius: 56px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    color: #FFFFFF;
    margin-top: 6px;
}
.btn::after{
    content: "";
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background-image: url(../Images/arrow-svg.svg);
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 5px;
    transition: all .4s;
    display: inline-block;
    background-color: var(--primary);
}
.btn:hover{
    background: var(--primary);
    color: var(--secondary);
}

.btn:hover:after{
    background-color: var(--white);
    transform: rotate(45deg);
}
html .btn svg {
    width: 26px;
    height: 26px;
    background: var(--primary);
    border-radius: 50px;
    margin-left: 10px;
    padding: 6px;
    transition: all .4s
}
html .btn:hover svg {
    transform: rotate(45deg)
}
p {
    margin-top: 0
}
p:last-child {
    margin-bottom: 0
}
.title {
    margin-bottom: 10px
}
.title h6 {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 15px
}
.text h3 {
    font-weight: 700;
    font-size: 42px;
    line-height: 140%;
    margin-bottom: 0;
    margin-bottom: 20px;
}
section {
    padding-top: 80px;
    padding-bottom: 80px;
}
.text-center{
    text-align: center;
}

/* main-sec */
section.main-sec h1 {
    position: relative;
    display: inline-block;
    padding-top: 38px;
}
section.main-sec h1:after {
    width: 56px;
    content: '';
    height: 56px;
    position: absolute;
    right: -29px;
    background-image: url(../Images/star-icon.svg);
    bottom: 23%;
    background-size: 100%;
    animation: star-icon 2s infinite ease-in-out;
    background-repeat: no-repeat;
    background-position: center;
}
@keyframes star-icon{
    0%{
        
        scale: 40%;
    }
    50%{
        scale: 100%;
    }
    100%{
        scale: 40%;
    }
}
section.main-sec ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 32px;
}
section.main-sec ul li {
    width: 33.33%;
    padding: 10px 14px 10px 0px;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    position: relative;
    align-items: center;
}
section.main-sec ul li:before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(../Images/li-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    margin-right: 14px;
}
section.main-sec  .find_wiper_blades .disabled select {
    pointer-events: none;
    color: #10332f;
    font-weight: 400;
    font-size: 15px;
}
section.main-sec  .find_wiper_blades select {
    width: 100%;
    padding: 0 14px;
    border-radius: 10px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8" fill="none"><path opacity="0.4" d="M1 1.5L6 6.5L11 1.5" stroke="%230A1B16" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: 96% 20px;
    line-height: 46px;
    border-radius: 8px;
    font-size: 15px;
    border: 1px solid #bac5c3;
    background-color: #fff;
    font-family: 'Poppins';
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 46px;
    border-radius: 8px;
    border: 1px solid #bac5c3;
    background: #fff;
    height: 50px;
    margin-top: 0 !important;
    padding-left: 15px;
    font-size: 15px;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #10332F;
    font-size: 15px;
}
.select2.select2-container {
    width: 100% !important;
    margin-bottom: 0px;
}

.select2-container--default 
.select2-selection--single 
.select2-selection__placeholder {
    padding-left: 6px;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #10332F;
}
.select2-selection__rendered {
    margin-top: 4px !important;
}
body .select2-container--default .select2-results__option {
    padding: 8px 10px;
}
body .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #00baac!important;
}
.select2-container--default 
.select2-selection--single 
.select2-selection__arrow {
    right: 11px !important;
    top: 5px !important;
}
.select2-search--dropdown {
    padding: 10px!important;
}
.select2-search--dropdown input.select2-search__field {
    padding: 11px!important;
    background-color: #00baac12;
    border: 0!important;
    border-radius: 8px;
    line-height: 18px;
}
.select2-container .select2-selection--single {
    height: 50px;
    background: transparent;
    border: 0;
}
.select2-search--dropdown input.select2-search__field:focus {
    outline: 0;
}
.select2-container--open .select2-dropdown--above {
    border-color: var(--primary);
}
body .select2-container--default .select2-results__option {
    padding: 8px 10px;
}
#select-vehicle-box .layer h2 {
    font-size: 54px;
    font-family: 'Josefin Sans';
    letter-spacing: 0px;
    font-weight: 700;
    text-transform: uppercase;
    max-width: 500px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8" fill="none"><path opacity="0.4" d="M1 1.5L6 6.5L11 1.5" stroke="%2310332F" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-position: center;
    background-repeat: no-repeat;
    border: 0;
    margin: 0;
    left: auto;
    right: 0px;
    top: -5px;
    height: 50px;
    width: 20px;
}
section.main-sec  .find_wiper_blades select:focus{
    outline: 0;
}
section.main-sec .frm-dis, section.main-sec  .car-find {
    max-width: 440px;
    width: 100%;
    padding: 40px 30px;
    color: #fff;
    background: var(--secondary);
    border-radius: 30px;
    position: relative;
    margin-left: auto;
}
section.main-sec  .car-find{
    position: relative;
    padding: 0;
}
section.main-sec .car-find > *{
    position: relative;
    z-index: 2;
}
section.main-sec .car-find:after {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary);
    z-index: 0;
    border-radius: 30px;
    transform: rotate(7deg);
    /* animation: rotate 5s infinite; */
}
section.main-sec .find_wiper_blades>* {
    width: 100%;
    margin-bottom: 16px;
}
section.main-sec .find_wiper_blades  label {
    display: none;
}
section.main-sec .frm-hd h3 {
    font-size: 35px;
    line-height: normal;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}
section.main-sec .car-find form.loading:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 30px;
    background: #0000005e;
}
section.main-sec .car-find form.loading .find_wiper_blades:after {
    width: 35px;
    height: 35px;
    content: '';
    position: absolute;
    border: 3px solid #fff;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    border-radius: 50%;
    z-index: 2;
    border-left-color: var(--primary);
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
section.main-sec .find_wiper_blades select.error {
    outline: 2px solid red;
}
@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    
    100% {
        transform: rotate(360deg);
    }
}
section.main-sec .year_wiper.disabled~.submit {
    pointer-events: none;
    opacity: .6;
}
section.main-sec .submit input.sub_wiper {
    background-color: #f95700;
    border: 0;
    padding: 0 17px;
    line-height: 50px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    transition: all .4s;
    width: 100%;
    margin-top: 16px;
    font-family: 'Poppins';
}
section.main-sec .submit input.sub_wiper:hover {
    background: var(--primary);
}
section.main-sec .find_wiper_blades .help {
    text-align: center;
}
section.main-sec .find_wiper_blades .help a {
    color: #fff;
    text-decoration: underline;
}
section.main-sec .find_wiper_blades .help a:hover {
    color: var(--primary);
}
.home_banner .olp {
    width: 40%;
    display: flex;
    justify-content: flex-end;
}



.car_make_sec ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.car_make_sec ul.hide {
    display: none;
}
.car_make_sec h4 {
    color: #10332f;
    font-size: 36px;
    font-weight: 600;
    line-height: 140%;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.car_make_sec ul li a, .car_make_sec ul li {
    border-radius: 36px;
    border: 1px solid rgba(16,51,47,.1);
    background: #eaf6f4;
    padding: 0 26px;
    line-height: 38px;
    display: block;
    font-size: 15px;
    cursor: pointer;
    transition: all .5s;
    display: flex;
    align-items: center;
}
.car_make_sec ul li a:hover:after, .car_make_sec ul li:hover:after{
    filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(0%) hue-rotate(189deg) brightness(105%) contrast(101%);
    transform: rotate(45deg);
}
.car_make_sec ul li a:after, .car_make_sec ul li:after {
    content: "";
    height: 10px;
    min-width: 10px;
    background-image: url(../Images/arrow-svg.svg);
    background-repeat: no-repeat;
    margin-left: 8px;
    transition: all .4s;
    background-position: center;
    display: inline-block;
    transition: all .5s;
    background-size: 100%;
}
.car_make_sec ul li a:hover, .car_make_sec ul li.readmore span:hover, .car_make_sec ul li:hover, .car_make_sec ul li:hover {
    background: var(--secondary);
    color: #fff;
}
.car_make_sec_wrp.loading:before {
    width: 48px;
    height: 48px;
    border: 3px solid #10332f66;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    content: '';
    z-index: 1;
    translate: -50% 50%;
}
.car_make_sec_wrp.loading {
    position: relative;
    min-height: 300px;
}
.car_make_sec_wrp ul li.hide {
    display: none;
}
.car_make_sec_wrp.loading:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-bottom-color: var(--primary);
    animation: rotation 1s linear infinite;
    scale: 87%;
    translate: -50% 50%;
}
.car_make_sec_wrp.loading ul:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: #ffffffc9;
}
@keyframes rotation {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}
.car_make_sec ul li.readmore span {
    background: var(--primary);
    color: #fff;
    border-radius: 36px;
    padding: 0 26px;
    line-height: 40px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    transition: all .5s;
    cursor: pointer;
}
.car_make_sec ul li.readmore span:after {
    content: "";
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background-image: url(../Images/arrow-svg.svg);
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 5px;
    transition: all .4s;
    display: inline-block;
    filter: brightness(0) saturate(100%) invert(94%) sepia(71%) saturate(3%) hue-rotate(257deg) brightness(106%) contrast(100%);
}
section.car_make_sec {
    padding-top: 0;
    padding-bottom: 20px;
}
.wipers {
    background: #EAF6F4;
    padding: 20px;
    border-radius: 30px;
    margin-top: 30px;
}
.wipers img {
    border-radius: 20px;
}
.wipers h5 {
    font-size: 38px;
    line-height: 120%;
    margin-bottom: 0;
    font-weight: 600;
}
.wipers p {
    opacity: 80%;
    margin-top: 20px;
}
.wipers .contant {
    padding: 40px;
}
.premium_windscreen{
    padding-bottom: 0px;
    padding-top: 0px;
}
.premium_windscreen .container{
    padding-bottom: 100px;
    padding-top: 20px;
    border-bottom: 1px solid #E9E9E9;
}
.reviews .njt-review .column-content {
    padding: 40px 40px 80px;
    background: #FAFAFA;
    box-shadow: 0 8px 32px rgb(16 51 47 / 10%);
    border-radius: 30px;
    margin: 0;
    position: relative;
    height: 100%;
    border: 2px solid #fff;
}
.reviews .njt-review-header:before {
    content: "";
    height: 36px;
    width: 36px;
    display: inline-block;
    background-image: url(../Images/google-icon.png);
    background-repeat: no-repeat;
    position: absolute;
    top: 45px;
    background-size: 100%;
    z-index: 2;
    right: 40px;
}
.njt-review .njt-fr-starsnumb {
    display: none;
}
.reviews .njt-review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.reviews .njt-review-avatar {
    width: 52px;
    min-width: 52px;
    height: 52px;
    border: 2px solid var(--dark);
    margin-right: 14px;
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    overflow: hidden;
}
.njt-reviews-wrap .njt-review {
    display: inline-block;
    float: none;
    vertical-align: top;
    width: calc(33.33% - 20px);
    height: auto;
}
.njt-reviews-wrap.njt-reviews-column-3 {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0;
    justify-content: space-between;
}
.njt-fr-starslist-wrapper .njt-fr-starslist-container {
    position: relative;
    font-size: 0;
    height: 18px;
    display: inline-block;
}
.njt-review .njt-review-info .grp-reviewer-name {
    font-size: 16px;
    font-weight: 600;
    display: block;
    line-height: 18px;
}
.njt-review .njt-fr-starslist-wrapper {
    padding: 5px 0;
    line-height: 0;
    background: 0 0;
}
.njt-review .njt-fr-starslist-wrapper .njt-fr-starslist-current .njt-fr-star {
    background: url(../Images/star.svg) 0 0 no-repeat;
    width: 16px;
    height: 16px;
    background-size: 100%;
    display: inline-block;
    margin-right: 2px;
}
span.gpr-rating-time {
    position: absolute;
    bottom: 30px;
    right: 40px;
}
.reviews-hedd h3 {
    margin-bottom: 6px;
}
.reviews-count {
    display: flex;
    align-items: center;
}
.reviews-count p {
    margin-bottom: 0;
    font-size: 22px;
    font-weight: 500;
}
.reviews-hedd {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    align-items: center;
}
.site-footer .site-info .custom-text {
    font-size: 14px;
    color: var(--dark);
    line-height: 150%;
}
.copy-right {
    background-color: var(--primary);
    padding: 12px 0;
    text-align: center;
    color: var(--white);
    font-size: 16px;
    margin: 0;
}
.site-footer .site-info {
    padding: 24px 0;
    border-top: 1px solid rgb(0 0 0/8%);
}
.contact-form {
    padding: 40px;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    transform: translateY(-30px);
    visibility: hidden;
    opacity: 0;
    transition: all .4s;
}
html .open-model .contact-form {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
html body:before {
    content: "";
    display: block;
    background: rgba(0,0,0,.7);
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    transition: all .4s;
}
html body.open-model:before {
    visibility: visible;
    opacity: 1;

}
html .contact-form .form-lable {
    margin-bottom: 15px;
}
html .contact-form p {
    font-size: 16px;
    color: #000;
}
.form-feild-wrap .form-feilds {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}
.form-feild-wrap .form-feilds .form-feild {
    width: 50%;
    padding: 0 12px;
}
html .contact-form label {
    display: block;
    font-size: 16px;
    font-weight: 500;
}
html .form-control {
    width: 100%;
    padding: 0 15px;
    height: 50px;
    border: 1px solid var(--primary);
    border-radius: 5px;
    font-family: poppins;
    transition: all .4s;
}
html .form-control:hover, html .form-control:focus {
    border-color: var(--dark);
    outline: none
}
html .contact-form .form-submit button {
    border-radius: 6px;
    font-size: 16px;
    font-family: var(--font1);
    font-weight: 400;
    padding: 0 22px;
    z-index: 1;
    line-height: 48px;
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
    transition: all .4s;
    min-width: 120px;
    margin: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
html .contact-form .form-submit button:hover {
    background: var(--dark);
    border-color: var(--dark);
}
html .form-feild {
    margin-bottom: 24px;
}
html .error, html .success {
    background: #dc354538;
    border: 1px solid #dc3545;
    color: #dc3545;
    padding: 10px;
    margin-top: 16px;
    margin-bottom: 0;
    border-radius: 6px;
}
html .success {
    background: hsl(152deg 69% 31%/22%);
    border-color: #198754;
    color: #198754;
}
html .error.hide,html .success.hide  {
    display: none;
}
html .contact-form .form-wrap {
    padding: 40px;
    background: #fff;
    border: 2px solid var(--primary);
    border-radius: 20px;
    position: relative;
    width: 800px;
    max-width: 100%;
}
html .contact-form .popmake-close {
    position: absolute;
    right: 50%;
    top: 50%;
    padding: 0;
    background: var(--primary);
    border: 0;
    min-width: 30px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all .4s;
    text-align: center;
    transform: translate(408px, -205px);
}
html .contact-form .popmake-close:hover {
    background: var(--secondary);
    color: #fff;
}
@media(min-width:1200px) and (max-width:1366px){
    h1 {
        font-size: 46px;
    }
    section.main-sec ul li {
        padding: 10px 0px 10px 10px;
        font-size: 14px;
    }
    section.main-sec ul li:before {
        width: 26px;
        height: 26px;
        margin-right: 10px;
    }
}
@media(min-width:1024px) and (max-width:1199px){
    h1 {
        font-size: 38px;
    }
    .btn {
        padding: 7px 12px 7px 16px;
        gap: 5px;
        border-radius: 56px;
        font-size: 14px;
    }
    [class*=col] {
        padding: 0 15px;
    }
    .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    section.main-sec ul li {
        width: 50%;
    }
    .text h3 {
        font-size: 32px;
    }
    .wipers h5 {
        font-size: 25px;
    }
    .wipers .contant {
        padding: 16px;
    }
    .reviews .njt-review .column-content {
        padding: 25px 25px 70px;
        font-size: 14px;
    }
    .reviews .njt-review-header:before {
        top: 30px;
        right: 25px;
    }
    .premium_windscreen .container {
        padding-bottom: 60px;
    }
    .njt-review-info {
        padding-right: 30px;
    }
}
@media(min-width:768px) and (max-width:1024px){
    h1 {
        font-size: 28px;
    }
    [class*=col] {
        padding: 0 15px;
    }
    section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    .btn {
        padding: 7px 12px 7px 16px;
        gap: 5px;
        border-radius: 56px;
        font-size: 14px;
    }
    section.main-sec ul {
        margin-top: 10px;
    }
    section.main-sec img {
        width: 200px;
    }
    section.main-sec h1 {
        padding-top: 16px;
    }
    section.main-sec ul li {
        padding: 10px 12px 7px 0px;
        font-size: 14px;
    }
    section.main-sec ul li:before {
        width: 20px;
        height: 20px;
    }
    section.main-sec ul li {
        width: 50%;
    }
    section.main-sec .frm-dis {
        padding: 30px 20px;
    }
    section.main-sec .frm-hd h3 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .car_make_sec h4 {
        font-size: 28px;
    }
    .car_make_sec ul li a ,.car_make_sec ul li{
        padding: 0 14px;
        line-height: 28px;
        font-size: 13px;
    }
    .car_make_sec ul li.readmore span {
        padding: 0 15px;
        line-height: 30px;
        font-size: 13px;
        display: inline-flex;
    }
    .car_make_sec ul {
        gap: 8px;
    }
    .text h3 {
        font-size: 32px;
    }
    section.wiper_sec p {
        font-size: 14px;
        margin-top: 8px;
    }
    .wipers .contant {
        padding: 0px;
    }
    .wipers h5 {
        font-size: 25px;
    }
    .wipers {
        border-radius: 15px;
    }
    .njt-reviews-wrap .njt-review:last-child {
        display: none;
    }
    .njt-reviews-wrap .njt-review{
        width: calc(50% - 20px);
    }
    .reviews .njt-review .column-content {
        padding: 25px 25px 70px;
        font-size: 14px;
    }
    .reviews .njt-review-header:before {
        top: 30px;
        right: 25px;
    }
    .premium_windscreen .container {
        padding-bottom: 60px;
    }
    html .contact-form .form-wrap {
        width: 700px;
    }
    html .contact-form .popmake-close {
        transform: translate(356px, -205px);
    }
}
@media(max-width: 767px){
    .col-md-8 ,.col-md-4,.col-md-7,.col-md-auto,.col-md-5,.col-md-6{
        width: 100%
    }
    h1 {
        font-size: 24px;
    }
    section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    [class*=col] {
        padding: 0px 12px;
    }
    html .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .btn {
        padding: 7px 12px 7px 16px;
        gap: 5px;
        border-radius: 56px;
        font-size: 14px;
    }
    .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    section.main-sec ul li {
        width: 50%;
        padding: 10px 10px 0px 01px;
        font-size: 13px;
    }
    section.main-sec ul li:before {
        width: 20px;
        height: 20px;
        margin-right: 7px;
    }
    section.main-sec .submit input.sub_wiper {
        line-height: 40px;
        font-size: 14px;
        margin-top: 0;
    }
    section.main-sec .find_wiper_blades>* {
        margin-bottom: 14px;
    }
    section.main-sec .find_wiper_blades .help {
        margin-bottom: 0;
    }
    section.main-sec .find_wiper_blades .help a{
        font-size: 14px;
    }
    section.main-sec ul {
        margin-top: 5px;
        margin-bottom: 50px;
    }
    section.main-sec h1 {
        padding-top: 15px;
    }
    section.main-sec {
        padding-top: 30px;
    }
    section.main-sec img {
        width: 200px;
        display: block;
    }
    section.main-sec h1 {
        padding-top: 16px;
    }
    section.main-sec .frm-dis {
        padding: 26px 20px;
    }
    section.main-sec  .car-find {
        padding: 0 20px;
        background: transparent;
    }
    section.main-sec .frm-dis, section.main-sec .car-find{
        margin: 0 auto;
        max-width: 370px;
    }
    section.main-sec .car-find:after {
        width: calc(100% - 45px);
        left: 50%;
        translate: -50% 0;
    }
    section.main-sec .frm-hd h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .car_make_sec h4 {
        font-size: 28px;
    }
    .car_make_sec ul li a,.car_make_sec ul li {
        padding: 0 14px;
        line-height: 28px;
        font-size: 13px;
    }
    .car_make_sec ul li.readmore span {
        padding: 0 15px;
        line-height: 30px;
        font-size: 13px;
        display: inline-flex;
        margin-left: 20px;
    }
    .car_make_sec ul {
        gap: 4px;
    }
    .text h3 {
        font-size: 24px;
        margin-bottom: 6px;
    }
    .wipers p {
        margin-top: 8px;
        font-size: 14px;
    }
    .wipers {
        padding: 12px;
        border-radius: 15px;
    }
    .wipers img {
        border-radius: 10px;
    }
    .wipers .contant {
        padding: 5px;
        text-align: center;
        margin-top: 10px;
    }
    .wipers h5 {
        font-size: 22px;
        margin-bottom: 5px;
    }
    .premium_windscreen .container {
        padding-bottom: 65px;
    }
    .wipers:nth-child(odd) [class*=col]:first-child{
        order: 1;
    }
    section.premium_windscreen h3 {
        font-size: 22px;
    }
    .njt-reviews-wrap.njt-reviews-column-3 {
        width: 100%;
    }
    .njt-reviews-wrap .njt-review{
        width: 100%;
    }
    .reviews .njt-review .column-content {
        padding: 30px 25px 80px;
        font-size: 14px;
    }
    .reviews .njt-review-header:before {
        top: 35px;
        right: 25px;
    }
    .site-footer .site-info .custom-text {
        font-size: 12px;
        text-align: center;
    }
    .copy-right {
        padding: 12px 10px;
        font-size: 14px;
    }
    html .contact-form .form-wrap {
        width: 350px;
    }
    .form-feild-wrap .form-feilds .form-feild {
        width: 100%;
    }
    html .contact-form .form-wrap {
        padding: 20px;
        border-radius: 15px;
    }
    html .contact-form p {
        font-size: 14px;
        color: #000;
    }   
    html .contact-form label {
        font-size: 14px;
    }
    html .contact-form .form-submit button {
        line-height: 42px;
    }
    html .contact-form .popmake-close {
        transform: translate(180px, -251px);
    }
    section.wiper_sec p{
        font-size: 14px;
    }
    section.wiper_sec p br {
        display: none;
    }
	.select2-container--default .select2-selection--single .select2-selection__rendered, section.main-sec .find_wiper_blades select,.select2-container .select2-selection--single {
		height: 40px;
		line-height: 39px;
	}
    .select2-container--default .select2-selection--single .select2-selection__arrow b{
        height: 40px;
    }
}