/* ------------------------------------------------------------
1. Fonts
2. General Styles
3. Page loadig animation
4. Header
5. Page Content
6. Elements
7. Single Page (Blog Posts, 404 etc.)
8. Media Queries
9. Pricing
10. Full Width Styles
11. Updates
------------------------------------------------------------ */

/* ------------------------------------------------------------
1. Fonts
------------------------------------------------------------ */
/* Google fonts */
@import url('https://fonts.googleapis.com/css?family=Poppins:200,200i,300,300i,400,400i,500,500i,600,600i,700,700i');

/* Linear Icons Font */
@import url('fonts/linear-icons-font/style.css');

/* FontAwesome Free Icons Font */
@import url('fonts/fontawesome-free-5.12.1-web/css/all.min.css');


/* ------------------------------------------------------------
2. General Styles
------------------------------------------------------------ */
html {
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
}

body {
  background-color: transparent;
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  font-size: 15px;
  font-family: 'Poppins', Helvetica, sans-serif;
  line-height: 1.65em;
  overflow: hidden;
  color: #d5d5d5;
  background-repeat: no-repeat;
  background-position: center;
  background-position: 50% 50%;
  background-size: cover;
}

h1, h2, h3, h4, h5, h6 {
  color: #eee;
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 600;
}

h1 {
    font-size: 32px;
}
h2 {
    font-size: 27px;
}
h3 {
    font-size: 21px;
}
h4 {
    font-size: 20px;
}
h5 {
    font-size: 16px;
}
h6 {
    font-size: 14px;
}

a {
  color: #0099cc;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

p {
  margin-bottom: 10px;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.page {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 0 100px;
  overflow: hidden;
}

.page-content {
  position: relative;
  width: 100%;
  max-width: 1280px;
  min-height: 80vh;
  margin: 10vh auto;
  padding: 0;
  background-color: #1e193ef7;
  -webkit-box-shadow: 0 0 100px -5px rgba(0,0,0,.25);
  -moz-box-shadow: 0 0 100px -5px rgba(0,0,0,.25);
  box-shadow: 0 0 100px -5px rgba(0,0,0,.25);
  border-radius: 32px;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* buttons */
.btn-primary,
.btn-secondary,
button,
input[type="button"],
input[type="submit"],
.wp-block-button .wp-block-button__link {
  display: inline-block;
  position: relative;
  padding: .8em 2.1em;
  margin-bottom: .75em;
  margin-right: .25em;
  font-size: 1em;
  line-height: 1.2;
  border: 0;
  outline: 0;
  border: 2px solid #04b4e0;
  color: #f5f5f5;
  text-shadow: none;
  background-color: transparent;
  border-radius: 30px;
  font-family: 'Poppins', Helvetica, sans-serif;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 10px -8px rgba(0,0,0,.3);
}

.btn-primary:last-child,
.btn-secondary:last-child,
button:last-child,
input[type="button"]:last-child,
input[type="submit"]:last-child,
.wp-block-button .wp-block-button__link:last-child {
  margin-right: 0;
}

.btn-primary:hover,
.btn-primary:focus,
button:hover,
button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  background-color: #04b4e0;
  color: #fff;
  border: 2px solid #04b4e0;
}

.btn-secondary {
  border-color: #d5d5d5;
  background-color: transparent;
  box-shadow: 0px 10px 10px -8px rgba(0,0,0,.3);
  color: #f5f5f5;
}

.btn-secondary:hover,
.btn-secondary:focus {
  color: #333;
  border-color: #d5d5d5;
  background-color: #d5d5d5;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}




/* ------------------------------------------------------------
4. Header
------------------------------------------------------------ */
@media only screen and (min-width: 1025px) {
  .header {
    display: inline-block;
    float: left;
    width: 100%;
    max-width: 380px;
    height: 100%;
    max-height: 80vh;
    min-height: inherit;
    text-align: center;
    padding: 65px 30px 45px;
    overflow: auto;
  }


  /* --- Navigation --- */
  ul.main-menu {
    position: absolute;
    padding: 15px 0;
    width: 70px;
    right: -90px;
    background-color: #444;
    border-radius: 35px;
    z-index: 1000 !important;
    list-style: none;
    top: 0;
    -webkit-box-shadow: 0 0 30px -5px rgba(0,0,0,.15);
    -moz-box-shadow: 0 0 30px -5px rgba(0,0,0,.15);
    box-shadow: 0 0 30px -5px rgba(0,0,0,.15);
  }

  ul.main-menu a {
    display: block;
    position: relative;
    color: #b5b6b7;
    padding: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  ul.main-menu a.active,
  ul.main-menu a:focus,
  ul.main-menu a:hover {
    color: #63C1E3;
  }

  ul.main-menu .menu-icon {
    display: block;
    font-size: 30px;
  }

  ul.main-menu .link-text {
    position: absolute;
    width: auto;
    visibility: hidden;
    opacity: 0;
    color: #fff;
    padding: 2px 10px;
    background-color: #04b4e0;
    white-space: nowrap;
    right: 0;
    top: -50%;
    margin-top: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 0;
    box-shadow: 0px 10px 10px -8px rgba(0,0,0,.22);
  }

  ul.main-menu a:hover .link-text {
    right: 100%;
    visibility: visible;
    opacity: 1;
  }
  /* --- End Navigation --- */
}

/* --- LMPixels Arrow Nav --- */
.lmpixels-arrows-nav {
  position: absolute;
  padding: 10px 0;
  width: 60px;
  right: -80px;
  background-color: #1e193ef7 !important;
  border-radius: 35px;
  z-index: 99999 !important;
  list-style: none;
  bottom: 0;
  -webkit-box-shadow: 0 0 30px -5px rgba(0,0,0,.15);
  -moz-box-shadow: 0 0 30px -5px rgba(0,0,0,.15);
  box-shadow: 0 0 30px -5px rgba(0,0,0,.15);
}

.lmpixels-arrows-nav div {
  display: block;
  position: relative;
  text-align: center;
  color: #b5b6b7;
  padding: 10px;
  font-size: 24px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.lmpixels-arrows-nav div:hover {
  color: #04b4e0;
}
/* --- End LMPixels Arrow Nav --- */

.header-photo {
  position: relative;
  width: 180px;
  margin: 0 auto 30px;
  z-index: 1;
}

.header-photo img {
  max-width: 100%;
  background-color: #fff;
  border: 3px solid #fff;
  border-radius: 300px;
}

.header-photo:after {
  position: absolute;
  opacity: 0.3;
  top: 7%;
  left: 7%;
  border-radius: 300px;
  content: '';
  height: calc(100% + 0px);
  width: calc(100% + 0px);
  background-image: -webkit-repeating-radial-gradient(center center, #fff, #fff 1px, transparent 0px, transparent 100%);
  background-image: -moz-repeating-radial-gradient(center center, #fff, #fff 1px, transparent 0px, transparent 100%);
  background-image: -ms-repeating-radial-gradient(center center, #fff, #fff 1px, transparent 0px, transparent 100%);
  -webkit-background-size: 6px 6px;
  -moz-background-size: 6px 6px;
  background-size: 6px 6px;
  z-index: -1;
}

.header-titles h2 {
  font-size: 25px;
  font-weight: 600;
  color: #f5f5f5;
  margin: 5px 0 7px;
  line-height: 1.2em;
} 

.header-titles h4 {
  font-size: 18px;
  font-weight: 300;
  color: #bbb;
  margin: 5px 0;
  line-height: 1.2em;
}

/* --- Social Links --- */
.social-links {
  margin: 20px 0;
}

.social-links ul {
  list-style: none;
  padding: 0;
}

.social-links ul li {
  display: inline-block;
}

.social-links ul li a {
  color: #fff;
  border-radius: 20px;
  font-size: 18px;
  padding: 0;
  height: 30px;
  width: 30px;
  display: block;
  line-height: 30px;
  text-align: center;
  opacity: .9;
}

.social-links ul li a:hover {
  opacity: 1;
  background-color: rgba(255,255,255,.2);
}
/* --- End Social Links --- */

.header-buttons {
  margin-top: 50px;
}

.header-buttons .btn-primary {
  background-color: transparent;
  color: #f5f5f5;
  border-color: #f5f5f5;
}

.header-buttons .btn-primary:hover {
  background-color: #fff;
  color: #04b4e0;
  border-color: #fff;
}

.header .copyrights {
  color: #bbb;
  width: 380px;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 5px 10px 15px;
  line-height: 14px;
  font-size: 12px;
  text-align: center;
}

/* ------------------------------------------------------------
5. Page Content
------------------------------------------------------------ */
.content-area {
  position: absolute;
  right: 0;
  background-color: transparent;
  height: 100%;
  width: 100%;
  max-width: calc(100% - 380px);
}

.animated-section.animated-sections {
  position: relative;
  height: 100%;
  -webkit-perspective: 1500px;
  -moz-perspective: 1500px;
  perspective: 1500px;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.animated-section {
  position: absolute;
  background: url(../img/main_bg.jpg);
  height: 100%;
  width: 100%;
  border-radius: 30px;
  padding: 60px;
  opacity: 0;
  overflow: auto;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  background-repeat: no-repeat;
  background-position: center;
  background-position: 50% 50%;
  background-size: cover;
}

.single-page-content {
  position: absolute;
  background-color: #222;
  height: 100%;
  width: 100%;
  border-radius: 30px;
  padding: 60px;
  overflow: auto;
}

.section-active,
.no-js .animated-section {
  opacity: 1;
  overflow: auto;
  visibility: visible;
  z-index: 99;
}

/* --- Custom ScrollBar Customization --- */
.ps>.ps__scrollbar-y-rail {
  margin-right: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: 20px;
}

.ps>.ps__scrollbar-y-rail>.ps__scrollbar-y {
  background-color: #b5b6b7;
}

.ps:hover>.ps__scrollbar-y-rail:hover {
  background-color: #444;
}

.ps:hover>.ps__scrollbar-y-rail:hover>.ps__scrollbar-y {
    background-color: #04b4e0;
}

.ps>.ps__scrollbar-y-rail {
  width: 12px;
}

.ps>.ps__scrollbar-y-rail:hover>.ps__scrollbar-y, .ps>.ps__scrollbar-y-rail:active>.ps__scrollbar-y,
.ps:hover.ps--in-scrolling.ps--y>.ps__scrollbar-y-rail>.ps__scrollbar-y,
.ps.ps--in-scrolling.ps--y>.ps__scrollbar-y-rail>.ps__scrollbar-y {
    width: 8px;
}

.ps:hover.ps--in-scrolling.ps--y>.ps__scrollbar-y-rail {
  background-color: #555;
}

.ps:hover.ps--in-scrolling.ps--y>.ps__scrollbar-y-rail>.ps__scrollbar-y {
  background-color: #04b4e0;
}
/* --- End Custom ScrollBar Customization --- */

.page-title {
  display: inline-block;
  position: relative;
  padding-right: 25px;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.page-title h2 {
  position: relative;
  font-size: 32px;
  z-index: 1;
}

.page-title h2 span {
  color: #04b4e0;
}

.page-title:after {
  position: absolute;
  opacity: 0.45;
  top: 10px;
  right: 0;
  content: '';
  height: 30px;
  width: 50px;
  background-image: -webkit-repeating-radial-gradient(center center, #04b4e0, #04b4e0 1px, transparent 0px, transparent 100%);
  background-image: -moz-repeating-radial-gradient(center center, #04b4e0, #04b4e0 1px, transparent 0px, transparent 100%);
  background-image: -ms-repeating-radial-gradient(center center, #04b4e0, #04b4e0 1px, transparent 0px, transparent 100%);
  -webkit-background-size: 6px 6px;
  -moz-background-size: 6px 6px;
  background-size: 6px 6px;
  z-index: 0;
}



/* ------------------------------------------------------------
6. Elements
------------------------------------------------------------ */
.block-title {
  display: inline-block;
  position: relative;
  padding-right: 12px;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.block-title h3 {
  position: relative;
  font-size: 32px;
  z-index: 1;
}

.block-title h3 span {
  color: #04b4e0;
}

.block-title:after {
  position: absolute;
  opacity: 0.45;
  top: 10px;
  right: 0;
  content: '';
  height: 20px;
  width: 30px;
  background-image: -webkit-repeating-radial-gradient(center center, #04b4e0, #04b4e0 1px, transparent 0px, transparent 100%);
  background-image: -moz-repeating-radial-gradient(center center, #04b4e0, #04b4e0 1px, transparent 0px, transparent 100%);
  background-image: -ms-repeating-radial-gradient(center center, #04b4e0, #04b4e0 1px, transparent 0px, transparent 100%);
  -webkit-background-size: 6px 6px;
  -moz-background-size: 6px 6px;
  background-size: 6px 6px;
  z-index: 0;
}

/* --- White Spaces --- */
.white-space-10 {
  padding-bottom: 10px; 
}

.white-space-20 {
  padding-bottom: 20px; 
}

.white-space-30 {
  padding-bottom: 30px; 
}

.white-space-40 {
  padding-bottom: 40px; 
}

.white-space-50 {
  padding-bottom: 50px; 
}

.white-space-60 {
  padding-bottom: 60px; 
}

.white-space-70 {
  padding-bottom: 70px; 
}
/* --- End White Spaces --- */

/* --- Simple Info List --- */
.info-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list ul li {
  margin-bottom: 10px;
}

.info-list .title {
  color: #04b4e0;
  margin-right: 5px;
  font-weight: 600;
}
/* --- End Simple Info List --- */

/* --- Info block with Icon --- */
.info-block-w-icon {
  margin-bottom: 25px;
}

.info-block-w-icon .ci-text h4 {
  margin: 5px 0;
}

.info-block-w-icon .ci-text p {
    font-size: 1.1em;
}

.info-block-w-icon .ci-icon {
  display: table-cell;
  width: 54px;
  padding-right: 25px;
}

.info-block-w-icon i {
  position: relative;
  font-size: 42px;
  color: #04b4e0;
  opacity: .7;
}
/* --- End Info block with Icon --- */

/* --- Info Block with Borders --- */
.lm-info-block {
  position: relative;
  text-align: center;
  width: 100%;
  display: block;
  margin: 0 0 15px 0;
  background-color: #333;
  padding: 20px 10px;
  border: 1px solid #444;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.lm-info-block i {
  position: relative;
  font-size: 33px;
  color: #04b4e0;
  z-index: 1;
}

.lm-info-block h4 {
  font-size: 15px;
  margin-top: 8px;
}

.lm-info-block .lm-info-block-value {
  font-size: 30px;
  line-height: 30px;
  font-weight: 400;
  display: block;
  margin: 10px 0;
  color: #04b4e0;
}


.lm-info-block .lm-info-block-value:empty {
  margin: 0;
}
/* --- End of Info Block with Borders --- */


/* --- Testimonials --- */
.testimonial {
  text-align: center;
  border: 2px solid #adadad;
  border-radius: 20px;
  margin: 45px 2px 10px;
  padding: 0 25px 15px 25px;
}

.testimonial img {
  max-width: 75px;
  max-height: 95px;
  margin: -45px auto 20px;
  border-radius: 90px;
  box-shadow: 0px 10px 10px -8px rgba(0,0,0,.22);
}

.testimonial .text {
  text-align: left;
  font-style: italic;
}

.testimonial .author-info {
  position: relative;
  text-align: left;
  margin-top: 20px;
}

.testimonial .author-info .icon {
  content: '';
  position: absolute;
  font-size: 30px;
  right: 0;
  top: 7px;
  color: #04b4e0;
  opacity: .5;
}

.testimonial .author-info .author {
  margin: 0;
  font-size: 15px;
}

.testimonial .author-info .company {
  color: #a5a6a7;
  font-size: 13px;
  font-weight: 300;
  margin: 0;
}
/* --- End of Testimonials --- */

/* --- Clients --- */
.clients.owl-carousel .client-block {
  padding: 15px;
  margin-bottom: 15px;
}

.client-block {
  text-align: center;
  padding: 5px 0;
  margin-bottom: 30px;
  opacity: .7;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
/* --- End of Clients --- */

/* --- Sliders Nav --- */
.testimonials.owl-carousel .owl-nav,
.clients.owl-carousel .owl-nav {
  position: absolute;
  text-align: right;
  right: 0;
  top: -52px;
}

.testimonials.owl-carousel .owl-nav .owl-prev,
.testimonials.owl-carousel .owl-nav .owl-next,
.clients.owl-carousel .owl-nav .owl-prev,
.clients.owl-carousel .owl-nav .owl-next {
  position: relative;
  display: inline-block;
  /* background-color: #444; */
  border: 1px solid #1e193e;
  border-radius: 5px;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  font-family: "Font Awesome 5 Free";
  font-size: 11px;
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  color: #d5d5d5;
}

.testimonials.owl-carousel .owl-nav .owl-prev,
.clients.owl-carousel .owl-nav .owl-prev {
    margin-right: 3px;
}

.testimonials.owl-carousel .owl-nav .owl-prev:before,
.testimonials.owl-carousel .owl-nav .owl-next:before,
.clients.owl-carousel .owl-nav .owl-prev:before,
.clients.owl-carousel .owl-nav .owl-next:before {
  position: relative;
  margin: 2px;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  display: block;
  cursor: pointer;
  color: inherit;
  z-index: 1;
}

.testimonials.owl-carousel .owl-nav .owl-prev:before,
.clients.owl-carousel .owl-nav .owl-prev:before {
    content: "\f053";
}

.testimonials.owl-carousel .owl-nav .owl-next:before,
.clients.owl-carousel .owl-nav .owl-next:before {
    content: "\f054";
}

.testimonials.owl-carousel .owl-nav .owl-prev:hover,
.testimonials.owl-carousel .owl-nav .owl-next:hover,
.clients.owl-carousel .owl-nav .owl-prev:hover,
.clients.owl-carousel .owl-nav .owl-next:hover {
    background-color: #1e193e;
    border-color: #1e193e;
    color: #fff;
}
/* --- End of Sliders Nav --- */


/* --- Timeline (Education & Experience) --- */
.timeline-second-style .timeline-item {
  position: relative;
  display: table;
  table-layout: fixed;
  width: 100%;
  padding-bottom: 15px;
}

.timeline-second-style .timeline-item:last-child {
  padding-bottom: 0;
}


.timeline-second-style .left-part {
  width: 30%;
  display: table-cell;
  padding-right: 25px;
  min-height: 100%;
  text-align: right;
  vertical-align: top;
}

.timeline-second-style .right-part {
  width: 70%;
  display: table-cell;
  padding-left: 25px;
  padding-right: 15px;
  vertical-align: top;
}

.timeline-second-style .right-part p,
.timeline-second-style .right-part p > * {
  font-size: 0.99em;
  color: #fff;
}

.timeline-second-style .divider {
  position: absolute;
  top: 0;
  left: 30%;
  bottom: 0;
  width: 1px;
  background-color: #444;
}

.timeline-second-style .divider:before {
  content: '';
  display: block;
  position: absolute;
  margin-top: 4px;
  width: 17px;
  height: 17px;
  position: absolute;
  margin-left: -8px;
  border-radius: 10px;
  background-color: #04b4e0;
  opacity: .25;
  z-index: 0;
}

.timeline-second-style .divider:after {
  content: '';
  display: block;
  position: absolute;
  margin-top: 8px;
  width: 9px;
  height: 9px;
  margin-left: -4px;
  background-color: #222;
  border-radius: 5px;
  border: 2px solid #04b4e0;
  z-index: 1;
}

.timeline-second-style .item-title {
  font-size: 18px;
    margin-bottom: 3px;
    color: #fff;
}

.timeline-second-style .item-period {
  color: #fff;
  margin: 3px 0;
  font-size: 19px;
  line-height: 1.4em;
  font-weight: 600;
}

.timeline-second-style .item-company {
  display: block;
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.45em;
  color: #ffffff; 
  font-weight: 600;
}

.timeline-second-style .timeline-item:last-child .right-part {
  padding-bottom: 0;
}

.timeline-second-style .item-logo {
  display: block;
  margin-bottom: 10px;
}

.timeline-second-style .item-logo img {
  max-height: 40px;
}
/* --- End Timeline (Education & Experience) --- */

/* --- Knowledges --- */
.knowledges {
  list-style: none;
}

.knowledges li {
  border: 3px solid #fff;
  display: inline-block;
  background-color: #04b4e045;
  border-radius: 27px;
  color: #fff;
  padding: 9px 10px;
  margin: 3px 2px;
  font-size: 15px;
  font-weight: 600;
}
/* --- End of Knowledges --- */



.map {
  width: 100%;
  height: 140px;
  margin: 0 0 35px;
}

/* Flamez's Styling */
#Aboutme {
  background-color: rgba(0, 0, 0, 0.2) !important;
  backdrop-filter: blur(5px);
  padding: 44px;
  border-radius: 15px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  #Aboutme { 
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
    border-radius: 0;
    overflow-y: auto;
  }
}

#whoiam {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 33px;
  border-radius: 25px;
  font-size: 20px;
  cursor: pointer;
  font-weight: 700;
}

#whoiam:hover {
  background: #6633991a;
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.45);
}

@media (max-width: 1024px) {
  #whoiam {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #whoiam .content p:first-child {
    margin-bottom: 0;
  }

  #whoiam .content p:not(:first-child) {
    display: none;
  }

  #whoiam #more-text {
    display: none;
  }

  #whoiam #more-text.show {
    display: block;
  }

  #whoiam #toggle-button {
    margin-top: 20px;
    align-self: center;
  }
}

#more-text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

#more-text.show {
  max-height: 1000px; /* Adjust this value based on your content */
  transition: max-height 0.5s ease-in;
}

.content p {
  margin-bottom: 1rem;
}

#toggle-button {
  margin-left: 42%;
    margin-top: 10px;
    cursor: pointer;
    background-color: #007bff; /* Bootstrap primary color */
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 16px;
}

#toggle-button:hover {
    background-color: #0056b3; /* Darker shade for hover effect */
}
#exp {
  margin-top: 9px;
}
#exp .exp-sub {
  font-weight: 500;
}
#exp .exp-sub span {
  border-radius: 10px;
  padding: 1px;
  padding-left: 13px;
  padding-right: 13px;
  background-color: #fff;
  color: #1e193ef7;
}
.love-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

#ilove {
  font-family: system-ui;
  background: #04b4e0;
  border-radius: 53px;
  padding: 5px 23px;
  font-size: 2em;
  margin-bottom: 27px;
  display: inline-block;
}

.container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.container .glass {
  position: relative;
  width: 200px;
  height: 240px;
  background: radial-gradient(#04b4e048, transparent);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 25px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  border-radius: 10px;
  transform: rotate(calc(var(--r) * 1deg));
}

.container:hover .glass {
  transform: rotate(0deg);
}

.container .glass::before {
  content: attr(data-text);
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.container .glass i {
  font-size: 4em;
  color: #fff;
}

@media (max-width: 1024px) {
  .love-section {
    justify-content: center;
  }

  .container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .container {
    grid-template-columns: 1fr;
  }
}



/* End of Flamez's Styling */


/* ------------------------------------------------------------
8. Media Queries
------------------------------------------------------------ */
@media only screen and (max-width: 1280px) {
 .page {
    padding-left: 30px;
 }

 .header {
    max-width: 330px;
  }

  .content-area {
    max-width: calc(100% - 330px);
  }
}

@media only screen and (min-width: 1025px) {
  .menu-toggle {
    display: none;
  }
}

@media only screen and (max-width: 1024px) {
  .header {
    position: absolute;
    width: 100%;
    max-width: 330px;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: #1e193ef7;
    box-shadow: 0 0 100px -5px rgba(0, 0, 0, .25);
    z-index: 9999 !important;
    padding: 30px 30px 10px 30px;
    text-align: center;
    opacity: 1;
    visibility: visible;
    overflow: auto;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
  }

  .header .copyrights {
    right: 0;
    width: 100%;
    position: relative;
    margin-top: 30px;
  }

  .page {
    padding: 0;
  }

  .page-content {
    padding: 0;
    margin: 0;
    border-radius: 0;
    min-height: 100%;
  }

  .content-area {
    max-width: 100%;
  }

  .animated-section,
  .single-page-content {
    border-radius: 0;
    overflow: auto !important;
    background: url(../img/main_bgg.jpg);
    background-size: cover;
    background-position: 50% 50%;
  }

  .header-titles h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .header-titles h4 {
    font-size: 17px;
  }

  .header-photo {
    max-width: 130px;
    margin-bottom: 25px;
  }

  .mobile-menu-hide {
    width: 0;
    right: 0;
    margin-right: -100%;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }

  ul.main-menu {
    margin: 30px 0;
  }

  ul.main-menu a {
    display: block;
    color: #fff;
    padding: 12px 0;
    line-height: 21px;
    opacity: .7;
  }

  ul.main-menu a.active {
    opacity: 1;
  }

  ul.main-menu .menu-icon {
    display: none;
  }

  ul.main-menu .link-text {
    font-size: 16px;
    line-height: 21px;
  }

  .menu-toggle {
    position: absolute;
    display: block;
    width: 48px;
    height: 48px;
    line-height: 46px;
    text-align: center;
    background-color: #1e193e;
    right: 10px;
    font-size: 19px;
    top: 10px;
    border-radius: 30px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 99999 !important;
  }

  .menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 50%;
    background: #fff;
    border-radius: 5px;
    opacity: 1;
    left: 25%;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }

  .menu-toggle span:nth-child(1) {
    top: 16px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }

  .menu-toggle span:nth-child(2) {
    top: 22px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }

  .menu-toggle span:nth-child(3) {
    top: 28px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }

  .menu-toggle.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 13px;
    left: 15px;
  }

  .menu-toggle.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 30px;
    left: 15px;
  }

  .lmpixels-arrows-nav {
    background-color: rgba(0,0,0,.6);
    width: 48px;
    right: 10px;
    bottom: 10px;
    padding: 5px 0;
    border: 0.03px solid #ffffff;
  }

  .lmpixels-arrows-nav div {
    font-size: 24px;
  }

  .single-page-content .post-content {
    position: relative;
    margin-left: 20px;
    margin-right: 20px;
  }
}



@media only screen and (max-width: 768px) {

  .knowledges li {
    padding: 3px 7px;
  }

}


@media only screen and (max-width: 480px) {
  .section-title-block.first-style .section-description {
    margin: 7px 0 0;
    width: 100%;
  }


  .timeline-second-style .timeline-item {
    position: relative;
    display: block;
  }

  .timeline-second-style .left-part {
    width: 100%;
    display: block;
    padding-left: 25px;
    min-height: 100%;
    text-align: left;
  }

  .timeline-second-style .divider {
    left: 0;
  }

  .timeline-second-style .right-part {
    width: 100%;
    display: block;
    padding-left: 25px;
    padding-right: 0;
  }

  .single-page-content .post-content {
    position: relative;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .controls.two-columns .right-column,
  .controls.two-columns .left-column {
    float: none;
    margin: 0;
    width: 100%;
  }

  .timeline-second-style .right-part p,
.timeline-second-style .right-part p > * {
  font-size: 12px;
  color: #fff;
}
}



/* ============================================================================= 
10. Full Width Styles
============================================================================= */
@media only screen and (min-width: 1300px) {
  .header {
    max-width: 420px;
  }
  .content-area {
    max-width: calc(100% - 420px);
  }

  .header .copyrights {
    width: 420px;
  }
}
@media only screen and (min-width: 1025px) {
  .header {
    max-height: 100%;
  }
  ul.main-menu {
    background-color: #3a2f56d9;
    width: 86px;
    left: -86px;
    right: auto;
    top: 52px;
    bottom: 0;
    height: 80%;
    border-radius: 0 15px 15px 0;
  }
  ul.main-menu a {
    border-bottom: 1px solid #333;
  }
  .page-content {
    max-width: 100%;
    min-height: 100%;
    margin: 0 auto;
    border-radius: 0;
  }
  .page {
    padding-left: 86px;
    padding-right: 0;
  }
  .animated-section, .single-page-content {
    border-radius: 0;
  }
  ul.main-menu .link-text {
    position: relative;
    left: 0;
    right: 0;
    right: auto;
    visibility: visible;
    opacity: 1;
    color: #eee;
    font-size: 11px;
    padding: 8px 0 5px;
    background: transparent;
    box-shadow: none;
  }
  ul.main-menu a:hover .link-text {
    left: 0;
    right: 0;
  }
  .lmpixels-arrows-nav {
    background-color: #444;
    width: 48px;
    right: 10px;
    bottom: 10px;
    padding: 5px 0;
    border: 0.03px solid #ffffff;
  }
}
.home-page-first-style {
  min-height: calc(100vh - 140px) !important;
}



/* ============================================================================= 
11. Updates
============================================================================= */

/* v1.1 */
.lm-animated-bg {
  position: absolute;
  width: auto;
  height: auto;
  top: -28px;
  left: -28px;
  right: -28px;
  bottom: -28px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.vcentered {
  vertical-align: middle;
  width: 100%;
  align-items: center;
  display: flex;
  display: -ms-flexbox;
  -ms-flex-pack: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.vcentered .row {
  width: 100%;
}

.title-block {
  padding: 10px;
  background: radial-gradient(black, transparent);
  position: relative;
  text-align: center;
}

.title-block h2 {
  color: #f5f5f5;
  font-size: 40px;
  line-height: 74px;
  margin: 0;
  text-align: center;
}

.title-block .sp-subtitle {
  color: #d6d6d6;
  font-size: 21px;
  font-weight: 600;
  margin: 5px 0;
  text-align: center;
}

.text-rotation {
  display: block;
  width: 100%;
  position: relative;
}

.start-page .mask {
  content: '';
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(10,10,10,0.45);
}

.fun-fact {
  position: relative;
  text-align: center;
  width: 100%;
  display: block;
  margin: 0 0 15px;
  background: #333;
  padding: 25px 10px 15px;
  border: 2px solid #444;
  border-radius: 10px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.fun-fact:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 12px 17px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 12px 17px rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0 12px 17px rgba(0, 0, 0, 0.12);
  box-shadow: 0 12px 17px rgba(0, 0, 0, 0.12);
}

.fun-fact.gray-bg {
  background-color: #fcfcfc;
}

.fun-fact h4 {
  font-size: 16px;
  margin: 15px;
}

.fun-fact i {
  position: relative;
  font-size: 33px;
  color: #04b4e0;
  margin-bottom: 6px;
  width: 33px;
  height: 33px;
}

.fun-fact .lm-info-block {
  font-size: 24px;
  font-weight: 400;
  display: block;
  margin: 10px 0;
  color: #04b4e0;
}

.fun-fact-block-value {
  color: #aaa;
  font-size: 36px;
  line-height: 50px;
  display: block;
  margin: 15px 0 10px;
}

.fun-fact-block-text {
  display: block;
}

@media only screen and (max-width: 1024px) {
 .lm-animated-bg {
    display: none;
 }

 .title-block {
    width: 150%;
    padding: 10px;
    background: radial-gradient(black, transparent);
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
 }

 .title-block h2 {
    font-size: 30px;
    line-height: 28px;
    margin: 0 0 10px;
    text-align: center;
  }

  .title-block .sp-subtitle {
    font-size: 18px;
  }
}

.lmpixels-map iframe {
    height: 140px;
    max-width: 100%;
    width: 100%;
    margin: 0;
    line-height: 1;
    border: none;
}

/* FLAMEZ STYLING 2 */
.skills-container {
  background: transparent;
  padding-top: 4px;
  overflow: hidden;
  position: relative;
  height: 100px;
  border-radius: 50px;
  cursor: pointer;
}

.skills-certificates-wrapper {
width: 100%;
display: flex;
justify-content: center;
}
.skills-knowledge-container {
display: flex;
justify-content: space-between;
gap: 20px;
width: 100%;
max-width: 1200px;
}



.skills-slider {
  display: flex;
  position: absolute;
  animation: slide 25s linear infinite;
}

.skill-icon {
  width: 80px;
  height: 80px;
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.skill-icon img {
  max-width: 100%;
  max-height: 100%;
  filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.5));
  transition: transform 0.3s ease;
}

.skill-icon img:hover {
  transform: scale(1.1);
}

@keyframes slide {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-50%);
  }
}


#BOTI {
position: relative;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 20px;
padding: 30px;
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
border: 1px solid rgba(255, 255, 255, 0.18);
overflow: hidden;
transition: all 0.3s ease;
width: 100%;
max-width: 500px;
}

#BOTI:hover {
background: #6633991a;
cursor: pointer;
transform: translateY(-5px);
box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.45);
}

.laptop-icon {
position: absolute;
left: 15px;
top: 32%;
font-size: 4em;
color: rgba(255, 255, 255, 0.8);
text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.content-divider {
position: absolute;
left: 90px;
top: 20px;
bottom: 20px;
width: 1px;
background-color: rgba(255, 255, 255, 0.3);
}

.card-content {
margin-left: 100px;
padding-right: 20px;
padding-top: 20px;
}

.item-periodd {
position: absolute;
top: 15px;
right: 15px;
font-size: 18px;
color: rgba(255, 255, 255, 0.9);
background: linear-gradient(to bottom, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
padding: 5px 15px;
border-radius: 20px;
font-weight: bold;
}

.item-companyy {
display: inline-block;
font-size: 24px;
font-weight: 900;
color: rgba(255, 255, 255, 0.9);
margin-bottom: 5px;
background: linear-gradient(45deg, #04b4e0, #feca57);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.item-title {
font-size: 14px;
color: rgba(255, 255, 255, 0.8);
margin-bottom: 15px;
text-transform: uppercase;
letter-spacing: 1px;
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
padding-bottom: 5px;
}

.card-description {
font-size: 16px;
color: rgba(255, 255, 255, 0.8);
max-height: 0;
overflow: hidden;
transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.card-description p {
margin-bottom: 15px;
opacity: 0;
transform: translateY(-20px);
transition: opacity 0.5s ease, transform 0.5s ease;
}

.card-description.expanded {
max-height: 1000px;
transition: max-height 1s ease-in-out;
}

.card-description.expanded p {
opacity: 1;
transform: translateY(0);
}

.see-more {
position: relative;
bottom: 0;
left: 0;
width: 100%;
padding: 10px;
background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255, 255, 255, 0.1));
text-align: center;
cursor: pointer;
font-weight: bold;
color: rgba(255, 255, 255, 0.9) !important;
border: none;
outline: none;
transition: all 0.3s ease;
border-radius: 20px;
}

.see-more:hover {
color: #ffffff !important;
background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255, 255, 255, 0.2));
}

@media (max-width: 768px) {
#BOTI {
padding: 20px;
width: 136%;
max-width: 125%;
margin: 0 auto;
margin-left: -12%;
}

.timeline-item {
display: flex;
justify-content: center;
}

.laptop-icon {
font-size: 56px;
left: 10px;
top: 10;
}

.content-divider {
left: 70px;
}

.card-content {
margin-left: 80px;
padding-top: 30px;
}

.item-company {
font-size: 20px;
}

.item-title {
font-size: 16px;
}

.card-description {
font-size: 14px;
}
#dividerr {
display: none !important;
}

.item-periodd {
font-size: 11px;
padding: 1px 8px;
}
.item-companyy {
font-size: 19px;
margin-bottom: 0;
}

.skills-certificates-wrapper {
margin-left: -7%;
width: 119%;
}

.timeline-second-style .item-title {
font-size: 12px;
}

#col-xs-122 {
margin-left: -16% !important;
max-width: 571px !important;
margin-top: -11% !important;
border-radius: 20px;
padding: 30px;

}

}

#dividerr {
left: 16% !important;
}

.skills-knowledge-container {
display: flex;
flex-direction: column;
justify-content: space-between;
gap: 20px;
}

.skills-section,
.knowledge-section {
min-width: 0;
flex: 1;
border-radius: 15px;
padding: 20px;
/* background: rgba(255, 255, 255, 0.05);
box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.2); */
}

@media (min-width: 700px) {
#timeline-second-stylee {
width: 900px !important;
max-height: 100% !important;
}

@media (max-width: 1196px) {
#timeline-second-stylee {
width: 735px !important;
}
}

#col-xs-122 {
margin-left: 84% !important;
max-width: 576px !important;
margin-top: -65% !important;
/*top: -17% !important; */
border-radius: 20px;
padding: 30px;

}

.skills-knowledge-container {
flex-direction: column;
}

.skills-section,
.knowledge-section {
width: 100%;
}
}

/* TOOLBOX SECTION STYLING */

/* Glassmorphic Effect */
.glassmorphic {
padding: 25px;
background: rgba(255, 255, 255, 0.1) !important;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.18) !important;
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
border-radius: 20px !important;
cursor: pointer;
width: 90%;
margin: 0 auto;
}

.glassmorphic:hover {
background: #6633991a !important;
box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.45);
}

/* Card Styles */
.card {
transition: transform 0.3s ease;
}

.card:hover {
transform: translateY(-5px);
}

.card-body {
color: white;
display: flex;
align-items: flex-start;
gap: 15px;
}

/* Introduction Card Styles */
.intro-card .avatar {
width: 100px;
height: 100px;
border-radius: 50%;
flex-shrink: 0;
}

.intro-card .im {
font-weight: normal;
}

.intro-card .name {
font-size: 2.5rem;
font-weight: bold;
}

/* Flamez Container and Cards */
.flamez-container {
width: 100%;
position: relative;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(244px, 1fr));
gap: 20px;
padding: 20px;
}

.flamez-card {
position: relative;
cursor: pointer;
margin-bottom: 20px;
}

.flamez-face {
width: 100%;
height: 200px;
transition: .4s;
}

.flamez-face-front {
border-radius: 20px;
position: relative;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
display: flex;
justify-content: center;
align-content: center;
align-items: center;
z-index: 1;
transform: translateY(100px);
}

.flamez-card:hover .flamez-face-front {
transform: translateY(0);
box-shadow:
inset 0 0 60px whitesmoke,
inset 20px 0 80px #f0f,
inset -20px 0 80px #0ff,
inset 20px 0 300px #f0f,
inset -20px 0 300px #0ff,
0 0 50px #fff,
-10px 0 80px #f0f,
10px 0 80px #0ff;
}

.flamez-content {
transition: 0.5s;
text-align: center;
}

.flamez-content i {
font-size: 3em;
color: white;
display: inline-block;
}

.flamez-content h3 {
font-size: 1em;
color: white;
text-align: center;
margin-top: 10px;
}

.flamez-face-back {
border-radius: 20px;
position: relative;
background: #1e193e;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
box-sizing: border-box;
box-shadow: 0 20px 50px rgba(0,0,0,.8);
transform: translateY(-100px);
}

.flamez-card:hover .flamez-face-back {
transform: translateY(0);
}

.flamez-content p {
font-size: 10pt;
margin: 0;
padding: 0;
color: #FFF;
}

.flamez-content a {
font-size: 6pt;
text-decoration: none;
box-sizing: border-box;
padding: 10px;
margin: 10px 0 0;
display: inline-block;
}

.flamez-content a:hover {
border-radius: 50%;
color: whitesmoke;
box-shadow: inset 0px 0px 10px rgba(0,0,0,0.5);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
.intro-card .avatar {
width: 70px;
height: 70px;
}

.intro-card .name {
font-size: 1.8rem;
}

.glassmorphic {
padding: 20px;
}

.card-body {
flex-direction: column;
align-items: center;
text-align: center;
gap: 10px;
}
}

@media (max-width: 420px) {
.glassmorphic {
padding: 15px;
width: 95%;
}

.flamez-container {
padding: 10px;
gap: 15px;
}

.flamez-card {
margin-bottom: 10px;
}

.flamez-face {
height: 202px;
}

.intro-card .name {
font-size: 1.5rem;
}

.card-body {
padding: 10px;
}
}

/* END OF TOOLBOX SECTION STYLING */



/* CONTACT STYLING */

.sci {
position: relative;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 20px;
padding: 0;
justify-content: center;
}

.sci li {
list-style: none;
}

.sci li a {
position: relative;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 150px;
background: #fff;
color: #333;
font-size: 4em;
text-decoration: none;
border-radius: 10px;
transform-style: preserve-3d;
transition: background 0.25s;
box-shadow: 0 25px 35px rgba(0, 0, 0, 0.1);
}

.sci li a:hover {
background: var(--clr);
box-shadow: 0 25px 35px rgba(0, 0, 0, 0.25);
border: 5px solid var(--clr);
}

.sci li a i {
transition: 0.5s;
pointer-events: none;
}

.sci li a:hover i {
transform: scale(1.5) translateZ(50px);
color: #fff;
}

@media (max-width: 768px) {
.sci {
grid-template-columns: repeat(2, 1fr);
}

.sci li a {
height: 120px;
font-size: 3em;
}
}




@media (max-width: 480px) {
.sci li a {
height: 100px;
font-size: 2.5em;
}
}

/* END OF CONTACT STYLING */

#ExperienceFlamez{
max-width: 494px;
}

/* STAY HAPPY */
.flamez-7 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.flamez-8 {
  list-style: none;
  margin: 2px;
}

.flamez-9 {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 50px;
  width: 50px;
  z-index: 100;
}

.flamez-10 {
  position: relative;
  height: 50px;
  width: 50px;
  background-image: linear-gradient(to bottom,   
  rgba(255, 0, 0, 0.2), rgba(49, 31, 129, 0.5));
  filter: blur(2px);
  color: #ccc5c5;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  cursor: pointer;
  border-radius: 12px;
  box-shadow: -1px -1px 4px rgba(255, 255, 255, 0.05),
      4px 4px 6px rgba(0, 0, 0, 0.2),
      inset -1px -1px 4px rgba(255, 255, 255, 0.05),
      inset 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.flamez-9:checked ~ .flamez-10 {
  box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.05),
      inset 4px 4px 6px rgba(0, 0, 0, 0.2);
  color: yellow;
  text-shadow: 0 0 15px yellow, 0 0 25px yellow;
  animation: flamez-glow 1.5s linear infinite;
}

@keyframes flamez-glow {
  0% {
      filter: hue-rotate(0deg);
  }
  100% {
      filter: hue-rotate(360deg);
  }
}

@media (max-width: 1023px) {
  .flamez-7 {
      flex-direction: column;
  }
  .flamez-word {
      display: flex;
      justify-content: center;
      margin-bottom: 10px;
  }
  .flamez-10 {
      height: 40px;
      width: 40px;
      font-size: 22px;
  }
}

@media (min-width: 1024px) {

#site_header {
  /* position: relative; */
  z-index: 999 !important; 
}

.skills-knowledge-container {
      position: relative;
      margin-top: -34%;
      left: 86%;
      flex-direction: column;
      width: 90%;
  }
  .flamez-7 {
      flex-direction: row;
  }
  .flamez-word {
      display: flex;
      margin-right: 10px;
  }
  .flamez-word:last-child {
      margin-right: 0;
  }
}
/* END OF STAY HAPPY */

#imgflamez {
width: 80px;
height: 80px;
border-radius: 50%;
background: white;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 10px;
overflow: hidden;
}

#imgflamez img {
width: 100%;
height: 100%;
object-fit: cover;
}

.social-links a,
.header-buttons a {
position: relative;
z-index: 40;
}

#header-contentt {
text-align: center; /* Center text and inline elements */
width: 100%; /* Ensure the container takes full width */
}
.portfolio-content {
  width: 100%;
}
.portfolio-gridd {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
#ANJIE {
  position: relative;
}
.portfolio-item-img {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
.portfolio-item-img img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
}
#ANJIE:hover .portfolio-item-img img {
  transform: scale(1.1);
}
.portfolio-item-img a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}
.portfolio-item-img::after {
  content: '';
  position: absolute;
  background-color: rgba(0,0,0,.05);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
#ANJIE:hover .portfolio-item-img::after {
  opacity: 1;
}
#BBB {
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 20px;
  opacity: 0;
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  color: #1e193e;
  text-align: center;
  line-height: 30px;
  transition: opacity 0.3s ease-in-out;
}
.name {
  /* display: block; */
  padding: 15px 0;
  font-size: 20px;
  position: relative;
}
#ANJIE:hover #BBB,
#ANJIE:hover .name {
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  .portfolio-gridd {
      grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 480px) {
  .portfolio-gridd {
      grid-template-columns: 1fr;
  }
}

/* END OF FLAMEZ STYLNG 2 */