.tukang-hero *,
.tukang-container * {
box-sizing: border-box;
margin: 0;
padding: 0;
} .tukang-hero {
background: linear-gradient(135deg, #1a6b3c 0%, #2ecc71 100%);
color: white;
padding: 80px 20px;
text-align: center;
position: relative;
overflow: hidden;
margin-bottom: 40px;
}
.tukang-hero::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
background-size: 30px 30px;
opacity: 0.3;
animation: float 20s linear infinite;
}
@keyframes float {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.tukang-hero h1 {
font-size: 2.8rem;
margin-bottom: 20px;
position: relative;
z-index: 2;
line-height: 1.3;
text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
.tukang-hero h1 {
font-size: 2.2rem;
}
}
.hero-description {
font-size: 1.3rem;
max-width: 800px;
margin: 0 auto 40px;
opacity: 0.95;
position: relative;
z-index: 2;
line-height: 1.7;
} .cta-buttons {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
position: relative;
z-index: 2;
}
.whatsapp-button, .phone-button {
padding: 18px 35px;
border-radius: 50px;
text-decoration: none;
font-weight: bold;
display: inline-flex;
align-items: center;
gap: 12px;
transition: all 0.3s ease;
font-size: 1.1rem;
border: 2px solid transparent;
}
.whatsapp-button {
background: #25D366;
color: white;
}
.whatsapp-button:hover {
background: #128C7E;
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}
.phone-button {
background: rgba(255, 255, 255, 0.9);
color: #1a6b3c;
}
.phone-button:hover {
background: white;
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(0,0,0,0.15);
border-color: #1a6b3c;
}
.whatsapp-button i, .phone-button i {
font-size: 1.3rem;
} .tukang-container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
} section {
margin-bottom: 80px;
scroll-margin-top: 30px;
}
.section-title {
font-size: 2.2rem;
color: #1a6b3c;
margin-bottom: 25px;
text-align: center;
position: relative;
padding-bottom: 15px;
}
.section-title::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 120px;
height: 4px;
background: linear-gradient(to right, #1a6b3c, #2ecc71);
border-radius: 2px;
}
.section-subtitle {
text-align: center;
color: #666;
margin-bottom: 40px;
font-size: 1.2rem;
max-width: 700px;
margin-left: auto;
margin-right: auto;
line-height: 1.6;
} .gallery-section {
background: #f8f9fa;
padding: 50px 30px;
border-radius: 15px;
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
margin-top: 40px;
}
.gallery-item {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
transition: all 0.4s ease;
background: white;
position: relative;
}
.gallery-item:hover {
transform: translateY(-10px);
box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.gallery-item::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(to top, rgba(26, 107, 60, 0.7), transparent);
opacity: 0;
transition: opacity 0.3s ease;
z-index: 1;
}
.gallery-item:hover::before {
opacity: 1;
}
.gallery-item img {
width: 100%;
height: 280px;
object-fit: cover;
display: block;
transition: transform 0.5s ease;
}
.gallery-item:hover img {
transform: scale(1.05);
}
.gallery-item figcaption {
padding: 20px;
text-align: center;
font-weight: 600;
color: #333;
background: white;
font-size: 1.1rem;
position: relative;
z-index: 2;
} .booking-section {
background: linear-gradient(135deg, #f8fff9 0%, #e8f5e9 100%);
padding: 60px 40px;
border-radius: 15px;
border: 2px dashed #2ecc71;
}
.booking-form {
background: white;
padding: 40px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
max-width: 800px;
margin: 0 auto;
}
.form-group {
margin-bottom: 25px;
}
.form-group label {
display: block;
margin-bottom: 10px;
font-weight: 600;
color: #333;
font-size: 1.05rem;
}
.form-group label::after {
content: '';
color: #e74c3c;
margin-left: 4px;
}
.form-group input:not([type="submit"]),
.form-group select,
.form-group textarea {
width: 100%;
padding: 15px 20px;
border: 2px solid #e0e0e0;
border-radius: 8px;
font-size: 1rem;
transition: all 0.3s ease;
background: #fafafa;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: #2ecc71;
background: white;
box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.15);
}
.submit-btn {
background: linear-gradient(135deg, #1a6b3c 0%, #2ecc71 100%);
color: white;
border: none;
padding: 18px 40px;
border-radius: 10px;
font-size: 1.2rem;
font-weight: bold;
cursor: pointer;
width: 100%;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
margin-top: 20px;
}
.submit-btn:hover {
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(26, 107, 60, 0.4);
background: linear-gradient(135deg, #155530 0%, #27ae60 100%);
}
.submit-btn i {
font-size: 1.3rem;
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.1); }
100% { transform: scale(1); }
} .advantages-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
margin-top: 40px;
}
.advantage-card {
text-align: center;
padding: 40px 25px;
background: white;
border-radius: 12px;
box-shadow: 0 8px 25px rgba(0,0,0,0.06);
transition: all 0.3s ease;
border: 2px solid transparent;
position: relative;
overflow: hidden;
}
.advantage-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 5px;
background: linear-gradient(to right, #1a6b3c, #2ecc71);
}
.advantage-card:hover {
transform: translateY(-10px);
border-color: #2ecc71;
box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.advantage-icon {
font-size: 3rem;
margin-bottom: 20px;
color: #1a6b3c;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
}
.advantage-card h3 {
color: #1a6b3c;
margin-bottom: 15px;
font-size: 1.4rem;
}
.advantage-card p {
color: #666;
line-height: 1.7;
font-size: 1.05rem;
} .services-table-container {
overflow-x: auto;
margin-top: 40px;
border-radius: 12px;
box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.services-table {
width: 100%;
border-collapse: collapse;
background: white;
min-width: 600px;
}
.services-table thead {
background: linear-gradient(135deg, #1a6b3c 0%, #2ecc71 100%);
color: white;
}
.services-table th {
padding: 20px;
text-align: left;
font-weight: 600;
font-size: 1.1rem;
}
.services-table td {
padding: 20px;
text-align: left;
border-bottom: 1px solid #eee;
vertical-align: top;
}
.services-table tbody tr:nth-child(even) {
background: #f8f9fa;
}
.services-table tbody tr:hover {
background: #e8f5e9;
}
.services-table td:first-child {
font-weight: 600;
color: #1a6b3c;
}
.services-table td:last-child {
font-weight: bold;
color: #27ae60;
} .faq-section {
background: #f8f9fa;
padding: 60px 40px;
border-radius: 15px;
}
.faq-item {
border: 2px solid #e0e0e0;
border-radius: 10px;
margin-bottom: 15px;
overflow: hidden;
transition: border-color 0.3s ease;
background: white;
max-width: 900px;
margin-left: auto;
margin-right: auto;
}
.faq-item:hover {
border-color: #2ecc71;
}
.faq-question {
width: 100%;
padding: 25px 30px;
background: white;
border: none;
text-align: left;
font-size: 1.2rem;
font-weight: 600;
color: #1a6b3c;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: background-color 0.3s ease;
}
.faq-question:hover {
background: #f8fff9;
}
.faq-icon {
font-size: 1.5rem;
color: #2ecc71;
transition: transform 0.3s ease;
}
.faq-question[aria-expanded="true"] .faq-icon {
transform: rotate(45deg);
}
.faq-answer {
padding: 0 30px 25px;
background: white;
line-height: 1.8;
color: #555;
font-size: 1.05rem;
border-top: 1px solid #eee;
}
.faq-answer p {
margin-bottom: 15px;
} .testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 30px;
margin-top: 40px;
}
.testimonial-card {
background: white;
padding: 35px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
border-top: 5px solid #2ecc71;
position: relative;
}
.testimonial-card::before {
content: '"';
position: absolute;
top: 20px;
right: 30px;
font-size: 5rem;
color: #e8f5e9;
font-family: Georgia, serif;
line-height: 1;
}
.testimonial-content {
font-style: italic;
margin-bottom: 25px;
line-height: 1.8;
color: #555;
font-size: 1.1rem;
position: relative;
z-index: 1;
}
.testimonial-author {
border-top: 1px solid #eee;
padding-top: 20px;
display: flex;
align-items: center;
gap: 15px;
}
.testimonial-author i {
font-size: 1.5rem;
color: #2ecc71;
background: #e8f5e9;
padding: 10px;
border-radius: 50%;
}
.testimonial-author strong {
display: block;
color: #1a6b3c;
margin-bottom: 5px;
font-size: 1.1rem;
}
.testimonial-author span {
color: #777;
font-size: 0.95rem;
} .location-section {
background: linear-gradient(135deg, #f8fff9 0%, #e8f5e9 100%);
padding: 60px 40px;
border-radius: 15px;
}
.location-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
margin-top: 40px;
align-items: start;
}
.location-text h3 {
color: #1a6b3c;
margin-bottom: 25px;
font-size: 1.5rem;
}
.location-list {
list-style: none;
padding: 0;
margin-bottom: 30px;
}
.location-list li {
padding: 12px 0;
font-size: 1.15rem;
display: flex;
align-items: center;
gap: 15px;
border-bottom: 1px dashed #ddd;
}
.location-list li:last-child {
border-bottom: none;
}
.location-list li i {
color: #2ecc71;
font-size: 1.3rem;
width: 25px;
text-align: center;
}
.location-note {
margin-top: 25px;
padding: 20px;
background: white;
border-radius: 10px;
border-left: 5px solid #2ecc71;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.location-note i {
color: #2ecc71;
margin-right: 10px;
}
.location-map {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
height: 400px;
}
.location-map iframe {
width: 100%;
height: 100%;
border: none;
display: block;
} .cta-bottom {
text-align: center;
background: linear-gradient(135deg, #1a6b3c 0%, #2ecc71 100%);
color: white;
padding: 80px 40px;
border-radius: 20px;
margin-top: 80px;
position: relative;
overflow: hidden;
}
.cta-bottom::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
background-size: 40px 40px;
animation: float 30s linear infinite;
opacity: 0.3;
}
.cta-title {
font-size: 2.8rem;
margin-bottom: 20px;
position: relative;
z-index: 2;
}
.cta-description {
font-size: 1.3rem;
margin-bottom: 40px;
opacity: 0.9;
max-width: 700px;
margin-left: auto;
margin-right: auto;
line-height: 1.7;
position: relative;
z-index: 2;
}
.whatsapp-cta, .phone-cta {
display: inline-flex;
align-items: center;
gap: 15px;
padding: 20px 40px;
border-radius: 50px;
text-decoration: none;
font-weight: bold;
font-size: 1.2rem;
margin: 0 15px;
transition: all 0.3s ease;
position: relative;
z-index: 2;
border: 2px solid transparent;
}
.whatsapp-cta {
background: #25D366;
color: white;
}
.whatsapp-cta:hover {
background: #128C7E;
transform: translateY(-3px);
box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}
.phone-cta {
background: rgba(255, 255, 255, 0.95);
color: #1a6b3c;
}
.phone-cta:hover {
background: white;
transform: translateY(-3px);
box-shadow: 0 15px 30px rgba(0,0,0,0.2);
border-color: #1a6b3c;
}
.whatsapp-cta i, .phone-cta i {
font-size: 1.4rem;
} @media (max-width: 992px) {
.location-content {
grid-template-columns: 1fr;
gap: 40px;
}
.location-map {
height: 350px;
}
}
@media (max-width: 768px) {
.tukang-hero {
padding: 60px 20px;
}
.tukang-hero h1 {
font-size: 2.2rem;
}
.hero-description {
font-size: 1.1rem;
}
.section-title {
font-size: 1.8rem;
}
.cta-buttons, .cta-bottom .cta-buttons {
flex-direction: column;
align-items: center;
}
.whatsapp-button, .phone-button,
.whatsapp-cta, .phone-cta {
width: 100%;
max-width: 350px;
justify-content: center;
margin: 5px 0;
}
.booking-form {
padding: 30px 20px;
}
.advantages-grid,
.testimonials-grid {
grid-template-columns: 1fr;
}
.gallery-grid {
grid-template-columns: 1fr;
}
.cta-title {
font-size: 2.2rem;
}
.cta-description {
font-size: 1.1rem;
}
}
@media (max-width: 480px) {
.tukang-container {
padding: 15px;
}
.tukang-hero {
padding: 50px 15px;
}
.tukang-hero h1 {
font-size: 1.8rem;
}
section {
margin-bottom: 60px;
}
.section-title {
font-size: 1.6rem;
}
.booking-section,
.faq-section,
.location-section {
padding: 40px 20px;
}
.cta-bottom {
padding: 50px 25px;
}
.whatsapp-cta, .phone-cta {
padding: 18px 30px;
font-size: 1.1rem;
}
} @keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.gallery-item,
.advantage-card,
.testimonial-card {
animation: fadeInUp 0.6s ease-out forwards;
opacity: 0;
}
.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.advantage-card:nth-child(1) { animation-delay: 0.2s; }
.advantage-card:nth-child(2) { animation-delay: 0.3s; }
.advantage-card:nth-child(3) { animation-delay: 0.4s; }
.advantage-card:nth-child(4) { animation-delay: 0.5s; }
.testimonial-card:nth-child(1) { animation-delay: 0.2s; }
.testimonial-card:nth-child(2) { animation-delay: 0.3s; }
.testimonial-card:nth-child(3) { animation-delay: 0.4s; } .form-group input:disabled,
.form-group select:disabled,
.form-group textarea:disabled,
.submit-btn:disabled {
opacity: 0.6;
cursor: not-allowed;
} @media print {
.whatsapp-button,
.phone-button,
.whatsapp-cta,
.phone-cta,
.submit-btn {
display: none !important;
}
.tukang-hero {
background: white !important;
color: black !important;
padding: 30px 20px !important;
}
}.site-container p.has-drop-cap:not(:focus)::first-letter {
margin: 0.02em 0.08em 0 -0.08em;
}
.site-container p.has-larger-font-size.has-drop-cap:not(:focus)::first-letter,
.site-container p.has-small-font-size.has-drop-cap:not(:focus)::first-letter {
margin-right: 0.01em;
} .alignfull:not(.has-background) .wp-block-group__inner-container > p:not(.has-background-color) {
padding-left: 30px;
padding-right: 30px;
} .site-container p.has-background {
padding: 25px 30px;
}
.site-container p.has-background.box-shadow {
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.site-container p.has-text-color a,
.site-container p.has-background a {
color: inherit;
}
.site-container p.has-background a:focus,
.site-container p.has-background a:hover,
.site-container p.has-text-color a:focus,
.site-container p.has-text-color a:hover {
color: inherit;
text-decoration: none;
}
.site-container p.has-background.light-text a {
color: #fff;
text-decoration: underline;
}
.site-container p.has-background.light-text a:focus,
.site-container p.has-background.light-text a:hover {
text-decoration: none;
} .has-text-align-center {
text-align: center;
}
.has-text-align-left {
text-align: left;
}
.has-text-align-right {
text-align: right;
}
.wp-block-button.alignleft,
.wp-block-buttons.alignleft,
.wp-block-cover.alignleft,
.wp-block-image .alignleft {
margin-right: 2em;
}
.wp-block-button.alignright,
.wp-block-buttons.alignright,
.wp-block-cover.alignright,
.wp-block-image .alignright {
margin-left: 2em;
}
.wp-block-image.alignwide,
.wp-block-image.alignfull,
.wp-block-embed.alignwide,
.wp-block-embed.alignfull {
margin-bottom: 30px;
}
.full-width-content .entry-content > .alignfull {
margin-left: calc(-100vw / 2 + 100% / 2);
margin-right: calc(-100vw / 2 + 100% / 2);
max-width: 100vw;
}
.content-sidebar .site-container .alignfull,
.sidebar-content .site-container .alignfull {
margin: 0 0 2em;
width: 100%;
}
@media only screen and (max-width: 600px) {
.wp-block-button.home-contact,
.wp-block-buttons.home-contact {
float: left;
margin-left: 0;
}
} .site-container .wp-block-columns.alignfull {
padding: 0 30px;
} .full-width-content .entry-content > .wp-block-cover.alignfull {
width: 100vw;
}
.site-container .wp-block-cover .wp-block-cover-text {
font-size: 48px;
} .ab-block-cta .ab-button {
font-family: "Source Sans Pro", sans-serif;
font-weight: 600;
}
.site-container .wp-block-button .wp-block-button__link {
border-width: 0;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
font-family: "Source Sans Pro", sans-serif;
font-weight: 600;
padding: 15px 30px;
text-align: center;
text-decoration: none;
white-space: normal;
width: auto;
}
.site-container .wp-block-button.is-style-outline .wp-block-button__link {
background-color: transparent;
border: 2px solid currentColor;
padding: 13px 28px;
}
.site-container .wp-block-button .wp-block-button__link:focus,
.site-container .wp-block-button .wp-block-button__link:hover,
.site-container .wp-block-button.is-style-outline .wp-block-button__link:focus,
.site-container .wp-block-button.is-style-outline .wp-block-button__link:hover {
box-shadow: inset 0 0 200px rgba(230, 230, 230, 0.25);
} .site-container .wp-block-pullquote,
.site-container .wp-block-quote {
border: none;
margin: 24px 24px 36px;
}
.wp-block-pullquote.alignleft {
margin: 0 2em 1.5em 0;
}
.wp-block-pullquote.alignright {
margin: 0 0 1.5em 2em;
}
.site-container .wp-block-pullquote p,
.site-container .wp-block-quote p {
font-family: "Source Sans Pro", serif;
font-size: 21px;
font-style: italic;
line-height: 1.8;
margin-bottom: 42px;
}
.site-container .wp-block-pullquote p,
.site-container .wp-block-quote.is-style-large p {
font-size: 32px;
}
.site-container .wp-block-pullquote.is-style-solid-color p {
color: #fff;
margin-bottom: 42px;
text-align: center;
}
.site-container .wp-block-pullquote.is-style-solid-color {
background-color: #333;
}
.wp-block-pullquote.is-style-solid-color.alignleft blockquote,
.wp-block-pullquote.is-style-solid-color.alignright blockquote {
max-width: 80%;
}
.site-container .wp-block-pullquote:not(.is-style-solid-color)[style*="border-color"] {
border: 2px solid;
border-left: none;
border-right: none;
}
.site-container .wp-block-pullquote cite,
.site-container .wp-block-quote cite {
color: #666;
display: block;
font-family: "Source Sans Pro", serif;
font-size: 16px;
font-style: italic;
margin-top: -25px;
text-align: inherit;
text-transform: none;
}
.site-container .wp-block-pullquote cite {
text-align: center;
}
.site-container .wp-block-pullquote.is-style-solid-color cite {
color: #fff;
font-style: italic;
}
.site-container .wp-block-pullquote .has-text-color cite,
.site-container .wp-block-pullquote .has-text-color p {
color: currentColor;
}
.blocks-gallery-caption {
width: 100%;
}
.blocks-gallery-item figcaption {
margin-bottom: 0;
} .site-container .wp-block-categories {
margin-left: 0;
padding-left: 0;
}
.site-container .wp-block-categories li {
list-style-type: none;
}
.site-container .wp-block-categories.aligncenter {
text-align: center;
}
.site-container .wp-block-categories.alignfull {
padding: 0 30px;
}
.site-container .wp-block-categories .children {
padding-left: 30px;
} .site-container .wp-block-latest-posts {
margin-left: 0;
padding-left: 0;
}
.site-container .wp-block-latest-posts li {
list-style-type: none;
}
.site-container .wp-block-latest-posts.aligncenter {
text-align: center;
}
.site-container .wp-block-latest-posts.alignfull {
padding: 0 30px;
} .ab-block-post-grid h2 a {
text-decoration: none;
}
@media only screen and (max-width: 510px) {
.ab-block-container.alignfull::before {
content: " ";
display: table;
}
.ab-block-container.alignfull::after {
clear: both;
content: " ";
display: table;
}
} .wp-block-preformatted,
.wp-block-verse {
font-size: 16px;
}
.wp-block-preformatted {
white-space: pre-wrap;
}
hr.wp-block-separator {
border: none;
border-bottom: 1px solid currentColor;
color: #eee;
margin: 1.65em auto;
}
.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
max-width: 100px;
}
.wp-block-separator.is-style-dots {
color: #333;
}
.wp-block-audio audio {
display: inline-block;
width: 100%;
}
.site-container .blocks-gallery-grid,
.site-container .wp-block-gallery,
.site-container .wp-block-social-links {
padding-left: 0;
}
.wp-block-table.is-style-stripes {
border-bottom-width: 0;
}
.full-width-content .site-container .wp-block-table.alignfull {
margin: 0;
width: 100%;
}
@media only screen and (min-width: 960px) {
.full-width-content .site-container > .wp-block-table.alignwide {
width: calc(100% + 360px);
}
.full-width-content .site-container > .wp-block-table.alignfull {
margin-left: calc(-100vw / 2 + 100% / 2);
margin-right: calc(-100vw / 2 + 100% / 2);
width: 100vw;
}
}
@media only screen and (max-width: 600px) {
.wp-block-media-text.is-stacked-on-mobile figure {
margin-bottom: 20px;
}
} @media only screen and (min-width: 960px) {
.full-width-content .entry-content > .alignwide {
margin-left: -180px;
margin-right: -180px;
max-width: calc(100% + 360px); width: auto;
}
.alignfull .alignwide,
.alignwide .alignwide {
max-width: 1062px;
margin: 0 auto;
}
}
@media only screen and (max-width: 781px) {
.site-container .wp-block-column {
flex-basis: 100%;
margin-left: 0;
margin-right: 0;
}
}