/* POPPINS — Fully Optimized @font-face Setup */

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: local('Poppins ExtraLight'), local('Poppins-ExtraLight'),
       url('../fonts/Poppins-ExtraLight.woff2') format('woff2');
  ascent-override: 92%;
  descent-override: 22%;
  line-gap-override: 0%;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local('Poppins Light'), local('Poppins-Light'),
       url('../fonts/Poppins-Light.woff2') format('woff2');
  ascent-override: 92%;
  descent-override: 22%;
  line-gap-override: 0%;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Poppins Regular'), local('Poppins-Regular'),
       url('../fonts/Poppins-Regular.woff2') format('woff2');
  ascent-override: 92%;
  descent-override: 22%;
  line-gap-override: 0%;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local('Poppins Medium'), local('Poppins-Medium'),
       url('../fonts/Poppins-Medium.woff2') format('woff2');
  ascent-override: 92%;
  descent-override: 22%;
  line-gap-override: 0%;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Poppins SemiBold'), local('Poppins-SemiBold'),
       url('../fonts/Poppins-SemiBold.woff2') format('woff2');
  ascent-override: 92%;
  descent-override: 22%;
  line-gap-override: 0%;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Poppins Bold'), local('Poppins-Bold'),
       url('../fonts/Poppins-Bold.woff2') format('woff2');
  ascent-override: 92%;
  descent-override: 22%;
  line-gap-override: 0%;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
:before,
:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
p,
span {
    padding: 0;
    margin: 0;
    list-style: none;
    font-family: "Poppins";
    color: #0a1016;
}
body,
p {
    font-size: 14px;
    line-height: 22px;
    color: #666;
}
body {
    overflow: hidden;
    overflow-y: auto;
    position: relative;
}
body::after {
    content: "";
    position: absolute;
    background-image: url(../images/scale.png);
    background-repeat: repeat;
    background-position: right top;
    pointer-events: none;
    width: 15px;
    height: 100%;
    right: 0;
    z-index: 9999;
    top: 0;
}
body.active {
    overflow: hidden;
}
/*body.active {
    overflow: scroll;
}*/
h1,
h2,
h3 {
    font-size: 28px;
    font-weight: 500;
}
a,
.btn,
button {
    text-decoration: none;
    outline: none;
}
small {
    font-size: 100%;
}
.scrollBarHide::-webkit-scrollbar {
    display: none;
}
.container {
    padding: 0 15px;
    margin: 0 auto;
    width: 100%;
    max-width: 1280px;
    display: block;
    position: relative;
    z-index: 1;
}
.img-responsive {
    max-width: 100%;
    height: auto;
    max-height: 100%;
}
label {
    margin-bottom: 5px;
    font-size: #333;
}

.form-group label {
    font-size: 14px;
    line-height: 16px;
    color: #666;
    display: block;
}
.form-control {
    padding: 8px 15px;
    display: block;
    width: 100%;
    height: 30px;
    font-size: 14px;
    color: #1b1e27;
    background: #f6f7f9;
    border-radius: 8px;
    border: #f6f7f9 solid 1px;
    outline: none;
    font-family: "Poppins";
}
.form-control::placeholder {
    color: #ccc;
}
textarea.form-control {
    padding: 15px;
    min-height: 100px;
    font-family: "Poppins";
}
.btnBox {
    margin-top: 30px;
    display: flex;
    align-items: center;
}
.btn {
    padding: 5px 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
    cursor: pointer;
    border: 0;
    font-size: 16px;
    border-radius: 50px;
    transition: 0.5s;
    white-space: nowrap;
    height: 45px;
}
.btn img {
    height: 30px;
}
.btn em {
    font-size: 16px;
}
.btn-default {
    color: #2b5ba7;
    background: #d7dde985;
    transition: 0.5s;
}
.btn-default:hover {
    color: #fff;
    background-image: linear-gradient(285deg, #2d385e, #2b5ba7);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    transition: 0.5s;
}
.btn-primary {
    color: #fff;
    background-image: linear-gradient(285deg, #2b5ba7, #2d385e);
    transition: 0.5s;
}
.btn-primary:hover {
    background-image: linear-gradient(285deg, #2d385e, #2b5ba7);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    transition: 0.5s;
}
.btn-secondary {
    background: #fff;
    color: #375aa3;
    border: #375aa3 solid 1px;
    transition: 0.5s;
}
.btn-secondary:hover {
    background: #375aa3;
    color: #fff;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    transition: 0.5s;
}
.btn-line {
    background: none;
    color: #fff;
    border: #ffffff82 solid 1px;
    transition: 0.5s;
}
.btn-line:hover {
    background: #375aa3;
    border: #375aa3 solid 1px;
    color: #fff;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    transition: 0.5s;
}
.btn-blue {
    background: #375aa3;
    color: #fff;
    border: #375aa3 solid 1px;
    transition: 0.5s;
}
.btn-blue:hover {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    transition: 0.5s;
}
.btn-link {
    width: fit-content;
    padding: 0;
    height: auto;
    color: #079aaa;
}
header {
    padding: 5px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 2px 6px #0000001a;
    position: sticky;
    top: 0;
    z-index: 9;
}
header .container {
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}
header .logoBox {
    padding: 8px 0;
    display: block;
}
header .logoBox a {
    display: flex;
    align-items: center;
    height: 40px;
}
header .box {
    width: 30%;
    display: flex;
    align-items: center;
}
header .box.centerBox {
    display: flex;
    align-items: center;
    width: calc(100% - 700px);
}
header .box.centerBox .seacrhBox {
    display: flex;
    gap: 0;
    position: relative;
    border: #2b5ba7 solid 1px;
    border-radius: 50px;
    width: 100%;
    height: 40px;
}
header .box.centerBox .seacrhBox .form-control {
    border: 0;
    background: none;
    height: 100%;
    color: #2b5ba7;
    border-radius: 50px 0 0 50px;
    width: 100%;
}
header .box.centerBox .seacrhBox .btn-search {
    border: 0;
    background: none;
    height: 100%;
    color: #2b5ba7;
    border-radius: 0 50px 50px 0;
    border-left: #2b5ba7 solid 1px;
    padding: 5px 20px 5px 10px;
    gap: 8px;
}
header .box.centerBox .seacrhBox .btn-search:hover {
    background-image: linear-gradient(285deg, #2d385e, #2b5ba7);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    color: #fff;
    transition: 0.5s;
}
header .box:nth-child(3) {
    justify-content: flex-end;
}
.topHeader {
    padding: 8px 0;
    background: #2d385d;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    top: -5px;
}
.topHeader a {
    color: #fff;
    display: flex;
    gap: 5px;
    align-items: center;
    line-height: 18px;
    font-size: 12px;
}
#nav-toggle {
    padding: 12px 0 2px;
    margin: 5px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: block;
    transition: 0.5s;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
    content: "";
    cursor: pointer;
    height: 4px;
    width: 30px;
    background: #2f316c;
    position: absolute;
    display: block;
    border-radius: 3px;
    transition: 0.5s;
}
#nav-toggle span:before {
    top: -9px;
}
#nav-toggle span:after {
    bottom: -9px;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
    transition: all 200ms ease-in-out;
}
#nav-toggle.active span {
    background-color: transparent !important;
    transition: 0.5s;
}
#nav-toggle.active span:before,
#nav-toggle.active span:after {
    top: 0;
    transition: 0.5s;
}
#nav-toggle.active span:before {
    transform: rotate(45deg);
}
#nav-toggle.active span:after {
    transform: rotate(-45deg);
}
nav {
    position: fixed;
    top: 100px;
    left: -500px;
    background-image: linear-gradient(285deg, #2b5ba7, #2d385e);
    height: 100vh;
    width: 300px;
    transition: 0.3s;
    flex-direction: column;
    align-items: center;
}
nav.active {
    left: 0;
    transition: 0.3s;
}
nav ul {
    margin: 0;
    display: block;
    width: 100%;
}
nav ul li {
    display: block;
    border-bottom: #f1f1f12e solid 1px;
}
nav ul li:first-child {
    border-top: #f1f1f12e solid 1px;
}
nav ul li a {
    padding: 0 15px;
    display: block;
    line-height: 50px;
    color: #fff;
}
nav ul li a:hover {
    text-decoration: underline;
}
nav .btn {
    padding: 0;
    line-height: 40px;
    display: block;
    width: calc(100% - 30px);
    text-align: center;
    border: #fff solid 1px;
}
section {
    padding: 60px 0;
    display: block;
    overflow: hidden;
}
section .headingSection {
    display: flex;
    gap: 15px;
    flex-direction: column;
    text-align: center;
    width: 100%;
    max-width: 1020px;
    margin: 0 auto;
}
section .headingSection h2 {
    font-size: 35px;
    line-height: 40px;
    font-weight: 700;
    color: #fff;
}
section .headingSection span {
    margin: 0 auto;
    color: #fff;
    max-width: 700px;
}
.pageHeadingSection {
    padding: 50px 0;
    display: block;
    background: #2d385e;
    position: relative;
    border-radius: 0px;
}
.pageHeadingSection .coverBg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.pageHeadingSection .coverBg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}
.pageHeadingSection h1 {
    font-size: 45px;
    font-weight: 700;
    color: #fff;
    line-height: 50px;
    display: block;
}
.pageHeadingSection span {
    margin-top: 10px;
    color: #fff;
    display: block;
}
#suggestion-box {
    position: absolute;
    z-index: 100;
    overflow-y: auto;
    margin-top: 8%;
}
#suggestion-box {
    background: #fff;
    width: 350px;
    border: 1px solid #ccc;
    z-index: 999;
    display: none;
}
.suggestion-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
#suggestion-box ul {
    box-shadow: 1px 1px 10px #d3d3d3;
    border-radius: 30px;
}
#suggestion-box li {
    border-bottom: 1px solid #f5f5f5;
    padding: 3px;
    background-color: #fff; /* border: 1px solid #f36c1a17; */
    line-height: 30px;
}
#suggestion-box li a {
    font-size: 14px;
    line-height: 22px;
    color: #666;
}
#suggestion-box li:hover {
    background-color: #f5f5f5;
}
.seacrhBox form {
    width: 100%;
    display: flex;
}

.faqSection {
    display: block;
    overflow: hidden;
}
.faqSection .headingSection h2 {
    color: #2b5ba7;
}
.faqSection .headingSection span {
    color: #666;
}
.faqBox {
    margin-top: 35px;
    display: flex;
}
.faqAccordion {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 90%;
}
.faqItem {
    display: block;
    background: #f4f6f8;
    border: solid 1px #2d385e1c;
    border-radius: 10px;
    overflow: hidden;
}
.faqHeader {
    padding: 15px 50px 15px 15px;
    display: block;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}
.faqHeader em {
    width: 26px;
    height: 26px;
    background: #2b5ba8;
    border-radius: 50px;
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.faqHeader em:before {
    content: "";
    width: 14px;
    height: 2px;
    background: #fff;
    display: block;
    transition: 0.3s;
}
.faqHeader em:after {
    content: "";
    margin: -1px 0 0 -7px;
    width: 14px;
    height: 2px;
    background: #fff;
    display: block;
    transform: rotate(-90deg);
    position: absolute;
    top: 50%;
    left: 50%;
    transition: 0.3s;
}
.faqBody {
    display: none;
}
.faqBody ul,
.faqBody ol {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.faqBody ul li,
.faqBody ol li {
    padding-left: 30px;
    position: relative;
    color: #666;
}
.faqBody ul li:after,
.faqBody ol li:after {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    width: 20px;
    height: 20px;
    background: url(../images/bullet.svg) no-repeat left top;
    background-size: 100%;
}
.faqItem.active .faqHeader em:after {
    content: "";
    transform: rotate(0deg);
    transition: 0.3s;
}
.faqItem.active .faqBody {
    padding: 0 15px 15px;
    display: block;
}
.faqItem.active .faqBody p {
    margin: 0;
    color: #666;
}
.faqItem.active .faqBody p ~ p {
    margin-top: 15px;
}

footer {
    padding: 50px 0;
    display: block;
    background: #f5f5f5;
    overflow: hidden;
    min-height: 500px;
    position: relative;
}
footer .footerBg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
footer .footerBg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
footer .footerBg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.95;
    background-image: linear-gradient(to bottom, #2e3858, #090b12);
}
footer .footerContactSection {
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: #ffffff30 solid 1px;
}
footer .needHelp {
    display: flex;
    align-items: center;
    gap: 15px;
}
footer .needHelp strong {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}
footer .linkBox {
    margin-top: 30px;
}
footer .linkBox h3 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}
footer .linkList {
    padding: 0;
    margin: 10px 0 0;
}
footer .linkList li {
    display: inline;
}
footer .linkList li a {
    padding: 0 10px;
    color: #ffffffc4;
}
footer .linkList li:first-child a {
    padding-left: 0;
    font-weight: 300;
}
footer .linkList li:not(:last-child)::after {
    content: " | ";
    color: #ffffffc4;
}
footer .linkList li a:hover {
    color: #fff;
    text-decoration: underline;
}
footer .socialLinks {
    margin-top: 10px;
}
footer .socialLinks li {
    margin-right: 5px;
    display: inline;
}
footer .socialLinks li a {
    color: #ffffffc4;
    font-size: 35px;
}
footer .socialLinks li a:hover {
    color: #fff;
}

.copyRightBox {
    padding: 15px 0 75px;
    background: #1c233c;
    display: block;
}
.copyRightBox .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.copyRightBox .linkList li {
    display: inline;
}
.copyRightBox .linkList li a {
    padding: 0 5px;
    color: #ffffffc4;
    font-size: 13px;
}
.copyRightBox .linkList li:first-child a {
    padding-left: 0;
    color: #fff;
    font-weight: 300;
}
.copyRightBox .linkList li:not(:last-child)::after {
    content: " | ";
    color: #fff;
}
.copyRightBox .CopyRightText {
    font-size: 13px;
    display: block;
    color: #ffffffc4;
}
footer .footerlogo {
    width: 50%;
}
#exitModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000000e0;
    overflow: hidden;
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.exitform .formBox {
    background: #fff;
    border-radius: 12px;
    padding: 0px;
    width: 90%;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.exitform .formHeadingBox figure img {
    width: 80px;
    margin-bottom: 10px;
}
.exitform .formHeadingBox figcaption {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
}
.exitform .formBox input,
.exitform .formBox textarea {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
}
.exitform .closeModalBtn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #2b5ba7;
    background: #fff;
    padding: 10px;
    font-size: 12px;
    border-radius: 40px;
    border: #2b5ba7 solid 1px;
}
.exitform .productFormBox {
    top: 10px;
    border: solid 0px #2d385e1c !important;
    border-radius: 20px;
    height: fit-content;
    position: sticky;
    top: 0px;
}
.exitform .productFormBox .formHeadingBox {
    padding: 10px 20px 10px 20px;
    background: #2b5ba7;
    display: flex;
    gap: 20px;
    border-radius: 20px 20px 0 0;
}
.exitform .productFormBox .formHeadingBox figcaption {
    display: flex;
    flex-direction: column;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-align: left;
}
.exitform .productFormBox .formHeadingBox figcaption span {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
    margin-top: 5px;
}
.exitform .productFormBox form {
    padding: 10px;
    border-radius: 0 0 20px 20px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    flex-direction: column;
}
.exitform .productFormBox form .form-control {
    border: solid 1px #2d385e1c;
}
.exitform .productFormBox form .btnBox {
    margin-top: 5px;
}
.exitform .productFormBox form .btnBox .btn {
    width: 100%;
}

.overlayBox {
    background: #000000e0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 99;
    backdrop-filter: blur(5px);
    display: none;
}
.overlayBox.active {
    display: block;
}
.popupBox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
}
.popupBox.active {
    display: flex;
}
.popup {
    background: #fff;
    min-width: 300px;
    min-height: 300px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.popup .popupClose {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #2b5ba7;
    background: #fff;
    padding: 10px;
    font-size: 12px;
    border-radius: 40px;
    border: #2b5ba7 solid 1px;
}
.getLatestPricePopup {
    display: flex;
    align-content: center;
    justify-content: space-between;
    background: #e7e7e7;
}
.getLatestPricePopup figure {
    display: block;
    width: 397px;
    height: 595px;
}
.getLatestPricePopup .formBox {
    display: block;
    width: 450px;
}
.getLatestPricePopup .formBox .formHeadingBox {
    padding: 20px;
    background: #2b5ba7;
    display: flex;
    flex-direction: column;
}
.getLatestPricePopup .formBox .formHeadingBox strong {
    font-size: 25px;
    color: #fff;
    font-weight: 600;
}
.getLatestPricePopup .formBox .formHeadingBox p {
    margin-top: 10px;
    color: #fff;
    font-weight: 300;
    display: block;
}
.getLatestPricePopup .formBox form {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 0px 15px;
}
.getLatestPricePopup .formBox .form-group {
    width: 100%;
}
.getLatestPricePopup .formBox .btnBox {
    margin: 0;
    width: 100%;
    justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
    header .box.centerBox {
        width: calc(100% - 500px);
    }
}
@media screen and (max-width: 768px) {
    nav {
        position: fixed;
        top: 116px;
    }
    header .container {
        justify-content: space-between;
    }
    header .box.centerBox {
        display: none;
    }
    section .headingSection {
        text-align: initial;
        gap: 5px;
    }
    section .headingSection h2 {
        font-size: 22px;
        line-height: 30px;
    }
    section .headingSection span {
        margin: initial;
    }
    section .headingSection strong {
        font-size: 18px;
    }
    .copyRightBox .container {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
    }
    .exitform .getLatestPricePopup figure {
        display: none;
    }
    .getLatestPricePopup figure {
        display: none;
    }
    .faqAccordion {
        width: 100%;
    }
    .faqBox {
        margin-top: 15px;
    }
}
@media screen and (max-width: 540px) {
    .topHeader .container {
        flex-direction: column;
        gap: 0;
    }
    header .box {
        width: auto;
    }
    header .box .btn {
        padding: 2px 15px;
        height: 42px;
        font-size: 12px;
    }
    nav {
        width: 100%;
        top: 116px;
    }
    section {
        padding: 45px 0;
    }
    .pageHeadingSection {
        padding: 30px 0;
    }
    .pageHeadingSection h1 {
        font-size: 32px;
        line-height: 35px;
        font-weight: 600;
    }
    .pageHeadingSection span {
        margin-top: 5px;
    }
    footer .footerContactSection {
        padding-bottom: 30px;
        flex-direction: column;
    }
    footer .needHelp {
        margin-top: 10px;
        display: flex;
        gap: 15px;
        flex-direction: column;
        width: 100%;
    }
    footer .needHelp .btn {
        width: 100%;
    }
    footer .linkBox.accordionLinkBox h3 {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    footer .linkBox.accordionLinkBox h3 em {
        width: 26px;
        height: 20px;
        position: relative;
        font-style: normal;
    }
    footer .linkBox.accordionLinkBox h3 em:before {
        content: "[+]";
        position: absolute;
        top: 0;
        left: 0;
        font-size: 16px;
        color: #fff;
        font-weight: normal;
    }
    footer .linkBox.accordionLinkBox .linkList {
        margin: 0px;
        max-height: 0px;
        overflow: hidden;
    }
    footer .linkBox.accordionLinkBox.active h3 em:before {
        content: "[-]";
    }
    footer .linkBox.accordionLinkBox.active .linkList {
        margin: 10px 0 0;
        max-height: 1000px;
    }
    .footerLogoBox {
        text-align: center;
    }
    .exitform .popupBox1 {
        justify-content: center;
        z-index: 100;
    }
    .exitform .popup {
        border-radius: 15px 15px 0 0;
    }
    .exitform .getLatestPricePopup .formBox .formHeadingBox {
        padding: 15px;
        height: auto;
    }
    .exitform .getLatestPricePopup .formBox .formHeadingBox p {
        font-size: 11px;
        line-height: 16px;
    }
    .exitform .getLatestPricePopup .formBox .form-group {
        width: 100%;
    }
    .exitform .getLatestPricePopup .formBox form {
        padding: 15px;
    }
    .popupBox {
        justify-content: center;
        z-index: 100;
    }
    .popup {
        border-radius: 15px 15px 0 0;
    }
    .getLatestPricePopup .formBox .formHeadingBox {
        padding: 15px;
        height: auto;
    }
    .getLatestPricePopup .formBox .formHeadingBox p {
        font-size: 11px;
        line-height: 16px;
    }
    .getLatestPricePopup .formBox .form-group {
        width: 100%;
    }
    .getLatestPricePopup .formBox form {
        padding: 15px;
    }

    .float img {
        width: 45px;
    }
}
.float {
    position: fixed;
    bottom: 7px;
    left: 40px;
    border-radius: 50px;
    z-index: 100;
}
.float img {
    width: 55px;
}
.error {
    display: block;
    color: red;
    font-size: 14px;
    margin-top: 4px;
}
input.error-border,
textarea.error-border {
    border: 1px solid red;
}
input,
textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
