* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: justify;
}

.flip-card {
    background-color: transparent;

}




.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-front {
    background-color: #bbb;
    color: black;
}

.flip-card-back {
    background-color: #2980b9;
    color: white;
    transform: rotateY(180deg);
}

.nav-item a {
    font-size: 18px !important;
    transition: 0.3s;
}

/* The outermost element*/
.header-wrapper {
    overflow: hidden;
    width: 100%;
    height: 647px;
    text-align: center;
}

.zoominheader {
    width: 400px;
    height: 200px;
    text-align: center;
    background-size: auto;
    background-attachment: fixed;
    background-repeat: repeat;
    position: relative;
    -webkit-animation: zoomin 10s ease-in infinite;
    animation: zoomin 10s ease-in infinite;
    transition: all .5s ease-in-out;
    overflow: hidden;
}

/* The innermost element*/
.zoomoutheader {
    width: 400px;
    height: 130px;
    text-align: center;
    background: none;
    -webkit-animation: zoomout 10s ease-in infinite;
    animation: zoomout 10s ease-in infinite;
    transition: all .5s ease-in-out;
    overflow: hidden;
}



/* Zoom in Keyframes */
@-webkit-keyframes zoomin {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes zoomin {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(1);
    }
}

/*End of Zoom in Keyframes */

/* Zoom out Keyframes */
@-webkit-keyframes zoomout {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.67);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes zoomout {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.67);
    }

    100% {
        transform: scale(1);
    }
}

/*End of Zoom out Keyframes */

.enquire_btn {
    position: relative;
    display: inline-block;
    font-size: 13px;
    line-height: 30px;
    color: #242424 !important;
    padding: 8px 15px !important;
    font-weight: 400 !important;
    overflow: hidden;
    border-radius: 5px !important;
    letter-spacing: 2px;
    background-color: var(--main-color) !important;
    text-transform: uppercase;
    transition: all ease 0.5s;
}

.enquire_btn .txt {
    color: #000;
    font-size: 18px !important;
    font-family: emoji;
}

.enquire_btn:hover {
    color: #242424 !important;
    background-color: #fff !important;
}

/*Style for the text*/
.text {
    color: red;
    font-weight: bold;
}


.single-banner-slide {
    height: 100vh;
    width: 100vw;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.single-banner-slide span {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}

.single-banner-slide h2 {
    color: #fff;
    text-transform: uppercase;
    font-size: 60px;
    text-align: center;
    font-family: emoji;
}

@media only screen and (max-width:567px) {
    .single-banner-slide h2 {
        font-size: 35px;
    }
}

.single-banner-slide::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
    width: 100%;
    height: 100%;
}

.single-banner-slide p {
    color: #fff;
    font-size: 15px;
    max-width: 50%;
    margin: 0 auto;
    text-align: center;
}

.single-banner-slide a {
    color: #000;
    background: #fff;
    padding: 10px 45px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    margin-top: 30px;
    transition: 0.3s;
}

.single-banner-slide a:hover {
    color: #fff;
    background: #000;
}

.owl-dots {
    display: none !important;
}

.comit_text {
    font-weight: 700;
    font-size: 20px;
}

.quality_img {
    max-width: 100%;
    height: 330px;
    position: relative;
}

.firefly_img {
    max-width: 100%;
    height: 520px;
    padding: 4px;
    border: 2px solid var(--main-color);
}

.accordion-button {
    font-size: 1.1rem;
    padding: 16px;
    font-weight: 600;
    background-color: black;
}

.accordion-button:hover {
    z-index: 2;
    background-color: #ffdfae;
}

.accordion-button:not(.collapsed) {
    color: var(--main-color) !important;
    background-color: #000;
    border-bottom: 1px solid var(--main-color);
}

/* CSS for Header Starts  */
.top_head {
    background-color: #000;
    position: relative;
}

.header_logo {
    max-width: 130px;
    max-height: 130px;
    margin: 0 auto;
}

.header_bot {
    border-bottom: 1px solid #ca994d;
    padding: 30px 20px;
}

.oosem_text {
    color: #ffffff;
    font-family: 'FontAwesome';
    font-size: 51px;
}

@media only screen and (max-width:567px) {
    .oosem_text {
        font-size: 45px;
    }

    a#navbarDropdown_2 {
        padding-left: 13px;
        text-align: start;
    }
}

a.nav-link.text-white {
    color: #ffffff !important;
}

a.nav-link.text-white:hover {
    color: #ca994d !important;
}

a#navbarDropdown {
    color: #fff !important;
}

a#navbarDropdown:hover {
    color: #ca994d !important;
}

a#navbarDropdown_2 {
    color: #fff !important;
}

a#navbarDropdown_2:hover {
    color: #ca994d !important;
}

a.nav-link.text-white {
    width: 150px !important;
}


a#navbarDropdown {
    width: 150px !important;
}

a#navbarDropdown_2 {
    width: 150px !important;
}

.dropdown-menu .dropdown-item:hover {
    background: none;
    color: #ca994d !important;
}

.dropdown-menu .dropdown-item {
    color: #ffffff !important;
}


.out_text {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;

}

.drop_width {
    width: 1270px;
    left: -200%;
    overflow: hidden;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.anti_text {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}

/* CSS for Header Ends  */

.land_bg_img {
    background-image: url('../images/banner/22.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 440px;
    display: flex;
    align-items: center;
}

.land_bg_img_2 {
    background-image: url('../images/banner/44.png');

}

.land_bg_img_3 {
    background-image: url('../images/banner/55.png');

}

.land_bg_img_4 {
    background-image: url('../images/banner/77.png');

}

.land_bg_img_5 {
    background-image: url('../images/banner/5.png');

}

.land_bg_img_6 {
    background-image: url('../images/banner/5.png');

}

/* CSS for Landing Section Starts */
@media only screen and (max-width:567px) {
    .land_bg_img {
        height: 376px;
        background-size: contain;
        background-image: url('../images/mobilebanner/22.png') !important;
    }

    .land_bg_img_2 {
        background-image: url('../images/mobilebanner/44.png') !important;
        height: 376px;

    }

    .land_bg_img_3 {
        background-image: url('../images/mobilebanner/55.png') !important;
        height: 376px;
    }

    .land_bg_img_4 {
        background-image: url('../images/mobilebanner/77.png') !important;
        height: 376px;
    }
}


.mag_center {
    background-color: #0000008c;
    opacity: 0.9;
    position: absolute;
    width: 100%;
    align-items: center;
    /* top: 0; */
    display: none;
    height: 100%;
}

/* CSS for Landing Section Ends */

/* CSS for Discover Section Starts */

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #ca994d !important;
    border-color: #ca994d;
    background-color: #000000;
}

.navbar {
    background-color: #000000ab !important;
}

.nav-item a {
    font-size: 16px !important;
    width: 272px !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    text-align: center;
    text-transform: uppercase;
    font-family: roboto;
}

li.nav-item {
    border: 1px solid #9a9b95;
    text-align: center;
}

.nav-tabs .nav-link:hover {
    color: #ca994d !important;
    background-color: #000000;
}

ul#ex1 {
    border: 0px;
    display: flex;
    position: relative;
    justify-content: center;
}

div#ex1-content {
    padding: 0px 20px;
    border-top: 1px solid #ca994d;
}

.Discover_text {
    font-weight: 600;
    font-size: 38px;
    color: var(--main-color);
    margin-bottom: 20px;
    font-family: roboto;
    text-transform: uppercase;
}

.tiles_img {
    max-width: 100%;
    max-height: 100%;
    border: 1px solid #ca994d;
}

.tiles_title {
    background-color: #ca994d;
    padding: 8px 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-family: roboto;
}

/* CSS for Slider Section Starts  */
button.owl-prev {
    font-size: 40px !important;
    position: absolute;
    left: 0;
    right: 35px;
}

button.owl-next {
    font-size: 40px !important;
    position: absolute;
    left: 10;
}

.owl-nav {
    display: flex;
    justify-content: center;
}

/* CSS for Slider Section Ends  */

/* CSS for Why Choose Us Section Starts */
.bg-gray {
    background-color: #eef1f2 !important;
}

.padd_design {
    padding: 80px 15px 50px 15px;
}

.counter {
    font-size: 44px;
    font-weight: 600;
    color: var(--main-color);
    letter-spacing: -2px;
    text-align: center;
}

.product {
    font-size: 22px;
    font-weight: 600;
    color: #000;
}

.test_img {
    width: 100px;
    height: 100px;
}

.quote {
    font-size: 70px;
    color: #000;
}

.test_name {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    text-align: center;
    font-family: roboto;
}

.test_pos {
    font-size: 15px;
    color: #23252d;
}

.test_border {
    padding: 30px 30px 70px 30px;
    border: 1px solid #eef1f2;
}

/* CSS for Why Choose Us Section Ends */

/* CSS for Trending Section Starts */
.trend_text {
    text-align: center;
    font-size: 38px;
    color: #000;
    font-weight: 600;
}

hr {
    color: var(--main-color) !important;
    border: 1px solid var(--main-color) !important;
}

.trend_img {
    width: 300px;
    height: 300px;
    border: 3px solid var(--main-color);
    border-radius: 50%;
    padding: 5px;
    margin: 0 auto;
}

.trend_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.test_name a {
    color: var(--main-color);
    text-decoration: none !important;
}

.card_move {
    position: relative;
    bottom: 0;
    transition: all ease 0.7s;
}

.card_move:hover {
    bottom: 15px;
}

/* CSS for Trending Section Ends */

/* CSS for Footer Section Starts  */
.fs_footer {
    background-color: #000;
    padding: 60px 0px 60px 0px;
}

.sr_text {
    line-height: 20px;
    color: #fff;
}

.dom_text {
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 10px;
    font-size: 24px;
    font-family: roboto;
}

.list_item li {
    padding: 5px 0px !important;
}

.list_item li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: all ease 0.2s;
    text-transform: uppercase;
    font-family: roboto;
}

.list_item li a:hover {
    color: var(--main-color);
}

.social_icon li {
    padding: 0 10px !important;
}

.social_icon li a {
    font-size: 25px !important;
}

.sc_footer {
    background-color: #000;
    border-top: 1px solid #fff;
}

.copy {
    padding: 20px 0;
    color: #fff;
}

/* CSS for Footer Section Ends  */

/* CSS for Mobile View Starts  */
@media only screen and (max-width:567px) {
    .Discover_text {
        font-size: 22px;

    }

    .tiles_img {
        max-width: 100%;
        max-height: 100%;
        margin: 0 auto;
    }

    .trend_text {
        text-align: left;
        font-size: 22px;
    }

    /* .trend_img {
        max-width: 90%;
        max-height: 90%;
        margin: 0 auto;
    } */

    .copy {
        text-align: center;
    }

    a.nav-link.text-white {
        text-align: left;
        padding-left: 13px;
    }

    a#navbarDropdown {
        text-align: left;
        padding-left: 13px;
    }

    .drop_width {
        width: 100%;
        height: 400px;
        overflow-y: auto;
    }

    .drop_width::-webkit-scrollbar {
        display: none;
    }

    .bgcall-block .icon-content {
        padding: 0px !important;
    }

    .bgcall-block {
        padding: 10px;
    }

    .bgcall-block-number {
        max-width: 90px !important;
        line-height: 0 !important;
    }
}

/* CSS for About Us Section Starts  */
.video_full1 {
    background-image: url("../images/bannerimage12.jpg") !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 50px;
}

.video_full2 {
    background-image: url("../images/bgimg12.png") !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 50px;
}

.video_full3 {
    background-image: url("../images/bgimg13.png") !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 50px;
}


.video_full4 {
    background-image: url("../images/bgimg14.png") !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 50px;
}

.bg_adjust {
    padding: 170px 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    bottom: 0px;
    margin-top: 0px;
    margin-left: 0px;
}

.video_main {
    position: relative;
    z-index: 1;
    margin-top: 40px;
    margin-bottom: 50px;
    margin-right: 40px;
}

.video_main::after {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 100%;
    height: auto;
    background-color: transparent;
    border: 20px solid var(--main-color);
    z-index: 0;
    bottom: -40px;
}

.video_full:before {
    width: 2px;
    height: 30px;
    left: 20px;
    top: 20px;
}

.video_full::after {
    width: 30px;
    height: 2px;
    left: 20px;
    top: 20px;
}

.video-section-inner:before {
    width: 2px;
    height: 30px;
    right: 20px;
    bottom: 20px;
}

.video-section-inner:after {
    width: 30px;
    height: 2px;
    right: 20px;
    bottom: 20px;
}

.video_full:after,
.video_full:before,
.video-section-inner:after,
.video-section-inner:before {
    content: "";
    position: absolute;
    background-color: var(--main-color);
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    overflow: hidden;
}

.video-section-content {
    padding: 30px 0px;
    width: 100%;
}

.video_btn {
    display: none !important;
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    border-radius: 50%;
    z-index: 10;
    width: 60px;
    height: 60px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    transform-origin: center center;
}

.video_btn .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 65px;
    width: 65px;
    text-align: center;
    line-height: 65px;
    background-color: var(--main-color);
    color: #000;
    z-index: 1;
    font-size: 20px;
    padding-left: 5px;
    display: block;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform-origin: center;
    transform-origin: center center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 5px 10px 0 rgba(255, 255, 255, 0.1);
    -moz-box-shadow: 0 5px 10px 0 rgba(255, 255, 255, 0.1);
    -ms-box-shadow: 0 5px 10px 0 rgba(255, 255, 255, 0.1);
    -o-box-shadow: 0 5px 10px 0 rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 10px 0 rgba(255, 255, 255, 0.1);
}

.video_btn .ripple,
.video_btn .ripple:before,
.video_btn .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 65px;
    width: 65px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform-origin: center;
    transform-origin: center center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .3);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, .3);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, .3);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, .3);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .3);
    -webkit-animation: ripple 3s infinite;
    -moz-animation: ripple 3s infinite;
    -ms-animation: ripple 3s infinite;
    -o-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.video_full:after,
.video_full:before,
.video-section-inner:after,
.video-section-inner:before {
    content: "";
    position: absolute;
    background-color: var(--main-color);
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    overflow: hidden;
}

.video-section-bottom {
    position: absolute;
    left: 20px;
    bottom: 20px;
}

.opacity-04 {
    opacity: 0.2;
}

.overlay_main {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.hover_effect {
    position: relative;
    bottom: 0;
    transition: all ease 0.5s;
}

.hover_effect:hover {
    bottom: 20px;
}

@keyframes ripple {
    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* CSS for Mission Vision Section Starts  */
.bg-change-section {
    position: relative;
}

.opacity-05 {
    opacity: 0.5;
}

.bgcall-block {
    height: 500px;
    overflow: hidden;
    position: relative;
    padding: 30px;
    z-index: 1;
    cursor: pointer;
    background-position: center;

}

.overlay-main {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    border-bottom: 1px solid #eee;
}

.bgcall-block-number {
    max-width: 137px;
    position: absolute;
    font-size: 120px;
    font-weight: 700;
    opacity: 0.2;
    color: #fff;
    line-height: 1;
    transition: all .3s ease;
    top: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.bgcall-block:hover .bgcall-block-number {
    top: 42px;
    opacity: 1;
}

.bg-overlay {
    background: rgba(0, 0, 0, .6);
    z-index: -1;
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    width: auto;
    height: auto;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
}

.bgcall-block:hover .bg-overlay {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
}

.icon-content {
    text-align: center;
}

.bgcall-block .site-button-link:hover {
    color: #fff;
}

.bgcall-block .icon-content {
    padding: 0px 20px 0px 20px;
}

/* CSS for Mission Vision Section Ends  */

/* CSS for Superiority Section Starts  */
.full_img {
    background-image: url("https://www.landdecortiles.com/usercss/images/cab.jpg");
    background-attachment: fixed;
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: cover;
}


.small_img {
    max-width: 50px;
}

.non_text {
    font-weight: 600;
    font-size: 16px;
}

/* CSS for Superiority Section Ends  */
/* CSS for Core Values Section Starts  */
.arrow::before {
    content: '';
    position: absolute;
    right: 100%;
    bottom: 0px;
    height: 2px;
    width: 0px;
    z-index: -1;
    background-color: #d7b39a;
    transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.arrow {
    height: 320px;
    transition: all ease 0.5s;
    border: 1px solid #817d7d2b;
}

.arrow:hover {
    border-top: 3px solid #817d7d9c;
    border-bottom: 3px solid #817d7d9c;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.value {
    max-width: 70px;
}

.img_hover {
    background: black;
}

.img_hover img {
    opacity: 1;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.img_hover:hover img {
    opacity: .5;
}

/* CSS for Core Values Section Ends  */
/* CSS for About Us Section Ends  */

/* CSS for Contact Us Section Starts */

.form_gap {
    padding: 30px;
    padding-right: 100px;
    /* background-color: #eef1f2 !important; */
    border: 3px solid var(--main-color);
}

.form-floating>.form-control,
.form-floating>.form-control-plaintext {
    padding: 1rem 0.75rem;
    border: none;
    background: transparent;
    border-bottom: 1px solid var(--main-color);
    border-radius: 0;
    color: var(--main-color);
    font-weight: 500;
    font-size: 20px;
}

.form-select {
    transition: all .2s linear;
    border: none;
    border-bottom: 1px solid var(--main-color);
    border-radius: 0;
    background-color: black;
}

.text_color {
    color: var(--main-color);

}

.text_color b {
    color: var(--main-color);
    font-size: 22px;
}

.fs-5 {
    font-size: 1.20rem !important;
}

.w-50 {
    width: 42% !important;
}

input[type="email"]:focus,
input[type="text"]:focus {
    box-shadow: none;
}

textarea:focus {
    box-shadow: none !important;
}

select:focus {
    box-shadow: none !important;
    border-bottom: 1px solid black !important;
}

.form-select {
    padding: .375rem 2.25rem .375rem 0rem;
    color: #ffffff;
    box-shadow: none;
}

option {
    padding: 10px !important;
}

.form_img {
    background-image: url("https://www.landdecortiles.com/usercss/images/background/bg-map.png");
    background-repeat: no-repeat;
    background-position: center;
}

.form_img {
    margin-left: -100px;
    margin-top: 150px;
    background-color: #000000;
}

.form_shadow {
    box-shadow: 0 10px 30px 0 rgba(50, 50, 50, .16);
    transition: all 0.5s linear;
    border: 3px solid var(--main-color);
}

.lander_text {
    font-weight: 600;
    font-size: 18px;
    color: var(--main-color);
    margin-bottom: 10px;
}

.form-floating>label {
    color: rgb(255, 255, 255);
    padding: 1rem 0rem;
}

.form-floating>.form-control-plaintext:focus,
.form-floating>.form-control-plaintext:not(:placeholder-shown),
.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
    padding-top: 27px;
    padding-bottom: 0px;
}

.form-floating>.form-control,
.form-floating>.form-control-plaintext,
.form-floating>.form-select {
    height: calc(3.5rem + -6px);
    line-height: 1.25;
}

@media only screen and (max-width:567px) {
    .form_gap {
        padding: 30px 15px;
        padding-right: 15px;
    }

    .form_img {
        margin-left: 0;
        margin-top: 50px;
    }
}

/* CSS for Export Section Starts  */
.we_text {
    font-weight: 600;
    font-size: 22px;
    color: #000;
    margin-bottom: 15px;
}

b {
    color: #000;
}

.export_img {
    background-image: url("https://www.landdecortiles.com/usercss/images/export.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.export_img.our-history-pic {
    height: 400px;
    margin-right: 20%;
    margin-bottom: 120px;
    position: relative;
    z-index: 1;
}

/* .pic-bg-border:after {
    content: '';
    width: 50%;
    height: 350px;
    position: absolute;
    right: 15px;
    bottom: 40px;
    border: 30px solid #f0f0f0;
    background-image: url("https://www.landdecortiles.com/usercss/images/background/cross-line2.png")
} */

.pic-bg-border::after {
    content: '';
    width: 40%;
    height: 350px;
    position: absolute;
    right: 80px;
    bottom: -220px;
    border: 30px solid #f0f0f0;
    background-image: url("https://www.landdecortiles.com/usercss/images/background/cross-line2.png")
}

@media only screen and (max-width:567px) {
    .export_img.our-history-pic {
        margin-right: 0%;

    }

    .pic-bg-border::after {
        display: none;
    }
}

/* CSS for Export Section Ends  */

.mywidgettv {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: fixed;
    cursor: pointer;
    z-index: 9999;
    padding: 13px;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: #000;
    color: #fff !important;
    bottom: 50%;
    right: -58px;
    left: unset;
    transform: rotate(450deg);
}

/* CSS for Download Section Starts */
.down_border::after {
    position: absolute;
    content: '';
    left: 0px;
    right: 0px;
    bottom: -10px;
    width: 100%;
    height: 50%;
    background-color: var(--main-color);
    opacity: 0.4;
    z-index: -1;
    display: block;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

.down_border {
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
    overflow: hidden;
    padding: 8px 3px;
}

.padd_mar {
    padding: 20px 25px 15px 25px;
    margin: 0px 5px;
}

a.Catalogue {
    font-size: 20px;
    text-decoration: none;
    color: #000;
}

.down_border:hover {
    transition: all ease 0.7s;
    -webkit-box-shadow: 0 10px 30px 0 rgba(50, 50, 50, .20);
    box-shadow: 0 10px 30px 0 rgba(50, 50, 50, .20);
}

.down_border:hover:after {
    transition: all ease 0.7s;
    height: 200%;
}


/* CSS for Download Section Ends */

/* CSS for Outdoor Section Starts */
.padd_top_bottom {
    padding-bottom: 40px;
    padding-top: 80px;
    background-color: #eef1f2 !important;
}

.about_pad {
    position: relative;
    z-index: 1;
    padding: 80px 40px 80px 40px;
}

.about_img {
    position: absolute;
    min-height: 300px;
}

.padd {
    padding-bottom: 40px;
    padding-top: 80px;
}

.drop {
    border: 3px solid #eee;
    padding: 12px 25px 12px 17px;
}

.cryst_text {
    padding: 8px 0 8px 0 !important;
    color: #000;
}

.cryst_text a {
    color: #000;
    text-decoration: none;
}

.cryst_img {
    max-height: 70px;
    border: 1px solid #eee;
    height: 70px;
    width: 70px !important;
    padding: 4px;
    margin: 0 6px 10px 10px;
    transition: all ease 0.6s;
}

.cryst_img:hover {
    border-color: #000;
    cursor: pointer;
}

.card_img {
    padding-bottom: 25px;
    border-radius: 0;
}

@media only screen and (max-width:567px) {
    .about_pad {
        padding: 0;
    }

    .padd_top_bottom {
        padding: 30px 0px;
    }

    .about_img {
        position: relative;
        min-height: 0;
    }
}

/* CSS for Outdoor Section Starts */

/* CSS for Outdoor Section Starts */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600&family=Roboto:wght@300;400;500;900&display=swap");

main {
    position: relative;
    width: calc(min(90rem, 90%));
    margin: 0 auto;
    min-height: 80vh;
    column-gap: 3rem;
    padding-block: min(20vh, 3rem);
}

.swiper {
    width: 57% !important;
    /* padding-top: 3.125rem; */
}

.swiper-pagination-bullet,
.swiper-pagination-bullet-active {
    background: #fff;
}

.swiper-pagination {
    bottom: 1.25rem !important;
}

.swiper-slide {
    width: 18.75rem;
    height: 25.125rem;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: self-start;
}

.swiper-slide h2 {
    color: #fff;
    font-weight: 800;
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 0.625rem;
    /* padding: 0 0 0 1.563rem; */
    text-transform: uppercase;
}

.swiper-slide p {
    color: #fff;
    font-weight: 300;
    padding: 0 1.563rem;
    line-height: 1.6;
    font-size: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-align: center;
    overflow: hidden;
}

.swiper-slide div {
    display: none;
    opacity: 0;
    padding-bottom: 0.625rem;
}

.swiper-slide-active div {
    display: block;
    opacity: 1;
}

.swiper-slide--one {
    background: linear-gradient(0deg, rgb(0 0 0 / 90%) 0%, rgb(0 0 0 / 22%) 10%),
        url(../images/gal1.jpg) no-repeat 50% 50% / cover;
}

.swiper-slide--two {
    background: linear-gradient(0deg, rgb(0 0 0 / 90%) 0%, rgb(0 0 0 / 22%) 10%),
        url(../images/gal2.jpg) no-repeat 50% 50% / cover;
}

.swiper-slide--three {
    background: linear-gradient(0deg, rgb(0 0 0 / 90%) 0%, rgb(0 0 0 / 22%) 10%),
        url(../images/gal3.jpg) no-repeat 50% 50% / cover;
}

.swiper-slide--four {
    background: linear-gradient(0deg, rgb(0 0 0 / 90%) 0%, rgb(0 0 0 / 22%) 10%),
        url(../images/gal4.jpg) no-repeat 50% 50% / cover;
}

.swiper-slide--five {
    background: linear-gradient(0deg, rgb(0 0 0 / 90%) 0%, rgb(0 0 0 / 22%) 10%),
        url(../images/gal5.jpg) no-repeat 50% 50% / cover;
}

.swiper-slide--six {
    background: linear-gradient(0deg, rgb(0 0 0 / 90%) 0%, rgb(0 0 0 / 22%) 10%),
        url(../images/gal6.jpg) no-repeat 50% 50% / cover;
}

.swiper-slide--seven {
    background: linear-gradient(0deg, rgb(0 0 0 / 90%) 0%, rgb(0 0 0 / 22%) 10%),
        url(../images/gal7.jpg) no-repeat 50% 50% / cover;
}

.swiper-slide--eight {
    background: linear-gradient(0deg, rgb(0 0 0 / 90%) 0%, rgb(0 0 0 / 22%) 10%),
        url(../images/gal8.jpg) no-repeat 50% 50% / cover;
}

.swiper-slide--nine {
    background: linear-gradient(0deg, rgb(0 0 0 / 90%) 0%, rgb(0 0 0 / 22%) 10%),
        url(../images/gal9.jpg) no-repeat 50% 50% / cover;
}

.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
    background-image: none;
}

@media screen and (min-width: 48rem) {
    main {
        display: flex;
        align-items: center;
    }
}

@media screen and (min-width: 93.75rem) {
    .swiper {
        width: 65%;
    }
}

/* CSS for Swiper Ends  */

/* CSS for Browse Our Range of Stones Section Starts */
.range_bg {
    border-top: 1px solid #ca994d;
}

.browse_img {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all ease 0.7s;
}

.browse_img_1 {
    background-image: url(../images/monotone.jpg);

}

.browse_img_2 {
    background-image: url(../images/CRAVING.avif);

}

.browse_img_3 {
    background-image: url(../images/MOSCOW.avif);

}

.browse_img_4 {
    background-image: url(http://stonework.tk/wp-content/uploads/2022/11/shyam-hCNZEo-1pA-unsplash-scaled.jpg);

}

.browse_img_5 {
    background-image: url(../images/terrazzo.jpg);

}

.browse_img:hover {
    background-position: center center;
    background-size: cover;
    cursor: pointer;
    transition: all ease 0.5s;
}

.browse_img_1:hover {
    background-image: url(../images/mono_tone.jpg);

}

.browse_img_2:hover {
    background-image: url(../images/AMAZON_SERIES_hover.avif);

}

.browse_img_3:hover {
    background-image: url(../images/MOSCOW_hover.jpg);

}

.browse_img_4:hover {
    background-image: url(../images/WOOD_hover.jpg);

}

.browse_img_5:hover {
    background-image: url(../images/TERRAZO_hover.jpg);

}

.wood_img {
    background-image: url(../images/wood.png);

}

/* .wood_img:hover {
    background-image: url(../images/wood_2.jpg);

} */

.bg_effect {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    transition: background 0.4s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin: 1rem 1rem 1rem 1rem;
    padding: 5rem 5rem 5rem 5rem;
    border-radius: 10px;
}

@media only screen and (max-width:567px) {
    .bg_effect {
        margin: 0 !important;
        padding: 5rem 1rem 5rem 1rem;
    }

    .pad_mob {
        padding: 0;
    }

    .swiper {
        width: 100% !important;
    }
}

.grant {
    background-color: #fff;
    border-radius: 5px;
    padding-top: 14px;
    padding-right: 34px;
    padding-bottom: 14px;
    padding-left: 34px;
    text-align: center;
    font-family: roboto;
}

.grant_btn {
    color: #2b161b;
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none !important;
}

.grant_btn:hover {
    color: #2b161b;
}

.search_finish_img img {
    min-height: 130px !important;
    border-radius: 10px;
}

.thick_shadow {
    padding: 10px;
    position: relative;
    border: 1px solid black;
    border-radius: 10px;
    box-shadow: 5px 10px #888888;
    background: #dfdfdf;
}

/* CSS for Browse Our Range of Stones Section Ends */

/* 
.modal-dialog {
    max-width: 70%;
} */

.modal_img {
    max-width: 100%;
    height: auto;
    box-shadow: 5px 10px #5b5a5a;
    border: 2px solid black;
    border-radius: 5px;
}

/* .modal_img {
    max-width: 257px;
    height: auto;
} */

.fs_footer {
    position: relative !important;
    z-index: 9999;
}

.background-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.3;
    z-index: -1;
    /* Place the overlay behind other content */
}

.modal-header {
    padding: 10px !important;
}

.modal-title {
    font-size: 27px !important;
    color: black;
}

/* --------New Section---------- */
.fadeIn {
    visibility: visible;
    animation-duration: 1500ms;
    animation-delay: 0ms;
    animation-name: fadeInUp;
}

.service-block-three {
    padding: 0px 10px;
}

.service-block-three {
    position: relative;
    margin-bottom: 30px;
}

.service-block-three .inner-box {
    position: relative;
}

.service-block-three .inner-box .image {
    position: relative;
    overflow: hidden;
}

.service-block-three .inner-box .image img {
    position: relative;
    width: 100%;
    display: block;
    -webkit-transform: scale(1.3, 1.3);
    -ms-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    transition: all 600ms ease;
}

.service-block-three .inner-box:hover .image img {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
}

.service-block-three .inner-box .image a {
    position: relative;
    display: block;
}

.service-block-three .inner-box .image a:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    height: 0px;
    width: 100%;
    opacity: 0.65;
    z-index: 1;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    transition: all 600ms ease;
    background-color: #d3a760;
}

.service-block-three .inner-box:hover .image a:before {
    height: 100%;
}

.service-block-three .inner-box .lower-content {
    position: relative;
    padding: 10px 10px 10px;
    text-align: center;
    background-color: black;
}

.service-block-three .inner-box .lower-content h3 {
    position: relative;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3em;
}

.service-block-three .inner-box .lower-content h3 a {
    position: relative;
    color: #d3a760;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block-three .inner-box .lower-content h3 a:hover {
    color: #ffffff;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

/* ---------------- */
.service-block-three {
    position: relative;

}

.service-block-three .inner-box {
    position: relative;
}

.service-block-three .inner-box .image {
    position: relative;
    overflow: hidden;
}

.service-block-three .inner-box .image img {
    position: relative;
    width: 100%;
    display: block;
    -webkit-transform: scale(1.3, 1.3);
    -ms-transform: scale(1.3, 1.3);
    transform: scale(1.05, 1.05);
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    transition: all 600ms ease;
}

.service-block-three .inner-box:hover .image img {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
}

.service-block-three .inner-box .image a {
    position: relative;
    display: block;
}

.service-block-three .inner-box .image a:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    height: 0px;
    width: 100%;
    opacity: 0.65;
    z-index: 1;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    transition: all 600ms ease;
    background-color: #ca994d80;
}

.box {
    background: #000000;
    padding: 15px;
    min-height: 640px;
    border: 2px solid var(--main-color);
}

.rounded-custom {
    min-height: 605px;
    border-radius: 5px;
    border: 2px solid var(--main-color);
    background-color: black;
}

.text-justify {
    text-align: justify;
}

.fa-quote-left {
    color: var(--main-color);
}

.choose_box {
    background-color: #000000b8;
    padding: 50px 0;
    border-radius: 10px;
    box-shadow: 5px 10px var(--main-color);
    border: 2px solid var(--main-color);
}

.accordion-body {
    background-color: black;
}


:root {
    --main-color: #ca994d;
    --mdb-border-color: #ca994d;
}