.introduction {
    width: 100%;
    min-height: 100%;
    position: relative;
    background: #f8fafc;
    padding: 90px 40px 0px 40px;
    transition: all 0.2s ease-in-out;
}

.introduction .row {
    position: relative;
    border-radius: 4px;
    height: calc(100vh - 150px);
    background: #f8fafc;
}

.introduction .row .controlIMG {
    position: absolute;
    background: transparent;
    height: 100%;
    top: 0;
    z-index: 10;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.introduction .row .controlIMG .arrow i {
    color: #000000;
}

.introduction .row .controlIMG:hover {
    background: #00000070;
}

.introduction .row .controlIMG.left {
    left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.introduction .row .controlIMG.right {
    right: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.introduction .row .controlIndication {
    width: 100%;
    z-index: 10;
    bottom: 10px;
    height: 30px;
    display: flex;
    position: absolute;
    align-items: center;
    background: transparent;
    justify-content: center;
}

.introduction .row .controlIndication div {
    width: 40px;
    margin: 5px;
    height: 10px;
    cursor: pointer;
    background: #00000070;
}

.introduction .row .controlIndication div.active {
    background: #000000;
}

.introduction .row .controlIMG i {
    padding: 10px;
    font-size: 50px;
    color: #ffffff;
}

.introduction .row .slide {
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    background: transparent;
}

.introduction .row .slide .fieldIMGSlide {
    width: 100%;
    left: -100%;
    height: 100%;
    display: block;
    position: absolute;
    transition: all 0.5s ease-in-out;
}

.introduction .row .slide .fieldIMGSlide.active {
    left: 0%;
}

.introduction .row .slide .fieldIMGSlide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: all 0.5s ease-in-out;
}

.introduction .row .slide .fieldIMGSlide img.desktop {
    display: block;
}

.introduction .row .slide .fieldIMGSlide img.mobile {
    display: none;
}

@media (max-width: 991px) {
    .introduction {
        padding: 90px 20px 0px 20px;
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .introduction .row .slide .fieldIMGSlide img {
        object-fit: cover;
    }

    .introduction .row .slide .fieldIMGSlide img.desktop {
        display: none;
    }

    .introduction .row .slide .fieldIMGSlide img.mobile {
        display: block;
    }
}

@media only screen and (min-device-width: 400px) and (max-device-width: 767px) {
    .introduction .row {
        height: calc(100vh - 110px);
    }

    .introduction .row .slide .fieldIMGSlide img {
        object-fit: fill;
    }

    .introduction .row .slide .fieldIMGSlide img.desktop {
        display: block;
    }

    .introduction .row .slide .fieldIMGSlide img.mobile {
        display: none;
    }
}

.about {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 110px 40px 20px 40px;
    background: #f8fafc;
}

.about .row {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 15px;
    width: 100%;
    height: 100%;
    transition: 0.5s ease-in-out;
}

.about .row .cardAbout {
    width: 100%;
    height: 100%;
    padding: 20px;
    background: transparent;
    border-radius: 4px;
    color: #00adef;
    transition: all 0.5s ease-in-out;
    box-shadow: 0 5px 15px rgb(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.about .row .cardAbout:hover {
    box-shadow: 0 5px 15px rgb(0, 0, 0, 0.3);
}

.about .row .cardAbout .content {
    line-height: initial;
}

.about .row .cardAbout .content h1 {
    font-weight: bold;
    text-transform: uppercase;
}

.about .row .cardAbout .content .details {
    height: 250px;
    margin-top: 10px;
    overflow-x: auto;
    position: relative;
}

/* .about .row .cardAbout .content .details::-webkit-scrollbar {
    display: none;
} */

.about .row .cardAbout .content .details p {
    text-align: left;
    font-style: normal;
    position: relative;
    margin: 0 0 10px 0;
    color: #000000;
}

@media (max-width: 991px) {
    .about {
        padding: 90px 20px 20px 20px;
    }

    .about .row {
        display: block;
    }

    .about .row .cardAbout {
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .about {
        padding: 90px 20px 5px 20px;
    }

    .about .row .cardAbout {
        padding: 10px;
        box-shadow: 0 3px 3px rgb(0, 0, 0, 0.3);
    }

    .about .row .cardAbout:nth-child(3) {
        margin-bottom: 0px;
    }
}

.solution {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 110px 40px 20px 40px;
    background: #f8fafc;
    transition: all 0.5s ease-in-out;
}

.solution .row {
    width: 100%;
    height: 100%;
    display: grid;
    grid-row-gap: 15px;
    position: relative;
    line-height: initial;
    grid-column-gap: 15px;
    transition: all 0.5s ease-in-out;
    grid-template-columns: repeat(3, 1fr);
}

.solution .row .cardSolution {
    border: none;
    padding: 0px;
    height: 100%;
    color: #00adef;
    position: relative;
    border-radius: 4px;
    background: transparent;
    transition: all 0.5s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.solution .row .cardSolution:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.solution .row .cardSolution img {
    width: 100%;
    height: 300px;
    padding: 10px;
    position: relative;
    object-fit: contain;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: all 0.5s ease-in-out;
}

.solution .row .cardSolution:hover img {
    transform: scale(0.9);
}

.solution .row .cardSolution .content {
    width: 100%;
    height: 100%;
    padding: 20px;
    position: relative;
}

.solution .row .cardSolution .content h2 {
    margin: 0;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}

.solution .row .cardSolution .content .details {
    height: 180px;
    overflow-x: auto;
    margin: 10px 0px 20px 0px;
}

/* .solution .row .cardSolution .content .details::-webkit-scrollbar {
    display: none;
} */

.solution .row .cardSolution .content .details p {
    text-align: left;
    color: #000000;
    font-style: normal;
    margin: 0 0 10px 0;
}

.solution .row .cardSolution .content a {
    display: block;
    cursor: pointer;
    font-size: 17px;
    margin-top: 10px;
    color: #ffffff;
    font-weight: 400;
    padding: 13px 30px;
    margin-bottom: 0px;
    border-radius: 4px;
    text-align: center;
    letter-spacing: 2px;
    background: #00adef;
    text-decoration: none;
    border: 3px solid transparent;
    transition: all 0.5s ease-in-out;
}

.solution .row .cardSolution .content a:hover {
    color: #00adef;
    background: #ffffff;
    border: 3px solid #00adef;
}

@media (max-width: 991px) {

    .solution {
        padding: 90px 20px 20px 20px;
    }

    .solution .row {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution .row .cardSolution {
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {

    .solution {
        padding: 90px 20px 5px 20px;
    }

    .solution .row {
        display: block;
    }

    .solution .row .cardSolution {
        box-shadow: 0 3px 3px rgb(0, 0, 0, 0.3);
    }

    .solution .row .cardSolution:nth-child(6) {
        margin-bottom: 0px;
    }

    .solution .row .cardSolution .content {
        padding: 10px;
    }
}

.clients {
    width: 100%;
    min-height: 100%;
    position: relative;
    padding: 110px 40px 20px 40px;
    background: #f8fafc;
}

.clients .row {
    width: 100%;
    height: 100%;
    display: grid;
    position: relative;
    line-height: initial;
    grid-column-gap: 15px;
    transition: all 0.5s ease-in-out;
    grid-template-columns: repeat(4, 1fr);
}

.clients .row .cardClient {
    border: none;
    padding: 0px;
    height: 100%;
    color: #00adef;
    background: transparent;
    transition: all 0.5s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.clients .row .cardClient:hover {
    cursor: default;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.clients .row .cardClient .field .fieldIMG {
    width: 100%;
    height: 300px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.clients .row .cardClient .field .fieldIMG img {
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    border-radius: 4px;
    position: absolute;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    transition: all 0.2s ease-in-out;
}

.clients .row .cardClient .field .fieldIMG img.first {
    left: 0;
}

.clients .row .cardClient .field .fieldIMG img.second {
    left: -100%;
}

.clients .row .cardClient:hover .field .fieldIMG img.first {
    left: -100%;
}

.clients .row .cardClient:hover .field .fieldIMG img.second {
    left: 0;
}

.clients .row .cardClient .field .fieldText {
    padding: 20px 20px 0px 20px;
    position: relative;
}

.clients .row .cardClient .field .fieldText h1 {
    margin: 0;
    text-align: left;
    font-weight: bold;
    text-transform: uppercase;
}

.clients .row .cardClient .field .fieldText p {
    text-align: left;
    color: #000000;
    font-style: normal;
}

.clients .row .cardClient .btn {
    display: block;
    cursor: pointer;
    font-size: 17px;
    margin: 10px 20px 20px 20px;
    color: #ffffff;
    font-weight: 400;
    padding: 13px 30px;
    border-radius: 4px;
    text-align: center;
    letter-spacing: 2px;
    background: #00adef;
    text-decoration: none;
    border: 3px solid transparent;
    transition: all 0.2s ease-in-out;
}

.clients .row .cardClient .fieldText .btn:hover {
    background: #ffffff;
    color: #00adef;
    border: 3px solid #00adef;
}

@media (max-width: 991px) {

    .clients {
        padding: 90px 20px 20px 20px;
    }

    .clients .row {
        grid-gap: 15px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .clients {
        padding: 90px 20px 5px 20px;
    }

    .clients .row {
        display: block;
    }

    .clients .row .cardClient {
        margin-bottom: 20px;
        box-shadow: 0 3px 3px rgb(0, 0, 0, 0.3);
    }

    .clients .row .cardClient .fieldText {
        padding: 10px;
    }
}

.brand {
    width: 100%;
    min-height: 100%;
    position: relative;
    background: #f8fafc;
    padding: 110px 40px 100px 40px;
    transition: all 0.2s ease-in-out;
}

.brand .row {
    width: 100%;
    height: 100%;
    position: relative;
    transition: all 0.2s ease-in-out;
}

.brand .row .content {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    align-items: center;
    line-height: initial;
    justify-content: space-between;
    transition: all 0.2s ease-in-out;
}

.brand .row .content .fieldIMG {
    width: 100%;
    height: 100px;
    position: relative;
}

.brand .row .content .fieldIMG img {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: contain;
}

@media (max-width: 991px) {
    .brand {
        padding: 90px 20px 90px 20px;
    }

    .brand .row {
        display: block;
    }
}

.fieldVideo {
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: none;
    z-index: 10101;
    position: fixed;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease-in-out;
    background-color: rgba(113, 113, 113, 0.9);
}

.fieldVideo.active {
    display: flex;

}

.fieldVideo .container {
    width: 80%;
    height: 80%;
    display: flex;
    border-radius: 4px;
    position: relative;
    background: #ffffff;
    flex-direction: column;
    transition: 0.2s ease-in-out;
    justify-content: space-between;
}

.fieldVideo .container .backField {
    padding: 15px 20px;
    position: relative;
    border-bottom: solid 2px #1f2b4420;
}

.fieldVideo .container .backField h1 {
    display: flex;
    cursor: pointer;
    font-size: 16px;
    font-weight: 300;
    color: #1f2b44;
    position: relative;
    align-items: center;
    text-transform: uppercase;
}

.fieldVideo .container .backField h1 i {
    font-size: 25px;
    font-weight: 300;
    color: #1f2b44;
    position: relative;
    margin-right: 10px;
}

.fieldVideo .container .content {
    width: 100%;
    height: 100%;
    flex-grow: 1;
    padding: 20px;
    position: relative;
    transition: 0.2s ease-in-out;
}

.fieldVideo .container .content .video {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    position: relative;
}

.fieldVideo .container .content .video iframe {
    border: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .fieldVideo .container {
        width: 100%;
        height: 90%;
        margin: 10px;
    }
}