@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400|Passion+One:400");
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap');
@import './title.css';
@import './about.css';
body {
    background-image: url('../images/stars.svg');
    background-color: #1c1711;
    display: grid;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    color: #a4acc4;
}

html {
    scroll-behavior: smooth;
}

.jumbotron {
    background-color: transparent;
}

.jumbotron-white {
    background-color: #ffffff;
    color: #1c1711;
}

.jumbotron-gray-2 {
    background-color: #f9f9f9;
}

.jumbotron-transparent {
    background-color: transparent;
}

.jumbotron-brown {
    background-color: #2b2319;
}

.jumbotron-brown>img {
    width: 100px;
    height: auto;
}

.hey_text {
    color: whitesmoke;
    font-size: 3.6rem;
}

.hey_text span {
    color: #ff9e03;
}

.social-icons {
    padding: 1.5rem 0;
}

.social-icons a {
    margin-right: 1rem;
}

.social-icons a i {
    font-size: 2.8rem;
    color: #a4acc4;
    transition: all .4s ease-in-out;
}

.social-icons a .fa-facebook:hover {
    color: rgb(69, 128, 240);
}

.social-icons a .fa-instagram:hover {
    color: rgb(151, 87, 4);
}

.social-icons a .fa-youtube:hover {
    color: rgb(211, 15, 15);
}

.social-icons a .fa-twitter:hover {
    color: rgb(69, 128, 240);
}

.social-icons a .fa-linkedin:hover {
    color: rgb(35, 180, 224);
}

.social-icons a .fa-github:hover {
    color: rgb(0, 0, 0, 0.788);
}

#title-vid-bg {
    float: right;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgb(80, 20, 20);
    /* background-image: linear-gradient(to right, rgba(255, 255, 255, 1), rgb(255, 255, 255, 1), rgb(255, 255, 255, 0.9), rgb(255, 255, 255, 0)); */
    color: #f1f1f1;
    padding: 20px;
}


/* ================ scroll bar ============= */

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-thumb {
    background-color: #d8850098;
    border-radius: 50px;
}

body::-webkit-scrollbar-track {
    background-color: #777;
}


/* ================ pulse animation ============= */

.blob-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.blob {
    background: black;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    margin: 10px;
    height: 100px;
    width: 100px;
    transform: scale(1);
    animation: pulse-black 2s infinite;
}

.blob.orange {
    background: rgba(255, 121, 63, 1);
    box-shadow: 0 0 0 0 rgba(255, 121, 63, 1);
    animation: pulse-orange 2s infinite;
}


/* .fa-graduation-cap i {
    font-size: 48px;
} */

@keyframes pulse-orange {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 121, 63, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 30px rgba(255, 121, 63, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 121, 63, 0);
    }
}

@keyframes pulse-black {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 30px rgba(0, 0, 0, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}


/* ================ container ============= */

#container {
    z-index: 1;
    min-height: 100vh;
    overflow-x: hidden;
    /* font-family: "Courier New", monospace; */
    font-family: 'M PLUS Rounded 1c', sans-serif;
    /* font-family: 'Passion One', cursive; */
    /* color: #222; */
    color: #a4acc4;
}


/* ================ sidebar ============= */

#sidebar {
    min-width: 17rem;
    width: 17rem;
    height: 100vh;
    position: fixed;
    left: -17rem;
    z-index: 2;
    top: 0;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
    font-family: 'Passion One', cursive;
    /* font-family: 'M PLUS Rounded 1c', sans-serif; */
    border-right: 1px solid #4e422e;
    background-color: #2b2319;
}

#sidebar.active {
    margin-left: 17rem;
}

#sidebar ul li:hover a {
    background: #f4f3f2;
    color: rgb(36, 36, 36) !important;
}

#sidebar ul li:hover a i {
    color: rgb(36, 36, 36) !important;
}


/* .fa-fw {
    color: rgb(36, 36, 36) !important;
} */


/* ================ sidebar-hidden ============= */

#sidebar-hidden {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    padding-top: 7rem;
    height: 100%;
    width: 40px;
    z-index: 2;
    font-family: 'Passion One', cursive;
    border-right: 1px solid #4e422e;
    background-color: #2b2319;
}

.nav-item a i {
    color: rgb(248, 248, 248);
}

#sidebar-hidden ul li:hover a {
    background: #f4f3f2;
    width: 40px;
}

#sidebar-hidden ul li:hover a i {
    color: rgb(36, 36, 36) !important;
}

#sidebar-hidden.active {
    display: none;
    transition: all 2.8s;
}


/* .fa-fw {
    color: rgb(248, 248, 248) !important;
} */


/* ================ toggler ============= */

.toggler {
    width: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    height: auto;
    margin-bottom: 20px;
    color: #222;
    opacity: 1;
    padding-top: 10px;
    transform: translateX(-10px);
}

#toggler.active {
    transform: translateX(-50px);
}

#fa i.fa-bars {
    display: block;
}

#fa i.fa-window-close {
    display: none;
}

#fa.active i.fa-bars {
    display: none;
}

#fa.active .fa-window-close {
    display: block;
}

#sidebarCollapse {
    opacity: 0.5;
    transition: 0.9s ease;
}

#sidebarCollapse:hover {
    opacity: 1;
}


/* ================ page content ============= */

#content {
    width: 100%;
    position: absolute;
    left: 0rem;
    transition: all 0.4s;
}

#content.active {
    width: calc(100% - 17rem);
    background: #333;
    margin: 0;
    left: 17rem;
}

.separator {
    margin: 3rem 0;
    border-bottom: 1px dashed #fff;
}

.text-uppercase {
    letter-spacing: 0.1em;
}

.text-gray {
    color: #aaa;
}

.nav-link {
    text-transform: capitalize;
}

.text-primary {
    color: rgba(6, 45, 99, 1) !important;
}

#section-a {
    padding: 20px;
    background: #123b19;
    color: #fff;
    text-align: center;
}

#section-b {
    padding: 20px;
    background: #f4f4f4;
    text-align: center;
    color: #123b19;
}

#section-c {
    display: flex;
}

#section-c div {
    padding: 20px;
}

#section-c .box-1,
#section-c .box-3 {
    background: #123b19;
    color: #fff;
}

#section-c .box-2 {
    background: #f9f9f9;
    color: #123b19;
}


/* ================ cards ============= */

.card {
    box-shadow: 3px 4px 15px rgb(104, 102, 102);
}

.card:hover {
    box-shadow: 3px 4px 15px rgb(236, 152, 152);
    cursor: pointer;
}

.blog-card {
    background: #4e422e;
}

.blog-card img:active {
    transform: scale(0.9);
}


/* ================ footer ============= */

footer {
    width: 100%;
    background: #333;
    height: auto;
    color: #f4f4f4;
    padding-left: 50px;
}

.row.footer-area {
    background: #333;
}


/* ================ buttons ============= */

.btn-hire {
    background: rgb(175, 175, 175);
}

.btn-hire:hover {
    background: #f4f3f2;
    border: 1px solid #333;
}

.btn-group {
    width: 100%;
    margin-left: 5%;
}

.btn-group .btn {
    width: 30%;
}

.btn:active {
    transform: scale(0.9);
}

.card-text {
    max-height: 120px;
    overflow-y: scroll;
}

.card-body {
    cursor: text;
}

.subscribe,
.search {
    padding: 10px;
}

.dot {
    height: 5px;
    width: 5px;
    background-color: #222;
    border-radius: 50%;
    display: inline-block;
}


/* ================ Javascript projects ============= */

#JSProjects {
    margin-top: 100px;
}


/* ================ blogs ============= */

.author img {
    border-radius: 50%;
    width: 100px;
    border: 3px solid #eee;
}


/* ================ Loading ============= */

.loading {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.loading div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: rgb(0, 26, 23);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.loading div:nth-child(1) {
    left: 8px;
    animation: loading_1 0.6s infinite;
}

.loading div:nth-child(2) {
    left: 8px;
    animation: loading_2 0.6s infinite;
}

.loading div:nth-child(3) {
    left: 32px;
    animation: loading_2 0.6s infinite;
}

.loading div:nth-child(4) {
    left: 56px;
    animation: loading_3 0.6s infinite;
}

@keyframes loading_1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes loading_3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@keyframes loading_2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}


/* ================ pulse dot ============= */


/* ================ title arrows ============= */

.prTitle {
    position: relative;
}

.prTitle::after {
    content: "\f107";
    color: #333;
    top: -2px;
    right: 0px;
    position: absolute;
    font-family: "FontAwesome"
}

.prTitle[aria-expanded="true"]::after {
    content: "\f106";
    font-family: "FontAwesome"
}


/* ================ card ============= */

.card {
    box-shadow: none;
}


/* .card-img-top:active {
    transform: scale(0.9);
} */

.img_div {
    height: 33%;
    width: 100%;
    transform-origin: center;
    transform: rotate(0deg);
}

.img_div:hover>.card-img-top {
    -ms-transform: rotate(20deg);
    transform: rotate(10deg);
    transition: all .4s ease-in-out;
    box-shadow: 4px 3px 6px #eee;
}


/* ================ mobile view ============= */

@media (max-width: 576px) {
    /* xs */
    #headerTitle {
        font-size: x-large;
        margin-left: 20px;
    }
    .title-text,
    .card-title {
        font-size: large;
    }
    .card-text {
        font-size: small;
    }
    input.btn {
        font-size: xx-small;
    }
    .jumbotron,
    #accordion {
        width: 120%;
    }
    .card {
        box-shadow: none;
    }
}

@media (max-width: 768px) {
    /* sm */
    .blob-container {
        display: none;
    }
}

@media (max-width: 992px) {
    /* md */
}

@media (max-width: 1200px) {
    /* lg */
    .card {
        width: 90%;
    }
}

@media (min-width: 1201px) {
    /* xl */
}