.wpcf7 .screen-reader-response {
position: absolute;
overflow: hidden;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
width: 1px;
margin: -1px;
padding: 0;
border: 0;
word-wrap: normal !important;
word-break: normal !important;
}
.wpcf7 .hidden-fields-container {
display: none;
}
.wpcf7 form .wpcf7-response-output {
margin: 2em 0.5em 1em;
padding: 0.2em 1em;
border: 2px solid #00a0d2; }
.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
display: none;
}
.wpcf7 form.sent .wpcf7-response-output {
border-color: #46b450; }
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
border-color: #dc3232; }
.wpcf7 form.spam .wpcf7-response-output {
border-color: #f56e28; }
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
border-color: #ffb900; }
.wpcf7-form-control-wrap {
position: relative;
}
.wpcf7-not-valid-tip {
color: #dc3232; font-size: 1em;
font-weight: normal;
display: block;
}
.use-floating-validation-tip .wpcf7-not-valid-tip {
position: relative;
top: -2ex;
left: 1em;
z-index: 100;
border: 1px solid #dc3232;
background: #fff;
padding: .2em .8em;
width: 24em;
}
.wpcf7-list-item {
display: inline-block;
margin: 0 0 0 1em;
}
.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
content: " ";
}
.wpcf7-spinner {
visibility: hidden;
display: inline-block;
background-color: #23282d; opacity: 0.75;
width: 24px;
height: 24px;
border: none;
border-radius: 100%;
padding: 0;
margin: 0 24px;
position: relative;
}
form.submitting .wpcf7-spinner {
visibility: visible;
}
.wpcf7-spinner::before {
content: '';
position: absolute;
background-color: #fbfbfc; top: 4px;
left: 4px;
width: 6px;
height: 6px;
border: none;
border-radius: 100%;
transform-origin: 8px 8px;
animation-name: spin;
animation-duration: 1000ms;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
@media (prefers-reduced-motion: reduce) {
.wpcf7-spinner::before {
animation-name: blink;
animation-duration: 2000ms;
}
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes blink {
from {
opacity: 0;
}
50% {
opacity: 1;
}
to {
opacity: 0;
}
}
.wpcf7 [inert] {
opacity: 0.5;
}
.wpcf7 input[type="file"] {
cursor: pointer;
}
.wpcf7 input[type="file"]:disabled {
cursor: default;
}
.wpcf7 .wpcf7-submit:disabled {
cursor: not-allowed;
}
.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
direction: ltr;
}
.wpcf7-reflection > output {
display: list-item;
list-style: none;
}
.wpcf7-reflection > output[hidden] {
display: none;
}.inland-shop-categories {
width: 100%;
max-width: 1400px;
margin: 0 auto;
position: relative;
}
.section-title {
font-size: 2.5rem;
font-weight: 600;
margin-bottom: 40px;
}
.categories-grid {
display: grid;
gap: 20px;
}
.categories-grid.grid-style-1 {
grid-template-columns: 1fr 1fr;
grid-template-rows: auto auto;
height: 600px;
}
.categories-grid.grid-style-2 {
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
height: auto;
}
.categories-grid.grid-style-3 {
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
grid-auto-rows: 300px;
}
.category-card {
position: relative;
overflow: hidden;
transition: all 0.3s ease;
cursor: pointer;
}
.category-card.card-large {
grid-row: 1 / 3;
}
.category-card.card-medium,
.category-card.card-small {
grid-row: span 1;
}
.category-card.has-hover-effect:hover {
transform: translateY(-8px);
box-shadow: 0 12px 40px rgba(0,0,0,0.2) !important;
}
.card-image {
width: 100%;
height: 100%;
position: relative;
overflow: hidden;
}
.card-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}
.card-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
transition: opacity 0.3s ease;
}
.category-card:hover .card-image img {
transform: scale(1.08);
}
.category-card:hover .card-overlay {
opacity: 0.5;
}
.category-label {
position: absolute;
background-color: #ff9500;
color: white;
padding: 12px 24px;
border-radius: 25px;
font-weight: 500;
font-size: 14px;
transition: all 0.3s ease;
z-index: 2;
}
.category-card:hover .category-label {
transform: translateY(-3px);
}
.category-card a {
display: block;
width: 100%;
height: 100%;
text-decoration: none;
} @media (max-width: 1024px) {
.categories-grid.grid-style-1 {
grid-template-columns: 1fr;
grid-template-rows: repeat(4, 300px);
height: auto;
}
.category-card.card-large {
grid-row: span 1;
}
}
@media (max-width: 768px) {
.categories-grid {
grid-template-columns: 1fr;
grid-template-rows: repeat(auto-fill, 250px);
}
.section-title {
font-size: 2rem;
margin-bottom: 30px;
}
.category-label {
bottom: 15px;
left: 15px;
padding: 10px 20px;
font-size: 13px;
}
}
@media (max-width: 480px) {
.categories-grid {
grid-template-rows: repeat(auto-fill, 200px);
}
.section-title {
font-size: 1.75rem;
}
.category-label {
padding: 8px 16px;
font-size: 12px;
}
}.inland-contact-us {
display: flex;
padding: 20px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.inland-contact-sidebar {
flex: 1;
background-color: #2ecc71;
padding: 20px;
color: #ffffff;
border-radius: 8px 0 0 8px;
}
.inland-contact-title {
font-size: 28px;
margin-bottom: 10px;
}
.inland-contact-description {
font-size: 14px;
margin-bottom: 20px;
}
.inland-contact-info p {
font-size: 14px;
margin: 10px 0;
display: flex;
align-items: center;
}
.inland-contact-info .dashicons {
margin-right: 10px;
font-size: 18px;
}
.inland-contact-info a {
color: #ffffff;
text-decoration: none;
}
.inland-contact-info a:hover {
text-decoration: underline;
}
.inland-contact-form {
flex: 2;
padding: 20px;
background-color: #ffffff;
border-radius: 0 8px 8px 0;
}
.inland-contact-form h2 {
font-size: 24px;
margin-bottom: 20px;
}
.inland-contact-form form {
display: grid;
gap: 15px;
}
.inland-contact-form input,
.inland-contact-form textarea {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 14px;
}
.inland-contact-form textarea {
height: 100px;
}
.inland-contact-form button {
background-color: #2ecc71;
color: #ffffff;
border: none;
padding: 10px 20px;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
}
.inland-contact-form button:hover {
background-color: #27ae60;
}
@media (max-width: 768px) {
.inland-contact-us {
flex-direction: column;
}
.inland-contact-sidebar,
.inland-contact-form {
border-radius: 8px;
}
}.ma-features-widget .feature-item {
background-color: #ffffff;
border: 1px solid #e0e0e0;
border-radius: 8px;
overflow: hidden;
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
text-decoration: none;
color: inherit;
display: flex;
flex-direction: column;
height: 100%;
}
.ma-features-widget .feature-item {
transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
height: 100%; 
}
.ma-features-widget .feature-icon,
.ma-features-widget .feature-title,
.ma-features-widget .feature-description {
transition: color 0.3s ease, fill 0.3s ease;
}.logo-carousel {
position: relative;
padding: 20px 0;
width: 100%;
overflow: visible;
}
.logo-carousel .swiper-wrapper {
display: flex;
align-items: center;
}
.logo-carousel-item {
display: flex;
align-items: center;
justify-content: center;
padding: 15px;
box-sizing: border-box;
width: auto !important;
}
.logo-carousel-item img {
width: auto;
max-width: 100%;
height: auto;
transition: all 0.3s ease;
}
.logo-carousel-item.zoom:hover img {
transform: scale(1.1);
}
.logo-carousel-item.grayscale img {
filter: grayscale(100%);
}
.logo-carousel-item.grayscale:hover img {
filter: grayscale(0);
}
.logo-carousel-item.opacity img {
opacity: 0.7;
}
.logo-carousel-item.opacity:hover img {
opacity: 1;
}
.swiper-button-prev,
.swiper-button-next {
color: #333;
background: rgba(255, 255, 255, 0.8);
width: 40px;
height: 40px;
border-radius: 50%;
top: 50%;
transform: translateY(-50%);
z-index: 10;
}
.swiper-button-prev {
left: 10px;
}
.swiper-button-next {
right: 10px;
}
.swiper-pagination {
position: relative;
bottom: -10px;
text-align: center;
}
.swiper-pagination-bullet {
background: #333;
opacity: 0.5;
width: 8px;
height: 8px;
margin: 0 4px;
}
.swiper-pagination-bullet-active {
opacity 1;
} .swiper-slide {
visibility: visible !important;
opacity: 1 !important;
display: flex !important;
}* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.elementor-widget-inland_timeline {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
color: #ffffff;
}
.elementor-widget-inland_timeline .timeline-container {
padding: 100px 0;
position: relative;
background: transparent;
}
.elementor-widget-inland_timeline .timeline-step {
max-width: 1200px;
margin: 0 auto 80px;
padding: 0 20px;
display: flex;
align-items: center;
gap: 60px;
position: relative;
z-index: 1; }
.elementor-widget-inland_timeline .timeline-step.animate-steps {
opacity: 0;
transform: translateY(60px);
transition: opacity 0.8s ease, transform 0.8s ease;
}
.elementor-widget-inland_timeline .timeline-step.animate-steps.visible {
opacity: 1;
transform: translateY(0);
}
.elementor-widget-inland_timeline .timeline-step.reverse {
flex-direction: row-reverse;
}
.elementor-widget-inland_timeline .timeline-step::before {
content: '';
position: absolute;
left: 50%;
top: 50%;
width: 24px;
height: 24px;
border-radius: 50%;
background: #0a0a0a;
transform: translate(-50%, -50%);
z-index: 2;
transition: transform 0.3s ease;
}
.elementor-widget-inland_timeline .timeline-step.animate-steps::before {
transform: translate(-50%, -50%) scale(1);
}
.elementor-widget-inland_timeline .timeline-step.animate-steps.visible::before {
transform: translate(-50%, -50%) scale(1.2);
}
.elementor-widget-inland_timeline .step-image {
flex: 1;
position: relative;
overflow: hidden;
border-radius: 12px;
border: 1px solid rgba(253, 186, 73, 0.2);
transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.elementor-widget-inland_timeline .step-image:hover {
transform: scale(1.02) translateY(-10px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.elementor-widget-inland_timeline .step-image-inner {
width: 100%;
position: relative;
overflow: hidden;
}
.elementor-widget-inland_timeline .step-number {
position: absolute;
top: 20px;
left: 20px;
width: auto;
min-width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
color: #0a0a0a;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
z-index: 3;
transition: transform 0.3s ease;
padding: 0 15px;
}
.elementor-widget-inland_timeline .step-image:hover .step-number {
transform: scale(1.1);
}
.elementor-widget-inland_timeline .step-content {
flex: 1;
padding: 40px;
border-radius: 12px;
border: 1px solid rgba(253, 186, 73, 0.2);
position: relative;
overflow: hidden;
}
.elementor-widget-inland_timeline .step-content::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(253, 186, 73, 0.2), transparent);
transition: left 0.6s ease;
}
.elementor-widget-inland_timeline .step-content:hover::before {
left: 100%;
}
.elementor-widget-inland_timeline .step-title {
margin-bottom: 20px;
position: relative;
letter-spacing: -0.02em;
}
.elementor-widget-inland_timeline .step-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 0;
width: 60px;
height: 4px;
background: #fdba49;
border-radius: 2px;
transition: width 0.3s ease;
}
.elementor-widget-inland_timeline .step-content:hover .step-title::after {
width: 100px;
}
.elementor-widget-inland_timeline .step-description {
line-height: 1.7;
font-weight: 300;
} @media (max-width: 1024px) {
.elementor-widget-inland_timeline .timeline-step {
flex-direction: column !important;
gap: 30px;
padding: 0 15px;
}
.elementor-widget-inland_timeline .step-content {
padding: 30px;
}
.elementor-widget-inland_timeline .step-title {
font-size: 1.8rem;
}
.elementor-widget-inland_timeline .step-image-inner {
height: 250px;
}
.elementor-widget-inland_timeline .timeline-container::before {
width: 4px;
}
.elementor-widget-inland_timeline .timeline-step::before {
width: 20px;
height: 20px;
}
}
@media (max-width: 768px) {
.elementor-widget-inland_timeline .timeline-step {
flex-direction: column !important;
gap: 30px;
padding: 0 15px;
}
.elementor-widget-inland_timeline .step-content {
padding: 30px;
}
.elementor-widget-inland_timeline .step-title {
font-size: 1.6rem;
}
.elementor-widget-inland_timeline .step-image-inner {
height: 200px;
}
}.product-details-widget {
border: 1px solid #e0e0e0;
padding: 20px;
font-family: sans-serif;
}
.product-details-widget .swiper-container {
width: 100%;
margin-left: auto;
margin-right: auto;
margin-bottom: 20px;
position: relative;
overflow: hidden;
list-style: none;
padding: 0;
z-index: 1;
--swiper-theme-color: #005fde;
--swiper-navigation-size: 30px;
}
.product-details-widget .swiper-slide {
text-align: center;
font-size: 18px;
background: #fff; display: flex;
justify-content: center;
align-items: center;
}
.product-details-widget .swiper-slide img {
display: block;
width: 100%;       
height: auto;
object-fit: cover;
}
.product-details-widget .swiper-button-next,
.product-details-widget .swiper-button-prev {
color: var(--swiper-theme-color);
}
.product-details-widget .swiper-pagination-bullet-active {
background: var(--swiper-theme-color);
} .product-details-widget .product-title {
font-size: 24px;
font-weight: bold;
margin: 0 0 15px 0;
color: #333;
} .product-details-widget .product-button {
display: inline-block;
background-color: #005fde;
color: #ffffff;
padding: 12px 24px;
text-decoration: none;
font-weight: bold;
border-radius: 4px;
margin-bottom: 25px;
transition: background-color 0.3s, color 0.3s;
}
.product-details-widget .product-button:hover {
background-color: #004ab0;
} .product-details-widget .technical-details {
margin-bottom: 25px;
}
.product-details-widget .technical-details details {
border: 1px solid #e0e0e0;
border-radius: 4px;
}
.product-details-widget .technical-details summary {
padding: 15px;
font-weight: bold;
cursor: pointer;
outline: none;
background-color: #f9f9f9;
position: relative;
list-style: none;
}
.product-details-widget .technical-details summary::-webkit-details-marker {
display: none;
}
.product-details-widget .technical-details summary::after {
content: '+';
float: right;
font-size: 20px;
line-height: 1;
}
.product-details-widget .technical-details details[open] summary::after {
content: '−';
}
.product-details-widget .details-content { padding: 0; }
.product-details-widget .detail-row {
display: flex;
justify-content: space-between;
padding: 12px 15px;
border-bottom: 1px solid #f0f0f0;
}
.product-details-widget .detail-row:last-child { border-bottom: none; }
.product-details-widget .detail-label {
font-weight: 500;
color: #333;
padding-right: 10px;
}
.product-details-widget .detail-value {
color: #666;
text-align: right;
} .product-details-widget .features-section {
display: flex;
flex-wrap: wrap; 
gap: 20px;
}
.product-details-widget .feature-box {
display: flex;
align-items: flex-start;
gap: 15px;
width: 100%;
} @media (min-width: 768px) {
.product-details-widget .feature-box {
width: calc(50% - 10px); 
}
}
.product-details-widget .feature-icon {
font-size: 24px;
color: #005fde;
margin-top: 3px;
width: 30px;
text-align: center;
flex-shrink: 0;
}
.product-details-widget .feature-content { flex: 1; }
.product-details-widget .feature-title {
margin: 0 0 5px 0;
font-size: 16px;
font-weight: bold;
color: #333;
}
.product-details-widget .feature-description {
margin: 0;
font-size: 14px;
color: #666;
line-height: 1.5;
}