@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

html {
    height: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    height: 100%;
    color: #08153b;
}

a {
    color: #308e85;
}
a:hover {
    color: #08153b;
}
img {
    max-width: 100%;
    height: auto;
}

h2 {
    font-weight: 700;
    margin-top: 20px;
    font-size: 26px;
    margin-top: 30px;
}
.alert .container {
    background: #eeeeee;
    padding: 30px;
}
main {
    padding: 20px 0 30px;
}
main .logo {
    margin-top: 30px;
}
main .photo {
    /* height: 100%;
    width: 100%;
    object-fit: cover; */
}

main .text {
    border-top: 5px solid #308e85;
    margin-top: 15px;
    padding-top: 20px;
    background: url(../img/bg.jpg) center center no-repeat;
}
main .text p {
    margin-bottom: 15px;
    color: #08153b;
}
main .text p strong {
    font-weight: bold;
    color: #08153b;
}
main .text a {
    color: #08153b;
    display: block;
    font-weight: bold;
}
main .col-lg-6 {
    position: relative;
    overflow: hidden;
}
main .bg {
    position: absolute;
    width: 100%;
    height: 101%;
    top: 0;
    left: -461px;
    transform: skewX(17deg);
    -webkit-backface-visibility: hidden;
    background-color: #fff;
}
main .tag {
    position: absolute;
    padding: 10px;
    color: #fff;
    left: 158px;
    top: 20px;
}
main .tag p {
    position: relative;
    margin-bottom: 0;
}
main .tag .color {
    background-color: #67974f;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%) skewX(17deg);
}

.box-download {
    background-color: #257478;
    padding: 30px;
    text-align: center;
}
.box-download h3 {
    color: #fff;
    margin-bottom: 20px;
}
.box-download a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    justify-self: center;
}
.box-download a i {
    font-size: 24px;
}

footer {
    padding-bottom: 20px;
}


@media (max-width: 1399px) {
    main .tag {
        left: 60px;
    }
    main .bg {
        left: -369px;
    }
}
@media (max-width: 991px) {
    body {
        text-align: center;

    }
    h2 {
        font-weight: 700;
        margin-top: 20px;
        font-size: 20px;
    }
    body .container {
        max-width: 400px;
    }
    main .tag {
        position: relative;
        width: 100%;
        top: 0;
        left: 0;
        margin: 30px auto;
    }
    main {
        display: block;
        padding-bottom: 30px;
    }
    main .text a {
        margin: 0 auto;
        justify-content: center;
    }
    main .bg {
        display: none;
    }
    main .photo {
        margin-top: 30px;
    }
}