html {
    min-width: 100vw;
}

body {
    min-width: 100vw;
    animation: transitionIn 1s;
    -moz-animation: transitionIn 1s;
    -webkit-animation: transitionIn 1s;
    -o-animation: transitionIn 1s;
    /* animation: fadein 2s;
    -moz-animation: fadein 2s;
    -webkit-animation: fadein 2s;
    -o-animation: fadein 2s; */
    overflow-x: hidden;
}



.header {
    overflow: hidden;
    padding: 20px 10px;
    border-bottom: 1px solid #6398E9;

}


.header a {
    float: left;
    color: #FFFFFF;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-size: 18px;
    line-height: 25px;
    border-radius: 4px;
    font-weight: 700;
}

.header img {
    border: 0;
    float: left;
    width: 7.5rem;
    height: 5rem;
}


.header a.logo {
    font-size: 25px;
    font-weight: bold;
}


.header a:hover {
    background-color: #ddd;
    color: black;
}


.header a.active {
    background-color: dodgerblue;
    color: white;
}


.header-right {
    float: right;
    text-align: center;
    margin-top: 1.3rem;
}

.product-banner-container {
    height: 550px;
}


.requestbtn {
    text-align: center !important;
    border: none;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.3em;
    color: #3E4098 !important;
    padding: 7px;
    width: 10.2em;
    background-color: #FFFFFF !important;
}


.hrefbtn {
    float: none !important;
    text-align: center !important;
    font-weight: 700;
    font-size: 1.3em;
    color: #3E4098 !important;
}

.requestbtn a:hover {
    background-color: transparent;
}

.product-banner {
    width: 100%;
    height: 100%;
    background-image: url('../imgs/product-header.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.headerText {
    text-align: center;
    color: #ddd;
    padding-top: 2rem;
}

.headerTag {
    text-align: -webkit-center;
    font-size: 70px;
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    letter-spacing: 0px;
    color: #FFFFFF;
}

.headerTag-desc {
    text-align: -webkit-center;
    font-size: 17px;
    font-weight: medium;
    font-style: normal;
    font-variant: normal;
    letter-spacing: 0px;
    color: #FFFFFF;

}

.pmti-history {
    font-size: 50px;
    font-weight: 900;
    font-style: normal;
    letter-spacing: 0px;
    color: #333333;
    opacity: 1;
}

.about-us-desc {
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    letter-spacing: 0px;
    color: #333333;
    opacity: 1;
}

.mission-text {
    font-size: 40px;
    font-weight: 900;
    font-style: normal;
    letter-spacing: 0px;
    color: #333333;
    opacity: 1;
}

.vission {
    margin-top: 5rem;
}

.mission-desc {
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    letter-spacing: 0px;
    color: #333333;
    opacity: 1;
}

.pmti-img {
    width: 29rem;
}

.partner-container {
    height: auto;
    background: #E5E5E5;
}

.footer-section {
    margin-top: 15rem;
    width: 100%;
    height: 165px;
    background-image: url('../imgs/product-footer-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.footer-logo {
    margin-top: 1rem;
    width: 8rem;
}

.footer-span {
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    letter-spacing: 0px;
    color: #FFFFFF;
}


@media (max-width: 425px) {
    .pmti-img {
        width: 17rem;
    }

    .header a {
        float: none;
        display: block;
        text-align: left;
    }

    .header-right {
        float: none;
    }

}


@media screen and (max-width: 500px) {
    .header a {
        float: none;
        display: block;
        text-align: left;
    }

    .header-right {
        float: none;
    }

}



@keyframes transitionIn {
    from {
        opacity: 0;
        transform: rotateX(-10deg);
    }

    to {
        opacity: 1;
        transform: rotateX(0);
    }
}

@-moz-keyframes transitionIn {
    from {
        opacity: 0;
        transform: rotateX(-10deg);
    }

    to {
        opacity: 1;
        transform: rotateX(0);
    }
}


@-webkit-keyframes transitionIn {
    from {
        opacity: 0;
        transform: rotateX(-10deg);
    }

    to {
        opacity: 1;
        transform: rotateX(0);
    }
}


@-o-keyframes transitionIn {
    from {
        opacity: 0;
        transform: rotateX(-10deg);
    }

    to {
        opacity: 1;
        transform: rotateX(0);
    }
}


/* @keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadein {


    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadein {

    
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-o-keyframes fadein {

   
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
} */
