* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg_color: #c2191e;
    --white: #fff;
    --black: #000;
}

body {
    position: relative;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    transition: ease-in-out .3s;
}

.img {
    overflow: hidden;
    position: relative;
}

.img:hover::after {
    transition: all 400ms linear;
    visibility: visible;
    animation: fadeInUp 1s;
}

.img:after {
    background: rgba(255, 255, 255, 0.369);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    z-index: 9;
}

@keyframes fadeInUp {
    from {
        opacity: 1;
        height: 0;
    }

    to {
        opacity: 0;
        height: 100%;
    }
}

@keyframes mymove {
    from {
        width: 0%;
    }

    to {
        width: 100%;
        opacity: 0;
    }
}

p {
    font-size: 15px;
    line-height: 28px;
    font-family: "Work Sans", sans-serif;
}

a {
    text-decoration: none;
    transition: ease-in-out .3s;
}

li {
    list-style: none;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

.my {
    margin: 70px 0;
}

.toggle {
    display: none;
}

.nav_close {
    display: none;
}

nav {
    position: relative;
    top: 0;
    width: 100%;
    z-index: 99;
    padding: 0 4%;
}

.toggle .line {
    width: 33px;
    height: 4px;
    background-color: #000;
    margin-bottom: 5px;
    border-radius: 3px;
    transition: ease-in-out .4s;
}

/* .toggle.toggle_active .line:nth-child(1){
    transform: rotate(45deg);
        margin-top: 8px;
}
.toggle.toggle_active .line:nth-child(2){
    display: none;
}
.toggle.toggle_active .line:nth-child(3){
        transform: rotate(-45deg);
            margin-top: -8px;
} */

#myHeader.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    animation: slideDown 1s ease-out;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    background-color: #fff;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

#myHeader.sticky .logo {
    margin-top: 0px;
}

#myHeader.sticky .logo img {
    width: 130px;
    border-radius: 0px;

}

.logo img {
    width: 190px;
    border-radius: 42px;

}

.logo {
    position: relative;
    margin-top: -43px;
}

.nav_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar_nav .nab_flex {
    display: flex;
}

.navbar_nav ul li {
    position: relative;
    padding: 20px 20px;
}

.navbar_nav ul a {
    color: var(--black);
}

.navbar_nav ul li:hover>.dropdown {
    display: block;
    transition: ease-in-out .5s;
}

.dropdown {
    position: absolute;
    width: 250px;
    top: 100%;
    left: 0;
    background-color: var(--white);
    transition: ease-in-out .5s;
    display: none;
}


.navbar_nav ul .dropdown li {
    padding: 8px 20px;
}

.navbar_nav ul .dropdown li:hover {
    background-color: var(--bg_color);
}

.navbar_nav ul .dropdown li:hover a {
    color: var(--white);
}

#myHeader.sticky .navbar_nav .dropdown li:hover a {
    color: var(--white);
}

.dropdown .dropdown {
    left: 100%;
    top: 0;
}

.dropdown_btn {
    position: absolute;
    right: 0;
    top: 35%;
    color: var(--white);
    cursor: pointer;
}

.show_dropdown {
    display: block;
}

.search_btn {
    background-color: var(--bg_color);
    border-radius: 50%;
    padding: 0px 10px;
    cursor: pointer;
    color: var(--white);
}


.search {
    position: fixed;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #000000e2;
    padding: 6% 10% 0% 9%;
    transition: ease-in-out .5s;
    visibility: hidden;
    z-index: 999;
}

.show {
    top: 0%;
    visibility: visible;
}

.search input {
    width: 96%;
    border: none;
    outline: none;
    padding: 10px 15px;
}

.cancal {
    color: var(--white);
    position: absolute;
    right: 3%;
    top: 5%;
    font-size: 30px;
    cursor: pointer;
}

.banner_item img {
    width: 100%;
    height: 100%;
}

.banner_item {
    position: relative;
}

/* .banner_item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #0000007b;
} */

.nav_right {
    display: flex;
    align-items: center;
    gap: 0 20px;
}


.banner_contant {
    position: absolute;
    top: 30%;
    width: 100%;
    z-index: 9;
    width: 50%;
    left: 7%;
    color: var(--white);
}



.banner_tittle {
    font-size: 50px;
    font-weight: 600;
    color: var(--white);
    display: block;
    transition: ease-in-out .9s;
    margin-bottom: 15px;
}

.banner_contant p {
    font-size: 16px;
}

.nextarrow {
    position: absolute;
    right: 2%;
    top: 50%;
    color: var(--white);
    font-size: 25px;
    cursor: pointer;
}

.prevarrow {
    position: absolute;
    left: 2%;
    top: 50%;
    color: var(--white);
    font-size: 25px;
    z-index: 9;
    cursor: pointer;
}

.slick-vertical .slick-slide {
    border: none
}

.banner_item.slick-slide.slick-current.slick-active .banner_tittle {
    animation: stickySlideDown 1.5s ease-in-out;
    transform: translateY(0px);
    transition: ease-in-out .9s;
}

@keyframes stickySlideDown {
    0% {

        transform: translateY(200px);

        opacity: 0;
    }

    100% {

        transform: translateY(0);

        position: 1;
    }
}

.top_head {
    background-color: var(--bg_color);
    padding: 5px 0;
}

.top_main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20%;
}

.top_tittle p {
    margin-bottom: 0;
    color: var(--white);
}

.top_num {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.top_num a {
    color: var(--white);
}


.contact_details_top {
    position: relative;
}

.contact_details_top {
    position: relative;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    border-bottom: 1px solid #c1c1c1;
}

.contact_details_top.text-center.show_details {
    max-height: 300px;
    opacity: 1;

}

.top_contact_details i {
    transition: ease-in-out .3s;
    margin-left: 5px;
}

.btn_toggle i {
    transform: rotate(180deg);

}

.socal_media {
    display: flex;
    align-items: center;
    gap: 0 20px;
}

.socal_media a {
    color: var(--white);
}

.top_num i {
    margin-right: 10px;
}

.ab_home {
    display: flex;
}

.ab_img {
    width: 45%;
    float: left;
    margin-right: 30px;
}

.small_head {
    display: block;
    font-size: 20px;
    font-family: "Noto Serif", serif;
    color: var(--bg_color);
}

.big_head {
    display: block;
    font-size: 40px;
    margin-bottom: 10px;
    font-family: "Noto Serif", serif;
    font-weight: 600;
}

.pro_box {
    position: relative;
}

.pro_box::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #00000061;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 58%, rgba(0, 0, 0, 1) 100%);
}

.products a {
    color: #fff;
}

.pro_head {
    font-size: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
    padding: 10px;
    font-family: "Noto Serif", serif;
}

.stairs {
    background-color: #b2b2af;
}

.stairs_contant {
    padding: 80px 0;
    padding-left: 8%;
}

.stairs_contant ul li {
    margin: 10px 0;
    font-weight: 600;
    list-style: circle;
    font-size: 17px;
    color: #434343;
}

.stairs_contant ul {
    padding-left: 20px;
}

.gallery_item {
    margin: 5px;
    border: 3px solid #e6e6e6;
    padding: 2px;
}

.test_box {
    padding: 50px 0;
}

.stars {
    width: 150px;
    margin-bottom: 15px;
}

.box_name img {
    width: 100px;
    border-radius: 50%;
}

.box_name .name {
    display: block;
    font-size: 20px;
}

.contact form {
    background-color: #cecece2a;
    padding: 40px;
    border: 1px solid #c2191f48;
}

.contact input,
.contact select,
.contact textarea {
    width: 100%;
    padding: 13px;
    margin-bottom: 10px;
    background-color: #c2191f0d;
    border: 1px solid #c2191f48;
    outline: none;
}

.contact-info-wrap {
    background-color: #f9f3f0;
    padding: 30px;
}

.contact-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 25px;
    background-color: var(--white);
    padding: 25px;
    margin-bottom: 20px;
}

.contact-info_icon {
    display: inline-block;
    width: 70px;
    min-width: 70px;
    height: 70px;
    line-height: 70px;
    background-color: var(--bg_color);
    color: var(--white);
    text-align: center;
    font-size: 35px;
    position: relative;
}

.media-body {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.box-title {
    font-size: 20px;
    line-height: 30px;
    display: block;
}

.contact-info_text a {
    color: #6e6e6e;
}

.contact-info-wrap .big_head {
    font-size: 30px;
}

.all_btn {
    background: var(--bg_color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 3px;
    border: none;
    position: relative;
    z-index: 9;
    transition: ease-in-out .5s;
}

.all_btn:hover {
    background-color: #000;
}

.malti_star {
    margin-top: 150px;
}

footer {
    color: var(--white);
    background-repeat: no-repeat;
    background-size: cover;
}

.foot_bg {
    padding-top: 80px;
    background-color: #000000d4;
}

.foot_head {
    display: block;
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
    font-family: "Noto Serif", serif;
}

.foot_logo img {
    width: 150px;
    margin-bottom: 10px;
}

.foot_nav ul li a {
    color: #fff;
    display: block;
    padding: 6px 0;
}

.foot_contact li a {
    color: #fff;
}

.foot_nav ul li a:hover {
    color: var(--bg_color);
}

.foot_contact li {
    margin: 20px 0;
}

.foot_contact li i {
    color: var(--bg_color);
    margin-right: 8px;
}

.foot_nav ul {
    max-height: 230px;
    overflow: auto;
}

.foot_contact .socal_media a {
    color: var(--white);
}

.copy_right {
    padding: 18px 0;
    border-top: 1px solid #343434;
    margin-top: 50px;
}

.copy_right p {
    margin-bottom: 0;
    color: var(--white);
}

.copy_right p a {
    color: var(--white);
}
.pro_item{
    margin: 10px;
}











.share-btn-box ul {
    display: flex;
    gap: 8px;
}

.share-btn-box ul button {
    border: none;
    background-color: var(--bg_color);
    color: var(--white);
    padding: 7px 10px;
    border-radius: 3px;
}

.inner_text {
    position: absolute;
    bottom: 20%;
    width: 100%;
    z-index: 9;
    color: var(--white);
    text-align: center;
    padding: 0 10px;
}

.inner_header img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.inner_header {
    position: relative;
}

.inner_header::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #000000a8;
}

.brade_crom a {
    color: #fff;
}

.what-app {
    position: fixed;
    z-index: 99;
}

.btn-whatsapp-pulse-border {
    bottom: 30px;
    right: 20px;
    animation-play-state: paused;
}

.marcket-plase a {
    display: block;
    margin-bottom: 10px;
}

.back-to-top {
    background: #fff;
    position: fixed;
    right: 1%;
    bottom: 3%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: ease-in-out .5s;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(0);
}

.back-to-top.scroll_show {
    transform: scale(1);
    bottom: 3%;
}

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 30px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 20px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.what-app i {
    font-size: 38px;
    color: #fff;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@media only screen and (max-width: 991px) {
    .nav_right {
        display: none;
    }

    .top_con {
        display: none !important;
    }

    .contact-info-wrap {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 780px) {
    .navbar_nav {
        position: absolute;
        left: -100%;
        top: 0;
        background-color: #000;
        width: 70%;
        height: 100vh;
        overflow: auto;
        transition: ease-in-out 0.5s;
        padding-top: 20px;
    }

    .navbar_nav.show_nav {
        left: 0;
    }

    .navbar_nav .nab_flex {
        flex-direction: column;
    }

    .nav_close {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        background-color: #fff;
        padding: 5px 11px;
        font-weight: 900;
        z-index: 99;
    }

    .toggle {
        display: block;
    }

    .dropdown {
        position: absolute;
        width: 100%;
        top: 100%;
        left: -100%;
        background-color: #000;
        z-index: 99;
        padding-top: 20px;
        display: block;
        background-color: #fff;
        overflow: auto;
    }

    .navbar_nav .dropdown a {
        color: #000;
    }

    .dropdown_btn {
        background-color: #fff;
        color: #000;
        padding: 4px 8px;
    }

    .dropdown_btn_show i {
        transform: rotate(180deg);
        transition: ease-in-out .5s;
    }

    .show_dropdown {
        left: 0;
    }

    .navbar_nav ul li {
        padding: 12px 20px;
        border-bottom: 1px solid #2e2d2d;
    }

    .navbar_nav ul a {
        color: var(--white);
    }

    .inner_header img {
        height: 200px;
    }

    .ab_item {
        width: 100%;
        padding-right: 0px;
        margin-bottom: 15px;
    }

    nav {
        padding: 0;
    }
}


@media only screen and (max-width: 800px) {
    .logo {
        margin-top: 0;
    }

    .logo img {
        width: 112px;
        border-radius: 0;
    }

    .big_head {
        font-size: 30px;
    }

    .top_main {
        padding-left: 0;
    }
}

@media only screen and (max-width: 768px) {
    .ab_img {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 10px;
    }

    .malti_star {
        margin-top: 0;
    }

    .my {
        margin: 30px 0;
    }
}


@media only screen and (max-width: 650px) {
    .stairs_contant {
        padding: 36px 0;
        padding-left: 0%;
    }

    .big_head {
        font-size: 23px;
    }

    .small_head {
        font-size: 17px;
    }

    .contact-info-wrap .big_head {
        font-size: 21px;
    }
}

@media only screen and (max-width: 550px) {
    .top_num {
        justify-content: center;
        gap: 7px;
    }

    .contact form {
        padding: 20px;
    }

    .contact-info_icon {
        width: 45px;
        min-width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 20px;
    }

    .contact-info {
        gap: 6px;
        padding: 13px;
    }

    .contact-info-wrap {
        padding: 17px;
    }

    .box-title {
        font-size: 15px;
    }
    .foot_head{
        font-size: 24px;
    }
}