/* Buttons */


/* Inputs */


/* Timeline custom component */

.timeline {
    border-left: 2px solid #E6E9ED;
    padding: 1rem 0;
}

.timeline-card {
    position: relative;
    margin-left: 31px;
    border-left: 2px solid;
    margin-bottom: 2rem;
}

.timeline-card:last-child {
    margin-bottom: 1rem;
}

.timeline-card:before {
    content: '';
    display: inline-block;
    position: absolute;
    background-color: #fff;
    border-radius: 10px;
    width: 12px;
    height: 12px;
    top: 20px;
    left: -41px;
    border: 2px solid;
    z-index: 2;
}

.timeline-card:after {
    content: '';
    display: inline-block;
    position: absolute;
    background-color: currentColor;
    width: 29px;
    height: 2px;
    top: 25px;
    left: -29px;
    z-index: 1;
}

.timeline-card-primary {
    border-left-color: #4A89DC;
}

.timeline-card-primary:before {
    border-color: #4A89DC;
}

.timeline-card-primary:after {
    background-color: #4A89DC;
}

.timeline-card-success {
    border-left-color: #37BC9B;
}

.timeline-card-success:before {
    border-color: #37BC9B;
}

.timeline-card-success:after {
    background-color: #37BC9B;
}

.timeline-card-danger {
    border-left-color: #bc3737;
}

.timeline-card-danger:before {
    border-color: #bc3737;
}

.timeline-card-danger:after {
    background-color: #bc3737;
}

.timeline-card-warning {
    border-left-color: #bca837;
}

.timeline-card-warning:before {
    border-color: #bca837;
}

.timeline-card-warning:after {
    background-color: #bca837;
}

html {
    scroll-behavior: smooth;
}

.site-title {
    font-size: 1.25rem;
    line-height: 2.5rem;
}

.nav-link {
    padding: 0;
    font-size: 1.25rem;
    line-height: 2.5rem;
    color: rgba(0, 0, 0, 0.5);
}

.nav-link:hover,
.nav-link:focus,
.active .nav-link {
    color: rgba(0, 0, 0, 0.8);
}

.nav-item+.nav-item {
    margin-left: 1rem;
}

.cover {
    border-radius: 10px;
}

.cover-bg {
    background-color: #010003;
    background-image: url("../images/background.jpg");
    border-radius: 10px 10px 0 0;
}

.avatar {
    max-width: 216px;
    max-height: 216px;
    margin-top: 20px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.avatar img {
    /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

footer a:not(.nav-link) {
    color: inherit;
    border-bottom: 1px dashed;
    text-decoration: none;
    cursor: pointer;
}

@media (min-width: 48em) {
    .site-title {
        float: left;
    }
    .site-nav {
        float: right;
    }
    .avatar {
        margin-bottom: -80px;
        margin-left: 0;
    }
}

@media print {
    body {
        background-color: #fff;
    }
    .container {
        width: auto;
        max-width: 100%;
        padding: 0;
    }
    .cover,
    .cover-bg {
        border-radius: 0;
    }
    .cover.shadow-lg {
        box-shadow: none !important;
    }
    .cover-bg {
        padding: 5rem !important;
        padding-bottom: 10px !important;
    }
    .avatar {
        margin-top: -10px;
    }
    .about-section {
        padding: 6.5rem 5rem 2rem !important;
    }
    .skills-section,
    .work-experience-section,
    .education-section,
    .contant-section {
        padding: 1.5rem 5rem 2rem !important;
    }
    .page-break {
        padding-top: 5rem;
        page-break-before: always;
    }
}

.pa-1 {
    padding: 0.2rem!important;
}

.m-50,
.h-50 {
    width: 50px !important;
    height: 50px !important;
}

* {
    /* for print background img  */
    -webkit-print-color-adjust: exact !important;
    /* Chrome, Safari, Edge */
    color-adjust: exact !important;
    /*Firefox*/
}


/* do't print paceholder in the page  */

@media print {
     ::-webkit-input-placeholder {
        /* WebKit browsers */
        color: transparent !important;
    }
     :-moz-placeholder {
        /* Mozilla Firefox 4 to 18 */
        color: transparent !important;
    }
     ::-moz-placeholder {
        /* Mozilla Firefox 19+ */
        color: transparent !important;
    }
     :-ms-input-placeholder {
        /* Internet Explorer 10+ */
        color: transparent !important;
    }
}