/********** Template CSS **********/
:root {
    --primary: #009CFF;
    --secondary: #777777;
    --light: #F8F8F8;
    --dark: #252525;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 20px 0;
    color: #571238;
    font-weight: 500;
    outline: none;
    letter-spacing: -.04em;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--dark);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 8px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid rgba(87, 18, 56, .2)
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
#header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
}

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

#header-carousel .carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
    text-indent: 0;
    margin-bottom: 15px;
    border: 2px solid #FFFFFF;
    border-radius: 60px;
    overflow: hidden;
}

#header-carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

/*.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 4px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}
*/
.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}



/*** Img Border ***/
/*.img-border {
    position: relative;
    height: 100%;
  
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid #571338;
    border-radius: 6px;
}*/

.img-border img {
    /*position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;*/
    border-radius: 6px;
}


/*** Facts ***/
.fact-item {
    transition: 0.5s;
    color: #fff;
}

.fact-item i,
.fact-item h1,
.fact-item h5 {
    color: #fff1e2;
    transition: 0.5s;
}
.fact-item h5{font-weight:100;
font-size:.9em;}
.fact-item h1{font-weight:600;
font-size:2em;}
.fact-item:hover {
    margin-top: 0px;
    background: url(../img/maram.jpg) center center no-repeat;
    background-size: cover;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
    color: #571238; /* This sets the color for non-specified elements inside */
}

.fact-item:hover i,
.fact-item:hover h1,
.fact-item:hover h5 {
    color: #571238; /* Explicitly change text color on hover */
}



/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    box-shadow: none;
    border: 1px solid #DEE2E6;
}


/*** Feature ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Project ***/
.project-item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .5);
    border-radius: 6px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover a {
    opacity: 1;
}

.project-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.project-carousel .owl-dot {
    width: 35px;
    height: 35px;
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 35px;
    transition: .5s;
}

.project-carousel .owl-dot:hover,
.project-carousel .owl-dot.active {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}
.team-item h5{
    color:#571238;
    font-size:1.1em;
}
.team-item span{
    color:#571238;
    display:block;
    margin-bottom:10px;
    font-size:.9em;
    font-weight:600;
}
/*.team-item .team-text {
    position: relative;
    height: 65px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-item:hover .team-title {
    top: -65px;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 65px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    margin: 0 3px;
}

.team-item:hover .team-social {
    top: 0;
}
*/

/*** Testimonial ***/

.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #fdd2a1;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    font-size:1.05em;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fdd2a1;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #fff;
    
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
     color: #fdd2a1;
}

.footer .copyright a {
    color: #fdd2a1;
}

.footer .copyright a:hover {
    color: var(--primary);
}
/*my custom css*/
.navbar-brand img{width:230px;
height:auto;}
.navbar-brand2 img{width:148px;
height:auto;}
.navbar-brand3 img{width:206px;
height:auto;}
.navbar-brand4 img{width:153px;
height:auto;}
.navbar-brand5 img{width:211px;
height:auto;}
.navbar-brand6 img{width:105px;
height:auto;}
.navbar-brand7 img{width:150px;
height:auto;}
.text-purple{color:#571238;}
.bg-dark-purple {
  background-color:#220314 !important
}
.bg-purple {
  background-color:#571238 !important
}
.bg-cream {
  background-color:#fbeede !important
}
.bg-wood {
 background: url(../img/maram.jpg) center center no-repeat;
    background-size: cover;
}
.bg-wood-med {
 background: url(../img/maram-2.webp) center center no-repeat;
    background-size: cover;
}
.bg-wood-dark {
 background: url("../img/darkwoodbg.jpg") center center no-repeat;
    background-size: cover;
}
.bg-wood-black {
 background: url("../img/wood-black.webp") center center no-repeat;
    background-size: cover;
}
.my-font-weight{font-weight: 500;
font-size:17px;}
.fa-2x {
  font-size:1.6em
}

/* Common styles for all overlays */
.arun-overlay {
  position: relative;
  overflow: hidden;
  border-radius: 0px; /* Optional: Rounded corners */
}

.arun-overlay img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.arun-overlay .overlay-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center;     /* Center vertically */
  font-size: 1.2rem;
  opacity: 0;  /* Initially hidden */
  z-index: 1;
  transform: translateY(-100%); /* Initially positioned off-screen */
  padding: 20px;
  transition: transform 0.5s ease, opacity 0.5s ease; /* Smooth transition */
}

/* Hover effect for the image */
.arun-overlay:hover img {
  transform: scale(1.1); /* Slight zoom effect on hover */
}


/* === Style 1: Slide In and Out === */
@keyframes slideInRight {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}

.style-1 .overlay-text {
  animation-name: slideInRight;
  /*background: rgba(0, 0, 0, 1);*/
    background: rgba(87, 18, 56, 1);
  animation-duration: 8s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-delay: 0s;
}

/* === Style 2: Slide In and Out === */
@keyframes slideInOut {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}

.style-2 .overlay-text {
  animation-name: slideInOut;
  background: rgba(87, 18, 56, 1);
  animation-duration: 8s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-delay: 0s;
}

/* === Style 3: Zoom In and Out === */
@keyframes zoomInOut {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}

.style-3 .overlay-text {
  animation-name: zoomInOut;
  /*background: rgba(0, 0, 0, 1);*/
    background: rgba(87, 18, 56, 1);
  animation-duration: 8s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-delay: 0s;
}

/* === Style 4: Slide from Bottom Effect === */
@keyframes slideBottomEffect {
  0% {
    transform: translateY(100%); /* Start from below the screen */
    opacity: 0;
  }
  50% {
    transform: translateY(0); /* Slide into the normal position */
    opacity: 1;
  }
  100% {
    transform: translateY(100%); /* Slide back down */
    opacity: 0;
  }
}

.style-4 .overlay-text {
  animation-name: slideBottomEffect;
  background: rgba(87, 18, 56, 1);
  animation-duration: 10s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-delay: 0s;
}

/* === Style 5: Slide Right Effect === */
@keyframes slideRightEffect {
  0% {
    transform: translateX(-100%); /* Start from the left */
    opacity: 0;
  }
  50% {
    transform: translateX(0); /* Slide into the normal position */
    opacity: 1;
  }
  100% {
    transform: translateX(100%); /* Slide out to the right */
    opacity: 0;
  }
}

.style-5 .overlay-text {
  animation-name: slideRightEffect;
  /*background: rgba(0, 0, 0, 1);*/
    background: rgba(87, 18, 56, 1);
  animation-duration: 8s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-delay: 0s;
}

.arun-overlay .overlay-text h3{color:#fff;
font-size: 1.2rem;
font-weight:100;}
.arun-overlay .overlay-text h3:hover{color:#e62a92;
font-size: 1.2rem;
font-weight:100;}
/* Hover effect for the image */
.arun-overlay:hover img {
  transform: scale(1.1); /* Slight zoom effect on hover */
}

.btn-purple {
  color:#fff;
  background-color:#571338;
  border-color:#480e2e
}
.btn-purple:hover {
  color:#ebaa5b;
  background-color:#410c29;
  border-color:#340a21
}
.btn-check:focus+.btn-purple,
.btn-purple:focus {
  color:#fff;
  background-color:#340a21;
  border-color:#000;
  
}
.my-footer{}
.my-footer p{color:#fff;
font-size: 1em;
line-height:26px;}

/*** my door carousal ***/

.mydoor-carousel .owl-item .mydoor-item img {
    width: 60px;
    height: 60px;
}

.mydoor-carousel .owl-item .mydoor-item,
.mydoor-carousel .owl-item .mydoor-item * {
    transition: .5s;
}

.mydoor-carousel .owl-item.center .mydoor-item {
    background: var(--primary) !important;
}

.mydoor-carousel .owl-item.center .mydoor-item * {
    color: #FFFFFF !important;
}

.mydoor-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.mydoor-carousel .owl-nav .owl-prev,
.mydoor-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #571238;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.mydoor-carousel .owl-nav .owl-prev:hover,
.mydoor-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    border-color: #571238;
    background: #571238;
}

.overlay-container {
    position: relative;
    overflow: hidden;
}

.door-image {
    display: block;
    width: 100%;
    transition: transform 0.5s ease;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s ease;
    opacity: 0;
}

.overlay a {
    color: #dcc4b1;
    font-size: 2rem;
    text-decoration: none;
}

.overlay-container:hover .door-image {
    transform: scale(1.1); /* Slight zoom effect on hover */
}

.overlay-container:hover .overlay {
    transform: scaleX(1);
    opacity: 1;
}
.mylink a{color:#571238;}
.mylink a:hover{color:#000;}

.my-list-style ul {
    list-style: none; /* Remove default bullets */
    padding-left: 0em; /* Add padding for custom bullets */
}

.my-list-style ul li {
    position: relative; /* Position relative for custom bullet */
    padding-left: 1.4em; /* Ensure space for the custom bullet */
    margin-bottom:12px;
}
.my-list-style ul li:last-child {
    margin-bottom: 0px; /* Remove bottom margin for the last list item */
}
.my-list-style ul li::before {
    content: '\F135'; 
    font-family: 'bootstrap-icons'; 
    font-weight: 900; /* Ensure the icon appears bold */
    color: #12741b; /* Custom bullet color */
    position: absolute;
    left: 0; /* Position bullet to the left */
    top:2px;
    font-size: 1.2em; /* Adjust size if needed */
    line-height: 1; /* Align bullet vertically */
}

.doormain-carousel .owl-nav {
    position: absolute;
    top: 45%; /* Vertically center the navigation buttons */
    left: 0;
    right: 0;
    transform: translateY(-45%); /* Adjust vertical centering */
    display: flex;
    justify-content: space-between; /* Position buttons at the edges */
    z-index: 10;
}

.doormain-carousel .owl-nav .owl-prev,
.doormain-carousel .owl-nav .owl-next {
    width: 30px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    color:#fff;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.doormain-carousel .owl-nav .owl-prev {
    position: absolute;
    left: 15px; /* Adjust horizontal distance from the left edge */
}

.doormain-carousel .owl-nav .owl-next {
    position: absolute;
    right: 15px; /* Adjust horizontal distance from the right edge */
}

.doormain-carousel .owl-nav .owl-prev:hover,
.doormain-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    border-color: #571238;
    background: #571238;
}
.mytxtshadow{text-shadow: 2px 2px 2px #000000;}

.veneermain-carousel .owl-nav {
    position: absolute;
    top: 45%; /* Vertically center the navigation buttons */
    left: 0;
    right: 0;
    transform: translateY(-45%); /* Adjust vertical centering */
    display: flex;
    justify-content: space-between; /* Position buttons at the edges */
    z-index: 10;
}

.veneermain-carousel .owl-nav .owl-prev,
.veneermain-carousel .owl-nav .owl-next {
    width: 30px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    color:#fff;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.veneermain-carousel .owl-nav .owl-prev {
    position: absolute;
    left: 15px; /* Adjust horizontal distance from the left edge */
}

.veneermain-carousel .owl-nav .owl-next {
    position: absolute;
    right: 15px; /* Adjust horizontal distance from the right edge */
}

.veneermain-carousel .owl-nav .owl-prev:hover,
.veneermain-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    border-color: #571238;
    background: #571238;
}
.form-group>.form-control,
.form-group>.form-select {
  height:calc(3.5rem + 2px);
  padding:1rem .75rem
}

.fancybox__content{min-width:90%;}
.custom-table th {
    font-weight: 600;
    color:#571238;
  }
.custom-table td {
    
    color:#000;
  }
.custom-table th, .custom-table td {
    padding: 20px; /* Customize the padding */
  }

.custom-table tbody tr:hover {
  background: url(../img/maram.jpg) center center no-repeat;
    background-size: cover; /* Ensures the image covers the row */
    background-repeat: no-repeat; /* Prevents repeating the image */
    background-position: center; /* Centers the image */
    color: white; /* Optional: Change text color for better contrast */
  }
.circle {
  display: inline-block;
  width: 40px;           /* Size of the circle */
  height: 40px;          /* Size of the circle */
  background-color: #571238; /* Background color of the circle */
  color: white;          /* Text color */
  border-radius: 50%;    /* Make it round */
  text-align: center;    /* Center the text horizontally */
  line-height: 40px;     /* Center the text vertically */
  font-size: 18px;       /* Font size of the letter */
  
}
.my-shadow{border: 1px solid #eaeaea;
-webkit-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.23);
-moz-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.23);
box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.23);}

.my-shadow a{color:#571238;}
.my-shadow a:hover{color:#black;}

.td1{background-color: #571238 !important;
color:#fff;}
.pl8{color:#000;
background-color: #fff !important;
}
.my-tables table {
    width: 100%; /* Makes the table take the full width of the .my-tables div */
    border: 1px solid #571238; /* Adds a black border around the table */
    border-collapse: collapse; /* Ensures borders don't double up */
}

.my-tables table th, 
.my-tables table td {
    border: 1px solid #571238; /* Adds black borders around cells */
    text-align: left; /* Aligns text to the left for better readability */
    padding: 8px; /* Adds some spacing inside cells */
}

.my-tables table tr:first-child {
    background-color: #571238; /* Black background for the first row */
    color: white; /* White text for better contrast */
}
.mylayer{z-index: 11040;}


/*** otherpro-carousel ***/


.otherpro-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.otherpro-carousel .owl-nav .owl-prev,
.otherpro-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #571238;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.otherpro-carousel .owl-nav .owl-prev:hover,
.otherpro-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    border-color: #571238;
    background: #571238;
}
/*logo effect*/
/* By default, show logo1 and hide logo2 */
    .logo1, .logo2 {
        display: block;
        width: 150px; /* Adjust size as needed */
    }

    .logo2 {
        display: none;
    }

    /* Large screen: Show only logo1 */
    @media (min-width: 992px) {
        .logo1 {
            display: block;
        }
        .logo2 {
            display: none;
        }
    }

    /* Small screen: Prepare for alternate blinking effect */
    @media (max-width: 991px) {
        .logo1, .logo2 {
            display: none; /* Initially hide both */
        }
    }
/* Equal Heights for OwlCarousel 2 */

.owl-carousel {
	.owl-stage {
		display: flex;
	}
	.owl-item {
		display: flex;
		flex: 1 0 auto;
	}
	
	
}

.modal-body {
  position:relative;
  flex:1 1 auto;
  padding:0rem
}