

/* Start:/css/anchor.css?1646291449441*/
.anchor-list a{
    display: inline-block;
    vertical-align: top;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #0868C2;
    padding-bottom: 3px;
    border-bottom: 1px dashed #0868C2;
    margin-right: 24px;
}
@media (max-width: 768px){

    .anchor-list a{
        font-size: 14px;
        line-height: 20px;
        margin-right: 16px;
        margin-bottom: 16px;
    }
}
.nodotted a{ border-bottom:0px;}
/* End */


/* Start:/css/banner-btn.css?17411123081462*/
.main-b__half:first-child {
    border-right: solid 0px #fff !important;
}

.underbanner-button {
    display: block;
    width: 100%;
    padding: 4px 0;
    margin-top:20px;
    /*background-color: #0868c2;*/
    background-color: rgba(8, 104, 194, 0.55);
    color: white;
    font-size: 24px;
    line-height: 24px;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    position: relative;
    overflow: hidden;
}

.underbanner-button span {
    display: inline-block;
    position: relative;
    color: white;
}

@keyframes wave {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}

.underbanner-button span::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            90deg,
            transparent,
            #016c3e 20%,
            #016c3e 40%,
            transparent 60%,
            transparent
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: wave 5s linear infinite;
}

.underbanner-button:hover span::before {
    animation: none;
    background: #016c3e;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.underbanner-button:hover {
    background-color: transparent;
}
/* End */


/* Start:/css/quote-banner.css?17730805158847*/
/* ===== IMAGE BANNER ===== */
.quote-img-banner {
    display: block;
    cursor: pointer;
    line-height: 0;
    margin-bottom: 20px;
}
.quote-img-banner__img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== QUOTATION BANNER ===== */
@keyframes shimmer-banner {
    0%   { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}
.quote-banner {
    display: block;
    background: #0868C2;
    padding: 12px 0;
    margin-top: 5px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
}
.quote-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}
.quote-banner__heading {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    text-align: center;
    color: transparent;
    background: linear-gradient(90deg, #fff, #fff 38%, #bbb 50%, #fff 62%, #fff);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer-banner 4s linear infinite;
}
.quote-banner__btn {
    white-space: nowrap;
    display: inline-block;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    border: solid 1px #e4eff8;
    background-color: #e4eff8;
    color: #0868C2;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all .3s;
    flex-shrink: 0;
    text-decoration: none;
}
a.quote-banner__btn:hover {
    background-color: #0868C2;
    border-color: #0868C2;
    color: #e4eff8;
}

/* Banner Responsive */
@media (max-width: 1400px) {
    .quote-banner {
        margin-top: 0;
    }
}
@media (max-width: 1200px) {
    .quote-banner {
        margin-top: 32px;
    }
}
@media (max-width: 900px) {
    .quote-banner {
        margin-top: 22px;
    }
    .quote-banner__inner {
        flex-direction: column;
        gap: 10px;
    }
}
@media (max-width: 600px) {
    .quote-banner {
        padding: 10px 0;
    }
    .quote-banner__heading {
        font-size: 12px;
        line-height: 16px;
    }
    .quote-banner__btn {
        padding: 2px 8px 4px;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700;
        text-transform: none;
        letter-spacing: 0;
    }
}


/* ============================================
   QUOTATION POPUP FORM (matching mockup)
   ============================================ */

/* Override fancybox popup wrapper */
.popup--quotation {
    padding: 0 !important;
    background: transparent !important;
    max-width: 700px;
    width: 100%;
    box-sizing: border-box;
}
.popup--quotation .fancybox-close-small {
    color: #fff;
    top: 8px;
    right: 8px;
    z-index: 10;
}

/* Main form container */
.qf {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    font-family: 'Lato', sans-serif;
    background: #0868C2;
}

/* ---- Header ---- */
.qf-header {
    padding: 16px 18px 10px;
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 10px;
    align-items: center;
}
.qf-header__title {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.qf-header__btn {
    display: block;
    width: 100%;
    padding: 13px 14px;
    font-size: 13px;
    font-weight: 700;
    color: #1E2F46;
    background: #d5d8dc;
    border: 1px solid #bbb;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all .2s;
    line-height: 18px;
    box-sizing: border-box;
}
.qf-header__btn:hover {
    background: #c8cbcf;
}

/* ---- Grid form body ---- */
.qf-grid {
    background: #0868C2;
    padding: 12px 18px 6px;
    display: grid;
    grid-template-columns: 6fr 4fr;
    grid-template-rows: auto auto auto auto auto auto auto;
    gap: 6px 10px;
}

/* Grid cell placement */
.qf-cell { min-width: 0; }
.qf-cell--idlist   { grid-column: 1; grid-row: 1; }
.qf-cell--upload   { grid-column: 2; grid-row: 1; display: flex; align-items: center; }
.qf-cell--weight   { grid-column: 1; grid-row: 2; }
.qf-cell--format   { grid-column: 2; grid-row: 2; display: flex; align-items: center; gap: 10px; }
.qf-cell--comments { grid-column: 2; grid-row: 3 / 6; display: flex; flex-direction: column; }
.qf-cell--name     { grid-column: 1; grid-row: 3; }
.qf-cell--email    { grid-column: 1; grid-row: 4; }
.qf-cell--phone    { grid-column: 1; grid-row: 5; }
.qf-cell--company  { grid-column: 1; grid-row: 6; }
.qf-cell--privacy  { grid-column: 2; grid-row: 6; display: flex; align-items: center; }
.qf-cell--address  { grid-column: 1; grid-row: 7; }
.qf-cell--submit   { grid-column: 2; grid-row: 7; display: flex; align-items: stretch; }

/* Upload button in grid */
.qf-upload-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 13px 14px;
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
    color: #1E2F46;
    background: #d5d8dc;
    border: 1px solid #bbb;
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
    transition: all .2s;
    box-sizing: border-box;
}
.qf-upload-btn:hover {
    background: #c8cbcf;
}

/* Format label */
.qf-format-label {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    line-height: 1;
}

/* Inputs */
.qf-input {
    width: 100%;
    box-sizing: border-box;
    padding: 7px 10px;
    font-size: 13px;
    line-height: 18px;
    border: none;
    border-radius: 3px;
    outline: none;
    font-family: 'Lato', sans-serif;
    color: #1E2F46;
    background: #fff;
    transition: border-color .2s;
}
.qf-input:focus {
    border-color: #0868C2;
}
.qf-input::placeholder {
    color: #555;
    font-size: 14px;
}
.qf-textarea {
    resize: vertical;
    min-height: 40px;
}
.qf-textarea--tall {
    flex: 1;
    min-height: 100px;
}

/* Format radios */
.qf-radios {
    display: flex;
    gap: 12px;
}
.qf-radio {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
    font-weight: 400;
    white-space: nowrap;
    line-height: 1;
}
.qf-radio input[type="radio"] {
    display: none;
}
.qf-radio__mark {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    transition: border-color .2s;
    vertical-align: middle;
    margin-top: 8px;
}
.qf-radio input[type="radio"]:checked + .qf-radio__mark {
    border-color: #fff;
}
.qf-radio input[type="radio"]:checked + .qf-radio__mark::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
}

/* Privacy text */
.qf-privacy {
    font-size: 9px;
    line-height: 12px;
    color: #fff;
}

/* Submit button */
.qf-submit {
    display: block;
    width: 100%;
    padding: 9px 28px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: transparent;
    border: solid 1px #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all .2s;
    font-family: 'Lato', sans-serif;
    white-space: nowrap;
}
.qf-submit:hover {
    background: #fff;
    color: #0868C2;
}
.qf-submit.disabled {
    opacity: 0.6;
    cursor: default;
}
.qf-footnote {
    margin: 6px 20px 0;
    padding-bottom: 10px;
    font-size: 14px;
    color: #fff;
    text-align: center;
}
.qf-footnote a {
    color: #fff;
    text-decoration: underline;
}
.qf-footnote a:hover {
    opacity: 0.8;
}

/* ---- Popup responsive ---- */
@media (max-width: 700px) {
    .popup--quotation {
        max-width: calc(100vw - 20px) !important;
    }
    .qf-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .qf-cell--idlist,
    .qf-cell--upload,
    .qf-cell--weight,
    .qf-cell--format,
    .qf-cell--comments,
    .qf-cell--name,
    .qf-cell--email,
    .qf-cell--phone,
    .qf-cell--privacy,
    .qf-cell--address,
    .qf-cell--submit {
        grid-column: 1;
        grid-row: auto;
    }
    .qf-cell--idlist   { order: 1; }
    .qf-cell--upload   { order: 2; }
    .qf-cell--weight   { order: 3; }
    .qf-cell--format   { order: 4; }
    .qf-cell--name     { order: 5; }
    .qf-cell--email    { order: 6; }
    .qf-cell--phone    { order: 7; }
    .qf-cell--company  { order: 8; }
    .qf-cell--address  { order: 9; }
    .qf-cell--comments { order: 10; min-height: 80px; }
    .qf-cell--privacy  { order: 11; }
    .qf-cell--submit   { order: 12; }
    .qf-header {
        grid-template-columns: 1fr;
    }
    .qf-header__title {
        font-size: 18px;
    }
}

/* End */
/* /css/anchor.css?1646291449441 */
/* /css/banner-btn.css?17411123081462 */
/* /css/quote-banner.css?17730805158847 */
