/* MAIN CSS STYLE */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hurricane&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Encode+Sans+Condensed:wght@100;200;300;400;500;600;700;800;900&family=Encode+Sans+Expanded:wght@100;200;300;400;500;600;700;800;900&family=Encode+Sans+Semi+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Encode+Sans+Semi+Condensed:wght@100;200;300;400;500;600;700;800;900&family=Encode+Sans+Semi+Expanded:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-general: "Encode Sans Condensed", sans-serif; 
  --font-main: 'Kanit', sans-serif;
  --font-title: 'Anton', sans-serif;
  --font-logo: 'Hurricane', cursive;
}

/* Colors */
:root {
  --color-default: #2b180d;
  --color-primary: #FC0254;
  --color-secondary: #18171D;
  --color-deep-dark: #100f12;
  --color-light: #fff;
  --color-nav-link: #cdc8d8;
  --color-gray: #ada8b9;
  --color-medium-gray: #6c757d;
  --color-light-gray: #d6e2ef;
  --color-active: #d00447;
  --color-charcoal: #24222b;
}

:root {
  scroll-behavior: smooth;
}


/* ==============================================================
# GENERAL
============================================================== */

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-global);
  font-family: var(--font-general);
  letter-spacing: 0.5px;
  /* font-family: "Encode Sans Semi Expanded", sans-serif; */
  color: var(--color-default);
  background: var(--color-secondary);
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: var(--font-general); */
  font-family: var(--font-general);
  /* letter-spacing: 0.4px; */
}


/* ------------------------------------- 
# Start Scrollbar Style 
------------------------------------- */

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1150);
  /* background-color: var(--color-light); */
  /* -webkit-border-radius: 10px;
  border-radius: 10px; */
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: var(--color-primary); 
}

::-webkit-scrollbar-thumb:active {
  background: var(--color-active);
}

/* End Scrollbar Style */


.color-name-project {
  color: var(--color-primary)
}

.color-link-project {
  color: var(--color-gray);
}

.color-link-project:hover {
  color: var(--color-primary);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--color-primary);
  text-decoration: none;
}


/*---------------------------------
# Sections & Section Header
-------------------------------- */

section {
  overflow: hidden;
  padding: 50px 0;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header p {
  margin-bottom: 0;
}


/*--------------------------
# Breadcrumbs
------------------------- */

.breadcrumbs {
  padding: 140px 0 60px 0;
  min-height: 30vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs::before {
  content: "";
  background: linear-gradient(to right, rgba(24, 23, 29, 0.75), rgba(24, 23, 29, 0.65));
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.breadcrumbs h2 {
  font-size: 56px;
  font-family: var(--font-title);
  font-weight: 500;
  color: var(--color-light);
}

.breadcrumbs h2 span {
  color: var(--color-primary);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--color-primary);
}

.breadcrumbs ol a {
  color: var(--color-gray);
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-light);
  content: "/";
}


/* -------------------------
# Scroll top button
------------------------- */

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-primary);
  border-radius: 100%;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-light);
  line-height: 0;
}

.scroll-top:hover {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}


/* --------------------------
# Preloader
-------------------------- */

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-secondary);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--color-primary);
  border-top-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}



/* -----------------------------------------------------------
# Disable aos animation delay on mobile devices
----------------------------------------------------------- */

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/* --------------------------
# Header
-------------------------- */

.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 24px 0;
}

@media (max-width: 1200px) {
  .header {
    padding: 12px 0;
  }
}

.header.sticked {
  background: rgba(66, 74, 81, 0.9);
  padding: 12px 0;
}

.header .logo h1 {
  font-size: 35px;
  font-weight: 700;
  color: var(--color-light);
  font-family: var(--font-logo);
  margin: 0;
}

.header .logo h1 span {
  color: var(--color-primary);
}


/* -------------------------------
# Desktop Navigation
------------------------------- */

@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0 15px 30px;
    font-family: var(--font-general);
    font-size: 16.5px;
    font-weight: 500;
    color: var(--color-nav-link);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.2s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}


/* ---------------------------
# Mobile Navigation
--------------------------- */

@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(27, 47, 69, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-default);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-light);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: rgba(20, 35, 51, 0.6);
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: rgba(255, 255, 255, 0.9);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
  }

  .mobile-nav-hide {
    color: rgba(255, 255, 255, 0.9);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(27, 47, 69, 0.7);
    z-index: 9996;
  }
}

/* ===============================================================
# MOTIVATIONS PAGE
=============================================================== */

.hero {
  width: 100%;
  min-height: 100vh;
  /* background: url("../img/hero-bg.jpg") top center;
  background-size: cover; */
  position: relative;
  padding: 120px 0;
  /* z-index: 4; */
}

/*.hero video {*/
/*  min-width: 100%;*/
/*  min-height: 100vh;*/
/*  position: absolute;*/
/*  z-index: 2;*/
/*}*/

/*.hero .container {*/
/*  position: relative;*/
/*  z-index: 4 !important;*/
/*}*/

/*.hero::before {*/
/*  content: "";*/
/*  background: linear-gradient(to right, rgba(24, 23, 29, 0.75), rgba(24, 23, 29, 0.65));*/
/*  position: absolute;*/
/*  bottom: 0;*/
/*  top: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*  z-index: 3;*/
/*}*/

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  position: absolute;
  z-index: 1;
}

@media(max-width: 767px) {
  .hero video {
    min-width: 100%;
    min-height: 80vh
    object-fit: cover;
    position: absolute;
    z-index: 1;
  }
}

.hero::before {
  content: "";
  background: linear-gradient(to right, rgba(24, 23, 29, 0.75), rgba(24, 23, 29, 0.85));
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 4 !important;
}

@media (min-width: 1034px) {
  .hero:after {
    position: absolute;
    content: "";
    width: 40%;
    background: var(--color-secondary);
    top: 0;
    bottom: 0;
    z-index: 3;
  }
}

@media (max-width: 1034px) {
  .hero:before {
    background: rgba(27, 47, 69, 0.7);
  }
}

.hero .container {
  z-index: 1;
}

@media (min-width: 1365px) {
  .hero {
    background-attachment: fixed;
  }
}

.hero .main-title {
  margin: 0;
  font-size: 3.5rem;
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1.8px;
  color: var(--color-light);
}

.hero .part_title {
  color: var(--color-primary);
}

.hero blockquote {
  color: var(--color-light);
  padding-left: 20px;
  font-family: var(--font-general);
  border-left: 3px solid var(--color-primary);
  margin: 40px 0;
}

.hero blockquote .subtitle {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
}

.hero .btn-get-started {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: var(--color-light);
  background: var(--color-primary);
}

.hero .btn-get-started:hover {
  background: var(--color-light);
}

.hero .btn-watch-video {
  font-size: 27px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--color-light);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--color-primary);
  font-size: 85px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover i {
  color: var(--color-light);
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
    line-height: 1;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}



/* =============================================================
# PORTFOLIO PAGE
 ============================================================ */

.portfolio .portfolio-flters {
  padding: 0;
  margin: 0 auto 30px auto;
  list-style: none;
}

.portfolio .portfolio-flters li {
  color: var(--color-gray);
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18.3px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-flters li:hover,
.portfolio .portfolio-flters li.filter-active {
  color: var(--color-primary);
}

.portfolio .portfolio-flters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-flters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-flters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-item {
  position: relative;
}


/* ------------------------------ 
# Start Scale Effect 
------------------------------ */

.portfolio .portfolio-item .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(34, 34, 34, 0.6);
}

.portfolio .portfolio-item .portfolio-wrap::before {
  content: "";
  background: rgba(34, 34, 34, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 3;
  opacity: 0;
}

.portfolio .portfolio-item .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-item .portfolio-wrap img {
  transform: scale(1.2);
  transition: all ease-in-out 0.3s
}

.portfolio .portfolio-item .portfolio-wrap:hover img {
  transform: scale(1.1);
  transition: all ease-in-out 0.3s
}

/* End Scale Effect -------- */

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-default);
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: var(--color-medium-gray);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 27px;
  top: calc(50% - 14px);
  color: rgba(27, 47, 69, 0.7);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--color-primary);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 31px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}


/* =============================================================
# DETAILS PORTFOLIO 
============================================================= */

.portfolio-details .portfolio-details-slider img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--color-light);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(27, 47, 69, 0.1);
}

.portfolio-details .portfolio-info h3 {
  color: var(--color-light);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  /* border-bottom: 1px dashed var(--color-gray); */
  border-bottom: medium double var(--color-gray);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 16px;
  color: var(--color-gray);
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding: 10px 30px;
}

.portfolio-details .portfolio-description h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-light);
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color:var(--color-gray);
}


/* =============================================================
# À PROPOS PAGE
============================================================= */

.about .head_title {
  color: var(--color-light);
  margin: 20px 0;
}

.about .about_title {
  font-size: 33px;
  border-left: 3px solid var(--color-primary);
  padding-left: 15px;
}

.about .about-content .about-me {
  font-size: 1.1230rem;
  font-family: var(--font-general);
  color: var(--color-gray);
}


/* .about .about-content .to-reach-me {
  display: none;
} */

/* -------------------------- 
# Slick Carousel Interest 
-------------------------- */

.about .slide {
  margin: 0;
}

.about .slide .interest {
  width: 100%;
  max-width: 95px;
  height: 95px;
  background: rgba(255, 255, 255, 0.1150);
  color: var(--color-light);
  border-radius: 3px;
  margin: 0 15px 15px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.about .slider .interest:hover {
  background-color: var(--color-primary);
  color: var(--color-secondary);
}

.about .slider .interest i {
  font-size: 30px;
  margin-bottom: 5px;
}

.about .slider .interest span {
  font-size: 0.8rem;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-track:after {
  clear: both;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

.slick-initialized .slick-slide {
  display: block;
}

/* End Slick Carousel */


/* ------------------------------
# Reeched
------------------------------ */

.about ul {
  padding-left: 0;
  list-style: none;
  color: var(--color-gray);
}

.about ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}

.about ul li i {
  font-size: 16px;
  background: var(--color-primary);
  color: var(--color-secondary);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.about ul li a {
  color: var(--color-gray);
}

.about ul li a:hover {
  color: var(--color-primary);
}


/* --------------------------- 
# Studies
--------------------------- */

.about .studies_title {
  font-size: 27px;
  margin: 27px 0;
}

.about .studies-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid var(--color-primary);  
  position: relative;
}

.about .studies-item h4 {
  line-height: 18px;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.about .studies-item h5 {
  font-size: 15px;
  background: rgba(255, 255, 255, 0.1150);
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-light);
}

.about .studies-item p {
  color: var(--color-gray);
}

.about .studies-item ul {
  padding-left: 20px;
  color: var(--color-gray);
}

.about .studies-item ul li {
  padding-bottom: 10px;
}

.about .studies-item:last-child {
  padding-bottom: 0;
}

.about .studies-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: var(--color-secondary);
  border: 2px solid var(--color-primary);
}


/* ---------------------------- 
# Skills 
---------------------------- */

.skills {
  color: var(--color-light);
}

.skills .skills_title {
  font-size: 27px;
}

.skills h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.skills .skill > span {
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.skills .skill .bar-skill{
  height: 8px;
  width: 80%;
  background: rgba(255, 255, 255, 0.070);
  position: relative;
  margin-bottom: 30px;
}

.skills .skill .progreso {
  background-color: var(--color-primary);
  position: absolute;
  top: 0;
  left: 0;
  height: 8px;
}

.skills .skill .bar-skill span {
  position: absolute;
  height: 33px;
  width: 48px;
  background: rgba(255, 255, 255, 0.1150);
  color: var(--color-light);
  border-radius: 3px;
  line-height: 33px;
  text-align: center;
  top: -40px;
  right: -23px;
  font-size: 1rem;
  font-weight: 600;
}

/*  In javascript file */
.skills .skill .photoshop {
  width: 0%;
  animation: 0.8s photoshop forwards;
}

@keyframes photoshop {
  0%{width: 0%;}
  100%{width: 85%;}
}

.skills .skill .after-effects {
  width: 0%;
  animation: 0.8s after-effects forwards;
}

@keyframes after-effects {
  0%{width: 0%;}
  100%{width: 80%;}
}

.skills .skill .premiere-pro {
  width: 0%;
  animation: 0.8s premiere-pro forwards;
}

@keyframes premiere-pro {
  0%{width: 0%;}
  100%{width: 90%;}
}

.skills .skill .krita {
  width: 0%;
  animation: 0.8s krita forwards;
}

@keyframes krita {
  0%{width: 0%;}
  100%{width: 95%;}
}

.skills .skill .art-plastique {
  width: 0%;
  animation: 0.8s art-plastique forwards;
}
@keyframes art-plastique {
  0%{width: 0%;}
  100%{width: 80%;}
}

.skills .skill .design {
  width: 0%;
  animation: 0.8s design forwards;
}

@keyframes design {
  0%{width: 0%;}
  100%{width: 85%;}
}

.skills .skill .photographie {
  width: 0%;
  animation: 0.8s photographie forwards;
}

@keyframes photographie {
  0%{width: 0%;}
  100%{width: 75%;}
}

.skills .skill .image-numerique {
  width: 0%;
  animation: 0.8s image-numerique forwards;
}

@keyframes image-numerique {
  0%{width: 0%;}
  100%{width: 80%;}
}


/* =============================================================
# CONTACT PAGE 
============================================================= */

.contact .card {
  border: 0;
  border-bottom: 0.15rem solid var(--color-primary);
  background: var(--color-charcoal);
  border-radius: 1% !important;
}

.contact .card-body i {
  font-size: 20px;
  background: var(--color-primary);
  color: var(--color-charcoal);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin: 0 auto 1rem;
}

.contact .card h4, .contact .card .h4 {
  font-size: 0.9rem;
  font-family: var(--font-general);
  letter-spacing: 0.15rem;
  color: var(--color-light)
}

.contact .card .divider {
  background: var(--color-primary);
  height: 3px;
  width: 3rem;
}

.contact .card .card-body .small {
  font-size: 0.9rem;
  color: var(--color-light);
}

.contact .card .card-body .small a {
  color: var(--color-light);
}

.contact .card .card-body .small a:hover {
  color: var(--color-primary);
}

 
/* ----------------------------- 
# Map Google 
----------------------------- */

.contact #map_container { 
  margin-top: 2.5rem !important;
  position: relative;
  width: 100%;
  margin: 0; 
  border: none;
  overflow: hidden;
} 

/* .contact #map_container { 
  margin-top: 2.5rem !important;
  position: relative;
}  */

.contact .map_container figure { 
  height: 100%;
} 

.map_container iframe {
  width: 100%;
  border: none;
  filter: grayscale(1) invert(1) brightness(70%);
}

.map_container::after {
  content: "";
    width: 100%;
    height: 100%;
    max-height: 370px;
    display: block;
    background-color: var(--color-primary);
    position: absolute;
    top: 0;
    left: 0;
    mix-blend-mode: color;
    pointer-events: none;
}


/* ==============================================================
# FOOTER
============================================================== */

/* -----------------------------
# General Footer 
----------------------------- */

.footer {
  font-size: 14px;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  margin-top: 3px;
}

.footer .footer-content .footer-info p {
  font-size: 15px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: var(--color-secondary);
}

.footer .copyright {
  font-size: 0.9rem;
  color: var(--color-gray);
}


/* -------------------------- 
# Home Footer 
-------------------------- */

#home-footer {
  padding: 15px;
  color: var(--color-gray);
  font-size: 14px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 9999;
}

#home-footer .footer-content .social-links a {
  font-size: 1.3rem;
  line-height: 0;
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-right: 3px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  color: var(--color-gray);
}

#home-footer .footer-content .social-links a:hover {
  color: var(--color-light);
  cursor: pointer;
}

#home-footer .footer-content .social-links a.artstation {
  font-size: 1.5rem !important;
  margin-top: 0.2rem;
} 

@media (max-width: 640px) {
  .home-footer {
    background-position: center 50px;
  }
}

#home-footer .copyright {
  color: var(--color-gray);
}

@media (max-width: 1199px) {
  .footer {
    position: static;
    width: auto;
    padding-right: 20px 15px;
  }
}


/* ---------------------------
# Page Footer 
--------------------------- */

#page-footer {
  background: var(--color-deep-dark);
  padding: 2rem 0;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

#page-footer .logo-footer a {
  font-size: 4rem;
  font-family: var(--font-logo);
  color: var(--color-light);
}

#page-footer .logo-footer a span {
  color: var(--color-primary);
}

#page-footer .social-links a {
  display: block;
  font-size: 1.5rem;
  color: var(--color-primary);
  float: left;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  position: relative;
}

#page-footer .social-links a:hover  {
  color: var(--color-light);
  transition: all 0.3s ease-in-out;
}

#page-footer .social-links a.linkedin {
  margin-top: 0.2rem;
}

#page-footer .social-links a.artstation {
  font-size: 1.2350rem;
  margin-top: 0.255rem;
}

#page-footer .social-links a span {
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--color-light);
}

#page-footer .social-links a:hover span {
  color: var(--color-primary);
  transition: all 0.3s ease-in-out;
}

#page-footer .social-links a.linkedin span {
  margin-top: 0.3rem;
}

#page-footer .social-links a.artstation span {
  margin-top: 0.120rem;
}



/* ========================================================
# BREAKPOINTS
======================================================== */

/* Mobile */
@media screen and (max-width: 767px) {

  /* General --------------- */

  section {
      padding: 20px 0;
  }

  .breadcrumbs {
    padding: 80px 0 10px 0;
  }

  .breadcrumbs h2 {
    font-size: 36px;
  }

  .breadcrumbs ol {
    font-size: 14.5px;
  }

  /* Motivations Page ------- */

  .hero .btn-watch-video span {
    font-size: 1.5rem;
  }

  .hero .main-title {
    font-size: 3rem;
  }


  /* Details Portfolio ------- */

  .portfolio-details .portfolio-info, 
  .portfolio-details .portfolio-description {
    padding: 10px;
  }

  /* About Section ----------- */

  .about .about_title {
    padding-left: 10px;
  }

  .about .head_title h2 {
    font-size: 30px;
  }

  .about .head_title h3 {
    font-size: 24px;
  }

  .about .slide .interest {
    width: 100%;
    max-width: 98px;
    height: 98px;
  }

}


/* Tablet */
@media screen and (min-width: 768px) and (max-width: 1024px) {

  /* About Page - Skills --------------- */

  .about .slide .interest {
    width: 100%;
    max-width: 70px;
    height: 70px;
  }
}





















