/* -----------------------------

             MainMenu

----------------------------- */
.mainmenu{
    max-height: 100vh;
}

.mainmenu ul,
.mainmenu li{
    padding: 0;
    margin: 0;
}

.mainmenu{
    position: absolute;
    left: 0;
    /* background-color: #0e1734; */
    background: linear-gradient(90deg,rgba(14, 23, 52, 1), rgba(14, 23, 52, .7));
    width: 300px;
    min-height: 100vh;
    max-height: 900px;
    z-index: 99;
}

.mainmenu p,
.mainmenu h5{
    display: block;
    padding: 0;
    margin: 0;
    font-weight: 500;
}

.mainmenu .logo,
.mainmenu .menu-btn-text{
    padding-left: 45px;
}

.mainmenu .logo{
    height: 20vh;
}

.mainmenu .menu-btn{
    display: block;
    background-color: #EF731B;
    cursor: pointer;
    border-bottom: 2px #FFF solid;
    height: 100px;
    transition: all 0.5s;
    color: #FFF;
}

.mainmenu .menu-btn:hover{
    background-color: #17ABEB;
    color: #FFF;
}

/* -----------------------------

        Index-About

----------------------------- */
.about{
    background: url(../images/img-about-background.png)center 20% no-repeat;
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 100px;
    overflow: hidden;
}

.about .title-tag{
    color: #EF731B;
    position: relative;
    padding-left: 36px;
    font-size: 1.25em;
    font-size: .8em;
    margin-bottom: 10px;
}

.about .title-tag::before{
    content: "";
    width: 34px;
    height: 1px;
    background-color: #EF731B;
    position: absolute;
    top: 7px;
    left: 0;
}

.about .title-sub{
    font-size: 1.5em;
    font-weight: bolder;
    color: #003CA0;
    margin-bottom: 40px;
}

.about .title{
    font-size: 2em;
    font-weight: bolder;
    color: #003CA0;
    margin-bottom: 18px;
}

.about p{
    width: 80%;
    text-align: justify;
    color: #000;
}

.about-img-block{
    overflow: hidden;
    position: relative;
    transform: skew(-20deg);
    /* background: red; */
    width: 200%;
    height: 700px;
    margin-left: -10%;
}

.about-img{
    position: absolute;
    top: 0;
    left: -20%;
    width: 200%;
    height: 700px;
    background: url(../images/img-about-main.png) no-repeat;
    background-size: auto 120%;
    transform: skew(20deg);
}

@media only screen
        and (max-width: 960px){
            .about{
                padding-bottom: 0;
            }

            .about-img-block,
            .about-img{
                transform: none;
            }

            .about-info{
                padding-left: 50px;
                padding-right: 50px;
                padding-bottom: 40px;
            }

            .about .title{
                font-size: 1.8em;
            }

            .about p{
                width: 100%;
            }

            .about-img-block{
                width: 120%;
                height: 300px;
            }

            .about-img{
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-size: auto 120%;
            }
        }

/* -----------------------------

        Index-Products

----------------------------- */

.products-btn{
    position: relative;
    padding-left: 0;
    padding-right: 0;
    bottom: 0px;
    cursor: pointer;
    transition: all 0.3s ease-out;
}

.products-btn::after{
    content: "";
    display: block;
    width: 100%;
    height: 60px;
    position: absolute;
    bottom: 0px;
}

.products-info{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    color: #FFF;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    opacity: 0;
    transition: all 0.2s;
}

.products-info h5{
    color: #EF731B;
    font-size: 1.25em;
}

.products-info p{
    width: 60%;
    font-size: .9em;
}

.products-bar{
    /* background: #17abeb; */
    /* background: #003ca0; */
    background: linear-gradient(to bottom,#17abeb 0%, #003ca0 100%);
    color: #FFF;
    opacity: .8;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 2;
}

.products-btn .products-bar p{
    margin-bottom: 0;
    font-size: 1.25em;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s;
}

.products-btn:hover::after,
.products-btn::before{
    content: "";
    background-color: rgba(0, 0, 0, 0);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}

.products-btn img{
    width: 100%;
    height: 100%;
}

.products-btn:hover{
    bottom: 60px;
    box-shadow: 0px 0px 16px 3px rgba(0, 0, 0, .6);
    z-index: 3;
}

.products-btn:hover:before{
    background-color: rgba(0, 0, 0, .5);
}

.products-btn:hover::after{
    bottom: -60px;
}

.products-btn:hover .products-info{
    opacity: 1;
}

.products-btn:hover .products-bar p{
    height: 20px;
    background-color: #EF731B;
}

.products-btn:hover .products-bar p span{
    display: none;
}

@media only screen
        and (max-width: 960px){
            .products-block{
                padding-top: 60px;
                padding-bottom: 80px;
                padding-left: 60px;
                padding-right: 60px;
                background-color: #FFF;
            }

            .products-btn{
                margin-top: 30px;
            }

            .products-btn:hover,
            .products-btn:hover::after{
                bottom: 0px;
            }
        }

/* -----------------------------

        Index-Process

----------------------------- */

#second-block{
    background: url(../images/index-process-bg.png)center -60px no-repeat;
    overflow: hidden;
}

.process-info,
.process-img{
    /* border: #000 1px solid; */
}

.process-block-set:nth-child(1){
    text-align: right;

}

.process-block-set:nth-child(2){
    text-align: left;

}

.process-block-set:nth-child(1) .process-info{
    padding-top: 130px;
    padding-left: 80px;
}

.process-block-set:nth-child(2) .process-info{
    padding-top: 130px;
    padding-left: 13%;
    z-index: 9;
}

.process-block{
    padding-top: 260px;
    padding-bottom: 160px;
}

.process-block .row:nth-child(2){
    margin-top: 240px;
    margin-bottom: 240px;
}

/* .process-img img{
    width: 80%;
} */

.process-block .row:nth-child(1) .process-img{
    text-align: right;
}

.process-block .row:nth-child(2) .process-img{
    text-align: left;
}

.process-block .row:nth-child(3) .process-img{
    text-align: center;
}

.process-block .row:nth-child(1) .process-img img{
    width: 70%;
}

.process-block .row:nth-child(2) .process-img img{
    width: 70%;
}

.process-block .row:nth-child(3) .process-img img{
    width: 60%;
}

.process-block .info-block{
    width: 80%;
}

.process-block .row:nth-child(3) .process-info{
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.process-block .row:nth-child(3) .info-block{
    width: auto;
}

.process-block .info-block h3{
    position: relative;
    font-size: 3em;
    margin-bottom: 36px;
    width: 100%;
}

.process-block .row:nth-child(3) .info-block h3{
    font-size: 3em;
    margin-bottom: 0;
}

.process-block .info-block h3::after{
    content: "";
    width: 700px;
    height: 1px;
    background-color: #FFF;
    position: absolute;
}

.process-block .info-block{
    position: relative;
}

.process-block .row .info-block img{
    filter:drop-shadow(4px 2px 30px #003CA0);
}

.process-block .row:nth-child(1) .info-block img{
    position: absolute;
    right: -84px;
    top: -20px;
}

.process-block .row:nth-child(2) .info-block img{
    position: absolute;
    left: -124px;
    top: -20px;
}

.process-block .row:nth-child(3) .info-block img{
    position: absolute;
    left: -110px;
    top: -20px;
}

.process-block .row:nth-child(1) .info-block h3::after{
    right: 0;
    top: 72px;
}

.process-block .row:nth-child(2) .info-block h3::after{
    left: 0;
    top: 72px;
}

.process-block .row:nth-child(3) .info-block h3::after{
    left: 50%;
    top: -200px;
    width: 1px;
    height: 200px;
}

.process-block .info-block h3{
    font-weight: 900;
}

.process-block .info-block p{
    width: 100%;
    color: #FFF;
    font-size: 1em;
    letter-spacing: .1em;
    text-align: justify;
    /* text-shadow: 4px 2px 30px #000; */
    text-shadow: 4px 2px 30px #003CA0;
}

.process-block .row:nth-child(1) .info-block p{
    width: 66%;
    right: 0;
    position: absolute;
}

.process-block .row:nth-child(3) .info-block p{
    font-size: 1.8em;
}

.process-block .info-block h3{
    color: #003CA0;
}

@media only screen
        and (max-width: 960px){
            #second-block{
                background: url(../images/index-process-bg.png)center 260px no-repeat;
            }

            .process-block{
                padding-top: 200px;
                padding-left: 30px;
                padding-right: 30px;
            }

            .process-block .row:nth-child(2){
                margin-top: 80px;
                margin-bottom: 80px;
            }

            .process-img img{
                width: 100%;
            }

            .process-block .row:nth-child(1) .process-img img,
            .process-block .row:nth-child(2) .process-img img,
            .process-block .row:nth-child(3) .process-img img
            {
                width: 100%;
            }


            .process-block-set:nth-child(1) .process-info{
                padding-top: 30px;
                padding-left: 30px;
                padding-right: 30px;
            }

            .process-block-set:nth-child(2) .process-info{
                padding-top: 30px;
                padding-left: 35%;
                padding-right: 0;
            }

            .process-block .info-block h3::after,
            .process-block .row:nth-child(1) .info-block p{
                width: 90%;
            }

            .process-block .row:nth-child(1) .info-block p{
                position: inherit;
            }

            .process-block .row:nth-child(2) .info-block{
                width: 80%;
            }

            .process-block .row .info-block img{
                scale: .8;
            }

            .process-block .row:nth-child(1) .info-block img{
                top: -26px;
                right: -72px;
            }

            .process-block .row:nth-child(2) .info-block img{
                left: -56%;
                top: -26px;
            }

            .process-block .row:nth-child(3) .info-block img{
                top: -16px;
                left: inherit;
                right: 24px;
            }

            .process-block .info-block h3::after{
                width: 100%;
            }

            .process-block .row:nth-child(3) .process-info{
                display: block;
                margin-top: 24px;
            }

            .process-block .row:nth-child(3) .info-block h3,
            .process-block .row:nth-child(3) .info-block p{
                text-align: right;
            }

            .process-block .row:nth-child(3) .info-block h3{
                margin-bottom: 36px;
                width: 66%;
            }

            .process-block .row:nth-child(3) .info-block p{
                font-size: 1.2em;
                width: 66%;
                left: 0;
                position: absolute;
            }

            .process-block .row:nth-child(3) .info-block h3::after{
                width: 100%;
                height: 1px;
                left: 0;
                top: 72px;
            }

        }