@font-face {
    font-family: 'coolvetica';
    src: url('../fonts/Coolvetica\ Rg\ Cond.otf') format('truetype');
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 175px;
    overflow: hidden;
    z-index: 1000;
}

nav {
    width: 100%;
    height: 100px;
    background: #eeeeee;
    position: relative;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.nav-div {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo {
    width: 180px;
    object-fit: cover;
}

.nav-ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-ul li {
    margin: 0 15px;
}

.nav-ul li a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 400;
    font-size: 0.9rem;
}

.nav-ul li a i {
    color: #76a501;
}

.nav-div2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    background: #1a1a1a;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 100% 100%, 0% 100%);
    padding: 25px 20px;
    margin-top: 15px;
}

.nav-ul2 {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-ul2 li {
    margin: 0 15px;
}

.nav-ul2 li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;
}

/* Mobile Sidebar */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1a1a1a;
    cursor: pointer;
    padding: 10px;
    align-items: center;
    justify-content: center;
}

.desktop-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: end;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background: #eeeeee;
    z-index: 1999;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #1a1a1a;
    border-bottom: 3px solid #91c001;
}

.sidebar-logo {
    width: 120px;
    object-fit: contain;
}

.sidebar-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.sidebar-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sidebar-content {
    padding: 20px;
}

.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-section h3 {
    color: #1a1a1a;
    font-family: 'coolvetica', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #91c001;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin-bottom: 5px;
}

.sidebar-nav li a {
    display: block;
    padding: 12px 15px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sidebar-nav li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #91c001, #76a501);
    transition: width 0.3s ease;
    z-index: -1;
}

.sidebar-nav li a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.sidebar-nav li a:hover::before {
    width: 100%;
}

.sidebar-contact {
    space-y: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    color: #76a501;
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 2px;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    color: #1a1a1a;
    font-size: 1rem;
    display: block;
    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.contact-item a {
    color: #76a501;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #91c001;
}

body.sidebar-open {
    overflow: hidden;
}

/* Media Queries para Mobile Sidebar */
@media screen and (max-width: 991px) {
    .mobile-menu-btn {
        display: flex;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-sidebar {
        width: 280px;
    }
}

@media screen and (max-width: 480px) {
    .mobile-sidebar {
        width: 100%;
        right: -100%;
    }

    .sidebar-content {
        padding: 15px;
    }

    .contact-item {
        padding: 12px;
    }
}

/* one section */
.one-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.os-img {
    width: 100%;
    object-fit: cover;
}

.os-div {
    top: 50%;
    left: 10%;
    position: absolute;
    transform: translateY(-50%);
}

.os-p {
    color: #ffffff;
    font-family: 'coolvetica', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    margin-bottom: 0;
}

.os-span {
    position: relative;
    z-index: 1;
    padding: 0 5px;
}

.os-span::before {
    content: '';
    position: absolute;
    background: #91c001;
    width: 100%;
    height: 45%;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.os-p2 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 400;
}

.btn-contact {
    background: #76a501 !important;
    color: #ffffff !important;
    padding: 5px 15px !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    font-weight: 200 !important;
    font-size: 1rem !important;
    margin-top: 10%;
}

/* two section */
.two-section {
    background-color: #fbfbfb;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.ts-div {
    width: 80%;
    margin: 5% auto;
}

.ts-p {
    font-size: 4rem;
    font-weight: 400;
    color: #1a1a1a;
    text-align: center;
    font-family: 'coolvetica', sans-serif;
    margin-bottom: 0;
}

.ts-p span::before {
    bottom: 14px;
    height: 40%;
}

.ts-p2 {
    font-size: 1.1rem;
    font-weight: 400;
    color: #1a1a1a;
    text-align: center;
    white-space: pre-line;
}

.ts-div2 {
    width: 100%;
    height: 260px;
    background: #eeeeee;
    padding: 20px;
    margin-bottom: 25px;
    overflow: hidden;
}

.ts-div2 .row {
    width: 100%;
    height: 100%;
}

.ts-div2 .row .col-6 {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
}

.ts-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ts-p3 {
    font-size: 2rem;
    line-height: 1.2;
    font-family: 'coolvetica', sans-serif;
    font-weight: 300;
    color: #1a1a1a;
    margin-top: 10px;
    white-space: pre-line;
}

.ts-div2 .btn-contact {
    margin-top: 0;
}

/* three section */

.three-section {
    background-color: #fbfbfb;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.ths-div {
    width: 80%;
    margin: 5% auto;
}

.ths-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.ths-div2 {
    width: 65%;
    height: 100%;
    background: #ffffff;
    padding: 20px 40px;
    overflow: hidden;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.ths-p {
    font-size: 4rem;
    font-family: 'coolvetica', sans-serif;
    font-weight: 300;
    color: #1a1a1a;
    margin-top: 10px;
    white-space: pre-line;
}

.ths-p2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    white-space: pre-line;
    background: #91c001;
    display: inline-block;
}

.ths-p3 {
    font-size: 1.1rem;
    font-weight: 400;
    color: #1a1a1a;
    white-space: pre-line;
}

#ths-logos {
    width: 80%;
    margin: 10% 0;

}

.ths-img {
    height: 80px;
    object-fit: contain;
}

.ths-img2 {
    width: 45%;
    margin-top: 10%;
    margin-left: -40px;
    z-index: 100;
}

/* four section */
.four-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #fbfbfb;
}

.fs-img {
    width: 100%;
    object-fit: cover;
}

.fs-i,
.fs-i2 {
    position: absolute;
    color: #010101;
    font-size: 1.2rem;
    transform-origin: center;
    transition: all 0.4s ease;
    cursor: pointer;
    opacity: 0.8;
}

.fs-i {
    position: absolute;
    top: 42%;
    left: 24%;
    animation: smoothPulse1 6s infinite ease-in-out;
}

.fs-i2 {
    position: absolute;
    top: 39%;
    left: 24%;
    animation: smoothPulse2 6s infinite ease-in-out;
    animation-delay: 3s;
}

/* Animaciones más suaves y fluidas con el color #010101 */
@keyframes smoothPulse1 {

    0%,
    85% {
        transform: scale(1);
        opacity: 0.8;
        color: #010101;
    }

    10% {
        transform: scale(1.6);
        opacity: 1;
        color: #000000;
    }

    20% {
        transform: scale(1.2);
        opacity: 0.95;
        color: #010101;
    }

    30%,
    100% {
        transform: scale(1);
        opacity: 0.8;
        color: #010101;
    }
}

@keyframes smoothPulse2 {

    0%,
    85% {
        transform: scale(1);
        opacity: 0.7;
        color: #010101;
    }

    10% {
        transform: scale(1.5);
        opacity: 1;
        color: #000000;
    }

    20% {
        transform: scale(1.15);
        opacity: 0.9;
        color: #010101;
    }

    30%,
    100% {
        transform: scale(1);
        opacity: 0.7;
        color: #010101;
    }
}

/* Efecto hover más suave con color #010101 */
.fs-i:hover,
.fs-i2:hover {
    animation-play-state: paused;
    transform: scale(2);
    color: #010101;
    opacity: 1;
    transition: all 0.3s ease;
}

/* Efecto de sombra sutil con tonos más oscuros */
.fs-i::after,
.fs-i2::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: rgba(1, 1, 1, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all 0.4s ease;
}

.fs-i:hover::after,
.fs-i2:hover::after {
    width: 40px;
    height: 40px;
    background: rgba(1, 1, 1, 0.25);
}

/* Responsive para los iconos */
@media (max-width: 768px) {

    .fs-i,
    .fs-i2 {
        font-size: 1rem;
    }

    .fs-i:hover,
    .fs-i2:hover {
        transform: scale(1.5);
    }
}

@media (max-width: 480px) {

    .fs-i,
    .fs-i2 {
        font-size: 0.9rem;
    }

    .fs-i {
        top: 40%;
        left: 22%;
    }

    .fs-i2 {
        top: 37%;
        left: 22%;
    }

    .fs-i:hover,
    .fs-i2:hover {
        transform: scale(1.3);
    }
}

.fs-div {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

.fs-p {
    color: #000;
    font-family: 'coolvetica', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    position: relative;
    margin-bottom: 0;
    text-align: center;
}

.fs-p2 {
    color: #000;
    font-size: 1.1rem;
    font-weight: 400;
    text-align: center;
    white-space: pre-line;
}

.fs-p span::before {
    bottom: 14px;
    height: 40%;
}

.fs-div2 {
    width: 40%;
    position: absolute;
    top: 60%;
    right: 6%;
    transform: translateY(-50%);
}

.fs-img2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fs-div2 .row .col-6 {
    position: relative;
}

.fs-p3 {
    font-size: 2rem;
    font-family: 'coolvetica', sans-serif;
    font-weight: 300;
    color: #fff;
    position: absolute;
    top: 10px;
    left: 30px;
}

.fs-a {
    position: absolute;
    background: #eeeeee;
    border-radius: 5px;
    padding: 2px 10px;
    bottom: 15px;
    right: 30px;
    text-decoration: none;
    color: #1a1a1a;
}

/* five section */
.five-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #fbfbfb;
}

.fis-img {
    width: 100%;
    object-fit: cover;
}

.fis-p {
    font-size: 3.5rem;
    font-family: 'coolvetica', sans-serif;
    color: #fff;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}

.fis-span {
    position: relative;
    display: inline-block;
}

.fis-span::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #91c001;
    z-index: -1;
}

/* six section */

.six-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #fbfbfb;
}

.ss-div {
    width: 80%;
    margin: 5% auto;
}

.ss-p {
    font-size: 4rem;
    font-family: 'coolvetica', sans-serif;
    color: #1a1a1a;
    margin-bottom: 0;
}

.ss-p span::before {
    bottom: 14px;
    height: 40%;
}

.ss-p2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    white-space: pre-line;
    line-height: 1.2;
}

#us {
    width: 90%;
    margin-left: 10%;
    margin-top: 5%;
}

#technologies {
    display: flex;
    align-items: center;
    justify-content: end;
}

.ss-p3 {
    font-size: 0.9rem;
    text-align: justify;
    line-height: 1.1;
    margin-bottom: 30px;
}


/* seven section */

.seven-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #fbfbfb;
}

.ses-div {
    width: 80%;
    margin: 5% auto;
}

.ses-p {
    font-size: 4rem;
    font-family: 'coolvetica', sans-serif;
    color: #1a1a1a;
    margin-bottom: 0;
    text-align: center;
}

.ses-container {
    width: 100%;
    display: flex;
    height: 700px;
    overflow: hidden;
}

.ses-div2 {
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ses-div2 img {
    width: 100%;
    height: 48%;
    object-fit: cover;
}

.ses-img {
    width: 25%;
    height: 100%;
    object-fit: cover;
    margin-left: 25px;
}

.ses-div3 {
    width: 50%;
    height: 100%;
}

.ses-div4 {
    width: 100%;
    height: 50%;
    display: flex;
}

.ses-div4 img {
    width: 50% !important;
    height: 100% !important;
    object-fit: cover !important;
    margin-top: 0px !important;
}

.ses-div3 img {
    width: 100%;
    height: 50%;
    object-fit: cover;
    margin-left: 25px;
    margin-top: 25px;
}


/* footer */
footer {
    width: 100%;
    height: auto;
    position: relative;
    background: #eeeeee;
    overflow: hidden;
}

.footer-div {
    width: 80%;
    margin: 5% auto;
}

.footer-div2 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-img {
    width: 8%;
    object-fit: cover;
}

.footer-div3 {
    width: 80%;
    display: flex;
    justify-content: end;
    align-items: center;
}

.footer-container {
    margin-left: 25px;
    display: flex;
    flex-direction: column;
}

.footer-a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 400;
    font-size: 0.9rem;
    margin-bottom: 10px;
    white-space: pre-line;
}

.footer-a i {
    color: #76a501;
}

.footer-hr {
    width: 100%;
    height: 1px;
    background: #1a1a1a;
    margin: 40px 0 20px;
    opacity: 1;
}

.footer-div4 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-a2 {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 400;
    font-size: 0.7rem;
}


/* counterweight one section */
.counterweights-one-section {
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

.cwos-img {
    width: 100%;
    object-fit: cover;
}

.cwos-div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cwos-p {
    font-size: 3.5rem;
    font-family: 'coolvetica', sans-serif;
    color: #fff;
    position: relative;
    display: inline-block;
}

.cwos-p::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #91c001;
    z-index: -1;
}


.cwos-div a {
    margin: 0 !important;
    color: #1a1a1a !important;
    padding: 2px 15px !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
}

.cwos-div a i {
    margin-left: 10px;
    font-weight: 600 !important;
}

/* lista de productos */
.list-products {
    width: 80%;
    margin: -5% auto 0;
    position: relative;
    z-index: 10;
}

.list-products .row {
    width: 100%;
    height: 100%;
    margin: 0;
}

.list-products .row .col-md-6 {
    height: 100%;
}

.lp-div {
    width: 100%;
    height: 150px;
    padding: 10px;
    overflow: hidden;
    background: #eeeeee;
    transition: 0.3s ease-in-out;
}

.lp-div:hover {
    background: #ffffff !important;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.100));
    cursor: pointer;
}

.lp-div.selected {
    background: #fff !important;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.200));
}

.lp-div .row .col-6 {
    height: 100%;
}

.lp-div a {
    text-decoration: none;
}

.lp-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#lp-col {
    display: flex;
    align-items: center;
}

.lp-p {
    font-size: 1.2rem;
    font-family: 'coolvetica', sans-serif;
    color: #1a1a1a;
    line-height: 1.2;
    white-space: pre-line;
}

/* counterweights two section */
.counterweights-two-section {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    background-color: #fbfbfb;
}

.cwts-div {
    width: 70%;
    margin: 5% auto;
}

.cwts-div .col-md-4 {
    padding: 0 5%;
    margin-bottom: 5%;
}

.cwts-p {
    font-size: 1rem;
    font-weight: 400;
    color: #1a1a1a;
    text-align: justify;
}

.cwts-p2 {
    background-color: #91c001;
    color: #1a1a1a;
    font-weight: 600;
    display: inline-block;
    margin-top: 5%;
    margin-bottom: 5%;
}

.cwts-img {
    width: 100%;
    height: 100px;
    padding: 10px;
    object-fit: contain;
}

.cwts-img2 {
    width: 100%;
    object-fit: cover;
}

.cwts-img3 {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.cwts-p3 {
    font-size: 3rem;
    font-family: 'coolvetica', sans-serif;
    font-weight: 300;
    color: #1a1a1a;
    margin-top: 50px;
}

.cwts-p3 span::before {
    bottom: 8px;
    height: 42%;
}

.cwts-ul {
    padding-left: 1rem;
}

.cwts-ul li {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.cwts-ul li i {
    color: #76a501;
    margin-left: 10px;
    font-size: 1rem;
}

.cwts-ul>li {
    cursor: pointer;
    padding: 5px;
    transition: background-color 0.3s;
}

.cwts-ul>li.active i {
    transform: rotate(180deg);
}

.cwts-div2 {
    margin: 10% 0;
    display: none;
}

.cwts-ul>li.active .cwts-div2 {
    display: block;
}

.cwts-div2 p,
.cwts-div2 ul li {
    width: 80%;
    margin-left: 10%;
    font-size: 1rem;
    font-weight: 400;
    text-align: justify;
    line-height: 1.2;
}

.cwts-div2 ul {
    list-style-type: disc;
}

.cwts-div2 ul li::marker {
    color: #1a1a1a;
}

/* media query */

@media screen and (max-width: 1299px) and (min-width: 992px) {
    .nav-logo {
        width: 140px;
    }

    .nav-ul li a {
        font-size: 0.7rem;
    }

    .nav-ul2 li {
        margin: 0px 10px;
    }

    .nav-ul2 li a {
        font-size: 0.9rem;
    }

    .os-div {
        top: 60%;
    }

    .btn-contact {
        margin-top: 5%;
        font-size: 0.9rem !important;
    }

    .os-p {
        font-size: 3rem;
    }

    .os-p2 {
        font-size: 1rem;
    }

    .ts-p {
        font-size: 3rem;
    }

    .ts-p2 {
        font-size: 1rem;
    }

    .ts-div2 {
        height: 200px;
    }

    .ts-p3 {
        font-size: 1.5rem;
    }

    .ts-div2 .btn-contact {
        font-size: 0.7rem !important;
    }

    .ths-p {
        font-size: 3rem;
    }

    .ths-p2 {
        font-size: 0.9rem;
    }

    .ths-p3 {
        font-size: 0.9rem;
        line-height: 1.2;
        white-space: normal;
        width: 90%;
    }

    .ths-img {
        height: 40px;
    }

    .ths-img2 {
        margin-top: 5%;
    }

    .fs-p {
        font-size: 3rem;
    }

    .fs-p2 {
        font-size: 1rem;
        white-space: normal;
    }

    .fs-div2 {
        top: 65%;
    }

    .fis-p {
        font-size: 2.5rem;
    }

    .ss-p {
        font-size: 3rem;
    }

    .ss-p2 {
        font-size: 1rem;
    }

    #us {
        width: 95%;
        margin-left: 5%;
    }

    .ses-p {
        font-size: 3rem;
    }

    .ses-container {
        height: 450px;
    }

    .cwos-img {
        height: 400px;
    }

    .cwos-div {
        top: 55%;
    }

    .list-products {
        width: 90%;
    }

    .lp-div {
        height: 100px;
    }

    .lp-p {
        font-size: 1rem;
    }

    .footer-a {
        font-size: 0.7rem;
    }

    .footer-a2 {
        font-size: 0.6rem;
    }

    .cwts-p3 {
        font-size: 2rem;
    }

    .cwts-img3 {
        height: 140px;
    }

    .cwts-ul li {
        font-size: 0.9rem;
    }

    .cwts-div2 p,
    .cwts-div2 ul li {
        font-size: 0.9rem;
    }

}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .nav-logo {
        width: 100px;
    }

    .nav-ul li {
        margin: 0px 10px;
    }

    .nav-ul li a {
        font-size: 0.6rem;
    }

    .nav-ul2 li {
        margin: 0px 10px;
    }

    .nav-ul2 li a {
        font-size: 0.8rem;
    }

    .os-div {
        top: 65%;
    }

    .btn-contact {
        margin-top: 2%;
        font-size: 0.8rem !important;
    }

    .os-p {
        font-size: 2.5rem;
    }

    .os-p2 {
        font-size: 0.9rem;
    }

    .ts-p {
        font-size: 2.5rem;
    }

    .ts-p2 {
        font-size: 0.9rem;
    }

    .ts-div2 {
        height: 150px;
    }

    .ts-p3 {
        font-size: 1.3rem;
    }

    .ts-div2 .btn-contact {
        font-size: 0.7rem !important;
    }

    .ths-p {
        font-size: 2.5rem;
    }

    .ths-p2 {
        font-size: 0.6rem;
    }

    .ths-p3 {
        font-size: 0.8rem;
        line-height: 1.1;
        white-space: normal;
        width: 90%;
    }

    .ths-img {
        height: 30px;
    }

    .ths-img2 {
        margin-top: 10%;
    }

    .fs-p {
        font-size: 2.5rem;
    }

    .fs-p2 {
        font-size: 0.9rem;
        white-space: normal;
    }

    .fs-p3 {
        font-size: 1.2rem;
    }

    .fs-div2 {
        top: 70%;
    }

    .fis-img {
        height: 300px;
    }

    .fis-p {
        font-size: 2rem;
    }

    .ss-p {
        font-size: 2.5rem;
    }

    .ss-p2 {
        font-size: 0.9rem;
    }

    #us {
        width: 100%;
        margin-left: 0%;
    }

    .ses-p {
        font-size: 2.5rem;
    }

    .ses-container {
        height: 350px;
    }

    .footer-a {
        font-size: 0.5rem;
    }

    .footer-a2 {
        font-size: 0.4rem;
    }


    .cwos-img {
        height: 300px;
    }

    .cwos-div {
        top: 60%;
    }

    .list-products {
        width: 90%;
    }

    .lp-div {
        height: 100px;
    }

    .lp-p {
        font-size: 0.8rem;
        margin-left: -10px;
    }

    .cwts-p {
        font-size: 0.9rem;
    }

    .cwts-p2 {
        font-size: 0.8rem;
    }

    .cwts-img {
        height: 50px;
        padding: 0;
    }

    .cwts-img3 {
        height: 100px;
        padding: 0;
    }

    .cwts-p3 {
        font-size: 1.5rem;
    }

    .cwts-ul li {
        font-size: 0.8rem;
    }

    .cwts-div2 p,
    .cwts-div2 ul li {
        font-size: 0.8rem;
    }

}

@media screen and (max-width: 767px) {

    header {
        height: auto;
    }

    .nav-logo {
        width: 100px;
        margin-left: 70px;
    }

    .os-img {
        height: 300px;
    }

    .os-div {
        top: 65%;
        left: 10%;
        transform: translateY(-50%);
    }

    .os-p {
        font-size: 1.5rem;
    }

    .os-p2 {
        font-size: 0.8rem;
    }


    .btn-contact {
        margin-top: 0%;
        font-size: 0.5rem !important;
        padding: 2px 10px !important;
    }

    .ts-p {
        font-size: 1.5rem;
    }

    .ts-p2 {
        font-size: 0.8rem;
        text-align: center;
        white-space: normal;
    }

    .ts-div2 {
        height: 120px;
    }

    .ts-div2 .row .col-6 {
        height: 100%;
    }

    .ts-p3 {
        font-size: 1.2rem;
    }

    .ths-container {
        flex-direction: column;
        align-items: center;
    }

    .ths-div2 {
        width: 100%;
    }

    .ths-p {
        font-size: 1.5rem;
    }

    .ths-p2,
    .ths-p3 {
        font-size: 0.8rem;
    }

    .ths-img {
        height: 30px;
    }

    .ths-img2 {
        width: 100%;
        margin-left: 0;
    }

    .fs-div {
        width: 80%;
    }

    .fs-img {
        width: 150%;
        height: 300px;
    }

    .fs-p {
        font-size: 1.5rem;
        text-align: center;
    }

    .fs-p2 {
        font-size: 0.8rem;
        text-align: center;
        white-space: normal;
    }

    .fs-div2 {
        width: 80%;
        top: 65%;
        right: 50%;
        transform: translate(50%, -50%);
    }

    .fis-p {
        font-size: 1.5rem;
        width: 90%;
        text-align: center;
    }

    .fis-span::after {
        bottom: 0;
    }

    .ss-p {
        font-size: 1.5rem;
        text-align: center;
    }

    .ss-p2 {
        font-size: 0.8rem;
        white-space: normal;
        text-align: center;
    }

    #us {
        width: 100%;
        margin-left: 0;
    }

    #technologies {
        justify-content: center;
    }

    .ses-p {
        font-size: 1.5rem;
    }

    .ses-container {
        height: 200px;
    }

    .ses-img {
        margin-left: 15px;
    }

    .ses-div3 img {
        margin-left: 15px;
    }

    .ses-div4 img {
        width: 38% !important;
    }

    .footer-img {
        width: 20%;
    }

    .footer-a {
        font-size: 0.6rem;
        white-space: normal;
    }

    .footer-div3 {
        flex-direction: column;
        align-items: end;
    }

    .footer-container {
        justify-content: end;
        align-items: start;
        width: 70%;
    }

    .footer-a2 {
        font-size: 0.5rem;
    }

    .cwos-img {
        height: 300px;
    }

    .cwos-div {
        top: 60%;
        left: 10%;
        transform: translateY(-50%);
    }

    .cwos-p {
        font-size: 1.5rem;
    }

    .cwos-p::after {
        bottom: 0;
    }

    .cwos-div a {
        font-size: 0.6rem !important;
        padding: 2px 10px !important;
    }

    .list-products {
        margin: -20% auto 0;
    }

    .lp-div {
        height: 120px;
        margin-bottom: 20px;
    }

    .cwts-p {
        font-size: 0.8rem;
    }

    .cwts-img {
        width: 100%;
        height: auto;
        padding: 0;
        object-fit: cover;
    }

    .cwts-img2 {
        margin-top: 25px;
    }

    .cwts-div .row .col-md-6,
    .cwts-div .row .col-md-4 {
        border: none !important;
    }

    .cwts-img3 {
        height: 120px;
        padding: 0;
    }

    .cwts-p3 {
        font-size: 1.5rem;
    }

    .cwts-ul li {
        font-size: 0.8rem;
    }
}