:root {
    --primary: #DE682D;
    --primarydark: #ca551a;
}

@font-face {
    font-family: Poppins;
    src: url(../fonts/Poppins-Bold.ttf);
    font-weight: bold;
}

@font-face {
    font-family: Poppins;
    src: url(../fonts/Poppins-Medium.ttf);
    font-weight: 600;
}

@font-face {
    font-family: Poppins;
    src: url(../fonts/Poppins-Regular.ttf);
    font-weight: normal;
}

@font-face {
    font-family: Poppins;
    src: url(../fonts/Poppins-Light.ttf);
    font-weight: 300;
}

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all .2s linear;
}

header.scroll {
    background-color: #cbe2fc90;
    backdrop-filter: saturate(180%) blur(20px);
    box-shadow: 0 3px 15px -3px #00000010;
}

/* TOP */
header {
    width: 100%;
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: #FFF;
}

header nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.logo span {
    color: var(--primary);
    font-weight: bold;
    font-size: 21px;
    margin-left: 25px;
}

.logo i {
    font-weight: bold;
    font-style: normal;
    color: #000;
}

.menu-top {
    margin: 0;
    padding: 0;
}

.menu-top li {
    display: inline-block;
    list-style: none;
    margin-left: 25px;
    font-weight: 500;
}

.menu-top li a,
.menu-top li a:link,
.menu-top li a:visited {
    color: #AAA;
    font-weight: bold;
    transition: all .2s linear;
}

.menu-top li a:hover,
.menu-top li a.active {
    text-decoration: none;
    color: #000;
}

header.scroll .menu-top li a,
header.scroll .menu-top li a:link,
header.scroll .menu-top li a:visited {
    color: #00000060;
}

header.scroll .menu-top li a:hover,
header.scroll .menu-top li a.active {
    color: #000;
}

/* BANNER */
#banner {
    position: relative;
}

#banner::after {
    content: "";
    width: calc(50% - 520px);
    height: 517px;
    background-color: #dbeaf2;
    box-shadow: 0 0 5px #00000020;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.banner-text {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding-top: 60px;
    padding-bottom: 60px;
}

.banner-text h1 {
    color: #444;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 35px;
}

.banner-text p {
    color: #999;
    line-height: 1.7;
    margin-bottom: 35px;
}

.banner-text a {
    position: relative;
    padding: 0 35px 1px;
    line-height: 50px;
    color: #FFF !important;
    font-size: 15px;
    border-radius: 30px;
    letter-spacing: 1px;
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 5px 15px 10px #00000015;
}

.banner-text a:hover {
    background-color: var(--primarydark);
    border-color: var(--primarydark);
    box-shadow: 0 5px 15px 10px #00000020;
}

.banner-background {
    text-align: right;
}

.banner-background img {
    height: 520px;
    position: relative;
    right: -50px;

}

.banner-background {
    /* background-image: url('../../assets/images/back_group_pet.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    right: -15px; */
}

.banner-background:after {
    /*content: " ";*/
    /*background-color: #0F3246;*/
    /*width: 100%;*/
    /*height: calc(100% - 3px);*/
    /*box-shadow: 0 4px 10px #00000010;*/
    /*right: -70%;*/
    /*position: absolute;*/
    /*z-index: -1;*/
}

/* SOLUTION */
#solution {
    margin: 100px 0 0;
    padding: 150px 0 0;
}

#solution h1,
#article h1 {
    font-weight: bold;
    color: #444;
    margin-bottom: 80px;
    position: relative;
}

#solution h1::before,
#article h1::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 4px;
    margin-top: -50px;
    background-color: var(--primary);
}

#solution .card {
    background-color: #FCFCFC;
    overflow: hidden;
    margin-bottom: 50px;
    border: 0;
    border-radius: 15px;
    box-shadow: 0 25px 15px -8px #33333310;
    transition: all .2s linear;
}

#solution .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 15px -8px #33333318;
}

#solution .card img {
    object-fit: cover;
}

#solution .card .card-body {
    padding: 2rem;
}

#solution .card:link,
#solution .card:visited,
#solution .card:hover {
    text-decoration: none;
}

#solution .card-body h5 {
    font-weight: bold;
    font-size: 1.5em;
    color: #333;
}

#solution .card-body p {
    color: #999;
    max-height: 75px;
    line-height: 1.6;
    text-overflow: ellipsis;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* ABOUT */
#about {
    padding: 150px 0 80px;
}

.ceo {
    background-image: url('../../assets/images/subtract.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    position: relative;
}

.ceo img {
    display: block;
    margin: -60px auto 0;
    height: 550px;
}

.ceo h4 {
    margin-top: 0;
    font-size: 1.2em;
    font-weight: bold;
    letter-spacing: 1px;
}

.ceo h6 {
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #FFFFFFBB;
}

.ceo > div {
    position: absolute;
    bottom: -15px;
    left: 0;
    padding: 30px 0;
    width: 100%;
    color: #FFF;
    text-align: center;
    border-radius: 18px;
    background-color: #6fb99190;
    backdrop-filter: saturate(180%) blur(20px);
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.about-text h6 {
    font-size: 1.5em;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.about-text h5 {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 40px;
}

.about-text p {
    color: #AAA;
    line-height: 2.0;
}

.about-text b {
    color: #000;
}

/* DOWNLOAD */
#download {
    padding: 70px 0;
    margin: 120px 0;
    background-color: #F2F8F9;
    background-image: url('../../assets/images/back_buble.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

#download h3 {
    margin: 0 0 5px;
    font-weight: bold;
    font-size: 2.0em;
    line-height: 1.5;
    color: #444;
}

#download img {
    height: 85px;
    transition: all .2s linear;
}

#download img:hover {
    transform: translateY(-5px);
}

/* ARTICLE */
#article {
    margin: 100px 0;
    padding: 150px 0;
}

#article .card {
    margin-bottom: 80px;
    border: 0;
    overflow: hidden;
    border-radius: 20px;
    transition: all .2s linear;
    text-decoration: none;
}

#article .card:hover {
    transform: translateY(-5px);
}

#article .card > img {
    border-radius: 22px;
    overflow: hidden;
    object-fit: cover;
    height: 240px;
    width: 100%;
}

#article .card-body {
    padding: 30px 0;
}

#article .card-body,
#article .card-body:link,
#article .card-body:visited,
#article .card-body:hover {
    text-decoration: none;
}

#article .card-body > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#article .card-body > div div:first-child {
    width: 50%;
    flex: 0 0 50%;
    font-weight: bold;
    font-size: 15px;
    position: relative;
    color: #000;
}

#article .card-body > div div:first-child::after {
    content: "";
    position: absolute;
    right: 0;
    top: 6px;
    width: 1px;
    height: 20px;
    background-color: #AAA;
}

#article .card-body > div div:first-child img {
    height: 35px;
    width: 35px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 6px;
}

#article .card-body > div div:last-child {
    width: 50%;
    flex: 0 0 50%;
    color: #CCC;
    font-size: 13px;
    text-align: right;
}

#article .card-body > div div:last-child img {
    height: 18px;
    width: 18px;
    margin: 0 6px 3px 0;
}

#article .card-body p {
    line-height: 1.6;
    font-size: 17px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 0;
    color: #000;

    text-overflow: ellipsis;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

#article .pagination .page-link {
    padding: .3rem 1.10rem;
    line-height: unset;
    color: #777;
    font-weight: bold;
    background-color: transparent;
    border: 0;
}

#article .page-item.active .page-link,
#article .page-item:hover .page-link {
    color: var(--primary);
}

#article .page-item.active .page-link:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    height: 2px;
    width: 12px;
}

/* FOOTER */
footer {
    background-color: #0F3246;
    padding: 50px 0 40px;
    color: #FFFFFF90;
    font-weight: 300;
    cursor: default;
}

footer h5 {
    color: #FFF;
    line-height: 45px;
    margin-bottom: 30px;
}

footer h6 {
    color: #FFF;
    margin-top: 2px;
    font-size: 1.1em;
}

footer span {
    display: block;
}

/* DIV 1 */
footer .row > div:nth-child(1) img {
    width: 40px;
    height: 40px;
}

footer .row > div:nth-child(1) p {
    line-height: 1.6;
    font-size: 15px;
}

footer .social {
    margin: 40px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

footer .social a {
    display: inline-block;
    margin-right: 30px;
    transition: all .2s linear;
}

footer .social a:first-child img {
    position: relative;
    top: -2px;
}

footer .social a:hover {
    transform: translateY(-3px);
}

footer .social img {
    width: 20px !important;
    height: 20px !important;
    display: inline-block;
}

/* DIV 2 */
footer .row > div:nth-child(2) a,
footer .row > div:nth-child(2) a:link,
footer .row > div:nth-child(2) a:visited {
    display: block;
    color: #FFFFFFAA;
    font-weight: normal;
    letter-spacing: 1px;
    margin-top: 15px;
    transition: all .2s linear;
}

footer .row > div:nth-child(2) a:hover {
    text-decoration: none;
    color: #FFF;
}

/* DIV 4 */
footer form {
    position: relative;
}

footer form input {
    outline: 0 !important;
    border: 0;
    border-bottom: solid 2px #FFFFFFBB;
    background-color: transparent;
    color: #FFF;
    font-size: 15px;
    line-height: 35px;
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

footer form button {
    position: absolute;
    right: 0;
    margin-top: 5px;
    border: 0;
    border-radius: 3px;
    line-height: 25px;
    padding: 1px 8px 0;
    font-size: 20px;
}

footer form ~ a,
footer form ~ a:link,
footer form ~ a:visited {
    display: block;
    margin-bottom: 15px;
    color: #FFFFFFAA;
    transition: all .2s linear;
}

footer form ~ a:hover {
    text-decoration: none;
    color: #FFF;
}

footer form ~ a img {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

.last-footer {
    position: relative;
    margin-top: 120px;
    text-align: center;
    font-weight: 500;
    color: #FFFFFFCC;
    letter-spacing: 1px;
}

.last-footer:after {
    content: "";
    height: 1px;
    width: 100%;
    background-color: #FFFFFF90;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.last-footer span {
    position: relative;
    padding: 0 30px;
    display: inline-block;
    background-color: #0F3246;
    z-index: 2;
}

@media (max-width: 768px) {
    body {
        font-size: 0.9em;
    }

    header nav {
        display: block;
    }

    .logo {
        justify-content: center;
    }

    .menu-top {
        margin-top: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu-top li {
        margin: 0;
    }

    /* BANNER */
    .banner-text h1 {
        font-size: 2.2em;
        text-align: center;
    }

    .banner-text p {
        text-align: center;
    }

    .banner-text a {
        display: inline-block;
        margin: 0 auto;
    }

    .banner-background {
        position: unset;
    }

    .banner-background img {
        display: none;
    }

    /* SOLUTION */
    #solution h1,
    #article h1 {
        font-size: 2.1em;
    }

    #solution {
        margin: 0 0 -120px;
        padding: 150px 0 20px;
    }

    #solution .card .card-body {
        padding: 2rem 1rem;
    }

    /* ABOUT */
    #about {
        padding: 200px 0 80px;
    }
    
    #about .offset-md-1 {
        margin-bottom: 70px;
        width: calc(100% - 30px);
        margin-left: 15px;
        margin-right: 15px;
    }

    #about .offset-md-1.col-md-6 {
        margin-left: unset;
        margin-right: unset;
    }

    .about-text h6 {
        text-align: center;
    }

    .about-text h5 {
        text-align: center;
        line-height: 1.4;
    }

    .about-text p {
        text-align: justify;
    }

    /* DOWNLOAD */
    #download {
        margin: 50px 0;
        background-size: cover;
    }

    #download h3 {
        text-align: center;
        font-size: 1.6em;
        flex: 0 0 100%;
        width: 100%;
        margin-bottom: 50px;
    }

    #download img {
        height: 70px;
        display: inline-block;
    }

    #download .justify-content-end {
        justify-content: center !important;
    }

    /* ARTICLE */
    #article .pagination .page-link {
        padding: .3rem 0.9rem;
    }

    /* FOOTER */
    footer .align-items-center,
    footer .social {
        justify-content: center;
    }

    footer .social a:first-child {
        margin-left: 10px;
    }

    footer .social a:last-child {
        margin-right: 0;
    }

    footer .row > div:nth-child(1) p {
        text-align: justify;
    }

    footer h5 {
        margin-top: 40px;
        margin-bottom: 10px;
        text-align: center;
    }

    footer .row > div:nth-child(2) a,
    footer .row > div:nth-child(2) a:link,
    footer .row > div:nth-child(2) a:visited,
    footer span,
    footer h6 {
        text-align: center;
    }

    .last-footer span {
        font-size: 12px;
    }
}