:root { }  p {
font-size: 16px;
text-align: left;
line-height: 1.6;
margin: 0 0 1em 0;
}
.ss-container {
max-width: 1400px;
margin-left: auto;
margin-right: auto;
padding-left: 20px;
padding-right: 20px;
box-sizing: border-box;
width: 100%;
background-color: var(--container-bg-color, #ffffff);
} .ss-container--narrow {
max-width: 700px;
} .ss-container--home {
max-width: 1230px;
margin-left: auto;
margin-right: auto;
padding-left: 20px;
padding-right: 20px;
box-sizing: border-box;
width: 100%;
background-color: var(--container-bg-color, #ffffff);
}
.ss-section {
padding-top: 30px;
padding-bottom: 30px;
}   .section-padding {
padding-top: 30px;
padding-bottom: 30px;
}
.section-padding-small {
padding-top: 20px;
padding-bottom: 20px;
}
.section-padding-medium {
padding-top: 40px;
padding-bottom: 40px;
} .section-bg-light {
background-color: var(--section-bg-light, #f8f9fa);
} section[class*="section-"]:not(.section-bg-light) {
background-color: var(--section-bg-default, #ffffff);
} .section-margin-top {
margin-top: 40px;
}
@media (max-width: 768px) {
.section-padding {
padding-top: 20px;
padding-bottom: 20px;
}
.section-padding-small {
padding-top: 15px;
padding-bottom: 15px;
}
.section-padding-medium {
padding-top: 25px;
padding-bottom: 25px;
}
}
.ss-card {
background: var(--bg-light, #fff);
border-radius: 12px;
border: 1px solid rgba(0, 0, 0, 0.06);
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}
.ss-card:hover {
transform: translateY(-4px);
box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
}
.ss-section-title {
font-size: 26px;
font-weight: 700;
text-align: center;
margin: 15px 0 15px;
text-transform: capitalize;
color: var(--heading-primary-color, var(--primary-color, #000e4f));
}
.ss-section-subtitle {
text-align: left;
color: var(--body-text-color, #333);
margin-bottom: 40px;
font-size: 16px;
} .ss-grid-2 {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 30px;
}
@media (max-width: 640px) {
.ss-grid-2 {
grid-template-columns: 1fr;
gap: 20px;
}
}
.ss-grid-3 {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 30px;
}
@media (max-width: 1024px) {
.ss-grid-3 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 640px) {
.ss-grid-3 {
grid-template-columns: 1fr;
}
}
.ss-grid-4 {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 30px;
}
@media (max-width: 1023px) {
.ss-grid-4 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 640px) {
.ss-grid-4 {
grid-template-columns: 1fr;
}
}
.ss-grid-5 {
display: grid;
grid-template-columns: repeat(5, minmax(0, 1fr));
gap: 18px;
}
@media (max-width: 1200px) {
.ss-grid-5 {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}
@media (max-width: 768px) {
.ss-grid-5 {
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 16px;
}
}
@media (max-width: 640px) {
.ss-grid-5 {
grid-template-columns: 1fr;
}
}
.ss-grid-6 {
display: grid;
grid-template-columns: repeat(6, minmax(0, 1fr));
gap: 20px;
}
@media (max-width: 1024px) {
.ss-grid-6 {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}
@media (max-width: 768px) {
.ss-grid-6 {
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 16px;
}
}
@media (max-width: 768px) {
.ss-section-title {
font-size: 22px;
margin: 20px 0 10px;
}
.ss-section-subtitle {
margin-bottom: 24px;
}
} .ss-faq {
max-width: 980px;
margin: 0 auto;
}
.ss-faq__item {
border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.ss-faq__question {
width: 100%;
background: transparent;
border: 0;
padding: 18px 10px;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
text-align: left;
font-weight: 700;
color: var(--heading-primary-color, #1f2d3d);
transition: color 0.3s ease;
}
.ss-faq__question:hover {
color: var(--accent-color, #FF9933);
}
.ss-faq__icon {
width: 28px;
height: 28px;
border-radius: 50%;
border: 1px solid rgba(0, 0, 0, 0.18);
display: inline-flex;
align-items: center;
justify-content: center;
font-weight: 900;
color: var(--heading-primary-color, #1f2d3d);
transition: transform 0.3s ease, border-color 0.3s ease;
flex-shrink: 0;
}
.ss-faq__question[aria-expanded="true"] .ss-faq__icon {
transform: rotate(45deg);
border-color: var(--accent-color, #FF9933);
}
.ss-faq__answer {
padding: 0 10px 18px;
color: var(--body-text-color, #5a6c7d);
line-height: 1.7;
}
.ss-faq__answer p {
margin: 0;
}
@media (max-width: 768px) {
.ss-faq__question {
padding: 16px 10px;
font-size: 15px;
}
.ss-faq__answer {
padding: 0 10px 16px;
font-size: 14px;
}
}
.ss-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 15px 30px;
min-height: 44px;
line-height: 1.2;
border-radius: 8px;
font-weight: 700;
text-decoration: none;
cursor: pointer;
border: none;
transition: var(--transition, all 0.2s ease);
white-space: nowrap;
}
.ss-btn--primary {
background: var(--accent-color, #FF9933);
color: #fff;
}
.ss-btn--primary:hover {
background: var(--accent-hover, #E6892A);
}
.ss-btn--secondary {
background: transparent;
color: var(--primary-color, #000e4f);
border: 2px solid var(--primary-color, #000e4f);
}
.ss-btn--secondary:hover {
background: var(--primary-color, #000e4f);
color: #fff;
}  .btn {
display: inline-block;
padding: 15px 30px;
text-decoration: none;
font-weight: 700;
border-radius: 8px;
border: none;
cursor: pointer;
transition: var(--transition, all 0.2s ease);
white-space: nowrap;
}
.btn-primary {
background: var(--accent-color, #FF9933);
color: #fff;
}
.btn-primary:hover {
background: var(--accent-hover, #E6892A);
transform: translateY(-2px);
} @media (max-width: 768px) {
.btn {
width: 100%;
text-align: center;
}
.hero-buttons .btn {
width: auto !important;
max-width: 90% !important;
min-width: 0 !important;
}
} .ss-arrow-btn {
width: 40px;
height: 40px;
border-radius: 9999px;
display: inline-flex;
align-items: center;
justify-content: center;
cursor: pointer;
user-select: none;
background: rgba(255, 255, 255, 0.9);
color: var(--primary-color, #000e4f);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
transition: var(--transition, all 0.2s ease);
}
.ss-arrow-btn:hover {
background: var(--primary-color, #000e4f);
color: #fff;
} .floating-actions {
position: fixed !important;
right: 20px !important;
bottom: 20px !important;
display: flex;
flex-direction: column;
gap: 10px;
z-index: 999999 !important;
}
.floating-btn {
width: 56px;
height: 56px;
border-radius: 50%;
border: none;
display: inline-flex;
align-items: center;
justify-content: center;
font-weight: 700;
color: #fff;
cursor: pointer;
box-shadow: 0 4px 10px rgba(0,0,0,0.15);
transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.floating-btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}
.floating-whatsapp {
background: #25D366;
text-decoration: none;
}
.floating-whatsapp-icon {
width: 36px;
height: 36px;
display: block;
object-fit: contain;
}
.floating-backtop {
background: var(--primary-color, #e54b4d);
border: none;
display: none;
font-size: 24px;
font-weight: 700;
}
.floating-backtop.show {
display: inline-flex;
} #quote-modal.quote-modal {
position: fixed !important;
inset: 0 !important;
z-index: 1000000 !important;
display: none;
align-items: center;
justify-content: center;
animation: fadeIn 0.3s ease;
}
#quote-modal.quote-modal.is-open {
display: flex;
}
#quote-modal .quote-modal-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(4px);
}
#quote-modal .quote-modal-content {
position: relative;
background: #ffffff;
border-radius: 12px;
padding: 40px;
width: min(600px, 92vw);
max-height: min(700px, 88vh);
overflow: auto;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
animation: slideUp 0.3s ease;
z-index: 1000001;
}
#quote-modal .quote-modal-close {
position: absolute;
top: 15px;
right: 15px;
background: none;
border: none;
font-size: 32px;
color: #999;
cursor: pointer;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
transition: all 0.3s;
line-height: 1;
}
#quote-modal .quote-modal-close:hover {
background: #f5f5f5;
color: #333;
}
#quote-modal .quote-modal-title {
font-size: 28px;
font-weight: 700;
color: #222;
margin-bottom: 10px;
text-align: center;
}
#quote-modal .quote-modal-subtitle {
font-size: 16px;
color: #666;
margin-bottom: 30px;
text-align: center;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes slideUp {
from { transform: translateY(30px); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}   body.home .hero-banner__content.ss-container--home {
background: rgba(255, 255, 255, 0.72) !important;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(0, 0, 0, 0.06);
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16) !important;
padding: 24px 24px;
} body.home .hero-banner__title {
font-size: clamp(30px, 2.6vw + 12px, 42px);
line-height: 1.25;
letter-spacing: 0.06em;
text-transform: uppercase;
margin-bottom: 18px;
}
body.home .hero-banner__subtitle {
max-width: 40rem;
font-size: 16px;
line-height: 1.7;
color: var(--body-text-color, #333);
margin-bottom: 26px;
}
body.home .hero-buttons {
display: flex;
gap: 16px;
} @media (min-width: 992px) {
body.home .hero-buttons {
justify-content: flex-start;
flex-wrap: nowrap;
}
}
@media (max-width: 768px) {
body.home .hero-banner__content.ss-container--home {
padding: 18px 16px;
}
body.home .hero-banner__title {
font-size: clamp(22px, 5vw, 28px);
letter-spacing: 0.04em;
}
body.home .hero-banner__subtitle {
font-size: 14px;
line-height: 1.6;
margin-bottom: 18px;
}
body.home .hero-buttons {
flex-wrap: wrap;
gap: 12px;
}
} @media (max-width: 768px) {
body.home .hero-banner__image,
body.home .hero-banner__media {
object-fit: contain !important;
object-position: center !important;
}
body.home .hero-banner__content.ss-container--home {
background: rgba(255, 255, 255, 0.0) !important;
box-shadow: none !important;
border: none !important;
backdrop-filter: none !important;
-webkit-backdrop-filter: none !important;
}
} @media screen and (min-width: 992px) { body.home .hero-banner .ss-container--home,
body.home .hero-banner__content.ss-container--home {
max-width: 700px !important;
} body.home .section-who-we-service .who-we-service__content {
display: grid;
grid-template-columns: 2fr 3fr;
gap: 30px;
align-items: start;
}
}  body.home .premier-manufacturing__text-content {
margin-bottom: 30px;
font-size: 16px;
line-height: 1.6;
color: var(--body-text-color, #333);
} body.home .section-cta-cards {
padding: 30px 20px;
}  @media (min-width: 992px) {
body.home .section-premier-manufacturing .premier-manufacturing__content {
display: grid;
grid-template-columns: 1fr 1fr;
align-items: start;
gap: 30px;
}
body.home .section-premier-manufacturing .premier-manufacturing__image {
min-width: 0;
}
body.home .section-premier-manufacturing .premier-manufacturing__text {
min-width: 0;
}
}
@media (max-width: 991px) {
body.home .section-premier-manufacturing .premier-manufacturing__content {
display: grid;
grid-template-columns: 1fr;
gap: 20px;
}
body.home .section-premier-manufacturing .premier-manufacturing__image {
order: 1;
}
body.home .section-premier-manufacturing .premier-manufacturing__text {
order: 2;
}
} body.home .solution-box,
body.home .stat-item,
body.home .cta-card,
body.home .blog-card {
border-radius: 12px;
border: 1px solid rgba(0, 0, 0, 0.06);
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
} body.home .section-custom-solution .custom-solution__grid {
gap: 22px;
}
body.home .section-custom-solution .solution-box {
padding: 22px 22px;
position: relative;
overflow: hidden;
} body.home .section-custom-solution .solution-box__badge {
position: absolute;
top: 14px;
right: 14px;
padding: 6px 10px;
border-radius: 9999px;
font-size: 12px;
font-weight: 800;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #fff;
background: var(--primary-color, #000e4f);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
body.home .section-custom-solution .solution-box__subtitle {
margin: -6px 0 14px;
color: var(--text-gray, #666);
font-size: 14px;
line-height: 1.5;
} body.home .section-custom-solution .solution-box::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--accent-color, #FF9933), rgba(255, 153, 51, 0.2));
}
body.home .section-custom-solution .solution-box h3 {
margin: 0 0 14px;
font-size: 16px;
font-weight: 800;
letter-spacing: 0.04em;
text-transform: uppercase;
color: var(--heading-primary-color, var(--primary-color, #000e4f));
}
body.home .section-custom-solution .solution-box ul {
margin: 0;
padding: 0;
list-style: none;
display: grid;
gap: 10px;
}
body.home .section-custom-solution .solution-box li {
position: relative;
padding-left: 26px;
color: var(--body-text-color, #333);
line-height: 1.6;
font-size: 15px;
} body.home .section-custom-solution .solution-box li::before {
content: "✓";
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 18px;
height: 18px;
border-radius: 6px;
display: inline-flex;
align-items: center;
justify-content: center;
font-weight: 900;
font-size: 12px;
color: #fff;
background: var(--accent-color, #FF9933);
box-shadow: 0 6px 14px rgba(255, 153, 51, 0.25);
}
@media (max-width: 768px) {
body.home .section-custom-solution .solution-box {
padding: 18px 16px;
}
body.home .section-custom-solution .solution-box__badge {
top: 12px;
right: 12px;
font-size: 11px;
padding: 6px 9px;
}
body.home .section-custom-solution .solution-box h3 {
font-size: 15px;
}
body.home .section-custom-solution .solution-box li {
font-size: 14px;
}
}  body.home .section-product-line .section-header {
margin-bottom: 26px;
}
body.home .section-product-line .ss-section-title.product-line__title {
margin: 0 0 10px;
text-transform: none;
letter-spacing: 0.02em;
}
body.home .section-product-line .ss-section-subtitle.product-line__subtitle {
margin: 0;
max-width: 60rem;
margin-left: auto;
margin-right: auto;
text-align: center;
color: var(--text-gray, #666);
line-height: 1.7;
} body.home .section-product-line .product-line__row-top {
display: grid;
grid-template-columns: repeat(6, minmax(0, 1fr));
gap: 20px;
margin: 30px 0;
}
body.home .section-product-line .product-line__item {
display: flex;
flex-direction: column;
height: 100%;
background: #fff;
border-radius: 14px;
border: 1px solid rgba(0, 0, 0, 0.06);
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
overflow: hidden;
transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}
body.home .section-product-line .product-line__item:hover {
transform: translateY(-4px);
box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}
body.home .section-product-line .product-line__image {
width: 100%;
aspect-ratio: 4 / 5;
overflow: hidden;
background: #fff;
border: none;
}
body.home .section-product-line .product-line__image img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.25s ease;
}
body.home .section-product-line .product-line__image:hover img {
transform: scale(1.05);
}
body.home .section-product-line .product-line__link {
text-decoration: none;
padding: 14px 14px 16px;
}
body.home .section-product-line .product-line__link h4 {
margin: 0;
font-size: 14px;
font-weight: 700;
line-height: 1.4;
color: var(--body-text-color, #333);
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
min-height: calc(14px * 1.35 * 2);
}
body.home .section-product-line .product-line__link:hover h4 {
color: var(--accent-color, #FF9933);
} body.home .section-product-line .product-line__row-bottom {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 20px;
}
body.home .section-product-line .product-line__category {
height: 100%;
border-radius: 16px;
overflow: hidden;
border: 1px solid rgba(0, 0, 0, 0.06);
box-shadow: 0 10px 26px rgba(0, 0, 0, 0.10);
transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}
body.home .section-product-line .product-line__category:hover {
transform: translateY(-4px);
box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
}
body.home .section-product-line .product-line__category a {
display: flex;
flex-direction: column;
height: 100%;
text-decoration: none;
color: inherit;
}
body.home .section-product-line .product-line__category-image {
width: 100%;
aspect-ratio: 16 / 9;
overflow: hidden;
background: #fff;
border: none;
position: relative;
}
body.home .section-product-line .product-line__category-image img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.25s ease;
}
body.home .section-product-line .product-line__category:hover .product-line__category-image img {
transform: scale(1.05);
}
body.home .section-product-line .product-line__category-title {
margin: 0;
padding: 14px 16px 16px;
font-size: 18px;
font-weight: 800;
letter-spacing: 0.01em;
line-height: 1.3;
color: var(--heading-primary-color, var(--primary-color, #000e4f));
}
body.home .section-product-line .product-line__category:hover .product-line__category-title {
color: var(--accent-color, #FF9933);
}
body.home .section-product-line .product-line__category-desc {
margin: 0;
font-size: 14px;
color: var(--text-gray, #666);
}
@media (max-width: 1024px) {
body.home .section-product-line .product-line__row-top {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}
@media (max-width: 768px) {
body.home .section-product-line .product-line__row-top {
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 16px;
margin: 20px 0;
}
body.home .section-product-line .product-line__row-bottom {
grid-template-columns: 1fr;
gap: 16px;
}
body.home .section-product-line .product-line__link {
padding: 12px 12px 14px;
}
body.home .section-product-line .product-line__category-title {
padding: 12px 14px 14px;
font-size: 16px;
}
}  body.home .section-sportswear .section-header {
margin-bottom: 26px;
}
body.home .section-sportswear .ss-section-title.sportswear__title {
margin: 0 0 10px;
text-transform: none;
letter-spacing: 0.02em;
}
body.home .section-sportswear .ss-section-subtitle.sportswear__subtitle {
margin: 0;
max-width: 60rem;
margin-left: auto;
margin-right: auto;
text-align: center;
color: var(--text-gray, #666);
line-height: 1.7;
} body.home .section-sportswear .sportswear__row-top {
display: grid;
grid-template-columns: repeat(6, minmax(0, 1fr));
gap: 20px;
margin: 30px 0;
}
body.home .section-sportswear .sportswear__item {
display: flex;
flex-direction: column;
height: 100%;
background: #fff;
border-radius: 14px;
border: 1px solid rgba(0, 0, 0, 0.06);
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
overflow: hidden;
transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}
body.home .section-sportswear .sportswear__item:hover {
transform: translateY(-4px);
box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}
body.home .section-sportswear .sportswear__image {
width: 100%;
aspect-ratio: 4 / 5;
overflow: hidden;
background: #fff;
border: none;
}
body.home .section-sportswear .sportswear__image img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.25s ease;
}
body.home .section-sportswear .sportswear__image:hover img {
transform: scale(1.05);
}
body.home .section-sportswear .sportswear__link {
text-decoration: none;
padding: 14px 14px 16px;
}
body.home .section-sportswear .sportswear__link h4 {
margin: 0;
font-size: 14px;
font-weight: 700;
line-height: 1.4;
color: var(--body-text-color, #333);
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
min-height: calc(14px * 1.35 * 2);
}
body.home .section-sportswear .sportswear__link:hover h4 {
color: var(--accent-color, #FF9933);
} body.home .section-sportswear .sportswear__row-bottom {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 20px;
}
body.home .section-sportswear .sportswear__category {
height: 100%;
border-radius: 16px;
overflow: hidden;
border: 1px solid rgba(0, 0, 0, 0.06);
box-shadow: 0 10px 26px rgba(0, 0, 0, 0.10);
transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}
body.home .section-sportswear .sportswear__category:hover {
transform: translateY(-4px);
box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
}
body.home .section-sportswear .sportswear__category a {
display: flex;
flex-direction: column;
height: 100%;
text-decoration: none;
color: inherit;
}
body.home .section-sportswear .sportswear__category-image {
width: 100%;
aspect-ratio: 16 / 9;
overflow: hidden;
background: #fff;
border: none;
position: relative;
}
body.home .section-sportswear .sportswear__category-image img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.25s ease;
}
body.home .section-sportswear .sportswear__category:hover .sportswear__category-image img {
transform: scale(1.05);
}
body.home .section-sportswear .sportswear__category-title {
margin: 0;
padding: 14px 16px 16px;
font-size: 18px;
font-weight: 800;
letter-spacing: 0.01em;
line-height: 1.3;
color: var(--heading-primary-color, var(--primary-color, #000e4f));
}
body.home .section-sportswear .sportswear__category:hover .sportswear__category-title {
color: var(--accent-color, #FF9933);
}
body.home .section-sportswear .sportswear__category-desc {
margin: 0;
font-size: 14px;
color: var(--text-gray, #666);
}  body.home .section-process-setup .process-steps {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 20px;
}
body.home .section-process-setup .process-step {
background: var(--bg-light, #fff);
border: 1px solid rgba(0, 0, 0, 0.06);
border-radius: 12px;
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
padding: 22px 18px;
text-align: center; margin-bottom: 0;
} body.home .section-certifications .certifications__grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 20px;
}
body.home .section-certifications .cert-circle {
background: var(--bg-light, #fff);
border: 1px solid rgba(0, 0, 0, 0.06);
border-radius: 12px;
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
padding: 20px;
height: 100%;
} body.home .section-design-capability .design-capability-item {
background: var(--bg-light, #fff);
border: 1px solid rgba(0, 0, 0, 0.06);
border-radius: 12px;
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
} @media (min-width: 992px) {
body.home .section-design-capability .design-capability__content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
align-items: start;
}
}
@media (max-width: 991px) {
body.home .section-design-capability .design-capability__content {
display: grid;
grid-template-columns: 1fr;
gap: 20px;
}
} body.home .section-customers-visit .customers-visit__grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 20px;
}
body.home .section-customers-visit .customers-visit__image-wrapper {
background: var(--bg-light, #fff);
border: 1px solid rgba(0, 0, 0, 0.06);
border-radius: 12px;
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
padding: 4px;
} @media (max-width: 1024px) {
body.home .section-product-line .product-line__row-top,
body.home .section-sportswear .sportswear__row-top {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}
@media (max-width: 991px) {
body.home .section-customers-visit .customers-visit__grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 768px) { body.home #product-line {
display: none;
}
body.home .section-product-line .product-line__row-top,
body.home .section-sportswear .sportswear__row-top {
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 16px;
margin: 20px 0;
}
body.home .section-product-line .product-line__row-bottom,
body.home .section-sportswear .sportswear__row-bottom {
grid-template-columns: 1fr;
gap: 16px;
}
body.home .section-product-line .product-line__category-title,
body.home .section-sportswear .sportswear__category-title {
font-size: 16px;
}
body.home .section-process-setup .process-steps {
grid-template-columns: repeat(2, minmax(0, 1fr));
margin-bottom: 0;
}
body.home .section-certifications .certifications__grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
body.home .section-customers-visit .customers-visit__grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 480px) {
body.home .section-process-setup .process-steps {
grid-template-columns: 1fr;
}
} @media (max-width: 768px) {
body.home .section-who-we-service .who-we-service__content {
display: grid;
grid-template-columns: 1fr;
gap: 16px;
}
body.home .section-who-we-service .who-we-service__text {
order: 1;
}
body.home .section-who-we-service .who-we-service__logos {
order: 2;
}
}
body.home .factory-capabilities__swiper-wrapper,
body.home .paper-box__swiper-wrapper {
position: relative;
width: 100%;
max-width: 1230px;
margin-left: auto;
margin-right: auto;
padding-left: 60px;
padding-right: 60px;
box-sizing: border-box;
}
@media (max-width: 991px) {
body.home .factory-capabilities__swiper-wrapper,
body.home .paper-box__swiper-wrapper {
padding-left: 50px;
padding-right: 50px;
}
}
@media (max-width: 768px) {
body.home .factory-capabilities__swiper-wrapper,
body.home .paper-box__swiper-wrapper {
padding-left: 44px;
padding-right: 44px;
}
} body.home .factory-capabilities__swiper,
body.home .paper-box__swiper {
width: 100%;
overflow: hidden;
} body.home .factory-capabilities__swiper-wrapper .swiper-button-prev,
body.home .factory-capabilities__swiper-wrapper .swiper-button-next,
body.home .paper-box__swiper-wrapper .swiper-button-prev,
body.home .paper-box__swiper-wrapper .swiper-button-next,
body.home .paper-box__swiper-wrapper .paper-box-prev,
body.home .paper-box__swiper-wrapper .paper-box-next {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 40px !important;
height: 40px !important;
border-radius: 9999px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
z-index: 50;
background: rgba(255, 255, 255, 0.9);
color: var(--primary-color, #000e4f);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
transition: var(--transition, all 0.2s ease);
user-select: none;
}
body.home .factory-capabilities__swiper-wrapper .swiper-button-prev:hover,
body.home .factory-capabilities__swiper-wrapper .swiper-button-next:hover,
body.home .paper-box__swiper-wrapper .swiper-button-prev:hover,
body.home .paper-box__swiper-wrapper .swiper-button-next:hover,
body.home .paper-box__swiper-wrapper .paper-box-prev:hover,
body.home .paper-box__swiper-wrapper .paper-box-next:hover {
background: var(--primary-color, #000e4f);
color: #fff;
}
body.home .factory-capabilities__swiper-wrapper .swiper-button-prev,
body.home .paper-box__swiper-wrapper .swiper-button-prev,
body.home .paper-box__swiper-wrapper .paper-box-prev {
left: 0;
}
body.home .factory-capabilities__swiper-wrapper .swiper-button-next,
body.home .paper-box__swiper-wrapper .swiper-button-next,
body.home .paper-box__swiper-wrapper .paper-box-next {
right: 0;
} body.home .factory-capabilities__swiper .swiper-wrapper,
body.home .paper-box__swiper .swiper-wrapper {
gap: 0 !important;
} body.page-template-page-about-us-php .ss-modal--video,
body.page-about .ss-modal--video,
main.page-about ~ .ss-modal--video {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 10000;
display: none;
align-items: center;
justify-content: center;
animation: fadeIn 0.3s ease;
}
body.page-template-page-about-us-php .ss-modal--video.ss-modal--open,
body.page-about .ss-modal--video.ss-modal--open,
main.page-about ~ .ss-modal--video.ss-modal--open {
display: flex;
}
body.page-template-page-about-us-php .ss-modal--video.ss-modal--hidden,
body.page-about .ss-modal--video.ss-modal--hidden,
main.page-about ~ .ss-modal--video.ss-modal--hidden {
display: none;
}
body.page-template-page-about-us-php .ss-modal__backdrop,
body.page-about .ss-modal__backdrop,
main.page-about ~ .ss-modal--video .ss-modal__backdrop {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.9);
backdrop-filter: blur(4px);
}
body.page-template-page-about-us-php .ss-modal__content,
body.page-about .ss-modal__content,
main.page-about ~ .ss-modal--video .ss-modal__content {
position: relative;
width: 90%;
max-width: 1200px;
z-index: 10001;
}
body.page-template-page-about-us-php .ss-modal__close,
body.page-about .ss-modal__close,
main.page-about ~ .ss-modal--video .ss-modal__close {
position: absolute;
top: -40px;
right: 0;
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.2);
border: none;
border-radius: 50%;
color: #fff;
font-size: 24px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.3s;
}
body.page-template-page-about-us-php .ss-modal__close:hover,
body.page-about .ss-modal__close:hover,
main.page-about ~ .ss-modal--video .ss-modal__close:hover {
background: rgba(255, 255, 255, 0.3);
}
body.page-template-page-about-us-php .ss-modal__iframe,
body.page-about .ss-modal__iframe,
main.page-about ~ .ss-modal--video .ss-modal__iframe {
width: 100%;
height: 675px;
border-radius: 12px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
border: none;
}
@media (max-width: 768px) {
body.page-template-page-about-us-php .ss-modal__iframe,
body.page-about .ss-modal__iframe,
main.page-about ~ .ss-modal--video .ss-modal__iframe {
height: 280px;
}
}
@media (min-width: 769px) and (max-width: 1024px) {
body.page-template-page-about-us-php .ss-modal__iframe,
body.page-about .ss-modal__iframe,
main.page-about ~ .ss-modal--video .ss-modal__iframe {
height: 520px;
}
} body.page-template-page-about-us-php .about-intro__video-btn,
body.page-about .about-intro__video-btn,
main.page-about .about-intro__video-btn {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 72px;
height: 72px;
border-radius: 50%;
border: none;
cursor: pointer;
background: rgba(255, 255, 255, 0.92);
color: var(--primary-color, #2b67f6);
display: flex;
align-items: center;
justify-content: center;
transition: all 0.25s ease-in-out;
}
body.page-template-page-about-us-php .about-intro__video-btn:hover,
body.page-about .about-intro__video-btn:hover,
main.page-about .about-intro__video-btn:hover {
transform: translate(-50%, -50%) scale(1.06);
background: #fff;
} body.page-template-page-about-us-php .capabilities__swiper-wrapper,
body.page-about .capabilities__swiper-wrapper,
main.page-about .capabilities__swiper-wrapper {
position: relative;
}
body.page-template-page-about-us-php .capabilities-prev,
body.page-template-page-about-us-php .capabilities-next,
body.page-about .capabilities-prev,
body.page-about .capabilities-next,
main.page-about .capabilities-prev,
main.page-about .capabilities-next {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 10;
width: 40px;
height: 40px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.9);
border: 1px solid rgba(0, 0, 0, 0.1);
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
font-size: 20px;
color: var(--primary-color, #1f2d3d);
transition: all 0.3s ease;
}
body.page-template-page-about-us-php .capabilities-prev:hover,
body.page-template-page-about-us-php .capabilities-next:hover,
body.page-about .capabilities-prev:hover,
body.page-about .capabilities-next:hover,
main.page-about .capabilities-prev:hover,
main.page-about .capabilities-next:hover {
background: var(--primary-color, #1f2d3d);
color: #fff;
}
body.page-template-page-about-us-php .capabilities-prev,
body.page-about .capabilities-prev,
main.page-about .capabilities-prev {
left: -20px;
}
body.page-template-page-about-us-php .capabilities-next,
body.page-about .capabilities-next,
main.page-about .capabilities-next {
right: -20px;
}
body.page-template-page-about-us-php .capabilities__item,
body.page-about .capabilities__item,
main.page-about .capabilities__item {
height: 100%;
display: flex;
flex-direction: column;
}
body.page-template-page-about-us-php .capabilities__item-image,
body.page-about .capabilities__item-image,
main.page-about .capabilities__item-image {
width: 100%;
height: 260px;
object-fit: cover;
border-radius: 12px 12px 0 0;
}
body.page-template-page-about-us-php .capabilities__item-title,
body.page-about .capabilities__item-title,
main.page-about .capabilities__item-title {
padding: 16px;
font-weight: 600;
text-align: center;
color: var(--heading-primary-color, #1f2d3d);
text-decoration: none;
margin-top: auto;
}
body.page-template-page-about-us-php .capabilities__item-title:hover,
body.page-about .capabilities__item-title:hover,
main.page-about .capabilities__item-title:hover {
color: var(--accent-color, #FF9933);
}       body.page-template-page-about-us-php .about-intro__content,
body.page-about .about-intro__content,
main.page-about .about-intro__content {
width: 100%;
} body.page-template-page-about-us-php .about-intro__title.ss-section-title,
body.page-about .about-intro__title.ss-section-title,
main.page-about .about-intro__title.ss-section-title {
text-align: left;
font-size: 34px;
font-weight: 800;
color: var(--heading-primary-color, #1f2d3d);
margin: 0 0 16px;
}
body.page-template-page-about-us-php .about-intro__description,
body.page-about .about-intro__description,
main.page-about .about-intro__description {
color: var(--body-text-color, #5a6c7d);
font-size: 16px;
line-height: 1.9;
margin-bottom: 28px;
}
body.page-template-page-about-us-php .about-intro__description strong,
body.page-about .about-intro__description strong,
main.page-about .about-intro__description strong {
color: var(--heading-primary-color, #1f2d3d);
font-weight: 700;
} body.page-template-page-about-us-php .about-intro__stats,
body.page-about .about-intro__stats,
main.page-about .about-intro__stats {
margin: 24px 0 34px;
}
body.page-template-page-about-us-php .about-intro__stat-item,
body.page-about .about-intro__stat-item,
main.page-about .about-intro__stat-item {
text-align: center;
background: #f7f9fc;
border: 1px solid rgba(0, 0, 0, 0.06);
border-radius: 14px;
padding: 18px 16px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
body.page-template-page-about-us-php .about-intro__stat-item:hover,
body.page-about .about-intro__stat-item:hover,
main.page-about .about-intro__stat-item:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
body.page-template-page-about-us-php .about-intro__stat-number,
body.page-about .about-intro__stat-number,
main.page-about .about-intro__stat-number {
font-size: 34px;
font-weight: 900;
color: var(--primary-color, #2b67f6);
line-height: 1.1;
margin-bottom: 6px;
}
body.page-template-page-about-us-php .about-intro__stat-label,
body.page-about .about-intro__stat-label,
main.page-about .about-intro__stat-label {
color: var(--body-text-color, #5a6c7d);
font-weight: 600;
font-size: 14px;
} body.page-template-page-about-us-php .about-intro__features-video,
body.page-about .about-intro__features-video,
main.page-about .about-intro__features-video {
display: grid;
grid-template-columns: 1.1fr 0.9fr;
gap: 24px;
align-items: start;
margin-top: 34px;
}
body.page-template-page-about-us-php .about-intro__feature-list,
body.page-about .about-intro__feature-list,
main.page-about .about-intro__feature-list {
list-style: none;
padding: 0;
margin: 0 0 20px 0;
display: grid;
gap: 10px;
} body.page-template-page-about-us-php .about-intro__feature-item,
body.page-about .about-intro__feature-item,
main.page-about .about-intro__feature-item {
background: #fff;
border: 1px solid rgba(0, 0, 0, 0.06);
border-radius: 12px;
padding: 12px 14px;
color: var(--heading-primary-color, #1f2d3d);
font-size: 15px;
line-height: 1.6;
box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
body.page-template-page-about-us-php .about-intro__feature-item:hover,
body.page-about .about-intro__feature-item:hover,
main.page-about .about-intro__feature-item:hover {
transform: translateX(4px);
box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
body.page-template-page-about-us-php .about-intro__actions,
body.page-about .about-intro__actions,
main.page-about .about-intro__actions {
display: flex;
gap: 14px;
flex-wrap: wrap;
margin-top: 20px;
} body.page-template-page-about-us-php .about-intro__video,
body.page-about .about-intro__video,
main.page-about .about-intro__video {
position: relative;
}
body.page-template-page-about-us-php .about-intro__video-wrapper,
body.page-about .about-intro__video-wrapper,
main.page-about .about-intro__video-wrapper {
position: relative;
border-radius: 14px;
overflow: hidden;
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
background: #000;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
body.page-template-page-about-us-php .about-intro__video-wrapper:hover,
body.page-about .about-intro__video-wrapper:hover,
main.page-about .about-intro__video-wrapper:hover {
transform: translateY(-4px);
box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
}
body.page-template-page-about-us-php .about-intro__video-image,
body.page-about .about-intro__video-image,
main.page-about .about-intro__video-image {
width: 100%;
height: 100%;
max-height: 320px;
object-fit: cover;
display: block;
opacity: 0.92;
transition: opacity 0.3s ease;
}
body.page-template-page-about-us-php .about-intro__video-wrapper:hover .about-intro__video-image,
body.page-about .about-intro__video-wrapper:hover .about-intro__video-image,
main.page-about .about-intro__video-wrapper:hover .about-intro__video-image {
opacity: 1;
} body.page-template-page-about-us-php .why-choose__item,
body.page-about .why-choose__item,
main.page-about .why-choose__item {
height: 100%;
background: #fff;
border: 1px solid rgba(0, 0, 0, 0.06);
border-radius: 14px;
padding: 18px 16px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
body.page-template-page-about-us-php .why-choose__item:hover,
body.page-about .why-choose__item:hover,
main.page-about .why-choose__item:hover {
transform: translateY(-4px);
box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
}
body.page-template-page-about-us-php .why-choose__item-title,
body.page-about .why-choose__item-title,
main.page-about .why-choose__item-title {
margin: 0 0 10px;
font-size: 18px;
font-weight: 800;
color: var(--heading-primary-color, #1f2d3d);
line-height: 1.3;
}
body.page-template-page-about-us-php .why-choose__item-description,
body.page-about .why-choose__item-description,
main.page-about .why-choose__item-description {
margin: 0;
color: var(--body-text-color, #5a6c7d);
font-size: 14px;
line-height: 1.75;
} body.page-template-page-about-us-php .process__item,
body.page-about .process__item,
main.page-about .process__item {
height: 100%;
background: #f7f9fc;
border: 1px solid rgba(0, 0, 0, 0.06);
border-radius: 14px;
padding: 18px 16px;
transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
body.page-template-page-about-us-php .process__item:hover,
body.page-about .process__item:hover,
main.page-about .process__item:hover {
transform: translateY(-4px);
box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
background: #fff;
}
body.page-template-page-about-us-php .process__item-step,
body.page-about .process__item-step,
main.page-about .process__item-step {
font-weight: 800;
color: var(--primary-color, #2b67f6);
letter-spacing: 0.5px;
margin-bottom: 8px;
font-size: 16px;
line-height: 1.2;
}
body.page-template-page-about-us-php .process__item-title,
body.page-about .process__item-title,
main.page-about .process__item-title {
margin: 0 0 8px;
font-size: 16px;
font-weight: 700;
color: var(--heading-primary-color, #1f2d3d);
line-height: 1.4;
}
body.page-template-page-about-us-php .process__item-description,
body.page-about .process__item-description,
main.page-about .process__item-description {
margin: 0;
color: var(--body-text-color, #5a6c7d);
font-size: 14px;
line-height: 1.7;
} body.page-template-page-about-us-php .strength__item,
body.page-about .strength__item,
main.page-about .strength__item {
text-align: center;
background: #fff;
border: 1px solid rgba(0, 0, 0, 0.06);
border-radius: 14px;
padding: 22px 16px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
body.page-template-page-about-us-php .strength__item:hover,
body.page-about .strength__item:hover,
main.page-about .strength__item:hover {
transform: translateY(-4px);
box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
}
body.page-template-page-about-us-php .strength__item-number,
body.page-about .strength__item-number,
main.page-about .strength__item-number {
font-size: 34px;
font-weight: 900;
color: var(--primary-color, #2b67f6);
line-height: 1.1;
margin-bottom: 6px;
}
body.page-template-page-about-us-php .strength__item-label,
body.page-about .strength__item-label,
main.page-about .strength__item-label {
color: var(--body-text-color, #5a6c7d);
font-weight: 600;
font-size: 14px;
} body.page-template-page-about-us-php .section-cta,
body.page-about .section-cta,
main.page-about .section-cta {
background: linear-gradient(135deg, var(--primary-color, #2b67f6) 0%, #1a4fd3 100%);
color: #fff;
}
body.page-template-page-about-us-php .cta__content,
body.page-about .cta__content,
main.page-about .cta__content {
display: flex;
justify-content: space-between;
align-items: center;
gap: 24px;
}
body.page-template-page-about-us-php .cta__title,
body.page-about .cta__title,
main.page-about .cta__title {
margin: 0 0 10px;
font-size: 34px;
font-weight: 900;
color: #fff;
}
body.page-template-page-about-us-php .cta__description,
body.page-about .cta__description,
main.page-about .cta__description {
margin: 0;
opacity: 0.92;
max-width: 720px;
color: #fff;
font-size: 16px;
line-height: 1.6;
}
body.page-template-page-about-us-php .cta__actions,
body.page-about .cta__actions,
main.page-about .cta__actions {
display: flex;
gap: 14px;
flex-wrap: wrap;
}
body.page-template-page-about-us-php .section-cta .ss-btn--secondary,
body.page-about .section-cta .ss-btn--secondary,
main.page-about .section-cta .ss-btn--secondary {
background: transparent;
border: 1px solid rgba(255, 255, 255, 0.7);
color: #fff;
}
body.page-template-page-about-us-php .section-cta .ss-btn--secondary:hover,
body.page-about .section-cta .ss-btn--secondary:hover,
main.page-about .section-cta .ss-btn--secondary:hover {
background: rgba(255, 255, 255, 0.12);
} @media (max-width: 1200px) {
body.page-template-page-about-us-php .about-intro__features-video,
body.page-about .about-intro__features-video,
main.page-about .about-intro__features-video {
grid-template-columns: 1fr;
}
body.page-template-page-about-us-php .cta__content,
body.page-about .cta__content,
main.page-about .cta__content {
flex-direction: column;
text-align: center;
}
}
@media (max-width: 768px) {
body.page-template-page-about-us-php .about-intro__title.ss-section-title,
body.page-about .about-intro__title.ss-section-title,
main.page-about .about-intro__title.ss-section-title {
font-size: 28px;
margin-bottom: 12px;
}
body.page-template-page-about-us-php .about-intro__description,
body.page-about .about-intro__description,
main.page-about .about-intro__description {
font-size: 15px;
margin-bottom: 24px;
}
body.page-template-page-about-us-php .about-intro__stat-number,
body.page-about .about-intro__stat-number,
main.page-about .about-intro__stat-number {
font-size: 28px;
}
body.page-template-page-about-us-php .about-intro__stat-item,
body.page-about .about-intro__stat-item,
main.page-about .about-intro__stat-item {
padding: 16px 14px;
}
body.page-template-page-about-us-php .about-intro__feature-item,
body.page-about .about-intro__feature-item,
main.page-about .about-intro__feature-item {
font-size: 14px;
padding: 10px 12px;
}
body.page-template-page-about-us-php .about-intro__actions,
body.page-about .about-intro__actions,
main.page-about .about-intro__actions {
flex-direction: column;
gap: 12px;
}
body.page-template-page-about-us-php .about-intro__actions .ss-btn,
body.page-about .about-intro__actions .ss-btn,
main.page-about .about-intro__actions .ss-btn {
width: 100%;
justify-content: center;
} body.page-template-page-about-us-php .why-choose__item-title,
body.page-about .why-choose__item-title,
main.page-about .why-choose__item-title {
font-size: 16px;
}
body.page-template-page-about-us-php .why-choose__item-description,
body.page-about .why-choose__item-description,
main.page-about .why-choose__item-description {
font-size: 13px;
}
body.page-template-page-about-us-php .why-choose__item,
body.page-about .why-choose__item,
main.page-about .why-choose__item {
padding: 16px 14px;
} body.page-template-page-about-us-php .process__item-step,
body.page-about .process__item-step,
main.page-about .process__item-step {
font-size: 14px;
}
body.page-template-page-about-us-php .process__item-title,
body.page-about .process__item-title,
main.page-about .process__item-title {
font-size: 15px;
}
body.page-template-page-about-us-php .process__item-description,
body.page-about .process__item-description,
main.page-about .process__item-description {
font-size: 13px;
}
body.page-template-page-about-us-php .process__item,
body.page-about .process__item,
main.page-about .process__item {
padding: 16px 14px;
} body.page-template-page-about-us-php .strength__item-number,
body.page-about .strength__item-number,
main.page-about .strength__item-number {
font-size: 28px;
}
body.page-template-page-about-us-php .strength__item-label,
body.page-about .strength__item-label,
main.page-about .strength__item-label {
font-size: 13px;
}
body.page-template-page-about-us-php .strength__item,
body.page-about .strength__item,
main.page-about .strength__item {
padding: 18px 14px;
}
}
@media (max-width: 768px) {
body.page-template-page-about-us-php .ss-modal__close,
body.page-about .ss-modal__close,
main.page-about ~ .ss-modal--video .ss-modal__close {
top: -30px;
width: 35px;
height: 35px;
font-size: 20px;
}
body.page-template-page-about-us-php .capabilities-prev,
body.page-template-page-about-us-php .capabilities-next,
body.page-about .capabilities-prev,
body.page-about .capabilities-next,
main.page-about .capabilities-prev,
main.page-about .capabilities-next {
width: 35px;
height: 35px;
font-size: 18px;
}
body.page-template-page-about-us-php .capabilities-prev,
body.page-about .capabilities-prev,
main.page-about .capabilities-prev {
left: -10px;
}
body.page-template-page-about-us-php .capabilities-next,
body.page-about .capabilities-next,
main.page-about .capabilities-next {
right: -10px;
}
body.page-template-page-about-us-php .cta__title,
body.page-about .cta__title,
main.page-about .cta__title {
font-size: 28px;
}
body.page-template-page-about-us-php .cta__description,
body.page-about .cta__description,
main.page-about .cta__description {
font-size: 14px;
}
}