@tailwind base;
@tailwind components;
@tailwind utilities;
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*=================== Portofolio ======================*/
body {
    /* font-family: 'Poppins', sans-serif; */
    overflow-x: hidden !important;
    scroll-behavior: smooth;
}

.scroll-lock {
    overflow: hidden;
}

/****** SideBar ******/
.mp_sidebar {
    position: fixed;
    z-index: 200;
    left: 0;
    width: 80px;
    display: flex;
    flex-direction: column;
    top: 50%;
    transform: translateY(-50%);
    height: 350px;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 13px;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.15));
}

.mp_sidebar nav {
    height: 350;
    display: flex;
    flex-direction: column;
}

.mp_sidebar nav a {
    position: relative;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    z-index: 2;
    list-style: none;
    text-decoration: none;
    color: #000;
}

.mp_sidebar nav .mp_link .mp_sidebar_text {
    font-size: 13px;
    transition: 0.3s;
    font-weight: 500;
}

.mp_sidebar nav .mp_link .mp_icon {
    position: relative;
    display: block;
    text-align: center;
    transition: 0.3s;
    font-size: 20px;
}

.mp_sidebar nav .mp_link.active .mp_icon {
    transform: translateX(26px);
    color: #F5A924;
}

.mp_sidebar nav .mp_link.active .mp_sidebar_text {
    transform: translateX(26px);
    color: #F5A924;
    font-size: 11px;
}

.mp_indicator {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
    z-index: 1;
    width: 70px;
    height: 70px;
    left: 35px;
}

.mp_indicator_row {
    height: 70px;
    position: absolute;
    width: 4px;
    border-radius: 2px;
    transition: 0.3s;
    left: 0;
    background: #F5A924;
}

.mp_indicator::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    right: -5px;
    border-radius: 50%;
    box-shadow: -22px 16px #fff;
    top: -24px;
}

.mp_indicator::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    box-shadow: -22px -16px #fff;
    right: -5px;
    border-radius: 50%;
    bottom: -24px;
}

.mp_sidebar nav .mp_link:nth-child(1).active~.mp_indicator {
    transform: translateY(calc(70px * 0));
}

.mp_sidebar nav .mp_link:nth-child(2).active~.mp_indicator {
    transform: translateY(calc(70px * 1));
}

.mp_sidebar nav .mp_link:nth-child(3).active~.mp_indicator {
    transform: translateY(calc(70px * 2));
}

.mp_sidebar nav .mp_link:nth-child(4).active~.mp_indicator {
    transform: translateY(calc(70px * 3));
}

.mp_sidebar nav .mp_link:nth-child(5).active~.mp_indicator {
    transform: translateY(calc(70px * 4));
}

.mp_sidebar nav .mp_link:nth-child(1).active~.mp_indicator_row {
    transform: translateY(calc(70px * 0));
}

.mp_sidebar nav .mp_link:nth-child(2).active~.mp_indicator_row {
    transform: translateY(calc(70px * 1));
}

.mp_sidebar nav .mp_link:nth-child(3).active~.mp_indicator_row {
    transform: translateY(calc(70px * 2));
}

.mp_sidebar nav .mp_link:nth-child(4).active~.mp_indicator_row {
    transform: translateY(calc(70px * 3));
}

.mp_sidebar nav .mp_link:nth-child(5).active~.mp_indicator_row {
    transform: translateY(calc(70px * 4));
}

/* Section */
.mp_section {
    position: relative;
    min-height: 800px;
    height: auto;
    width: 100%;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
    background: url('portofolio/bg-pattern-white.png');
}

section#about {
    background-color: #333333;
    background: url('portofolio/bg-patern.png');
}

section#resume {
    background-color: #333333;
    background: url('portofolio/bg-patern.png');
}

section#resume .mp_container{
    flex-direction: row;
    align-items: start;
}

.mp_container {
    padding: 0 100px !important;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
}

/************ About Me *************/
.mp_ab_info {
    position: relative;
    color: #FFFFFF !important;
    max-width: 700px;
}
.mp_ab_info::before {
    content: '';
    position: absolute;
    width: 400px;
    top: -35%;
    left: -12%;
    height: 300px;
    background: url('portofolio/efek.png');
    background-size: 100%;
    background-position: top left;
    background-repeat: no-repeat;
    mix-blend-mode: screen;
}


.mp_ab_title {
    display: flex;
    flex-direction: column;
    align-items: start !important;
}

.mp_about_name{
    position: relative;
    width: fit-content;
    z-index: 4;
    color: #FFFFFF;
    font-size: 30px;
    transition: all 0.5s ease-in-out;
}
.mp_about_name::before{
    position: absolute;
    content: "";
    bottom: 2px;
    left: 0;
    height: 6px;
    width: 100%;
    z-index: 10;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    background-color: rgba(41, 70, 204, 0.9);
}
.mp_about_name h1{
    position: relative;
    font-size: 30px;
    line-height: 30px;
    font-weight: 600;
    z-index: 20 !important;
    color: #ffffff;
}

.mp_about_name.mp_hidden{
    opacity: 0;
    transform: translateY(-20px);
}

.mp_ab_role{
    color: #2946CC;
    font-size: 50px !important;
    line-height: 55px !important;
    height: 60px;
    font-family: "Oswald", sans-serif;
    position: relative;
}

.mp_ab_role::before{
    position: absolute;
    content: "";
    bottom: 0px;
    right: -5px;
    width: 20px;
    height: 20px;
    border: 4px solid #2946CC;
    border-top: none;
    border-left: none;
}

.mp_ab_detail {
    display: flex;
    flex-direction: column;
    font-size: 20px !important;
    transition: 0.8s;
    color: inherit;
}

.mp_ab_detail span:nth-child(1) {
    transition: 0.8s;
}

.mp_ab_detail span:nth-child(1).mp_hidden {
    opacity: 0;
    transform: translateY(-30px);
}

.mp_ab_detail span:nth-child(2).mp_hidden {
    opacity: 0;
    transform: translateX(30px);
}

.mp_ab_detail span:nth-child(2) {
    font-size: 27px;
    font-weight: 600;
    margin: -5px;
    transition: 0.8s;
    margin-left: 1px;
    color: #F5A924;
}

.mp_ab_description {
    font-size: 20px;
    font-weight: 500;
    transition: all 0.5s ease-in-out;
}
.mp_ab_description.mp_hidden {
    opacity: 0;
    transform: translateY(30px);
}

.mp_ab_profile {
    width: fit-content;
    height: fit-content;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0 40px 0 0;
    transition: all 0.5s ease-in-out;
}

.mp_profile_img {
    width: 200px !important;
    aspect-ratio: 3/4;
    border-radius: 4px;
    -webkit-filter: grayscale(45%); /* Safari 6.0 - 9.0 */
    filter: grayscale(45%);
    z-index: 20;
}
.mp_ab_profile::after {
    position: absolute;
    content: "";
    top: 20px;
    right: -5px;
    width: 200px !important;
    aspect-ratio: 3/4;
    z-index: 10;
    border: 4px solid #2946CC;
    border-radius: 4px;
}

.mp_ab_profile.mp_hidden {
    opacity: 0;
    transform: translateX(-20px);
}

.ab-service h4 {
    color: #D3D3D3;
    font-size: 27px;
}

.mp_ab_item {
    width: 280px;
    height: 250px;
    margin: 20px 60px;
    background: #D3D3D3;
    /* background-color: #333; */
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #333;
    position: relative;
    padding: 10px;
    cursor: pointer;
    transition: 0.8s;
}

.mp_ab_item.mp_hidden {
    opacity: 0;
    transform: translateY(30px);
}

.mp_ab_item {
    font-weight: 600;
    font-size: 1.3rem;
}

.mp_ab_item span {
    text-align: center;
}

.mp_ab_icon {
    font-size: 30px;
    margin-bottom: 20px;
    color: #F5A924;
}

.mp_ab_item span {
    color: #333;
    font-weight: 500;
    font-size: 16px;
}

.mp_tracker_wrapper{
    overflow: hidden;
}
.mp_tracker{
    position: relative;
    padding: 4px 0;
}

.mp_tracker .mp_tracker_dot{
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    height: 10px;
    width: 10px;
    z-index: 10;
    border-radius: 50%;
    background: #808080;
    border: 1px solid #808080;
    /* transform: translateY(-50%); */
    animation: shinydot 0.1s forwards;
}

.mp_tracker .mp_tracker_progress_bar{
    position: absolute;
    content: "";
    height: 100%;
    left: 4px;
    top: 10px;
    width: 2px;
    z-index: 5;
    background: #808080;
}

.mp_tracker .mp_tracker_progress_bar::before{
    position: absolute;
    content: "";
    top: 0;
    width: 2px;
    background-color: #FFFFFF;
    z-index: 5;
    box-shadow: 0 0 6px #FFFFFF;
    animation: progress 1s linear;
    animation-fill-mode: forwards;
}

.mp_tracker .mp_tracker_detail{
    font-size: 14px !important;
    width: 90%;
    min-width: 240px;
    border-radius: 12px;
    margin-left: 20px;
    color: #fff;
    opacity: 0;
    transform: translateX(40px);
    animation: slideIn 0.5s forwards;
}
.mp_tracker:nth-child(2) .mp_tracker_detail{
    animation-delay: 0.6s;
}
.mp_tracker:nth-child(3) .mp_tracker_detail{
    animation-delay: 1.6s;
}
.mp_tracker:nth-child(4) .mp_tracker_detail{
    animation-delay: 2.6s;
}
.mp_tracker:nth-child(5) .mp_tracker_detail{
    animation-delay: 3.6s;
}
.mp_tracker:nth-child(6) .mp_tracker_detail{
    animation-delay: 4.6s;
}

/* .mp_tracker_detail.mp_hidden{
    opacity: 0;
    transform: translateX(40px);
} */
.mp_tracker_detail h3{
    font-weight: 600;
    font-size: 18px;
}
.mp_tracker_info{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.mp_tracker_info h3{
    margin-right: 4px; 
}

.mp_tracker:last-child .mp_tracker_progress_bar{
    display: none;
}

.mp_tracker:nth-child(2) .mp_tracker_dot,
.mp_tracker:nth-child(2) .mp_tracker_progress_bar::before{
    animation-delay: 1s;
}

.mp_tracker:nth-child(3) .mp_tracker_dot,
.mp_tracker:nth-child(3) .mp_tracker_progress_bar::before{
    animation-delay: 2s;
}

.mp_tracker:nth-child(4) .mp_tracker_dot,
.mp_tracker:nth-child(4) .mp_tracker_progress_bar::before{
    animation-delay: 3s;
}


.mp_tracker:nth-child(5) .mp_tracker_dot,
.mp_tracker:nth-child(5) .mp_tracker_progress_bar::before{
    animation-delay: 4s;
}


.mp_tracker:nth-child(6) .mp_tracker_dot,
.mp_tracker:nth-child(6) .mp_tracker_progress_bar::before{
    animation-delay: 5s;
}


.mp_tracker_wrapper.mp_hidden .mp_tracker .mp_tracker_dot,
.mp_tracker_wrapper.mp_hidden .mp_tracker .mp_tracker_detail,
.mp_tracker_wrapper.mp_hidden .mp_tracker .mp_tracker_progress_bar::before{
    animation: none;
}

@keyframes slideIn {
    0%{
        opacity: 0;
        transform: translateX(40px);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shinydot{
    0%{
        background: #808080;
        border: 1px solid #808080;
    }
    100%{
        border: 1px solid #ffffff;
        background: #ffffff;
        box-shadow: 0 0 12px #ffffff;
    }
}
@keyframes progress {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}
@keyframes blink {
    50% {
        opacity: 0;
    }
}

/********* Project **********/
/* #mp_chevron_left{
    position: absolute;
    top: 50%;
    left: 4px;
    font-size: 20px;
    color: #F5A924;
    display: inline;
    transition: all 0.2s ease-in-out
  }
  #mp_chevron_right{
    position: absolute;
    top: 50%;
    right: 4px;
    font-size: 20px;
    color: #F5A924;
    display: inline;
    transition: all 0.2s ease-in-out
  } */
.mp_chevron {
    position: absolute;
    top: 50%;
    font-size: 20px;
    color: #2946CC !important;
    display: inline;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    z-index: 100;
}

.mp_scroll_container:hover~.mp_chevron_p1 {
    opacity: 1 !important;
}

.mp_chevron_p1 {
    opacity: 0;
}

.mp_chevron_p1:hover {
    opacity: 1 !important;
}

.mp_chevron.right {
    right: 4px !important;
}

.mp_chevron.left {
    left: 4px;
}

.mp_pj_content {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    margin: 20px 0;
    transition: 0.4s;
}

.mp_pj_content:nth-child(even) {
    flex-direction: row-reverse;
}

.mp_slider_container::selection {
    background-color: transparent;
}

.mp_slider_container {
    display: flex;
    border-radius: 15px;
    margin: 10px !important;
    transition: 0.5s ease-in-out;
    min-width: 600px;
    width: 1000px !important;
    height: 320px !important;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    flex-direction: row;
}
.sweb_container{
    position: relative;
    width: 50%;
    min-width: 50%;
    aspect-ratio: 16/9;
    background: url('portofolio/img-on-laptop.png');
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: top center;
}

.mp_mobile_slider {
    /* width: %; */
    position: relative;
}

.mp_mobile_slide {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mp_slider {
    width: 200%;
    position: relative;
}

.mp_slider input {
    display: none;
}

.mp_slide {
    width: 100%;
    height: 320px;
    transition: 2s;
}

.mp_slide img {
    width: 100%;
    height: 320px;
}

#pj1-radio1:checked~.first {
    margin-left: -0%;
}

#pj1-radio2:checked~.first {
    margin-left: -100%;
}

#pj1-radio3:checked~.first {
    margin-left: -200%;
}

#pj1-radio4:checked~.first {
    margin-left: -300%;
}

#pj2-radio1:checked~.first {
    margin-left: -0%;
}

#pj2-radio2:checked~.first {
    margin-left: -100%;
}

#pj2-radio3:checked~.first {
    margin-left: -200%;
}

#pj2-radio4:checked~.first {
    margin-left: -300%;
}

.mp_navigation_auto {
    position: absolute;
    display: flex;
    flex-direction: row;
    width: 100%;
    bottom: 20px;
    justify-content: center;
    transition: all 0.4s !important;
}

.mp_navigation_auto div {
    background: rgba(255, 255, 255, 0.5);
    background: #D3D3D3;
    padding: 4px;
    border-radius: 10px;
    height: 8px;
    width: 16px;
    border-radius: 4px;
    transition: 1s !important;
}

.mp_navigation_auto div:not(:last-child) {
    margin-right: 6px;
}

#pj1-radio1:checked~.mp_navigation_auto .auto-btn1 {
    width: 40px;
    background: #D3D3D3;
}

#pj1-radio2:checked~.mp_navigation_auto .auto-btn2 {
    width: 40px;
    background: #D3D3D3;
}

#pj1-radio3:checked~.mp_navigation_auto .auto-btn3 {
    width: 40px;
    background: #D3D3D3;
}

#pj1-radio4:checked~.mp_navigation_auto .auto-btn4 {
    background: #D3D3D3;
    width: 40px;
}

#pj2-radio1:checked~.mp_navigation_auto .auto-btn1 {
    background: #D3D3D3;
    width: 40px;
}

#pj2-radio2:checked~.mp_navigation_auto .auto-btn2 {
    background: #D3D3D3;
    width: 40px;
}

#pj2-radio3:checked~.mp_navigation_auto .auto-btn3 {
    background: #D3D3D3;
    width: 40px;
}

#pj2-radio4:checked~.mp_navigation_auto .auto-btn4 {
    background: #D3D3D3;
    width: 40px;
}

.mp_pj_detail {
    width: auto !important;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4px 15px;
    transition: 0.4s;
}

.mp_title {
    font-size: 25px;
    font-weight: 600;
    transition: 1s;
}

.mp_title.mp_hidden {
    opacity: 0;
    transform: translateY(-50px);
}

.mp_pj_description {
    text-align: center;
}

.pj-info {
    display: flex;
    transition: 1s;
}

.mp_btn_detail {
    margin: 20px 15px 0 0;
    width: 90px;
    border: none;
    border-radius: 6px;
    outline: none;
    font-size: 16px;
    height: 30px;
    transition: 0.4s;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    letter-spacing: 0.2px;
    position: relative;
    color: #fff;
    transition: all 0.6s;
    background: #2946CC;
}

.mp_btn_detail:active {
    transform: scale(0.90);
}

/************ Contact **************/
.mp_main_left {
    width: 50%;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    padding-left: 30px;
}

.mp_main_left h4 {
    margin: 30px 0 20px;
    font-size: 1.4em;
    color: #333;
}

.mp_contact_info {
    display: flex;
    align-items: center;
    margin: 6px 0 6px 0;
    cursor: pointer;
    transition: 0.6s;
    width: max-content;
}

.mp_contact_info:nth-child(2) {
    transition-delay: 200ms;
}

.mp_contact_info:nth-child(3) {
    transition-delay: 200ms;
}

.mp_contact_info.mp_hidden {
    opacity: 0;
    transform: translateX(-40px);
}

.mp_contact_info div:nth-child(2) span:nth-child(1) {
    font-weight: 700;
    color: #333;
    margin-bottom: -3px;
    transition: 0.4s;
}

.mp_contact_info:hover div:nth-child(2) span:nth-child(1) {
    color: #F5A924;
}

.mp_contact_info div:nth-child(2) {
    display: flex;
    flex-direction: column;
    transition: 0.4s;
}

.mp_contact_info div:nth-child(1) {
    margin-right: 6px;
    font-size: 1.7em;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    color: #D3D3D3;
    background-color: #333;
    transition: 0.4s;
}

.mp_contact_info:hover div:nth-child(1) {
    background-color: #F5A924;
}

.mp_contact_icon.mp_hidden {
    opacity: 0;
    transform: translateY(40px);
}

.mp_icon_wrapper {
    display: flex;
    transition: 0.6s;
}

.mp_contact_icon {
    width: 40px;
    height: 40px;
    margin: 0 10px 0 0;
    background: #D3D3D3;
    color: #333;
    border-radius: 50%;
    display: flex;
    font-size: 20px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.6s;
}

.mp_contact_icon:hover {
    transform: translateY(-8px);
    background: #F5A924;
    color: #fff;
}

.mp_main_right {
    padding: 20px 10px 50px 10px;
    width: 50%;
}

.mp_main_right form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
}

.mp_contact_description {
    margin-top: 30px;
    font-size: 18px;
    color: #444;
    font-weight: 500;
}

.mp_text_msg {
    width: 70%;
    text-align: left;
    transition: all 0.8s;
    font-size: 20px;
    font-weight: 600;
}

.mp_text_msg.mp_hidden {
    opacity: 0;
    transform: translateY(-30px);
}

.mp_input {
    margin: 0.7em 0;
    width: 70%;
    position: relative;
}

.mp_input input {
    font-size: 100%;
    padding: 0.8em;
    outline: none;
    border: 2px solid rgba(0, 0, 0, 0.5);
    background-color: transparent;
    border-radius: 6px;
    width: 100%;
}

.mp_input textarea {
    font-size: 100%;
    padding: 0.8em;
    outline: none;
    border: 2px solid rgba(0, 0, 0, 0.5);
    background-color: transparent;
    border-radius: 6px;
    width: 100%;
    height: 200px;
    resize: none;
}

.mp_input label {
    font-size: 100%;
    position: absolute;
    left: 0;
    padding: 0.8em;
    margin-left: 0.5em;
    pointer-events: none;
    transition: all 0.3s ease;
    color: rgb(100, 100, 100);
    background-color: transparent;
}

.mp_input :is(textarea:focus, textarea:valid)~label {
    transform: translateY(-50%) scale(.9);
    margin: 0em;
    margin-left: 1.3em;
    padding: 0 0.4em 0;
    background-color: #ffffff;
    color: #F5A924;
    background: url('portofolio/bg-pattern-white.png');
}

.mp_input :is(input:focus, input:valid)~label {
    transform: translateY(-50%) scale(.9);
    margin: 0em;
    margin-left: 1.3em;
    padding: 0 0.4em 0;
    background-color: #ffffff;
    color: #F5A924;
    background: url('portofolio/bg-pattern-white.png');
}

.mp_input :is(textarea:focus, textarea:valid)~label {
    transform: translateY(-50%) scale(.9);
    margin: 0em;
    margin-left: 1.3em;
    padding: 0 0.4em 0;
    background-color: #ffffff;
    color: #F5A924;
    background: url('portofolio/bg-pattern-white.png');
}

.mp_input :is(input:focus, input:valid)~label {
    transform: translateY(-50%) scale(.9);
    margin: 0em;
    margin-left: 1.3em;
    padding: 0 0.4em 0;
    background-color: #ffffff;
    color: #F5A924;
    background: url('portofolio/bg-pattern-white.png');
}

.mp_submit {
    margin: 1em 0 1em 0;
    max-width: 70%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.mp_submit_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 40px;
    border-radius: 6px;
    font-size: 17px;
    transition: 0.8s;
    cursor: pointer;
    border: none;
    background: #333;
    color: #fff;
}

.mp_submit_btn.mp_hidden {
    opacity: 0;
    transform: translateX(-50px);
}

.mp_submit_btn:active {
    transform: scale(0.96);
}

.mp_footer {
    width: 100%;
    height: 50px;
    background: #333;
    justify-content: center;
    align-items: center;
    display: flex;
}

.mp_footer span {
    color: #fff;
    font-size: 19px;
    font-weight: 600;
}

/******** Education And Skills *********/
.mp_wrapper_top {
    max-width: 40% !important;
    width: 35%;
    display: flex;
    /* padding: 30px 30px; */
    flex-direction: column;
    flex-wrap: wrap;
    color: #ffffff;
}


.mp_main_title{
    position: relative;
    width: fit-content;
    z-index: 4;

}
.mp_main_title::before{
    position: absolute;
    content: "";
    bottom: 4px;
    left: 0;
    height: 6px;
    width: 100%;
    z-index: 10;
    border-bottom-left-radius: 1px;
    border-bottom-right-radius: 1px;
    background-color: rgba(41, 70, 204, 0.9);
}
.mp_main_title h3{
    position: relative;
    font-size: 20px;
    font-weight: 600;
    z-index: 20 !important;
    color: #ffffff;
}
.mp_points_tablet{
    display: none;
}
.mp_points li{
    position: relative;
    padding-left: 16px;
    transition: all 0.4s ease-out;
    opacity: 1;
    transform: translateX(0);
}

.mp_points li:nth-child(2){
    transition-delay: 75ms;
}
.mp_points li:nth-child(3){
    transition-delay: 150ms;
}
.mp_points li:nth-child(4){
    transition-delay: 225ms;
}
.mp_points li:nth-child(5){
    transition-delay: 300ms;
}
.mp_points li:nth-child(6){
    transition-delay: 375ms;
}
.mp_points li:nth-child(7){
    transition-delay: 450ms;
}
.mp_points li:nth-child(8){
    transition-delay: 525ms;
}
.mp_points li:nth-child(9){
    transition-delay: 600ms;
}
.mp_points li:nth-child(10){
    transition-delay: 675ms;
}
.mp_points li:nth-child(11){
    transition-delay: 750ms;
}
.mp_points li:nth-child(12){
    transition-delay: 825ms;
}
.mp_points li:nth-child(13){
    transition-delay: 900ms;
}
.mp_points li:nth-child(14){
    transition-delay: 975ms;
}
.mp_points li:nth-child(15){
    transition-delay: 1050ms;
}

.mp_points > li::before{
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 6px;
    height: 6px;
    transform: translateY(-50%);
    background: #d3d3d3;
}

.mp_points.mp_hidden li{
    opacity: 0;
    transform: translateX(20px);
}
.mp_main {
    width: 100%;
    margin-top: 20px;
    background-color: beige;
    align-items: flex-start !important;
    flex-direction: row !important;
}
.mp_main h3{
    background-color: #F5A924;
}

.mp_dc_unit {
    display: flex;
    flex-direction: column;
    width: auto;
    height: auto;
    transition: 0.5s;
    color: #D3D3D3;
}

.mp_dc_unit h5 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
    position: relative;
    cursor: pointer;
    width: auto;
    padding: 2px 6px;
    width: max-content;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.7);
    transition: 0.4s;
}

.mp_dc_unit h5:hover::before {
    width: 30%;
}

.mp_dc_unit h5::before {
    content: "";
    height: 2px;
    width: 0%;
    position: absolute;
    background: #2946CC;
    /* background: rgba(245, 169, 36, 1); */
    border-radius: 4px;
    bottom: 5px;
    transition: 0.4s;
}

.mp_text {
    font-size: 17px;
    font-weight: 500;
    margin: 4px;
    cursor: pointer;
    transition: 0.4s;
    display: flex;
    align-items: center;
}

.mp_text.mp_hidden {
    opacity: 0;
    transform: translateX(-35px);
}

.mp_text:nth-child(2) {
    transition-delay: 100ms;
}

.mp_text:nth-child(3) {
    transition-delay: 200ms;
}

.mp_text:nth-child(4) {
    transition-delay: 300ms;
}

.mp_text:nth-child(5) {
    transition-delay: 400ms;
}

.mp_text:nth-child(6) {
    transition-delay: 500ms;
}

.mp_text:nth-child(7) {
    transition-delay: 600ms;
}

.mp_text_icon {
    font-size: 15px;
    margin-right: 6px;
    color: #2946CC;
    transition: 0.4s;
}

.mp_dc_title {
    font-size: 19px;
    color: #ffffff;
    margin-top: 0px !important;
    text-align: left !important;
    height: auto;
}

.mp_dc_detail {
    transition: 0.8s;
}

.mp_dc_detail:nth-child(2) {
    transition-delay: 200ms;
}

.mp_dc_detail.mp_hidden {
    opacity: 0;
    transform: translateY(-30px);
}

.mp_dc_img {
    transition: 0.8s;
}

.mp_dc_img:nth-child(2) {
    transition-delay: 200ms;
}

.mp_dc_img.mp_hidden {
    opacity: 0;
    transform: translateX(-20px);
}

.mp_wrapper_bot {
    width: 65%;
    max-width: 100% !important;
    display: flex;
    flex-direction: column;
    padding: 0 30px;
}

.mp_wrapper_bot_right {
    margin-top: 15px;
    width: 100% !important;
    display: flex;
    flex-direction: column;
}

.mp_wrapper_bot_left {
    display: flex;
    flex-direction: column;
    width: 100% !important;
}

.mp_wrapper_bot_right h4,
.mp_wrapper_bot_left h4 {
    font-size: 1.6em;
    font-weight: 600;
    color: #FFFFFF !important;
}

.mp_dc_item {
    display: flex;
    flex-direction: row;
    margin: 10px 0;
    align-items: center;

}

.mp_dc_item img {
    width: 70px;
    aspect-ratio: 1;
    height: 70px;
    border-radius: 8px;
    cursor: pointer;
}

.mp_dc_item div {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.mp_dc_item div span {
    color: #D3D3D3;
}

.mp_dc_item div span:nth-child(1) {
    font-weight: 600;
    font-size: 1.2em;
    width: 100%;
}

.mp_dc_item div span:nth-child(2) {
    font-size: 1em;
    margin-bottom: -2px;
}

.mp_dc_item div span:nth-child(3) {
    font-size: 0.8em;
}


/***************** Projects Slider ********************/
.mp_sl_wrapper{
    position: relative;
    width: 40%;
    min-width: 40%;
    padding: 0 45px;
    aspect-ratio: 3/1;
    overflow: visible;
    display: flex;
    flex-direction: row;
    margin: 70px 0;
    transition: all 0.4s ease;
}
.mp_sl_card{
    width: calc(100%/3);
    flex: 0 0 33.333%;
    content: "";
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    opacity: 1;
    transform: translateX(0%);
}
.mp_sl_card:nth-child(n+4){
    opacity: 0;
    transform: translateX(-200%);
}
.mp_sl_card img{
    max-width: 200% !important;
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
    transform-origin: center;
    z-index: inherit;
}
.mp_sl_card.active{
    z-index: 40;
}
.mp_sl_card.active > img{
    width: 120%;
    height: auto;
}
@media screen and (max-width: 1530px) {
    .mp_text_msg {
        width: 80%;
    }

    .mp_input {
        width: 80%;
    }
    .mp_ab_profile::after {
        width: 100% !important;
        top: 10px;
        right: -10px;
    }

    .mp_ab_profile {
        width: fit-content;
        padding: 0;
        height: fit-content ;
    }

    .mp_profile_img {
        width: 200px !important;
    }
}
@media screen and (max-width: 1279px) {
    .mp_tracker .mp_tracker_detail{
        width: 95%;
    }
}
@media screen and (max-width: 1258px) {
    
    .mp_section {
        min-height: 700px;
    }

    .mp_container {
        padding: 0 10px !important;
    }

    .mp_text_msg {
        width: 90%;
    }

    .mp_input {
        width: 90%;
    }

    .mp_main_right {}

    .mp_main_left {
        padding-left: 0;
    }

    .mp_sidebar {
        width: 350px;
        height: 70px;
        flex-direction: row;
        bottom: 0;
        left: 50%;
        top: unset;
        transform: translateX(-50%);
    }

    .mp_sidebar nav {
        width: 350;
        flex-direction: row;
    }

    .mp_sidebar nav .mp_link.active .mp_icon {
        transform: translateY(0px);
    }

    .mp_sidebar nav .mp_link.active .mp_sidebar_text {
        transform: translateY(0px);
        font-size: 13px;
    }

    .mp_sidebar nav a {
        width: 80px;
    }

    .mp_indicator {
        display: none;
    }

    .mp_indicator_row {
        height: 4px;
        width: 80px;
        left: unset;
        bottom: 0;
    }

    .mp_indicator::before {
        display: none;
    }

    .mp_indicator::after {
        display: none;
    }

    .mp_sidebar nav .mp_link:nth-child(1).active~.mp_indicator {
        transform: translateX(calc(80px * 0));
    }

    .mp_sidebar nav .mp_link:nth-child(2).active~.mp_indicator {
        transform: translateX(calc(80px * 1));
    }

    .mp_sidebar nav .mp_link:nth-child(3).active~.mp_indicator {
        transform: translateX(calc(80px * 2));
    }

    .mp_sidebar nav .mp_link:nth-child(4).active~.mp_indicator {
        transform: translateX(calc(80px * 3));
    }

    .mp_sidebar nav .mp_link:nth-child(5).active~.mp_indicator {
        transform: translateX(calc(80px * 4));
    }

    .mp_sidebar nav .mp_link:nth-child(1).active~.mp_indicator_row {
        transform: translateX(calc(80px * 0));
    }

    .mp_sidebar nav .mp_link:nth-child(2).active~.mp_indicator_row {
        transform: translateX(calc(80px * 1));
    }

    .mp_sidebar nav .mp_link:nth-child(3).active~.mp_indicator_row {
        transform: translateX(calc(80px * 2));
    }

    .mp_sidebar nav .mp_link:nth-child(4).active~.mp_indicator_row {
        transform: translateX(calc(80px * 3));
    }

    .mp_sidebar nav .mp_link:nth-child(5).active~.mp_indicator_row {
        transform: translateX(calc(80px * 4));
    }

    /* .sweb_container{
        height: 300px;
    } */

    /* .mp_pj_content {
        background-color: red;
    }
    
    section#resume .mp_container{
        flex-direction: column;
    } */
    
}

@media screen and (max-width:1023px) {
    section#resume .mp_container{
        flex-direction: column;
    }
    .mp_wrapper_top {
        padding: 10px 10px;
        width: 100% !important;
        max-width: 100% !important;
    }

    .mp_points{
        display: none;
    }

    .mp_points_tablet{
        display: block;
    }

    .mp_wrapper_bot {
        padding: 10px 10px;
        margin-top: 20px;
        width: 100%;
    }
    .mp_pj_content {
        flex-direction: column;
        align-items: center;
        overflow: hidden;
    }

    .mp_pj_content:nth-child(even) {
        flex-direction: column;
        align-items: center;
    }

    .sweb_container{
        width: 80%;
        min-width: unset;
    }

    .mp_sl_wrapper{
        width: 60%;
        max-width: 60%;
        padding: 0 40px;
        margin: 100px 0;
        /* height: 300px !important; */
    }

    .mp_ab_title h2 {
        font-size: 80px;
        line-height: 60px;
    }

    .mp_ab_detail {
        font-size: 13px;
    }

    .mp_ab_detail span:nth-child(1) {
        transition: 0.8s;
    }

    .mp_ab_detail span:nth-child(2) {
        font-size: 22px;
    }

    .mp_ab_description {
        font-size: 18px;
    }

    .mp_ab_profile::after {
        width: 100% !important;
        top: 10px;
        right: -10px;
    }

    .mp_ab_profile {
        width: fit-content;
        padding: 0;
        height: fit-content ;
    }

    .mp_profile_img {
        width: 200px !important;
    }

    .mp_ab_item {
        width: 240px;
        height: 220px;
        margin: 20px 40px;
    }

    .mp_ab_item {
        font-weight: 600;
        font-size: 1.1rem;
    }

    .mp_ab_icon {
        font-size: 25px;
    }

    .mp_ab_item span {
        font-size: 14px;
    }
}

@media screen and (max-width:756px) {
    .mp_main_left {
        width: 100%;
    }

    .mp_main_right {
        padding: 20px 0;
        width: 100%;
    }

    .mp_contact_wrapper {
        flex-direction: column;
    }

    .mp_text_msg {
        width: 100%;
    }

    .mp_input {
        width: 100%;
    }

    .mp_slider_container {
        border-radius: 8px;
        width: 80%;
        min-width: unset;
        height: unset;
        aspect-ratio: 9/6;
    }

    .mp_pj_description {
        font-size: 14px;
    }

    .mp_title {}

    .mp_chevron {
        font-size: 18px;
    }

    .mp_btn_detail {
        width: 70px;
        font-size: 14px;
        height: 27px;
        border-radius: 4;
    }

    .mp_ab_wrapper {
        flex-direction: column;
    }

    .mp_ab_description {
        text-align: left;
        /* line-height: normal !important; */
    }

    .mp_ab_profile {
        margin-right: unset;
        margin-left: unset;
        margin-bottom: 40px;
    }

    .mp_ab_profile.mp_hidden{
        transform: translateX(0) translateY(-25px);
    }

    .mp_profile_img{
        width: 160px !important;
    }

    .mp_about_name.mp_hidden{
        transform: translateX(-20px) translateY(0);
    }

    .mp_ab_item {
        width: 200px;
        height: 180px;
        margin: 20px 25px;
        border-radius: 15px;
    }

    .mp_ab_item {
        font-weight: 600;
        font-size: 0.9rem;
    }

    .mp_ab_icon {
        font-size: 23px;
    }

    .mp_ab_item span {
        font-size: 12px;
    }

    .mp_footer span {
        font-size: 17px;
    }

    .mp_contact_description {
        font-size: 16px;
    }

    .mp_wrapper_bot {
        /* flex-direction: column-reverse; */
    }

    .mp_wrapper_bot_left {
        width: 100%;
    }

    .mp_wrapper_bot_right {
        width: 100%;
    }

    .mp_sl_wrapper{
        width: 70%;
        max-width: 70%;
        padding: 0 40px;
    }

}

@media screen and (max-width:576px) {
    .mp_wrapper_top{
        margin-bottom: 0;
    }
    .mp_wrapper_bot{
        margin-top: 0 !important;
    }

    .mp_section {
        min-height: 500px;
    }

    .mp_ab_title h2 {
        font-size: 60px;
        line-height: 60px;
    }

    .mp_ab_detail {}

    .mp_ab_detail {
        font-size: 12px;
    }

    .mp_ab_detail span:nth-child(2) {
        font-size: 18px;
    }

    .mp_ab_description {
        font-size: 14px;
    }

    .mp_ab_profile {
        width: fit-content;
        height: fit-content;
    }

    .mp_profile_img {
        width: 140px !important;
    }

    .mp_ab_profile::before {
        width: 330px;
        height: 200px;
    }

    .mp_pj_description {
        font-size: 14px;
    }

    .mp_title {
        font-size: 22px;
    }

    .mp_chevron {
        font-size: 15px;
    }

    .mp_ab_item {
        width: 140px;
        height: 130px;
        margin: 20px 10px;
        border-radius: 10px;
    }

    .mp_ab_item {
        font-weight: 600;
        font-size: 0.8rem;
        justify-content: space-between;
    }

    .mp_ab_icon {
        font-size: 20px;
        margin-bottom: unset;
    }

    .mp_ab_item span {
        font-size: 11px;
        line-height: 14px;
    }

    .mp_footer span {
        font-size: 15px;
    }

    .mp_contact_description {
        font-size: 14px;
        line-height: 17px;
        margin-top: 15px;
    }

    .mp_contact_icon {
        width: 35px;
        height: 35px;
        font-size: 17px;
    }

    .mp_contact_icon:hover {
        transform: translateY(-4px);
    }

    .mp_main_left h4 {
        font-size: 19px;
    }

    .mp_main_left h4 {
        margin: 15px 0 10px;
        font-size: 1.1em;
    }

    .mp_text_msg {
        font-size: 1.1em;
    }

    .mp_input {}

    .mp_input input {
        border: 1px solid rgba(0, 0, 0, 1);
        border-radius: 4px;
    }

    .mp_input textarea {
        border: 1px solid rgba(0, 0, 0, 1);
        border-radius: 4px;
        height: 160px;
    }

    .mp_submit_btn {
        width: 100px;
        height: 36px;
        border-radius: 4px;
        font-size: 15px;
    }

    .mp_contact_description {
        text-align: justify;
    }

    .mp_contact_info div:nth-child(1) {
        font-size: 1.2em;
        height: 38px;
        width: 38px;
    }

    .mp_contact_info div:nth-child(2) span {
        font-size: 15px;
    }

    .mp_section {
        padding: 10px 0 !important;
    }

    .mp_dc_item img {
        width: 50px;
        height: 50px;
    }

    .mp_dc_item div span:nth-child(1) {
        font-size: 1em;
    }

    .mp_dc_item div span:nth-child(2) {
        font-size: 0.8em;
    }

    .mp_dc_item div span:nth-child(3) {
        font-size: 0.7em;
    }

    .mp_wrapper_top {
        padding: 10px 0px;
    }

    .mp_wrapper_bot {
        padding: 10px 0px;
        margin-top: 40px;
    }

    .mp_dc_title {
        font-size: 18px;
        margin-top: 15px;
    }

    .mp_main {
        flex-wrap: wrap;
    }

    .mp_dc_unit h5 {
        font-size: 18px;
        margin-top: 15px;
    }

    .mp_dc_unit {
        width: 50%;
    }

    .mp_dc_unit_last {
        width: 100%;
        flex-direction: row;
    }

    .mp_dc_unit_last div {
        display: flex;
        width: 50%;
    }

    .mp_dc_unit_last div .mp_text {
        width: 90%;
    }

    .mp_text {
        font-size: 15px;
        margin: 1px 0 1px 4px;
    }
    .mp_about_name{
        font-size: 25px;
    }
    .mp_about_name::before{
        bottom: 2px;
        height: 5px;
    }
    .mp_about_name h1{
        font-size: 25px;
    }

    .mp_ab_role{
        font-size: 40px !important;
        line-height: 45px !important;
        height: 50px;
    }

    .mp_ab_role::before{
        width: 16px;
        height: 16px;
    }

    .mp_sl_wrapper{
        width: 80%;
        max-width: 80%;
        padding: 0 40px;
    }
}

@media screen and(max-width:454px) {
    .mp_sidebar {
        width: 100% !important;
        height: 60px;
    }

    .mp_sidebar nav {
        width: 100% !important;
        flex-direction: row;
    }

    .mp_sl_wrapper{
        width: 90%;
        max-width: 90%;
        padding: 0 40px;
    }
}

/* Loader */
.dot-spinner {
    --uib-size: 2.8rem;
    --uib-speed: .9s;
    --uib-color: #ffffff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: var(--uib-size);
    width: var(--uib-size);
}

.dot-spinner__dot {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
}

.dot-spinner__dot::before {
    content: '';
    height: 20%;
    width: 20%;
    border-radius: 50%;
    background-color: var(--uib-color);
    transform: scale(0);
    opacity: 0.5;
    animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.dot-spinner__dot:nth-child(2) {
    transform: rotate(45deg);
}

.dot-spinner__dot:nth-child(2)::before {
    animation-delay: calc(var(--uib-speed) * -0.875);
}

.dot-spinner__dot:nth-child(3) {
    transform: rotate(90deg);
}

.dot-spinner__dot:nth-child(3)::before {
    animation-delay: calc(var(--uib-speed) * -0.75);
}

.dot-spinner__dot:nth-child(4) {
    transform: rotate(135deg);
}

.dot-spinner__dot:nth-child(4)::before {
    animation-delay: calc(var(--uib-speed) * -0.625);
}

.dot-spinner__dot:nth-child(5) {
    transform: rotate(180deg);
}

.dot-spinner__dot:nth-child(5)::before {
    animation-delay: calc(var(--uib-speed) * -0.5);
}

.dot-spinner__dot:nth-child(6) {
    transform: rotate(225deg);
}

.dot-spinner__dot:nth-child(6)::before {
    animation-delay: calc(var(--uib-speed) * -0.375);
}

.dot-spinner__dot:nth-child(7) {
    transform: rotate(270deg);
}

.dot-spinner__dot:nth-child(7)::before {
    animation-delay: calc(var(--uib-speed) * -0.25);
}

.dot-spinner__dot:nth-child(8) {
    transform: rotate(315deg);
}

.dot-spinner__dot:nth-child(8)::before {
    animation-delay: calc(var(--uib-speed) * -0.125);
}

.dot-spinner-container {
    position: fixed;
    display: flex;
    background: rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 100%;
    margin: 0px;
    top: 0;
    z-index: 100;
}

/*================ MODAL ================*/
.modal_container {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.modal_wrapper {
    background: rgba(0, 0, 0, 0.15);
    z-index: 100;
}

.modal_icon {
    font-size: 45px;
}

.modal_icon.icon_success {
    animation: bounce 1s infinite;
}

.modal_icon.icon_error {
    animation: bounce 1s infinite;
}

.icon_error {
    color: #800000;
}

.icon_success {
    color: #006400;
}

.btn_close {
    transition: all 0.4s;
    background: #2946CC;
    color: #F0F0F0;
    height: 28px;
    width: 70px;
    border-radius: 4px;
}

.btn_close:active {
    transform: scale(0.96);
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-7px);
    }
}

@keyframes pulse0112 {

    0%,
    100% {
        transform: scale(0);
        opacity: 0.5;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }
}

.mp_show {
    opacity: 1;
    transform: translateX(0px) translateX(0px);
}

#loader, #modal{
    display: none;
}