@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Montserrat:wght@100&display=swap');

:root {
    --black: #000000;
    --white: #FFFFFF;
    --red: #E31E24;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--black);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    cursor: pointer;
}

.Top0 {
    top: 0;
}

.r-icon {
    width: 100%;
    height: 100%;
}

/* Header start */
.Navigation-bar {
    position: fixed;
    height: 100px;
    background-color: var(--black);
    display: flex;
    z-index: 2;
    padding: 20px 100px;
    justify-content: space-between;
    width: 100%;
}

.Navigation-bar .logo {
    position: relative;
    width: 150px;
    height: 52px;
    top: 10px;
}

.Navigation-bar .page-links {
    background-color: var(--black);
}

.Navigation-bar .page-links ul {
    position: relative;
    display: flex;
    top: 20px;
    gap: 50px;
}

.Navigation-bar .page-links ul li {
    list-style: none;
}

.Navigation-bar .page-links ul li a:hover {
    color: var(--red);
    transition: all 1.2s;
}

.Navigation-bar .page-links ul li a {
    font-family: 'Marcellus', serif;
    font-size: 18px;
    text-decoration: none;
    color: var(--white);
}

.Navigation-bar .page-links .Active {
    color: var(--red);
    font-family: 'Marcellus', serif;
    font-size: 20px;
}

.menu-icon {
    position: relative;
    top: 13px;
}

.nav-toggle {
    display: none;
}

/* Header End */

/* Main Start */

/* Hero Section */
.Wrapper {
    display: flex;
    height: 710px;
    overflow-y: hidden;
}

.text {
    width: 50%;
    height: 100vh;
    padding: 15px 15px 15px 100px;
    display: flex;
    position: relative;
    top: 220px;
}

.text #Hero-welcome {
    top: 0;
    left: 0;
}

.text h1 {
    font-family: 'Marcellus', serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 80px;
    font-weight: normal;
    color: var(--white);
    margin-top: 15px;
}

.text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--white);
    margin-top: 15px;
    letter-spacing: 4px;
}

.text p span {
    color: var(--red);
    font-weight: 900;
}

.btn {
    position: relative;
    display: inline-block;
    width: 250px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border: 1px solid var(--white);
    color: var(--red);
    text-transform: uppercase;
    font-family: 'Marcellus', serif;
    font-size: 16px;
    letter-spacing: 4px;
    margin-top: 50px;
    overflow: hidden;
    transition: all ease 0.5s;
    border-radius: 50px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--red);
    z-index: -1;
    transition: all ease 0.5s;
}

.btn:hover {
    font-weight: 700;
    color: var(--white);
}

.btn:hover:before {
    left: 0;
}

.img {
    width: 50%;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
}

.img img {
    width: 100%;
    margin: 15px;
}

.img .img-stripe {
    width: calc(50% - 15px);
}

.img .stripe1 {
    animation: stripe-one 40s ease 0s infinite;
}

@keyframes stripe-one {
    50% {
        transform: translateY(-100%);
    }
}

.img .stripe2 {
    transform: translateY(-150%);
    animation: stripe-two 40s ease 0s infinite;
}

@keyframes stripe-two {
    50% {
        transform: translateY(0%);
    }
}

/* About Us Section */
.Heading {
    font-family: 'Marcellus', serif;
    color: var(--white);
    font-size: 20px;
    text-align: center;
    margin: 50px 0 50px 0;
    line-height: 50px;
}

.About-sec {
    width: 100%;
    padding: 0 100px;
    display: flex;
    overflow-y: hidden;
}

.About-sec .About-left {
    width: 50%;
}

.About-sec .About-left img {
    width: 100%;
    position: relative;
    top: 10px;
}

.About-h1 {
    color: var(--white);
    position: relative;
    top: 20px;
    font-family: 'Marcellus', serif;
    font-size: 30px;
    font-weight: 500;
}

.About-h1 span {
    color: var(--red);
    font-weight: 700;
}

.About-p {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    position: relative;
    margin-top: 40px;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 1px;
    font-weight: 600;
    text-align: justify;
}

.About-sec .About-right {
    width: 50%;
    padding-top: 50px;
}

.About-sec .About-right .About-details {
    width: 90%;
    margin-top: 30px;
    top: 30px;
}

.About-sec .About-right #About-more {
    position: relative;
    top: 70px;
    margin-top: 0;
    width: 200px;
}

/* Our Products Section */
.products-sec {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    padding: 20px 75px;
    justify-content: center;
}

.products-sec .Pro-card {
    position: relative;
    border: 0.5px solid white;
    width: 350px;
    height: 350px;
    overflow: hidden;
    margin: 25px;
}

.Pro-card:hover {
    border: 1px solid var(--red);
}

.products-sec .Pro-card .Pro-img {
    position: relative;
    width: 100%;
    height: 100%;
}

.products-sec .Pro-card .Pro-name {
    position: relative;
    color: var(--black);
    z-index: 1;
    top: -400px;
    width: 150px;
    height: 100%;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 35px;
    left: -150px;
    padding-right: 50px;
    transition: all ease-in 0.9s;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.products-sec .Pro-card:hover .Pro-name {
    left: 0;
}

/* CTA Section */
.CTA-sec {
    height: 150px;
    background: linear-gradient(90deg, hsla(350, 93%, 61%, 1) 0%, hsla(8, 98%, 59%, 1) 100%);
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
    padding: 0 100px;
}

.CTA-sec h1 {
    position: relative;
    top: 0;
    line-height: 50px;
    padding: 50px 0;
}

.CTA-sec .btn {
    color: var(--white);
}

.CTA-sec .btn:hover {
    color: var(--black);
}

/* Main End */

/* Footer Start */

.Footer-wrapper {
    display: flex;
    padding: 10px 140px;
    justify-content: space-between;
}

.Footer-wrapper .F-info {
    width: 40%;
}

.Footer-wrapper .F-info .F-logo {
    width: 150px;
    height: 52px;
    position: relative;
    top: 30px;
}

.Footer-wrapper .F-info .F-p {
    font-family: 'Montserrat', sans-serif;
    position: relative;
    top: 20px;
    width: 100%;
    letter-spacing: 1.5px;
}

.Footer-wrapper .F-info .F-social {
    position: relative;
    top: 50px;
    width: 30%;
    display: flex;
    justify-content: space-between;
}

.Footer-wrapper .F-info .F-social .f-icon {
    cursor: pointer;
    color: var(--white);
    transition: all ease .5s;
}

.Footer-wrapper .F-info .F-social .f-icon:hover {
    color: var(--red);
}

.f-icons {
    color: var(--white);
    padding-right: 10px;
}

.F-link {
    color: var(--white);
    font-size: 16px;
    transition: all ease .5s;
}

.F-link:hover {
    color: var(--red);
}

.Footer-wrapper .F-products {
    width: 40%;
    padding-left: 90px;
}

.Footer-wrapper .ul li {
    margin-bottom: 10px;
}

.Footer-wrapper .F-heading {
    position: relative;
    text-align: left;
    margin: 20px 0 20px 0;
}

.Footer-wrapper .F-contact {
    width: 40%;
}

.Footer-wrapper .F-contact .f-icons {
    position: relative;
    top: 5px;
}

.Footer-wrapper .F-contact .phone-icon {
    position: relative;
    top: 20px;
}

.Footer-wrapper .F-contact #left-px {
    position: relative;
    left: 39px;
}

.Footer-wrapper .F-contact .Address {
    margin-top: -20px;
    padding-left: 40px;
}

.Footer-wrapper .F-contact .add-icon {
    position: relative;
    top: 30px;
}

.F-contact .about-p.address::marker {
    z-index: -1;
}

.sub-footer {
    width: 100%;
    height: 50px;
    border-top: 1px solid var(--red);
    margin-bottom: 20px;
    padding: 20px;
}

.sub-footer .About-p {
    margin-top: 0;
    text-align: center;
}

.sub-footer p a {
    color: var(--white);
    transition: all ease 1s;
}

.sub-footer p a:hover {
    color: var(--red);
    font-weight: 900;
}

/* Footer End */

/* About Page Start */

.About-page {
    position: absolute;
    top: 100px;
    width: 100%;
    overflow: hidden;
}

.Page-img {
    height: 200px;
    background-image: url(../img/about-banner.jpg);
    background-size: cover;
}

.Banner-heading {
    font-size: 35px;
    margin: 0;
    padding: 75px;
}

.About-container {
    height: 620px;
    display: flex;
    padding: 0 100px;
}

.Padding-150 {
    padding-left: 150px;
}

.About-container .left {
    padding: 50px;
    width: 50%;
}

.About-container .left .image {
    border: 1px solid red;
    position: relative;
    height: 100%;
    width: 100%;
}

.About-container .left .About-img {
    position: relative;
    width: 100%;
    height: 100%;
}

.About-container .right {
    width: 50%;
}

.About-container .right h1 {
    padding-top: 30px;
}

.About-container .right p {
    width: 90%;
    padding-top: 20px;
}

.Our-aim {
    padding: 50px 140px;
    display: flex;
    width: 100%;
    margin: auto;
    gap: 50px;
}

.Our-aim .Aim {
    border-radius: 10px;
    text-align: center;
    width: 33%;
    height: 310px;
    border: 1px solid var(--white);
    transition: all ease .5s;
}

.Our-aim .Aim:hover {
    border: 1px solid var(--red);
}

.Our-aim .Aim h1 {
    padding: 10px;
}

.Our-aim .Aim p {
    width: 100%;
    padding: 10px;
}

.counter-container {
    background: url(../img/counter.jpg);
    background-size: cover;
    height: 278px;
}

.counter-container .counter-wrapper {
    position: relative;
    width: 100%;
    margin: auto;
    padding: 35px;
}

.counter-container .counter-wrapper .counter-title .Heading {
    margin: 0;
    font-size: 30px;
    font-weight: 500;
}

.counter-container .counter-wrapper .counters {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    padding: 30px 40px;
}

.counter-wrapper .counters .counter .counternumber {
    font-size: 40px;
    font-family: 'Marcellus', serif;
    color: var(--white);
}

.counter-wrapper .counters .counter .counter-name {
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    margin-top: 10px;
    color: var(--white);
}

#footer {
    position: absolute;
    top: 1630px;
}

/* About Page End */

/* Contact Us Page Start */

.contact-container {
    height: 640px;
    display: flex;
}

#contact-banner-img {
    background-image: url('../img/contact-banner.jpg');
    background-size: cover;
}

.contact-container .left {
    width: 30%;
}

.contact-container .left .contact-details {
    height: 500px;
    position: relative;
    top: 70px;
    left: 150px;
    background: linear-gradient(90deg, hsla(350, 93%, 61%, 1) 0%, hsla(8, 98%, 59%, 1) 100%);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-container .left .contact-details .detail .top {
    text-align: center;
    padding: 10px 0;
}

.contact-container .left .contact-details .detail .bottom {
    margin-top: 10px;
}

.contact-container .left .contact-details .detail .bottom p {
    margin-top: 0;
    text-align: center;
}

.contact-container .left .contact-details .detail .bottom p a:hover {
    color: var(--black);
}

#detail1 {
    margin-top: 35px;
}

.contact-container .right {
    width: 70%;
    background: url(../img/pattern-bg.jpg);
    padding-left: 180px;
}

.form {
    overflow-x: hidden;
}

.git {
    padding-top: 60px;
}

.form p {
    margin-top: 40px;
}

.form .lbl {
    display: block;
}

.form .input {
    background: none;
    font-family: 'Montserrat', sans-serif;
    border: 1px solid var(--white);
    height: 30px;
    width: 300px;
    margin-top: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
}

.form .input:hover {
    border: 1px solid var(--red);
}

.form .first {
    display: flex;
    gap: 50px;
}

.form #msg {
    height: 100px;
    width: 650px;
}

.map-wrapper {
    height: 350px;
}

#btn-msg {
    color: var(--black);
    transition: all ease 1s;
}

#btn-msg:hover {
    color: var(--red);
    border: 1px solid var(--red);
}

/* Contact Us Page End */

/* Products Page Start */

#products-container {
    margin-top: 50px;
}

#products-cta {
    margin-bottom: 0;
}

#product-banner-img {
    background-image: url('../img/products-banner.jpg');
    background-size: cover;
}

/* Products Page End */

/* Mortaisehandle Page Start */

.products-container {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    margin: auto;
    padding: 50px 75px;
    justify-content: center;
    padding-bottom: 25px;
}

#mh-banner-img {
    background-image: url('../img/products-banner.jpg');
    background-size: cover;
}

.products-container .pro-model-card {
    position: relative;
    border: 0.5px solid white;
    width: 500px;
    height: 350px;
    overflow: hidden;
    margin: 25px;
}

.pro-model-card:hover {
    border: 1px solid var(--red);
}

.products-container .pro-model-card .pro-model-img {
    position: relative;
    width: 100%;
    height: 100%;
}

.products-container .pro-model-card .model-details {
    position: relative;
    z-index: 1;
    top: 0px;
    width: 100%;
    height: 100%;
    transition: all ease-in 0.9s;
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3px);
    padding: 30px 20px 20px 20px;
}

.products-container .pro-model-card:hover .model-details {
    top: -100%;
}

.products-container .pro-model-card .Heading {
    margin: 0;
    font-size: 22px;
}

.pro-model-card .model-details .pro-model-details {
    color: var(--black);
    font-size: 30px;
    font-weight: bold;
}

.model-details .pro-model-finish {
    color: var(--black);
    padding-top: 20px;
}

/* Mortaisehandle Page End */