
@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*
font-family: 'Playfair Display', serif;
font-family: 'Poppins', sans-serif;
/* RESET CSS START */

ul.merurs li {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

ul.merurs {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

ul.merurs li {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

ul.merurs {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    position: relative;
}

:root {
    --c1: #fff;
    --c2: #2222;
    --c3-dark: #2a2a2a;
    --c4-light: #fff;
}

a, button {
    font-family: 'Poppins', sans-serif;
    transition: all .5s ease-in-out;
    text-decoration: none;
    outline: none;
    border: none;
    cursor: pointer;
}

a:hover, button:hover {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

p, span, small {
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

input, select {
    font-family: 'Poppins', sans-serif;
}

ul, ul.list-inline {
    margin: 0;
    padding: 0;
}

li {
    padding: 0;
    list-style: none;
    font-family: 'Poppins', sans-serif;
}


/* RESET CSS END */

/* UTILITY CSS START */

.text-uppercase {
    text-transform: uppercase !important;
}

.text-capital {
    text-transform: capitalize !important;
}

.col-center {
    margin: 0 auto;
}

/* MAIN-BTNS */

.primary-btn {
    display: inline-block;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 40px;
    text-align: center;
    z-index: 1;
    border-radius: 0;
    text-transform: capitalize;
    overflow: hidden;
    transition: all 1s ease-in-out;
    border: 2px solid;
    outline: none;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0%;
    height: 100%;
    transition: inherit;
    z-index: -1;
    border-radius: inherit;
    overflow: hidden;
    outline: none;
}

.primary-btn.primary-bg:hover::before {
    width: 100%;
    left: 100%;
}

.primary-btn.primary-bg {
    background: #0064d2;
    border-color: #0064d2;
    color: #fff !important;
}

.primary-btn.primary-bg:hover {
    color: #0064d2 !important;
    background-color: #fff;
}


.bg-primary {
    background-color: #e7ecf5 !important;
}

.bg-grey {
    background-color: #4B4B4B !important;
}


/* MAIN-HEADING */
.color-dark h2, .color-dark h3, .color-dark h4, .color-dark h5, .color-dark h6, .color-dark p {
    color: var(--c3-dark);
}

.color-light h2, .color-light h3, .color-light h4, .color-light h5, .color-light h6, .color-light p {
    color: var(--c4-light)
}

/* SLICK SLIDER CSS START */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: "\f054";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: "\f053";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
}

/* .slick-prev:before{content:'\f104'}.slick-next:before{content:'\f105'}.slick-next:before,.slick-prev:before{font-size:25px;line-height:1;font-family:"Font Awesome 5 Pro";font-weight:900;opacity:1;color:#fff;background:#0064d2;display:flex;align-items:center;justify-content:center;width:40px;height:40px;transition:.8s ease-in-out;border-radius:50%;border:1px solid #fff}.slick-next.slick-disabled:before,.slick-prev.slick-disabled:before{opacity:1}.slick-next,.slick-prev{position:absolute;top:50%;transform:translate(-50%)}.slick-next{right:-3%;z-index:1}.slick-prev{left:-3%;right:auto;z-index:1}.slick-dots li button:before{left:0;width:15px;height:15px;content:"";opacity:1;background:#fff;border-radius:50%}.slick-dots{bottom:-80px} */

/* SLICK SLIDER CSS END */

/* UTILITY CSS END */

/* MOBILE-MENU CSS START */
.mobile-menu, .mobile-menu .mobile-menu-body li.dropdown-li > ul.dropdown-list.dropdown-list-2 {
    background: #da0
}

.hamburger .hamburger-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    width: 25px
}

.hamburger span:not(:last-child) {
    margin-bottom: 4px
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #707070;
    border-radius: 100px;
    transition: .5s ease-in-out
}

.hamburger span:first-child {
    width: 50%
}

.hamburger span:last-child {
    width: 70%
}

.hamburger:hover span {
    width: 100%
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    padding: 30px 0;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    z-index: 100;
    transform: translateX(100%);
    transition: .5s ease-in-out
}

.mobile-menu .mobile-close {
    text-align: right
}

.mobile-menu .mobile-close a {
    display: inline-block;
    font-size: 30px;
    color: #fff;
    transition: .8s ease-in-out;
    margin-right: 20px
}

.mobile-menu .mobile-close a:hover {
    transform: rotate(360deg)
}

.mobile-menu .mobile-menu-body {
    max-height: 100%;
    overflow-y: auto;
    padding: 30px 0
}

.mobile-menu-body span {
    display: none
}

.mobile-menu .mobile-menu-body .navigation-list {
    text-align: left !important
}

.mobile-menu .mobile-menu-body li.dropdown-li > ul.dropdown-list > li, .mobile-menu .mobile-menu-body > .navigation-list > li {
    display: block;
    margin: 0 !important
}

.mobile-menu .mobile-menu-body > .navigation-list > li:not(:last-child) > a {
    border-bottom: 1px solid #fff
}

.mobile-menu .mobile-menu-body li.dropdown-li > ul.dropdown-list > li > a, .mobile-menu .mobile-menu-body > .navigation-list > li > a {
    display: block;
    font-family: Poppins, sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: capitalize;
    color: #fff;
    padding: 10px 20px
}

.mobile-menu.mobile-view {
    transform: translateX(0)
}

.mobile-menu .mobile-menu-body li.dropdown-li {
    position: relative
}

.mobile-menu .mobile-menu-body li.dropdown-li > ul.dropdown-list {
    display: none;
    background: #da0
}

.mobile-menu .mobile-menu-body li.dropdown-li > ul.dropdown-list.dropdown-list-1 {
    margin-left: 30px
}

.mobile-menu .mobile-menu-body li.dropdown-li > a > i {
    float: right;
    font-size: 16px;
    transition: inherit
}

.mobile-menu .mobile-menu-body li.dropdown-li.open > a > i {
    transform: rotate(90deg)
}

/* MOBILE-MENU CSS END */

/* content style  */

.content h1 {
    font-size: 70px;
    font-weight: 700;
    color: var(--c1);
}

.content h2 {
    font-size: 55px;
    font-weight: 700;
    color: var(--c1);
}

.content h3 {
    font-size: 45px;
    font-weight: 500;
    color: var(--c1);
}

.content h4 {
    font-size: 35px;
    font-weight: 400;
    color: var(--c1);
}

.content h5 {
    font-size: 24px;
    font-weight: 300;
    color: var(--c1);
}

.content h6 {
    font-size: 16px;
    font-weight: 300;
    color: var(--c1);
}

.content p {
    font-size: 16px;
    font-weight: 300;
    color: var(--c1);
}


/* HEADER CSS START */

.header {
    position: relative;
}

.header .logo h2 {
    color: #fff;
}

.header .top-row {
    padding: 20px 0;
    background: #063a69;
    border-bottom: 1px solid #fff;
}

.submenu a {
    font-size: 30px;
    line-height: 40px;
    color: #fff;
}

.header .top-row .header-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header .top-row .header-social li:not(:last-child) {
    margin-right: 30px;
}

.header .top-row .header-social li:first-child {
    margin-right: 30px;
}

.header .top-row .header-social li {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.header .top-row .header-social li a {
    color: #fff;
    font-size: 20px;
}

.header .top-row .header-social li a:hover {
    color: #ddaa00;
    transform: rotate(360deg);
}

.header .bottom-row {
    padding: 15px 0 15px;
    width: 100%;
    z-index: 1;
}

.header .bottom-row ul {
    text-align: end;
}

.header .bottom-row .navigation-list > li:not(:last-child) {
    margin-right: 20px;
}

.header .bottom-row .navigation-list > li > a {
    display: block;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
}

.header .bottom-row .navigation-list > li > a::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: #063a69;
    transition: inherit;
}

.header .bottom-row .navigation-list > li > a:hover,
.header .bottom-row .navigation-list > li.active > a {
    color: #fff;
}

.header .bottom-row .navigation-list > li > a:hover::before,
.header .bottom-row .navigation-list > li.active > a::before {
    width: 100%;
}

.header .bottom-row .other-list > li:not(:last-child) {
    margin-right: 20px;
}

.header .bottom-row .other-list > li a {
    display: block;
    font-size: 18px;
    color: #fff;
    position: relative;
}

.header .bottom-row .other-list > li:not(:last-child) > a:hover {
    color: #32cd32;
}

.header .bottom-row .logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .bottom-row .logo a {
    width: 80%;
}

.header .bottom-row .logo img {
    width: 100%;
    object-fit: cover;
}


/* HEADER CSS END */


/* BANNER-SEC CSS START */


/* banner-inner-page start */

.banner-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    background-repeat: no-repeat;
}

.banner-content {
    position: absolute;
    top: 50%;
    transform: translateY(-10%);
    width: 100%;
}

.banner-section {
    position: relative;
}


/* banner-inner-page end */

/* BANNER-SEC CSS END */


/* FOOTER SECTION END */


.mc-instruction {
    display: block;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 1rem;
}

.mc-instruction.inline {
    display: inline-block;
    margin-right: 20px
}

.mc-info-box {
    display: block;
    margin-top: 20px
}

.mc-info-box .heading {
    background-color: #B21919;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px
}

.mc-info-box .heading div {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 13px;
    font-weight: bold;
    height: 25px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 10px;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 25px
}

.mc-info-box .inner {
    background-color: #f7f7f7;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    padding: 20px
}

.mc_invisible {
    visibility: hidden
}

.mc-next {
    text-transform: uppercase
}

.mc-prev {
    display: inline-block;
    /*font-style: italic;*/
    /*margin-bottom: 20px;*/
    text-decoration: none
}

.mc-product-preview {
    background-color: #f7f7f7;
    border-radius: 4px;
    margin-bottom: 20px;
    margin-top: 20px;
    padding: 40px
}

.mc-product-preview img {
    display: block;
    margin: auto;
    max-height: 300px;
    max-width: 100%
}

.mc-price {
    color: #B21919;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase
}

.mc-step-wrapper .button {
    margin-right: 20px
}

.mc-step-wrapper h5 {
    /*font-weight: 600;*/
    /*color: #838383;*/
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 5px;
    margin-top: 0px;
    color: black;
    border: 1px solid #b21919;
    padding: 10px 10px 10px 10px;
}

.mc-step-wrapper h5 span {
    font-weight: 500;
    margin-left: 20px
}

.mc-step-wrapper .left {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%
}

@media screen and (min-width: 992px) {
    .mc-step-wrapper .left {
        float: left;
        display: block;
        margin-right: 2.3576515979%;
        width: 48.821174201%
    }

    .mc-step-wrapper .left:last-child {
        margin-right: 0
    }
}

.mc-step-wrapper .left:last-child {
    margin-right: 0
}

/* .mc-step-wrapper .mc-step-breaker {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}
 */
.mc-step-wrapper .right {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%
}

@media screen and (min-width: 992px) {
    .mc-step-wrapper .right {
        float: left;
        display: block;
        margin-right: 2.3576515979%;
        width: 48.821174201%
    }

    .mc-step-wrapper .right:last-child {
        margin-right: 0
    }
}

.mc-step-wrapper .right:last-child {
    margin-right: 0
}

.mc-tooltip-icon {
    display: inline-block;
    margin-left: 12px
}

.mc-tooltip-icon .inner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    border: 2px solid #B21919;
    border-radius: 50%;
    color: #B21919;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 13px;
    font-weight: bold;
    height: 25px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 25px
}

.mc-tooltip-icon .inner.active, .mc-tooltip-icon .inner:focus, .mc-tooltip-icon .inner:hover {
    background-color: #B21919;
    color: #fff
}

.mc-warn {
    font-style: italic;
    margin-top: 10px
}

.mc-warn.fail {
    color: red
}

.wizard {
    margin: 40px 0px 20px 0px
}

.wizard .wrapper {
    color: #fff;
    display: table;
    width: 100%
}

.wizard .wrapper .cell {
    display: table-cell;
    font-size: 18px;
    position: relative;
    text-align: center;
    vertical-align: middle
}

.wizard .wrapper .cell .progress-bar {
    background-color: #bdbdbd;
    height: 2px;
    position: absolute;
    left: 50%;
    top: calc(50% - 2px);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    width: 100%;
    z-index: -1
}

.wizard .wrapper .cell .step-icon {
    background-color: #fff;
    border: 2px solid #bdbdbd;
    border-radius: 50%;
    display: table;
    height: 40px;
    margin: auto;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    width: 40px
}

.wizard .wrapper .cell .step-icon span {
    color: #bdbdbd;
    display: table-cell;
    vertical-align: middle
}

.wizard .wrapper .cell.active .progress-bar {
    background-color: #B21919
}

.wizard .wrapper .cell.active .step-icon {
    background-color: #B21919;
    border: 2px solid #B21919
}

.wizard .wrapper .cell.active .step-icon span {
    color: #fff
}

label.radio-hack {
    background-color: #fff;
    border: 1px solid #bdbdbd;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    color: #b21919;
    margin: 0px 20px 25px 0px;
    max-width: 100%;
    padding: 10px 60px;
    position: relative;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease
}

label.radio-hack.active {
    background-color: #b21919;
    border: 1px solid #B21919;
    color: #fff;
    font-weight: 700;
}

label.radio-hack.disabled {
    background-color: white;
    opacity: .5;
    cursor: not-allowed;
    border-color: #bdbdbd
}

label.radio-hack:focus, label.radio-hack:hover {
    background-color: #f7f7f7;
    color: #000;
}

label.radio-hack.fixed {
    padding: 10px;
    width: 240px
}

label.radio-hack img {
    display: block;
    margin: auto;
    max-height: 200px;
    max-width: 100%
}

label.radio-hack input[type="checkbox"], label.radio-hack input[type="radio"] {
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
    position: absolute
}

label.radio-hack span.nametag {
    display: block;
    margin-bottom: 5px
}

label.radio-hack .left {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 40.2913699012%
}

label.radio-hack .left:last-child {
    margin-right: 0
}

label.radio-hack .right {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 57.3509785009%
}

label.radio-hack .right:last-child {
    margin-right: 0
}

label.radio-hack-info {
    line-height: 1;
    margin-bottom: 25px
}

label.radio-hack-info input[type="radio"] {
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
    position: absolute
}

.mc-color {
    border: 1px solid #000;
    display: inline-block;
    height: 25px;
    width: 25px
}

#mc-stucco-flange-option {
    margin-right: 8px;
}

.mc-next {
    border: 1px solid #b21919;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    padding: 7px 30px;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    vertical-align: middle;
    background: #b21919;
}

a.mc-prev {
    display: inline-block;
    /*font-style: italic;*/
    /*margin-bottom: 20px;*/
    color: #b21919;
    text-decoration: none;
    text-transform: uppercase;
}

.select-required {
    font-style: italic;
    color: #aaa;
}

.window-pra ul li {
    font-size: 14px;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 0.015em;
    line-height: 1.75;
    list-style: decimal;
    margin-left: 0;
    padding-left: 10px;
    margin-left: 1rem;
}


.mersurement input[type="number"] {
    background-color: #fff;
    border: 1px solid transparent;
    border-color: #bdbdbd;
    border-radius: 4px;
    box-shadow: none;
    padding: 12px;
    width: 60px;
    vertical-align: middle;
}

.mersurement select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    border: 1px solid transparent;
    border-color: #bdbdbd;
    border-radius: 4px;
    box-shadow: none;
    margin-right: 10px;
    padding: 11px;
    vertical-align: middle;
}

a.button.solid {
    border: 1px solid #b21919;
    border-radius: 5px;
    font-weight: 300;
    color: #fff;
    display: inline-block;
    padding: 6px 20px;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    vertical-align: middle;
    background: #b21919;
}

a {
    color: #b21919;
}

.mc-step-wrapper.active {
    display: block;
}

.mc-prev {
    display: inline-block;
    /*margin-bottom: 20px;*/
}

.mc-prev.mc_invisible {
    display: none;
}

.button {
    border: none;
    cursor: pointer;
}

.button[disabled] {
    background-color: #ccc !important;
    cursor: not-allowed;
}

.radio-hack {
    display: block;
    margin-bottom: 10px;
}

.select-required {
    color: red;
    font-size: 12px;
}


/* Overlay */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Modal */
.custom-modal {
    background-color: #fff;
    border-radius: 8px;
    max-width: 800px;
    width: 90%;
    padding: 0px 0px 20px 0px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    /*text-align: center;*/
}

/* Modal Header */
.custom-modal-header {
    font-size: 16px;
    font-weight: 300;
    padding: 10px 10px;
    margin-bottom: 15px;
    background: #b21919;
    color: #fff;
}

/* Modal Body */
.custom-modal-body {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Modal Footer */
.custom-modal-footer {
    display: flex;
    justify-content: center;
    gap: 5px;
    align-items: center;
}

/* Buttons */
.custom-modal-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.custom-btn-primary {
    background-color: #4caf50;
    color: #fff;
}

.custom-btn-secondary {
    background-color: #f44336;
    color: #fff;
}

/* Close Button */
.custom-modal-close {
    position: absolute;
    top: 3px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #fff;
}

.custom-modal-body p {
    font-weight: 200;
}

/* a:hover {
    color: #000;
} */

.hidden-div {
    display: none;

}

.bbtn {
    background-color: #fff;
    border: 1px solid #bdbdbd;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    color: #b21919;
    margin: 0px 20px 25px 0px;
    max-width: 100%;
    padding: 10px 11px;
    width: 240px;
    position: relative;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.bbtn:hover {
    color: #000;
}

.form-popup {
    margin: 10px;
    display: flex;
    flex-direction: column;
    max-width: 800px;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-popup label {
    margin-bottom: 5px;
    font-size: 14px;
    color: #333;
}

.form-popup input {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.form-popup input:focus {
    outline: none;
    border-color: #b21919;
    box-shadow: 0 0 4px rgb(178, 25, 25);
}

.form-popup input::placeholder {
    color: #aaa;
}

.form-popup input:last-of-type {
    margin-bottom: 0;
}

.popup-content {
    padding: 20px;
    text-align: center;
}
