:root {
	--black: #1f1f1f;
	--grey: #737373;
	--grey-light: #a1a1a1;
	
	--white: #fff;
	--white-orange: #fffafa;

	--red: #db0404;
	--red-dark:#a31526;
	--red-light: #e34053;
	--red-x-light: #ffc2c9;
	--red-xx-light: #ffedf5;
	--red-xxl-light:#fff2f8;
	
	--orange:#ff5e14;
	
	--green: #00b530;
	
	--border-radius:5px;
	--box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
	--box-shadow-1: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	
	--transition: all 0.2s linear;
}
@media (prefers-color-scheme: dark) {
	select {
		color: #ffffff; /* White text */
		background-color: #333333; /* Dark background */
	}
	option {
		color: #ffffff; /* White text */
		background-color: #333333; /* Dark background */
	}
}
/*Global*/
a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
}
.heading-1{
    font-size:35px;
    color:var(--orange);
    font-weight:900;
}
.heading-2{
    font-size:35px;
    color:var(--black);
    font-weight:900;
}
.box-mkp{
    padding:30px;
    background:var(--white);
    border-radius:var(--border-radius);
    box-shadow:var(--box-shadow);
    transition: var(--transition);
    margin-top:10px;
}
.box-mkp .title{
    font-size:20px;
    color:var(--black);
    font-weight:900;
    margin:5px 0px;
}
.box-mkp .paragraph{
    font-size:16px;
    color:var(--grey);
}
@media (max-width: 991px) {
    .heading-1{
        font-size:30px;
    }
    .box-mkp .title{
        font-size:18px;
    }
}

@media (max-width: 768px) {
    .heading-1{
        font-size:25px;
    }
    .box-mkp{
        padding:20px;
    }
    .box-mkp .title{
        font-size:16px;
    }
    .box-mkp .paragraph{
        font-size:14px;
    }
}
.btn-imp{
	background: var(--orange);
	color:var(--white);
	padding:9px 20px;
	font-size:16px;
	font-weight:500;
	border:none;
	border-radius:5px;
}
.btn-imp:hover{
	opacity:0.8;
}
.btn-100{
    width:100%;
}
@media (max-width: 768px) {
    .btn-imp{
    	padding:5px 20px;
    	font-size:16px;
    }
}
.animatable {
    /* initially hide animatable objects */
    visibility: hidden;
    /* initially pause animatable objects their animations */
    animation-play-state: paused;
}
/* show objects being animated */
.animated {
    visibility: visible;
    animation-fill-mode: both;
    animation-duration: 1s;
    animation-play-state: running;
}
@keyframes fadeInUp {
  0% {
    opacity: 0.2;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.animated.fadeInUp {
    animation-name: fadeInUp;
}
/*Global End*/
.hero-images{
    transition: var(--transition);
}
.hero-images:hover{
    transform: scale(1.05,1.05);
    transition: var(--transition);
}
.milestone-mkp{
    padding:35px 10px;
    text-align:center;
    margin-top:50px;
}
.milestone-mkp .box-mkp{
    margin-top:30px;
}
.milestone-mkp .box-mkp:hover{
    transform: scale(1.05,1.05);
}
.milestone-mkp .box-mkp-service{
    background: #cccccc url("../milestone4.jpg") no-repeat center fixed;
    background-size: cover
}
.milestone-mkp .box-mkp-service:hover{
    background: #cccccc url("../milestone4.jpg") no-repeat center fixed;
    background-size: cover;
    transform: scale(1.05,1.05);
}

.box-mkp .count{
    font-size:55px;
    color:var(--orange);
    font-weight:900;
}
.box-mkp:hover{
    background:var(--white-orange);
    box-shadow:var(--box-shadow-1);
    transition: var(--transition);
}
.wish-line{
    font-size:25px;
    font-weight:700;
    color:var(--grey);
    margin-bottom:50px;
    text-align:center;
    letter-spacing: 2px;
}
@media (max-width: 991px) {
    .milestone-mkp{
        padding:30px 10px;
    }
    .box-mkp .count{
        font-size:45px;
    }
}

@media (max-width: 768px) {
    .milestone-mkp{
        padding:25px 10px;
    }
    .milestone-mkp .box-mkp{
        margin-top:10px;
        margin-bottom:5px;
        margin-bottom:5px;
    }
    .box-mkp .count{
        font-size:40px;
    }
    .wish-line{
        font-size:20px;
    }
}


/*Dashboard*/
.profile-img{
    display: flex;
    align-items: center;
}
.profile-img img{
    width:90px;
    height:90px;
    border:7px solid #e0f6ff;
    border-radius:5px;
}
.profile-name{
    font-size:18px;
    font-weight:900;
    color:var(--black);
}
.profile-id{
    font-size:14px;
    font-weight:700;
    color:var(--grey);
    margin-top:5px;
}
.profile-package{
    font-size:14px;
    color:var(--grey);
    margin-top:15px;
}
.profile-package span{
    font-size:14px;
    font-weight:700;
    color:var(--green);
}
.profile-warning{
    color:var(--red);
    font-size:14px;
    font-weight:700;
    margin-top:15px;
    border-radius:7px;
}
.profile-ok{
    margin-top:15px;
    font-size:14px;
    color:var(--green);
}
@media (max-width: 768px) {
    .profile-img img{
        width:70px;
        height:70px;
    }
    .profile-name{
        font-size:16px;
    }
    .profile-ok{
        margin-top:15px;
        font-size:12px;
    }
}

.box-mkp-income{
    background:#e8ffee;
}
.income-box{
    display:flex;
    justify-content: space-between;
}
.income-title-muted{
    font-size:14px;
    color:var(--grey);
}
.income-title{
    font-size:18px;
    font-weight:900;
    color:var(--black);
    margin-bottom:7px;
}
.income-details{
    font-size:30px;
    font-weight:900;
    color:var(--black);
}
.income-details-muted{
    margin-top:7px;
    font-size:14px;
    color:var(--black);
}
.income-details-muted span{
    font-size:14px;
    color:var(--black);
    background:#dfffb8;
    padding:5px 7px;
    border-radius:5px;
}
.income-box-team{
    display:flex;
    justify-content: space-around;
    text-align:center;
    margin-top:20px;
}
@media (max-width: 768px) {
    .income-title-muted{
        font-size:12px;
    }
    .income-details{
        font-size:25px;
    }
    .income-details-muted{
        font-size:12px;
    }
}

.team-summary-box{
    text-align:center;
}
.team-summry{
    text-align:center;
}
.team-title-name{
    font-size:25px;
    font-weight:900;
    color:#013024;
}
.team-box{
    background: #dfffb8;
    color:black;
    border-radius:10px;
    padding:10px;
}
.active-memb{
    color:var(--green);
    font-size:20px;
    font-weight:900;
}
@media (max-width: 768px) {
    .team-title-name{
        font-size:20px;
    }
    .active-memb{
        font-size:18px;
    }
}
.box-mkp .shadowbox1 .boximage{
    text-align:center;
}
.box-mkp .shadowbox1 .boximage img{
    border:7px solid #e0f6ff;
    border-radius:10px;
    width:50px;
}


/*legal Page*/
.legal-photo-frame{
    text-align: center;
}
.legal-photo-frame img{
    width: 100%;
    margin: auto;
    background: #fff;
    padding: 0px;
    margin-bottom:10px;
    border: 15px solid #dbdbdb;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}
.legal-photo-frame h3{
    font-size:16px;
    text-align:center;
}

/*View Profile Page*/
.pro-info-title{
    font-size:18px;
    font-weight:900;
    margin-bottom:10px;
}
.pro-info-key{
    font-size:16px;
    margin-top:5px;
}
.pro-info-value{
    font-size:16px;
    margin-top:5px;
    font-weight:900;
}
@media (max-width: 768px) {
    .pro-info-title{
        font-size:16px;
    }
    .pro-info-key{
        font-size:12px;
    }
    .pro-info-value{
        font-size:12px;
    }
}

/*Edit Profile Page*/
.mkp-input-div{
    margin-top:15px;
}
    
/*Genealogy*/
.geneo-member-id{
    font-size:14px;
    color:#2e2e2e;
    font-weight:900;
}
.geneo-member-name{
    font-size:12px;
    color:#636363;
}
@media (max-width: 768px) {
    .geneo-member-id{
        font-size:12px;
        color:#2e2e2e;
    }
    .geneo-member-name{
        font-size:10px;
    }
}
.clstradingid img, .geneo-tree-img{
    width:55px;
}
@media (max-width: 768px) {
    .clstradingid img, .geneo-tree-img{
        width:30px;
    }
}

/*Home page design*/
.about-mkp{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top:10px;
}
.about-title{
    font-size:16px;
    font-size:1rem;
    color:var(--grey);
    letter-spacing: 3px;
}
.about-heading{
    font-size:3.5rem;
    font-weight:700;
    color:var(--black);
}
.about-paragraph{
    font-size:1rem;
    color:var(--grey-light);
    padding-top:15px;
}
@media (max-width: 768px) {
    .about-mkp{
        display: block;
        justify-content: center;
        padding-top:30px;
        text-align:center;
    }
    .about-title{
        font-size:14px;
        font-size:0.933rem;
    }
    .about-heading{
        font-size:2.5rem;
    }
    .about-paragraph{
        font-size:0.9rem;
        padding-top:15px;
    }
}

/*Top Bar of Landing Page*/
@media (max-width: 768px) {
    .topbar{
        display:none;
    }
}