@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --color-primary: #054C73;
    --secondery-color: #333333;
    --background-color: #DFE9F4;
    --background: #F2F5FF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

.nav-link {
    font-weight: 600;
    font-size: 12px;
    color: var(--second-color);
    padding-left: 38px !important;
}

@media (max-width:992px) {
    .nav-link {

        padding-left: 0 !important;
    }
}

.navbar-collapse {
    flex-grow: 0;
}

.navbar-brand {
    font-size: 22px;
    color: var(--color-primary);
    font-weight: bold;
}

.hero_wrapper {
    background-image: url(../images/scandinavian-interior-mockup-wall-decal-background\ 1.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    width: 100%;
    display: flex;
    align-items: center;
    min-height: 90vh;

}

@media (max-width: 768px) {
    .hero_wrapper {
        background-position: center;
        min-height: 50vh;
    }
}

.discover_Div {
    background: var(--background-color);
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 16px;
}

.discover_Div small {
    line-height: 30px;
    font-weight: 500;
    font-size: 12px;
    color: var(--second-color);
    letter-spacing: 1px;
}

.discover_Div h1 {
    font-size: 36px;
    margin: 0;
    font-weight: bold;
    color: var(--color-primary);
    line-height: 46px;
}

.discover_Div p {
    font-size: 12px;
    font-weight: 500;
    color: var(--second-color);
    margin-bottom: 10px;
    line-height: 30px;
}

.buy_btn {
    text-decoration: none;
    color: #fff;
    background: var(--color-primary);
    padding: 17px 56px;
    border-radius: 26px;
    font-size: 12px;
    font-weight: 600;
    width: fit-content;
}

@media (max-width: 768px) {
    .discover_Div h1 {
        font-size: 28px;
        font-weight: 700;
        line-height: 40px;
    }

    .discover_Div p {
        font-size: 12px;

        line-height: 24px;
    }

    .buy_btn {
        padding: 14px 36px;
        font-weight: 500;
    }
}

.Hero_bottom {
    background: var(--background);
}

.Image_hero_Div {
    width: 60px;
}

.hero_btm_text>h5 {
    font-size: 20px;
    font-weight: 600;
}

.hero_btm_text p {
    font-size: 14px;
    color: #666666;
}

.collection_text h1 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 12px;
}

.collection_text p {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    color: #666666;
}

.card_Div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-template-rows: 10px 100%;
    gap: 30px;
}

.box_one {
    grid-row-start: 2;
    grid-row-end: 3;
    width: 100%;
}


.box_two {
    grid-column-start: 2;
    grid-column-end: 3;
}

.box_three {
    grid-column-start: 3;
    grid-column-end: 4;
    grid-row-start: 2;
    grid-row-end: 3;
}

.box_one img,
.box_two img,
.box_three img {
    width: 100%;
}

@media (max-width: 768px) {
    .card_Div {
        grid-template-columns: repeat(2, 1fr);
    }

    .box_one {
        grid-column: 1 / 2;
        grid-row: 2;
    }

    .box_two {
        grid-column: 2 / 3;
        grid-row: 2;
    }

    .box_three {
        display: none;
    }
}


.Beautify_section {
    background: var(--background);
}

.img_girl img {
    width: 90%;
}

.img_girl {
    background-image: url(../images/Ellipse\ 5.png);
    background-repeat: no-repeat;
    background-position: right center;
}

.beautify_text h1 {
    font-weight: bold;
    font-size: 28px;
    margin-bottom: 14px;
}

.beautify_text p {
    line-height: 28px;
    font-size: 16px;
    color: #666666;
    margin-bottom: 40px;
}

.room_text h2 {
    font-size: 20px;
    color: #333333;
    font-weight: 650;
}

.Browse-section {
    border-bottom: 1px solid #D7D6D6;
}

.room_text_work h2 {
    font-size: 20px;
    color: #333333;
    font-weight: 700;
}

.room_text_work p {
    font-size: 15px;
    line-height: 26px;
    margin: 0;
    color: #333333;
}


.black_one_circle {
    background-color: black;
    color: #fff;
    margin: auto;
    border: 14px solid #FCFCFC;
    border-radius: 100%;
    padding: 12px 20px;
    position: relative;
    top: -40px;
    font-weight: 600;
    font-size: 20px;
}

.black_circle {
    background-color: black;
    color: #fff;
    margin: auto;
    border: 14px solid #FCFCFC;
    border-radius: 100%;
    padding: 12px 18px;
    position: relative;
    top: -40px;
    font-weight: 600;
    font-size: 20px;

}

.Mailing-section {
    background: var(--background-color);
}


.mail_box input {
    padding: 15px;
    outline: none;
    height: 54px;
    width: 260px;
    border: 1px solid #5a5a5a;
    font-size: 12px;
    font-weight: 300;
    border-right: none;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    margin-right: -6px;

}

.mail_box a button {
    background: var(--color-primary);
    color: #fff;
    border: none;
    font-size: 12px;
    width: 120px;
    height: 54px;
    font-weight: 600;
    border: 1px solid #5a5a5a;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.footer-section {
    background-color: #03344F;
}