*{
    padding: 0;
    margin: 0;
    outline: 0;
    box-sizing: border-box;
}

ol,
ul{
    list-style-type: none;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
i,
span,
input{
    padding: 0;
    margin: 0;
}

a,
a:hover{
    color: #000;
    transition: all 0.2s;
}

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Roboto', sans-serif;
    color: #000;
    font-size: 14px;
}

.header_section {
    padding: 20px 0px;
}

.container {
    width: 1132px;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

.brdr_btm {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: calc(12px + 0.5vw);
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 15px;
    padding-right: 15px;
}

.col-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    padding-left: 15px;
    padding-right: 15px;
}

.col-4 {
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding-left: 15px;
    padding-right: 15px;
}

.col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.text-uppercase {
    text-transform: uppercase!important;
}

.header_logo {
    display: flex;
    align-items: center;
}
.header_logo img {
    width: 30px;
}


.header_logo span {
    font-size: calc(20px + .8vw);
    color: #000039;
    font-weight: 700;
    padding-left: 20px;
}

.header_txt p {
    font-size: 16px;
    color: #232323;
    font-weight: 400;
    line-height: 17px;
    text-align: right;
    margin-top: 10px;
}
.download_section {
    padding-top: 30px;
}

.step_txt ul {
    padding-top: 12px;
    margin-bottom: 52px;
}

.step_txt ul li {
    font-size: 14px;
    margin-bottom: 13px;
}

.text-right {
    text-align: right!important;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.btn_custom {
    font-family: 'Open Sans', sans-serif;
    background: #28A745;
    border-radius: 15px;
    width: 100%;
    height: 70px;
    font-size: 26px;
    font-weight: 700;
    color: #FFFFFF;
    transition: all linear .3s;
    display: block;
    text-align: center;
    box-shadow: 0 0 0 5px rgba(40, 167, 69, 0.25);
}

.btn_custom, .btn_custom:focus {
    border: 0;
    outline: 0;
}

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}
.btn_custom:hover {
    background: #218838 0% 0% no-repeat padding-box;
}

.text-center {
    text-align: center;
}

.convert-pdf {
    padding-top: 40px;
    padding-bottom: 100px;
    overflow: hidden;
}

.convert-pdf .container {
    position: relative;
}

.title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}

.arrow-wrap {
    position: absolute;
    bottom: -6.1vw;
    right: -7.2vw;
    opacity: 0.5;
    animation-name: shine;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes shine {
    0% {
        transform: translatex(0px) translatey(0px);
        opacity: 0.5;
    }
    60% {
        transform: translatex(-20px) translatey(-20px);
        opacity: 1;
    }
    100% {
        transform: translatex(0px) translatey(0px);
        opacity: 0.5;
    }
}

.step-title {
    color: #28A745;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 5px;
}

.convert-steps {
    padding-top: 0.5vw;
    padding-bottom: 40px;
}

.step-arrow {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(60px + 4vw);
}

.step-arrow p {
    position: relative;
    z-index: 1;
}

.step-arrow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.footer_section {
    margin-top: auto;
    padding: 30px;
    text-align: center;
}

.ftr_menu ul li {
    display: inline-block;
    padding: 5px 23px;
}

.ftr_menu ul li a {
    text-decoration: none;
    transition: all 0.2s;
}

.ftr_menu ul li a:hover {
    text-decoration: underline;
}

.footer_section p, .footer_section p > a {
    color: #8E8E8E;
}

.footer_section p {
    padding-top: 3px;
}

@media (min-width: 768px) {
    .header_section {
        padding: 30px 0px 46px;
    }

    .btn_custom {
        width: 89%;
        margin: auto;
        height: 8.4vw;
        font-size: 2.9vw;
    }

    .header_logo img {
        width: 3.2vw;
    }

    .header_logo span {
        font-size: 1.8vw;
        padding-left: 1vw;
    }

    .container {
        width: 90%;
    }
    .convert-pdf {
        padding-top: 4.7vw;
        padding-bottom: 7vw;
    }

    .title {
        font-size: 2.8vw;
        margin-bottom: 2.2vw;
    }

    .arrow-wrap {
        bottom: -6.1vw;
        right: -7.2vw;
        width: 7.4vw;
    }

    .step-title {
        font-size: 1.2vw;
    }

    .step-arrow p {
        font-size: 1.5vw;
    }

    .convert-steps .row {
       margin-right: 0px;
        margin-left: 0px;
    }

    .convert-steps .col-4 {
        padding-right: 0;
        padding-left: 0;
    }

    .step-arrow {
        height: 5.3vw;
    }

    .ftr_menu ul li a {
        font-size: 16px;
    }
}

@media (min-width: 991px) {
    .step-arrow p {
        font-size: 1.1vw;
    }

    .container {
        width: 59vw;
    }
}

@media (max-width: 767px) {
    .col-6, .col-4, .col-5 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .header_txt p {
        text-align: center;
    }

    .header_logo {
        justify-content: center;
    }

    .arrow-wrap {
        width: 80px;
        bottom: -100px;
        right: 0px;
        animation-duration: 2s;
    }

    .step-arrow {
        margin-bottom: 30px;
    }

    .footer_section {
        padding-left: 0;
        padding-right: 0;
    }

    .ftr_menu ul li {
        padding: 5px 12px;
    }
}

#prompt-container {
    background: rgba(19, 17, 17, 0.92);
    position: fixed;
    z-index: 3;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: none;
}

#prompt-container.show {
    display: block;
}

.popup {
    background: #FFFFFF;
    border-radius: 0px 0px 10px 10px;
    width: 45%;
    position: absolute;
    right: 34%;
    top: 0;
    text-align: center;
    padding-top: calc(10px + 0.8vw);
    padding-bottom: calc(10px + 0.8vw);
    padding-left: calc(10px + 3.1vw);
    padding-right: calc(10px + 1.1vw);
    min-width: 400px;
}
.popup:hover {
    cursor: pointer;
}
#close_bttn {
    position: absolute;
    left: 5px;
    top: 5px;
}
.popup-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.popup-item {
    position: relative;
    z-index: 1;
}

.popup-steps:before {
    width: 100%;
    height: 1px;
    border-bottom: 2px dashed #28A745;
}

.popup-number {
    display: inline-block;
    padding: 0 20px;
    border-radius: 50%;
    background: #fff;
    margin-bottom: 14px;
}

.popup-number span {
    font-size: 20px;
    color: #28A745;
    border: 2px solid;
    border-radius: 50%;
    display: inline-block;
    width: 42px;
    height: 42px;
    line-height: 39px;
    font-weight: bold;
}

.popup-arrow {
    position: absolute;
    right: -50px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    animation-duration: 1.2s;
    animation-name: slideright;
    animation-iteration-count: infinite;
}

.step_icon img {
    position: relative;
    left: 0px;
    animation: linear infinite;
    animation-duration: 1.5s;
    animation-name: arrowRight;
    animation-iteration-count: infinite;
    transition: all 0.2s;
}

strong.link {
    color: #007bff;
    text-decoration: underline;
}