.main-header {
    display: flex;
    width: 100%;
    /*background-color: var(--white);*/
}
.main-header-wrapper {
    width: 100%;
}
.header-top {
    padding: 15px 0;
}
.header-bottom {
    height: 100px;
}
.header-top, .header-bottom {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}
.header-top-left, .header-top-right, .header-bottom-right {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    align-items: center;
}
.header-bottom-left, .header-logo, .header-logo img {
    height: 100%;
}
.header-social-media-box {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    border: 0;
    outline: none;
    background-color: transparent;
    font-size: 16px;
}
.header-social-media-box:hover, .header-dropdown-box .navigation-link:hover, .header-dropdown-wrapper .header-dropdown-link:hover{
    color: var(--primary-color);
}
.header-social-media-icon, .header-social-media-icon i {
    display: inline-flex;
}
.header-dropdown-wrapper, .navigation-dropdown-wrapper {
    position: relative;
}
.header-dropdown-box-wrapper{
    position: absolute;
    top: 30px;
    right: 0;
    min-width: 80px;
    background-color: #FDFDFD;
    border: 1px solid var(--gray-900);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
            opacity 0.25s ease-out,
            transform 0.25s ease-out,
            visibility 0.25s ease-out;
}
.header-dropdown-box {
    padding: 15px 20px;
}
.header-dropdown-box-lang {
    position: absolute;
    top: 30px;
    right: 0;
    min-width: 80px;
    padding: 15px 20px;
    background-color: #FDFDFD;
    border: 1px solid var(--gray-900);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease-out,
    transform 0.25s ease-out,
    visibility 0.25s ease-out;
}
.header-dropdown-wrapper:hover .header-dropdown-box-wrapper, .navigation-dropdown-wrapper:hover .header-dropdown-box-wrapper, .header-dropdown-wrapper:hover .header-dropdown-box-lang{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.navigation-dropdown-wrapper .header-dropdown-box-wrapper, .header-dropdown-box-lang {
    top: 50px;
}
.header-dropdown-link {
    color: inherit;
    border: 0;
    background-color: transparent;
    text-align: left;
    overflow: hidden;
    font-size: 18px;
    cursor: pointer;
    font-weight: 500;
}
.header-navigation {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    /*gap: 20px;*/
    align-items: center;
}
.navigation-link-box, .navigation-dropdown-wrapper, .navigation-button-box {
    list-style: none;
}
.navigation-link-padding {
    padding: 10px 15px 10px 0;
}
.navigation-link {
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    color: var(--gray-900);
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}
.navigation-button {
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
}
.navigation-button:hover {
    background-color: var(--primary-color-hover);
}
.navigation-button-box {
    margin-left: 20px;
}
.navigation-link-title::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: transparent;
    margin-right: 10px;
}
.navigation-link-title.active.navigation-link-title::before, .navigation-link-title:hover.navigation-link-title::before {
    background-color: var(--primary-color);
}
.navigation-link-title.active, .navigation-link-title:hover ,.navigation-link-title:hover .navigation-link{
    color: var(--primary-color);
}
.navigation-dropdown-wrapper .header-social-media-icon{
    font-size: 18px;
    margin-left: 6px;
}
.navigation-dropdown-wrapper .header-social-media-box{
    gap: 0;
}
.navigation-mobile-wrapper {
    display: none;
}
.navigation-button-mobile {
    font-size:21px;
    padding: 14px;
    border: 0;
    background-color: var(--primary-color);
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
}
/*Website*/
.background-lines {
    position: relative;
}
.page-lines {
    z-index: -7;
    opacity: .1;
    justify-content: center;
    align-items: stretch;
    height: 100%;
    display: flex;
    position: absolute;
    inset: 0;
}
.page-lines-outside {
    z-index: -1;
    border-right: 1px solid var(--gray-900);
    border-left: 1px solid var(--gray-900);
    width: 49.3%;
}
.page-lines-inside {
    z-index: 0;
    border-right: 1px solid var(--gray-900);
}
.page-lines-outside, .page-lines-inside {
    display: flex;
    position: relative;
    max-width: 1720px;
    height: 100%;
    min-height: 100%;
    justify-content: center;
    align-items: stretch;
}
.container-full {
    padding: 0 80px;
}
.container-xl {
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
}
.container-l {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
}
.main-hero-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
    z-index: 1;
    display: grid;
    grid-column-gap: 50px;
    grid-template-rows: auto;
    grid-template-columns: 1fr .5fr;
    position: relative;
}
.main-hero-title-box {

}
.main-hero-title-box .hero-title{
    font-size: 50px;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 400;
}
.main-hero-title-box .hero-title span{
    font-size: 50px;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
}
.main-hero-desc-box {
    margin-top: auto;
}
.main-hero-desc-box .hero-desc{
    font-size: 18px;
    text-align: right;
}
.grid-hero-image-section {
    z-index: 1;
    display: grid;
    grid-column-gap: 100px;
    grid-template-rows: auto;
    grid-template-columns: .5fr 1.25fr;
    grid-auto-columns: 1fr;
    position: relative;
}
.hero-list-wrapper {
    margin-top: auto;
    margin-bottom: 30px;
}
.hero-list-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.hero-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.hero-list-item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
}
.hero-list-image {
    max-height: 700px;
}
.hero-list-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-list-item i {
    font-size: 18px;
    color: var(--primary-color);
}
.hero-list-item p{
    color: var(--gray-700);
}
.hero-about-section {

}
.section-spacing-top {
    padding-top: 150px;
}
.hero-about-wrapper {
    display: grid;
    grid-column-gap: 50px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1.25fr;
    grid-auto-columns: 1fr;
    align-items: stretch;
    position: relative;
}
.hero-about-image {
    padding-top: 100px;
    display: flex;
    flex-grow: 1;
    height: 100%;
    width: 100%;
}
.hero-about-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.hero-about-content .content-wrapper {
    display: grid;
    grid-column-gap: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    position: relative;
}
.hero-about-content .content-wrapper-left {
    margin-top: 30px;
}
.hero-about-content .content-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 100px;
}
.hero-about-content .content-box .content-desc {
    font-size: 18px;
    color: var(--gray-600);
}
.hero-about-content .content-about-detail {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    font-size: 18px;
}
.hero-about-content .content-about-detail i {
    color: var(--primary-color);
    margin-right: 8px;
}
.hero-about-content .content-about-detail span {
    color: var(--gray-600);
    margin-right: 6px;
}
.hero-about-content .content-about-detail a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}
.hero-about-content .content-wrapper-right {
    display: flex;
    height: 100%;
}
.hero-about-year {
    margin-top: auto;
    background-color: var(--primary-color);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    color: var(--white);
}
.hero-about-year span {
    font-size: 18px;
    font-weight: 500;
}
.hero-about-year h2{
    margin-left: auto;
}
.section-title {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
}
.service-section-title {
    width: 50%;
}
/*SWIPER*/
.service-swiper-box {
    margin-top: 60px;
}
.service-section-title-box {
    display: flex;
    flex-direction: row;
    margin-top: auto;
}
.swiper-button-prev,
.swiper-button-next {
    position: unset !important;
    width: 60px!important;
    height: 60px!important;
    background: transparent!important;
    border: 1px solid var(--gray-900)!important;
    border-radius: 0;
    transition: all 0.3s;
    margin: 0!important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px !important;
    color: var(--gray-900)!important;
}
.service-section-title-box .swiper-button-disabled {
    border-color: var(--gray-400)!important;
    color: var(--gray-400)!important;;
}
.swiper {
    width: 100%;
    padding: 20px 0;
}
.service-swiper-slide {
    display: flex!important;
    flex-direction: column;
    width: 33% !important;
    height: auto!important;
    transition: opacity 0.3s;
    background-color: var(--white);
    text-decoration: none;
    box-shadow: 0px 2px 2px -1px #0A0D120A;
    box-shadow: 0px 4px 6px -2px #0A0D1208;
    box-shadow: 0px 12px 16px -4px #0A0D1214;
}
.service-swiper-slide:hover .service-slide-image img, .services-box:hover .service-slide-image img{
    transform: scale(1.2);
}
.service-swiper-slide:hover .service-slide-button, .services-box:hover .service-slide-button{
    background-color: var(--gray-900);
}
.swiper-slide-active {

}
.service-slide-content {
    position: relative;
    padding: 30px 30px 0;
    margin-bottom: 50px;
}
.service-slide-icon {
    color: var(--primary-color);
    padding-bottom: 10px;
}
.service-slide-title {

}
.service-slide-description {
    margin-top: 20px;
    color: var(--gray-600);
}
.service-slide-button {
    width: 60px;
    height: 60px;
    border-radius: 0;
    outline: none;
    border: 0;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -30px;
    right: 40px;
    z-index: 10;
    transition: all ease-in 0.3s;
}
.service-slide-image {
    /*overflow: hidden;*/
    width: 100%;
    margin-top: auto;
    position: relative;
}
.service-slide-image-box {
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.service-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease-in 0.3s;
    z-index: 2;
    aspect-ratio: 2/1;
}
.hero-location-wrapper {
    display: grid;
    grid-column-gap: 50px;
    grid-template-rows: auto;
    grid-template-columns: 1.25fr 0.75fr;
    grid-auto-columns: 1fr;
    align-items: stretch;
    position: relative;
}
.hero-location-video {
    width: 100%;
}
.hero-location-video video {
    width: 100%;
    aspect-ratio: 3/2;
    height: 100%;
    object-fit: cover;
}
.hero-location-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-right: 80px;
}
.hero-location-content-box {
    display: flex;
}
.hero-location-content-wrapper {
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.hero-location-content-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.hero-location-contact {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
}
.hero-location-contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    color: var(--primary-color);
    font-size: 24px;
}
.hero-location-contact-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hero-location-contact-details h6 {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 500;
}
.hero-location-contact-details a {
    font-size: 16px;
    color: var(--gray-900);
    font-weight: 600;
    text-decoration: none;
}
.hero-location-content-bottom {
    margin-top: auto;
    display: grid;
    grid-column-gap: 60px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: stretch;
}
.hero-location-content-number p{
    padding-top: 8px;
    color: var(--gray-600);
}
.hero-showcase-wrapper {
    display: grid;
    grid-column-gap: 100px;
    grid-template-rows: auto;
    grid-template-columns: 1.25fr 0.75fr;
    grid-auto-columns: 1fr;
    align-items: start;
    position: relative;
}
.hero-showcase-content {
    display: flex;
    flex-direction: column;
}
.hero-showcase-image {
    width: 100%;
    aspect-ratio: 1/1;
    position: sticky;
    top: 20px;
}
.hero-showcase-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-showcase-item-wrapper {
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    margin-top: auto;
}
.hero-showcase-item {
    display: flex;
    flex-direction: row;
    padding-top: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-400);
}
.hero-showcase-item-content {
    padding-right: 100px;
    gap: 20px;
    display: flex;
    flex-direction: column;
}
.hero-showcase-item-content h3 {
    font-weight: 500;
}
.hero-showcase-item-content p {
    color: var(--gray-600);
}

.hero-client-wrapper {
    display: grid;
    grid-column-gap: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: stretch;
    position: relative;
}
.hero-client-testimonial-box {
    position: relative;
}
.hero-client-testimonial-wrapper {
    display: grid;
}
.swiper-slide-testimonial {
    background-color: var(--white);
    display: grid !important;
    grid-template-rows: auto;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: stretch;
    position: relative;
}
.hero-client-testimonial-box .swiper-wrapper {
    width: 100%;
}
.hero-client-testimonial-box .swiper-slide {
    width: 100%;
}
.swiper-slide-testimonial-content {
    padding: 80px 50px 100px;
    display: flex;
    flex-direction: column;
}
.swiper-slide-testimonial-stars {
    padding-bottom: 40px;
    color: var(--primary-color);
    font-size: 24px;
}
.swiper-slide-testimonial-description {
    font-size: 18px;
    color: var(--gray-600);
    padding-bottom: 20px;
}
.swiper-slide-testimonial-image {
    width: 100%;
}
.swiper-slide-testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 2/3;
}
.swiper-button-testimonial-wrapper {
    position: absolute;
    bottom: 30px;
    left: 50px;
    z-index: 9;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
.hero-client-partners-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.hero-client-partners-wrapper h2 {
    text-align: right;
}
.hero-client-partners-images-box {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    gap: 20px;
}
.hero-client-partners-images-box img {
    width: auto;
    height: 50px;
    object-fit: contain;
}
.hero-cta-wrapper {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr .75fr;
    position: relative;
    background-color: var(--primary-color);
}
.hero-cta-content {
    padding: 100px;
    display: inline-flex;
    flex-direction: column;
    gap: 50px;
    color: var(--white);
}
.hero-cta-content a {
    margin-right: auto;
}
.hero-cta-image {
    width: 100%;
    height: 100%;

}
.hero-cta-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 3/2;
}
/*FOOTER*/
.footer-wrapper {
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    padding-bottom: 40px;
}
.footer-top {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: .5fr 1fr;
    position: relative;
    padding-bottom: 80px;
}
.footer-left {
    display: flex;
    flex-direction: column;
}
.footer-logo {
    max-width: 200px;
    width: 100%;
}
.footer-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer-right {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 40px;
}
.footer-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.footer-nav h4 {
    padding-bottom: 20px;
}
.footer-nav h4:not(:first-child) {
    padding-top: 40px;
}
.footer-nav ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}
.footer-nav a {
    text-decoration: none;
}
.footer-nav li {
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-700);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
.footer-nav a:hover {
    color: var(--primary-color);
}
.footer-nav-icon {
    padding-right: 10px;
}
.footer-social-box {
    flex-direction: row!important;
    flex-wrap: wrap;
}
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid var(--gray-200);
    padding-top: 40px;
    color: var(--gray-600);
}
/*ABOUT PAGE*/
.about-hero-wrapper {
    display: grid;
    grid-column-gap: 60px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: stretch;
    position: relative;
}
.about-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.about-hero-content-top h1{
    padding-top: 30px;
    padding-bottom: 30px;
}

.about-hero-image-date {
    display: flex;
    flex-direction: column;
    padding: 30px;
    gap: 40px;
    position: absolute;
    background-color: var(--white);
    inset: auto 50px 20px auto;
    min-width: 270px;
}
.about-hero-image-date h3 {
    text-align: right;
}
.about-hero-image {
    position: relative;
}
.about-hero-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}
.about-hero-content-bottom {
    display: flex;
    flex-direction: column;
}
.about-hero-tabs-menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    border-bottom: 3px solid var(--gray-200);
    gap: 30px;
    width: 100%;
}
.about-tab-button {
    display: flex;
    flex-direction: row;
    width: 100%;
    background-color: transparent;
    color: var(--gray-600);
    border: 0;
    padding-bottom: 10px;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
    cursor: pointer;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.about-tab-button-active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}
.tab-button-icon {
    padding-right: 12px;
}
.about-hero-tabs-content {
    padding-top: 40px;
}
.about-hero-tab-box {
    font-size: 18px;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.about-hero-tab-box-active {
    display: block;
    opacity: 1;
}
.about-years-wrapper, .product-details-images-wrapper {
    display: grid;
    grid-column-gap: 100px;
    grid-template-rows: auto;
    grid-template-columns: .60fr 1fr;
    grid-auto-columns: 1fr;
    align-items: stretch;
    position: relative;
}
.about-years-content, .product-details-images-content {
    display: flex;
    flex-direction: column;
    padding-left: 80px;
}
.about-years-button-box, .product-details-images-button-box {
    margin-top: auto;
    display: flex;
    flex-direction: row;
}
.about-years-swiper-slide {
    width: 40% !important;
    height: auto;
    transition: opacity 0.3s;
    text-decoration: none;
}
.about-years-swiper-slide-timeline {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    padding-top: 10px;
}
.about-years-swiper-slide-timeline-circle {
    border-radius: 50%;
    width: 25px;
    min-width: 25px;
    height: 25px;
    border: 4px solid var(--primary-color);
    background-color: var(--white);
}
.about-years-swiper-slide-timeline-line {
    height: 2px;
    width: 100%;
    background-color: var(--gray-300);
}
.about-years-swiper-slide-bottom {
    padding: 30px;
    background-color: var(--white);
    margin-right: 40px;
    height: 100%;
}
.about-years-swiper-slide-bottom h3 {
    padding-bottom: 30px;
}
.about-years-swiper-slide-bottom p {
    font-size: 18px;
    color: var(--gray-600);
}
.about-feature-wrapper {
    display: grid;
    grid-column-gap: 100px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: stretch;
    position: relative;
}
.about-feature-image {

}
.about-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}
.about-feature-content {
    padding-right: 80px;
}
.about-feature-item-box {
    display: grid;
    gap: 40px;
    grid-template-rows: auto;
    padding-top: 60px;
    grid-template-columns: 1fr 1fr;
}
.about-feature-item-icon {
    border-radius: 50%;
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    font-size: 30px;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-feature-item-title {
    padding: 20px 0;
}
.about-feature-item-description {
    color: var(--gray-600);
}
.about-cta-item-wrapper {
    display: flex;
    flex-direction: row;
    gap: 20px
}
.about-cta-item-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.about-cta-item-box p {
    font-size: 18px;
}
.subheader-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: var(--white);
}
.subheader-section p {
    text-align: center;
    color: var(--gray-600);
}
.main-products-wrapper {
    padding-top: 50px;
    display: flex;
    flex-direction: column;
}
.products-button-box {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.product-button {
    border: 1px solid var(--primary-color);
    padding: 12px 30px;
    color: var(--primary-color);
    background-color: transparent;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}
.product-button:hover:not(.product-button-active) {
    background-color: var(--gray-200);
}
.product-button-active {
    color: var(--white);
    background-color: var(--primary-color);
}
.products-wrapper-item {
    display: grid;
    gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: stretch;
    position: relative;
    padding-top: 50px;
}
.products-item {
    padding: 40px 30px 30px 30px;
    background-color: var(--white);
    width: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--primary-color);
    border: 1px solid var(--gray-300);
    box-shadow: 0px 12px 16px -4px #0A0D1214;
}
/*.products-item:hover .products-item-image img {*/
/*    transform: scale(1.1);*/
/*}*/
.products-item:hover .products-item-button {
    background-color: var(--primary-color);
    color: var(--white);
}
.products-item-image {
    width: 100%;
    overflow: hidden;
}
.products-item-image img{
    aspect-ratio: 4/3;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all ease-in 0.2s;
}
.products-item-category {
    padding-top: 20px;
    font-weight: 500;
}
.products-item-title {
    padding: 10px 0 20px;
}
.products-item-button {
    border: 1px solid var(--primary-color);
    background-color: transparent;
    font-size: 14px;
    margin-right: auto;
    padding: 8px 30px;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 8px;
    color: var(--primary-color);
    transform: scale(1.1);
}
.products-item-button-icon {
    display: flex;
}
.details-product-head-wrapper {

}
.details-product-head-wrapper h1{
    padding-top: 30px;
    padding-bottom: 30px;
}
.details-product-head-wrapper p{
    color: var(--gray-600);
    font-size: 18px;
}
.contact-hero-wrapper {
    padding-top: 50px;
    display: flex;
    flex-direction: column;
}
.contact-hero-heading {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 40px;
}
.contact-hero-heading p {
    font-size: 18px;
    color: var(--gray-600);
}
.contact-hero-form {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1.25fr;
    position: relative;
    background-color: var(--white);
}
.contact-hero-form-left {
    display: flex;
    flex-direction: column;
    padding: 60px;
    background-color: var(--primary-color);
    color: var(--white);
}
.contact-form-title {
    padding-bottom: 10px;
}
.contact-form-description {
    font-size: 18px;
}
.contact-form-hours {
    font-size: 18px;
    padding-top: 30px;
}
.contact-form-hours {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-form-image {
    width: 100%;
    padding-top: 50px;
}
.contact-form-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 2/1;
    object-fit: cover;
}
.contact-hero-form-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.contact-hero-form-content .button-primary{
    margin-right: auto;
}
.contact-hero-form-content-line {
    display: grid;
    grid-template-rows: auto;
    gap: 40px;
    grid-template-columns: 1fr 1fr;
    position: relative;
}
.form-input-box {
    display: flex;
    flex-direction: column;
}
.form-input-box label {
    font-size: 18px;
    color: var(--gray-600);
    padding-bottom: 10px;
}
.form-input-box input {
    background-color: var(--gray-200);
    font-size: 18px;
    border: 1px solid var(--gray-200);
    border-radius: 0;
    height: 50px;
    padding: 0 12px;
    outline: none;
}
.form-input-box input:focus {
    border-color: var(--gray-900);
}
.form-input-box textarea {
    background-color: var(--gray-200);
    font-size: 18px;
    border: 1px solid var(--gray-200);
    border-radius: 0%;
    min-height: 200px;
    padding: 12px 12px;
    outline: none;
    resize: vertical;
}
.contact-service-wrapper {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    position: relative;
}
.contact-service-box {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-color: var(--white);
}
.contact-service-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-service-link-box {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}
.contact-service-link-icon {
    font-size: 22px;
    color: var(--primary-color);
}
.contact-service-link {
    font-size: 18px;
    color: var(--gray-600);
    text-decoration: none;
}
.contact-service-link:hover {
    color: var(--primary-color);
}
.product-details-wrapper {
    margin-top: 100px;
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}
.product-details-heading {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-details-heading-top {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
}
.product-details-heading-bottom {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}
.product-details-label {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 30px;
    margin-right: auto;
    margin-bottom: 20px;
}
.product-details-heading p {
    font-size: 18px;
    padding-top: 30px;
    color: var(--gray-600);
}
.product-details-image {
    width: 100%;
    aspect-ratio: 1/1;
    background-color: var(--white);
    padding: 20px;
}
.product-details-image img {
    object-fit: contain;
    height: 100%;
    width: 100%;
    aspect-ratio: 1/1;
}
.product-details-options-heading {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}
.product-details-options-heading p{
    color: var(--gray-600);
    font-size: 18px;
}
.product-details-options-content {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 20px;
}
.product-details-options-item {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border: 1px solid var(--gray-300);
}
.product-details-options-item p{
    color: var(--gray-600);
}
.product-details-options-item-top {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
}
.product-details-options-item-image {
    margin-top: auto;
    width: 100%;
}
.product-details-options-item-image img{
    width: 100%;
    aspect-ratio: 2/1;
    height: 100%;
    object-fit: cover;
}
.product-details-table-heading {
    display: flex;
    justify-content: center;
    padding-bottom: 60px;
}
.product-details-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--gray-100);
    border: 1px solid var(--gray-300);
}
.product-details-table td {
    padding: 16px 30px;
    border-bottom: 1px solid var(--gray-300);
}
.product-details-table tr td:first-child {
    color: var(--gray-600);
}
.product-details-image-slide {
    width: 40% !important;
    height: auto;
    transition: opacity 0.3s;
    text-decoration: none;
}
.product-details-image-slide img{
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}
/*Configurator*/
.configurator-section {
    position: relative;
}
.configurator-wrapper {

}
.configurator-heading {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    position: relative;
    background-color: var(--white);
}
.configurator-heading-content {
    padding: 100px;
    display: flex;
    /*color: var(--white);*/
    /*color: var(--primary-color);*/
    align-items: center;
}
.configurator-heading-image {
    width: 100%;
}
.configurator-heading-image img{
    width: 100%;
    height: 100%;
    aspect-ratio: 2/1;
    object-fit: cover;
}

.configurator-content {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
}
.configurator-content-box {

}
.configurator-content-box-title {
    padding-top: 100px;
    padding-bottom: 40px;
}
.configurator-content-box-item-wrapper {
    display: grid;
    grid-template-rows: auto;
    gap: 20px;
    position: relative;
}
.configurator-content-grid-2 {
    grid-template-columns: 1fr 1fr;
}
.configurator-content-grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
}
.configurator-content-grid-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.configurator-content-grid-5 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.checkbox-wrapper-configurator *,
.checkbox-wrapper-configurator *:after,
.checkbox-wrapper-configurator *:before {
    box-sizing: border-box;
}

.checkbox-wrapper-configurator .checkbox-input {
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}
.checkbox-wrapper-configurator .checkbox-input:checked + .checkbox-title {
    border-color: var(--primary-color);
    /*color: var(--primary-color);*/
}
.checkbox-wrapper-configurator .checkbox-input:checked + .checkbox-title:before {
    transform: scale(1);
    opacity: 1;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
/*.checkbox-wrapper-configurator .checkbox-input:checked + .checkbox-title .checkbox-icon,*/
/*.checkbox-wrapper-configurator .checkbox-input:checked + .checkbox-title .checkbox-label {*/
/*    color: var(--primary-color);*/
/*}*/
.checkbox-wrapper-configurator .checkbox-input:focus + .checkbox-title {
    border-color: var(--primary-color);
}
.checkbox-wrapper-configurator .checkbox-input:focus + .checkbox-title:before {
    transform: scale(1);
    opacity: 1;
}
.checkbox-wrapper-configurator-side {

}
.checkbox-wrapper-configurator .checkbox-title {
    padding: 20px 20px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    border: 2px solid var(--gray-300);
    background-color: var(--white);
    transition: 0.15s ease;
    cursor: pointer;
    position: relative;
}
.checkbox-wrapper-configurator .checkbox-title:before {
    content: "";
    position: absolute;
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--gray-300);
    background-color: var(--white);
    border-radius: 50%;
    top: 20px;
    right: 20px;
    opacity: 0;
    transform: scale(0);
    transition: 0.25s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' fill='%23FFFFFF' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'%3E%3C/rect%3E%3Cpolyline points='216 72.005 104 184 48 128.005' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
.checkbox-wrapper-configurator .checkbox-title:hover {
    border-color: var(--primary-color);
}
.checkbox-wrapper-configurator .checkbox-title:hover:before {
    transform: scale(1);
    opacity: 1;
}

.checkbox-wrapper-configurator .checkbox-icon {
    transition: 0.375s ease;
    color: var(--gray-600);
}
.checkbox-wrapper-configurator .checkbox-icon svg {
    width: 3rem;
    height: 3rem;
}

.checkbox-wrapper-configurator .checkbox-label {
    transition: 0.375s ease;
}
.checkbox-wrapper-configurator .checkbox-image {
    width: 100%;
    display: flex;
}
.checkbox-wrapper-configurator .checkbox-image img {
    aspect-ratio: 1/1;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.checkbox-label, .checkbox-price {
    padding-bottom: 10px;
}
.checkbox-specification {
    margin-top: 10px;
    padding: 10px;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-color: var(--gray-300);
    font-weight: 500;
    color: var(--gray-600);
}
.checkbox-price {
    color: var(--gray-600);
}
.checkbox-wrapper-configurator-side .checkbox-title{
    padding: 0!important;
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: .5fr 1fr;
}
.checkbox-wrapper-configurator-side .checkbox-wrapper-configurator-side-content {
    padding: 20px;
}
.configuration-final-bottom {
    margin-top: 100px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
}
.configuration-final-bottom p {
    color: var(--gray-600);
}
.configuration-button-primary-icon {
    padding-left: 16px;
    display: flex;
    color: var(--white);
}
.contact-hero-form-content-configuration-table {
    margin: 20px 0;
    border-collapse: collapse;
    border: 1px solid var(--gray-300);
}
.contact-hero-form-content-configuration-table tbody tr td {
    padding: 20px 20px;
    border-bottom: 1px solid var(--gray-300);
}
.contact-hero-form-content-configuration-table tbody tr td:first-child {
    min-width: 200px;
    color: var(--gray-600);
}
.configuration-remove-box {
    display: flex;
    justify-content: flex-end;
}
.configuration-remove {
    color: var(--gray-600);
    margin-left: auto;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 12px;
}
.configuration-remove:hover {
    color: var(--primary-color);
}
.cta-small-wrapper {
    padding: 40px;
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cta-small-wrapper h3 {
    width: 60%;
}
.services-hero-section {
    background-color: var(--white);
}
.services-section {
    padding-top: 40px;
}
.services-wrapper {
    display: grid;
    grid-template-rows: auto;
    gap: 40px;
    position: relative;
    grid-template-columns: 1fr 1fr 1fr;
}
.services-box {
    flex-direction: column;
    display: flex;
    height: auto;
    transition: opacity 0.3s;
    background-color: var(--white);
    text-decoration: none;
    box-shadow: 0px 2px 2px -1px #0A0D120A;
    box-shadow: 0px 4px 6px -2px #0A0D1208;
    box-shadow: 0px 12px 16px -4px #0A0D1214;
}
.services-box:hover .service-slide-image img{
    transform: scale(1.2);
}
.services-box:hover .service-slide-button {
    background-color: var(--gray-900);
}
.services-box-content {
    position: relative;
    padding: 30px 30px 0;
    margin-bottom: 50px;
}
.services-counter-wrapper {
    background-color: var(--primary-color);
    color: white;
    padding: 80px;
    display: grid;
    grid-template-rows: auto;
    gap: 40px;
    position: relative;
    grid-template-columns: 1fr 1fr 1fr;
}
.services-counter-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.services-benefits-wrapper {
    display: grid;
    grid-template-rows: auto;
    column-gap: 40px;
    row-gap: 60px;
    position: relative;
    grid-template-columns: 1fr 1fr 1fr;
}
.services-benefits-box {
    display: flex;
    flex-direction: column;
}
.services-benefits-icon {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    margin-bottom: 20px;
    margin-right: auto;
}
.services-benefits-title {
    padding-bottom: 10px;
}
.services-benefits-description {
    color: var(--gray-600);
}
.service-detail-hero-wrapper {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    position: relative;
    background-color: var(--primary-color);
}
.service-detail-hero-content {
    padding: 100px;
    display: flex;
    flex-direction: column;
    color: var(--white);
    gap: 40px;
}
.service-detail-hero-image {
    width: 100%;
    height: 100%;
}
.service-detail-hero-image img{
    height: 100%;
    width: 100%;
    aspect-ratio: 2/1;
    object-fit: cover;
}
.service-detail-main-wrapper {
    display: grid;
    grid-template-rows: auto;
    gap: 100px;
    position: relative;
    grid-template-columns: 1fr .5fr;
}
.service-detail-box {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.service-detail-box-item h2{
    padding-bottom: 20px;
}
.service-detail-aside-wrapper {
    position: sticky;
    top: 100px;
    padding: 40px;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.service-detail-aside-box {
    display: flex;
    flex-direction: column;
    gap:20px;
}
.service-detail-aside-box .button-primary {
    justify-content: center;
}
.service-detail-aside-divider {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 1px;
    width: 100%;
    background-color: var(--gray-300);
    margin-top: 20px;
    margin-bottom: 20px;
}
.service-detail-aside-divider span {
    position: absolute;
    padding: 0 10px;
    background-color: var(--white);
    color: var(--gray-600);
}
.service-detail-aside-link-box {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.service-detail-aside-link-icon {
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 10px;
}
.service-detail-aside-link {
    color: var(--gray-600);
    font-size: 16px;
    text-decoration: none;
    display: flex;
}
.service-detail-aside-link:hover {
    color: var(--gray-800);
}
.service-detail-box-item h2 {
    color: var(--gray-900);
}
.service-detail-box-item {
    color: var(--gray-600);
}
.service-detail-box-item p:not(:last-child) {
    padding-bottom: 20px;
}
.service-detail-box-item ul {
    padding-left: 20px;
}
.service-detail-box-item ul li{
    padding-bottom: 20px;
}
.service-detail-box-achievements-wrapper {
    padding: 40px;
    color: var(--white);
    background-color: var(--primary-color);
}
.service-detail-box-achievements-wrapper {
    display: grid;
    grid-template-rows: auto;
    gap: 60px;
    position: relative;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}



.button-primary {
    padding: 16px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 0;
    text-decoration: none;
    border: 0;
    display: inline-flex;
    font-weight: 500;
    font-size: 16px;
}
.button-primary:hover {
    background-color: var(--primary-color-hover);
}
.button-primary-white {
    padding: 16px 30px;
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 0;
    text-decoration: none;
    border: 0;
    display: inline-flex;
    font-weight: 500;
}
.button-primary-white:hover {
    background-color: var(--gray-100);
}


@media screen and (max-width: 991px) {
    .navigation-mobile-wrapper {
        display: flex;
    }
    .header-navigation {
        position: absolute;
        left: 0;
        top: 80px;
        flex-direction: column;
        width: 100%;
        padding: 20px;
        border: 1px solid var(--gray-600);
        background-color: var(--white);
        z-index: 9;
    }
    .navigation-link-box {
        width: 100%;
    }
    .navigation-button-box {
        margin-right: 20px;
        width: 100%;
    }
    .navigation-button-box a {
        text-align: center;
        width: 100%;
    }
    .header-dropdown-box-wrapper {
        width: 100%;
        position: relative;
        top: 0;
        height: 0;
        overflow: hidden;
    }
    .navigation-dropdown-wrapper:hover .header-dropdown-box-wrapper {
        height: auto !important;
    }
    .navigation-dropdown-wrapper .header-dropdown-box-wrapper {
        top: 0;
    }
    .navigation-dropdown-wrapper {
        width: 100%;
    }
    .header-bottom {
        height: 80px;
        position: relative;
    }
    .navigation-link-padding {
        height: 40px;
    }
    .navigation-button-box {
        display: flex;
    }
    .header-dropdown-box .navigation-link-box {
        padding: 10px 15px 10px 0;
    }
    .header-top-left {
        display: none;
    }
    .header-top-right .header-social-media-box:not(:first-child) {
        display: none;
    }
    .header-dropdown-box-lang {
        top: 30px;
    }
    .header-top-right {
        justify-content: space-between;
        width: 100%;
    }
    .container-full {
        padding-left: 20px;
        padding-right: 20px;
    }
    .container-xl, .container-l {
        padding-left: 20px;
        padding-right: 20px;
    }
    .container-l {
        padding-left: 20px;
        padding-right: 20px;
    }
    .section-spacing-top {
        padding-top: 80px;
    }
    .main-hero-title-box .hero-title, .main-hero-title-box .hero-title span{
        font-size: 36px;
    }
    .main-hero-wrapper {
        grid-template-columns: 1fr .75fr;
        grid-column-gap: 30px;
    }
    .grid-hero-image-section {
        grid-template-columns: 1fr 1fr;
    }
    .hero-about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero-about-image {
        padding-top: 0;
    }
    .hero-about-content .content-wrapper {
        grid-template-columns: 1fr .5fr;
    }
    .service-swiper-slide {
        width: 60%!important;
    }
    .hero-location-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-location-content {
        padding-left: 20px;
        padding-right: 20px;
    }
    .hero-location-content-wrapper {
        gap: 60px;
    }
    .hero-showcase-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-showcase-item-wrapper {
        padding-top: 80px;
    }
    .hero-showcase-content {
        grid-row: 2;
    }
    .hero-client-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-client-partners-wrapper {
        gap: 30px;
    }
    .hero-cta-content {
        padding: 60px;
    }
    .hero-cta-wrapper {
        grid-template-columns: 1fr 0.5fr;
    }
    .about-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-hero-content {
        gap: 30px;
    }
    .about-years-wrapper, .product-details-images-wrapper {
        gap: 30px;
    }
    .about-years-content, .product-details-images-content {
        padding-left: 20px;
    }
    .about-years-swiper-slide, .product-details-image-slide {
        width: 65%!important;
    }
    .about-feature-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-feature-item-title {
        font-size: 22px;
    }
    .about-feature-content {
        padding-left: 20px;
        padding-right: 20px;
    }
    .about-feature-item-box {
        gap: 20px;
    }
    .hero-cta-wrapper-2 {
        grid-template-columns: 1fr;
    }
    .products-wrapper-item {
        grid-template-columns: 1fr 1fr;
    }
    .product-details-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .product-details-heading {
        gap: 60px;
    }
    .product-details-options-content {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .configurator-heading {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }
    .configurator-heading-content {
        padding: 30px;
    }
    .configurator-heading-image img {
        aspect-ratio: 1/1;
    }
    .configurator-content-grid-3, .configurator-content-grid-4 {
        grid-template-columns: 1fr 1fr;
    }
    .subheader-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .services-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    .services-counter-wrapper {
        padding: 20px;
    }
    .services-benefits-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .service-detail-hero-content {
        padding: 30px;
    }
    .service-detail-box-item h2 {
        font-size: 28px!important;
    }
    .service-detail-main-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-hero-form {
        grid-template-columns: 1fr;
    }
    .contact-hero-form-left {
        padding: 30px;
    }
    .contact-hero-form-content-line {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-hero-form-content {
        padding: 60px 30px;
    }
    .contact-service-wrapper {
        gap: 30px;
    }
    .hero-showcase-image {
        position: relative;
    }
}

@media screen and (max-width: 767px) {
    .product-details-options-content {
        grid-template-columns: 1fr 1fr;
    }

    .products-button-box {
        flex-direction: column;
    }

    .main-hero-wrapper {
        grid-template-columns: 1fr;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .grid-hero-image-section {
        grid-template-columns: 1fr;
        grid-column-gap: 30px;
    }

    .hero-list-image {
        grid-row: 1;
    }

    .hero-list-wrapper {
        margin-top: 30px;
    }

    .hero-desc {
        text-align: left !important;
    }

    .main-hero-wrapper {
        gap: 30px;
    }

    .header-navigation {
        display: none;
        /*DO SKASOWANIA*/
    }

    .content-wrapper {
        grid-template-columns: 1fr!important;
        gap: 30px;
    }
    .swiper-button-prev, .swiper-button-next {
        width: 40px !important;
        height: 40px !important;
    }

    .service-section-title {
        font-size: 25px;
    }
    .service-swiper-slide {
        width: 90% !important;
    }
    .service-slide-button {
        width: 40px;
        height: 40px;
    }
    .hero-service-wrapper .section-title {
        padding-left: 30px;
        padding-right: 30px;
    }
    .main-service-swiper {
        padding-left: 30px!important;
    }
    .hero-service-section {
        padding-left: 0px;
        padding-right: 0px;
    }
    .hero-location-content-bottom {
        grid-column-gap: 30px;
    }
    .hero-showcase-item-wrapper {
        padding-top: 30px;
    }
    .hero-showcase-item-content {
        padding-right: 30px;
    }
    .hero-showcase-item-content p{
        font-size: 14px;
    }
    .swiper-slide-testimonial {
        grid-template-columns: 1fr;
    }
    .swiper-slide-testimonial-content {
        grid-row: 2;
        padding: 20px 20px 80px;
    }
    .swiper-slide-testimonial-image img {
        aspect-ratio: 1 / 1;
    }
    .swiper-button-testimonial-wrapper {
        bottom: 20px;
        left: 20px;
    }
    .swiper-slide-testimonial-stars {
        padding-bottom: 20px;
    }
    .hero-client-partners-wrapper h2 {
        text-align: unset;
    }
    .hero-client-partners-images-box {
        justify-content: flex-start;
    }
    .hero-cta-content {
        padding: 20px;
        gap: 30px;
    }
    .hero-cta-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .hero-cta-image img {
        aspect-ratio: 2 / 1;
    }
    .about-hero-tabs-menu {
        flex-direction: column;
        gap: 20px;
        border-bottom: 0;
    }
    .about-years-wrapper {
        grid-template-columns: 1fr;
    }
    .about-years-content {
        gap: 20px;
    }
    .about-years-swiper {
        padding-left: 30px!important;
    }
    .about-years-swiper-slide-bottom {
        padding: 20px;
        margin-right: 30px;
    }
    .about-years-swiper-slide, .product-details-image-slide {
        width: 90% !important;
    }
    .about-years-swiper-slide-bottom p {
        font-size: 14px;
    }
    .about-feature-section {
        padding-left: 30px;
        padding-right: 30px;
    }
    .about-feature-item-box {
        gap: 20px;
        padding-top: 40px;
        grid-template-columns: 1fr;
    }
    .about-feature-item-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .about-feature-content {
        padding-left: 0;
        padding-right: 0;
    }
    .about-feature-item-title {
        padding: 10px 0;
    }
    .about-feature-item h3{
        font-size: 22px;
    }
    .about-cta-item-wrapper {
        flex-direction: column;
    }
    .products-wrapper-item {
        gap: 10px;
    }
    .products-item {
        padding: 20px 10px 20px 10px;
    }
    .products-item-title {
        font-size: 16px!important;
    }
    .products-item-category {
        font-size: 14px;
    }
    .products-item-button{
        padding: 4px 8px;
        margin-left: auto;
        margin-right: unset;
        margin-top: auto;
    }
    .product-details-heading-bottom {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .product-details-heading p {
        padding-top: 10px;
    }
    .product-details-table td {
        padding: 16px 10px;
    }
    .product-details-images-wrapper {
        grid-template-columns: 1fr;
    }
    .product-details-image-swiper {
        padding-left: 30px!important;
    }
    .product-details-images-content {
        gap: 20px;
    }
    .product-details-options-item-top {
        gap: 20px;
        padding: 20px;
    }
    .cta-small-wrapper {
        padding: 20px;
        flex-direction: column;
        gap: 20px;
        align-items: unset;
    }

    .cta-small-wrapper h3 {
        width: 100%;
    }
    .configurator-heading {
        grid-template-columns: 1fr;
    }
    .configurator-heading-image {
        grid-row: 1;
    }
    .configurator-heading-image img {
        aspect-ratio: 2 / 1;
    }
    .checkbox-specification {
        padding: 10px 0;
    }
    .checkbox-title {
        padding: 20px 10px 10px;
    }
    .configurator-content-grid-3 {
        grid-template-columns: 1fr;
    }
    .configurator-content-grid-4 {
        grid-template-columns: 1fr 1fr;
    }
    .checkbox-wrapper-configurator-side .checkbox-wrapper-configurator-side-content {
        display: flex;
        flex-direction: column;
    }
    .services-wrapper {
        grid-template-columns: 1fr;
    }
    .services-counter-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .services-benefits-wrapper {
        grid-template-columns: 1fr;
    }
    .service-detail-hero-wrapper {
        grid-template-columns: 1fr;
    }
    .service-detail-box-achievements-wrapper {
        padding: 20px;
        gap: 20px;
        grid-template-columns: 1fr;
    }
    .contact-hero-form-content-configuration-table tbody tr td:first-child {
        min-width: 130px;
    }
    .contact-hero-form-content-configuration-table tbody tr td {
        padding: 20px 10px;
    }
    .contact-service-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-service-box {
        padding: 20px;
    }
    .contact-service-links {
        gap: 10px;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-right {
        flex-direction: column;
    }
    .footer-wrapper {
        padding-top: 40px;
    }
}