html {
  scroll-behavior: smooth;
}

/********** Template CSS **********/
:root {
    --primary: #B78D65;
    --light: #F8F8F8;
    --dark: #252525;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

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

.header-carousel video {
    height: 100vh;
    object-fit: cover;
}


/*** 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,
.btn.btn-secondary {
    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;
}

.btn-outline-body {
    color: var(--primary);
    border-color: #777777;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** 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: 30px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,

    color: var(--primary);
}

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

/* Remove default active highlight */
.navbar .navbar-nav .nav-link.active {
    color: var(--dark);
}

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

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@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 ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.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(--light);
}


/*** Section Title ***/
.section-title {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}


/*** Facts ***/
.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
    transition: .5s;
}

.fact-item:hover .fact-icon {
    background: var(--dark);
}

.fact-item .fact-icon i {
    color: var(--primary);
    transition: .5;
}

.fact-item:hover .fact-icon i {
    color: #FFFFFF;
}


/*** About & Feature ***/
/* About & Feature Section — stable layout using flexbox */
.about-section,
.feature-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
}

.about-img,
.feature-img {
    flex: 0 0 45%; /* image takes ~45% of width consistently */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-img img,
.feature-img img {
    width: 50%;
    height: auto;
    object-fit: cover;
    display: block;
}

.about-content,
.feature-content {
    flex: 0 0 50%;
    padding: 0 40px;
}


/*** Service ***/
.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.service-item .service-text {
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, .7);
}

.service-item * {
    transition: .5;
}

.service-item:hover * {
    color: #FFFFFF;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Project ***/
.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.project .nav .nav-link.active {
    background: var(--primary);
}

.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


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

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

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: #777777;
}


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

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}



.services-heading {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.2;
    white-space: normal;
}

/* Desktop: prefer single line */
@media (min-width: 1200px) {
    .services-heading {
        white-space: nowrap;
    }
}

/* Tablet & mobile: allow max 2 lines */
@media (max-width: 1199px) {
    .services-heading {
        white-space: normal;
    }
}

/* Services Section Heading Control */
.services-title-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.services-heading {
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 1.5rem;
    white-space: normal;
}

/* Desktop: single line */
@media (min-width: 1200px) {
    .services-heading {
        white-space: nowrap;
    }
}

/* About section image vertical centering */
.about-img {
    display: flex;
    align-items: center;      /* vertical center */
    justify-content: center;  /* horizontal center */
    height: 100%;
}

.about-img img {
    max-width: 100%;
    height: auto;
    display: block;
}

.grayscale {
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.grayscale:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.bg-dark .fact-item,
.bg-dark .fact-item h5 {
    color: #ffffff !important;
}

.service-item {
    transition: all 0.3s ease;
}

.service-item:hover {
    background-color: #1c1c1c; /* dark background */
    color: #ffffff;
}

.service-item:hover h4,
.service-item:hover p {
    color: #ffffff;
}

.service-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-control,
.form-select {
    height: 55px;
    border-radius: 6px;
    font-size: 15px;
}

textarea.form-control {
    height: auto;
}

.btn-primary {
    background-color: #c49b63;
    border: none;
}

.btn-primary:hover {
    background-color: #b38852;
}



.timeline-arrow {
    max-width: 1100px;
    margin: auto;
}

.timeline-row {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

/* Reverse row */
.timeline-row.reverse {
    flex-direction: row-reverse;
}

/* Labels */
.timeline-label {
    width: 25%;
    font-weight: 600;
    font-size: 18px;
    color: #1f2f46;
}

.timeline-label.left {
    text-align: right;
    padding-right: 20px;
}

.timeline-label.right {
    text-align: left;
    padding-left: 20px;
}

/* Arrow lines */
.timeline-arrow-line {
    width: 40px;
    height: 2px;
    background: #1f2f46;
    position: relative;
}

.timeline-arrow-line::after {
    content: '➤';
    position: absolute;
    right: -10px;
    top: -12px;
    font-size: 18px;
    color: #1f2f46;
}

/* Icon */
.timeline-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 3px solid #1f2f46;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #1f2f46;
    background: #fff;
}

/* Content box */
.timeline-box {
    width: 30%;
    background: #1f2f46;
    color: #fff;
    padding: 22px;
    border-radius: 12px;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .timeline-row,
    .timeline-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .timeline-label,
    .timeline-box {
        width: 100%;
        padding: 0;
        margin-bottom: 10px;
    }

    .timeline-arrow-line {
        display: none;
    }
}

/* Timeline container */
.timeline-container {
    position: relative;
    max-width: 1100px;
    margin: auto;
}

/* Vertical center line */
.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #1f2f46;
    transform: translateX(-50%);
}

/* Row */
.timeline-row {
    display: grid;
    grid-template-columns: 42% 16% 42%;
    align-items: center;
    margin-bottom: 60px;
}

/* Center column */
.timeline-center {
    position: relative;
    display: flex;
    justify-content: center;
}

/* Circle */
.timeline-dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 3px solid #1f2f46;
    background: #fff;
    color: #1f2f46;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Side alignment */
.timeline-side {
    padding: 10px 20px;
}

.timeline-side.text-right {
    text-align: right;
}

.timeline-side.text-left {
    text-align: left;
}

/* Content box */
.timeline-box {
    background: #1f2f46;
    color: #fff;
    padding: 22px;
    border-radius: 12px;
    font-size: 15px;
}

/* Headings */
.timeline-box {
    width: 260px;
    height: 180px;           /* rectangle, not square */
    background: #1f2f46;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 20px;
    font-size: 15px;

    border-radius: 14px;     /* rounded edges */
}


/* Mobile */
@media (max-width: 768px) {
    .timeline-container::before {
        left: 20px;
    }

    .timeline-row {
        grid-template-columns: 1fr;
        padding-left: 40px;
    }

    .timeline-center {
        justify-content: flex-start;
        margin-bottom: 10px;
    }

    .timeline-side {
        text-align: left !important;
    }
}

.timeline-side.text-right .timeline-box {
    margin-right: 16px;
}

.timeline-side.text-left .timeline-box {
    margin-left: 16px;
}

/* === FINAL FIX: Built Over the Years spacing === */

/* When box is on LEFT side (this affects "Built Over the Years") */
.timeline-row:nth-child(even) .timeline-side:first-child {
    display: flex;
    justify-content: flex-end;
}

/* When box is on RIGHT side (odd rows – already correct, but keep symmetry) */
.timeline-row:nth-child(odd) .timeline-side:last-child {
    display: flex;
    justify-content: flex-start;
}

/* Timeline main heading */
.timeline-heading {
    text-align: center;
    margin-bottom: 5px;
}

.timeline-heading h2 {
    font-weight: 800;
    font-size: 36px;
    color: #1f2f46;
    position: relative;
    display: inline-block;
}

/* Reduce Project Stats box size by ~40% */
.fact-item {
    padding: 1.8rem !important;   /* was ~3rem */
    min-height: auto !important;
}

/* Reduce number size slightly */
.fact-item h1 {
    font-size: 2.2rem;
}

/* Reduce label spacing */
.fact-item h5 {
    font-size: 1rem;
}


.timeline-heading {
    margin-top: 80px;   /* increase this value if you want more gap */
}

/* Career Page – aligned with Appointment */

#careerAccordion .accordion-button {
    background: var(--dark);
    color: #ffffff;
    font-weight: 500;
}

#careerAccordion .accordion-button:not(.collapsed) {
    background: var(--dark);
    color: #ffffff;
}

#careerAccordion .accordion-body {
    background: var(--light);
    color: #555;
    font-size: 15px;
}
/* === Services Page Font Consistency === */
.service-sidebar,
.service-sidebar h5,
.service-sidebar h6,
.service-sidebar a,
.service-content h2,
.service-content p {
    font-family: 'Open Sans', sans-serif;
}

/* === Sidebar Headings Bold === */
.service-sidebar h5,
.brochure-box h6,
.contact-box h6,
.callback-box h6 {
    font-weight: 700;
    letter-spacing: 0.3px;
    font-family: 'Open Sans', sans-serif;
}

/* Service list active & hover text color — BLACK */
.service-sidebar ul li a {
    color: #000000;
}

.service-sidebar ul li a:hover,
.service-sidebar ul li a.active {
    color: #000000 !important;
    background: #f5f7fa;
}

.service-content img {
  max-height: 260px;   /* keeps image smaller */
  object-fit: cover;
}

/* ===== Global Font Alignment ===== */

/* Body text */
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Teko', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #111;
}

/* Service headings */
.service-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.service-content h5 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* Paragraphs */
.service-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 12px;
}

/* Accordion titles */
.accordion-button {
  font-family: 'Teko', sans-serif;
  font-size: 18px;
  letter-spacing: 0.5px;
}

/* Accordion body text */
.accordion-body {
  font-family: 'Open Sans', sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: #555;
}

/* Ensure ALL service section headings use same font */
.service-content h2,
.service-content h3 {
  font-family: 'Teko', sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #111;
}
.service-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

/* Service sub-headings (Decorative Designing, etc.) */
.service-content h5 {
  font-family: 'Teko', sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: #111;
}
.service-content p {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.image-fill {
  width: 100%;
  height: 100%;
}

.image-fill img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔥 fills space without distortion */
  display: block;
}

#building-interior {
  scroll-margin-top: 120px; /* adjust if needed */
}

html {
  scroll-behavior: smooth;
}

.service-sidebar ul li a {
  text-align: center;
}

.service-sidebar ul li a {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

#epc-heading {
  scroll-margin-top: 130px; /* adjust to navbar height */
}

.service-sidebar h5 {
  text-align: center;
  letter-spacing: 0.5px;
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: #1f3248;
  padding: 40px 0;
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stats-grid h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 5px;
}

.stats-grid p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

/* ===== SERVICES SECTION ===== */
.home-services {
  padding: 60px 0;
}

.service-card {
  background: #fff;
  border: 1px solid #eee;
  height: 100%;
  transition: all 0.4s ease;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card h5 {
  background: #1f3248;
  color: #fff;
  padding: 12px;
  margin: 0;
}

.service-card p {
  padding: 15px;
  font-size: 14px;
  line-height: 1.6;
}

.service-card a {
  padding: 0 15px 15px;
  display: inline-block;
  font-weight: 600;
  color: #1f3248;
  transition: color 0.3s ease;
}

/* ===== HOVER EFFECTS ===== */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-card:hover a {
  color: #0d6efd;
}

/* ===== INDUSTRIES ===== */
.industries {
  padding: 50px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Industries Section */
.industries-section {
  padding: 90px 20px;
  background: #ffffff;
  text-align: center;
}

.section-title {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 70px;
  color: #1f2937;
}

/* Grid */
.industries-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 55px 30px;
}

/* Card */
.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

/* Icon Circle */
.industry-icon {
  width: 90px;
  height: 90px;
  background: #1e293b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.4s ease;
  box-shadow: 0 0 0 rgba(37, 99, 235, 0.0);
}

/* SVG Icon */
.industry-icon svg {
  width: 42px;
  height: 42px;
  fill: #ffffff;
}

/* Hover Glow Effect */
.industry-card:hover .industry-icon {
  background: #2563eb;
  box-shadow: 0 0 25px rgba(37, 99, 235, 0.7);
  transform: scale(1.08);
}

/* Text */
.industry-card p {
  font-size: 16px;
  font-weight: 500;
  color: #111827;
}

/* Entrance Animation */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Reduce gap between Our Clients heading & title */
.clients-section .section-title {
  margin-bottom: 6px !important;
}

.clients-section h1 {
  margin-top: 0 !important;
}

.client-carousel img {
  max-height: 80px;
  object-fit: contain;
  filter: none !important;
  opacity: 1 !important;
  transition: none;
}

/* Center Mission & Vision text below headings */
.mission-vision {
  text-align: center;
}

.mission-vision p {
  margin-left: auto;
  margin-right: auto;
  max-width: 520px;
}

/* Mission & Vision paragraph alignment */
.mission-vision p {
  max-width: 520px;
  margin: 0 auto;
}


