/*========================
.1  Header section 
==========================*/
.header-primary {
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 2;
}

.navbar-defaul {
    padding: 20px 15px;
    width: 1460px;
    margin: auto;
}

.navbar-defaul ul {
    margin-right: 0;
    margin-top: 20px;
}

.navbar-defaul ul li {
    position: relative;
}

.navbar-defaul ul li a {
    position: relative;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1px;
    padding: 12px 16px;
    text-transform: uppercase;
}

/*-------- Drop-down menu ----------*/
.navbar-defaul ul li:hover .sub-menu {
    display: block;
}

.navbar-defaul ul li .sub-menu {
    position: absolute;
    width: 255px;
    background-color: #0a81df;
    margin-top: 0;
    z-index: 3;
    display: none;
}

.navbar-defaul ul li .sub-menu li {
    border-bottom: 1px solid #2396f2;
}

.navbar-defaul ul li .sub-menu li:last-child {
    border-bottom: 0px;
}

.navbar-defaul ul li .sub-menu li a {
    display: block;
    color: #fff;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 300;
}

.navbar-defaul ul li .sub-menu li a:hover {
    background-color: #0d67af;
}

.navbar-defaul ul li .sub-menu li a:before {
    display: none;
}

.navbar-defaul ul li.current-menu-item a {
    color: #0a81df;
}

.navbar-defaul ul li.current-menu-item a:before {
    transform: scale(1);
}

.page-template-limited-lifetime-warranty .navbar-defaul ul li.current_page_parent > a,
.page-template-copyright-notice .navbar-defaul ul li.current_page_parent > a {
    color: #0a81df;
}

.page-template-copyright-notice .navbar-defaul ul li.current_page_parent .sub-menu li.current-menu-item a {
    color: #78c0fb;
}

.page-template-limited-lifetime-warranty .navbar-defaul ul li.current_page_parent .sub-menu li.current_page_item a {
    color: #78c0fb;
}


.page-template-limited-lifetime-warranty .navbar-defaul ul li.current_page_parent a:before,
.page-template-copyright-notice .navbar-defaul ul li.current_page_parent a:before {
    transform: scale(1);
}

.navbar-defaul ul li:last-child a {
    color: #fff;
}

.navbar-defaul ul li:last-child a:hover {
    color: #fff;
}

.navbar-defaul .navbar-brand {
    height: auto;
    margin-top: 20px;
}

.navbar-defaul .navbar-collapse {
    padding: 0px;
}

.navbar-defaul ul li:last-child a {
    background-color: #0a81df;
}

.navbar-defaul ul li:last-child a:hover {
    background-color: #0a6cb9;
}

.navbar-defaul ul li a:hover, .navbar-defaul ul li a:focus {
    color: #0a81df;
    background-color: transparent;
}

.navbar-defaul ul li:last-child a:before {
    display: none;
}

.navbar-defaul ul li a:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3px;
    background: url(../images/bullet.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 21px;
    height: 6px;
    margin: auto;
    transition: all 0.4s linear;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    z-index: 1;
}

.navbar-defaul ul li a:hover:before {
    transform: scale(1);
}

.social {
    color: #fff;
}

.social a {
    color: #fff;
    padding: 4px 10px;
    display: inline-block;
}

.social a:hover {
    color: #0a81df;
}

.social span:last-child .fa {
    background-color: #204d81;
    padding: 7px 10px;
}


.header-fixed {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    box-shadow: 0px 0px 20px #534c4c;
    background: rgba(0, 0, 0, 0.6);
    transition: all 0.4s linear;
}

.header-fixed .social {
    display: none;
}

.header-fixed .navbar-defaul {
    padding: 0 15px;
}

.header-fixed .navbar-defaul .navbar-brand {
    margin-top: 0;
}

.header-fixed .navbar-defaul ul {
    margin-top: 15px;
}

.toggle-menu {
    position: relative;
    float: right;
    padding: 9px 10px;
    border-radius: 4px;
    background-color: transparent;
    border: 0px;
    display: none;
}

.toggle-menu .icon-bar {
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 4px;
    transition: all 0.4s linear;
    position: relative;
    display: block;
    margin-bottom: 5px;
}

/*===== toggle class =======*/
.toggle-menu.open span.icon-bar:nth-child(1) {
    transform: rotate(-47deg);
    top: 8px;
}

.toggle-menu.open span.icon-bar:nth-child(2) {
    opacity: 0;
    transform: scale(2, 1);
}

.toggle-menu.open span.icon-bar:nth-child(3) {
    transform: rotate(42deg);
    top: -8px;
}

/*========================
.2  slick slider section
==========================*/
.cover-banner-slider {
    position: relative;
}

.cover-banner-slider .img--holder {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

.cover-banner-slider .cover-text {
    position: absolute;
    top: 60%;
    -webkit-transform: translateY(-60%);
    -moz-transform: translateY(-60%);
    -ms-transform: translateY(-60%);
    -o-transform: translateY(-60%);
    transform: translateY(-60%);
    color: #fff;
    width: 850px;
    text-align: left;
}

.cover-banner-slider .cover-text p {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 300;
}

.cover-banner-slider .cover-text ul li {
    color: #0a81df;
    margin-bottom: 12px;
    font-weight: 500;
}

.cover-banner-slider .img--holder:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
}

.cover-banner-slider .slick-dots {
    bottom: auto;
    top: 50%;
    right: 45px;
    left: auto;
    width: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.cover-banner-slider .slick-dots li {
    background-color: #fff;
    width: 15px;
    height: 3px;
    display: block;
    margin: 17px auto;
    margin-right: 0px;
    transition: all 0.4s linear;
}

.cover-banner-slider .slick-dots li:hover {
    width: 25px;
}

.cover-banner-slider .slick-dots li.slick-active {
    width: 25px;
    background-color: #0a81df;
}

.cover-banner-slider .slick-dotted.slick-slider {
    margin-bottom: 0;
}

.cover-banner-slider .cover-text h1 {
    animation-name: introAnimation;
    animation-fill-mode: both;
    animation-duration: 4s;
    position: relative;
}

.cover-banner-slider .cover-text p {
    position: relative;
    animation-name: introleft;
    animation-fill-mode: both;
    animation-duration: 4s;
    position: relative;
}

.form-fill.bg-color h2 {
    margin-top: 20px;
}

.form-fill.bg-color span.wpcf7-list-item.last.has-free-text input.wpcf7-free-text {
    background-color: #fff;
}

span.wpcf7-not-valid-tip {
    float: left;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: left;
}

.form-fill.bg-color div.wpcf7-mail-sent-ok {
    width: 100%;
    margin: 0 auto !important;
    text-align: center;
    padding: 10px;
    color: green;
    font-size: 18px;
    margin-top: 27px !important;
}

.form-fill.bg-color div.wpcf7-validation-errors {
    width: 100%;
    margin: 0 auto;
    margin-top: 20px;
    text-align: center;
}

.section.form-sec div.wpcf7-validation-errors, .section.form-sec div.wpcf7-mail-sent-ok {
    width: 50%;
    margin: 0 auto;
    margin-top: 20px;
    text-align: center;
    padding: 10px;
}

.page-template-freequote .form-fill.bg-color div.wpcf7-validation-errors,
.page-template-freequote .form-fill.bg-color div.wpcf7-mail-sent-ok {
    width: 50%;
    margin: 0 auto;
    margin-top: 20px;
    text-align: center;
    padding: 10px;
}

@keyframes introleft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes introAnimation {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.down-arrow {
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    text-align: center;
    animation: move 1s infinite alternate;
}

@keyframes move {
    0% {
        transform: translateY(0px);
        opacity: 1;
    }
    100% {
        transform: translateY(10px);
        opacity: 0.9;
    }

}

.alumifold {
    padding: 0px 8px;
}

/*==================
.3 About section
====================*/
.mobile {
    display: none;
}

.about-sec .small-padding {
    padding: 60px;
}

.about-sec .col-md-6 {
    padding: 0;
}

.figer-left {
    background-size: cover;
    height: calc(100% - 50px);
    background-position: center center;
    background-repeat: no-repeat;
}

.abt-con strong {
    font-size: 20px;
    margin-bottom: 20px;
    display: inline-block;
}

.abt-con {
    background-color: #0a81df;
    color: #fff;
    padding: 75px;
    position: relative;
    z-index: 2;
    margin-top: -17%;
}

.about-figer figure:first-child img {
    width: 100%;
}

.about-figer figure:last-child img {
    width: 49.6%;
}

.abt-con:before {
    content: '';
    position: absolute;
    left: 20px;
    right: 20px;
    top: 20px;
    bottom: 20px;
    border: 2px solid #2d93e4;
    z-index: -1;
}

.bg-img {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.content-sec {
    padding-top: 20px;
    padding-bottom: 80px;
}

.content-box article {
    border: 1px solid #ddd;
    padding: 30px;
    margin-bottom: 20px;
    border-left: 10px solid #0a81df;
}

.content-box article:last-child {
    margin-bottom: 0;
}

.content-box article h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #0a81df;
}

.content-box article p {
    margin-bottom: 12px;
    color: #46454a;
}

.content-box article a {
    display: block;
    text-decoration: underline;
    margin-top: 30px;
}

.content-box article p:last-child {
    margin-bottom: 0;
}

/*===========================
  Repeat box Accordian boxes 
=============================*/
.accordian-sec {
    background-image: url('../images/bg-img.jpg');
    padding: 90px 0;
}

.accordian-img, .accrodian-text {
    width: 50%;
}

.accordian-door {
    position: relative;
    margin-bottom: 90px;
}

.accordian-door:last-child {
    margin-bottom: 0;
}

.accordian-img {
    position: absolute;
    left: 0;
    height: 100%;
    overflow: hidden;
}

.accordian-img:before, .accordian-img:after {
    content: '';
    z-index: 3;
    height: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.28);
    width: 100%;
    position: absolute;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.accordian-img:before {
    left: -100%;
    top: -100%;
}

.accordian-img:after {
    top: 100%;
    left: 100%;
}

.accordian-img:hover:before {
    left: 0;
    top: 0;
}

.accordian-img:hover:after {
    left: 0;
    top: 0;
}


.accrodian-text {
    float: right;
    color: #0a81df;
    padding: 50px;
}

.accrodian-text ul {
    margin: 25px 0;
}

.accrodian-text ul li {
    margin-bottom: 18px;
}

.accrodian-text ul li a {
    color: #fff;
}

.accrodian-text ul li a:hover {
    color: #9dd1fb;
}

.accrodian-text ul li:last-child {
    margin-bottom: 0;
}

.accrodian-text-2 h3 {
    color: #fff;
}

.accordian-door:nth-of-type(even) .accordian-img {
    left: auto;
    right: 0;
}

.accordian-door:nth-of-type(even) .accrodian-text {
    background-color: #0a81df;
    color: #fff;
    float: left;
}

.accordian-door:nth-of-type(even) .accrodian-text h3 {
    text-align: left;
}

.accordian-door:nth-of-type(even) .accrodian-text a h3 {
    color: #fff;
}

.accordian-door:nth-of-type(even) .accrodian-text ul {
    padding-left: 40px;
    margin-bottom: 40px;
}

.accordian-door:nth-of-type(even) .accrodian-text h3:before {
    display: none;
}

.accordian-door:nth-of-type(odd) .accrodian-text h3 {
    margin-bottom: 14px;
    padding-bottom: 45px;
}

.accordian-door:nth-of-type(odd) .accrodian-text p {
    color: #46454a;
}

.accordian-door:nth-of-type(odd) .accrodian-text p strong {
    font-size: 16px;
}

.accordian-door:nth-of-type(odd) .accrodian-text {
    background-color: #fff;
}

.accrodian-text h3 {
    line-height: 38px;
    text-align: center;
    position: relative;
    margin-bottom: 0;
    padding-bottom: 35px;
    font-size: 29px;
}

.accrodian-text h3:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 1px;
    height: 30px;
    background-color: #0a81df;
    margin: auto;
    bottom: 0;
}

.accrodian-text p:last-child {
    margin-bottom: 0;
}

/*========== Form fill Section ========== */
.form-fill {
    padding: 40px;
    border: 1px solid #ddd;
    margin: 0 80px;
}

section.section.form-sec .form-fill {
    text-align: center;
}

section.section.form-sec .form-fill .col-sm-6 {
    float: none;
    width: 49%;
    display: inline-block;
    vertical-align: top;
    text-align: center;
}

.form-fill .form-group {
    position: relative;
    margin-bottom: 40px;
}

.form-fill input {
    border: 0px;
    border-bottom: 1px solid #838383;
    outline: none;
    font-size: 16px;
    color: #46454a;
    font-weight: 400;
    padding: 10px 0;
}

.form-fill .form-group p br {
    display: none;
}

.form-fill input[type="submit"] {
    border: 0px;
    background: #2196f3;
    transition: all 0.4s linear;
    color: #fff;
    width: 200px;
    padding: 14px;
    text-transform: uppercase;
    font-weight: bold;
}

.form-fill input[type="submit"]:hover {
    background-color: #0d6cb7;
}

.form-fill .form-group select {
    border: 0px;
    color: #6f6f6f;
    font-size: 16px;
    font-weight: 400;
    background: url("../images/down-a.png") no-repeat scroll 99% center;
    border-bottom: 1px solid #838383;
}

.form-fill .form-group select option {
    font-size: 16px;
}

.form-fill .form-group label, .color-group .colors label {
    float: left;
    font-weight: 400
}


/* .form-fill input:focus ~ label, .form-fill textarea:focus ~ label{top: -4px; font-size: 13px; color: red; }
 */
.form-fill input:valid ~ label {
    color: green;
}

.form-fill h5 {
    font-size: 16px;
    color: #46454a;
    padding-bottom: 30px;
    font-weight: 400;
    padding-left: 15px;
    text-align: left;
}


.checkbox-sec {
    width: 70%;
    padding-left: 15px;
    text-align: left;
}

.checkbox-sec ul {
    padding: 0;
    overflow: hidden;
}

.checkbox-sec ul li {
    display: inline-block;
    margin-bottom: 20px;
    width: 25%;
    margin-right: 20px;
}

.checkbox-sec ul li label {
    position: static;
    margin: 0;
    font-size: 15px;
    margin-left: 6px;
}

.checkbox-sec ul li input:focus ~ label {
    font-size: 15.5px;
}

.checkbox-sec ul li label span {
    display: inline-block;
    vertical-align: middle;
    margin-top: 2px;
}

.checkbox-sec ul li input:valid ~ label {
    color: gray;
}

.checkbox-sec ul li input:checked ~ label {
    color: green;
}


.checkbox-sec ul span.wpcf7-list-item {
    margin: 0px;
    margin-right: 20px;
    padding-bottom: 20px;
    width: 25%;
    color: gray;
    vertical-align: top;
}

.checkbox-sec:nth-of-type(odd) ul li:last-child {
    width: 100%;
}

.checkbox-sec:nth-of-type(odd) ul li:last-child label {
    width: 66%;
    border-bottom: 1px solid #838383;
}

.checkbox-sec p {
    font-size: 16px;
    color: #2196f3;
    margin-bottom: 15px;
}

.form-group.text-area {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.form-group.text-area p {
    text-align: left;
    margin-bottom: 4px;
}

.form-group.text-area textarea {
    background-color: #edeff1;
    border: 0px;
    margin-bottom: 30px;
}

.form-group.text-area button {
    background-color: #2196f3;
    color: #fff;
}

/*============= Free queto page ================*/
span.wpcf7-list-item.last.has-free-text .wpcf7-list-item-label {
}

span.wpcf7-list-item.last.has-free-text input[type="radio"] {
}

span.wpcf7-list-item.last.has-free-text input.wpcf7-free-text {
    position: relative;
    margin-left: 10px;
    margin-top: -6px;
    top: -20px;
    left: 55px;
    border: 0;
    height: 45px;
    padding: 10px;
    background: #f6f8fa;
}

/*========== Inner cover banner ========== */
.cover-banner {
    width: 100%;
    padding-top: 30%;
    position: relative;
    padding-bottom: 60px;
    color: #fff;
}

.cover-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
}

.cover-banner .cover-text {
    position: relative;
}

.cover-banner .cover-text h1 {
    color: #fff;
}

.cover-banner .cover-text p {
    font-size: 20px;
    margin-top: 8px;
}

.cover-banner .cover-text span {
    font-size: 18px;
    color: #fff;
    font-weight: 300;
    display: inline-block;
    margin-top: 10px;
}

.folding-sec {
    background: #fff;
}

.folding-sec .accordian-door .accrodian-text h3 {
    text-align: center;
    position: relative;
    margin-bottom: 12px;
}

.folding-sec .accordian-door .accrodian-text h3:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 1px;
    height: 30px;
    background-color: #fff;
    margin: auto;
    bottom: 0;
    display: block;
}

.folding-sec .accordian-door:nth-of-type(2n) .accrodian-text {
    float: right;
}

.folding-sec .accordian-door:nth-of-type(2n) .accordian-img {
    left: 0;
}

.folding-sec .accordian-door:nth-of-type(4n) .accordian-img {
    right: 0;
    left: auto;
}

.folding-sec .accordian-door:nth-of-type(4n) .accrodian-text {
    float: left;
    background-color: #302f33;
}

.folding-sec .accordian-img {
    width: 60%;
}

.folding-sec .accrodian-text {
    width: 40%;
}

.accrodian-text ol {
    margin-bottom: 30px;
}

.accrodian-text ol li, .text-clr p {
    color: #46454a;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}

.feature {
    background-color: #f5f5f5;
    background-image: none;
}

.feature .accordian-door:nth-of-type(odd) .accordian-img {
    left: auto;
    right: 0;
}

.feature .accordian-door:nth-of-type(even) .accordian-img {
    left: 0;
}

.feature .accordian-door:nth-of-type(even) .accrodian-text {
    float: right;
}

.feature .accordian-door:nth-of-type(even) .accrodian-text h3 {
    text-align: center;
    padding-bottom: 43px;
}

.feature .accordian-door:nth-of-type(even) .accrodian-text h3:before {
    display: block;
    background-color: #fff;
}

.feature .accordian-door:nth-of-type(odd) .accrodian-text {
    float: left;
    background-color: #2196f3;
    color: #fff;
}

.feature .accordian-door:nth-of-type(odd) .accrodian-text h3:before {
    background-color: #fff;
}

.feature .accordian-door .accrodian-text h3 {
    text-transform: uppercase;
}

.feature .accordian-door .accrodian-text ul {
    padding-left: 17px;
}

/*--------------------
 Thumb-nail Section
----------------------*/
.three-cloum {
    padding: 0 30px;
}

.thumb-nail {
    position: relative;
    overflow: hidden;
}

.thumb-nail figure {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.3s;
    transition: all 0.4s;
}

.thumb-nail:hover .flip-item {
}

.thumb-nail figure img {
    width: 100%;
}

.thumb-nail .flip-item {
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    top: 0;
    width: 100%;
    bottom: 0;
    padding: 20px;
    z-index: 1;
    overflow: auto;
    -webkit-transition: all 0.4s;
    color: #fff;
    visibility: hidden;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: perspective(600px) rotateY(90deg);
    -moz-transform: perspective(600px) rotateY(90deg);
    -ms-transform: perspective(600px) rotateY(90deg);
    -o-transform: perspective(600px) rotateY(90deg);
    transform: perspective(600px) rotateY(90deg);
}

.thumb-nail .flip-item .item-box {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.thumb-nail:hover .flip-item {
    visibility: visible;
    transform: perspective(600px) rotateY(0deg);
}

.thumb-nail .flip-item p {
    font-size: 24px;
    font-weight: 400;
}

.thumb-nail .flip-item h3 {
    position: relative;
    margin-bottom: 12px;
    padding-bottom: 46px;
    line-height: 35px;
    font-weight: 500;
}

.thumb-nail .flip-item h3:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 1px;
    height: 30px;
    background-color: #fff;
    margin: auto;
    bottom: 0;
}

/*----------- mural page ------------- */
.wood-select {
    position: relative;
    color: #fff;
}

.wood-select .wood-sec {
    padding-right: 40px;
}

.wood-select .wood-sec h3 {
    font-size: 30px;
}

.wood-select .wood-sec ul li {
    margin-bottom: 15px;
    font-weight: 300;
}

.wood-select .wood-sec p {
    line-height: 25px;
}

.wood-select .wood-sec .btn .fa {
    margin: 0px 10px;
}

.wood-select .col-md-6:last-child .wood-sec {
    padding-left: 70px;
    padding-right: 0;
}

.wood-select:before, .wood-select:after {
    content: '';
    position: absolute;
    width: 50%;
    top: 0;
    bottom: 0;
}

.wood-select:before {
    left: 0;
    background-color: #302f33;
}

.wood-select:after {
    right: 0;
    background-color: #2196f3;
    z-index: -1;
}

.features-sec h3 {
    text-transform: uppercase;
}

.pdf-con {
    margin-top: 40px;
}

.pdf-con a {
    color: #fff;
    display: inline-block;
    margin-right: 40px;
}

.pdf-con a:hover {
    color: #2196f3;
}

.pdf-con a span, .pdf-con a img {
    display: inline-block;
    vertical-align: middle;
}

.pdf-con a span {
    margin-left: 10px;
}

.pdf-con a:last-child {
    margin-right: 0;
}

.bodr-top-botm:last-child h2 {
    margin-bottom: 0;
}

.copyright-con {
    padding-top: 30px;
    padding-bottom: 70px;
}

.copyright-con h5 {
    text-transform: uppercase;
    margin-bottom: 30px;
    font-size: 20px;
}

.copyright-con h3 {
    text-transform: uppercase;
    color: #302f33;
}

.copyright-con p {
    color: #46454a;
}

.copyright-con ol {
    padding-left: 40px;
}

.copyright-con ol li {
    padding-bottom: 20px;
    line-height: 24px;
}

.disclaimer h5 {
    text-transform: uppercase;
    margin-bottom: 30px;
    font-size: 20px;
}

.about-con {
    margin-top: 60px;
    padding-right: 40px;
}

.about-con p {
    color: #46454a;
}

.about-con .btn {
    background-color: #0a81df;
    color: #fff;
    min-width: 244px;
}

.about-figer figure {
    margin-top: 2px;
}

/*===================
    Contact Us
=====================*/
.address-sec address {
    margin-bottom: 0;
    color: #46454a;
    font-size: 16px;
}

.address-sec h5 {
    font-size: 20px;
    margin-bottom: 15px;
}

.address-sec address p {
    margin-bottom: 22px;
}

.address-sec address p > a {
    display: inline-block;
    font-size: 16px;
    color: #46454a;
}

.address-sec address p > a:hover {
    color: #0a81df;
}

.address-sec address span {
    margin-left: 5px;
    display: inline-block;
}

.address-sec .mail {
    position: relative;
}

.address-sec .mail p b {
    position: absolute;
    left: 0;
    margin: 0px;
}

.address-sec .mail p {
    float: left;
    margin-right: 5px;
    margin-top: -3px;
    padding-left: 20px;
}

.map-sec {
    position: relative;
    padding-bottom: 52%;
    margin-top: 30px;
}

.map-sec iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.address-sec address .mail p a {
    color: #0a81df;
}

.address-sec address p b {
    margin-right: 5px;
}

.address-sec address .mail p a:hover {
    color: #46454a;
}

.bg-color {
    margin: 0;
    background-color: #f6f8fa;
    text-align: left;
    border: 0px;
}

.bg-color .form-group input {
    background-color: transparent;
}

.bg-color .text-area {
    margin-top: 0;
    text-align: left;
}

.bg-color .text-area textarea {
    padding: 20px;
    border: 1px solid #d0d0d0;
    font-size: 16px;
    font-weight: 400;
    color: #46454a;
    height: 120px;
    margin-bottom: 10px;
}

.bg-color .text-area label {
    left: 20px;
    top: 16px;
}

.bg-color .text-area textarea {
    background-color: #f0f2f4;
}

.bg-color .form-group input[type="submit"] {
    width: 200px;
    font-weight: bold;
    transition: all 0.4s linear;
    background-color: #2196f3;
    color: #fff;
    text-transform: uppercase;
    margin-top: 20px;
    padding: 14px;
}

.bg-color .form-group input[type="submit"]:hover {
    background-color: #0d6cb7;
}

/*==========================
 Inner common pages listung
============================*/
.product-listing {
    position: relative;
    margin-bottom: 90px;
}

.product-listing:last-child {
    margin-bottom: 0;
}

.product-listing:nth-of-type(odd) .accordian-img {
    right: 0;
    left: auto;
}

.product-listing:nth-of-type(odd) .accrodian-text {
    float: left;
}

.product-listing:nth-of-type(even) .accordian-img {
    right: auto;
    left: 0;
}

.product-listing:nth-of-type(even) .accrodian-text {
    float: right;
}

.product-listing .accrodian-text {
    background-color: #fff;
    color: #000;
    padding: 10px 50px;
}

.product-listing .accrodian-text h3 {
    text-transform: uppercase;
    text-align: left;
    padding-bottom: 23px;
}

.product-listing .accrodian-text h3:before, .bg-white .accrodian-text h3:before {
    display: none;
}

.product-listing ul li {
    margin-bottom: 15px;
    font-size: 15px;
    color: #302f33;
    line-height: 23px;
}

.product-listing .accrodian-text ul {
    margin-top: 0;
}

.bg-white:nth-of-type(even) .accrodian-text {
    background-color: #fff;
    color: #000;
}

.bg-white .accrodian-text h3 {
    text-align: left;
    color: #000;
    text-transform: uppercase;
}

.bg-gray {
    background-color: #f5f5f5 !important;
}

/*=================
 	Faq Section
==================*/

.accordian {
    list-style: none;
    margin: 0px;
    padding: 0px;
    margin-top: 30px;
}

.accordian li {
    margin-bottom: 8px;
    border: 1px solid #ddd;
}

.accordian li h6 {
    padding: 14px 20px;
    cursor: pointer;
    font-size: 18px;
    color: #464646;
    padding-right: 60px;
    font-weight: 400;
    margin-bottom: 0px;
    position: relative;
    text-transform: capitalize;
}

.accordian li h6:before,
.accordian li.active h6:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: center;
    line-height: 55px;
    font-size: 22px;
    width: 55px;
    height: 52px;
    background-color: #0a81df;
    color: #fff;
    font-family: fontAwesome;
}

.accordian li h6:before {
    content: "\f067";
}

.accordian li.active h6:before {
    content: "\f068";
}

.accordian li .drop {
    padding: 20px;
    display: none;
    border-top: 1px solid #ddd;
}

.accordian li .drop p {
    font-size: 15px;
    line-height: 25px;
    color: #232323;
    font-weight: 400;
    margin-bottom: 12px;
}

.figure-blog {
    margin-top: -30%;
}


.bg-light-gray {
    background-color: #f4f4f4;
}

.section p:last-child {
    margin-bottom: 0;
}

/*========================
  Slider Section Repeat
==========================*/
.slider-sec h4, .select-color h4 {
    text-transform: uppercase;
    font-weight: bold;
}

.slider-sec .thum-nail img {
    width: 100%;
    padding: 8px;
    border: 1px solid #e2e2e2;
    background-color: #fff;
}

.slider-sec .thum-nail figcaption {
    font-size: 20px;
    font-weight: 400;
    margin-top: 20px;
}

.slider-sec ul li {
    padding: 0 15px;
}

.slider-sec .slick-prev {
    left: -50px;
}

.slider-sec .slick-next {
    right: -50px;
}

.slider-sec .slick-prev, .slider-sec .slick-next {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    top: 42%;
    background: #5b5b5b;
    color: #fff;
    -webkit-transform: translate(0, -42%);
    -ms-transform: translate(0, -42%);
    transform: translate(0, -42%);
}

.slider-sec .slick-prev:before {
    content: "\f104";
    text-indent: -2px;
}

.slider-sec .slick-next:before {
    content: "\f105";
    text-indent: 4px;
}

.slider-sec .slick-prev:before, .slider-sec .slick-next:before {
    font-family: FontAwesome;
    width: 40px;
    height: 40px;
    line-height: 39px;
    display: inline-block;
    font-size: 30px;
    border-radius: 100%;
    text-align: center;
}

.active-slick {
    background: #3d93d7 !important;
}


.circle-con {
    display: block;
    width: 980px;
    margin: auto;
    margin-top: 50px;
}

.circle-con .circle-itm {
    display: inline-block;
    width: 24%;
    margin-bottom: 20px;
}


.circle-itm span {
    display: inline-block;
    width: 150px;
    height: 150px;
    border-radius: 100%;
    margin: auto;
    border: 2px solid transparent;
}

.circle-itm strong {
    display: inline-block;
}

.circle-con .circle-itm p {
    font-size: 20px;
    font-weight: 400;
    margin-top: 20px;
}

.circle-con .circle-itm:nth-of-type(1) span {
    background: #fff;
}

.circle-con .circle-itm:nth-of-type(2) span {
    background: #e7d1ac;
}

.circle-con .circle-itm:nth-of-type(3) span {
    background: #c0c0c0;
}

.circle-con .circle-itm:nth-of-type(4) span {
    background: #653600;
}

.color-list li {
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    font-weight: 400;
}

.color-list li:before {
    content: '';
    position: absolute;
    left: 0;
    background: url(../images/dot-squr.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 5px;
    height: 5px;
    margin-top: 3px;
}

.mt60 h5 {
    font-weight: 400;
}

/*========================
.7 footer section
==========================*/
.footer-sec {
    background: #000000;
    padding: 30px 0;
    color: #fff;
}

.footer-sec .b-footer h4 {
    font-size: 23px;
}

.footer-sec .b-footer h4 a {
    color: #abb2b8;
}

.footer-sec .b-footer h4 a:hover {
    color: #818182;
}

.footer-sec .b-footer ul li {
    padding: 0;
}

.footer-sec .b-footer ul li a {
    color: #5c6063;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
    border: 1px solid transparent;
    padding: 5px 5px;
    margin: 0 2px;
}

.footer-sec .b-footer ul li a:hover {
    color: #fff;
    border-color: #5c6063;
    background-color: #5c6063;
}

.footer-sec .b-footer p.copy-right {
    color: #424242;
    font-size: 11px;
    margin-bottom: 0;
    padding: 0px;
    font-weight: 500;
}

.footer-sec .b-footer p {
    font-size: 13px;
    color: #204d81;
    font-weight: 500;
    padding: 13px 0;
    margin-bottom: 0px;
}

/*===== back top ==========*/
.back-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    text-align: center;
    z-index: 9;
}

.back-top a {
    font-size: 25px;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    vertical-align: middle;
    line-height: 34px;
    color: #fff;
    background: #0a81df;
    display: inline-block;
    transition: all 0.4s linear;
}

.back-top a:hover {
    background-color: #fff;
    color: #0a81df;
    -webkit-animation: pulse 1s;
    animation: pulse 1s;
    box-shadow: 0 0 0 0.1em rgba(33, 150, 243, 0.7);
}

.form-fill .activeForm {
    top: -4px !important;
    font-size: 13px;
    color: red;
}

.dropdown-menu {
    padding: 0px !important;
}

/*============ Default page css ==========*/
.default-page {
    text-align: center;
    padding: 60px 0;
}

.default-page h1 {
    margin: 0;
    margin-bottom: 20px;
    font-size: 35px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.default-page .page-content input {
    border: 1px solid #ddd;
    padding: 6px 10px;
    width: 200px;
}

.default-page .page-content .search-submit {
    border: 0px;
    padding: 7px 10px;
    color: #fff;
    background-color: #302f33;
}

.default-page .page-content .search-submit:hover {
    background-color: #62626f;
}

.default-page ul {
    list-style: none;
}

.default-page ul li h2, .default-page ul h2 {
    font-size: 25px;
    text-transform: capitalize;
}

.accrodian-text-logo {
    float: left;
    width: 100%;
    text-align: center;
}

.accrodian-text-logo img {
    border-radius: 8px;
}

/*=== Product page links.=====*/
.prod-links.text-center {
    font-weight: bold;
}


.form-fill .customCheckbox {
    float: left;
    position: relative;
    width: 13px;
    height: 13px;
    background: #fff;
    border-radius: 2px;
    border: 1px solid #838383;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 5px;
}

.form-fill .customCheckbox.customCheckboxChecked {
    background: #fff;
    border: 1px solid #454545;
}

.form-fill .customCheckbox input {
    opacity: 0;
    cursor: pointer;
    z-index: 5;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.form-fill .customCheckbox span {
    display: none;
    text-align: center;
    line-height: 20px;
    font-size: 90%;
    color: #222;
}

.form-fill .customCheckbox.customCheckboxChecked span {
    display: block;
    background: #333333;
    width: 7px;
    font-size: 0;
    height: 7px;
    border-radius: 50%;
    margin: 2px auto 0;
}

.accordian-door p a {
    color: #fff;
}

.page-template-murals .accordian-door p a:hover {
    color: #074a80;
}

.page-template-thank-you .cover-banner {
    width: 100%;
    padding-top: 0;
    position: relative;
    padding-bottom: 0;
    color: #fff;
    height: calc(100vh - 181px) !important;
}

.page-template-thank-you .cover-banner .cover-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.page-template-thank-you .cover-banner .cover-text h1 {
    line-height: 1.5;
}


.door-model-series, .color-group .colors {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.door-model-series label, .color-group .colors label {
    font-weight: 400;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.door-model-series label:has(input:checked), .color-group .colors label:has(input:checked) {
    background: #0A81DF;
    color: #fff;
}

.door-model-series label input, .color-group .colors label input {
    margin: 0;
    accent-color: #0A81DF;
    width: 14px;
    height: 14px;
}

.color-group {
    text-align: left;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    display: none;
}

.color-group
.series-name {
    font-size: 15px;
    color: #2196f3;
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}

.color-group .colors {
    display: flex;
}

.door-model-series-label {
    text-align: left;
    margin-bottom: 15px;
}

.wpcf7-not-valid-tip {
    font-size: 10px;
    font-weight: 600;
}

#color-name-wrapper,
#color-number-wrapper {
    display: none;
}