
/* package*/
.packages {
    margin-top: 50px;
}

.packages {
    margin-bottom: 0;
}

.package {
    position: relative;
    width: 100%;
    box-shadow: 0px 7px 12px #0000001F;
    border-radius: 5px;
}

.package.start-package {

}

.package.deposit {

}

.package img {
    object-fit: cover;
    max-height: 150px;
    width: 100%;
    border-radius: 5px;
}

.package .header,
.package .more-info {
    width: 100%;
    left: 0;
    z-index: 2;
}

.package .header {
    top: 0;
    height: 60%;
}

.package .header,
.package .more-info {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.package .header > * {
    margin: 0;
    padding: 0;
    color: white;
    font-weight: bold;
    box-sizing: border-box;
}

.package .header h3 {
    font-family: 'Exo 2', sans-serif;
    width: 100%;
    align-self: center;
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    padding-left: 20px;
    color: var(--color-dark);
    padding-top: 20px;
    padding-bottom: 20px;
}

.package .header span {
    font-family: 'Exo 2', sans-serif;
    max-width: 24%;
    background-color: white;
    align-self: center;
    font-size: 70px;
    padding: 32px 21px 34px 23px;
    margin-right: 20px;
    text-align: right;
    width: 100%;
    margin-top: -87px;
    line-height: 1em;
    box-shadow: 0px 7px 12px #0000001F;
    border-radius: 5px;
}

.package.start-package .header span {
    color: var(--color-blue);
}

.package.deposit .header span {
    color: var(--color-roi-green);
}


.package .header span.price:before {
    content: "€";
    width: 30px;
    height: 30px;
    font-size:  45px;
}

.package .more-info {
    background: white;
    padding: 0 20px;
}

.package .more-info p {
    max-width: 65%;
    width: 100%;
    color: var(--color-dark);
    line-height: 17px;
    margin-bottom: 20px;
}

.package  .link {
    width: 100%;
    padding: 0 20px 20px 20px;
    align-self: center;
}

.package  .link .btn {
    width: 100%;
}

.package .more-info .link a:hover {
    color: #fff;
    text-decoration: none;
}

.package.start-package .more-info .link a:hover {
    background-color: #007bff;
}
.package.deposit .more-info .link a:hover {
    background-color: #70BE77;
}


@media (max-width: 1199px) {


    .package .header span {
        max-width: 130px;
        font-size: 55px;
    }
}

@media (max-width: 991px) {
    .package.start-package {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .package {
        min-height: 350px;
    }

    .package .header,
    .package .more-info {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 20px;
    }


    .package .header h3 {
        padding: 0;
        padding-top: 15px;
    }

    .package .header span {
        padding: 10px;
        margin-top: -108px;
        max-width: 110px;
    }

    .package .header span.price:before {
        font-size: 40px;
    }

    .package .more-info p {
        max-width: 100%;
        margin-bottom:0;
    }
    .package .more-info .link {
        max-width: 100%;
        width: 70%;;
        text-align: center;
    }
    .package .more-info .link a {
    	width: 100%;
    }
}

