/*--------------------------------------------------------------
# Banner Section
--------------------------------------------------------------*/
.banner{
    height: 100vh;
    position: relative;
    text-align: center;
    align-items: center;
    padding: 300px 0;
    margin-bottom: 100px;
}
.banner::after{
    position: absolute;
    content: '';
    right: 0;
    bottom: -2px;
    width: 100%;
    height: 200px;
    background: var(--white);
    clip-path: polygon(100% 50%, 0% 100%, 100% 100%);
}
.banner video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner img{
    width: 700px;
    height: 200px;
    object-fit: contain;
    z-index: 50;
    position: relative;
}
.banner h1{
    position: relative;
    font-size: var(--subtitle);
    margin-top: 20px;
    color: var(--main-color);
}
.banner h1 span{
    color: var(--main-red);
}
@media (max-width: 910px) {
    .banner img{
        width: 80%;
    }
}
@media (max-width: 650px) {
    .banner::after{
        width: 0;
        height: 0;
    }
}
@media (max-height: 800px) {
    .banner{
        padding: 150px 0;
    }
}
/*--------------------------------------------------------------
# Software Section
--------------------------------------------------------------*/
.software{
    min-height: 100vh;
    padding: var(--padding100);
    text-align: center;
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: var(--margin75);
}
.software .textBox {
    width: 900px;
    text-align: justify;
}
.software .textBox h2{
    color: var(--main-color);
    font-size: var(--subtitle);
    font-weight: 700;
}
.software .textBox p{
    font-size: 22px;
    margin: 35px 0;
    text-align: justify;
    color: rgba(42,42,42,0.8);
}
.software .textBox hr{
    height: 2px;
    color: rgba(42,42,42,0.6);
    position: relative;
}
.software .container{
    width: 991px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.software .container h3 {
    margin: 100px 0 50px;
    color: var(--main-red);
    font-size: 26px;
}
.software .container ul.menu{
    margin: 20px 0;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
}
.software .container ul.menu li{
    margin: 20px;
    color: var(--main-color);
    font-size: 20px;
    padding: 30px 15px 10px;
    cursor: pointer;
    display: inline;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.software .container .menu .tab.active{
    border-bottom: 2px solid var(--main-red);
    border-radius: 10px;
}

[data-tab-content] {
    display: none;
}
.active[data-tab-content]{
    display: block;
}
.software .container .container-box .box-content{
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    align-items: center;
}
.software .container .container-box .imgBx{
    width: 800px;
    height: 450px;
    margin-top: 50px;
}
.software .container .container-box .imgBx img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.software .container .container-box p{
    color: rgba(42,42,42,0.8);
    margin: 25px 10px;
    text-align: justify;
    font-size: 18px;
}
.software .container .container-box a.btn{
    color: var(--main-color);
    padding: 10px 15px;
    margin: 35px 0;
    border-radius: 5px;
    border: 2px solid var(--main-red);
    transition: 0.3s;
    display: inline-block;
}
.software .container .container-box a.btn:hover{
    background: var(--main-red);
    color: var(--white);
    transform: scale(1.06);
}
@media (max-width: 1013px) {
    .software .textBox {
        width: 100%;
        padding: 0 10px;
    }
    .software .container{
        width: 100%;
    }
    .software .container .container-box .imgBx{
        width: 100%;
    }
}
@media (max-width: 673px) {
    .software .container .menu li{
        margin-top: 50px;
    }
}
@media (max-width: 300px) {
    .software .container ul.menu{
        margin: 20px 0;
        display: flex;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .software .container ul.menu li{
        margin: 20px 0;
        color: var(--main-color);
        font-size: 20px;
        padding: 30px 0 10px;
        cursor: pointer;
        display: block;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        width: 200px;
    }
}
/*--------------------------------------------------------------
# Solutions Section
--------------------------------------------------------------*/
.solutions{
    position: relative;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    flex-direction: column;
}
.solutions .container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 50px 150px 100px;
}
.solutions .container .card{
    width: 400px;
    margin: 50px 20px;
    display: flex;
    justify-content: center;
    cursor: pointer;
    text-align: left;
    border-radius: 50px;
}
.solutions .container .card i{
    font-size: 50px;
    color: var(--main-red);
}
.solutions .container .card .iconBox{
    margin-right: 20px;
    width: 80px;
}
.solutions .container .card .textBox{
    width: 300px;
}
.solutions .container h4{
    font-size: 20px;
    color: var(--main-color);
}
.solutions .container p{
    font-size: 15px;
    color: var(--text-color);
    margin-top: 15px;
    text-align: justify;
}
.solutions .container a{
    color: var(--main-red);
    margin-top: 15px;
    display: inline-block;
    transition: 0.4s;
}
.solutions .container a:hover{
    transform: scale(1.05);
}
@media (max-width: 1637px) {
    .solutions .container{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        padding: 50px 20px 100px;
    }
}
@media (max-width: 1338px) {
    .solutions .container .card{
        width: 450px;
        margin: 50px 30px;
    }
    .solutions .container .card .textBox{
        width: 350px;
    }
}
@media (max-width: 1085px) {
    .solutions .container .card{
        width: 380px;
        margin: 50px 30px;
    }
    .solutions .container .card i{
        font-size: 40px;
        color: var(--main-red);
    }
}
@media (max-width: 945px) {
    .solutions .container .card{
        width: 100%;
        margin: 50px 0;
    }
    .solutions .container .card .textBox{
        width: 80%;
    }
}
@media (max-width: 468px) {
    .solutions .container .card{
        flex-direction: column;
    }
    .solutions .container .card i{
        margin-bottom: 20px;
    }
    .solutions .container .card .textBox{
        width: 100%;
    }
}
/*--------------------------------------------------------------
# Price Section
--------------------------------------------------------------*/
.price{
    background: var(--main-color);
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
    width: 100%;
    height: 500px;
    margin: var(--margin75);
}
.price::after{
    position: absolute;
    content: '';
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 20%;
    background: var(--white);
    clip-path: polygon(100% 50%, 0% 100%, 100% 100%);
}
.price::before{
    position: absolute;
    content: '';
    left: 0;
    top: -2px;
    width: 100%;
    height: 20%;
    background: var(--white);
    clip-path: polygon(0 50%, 0 0, 100% 0);
}
.price .container{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 50px 0;
}
.price .container .textBox{
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}
.price .container .textBox h5{
    color: #ffff;
    font-size: 28px;
}
.price .container .textBox img{
    width: 320px;
    height: 120px;
    object-fit: contain;
}
.price .btn{
    padding: 15px 25px;
    border-radius: 5px;
    color: #fff;
    transition: 0.5s;
    font-size: 20px;
    background: #CC1517;
    display: inline-block;
}
.price .btn:hover{
    transform: scale(1.06);
}
@media (max-width: 1088px) {
    .price .container .textBox{
        height: 250px;
    }
    .price .container .textBox img{
        width: 150px;
    }
}
@media (max-width: 800px) {
    .price::after,.price::before{
        width: 0;
        height: 0;
    }
    .price .container .textBox{
        flex-direction: column;
    }
    .price .container .textBox img{
       margin-bottom: 50px;
    }
    .price .container .textBox h5{
        margin-bottom: 50px;
    }
    .price .container .textBox{
        height: auto;
    }
}
@media (max-width: 700px) {
    .price .container .textBox h5{
        color: #ffff;
        font-size: 22px;
    }
}
/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team{
    min-height: 100vh;
    text-align: center;
    padding: 20px 0;
    margin: var(--margin75);
}
.team .container{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 100px;
}
.team .container .box{
    position: relative;
    width: 300px;
    height: 400px;
    margin: 30px;
    background: var(--main-color);
    cursor: pointer;
    border-bottom: 2px solid var(--main-red);
    color: var(--white);
    border-radius: 20px;
    box-shadow: rgba(51, 51, 51, 0.4) 5px 5px, rgba(51, 51, 51, 0.3) 10px 10px, rgba(51, 51, 51, 0.2) 15px 15px, rgba(51, 51, 51, 0.1) 20px 20px, rgba(51, 51, 51, 0.05) 25px 25px;
}
.team .container .box:hover .content{
    transform: translateY(0) scale(1);
}
.team .container .box .frontBx{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
}
.team .container .box .frontBx img{
    width: 100px;
    height: 100px;
    object-fit: contain;
}
.team .container .box .frontBx{
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.team .container .box .frontBx .front-content h3{
    font-size: 20px;
    color: var(--white);
    margin: 20px 0 0;
}
.team .container .box .frontBx .front-content h3 span{
    color: var(--main-red);
}
.team .container .box .frontBx .front-content h4{
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-top: 5px;
}
.team .container .box .frontBx .front-content .map_box{
    margin-top: 45px;
}
.team .container .box .frontBx .front-content .map_box p{
    color: white;
    font-size: 18px;
}
.team .container .box .content{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    transition: 0.87s;
    background: var(--main-color);
    transform: translateY(800px) scale(0);
    border-radius: 20px;
}
.team .container .box .content .icon img{
    max-width: 80px;
    filter: invert(1);
}
.team .container .box .content p{
    color: #fff;
    font-size: 14px;
    padding: 10px;
    letter-spacing: 2px;
    text-align: left;
}
.team .container .box .content .links{
    text-align: right;
    bottom: 15px;
    right: 15px;
    position: absolute;
}
.team .container .box .content .links li{
    list-style: none;
    margin: 0 10px;
    display: inline;
}
.team .container .box .content .links li a{
    color: var(--white);
    z-index: 99;
    font-size: 22px;
    transition: 0.5s;
}
.team .container .box .content .links li a:hover{
    color: var(--main-red);
}
@media (max-width: 1293px) {
    .team .container{
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        padding: 0;
    }
}
/*--------------------------------------------------------------
# Customer Section
--------------------------------------------------------------*/
.customer {
    min-height: 70vh;
    text-align: center;
   padding: var(--padding100);
}
.customer .container{
    padding: 200px 10px 100px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.customer .container-customer {
    display: flex;
    overflow: hidden;
    width: 100%;
    transform: translateY(-50%);
}
.customer img{
    width: 200px;
    height: 200px;
    object-fit: contain;
}
.customer span .width-img {
    width: 200px;
}

.customer span .width-img-fit {
    width: 150px;
}

.customer span img {
    margin: 30px;
}
.customer .txt {
    white-space: nowrap;
    animation: scrollTxt 60s infinite;
}
@keyframes scrollTxt {
     0% {
         transform: translate(0, 0);
     }
     100% {
         transform: translate(-100%, 0);
     }
 }
/*--------------------------------------------------------------
# Media Queries
--------------------------------------------------------------*/
@media (max-width: 423px) {
    .solutions .container .container-content .textBox .textBox-title h4, .team h4, .customer h4{
        color: var(--main-red);
        font-size: 22px;
    }
    .solutions .container .container-content .textBox .textBox-title h3, .team h3, .customer h3 {
        color: var(--main-color);
        font-size: 25px;
    }
    .team p{
        font-size: 18px;
        color: rgba(42,42,42,0.6);
        margin-bottom: 40px;
    }
    .customer span .width-img {
        width: 200px;
    }
    .customer span .width-img-fit {
        width: 100px;
    }
    .customer {
        min-height: 10vh;
        text-align: center;
        padding: 100px 0 20px;
    }
}