@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* loading page */

.img-center {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.textIntro {
    font-size: 17px;
    position: absolute;
    top: 70%;
    text-align: center;
    left: 39%;
}


/* homepage */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

html {
    font-family: 'Montserrat', sans-serif;
}

header {
    height: 10vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    box-sizing: border-box;
}

.app-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 2px 5px;
}

header img {
    height: 100%;
    /* width: 70px; */
}

header span {
    padding-top: 15px;
    cursor: pointer;
}

.menu-bar i {
    /* border: 1px solid #000000;
    border-radius: 2px; */
    color: #e60000;
    font-size: 25px;
}

header .hidden-menu {
    position: absolute;
    z-index: 1;
    right: 10px;
    top: 42px;
    display: none;
}

header .open {
    position: absolute;
    z-index: 1;
    right: 0;
    top: 40px;
    display: block;
}

.hidden-menu ul {
    background-color: #e6e6e6;
}

.hidden-menu ul li {
    list-style-type: none;
    padding: 10px 15px;
}

.hidden-menu ul li a {
    text-decoration: none;
    color: black;
}


/* image background */

.card {
    border: 0 !important;
}

.card-img-overlay {
    padding-top: 20px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.85), transparent);
}

.card-cont {
    position: absolute;
    bottom: 10px;
    left: 10px;
    line-height: 17px;
}

.card-cont p.card-text {
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 15px;
}

.card-cont a {
    font-weight: 500;
    font-size: 12px;
}


/* Grid */

.packages-title {
    font-size: 19px;
    font-weight: bolder;
    color: #e60000;
    margin-bottom: 10px;
}

.packages {
    display: flex;
    flex-direction: column;
}

.packages .row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.packages .row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.packages .row .item {
    border: 1px #cc0000 solid;
    padding: 10px 10px 0px 10px;
    width: 49%;
    margin-bottom: 8px;
}

.packages .row .item img {
    width: 36%;
}

.packages .row .item h4 {
    font-size: 13px;
    padding-top: 5px;
}


/* amount */

.amount {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 10px;
}


/* packages */


/* #e6e6e6
#e6e6ff */

.pk-group {
    width: 100%;
}

.packages-container {
    background-color: #e6e6e6;
    width: 100%;
    margin: 5px;
    /* vertical-align: top; */
}

.packages-container .packages-benefits {
    padding: 10px 5px;
}

.packages-benefits h1 {
    font-size: 15px;
    color: #cc0000;
    padding-left: 5px;
}

.packages-benefits h4 {
    font-weight: 500;
    font-size: 20px;
    padding-left: 5px;
}


/* .packages-benefits ul {
    list-style: georgian inside url('img/plus.svg');
} */

.packages-benefits ul li {
    font-size: 12px;
    padding: 3px 0px;
    list-style: none;
}

.packages-benefits ul li::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    vertical-align: middle;
    background-image: url('../img/plus.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 5px;
}

.register-button {
    margin-top: 20px;
}

.pk-button {
    border: none;
    margin-left: 5px;
}


/* homepage footer */

.app-footer {
    position: fixed;
    background: #ff1a1a;
    left: 0;
    bottom: 0;
    color: #ffffff;
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    height: 50px;
}

.app-footer ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
    list-style: none;
    margin: 0;
    padding: 0;
}

.app-footer ul li i {
    font-size: 22px;
}

.app-footer .footer-menu {
    text-align: center;
    padding-top: 5px;
}

.footer-menu a {
    color: white;
}

.active-link {
    color: #000;
}

.footer-menu li a:active {
    color: #000;
}


/* forms */

.header-registration {
    color: #cc0000;
    font-size: 21px;
    font-weight: bold;
}

.form-title {
    font-size: 18px;
    font-weight: bold;
}


/*Female doctor image*/

.img-cont {
    display: block;
}

.img-cont img {
    width: 65%;
}

.img-btn {
    padding-left: 10px;
}

.edoc-text {
    margin-top: 20px;
    font-size: 38px;
    font-weight: bold;
    padding-left: 10px;
    margin-bottom: 20px;
}

.btn.edoc-btn {
    background-color: #ff1a1a;
    color: white;
    padding: 7px 10px;
    border: none;
    font-size: 27px;
    width: 65%;
    border-radius: 30px;
}

@media screen and (max-height:640px) {
    .img-cont img {
        width: 55%;
    }
    .edoc-text {
        font-size: 34px;
    }
    .btn.edoc-btn {
        width: 80%;
        font-size: 25px;
    }
}

@media screen and (max-width:330px) {
    .edoc-text {
        font-size: 33px;
    }
    .btn.edoc-btn {
        font-size: 24px;
    }
}