* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    
}

body {
    background-color: #202135;
}

header {
    width: 100%;
    display: grid;
    place-items: center;
    /* margin-top: 100px; */
    gap: 2rem;
}

nav {
    width: 100%;
    color: #a7a9bc;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 55px;
    top: 0;
    z-index: 99;

    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 25%);
}

nav .nav-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    /* margin-right: 322px; */
}

.nav-left .logo {
    max-height: 100%;
    margin-right: 10px;
}

.nav-left .logo a {
    text-decoration: none;
    color: #a7a9bc;
}

.nav-left .logo img {
    height: 55px;
}

.nav-right {
    height: 100%;
    margin-right: 44px;
}

.nav-right ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    padding-top: 1.5px;
    height: 100%;
}

.nav-right .mobile-buttons {
    display: none;
}

.nav-right ul li {
    margin-right: 25px;
    height: 100%;
    display: flex;
    align-items: center;
    /* opacity: .65; */
    position: relative;
}

.nav-right ul li:hover {
    cursor: pointer;
}

.nav-right ul li a {
    text-decoration: none;
    color: #a7a9bc;
}

.nav-right ul li span {
    font-weight: bold;
}

.raised-button {
    padding: 6px;
    border-radius: 6px;
    background: #202135;
    box-shadow: inset 0 0 0 transparent, inset 0 0 0 transparent,  2px 2px 4px #0d0d15, -2px -2px 4px #333555;

    transition: box-shadow 0.25s;

    display: flex;
    gap: 5px;
}


.raised-button:hover {
box-shadow: inset 5px 5px 10px #0d0d15, inset -5px -5px 10px #333555;

}

header .info {
    margin-top: 2rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    border-radius: 40px;
    background: linear-gradient(145deg, #222339, #1d1e30);
    /* box-shadow:  24px 24px 3px #191a2a, -24px -24px 3px #272840; */
    /* box-shadow:  16px 16px 3px #191a2a, -14px -14px 3px #202135;  */
    box-shadow: inset 0 0 0 transparent, inset 0 0 0 transparent,  8px 8px 12px #0d0d15, -2px -2px 12px #333555;
}

header .name {
    font-weight: 700;
    font-size: 48px;
    color: white;
}

header .description {
    font-size: 38px;
    color: #a7a9bc;
    display: grid;
    place-items: center;

}

header .social ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 16px;
}

header .social ul li:hover {
    animation: popout;
    animation-duration: .25s;
    animation-timing-function: ease-in;
}

header .social ul li .social-icon-container {
    width: 48px;
    height: 48px;
    padding: 8px;
    border-radius: 12px;
    box-shadow: inset 3px 3px 6px #0d0d15, inset -3px -3px 6px #333555;
    transition: box-shadow .25s;
    transition-timing-function: ease-out;
}

header .social ul li .social-icon-container:hover {
    box-shadow: inset 0 0 0 transparent, inset 0 0 0 transparent,  1px 1px 2px #0d0d15, -1px -1px 2px #333555;
}

@keyframes popout {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.10);
    }

    100% {
        transform: scale(1);
    }
}

header .social ul li svg {
    color: #a7a9bc;
}
section {
    margin-top: 2rem;
    margin-bottom: 8rem;
}

.container {
    display: grid;
    place-items: center;
}

.section-heading {
    width: 100%;
    color: white;
    display: flex;
    justify-content: center;
}

.section-heading h1 {
    font-weight: 700;
    font-size: 48px;
}

.heading {
    position: relative;
}

.heading:before {
    content: "";
    position: absolute;
    width: 60%;
    height: 3px;
    left: 20%;
    bottom: -.1em;
    background-color: #f300b4d1;

}

.container {
    box-sizing: border-box;
    width: 100%;
    padding: 0 10%;
}

.aboutme * {
    box-sizing: border-box;
}

.blog-slider {
    width: 95%;
    position: relative;
    max-width: 800px;
    margin-top: 2rem;
    /* background: #fff; */
    /* box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2); */
    box-shadow: 6px 6px 12px #0d0d15,-6px -6px 12px #333555!important;
    padding: 25px;
    border-radius: 25px;
    height: 400px;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    box-sizing: content-box;
}

.blog-slider__item {
    display: flex;
    align-items: center;
}

.blog-slider__img {
    width: 300px;
    flex-shrink: 0;
    height: 300px;
    box-shadow: 2px 2px 5px #0d0d15,-3px -3px 7px #333555!important;
    border-radius: 20px;
    transform: translateX(-80px);
    overflow: hidden;
}

.blog-slider__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.blog-slider__content {
    padding-right: 25px;
}

.blog-slider__text {
    color: #a7a9bc;
    margin-bottom: 30px;
    line-height: 2em;
    letter-spacing: 3px;
    font-size: 1rem;
    font-weight: 600;
}

.blog-slider__pagination {
    position: absolute;
    z-index: 21;
    right: 20px;
    width: 11px !important;
    text-align: center;
    left: auto !important;
    top: 50%;
    bottom: auto !important;
    transform: translateY(-50%);
}

.blog-slider__pagination .swiper-pagination-bullet {
    margin: 8px 0;
}

.blog-slider__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #f300b4d1;
    height: 30px;
    box-shadow: 10px 10px 14px 0 rgb(0 0 0 / 25%), -6px -6px 10px 0 #23243a;
}

.blog-slider__pagination .swiper-pagination-bullet {
    width: 11px;
    display: block;
    border-radius: 10px;
}

.projects-container {
    box-sizing: border-box;
    padding: 1rem;
    width: 100%;
    /* display: flex;
    /* flex-flow: row wrap; */
    /* justify-content: space-evenly; */
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 1700px;
}

.project {
    margin-top: 1rem;
    box-sizing: border-box;
    color: white;
    /* border-radius: .6rem; */
    padding: 15px;
    width: 45%;
    /* background-color: #48485f; */
    display: flex;
    flex-direction: column;
    place-items: center;
    border-radius: 50px;
    /* background: linear-gradient(315deg, #1d1e30, #222339);
    box-shadow:  -5px -5px 10px #141420,
                 5px 5px 10px #2c2e4a; */
    border-radius: 50px;
    background: #202135;
    /* box-shadow: inset -5px -5px 5px #1c1c2e,
                             inset 5px 5px 5px #24263c; */
    box-shadow: 10px 10px 14px 0 rgba(0, 0, 0, 0.25),
                             -6px -6px 10px 0 #23243a;
                             /* 202135 */
    border-radius: 50px;
    /* box-shadow: 
                             12px 12px 16px 0 rgba(0, 0, 0, 0.25),
                             -8px -8px 12px 0 #24263c;
                           border-radius: 50px; */
    /* box-shadow: 
                             12px 12px 16px 0 rgba(0, 0, 0, 0.25),
                             -8px -8px 12px 0 #424258;
                           border-radius: 50px; */
}


.project img {
    border-radius: .6rem;
    width: 90%;
    margin-bottom: 10px;
}

.project .project-description {
}

.read-more-state {
    display: none;
}

.read-more-target {
    opacity: 0;
    max-height: 0;
    font-size: 0;
    transition: .25s ease;
    z-index: 1;
}

.read-more-state:checked ~ .read-more-wrap .read-more-target {
    opacity: 1;
    font-size: inherit;
    max-height: 999em;
    display: block;
}

.read-more-state ~ .read-more-trigger:before {
    content: 'Show more';
}
  
.read-more-state:checked ~ .read-more-trigger:before {
    content: 'Show less';
}

.read-more-trigger {
    cursor: pointer;
    padding: 0 .5em;
    color: #a7a9bc;
    line-height: 2;
    border-radius: .25em;
    z-index: 2;
    align-self: flex-end;
    /* margin-bottom: 10px; */
    box-shadow: inset 0 0 0 transparent, inset 0 0 0 transparent;
    transition: box-shadow 0.1s;
    transition-timing-function: ease;
}

.read-more-trigger:hover {
    box-shadow: inset 3px 3px 6px #0d0d15, inset -3px -3px 6px #333555;
}

.project .project-description p {
    padding: 0 1rem 0 1rem;
    letter-spacing: 3px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 2;
    color: #a7a9bc;
    /* padding: 0; */
}

.project .project-description p:first-of-type {
    margin-top: 1rem;
}

.project .buttons {
    display: flex;
    gap: 8px;
    z-index: 2;
    margin-top: 10px;
}

.project .buttons a {
    text-decoration: none;
    color: white;
}

.project .icon {
    width: 24px;
    height: 24px;
}


.material-icons.md-24 {
    font-size: 24px;
}

