/****************************************************************************/
/***** RESET CSS *****/
/****************************************************************************/

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-font-smoothing: antialiased;
}

html,
body,
nav,
header,
footer,
div,
span,
h1,
h2,
h3,
p,
a,
img,
ul,
li,
table,
form,
label,
input,
textarea,
select,
button {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
}

ul,
li {
  list-style: none;
}

input,
textarea,
select,
button {
  display: block;
  box-sizing: border-box;
  border-radius: 0;
  outline: none;
  border: none;
  background: none;
  color: inherit;
}

input:focus,
textarea:focus,
button:focus {
  outline: none;
}

input[type='submit']:hover,
button:hover {
  cursor: pointer;
}

a {
  display: block;
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
  height: auto;
}

/****************************************************************************/
/***** FONT CSS *****/
/****************************************************************************/

@font-face {
  font-family: 'Sora Regular';
  src: url('../fonts/Sora-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sora Bold';
  src: url('../fonts/Sora-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sora Semi Bold';
  src: url('../fonts/Sora-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sora Light';
  src: url('../fonts/Sora-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/****************************************************************************/
/***** COLORS CSS *****/
/****************************************************************************/

:root {
  --white: #FFF;
  --tiny-white: #FFD7D0;
  --tint-white: #FFE0E0;

  --red: #EF6D58;
  --tiny-red: #C47164;
  --tint-red: #EF6C57;

  --dark-blue: #28293E;
  --light-blue: #404263;
  --tiny-blue: #242539;
  --tint-blue: #161723;

  --light-purple: #353650;

  --black: #141313;
  --tint-black: #391400;
  --tiny-black: #1D1D1D;

  --gray: #D9D9D9;
  --tiny-gray: #EFEFEF;
  --tint-gray: #CFCFCF;
}

/****************************************************************************/
/***** SPINNER CSS *****/
/****************************************************************************/

body {
  overflow: hidden;
}

.spinner {
  background-color: var(--dark-blue);
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: var(--dark-blue) 0.3s, color 0.3s;
  z-index: 999;
  position: fixed;
}

.spinner p {
  font-size: 18px;
  font-family: "Sora Regular", sans-serif;
  color: var(--white);
  position: absolute;
}

.smiley {
  width: 250px;
  height: 250px;
}

@media screen and (max-width: 600px) {
  .smiley {
    width: 200px;
    height: 200px;
  }

  .spinner p {
    font-size: 16px;
  }
}

.smiley__eye1,
.smiley__eye2,
.smiley__mouth1,
.smiley__mouth2 {
  animation: eye1 3s ease-in-out infinite;
}

.smiley__eye1,
.smiley__eye2 {
  transform-origin: 64px 64px;
}

.smiley__eye2 {
  animation-name: eye2;
}

.smiley__mouth1 {
  animation-name: mouth1;
}

.smiley__mouth2 {
  animation-name: mouth2;
  visibility: hidden;
}

@keyframes eye1 {
  from {
    transform: rotate(-260deg) translate(0, -56px);
  }

  50%,
  60% {
    animation-timing-function: cubic-bezier(0.17, 0, 0.58, 1);
    transform: rotate(-40deg) translate(0, -56px) scale(1);
  }

  to {
    transform: rotate(225deg) translate(0, -56px) scale(0.35);
  }
}

@keyframes eye2 {
  from {
    transform: rotate(-260deg) translate(0, -56px);
  }

  50% {
    transform: rotate(40deg) translate(0, -56px) rotate(-40deg) scale(1);
  }

  52.5% {
    transform: rotate(40deg) translate(0, -56px) rotate(-40deg) scale(1, 0);
  }

  55%,
  70% {
    animation-timing-function: cubic-bezier(0, 0, 0.28, 1);
    transform: rotate(40deg) translate(0, -56px) rotate(-40deg) scale(1);
  }

  to {
    transform: rotate(150deg) translate(0, -56px) scale(0.4);
  }
}

@keyframes eyeBlink {

  from,
  25%,
  75%,
  to {
    transform: scaleY(1);
  }

  50% {
    transform: scaleY(0);
  }
}

@keyframes mouth1 {
  from {
    animation-timing-function: ease-in;
    stroke-dasharray: 0 351.86;
    stroke-dashoffset: 0;
  }

  25% {
    animation-timing-function: ease-out;
    stroke-dasharray: 175.93 351.86;
    stroke-dashoffset: 0;
  }

  50% {
    animation-timing-function: steps(1, start);
    stroke-dasharray: 175.93 351.86;
    stroke-dashoffset: -175.93;
    visibility: visible;
  }

  75%,
  to {
    visibility: hidden;
  }
}

@keyframes mouth2 {
  from {
    animation-timing-function: steps(1, end);
    visibility: hidden;
  }

  50% {
    animation-timing-function: ease-in-out;
    visibility: visible;
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -351.86;
  }
}

/****************************************************************************/
/***** TOOLTIP CSS *****/
/****************************************************************************/

[data-tooltip] {
  --arrow-size: 5px;
  position: relative;
  z-index: 10;
}

[data-tooltip]:before,
[data-tooltip]:after {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  left: 50%;
  bottom: calc(100% + var(--arrow-size));
  pointer-events: none;
  transition: 0.2s;
  will-change: transform;
}

[data-tooltip]:before {
  content: attr(data-tooltip);
  padding: 10px 18px;
  min-width: 50px;
  max-width: 300px;
  width: max-content;
  width: -moz-max-content;
  border-radius: 6px;
  font-size: 16px;
  font-family: 'Sora Light', sans-serif;
  background-color: rgba(59, 72, 80, 0.9);
  background-image: linear-gradient(30deg,
      rgba(59, 72, 80, 0.44),
      rgba(59, 68, 75, 0.44),
      rgba(60, 82, 88, 0.44));
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
  color: #FFF;
  text-align: center;
  white-space: pre-wrap;
  transform: translate(-50%, calc(0px - var(--arrow-size))) scale(0.5);
}

[data-tooltip]:after {
  content: '';
  border-style: solid;
  border-width: var(--arrow-size) var(--arrow-size) 0px var(--arrow-size);
  border-color: rgba(55, 64, 70, 0.9) transparent transparent transparent;
  transition-duration: 0s;
  transform-origin: top;
  transform: translateX(-50%) scaleY(0);
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  visibility: visible;
  opacity: 1;
}

[data-tooltip]:hover:before {
  transition-delay: 0.3s;
  transform: translate(-50%, calc(0px - var(--arrow-size))) scale(1);
}

[data-tooltip]:hover:after {
  transition-delay: 0.5s;
  transition-duration: 0.2s;
  transform: translateX(-50%) scaleY(1);
}

@media (max-width: 750px) {
  [data-tooltip]:after {
    bottom: calc(100% + 3px);
  }

  [data-tooltip]:after {
    border-width: 7px 7px 0px 7px;
  }
}

/****************************************************************************/
/***** NAV CSS *****/
/****************************************************************************/

.mobile {
  display: none;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--dark-blue);
  border: 1px solid var(--light-blue);
  width: 100%;
  height: 100px;
  padding: 0 120px;
}

nav span {
  color: var(--red);
  font-family: 'Sora Bold', sans-serif;
  font-size: 1.3rem;
  line-height: 3rem;
  padding: 0 1rem;
}

nav ul {
  display: flex;
  align-items: center;
}

nav ul li {
  font-family: 'Sora Regular', sans-serif;
  color: var(--white);
  text-align: center;
  font-size: 1.1rem;
  padding-right: 4.25rem;
}

nav ul li a {
  transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
  color: var(--red);
}

nav ul li a::after {
  content: '';
  display: block;
  border-bottom: solid 3px var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease-in-out;
  position: relative;
  top: 7px;
}

nav ul li a:hover:after {
  transform: scaleX(1);
}

@media screen and (max-width: 1800px) {
  nav {
    padding: 0 60px;
  }

  nav ul li {
    padding-right: 2.25rem;
  }
}

@media screen and (max-width: 1300px) {
  nav {
    padding: 0 20px;
  }

  nav span {
    font-size: 1.1rem;
  }

  nav ul li {
    font-size: 1rem;
  }
}

@media screen and (max-width: 1100px) {
  nav {
    justify-content: center;
  }

  nav span {
    display: none;
  }

  nav ul li {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 900px) {
  .desktop {
    display: none;
  }

  .mobile {
    display: block;
    height: 70px;
  }

  .mobile ul {
    display: none;
  }

  .mobile .mobile-icon {
    background: url('../img/icon/burger-menu.png') no-repeat;
    background-size: cover;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 30px;
    top: 19px;
    cursor: pointer;
    transition: mobile 0.3s ease-in-out;
  }

  .mobile.visible {
    height: 100vh;
  }

  .mobile.visible ul {
    display: block;
    margin-top: 150px;
    height: 100vh;
  }

  .mobile.visible ul li {
    margin: 50px 0;
    font-size: 1.5rem;
    padding: 0;
  }

  .mobile.visible ul li a:hover:after {
    width: 30%;
    margin: 0 auto;
    top: 10px;
  }

  .mobile.visible .mobile-icon {
    background: url('../img/icon/close-menu.png') no-repeat;
  }
}

/****************************************************************************/
/***** HERO BANNER CSS *****/
/****************************************************************************/

@keyframes KeyFadeIn {
  0% {
    transform: translate3D(0, 50px, 0);
    opacity: 0;
  }

  100% {
    transform: none;
    opacity: 1;
  }
}

.main-section {
  background: url('../img/background/hero-bg.png') no-repeat;
  background-size: cover;
  width: 100%;
}

#hero-section {
  display: flex;
  align-items: center;
  padding: 130px 156px 200px 124px;
}

.left-hero,
.right-hero {
  position: relative;
  top: 32px;
}

.left-hero .hello {
  color: var(--white);
  font-family: 'Sora Regular', sans-serif;
  font-size: 26px;
  position: relative;
  margin-bottom: 30px;
}

.left-hero .hello::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 5rem;
  width: 2rem;
  height: 2rem;
  background: url('../img/icon/hand-icon.png') no-repeat;
  background-size: cover;
}

.left-hero h1 {
  color: var(--white);
  font-family: 'Sora Semi Bold', sans-serif;
  font-size: 72px;
  line-height: 100px;
  width: 1035px;
  margin-bottom: 30px;
}

.left-hero p {
  color: var(--white);
  font-family: 'Sora Light', sans-serif;
  font-size: 21px;
  margin-bottom: 30px;
}

.left-hero .work-browse {
  font-weight: bold;
  font-family: 'Sora Semi Bold', sans-serif;
  font-size: 21px;
}

.left-hero a {
  width: fit-content;
}

.left-hero .cv-link {
  border-radius: 0.2rem;
  background: var(--red);
  width: 200px;
  height: 60px;
  padding: 17px 31px;
  transition: color 0.5s ease-in-out;
  cursor: pointer;
}

.left-hero .cv-link .cv {
  color: var(--white);
  font-family: 'Sora Bold', sans-serif;
  text-align: center;
  font-size: 21px;
}

.left-hero .cv-link:hover {
  background-color: var(--white);
}

.left-hero .cv-link:hover .cv {
  color: var(--red);
}

.right-hero {
  width: 460px;
  height: 626px;
  background: url('../img/me.png') center no-repeat var(--red);
  border-radius: 75px;
  background-size: cover;
  margin-left: 45px;
}

.right-hero.visible {
  animation: KeyFadeIn 600ms ease-in forwards;
}

.left-hero.visible {
  animation: KeyFadeIn 700ms ease-in forwards;
}

@media screen and (max-width: 1800px) {
  #hero-section {
    padding: 60px 60px 100px;
  }

  .left-hero {
    width: 70%;
  }

  .left-hero h1 {
    font-size: 32px;
    width: 100%;
    line-height: 40px;
    margin-top: 20px;
  }

  .right-hero {
    width: 30%;
  }
}

@media screen and (max-width: 1600px) {
  .right-hero {
    height: 500px;
  }

  .left-hero {
    width: 65%;
  }
}

@media screen and (max-width: 1400px) {
  #hero-section {
    flex-direction: column-reverse;
    padding-top: 50px;
    padding-bottom: 150px;
  }

  .left-hero {
    top: 30px;
    text-align: center;
  }

  .right-hero {
    width: 50%;
    height: 500px;
    margin: 0;
    top: 0;
  }

  .left-hero a {
    margin: 0 auto;
  }
}

@media screen and (max-width: 800px) {
  .left-hero {
    width: 100%;
  }

  .right-hero {
    width: 60%;
  }
}

@media screen and (max-width: 650px) {
  #hero-section {
    padding: 50px 20px 150px;
  }

  .left-hero h1 {
    font-size: 25px;
  }

  .right-hero {
    width: 100%;
  }
}

/****************************************************************************/
/***** SKILL CSS *****/
/****************************************************************************/

@keyframes SkillFadeIn {
  0% {
    transform: translate3D(50px, 0, 0);
    opacity: 0;
  }

  100% {
    transform: none;
    opacity: 1;
  }
}

#skill-section {
  background: url('../img/background/skill-bg.png') no-repeat;
  background-size: cover;
  width: 100%;
}

#skill-section .round-title {
  width: fit-content;
  height: auto;
  margin: 0 auto 20px;
  padding: 8px 30px;
  border-radius: 30px;
  border: 2px solid var(--tiny-red);
  margin-top: -1px;
}

#skill-section .round-title .btn-title {
  color: var(--white);
  font-family: 'Sora Regular', sans-serif;
  font-size: 16px;
  line-height: 21px;
  text-transform: uppercase;
}

#skill-section h2 {
  font-family: 'Sora Semi Bold', sans-serif;
  color: var(--white);
  font-size: 50px;
  line-height: 65px;
  text-align: center;
  margin-bottom: 80px;
}

.loading {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 20px 0 73px;
}

.loading .line-box {
  width: 390px;
  height: 50px;
  border-radius: 5px;
  border: 1px solid var(--light-blue);
  background: var(--light-purple);
  padding: 10px;
  margin: 0 40px 60px 0;
  position: relative;
}

.loading .line-box:last-child {
  margin-bottom: 170px;
}

.loading .line-box:hover {
  box-shadow: 0px 0px 32px 5px rgba(251, 126, 106, 0.18);
}

.loading .line-box .line {
  width: 330px;
  height: 30px;
  display: inline-flex;
  padding: 9px 170px 6px 40px;
  align-items: center;
  border-radius: 5px;
  border: 1px solid var(--tiny-white);
  background: linear-gradient(90deg, #F57D69 0%, #FC7E6A 100%);
}

.loading .line-box:hover .line {
  box-shadow: 0px 0px 50px 0px rgba(249, 126, 105, 0.46);
}

.loading .line-box .line p {
  color: var(--white);
  font-family: 'Sora Regular', sans-serif;
  font-size: 17px;
  line-height: 23px;
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.loading .line-box .line.p-75 {
  animation: progressBar75 1.5s ease-in forwards;
}

.loading .line-box .line.p-80 {
  animation: progressBar80 1.5s ease-in forwards;
}

.loading .line-box .line.p-85 {
  animation: progressBar85 1.5s ease-in forwards;
}

.loading .line-box .line.p-90 {
  animation: progressBar90 1.5s ease-in forwards;
}

@keyframes progressBar75 {
  0% {
    width: 0%;
  }

  100% {
    width: 75%;
  }
}

@keyframes progressBar80 {
  0% {
    width: 0%;
  }

  100% {
    width: 80%;
  }
}

@keyframes progressBar85 {
  0% {
    width: 0%;
  }

  100% {
    width: 85%;
  }
}

@keyframes progressBar90 {
  0% {
    width: 0%;
  }

  100% {
    width: 90%;
  }
}

.loading.visible {
  animation: SkillFadeIn 700ms ease-in forwards;
}

@media screen and (max-width: 1800px) {
  .loading {
    padding: 0 20px 0 60px;
  }

  .loading .line-box {
    width: 260px;
  }

  #skill-section h2 {
    font-size: 38px;
    line-height: 32px;
  }
}

@media screen and (max-width: 1300px) {
  .loading .line-box {
    width: 300px;
  }
}

@media screen and (max-width: 1100px) {
  .loading {
    padding: 0 10px;
  }

  .loading .line-box {
    width: 250px;
  }
}

@media screen and (max-width: 900px) {
  .loading .line-box {
    width: 200px;
  }

  .loading .line-box .line {
    width: 150px;
    padding-right: 150px;
    padding-left: 15px;
  }

  #skill-section h2 {
    font-size: 30px;
    line-height: 28px;
  }
}

@media screen and (max-width: 750px) {
  .loading .line-box {
    width: 200px;
    margin: 0 25px 30px 0;
    padding-right: 0;
  }

  .loading .line-box .line {
    width: 100%;
    padding-right: 100px;
    padding-left: 5px;
  }

  .loading .line-box .line p {
    font-size: 14px;
  }

  .loading .line-box:last-child {
    margin-bottom: 120px;
  }
}

@media screen and (max-width: 600px) {
  .loading .line-box {
    width: 45%;
    margin: 0 20px 30px 0;
    padding-right: 0;
  }

  .loading .line-box:nth-child(even) {
    margin-right: 0;
  }

  .loading .line-box .line {
    padding-right: 0;
  }

  .loading .line-box:last-child {
    margin-bottom: 80px;
  }
}

/****************************************************************************/
/***** XP CSS *****/
/****************************************************************************/

@keyframes SkillFadeIn {
  0% {
    transform: translate3D(50px, 0, 0);
    opacity: 0;
  }

  100% {
    transform: none;
    opacity: 1;
  }
}

#xp-section {
  background: url('../img/background/xp-bg.png') no-repeat;
  background-size: cover;
  width: 100%;
  padding: 135px 122px 0;
}

#xp-section h2 {
  color: var(--black);
  font-family: 'Sora Bold', sans-serif;
  font-size: 57px;
  line-height: 66px;
}

.work-xp {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}

.work-xp .xp-block {
  width: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.work-xp .black-divider {
  width: 100%;
  border: 1px solid var(--black);
  opacity: 0.2;
  margin: 20px 0;
}

.work-xp .black-divider:last-child {
  margin-bottom: 122px;
}

.xp-block .left-xp,
.xp-block .right-xp {
  width: 50%;
}

.xp-block .left-xp p {
  color: var(--black);
  font-family: 'Sora Bold', sans-serif;
  font-size: 26px;
  line-height: 57px;
  position: relative;
  padding-left: 50px;
  width: calc(100% - 50px);
}

.xp-block .left-xp p::before {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 27px;
  height: 27px;
  background: url('../img/icon/bag.svg') no-repeat;
  background-size: cover;
}

.xp-block:hover .left-xp p::before {
  background: url('../img/icon/bag-active.svg') no-repeat;
}

.xp-block .left-xp span {
  color: rgba(20, 19, 19, 0.80);
  font-family: 'Sora Regular', sans-serif;
  font-size: 18px;
  line-height: 33px;
  opacity: 0.6;
  display: block;
  width: calc(100% - 50px);
}

.xp-block .right-xp p {
  color: rgba(20, 19, 19, 0.80);
  font-family: 'Sora Regular', sans-serif;
  font-size: 19px;
  line-height: 33px;
  opacity: 0.45;
  padding-left: 50px;
  position: relative;
}

.xp-block .right-xp p:not(.desc)::before {
  content: "";
  position: absolute;
  top: 4px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 22px;
  height: 22px;
  background: url('../img/icon/clock.svg') no-repeat;
  background-size: cover;
}

.xp-block:hover .right-xp p:not(.desc)::before {
  background: url('../img/icon/clock-active.svg') no-repeat;
}

.xp-block .right-xp {
  position: relative;
  --icon-url: url('../img/icon/more.svg');
  --icon-height: 22px;
}

.xp-block .right-xp::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  bottom: 0;
  left: calc(100% - 50px);
  width: 25px;
  height: var(--icon-height);
  background: var(--icon-url) no-repeat;
  background-size: cover;
}

.xp-block .right-xp .desc-xp {
  display: none;
  margin-top: 20px;
}

.xp-block .right-xp .desc-xp p {
  color: rgba(0, 0, 0, 0.80);
  font-family: 'Sora Regular', sans-serif;
  font-size: 18px;
  line-height: 18px;
  opacity: 1;
  margin-bottom: 10px;
  font-weight: bold;
}

.xp-block .right-xp .desc-xp .contexte {
  font-weight: inherit;
  margin: 10px 0;
}

.xp-block .right-xp .desc-xp p:first-child {
  margin-bottom: 20px;
  font-weight: inherit;
}

.xp-block .right-xp .desc-xp ul {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 90px;
}

.xp-block .right-xp .desc-xp ul li {
  position: relative;
  color: rgba(0, 0, 0, 0.80);
  font-family: 'Sora Regular', sans-serif;
  font-size: 16px;
}

.xp-block .right-xp .desc-xp ul li:last-child {
  margin-bottom: 20px;
}

.xp-block .right-xp .desc-xp ul li::before {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  bottom: 0;
  left: -40px;
  width: 22px;
  height: 22px;
  background: url('../img/icon/check.svg') no-repeat;
  background-size: cover;
  filter: opacity(0.7);
}

.work-xp.visible {
  animation: SkillFadeIn 700ms ease-in forwards;
}

@media screen and (max-width: 1800px) {
  #xp-section {
    padding: 135px 60px 0;
  }

  #xp-section h2 {
    font-size: 38px;
    line-height: 32px;
  }
}

@media screen and (max-width: 1400px) {
  .xp-block .left-xp p {
    font-size: 20px;
  }
}

@media screen and (max-width: 1100px) {
  .xp-block .left-xp p {
    font-size: 18px;
    line-height: 30px;
  }

  #xp-section {
    padding: 135px 20px 0;
  }

  .xp-block .left-xp p {
    padding-left: 40px;
  }

  .xp-block .left-xp p::before {
    top: 0;
  }

  .xp-block .right-xp p {
    padding-left: 40px;
    font-size: 16px;
  }

  .xp-block .left-xp span {
    font-size: 16px;
  }
}

@media screen and (max-width: 900px) {
  #xp-section h2 {
    font-size: 30px;
    line-height: 28px;
  }
}

@media screen and (max-width: 750px) {
  .xp-block {
    flex-direction: column;
  }

  .xp-block .left-xp,
  .xp-block .right-xp {
    width: 100%;
  }

  .xp-block .right-xp::after {
    top: -22px;
    left: inherit;
    right: 0;
  }

  .xp-block .right-xp .desc {
    padding-left: 0;
  }

  .xp-block .right-xp .desc-xp ul {
    padding-left: 42px;
  }

  .xp-block .right-xp .desc-xp {
    margin-top: 25px;
  }

  .xp-block .right-xp .desc-xp p:first-child {
    margin-bottom: 25px;
  }

  .xp-block .right-xp .desc-xp p {
    margin-bottom: 15px;
  }

  .xp-block .left-xp p {
    width: 100%;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 600px) {
  #xp-section {
    padding-top: 80px;
  }

  .xp-block .left-xp span,
  .xp-block .right-xp p {
    font-size: 14px;
  }

  .xp-block .right-xp::after {
    right: 5px;
  }
}

/****************************************************************************/
/***** SCHOOL CSS *****/
/****************************************************************************/

@keyframes SchoolFadeIn {
  0% {
    transform: translate3D(50px, 0, 0);
    opacity: 0;
  }

  100% {
    transform: none;
    opacity: 1;
  }
}

#school-section {
  background-color: var(--white);
  width: 100%;
  padding: 133px 140px;
}

#school-section .round-title {
  border-radius: 30px;
  background: var(--tint-red);
  border: 2px solid var(--white);
  width: fit-content;
  margin: 0 auto;
  padding: 7px 30px;
}

#school-section .btn-title {
  color: var(--white);
  font-family: 'Sora Regular', sans-serif;
  font-size: 16px;
  line-height: 21px;
  text-transform: uppercase;
}

#school-section h2 {
  font-family: 'Sora Semi Bold', sans-serif;
  color: var(--black);
  font-size: 55px;
  line-height: 48px;
  text-align: center;
  margin: 30px 0 80px;
}

.school-card {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.card-content {
  width: 432px;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--white);
  margin-right: 70px;
  margin-bottom: 50px;
  position: relative;
  padding: 50px 45px;
}

.card-content:hover {
  box-shadow: 0px 22px 200px 0px rgba(0, 0, 0, 0.08);
}

.card-content::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 0;
  bottom: 0;
  left: 23px;
  width: 120px;
  height: 120px;
  fill: var(--tint-red);
  filter: drop-shadow(0px 13px 20px rgba(239, 108, 87, 0.41));
  background: url('../img/icon/red-round.svg') no-repeat;
  background-size: cover;
  z-index: 2;
}

.card-content::after {
  content: "";
  position: absolute;
  top: 52px;
  right: 0;
  bottom: 0;
  left: 59px;
  width: 48px;
  height: 48px;
  background: url('../img/icon/school.svg') no-repeat;
  background-size: cover;
  z-index: 3;
}

.card-title {
  color: var(--tint-black);
  font-family: 'Sora Bold', sans-serif;
  font-size: 26px;
  line-height: 32px;
  margin-top: 100px;
}

.card-desc {
  color: var(--black);
  font-family: 'Sora Regular', sans-serif;
  font-size: 22px;
  line-height: 32px;
}

.card-infos {
  width: 127px;
  height: auto;
  border-radius: 4px;
  background: var(--gray);
  padding: 0 15px;
  width: 100%;
  margin-top: 15px;
}

.card-infos span {
  opacity: 0.8;
  color: var(--tint-black);
  font-family: 'Sora Regular', sans-serif;
  font-size: 15px;
  line-height: 32px;
}

.card-content .gray-divider {
  width: 100%;
  border: 1px solid var(--black);
  opacity: 0.12;
  margin: 20px 0;
}

.school-card.visible {
  animation: SchoolFadeIn 700ms ease-in forwards;
}

@media screen and (max-width: 1300px) {
  #school-section {
    padding: 100px 50px;
  }

  .card-content {
    margin-right: 50px;
  }
}

@media screen and (max-width: 1100px) {
  #school-section {
    padding: 100px 20px;
  }

  .card-content {
    margin-right: 30px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 1000px) {
  #school-section {
    padding: 100px 10px;
  }

  .card-content {
    margin-right: 15px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 915px) {
  .card-content {
    margin-right: 0;
  }

  #school-section h2 {
    font-size: 30px;
    line-height: 28px;
  }
}

@media screen and (max-width: 500px) {
  .school-card {
    flex-direction: column;
  }

  .card-content {
    width: 350px;
  }

  #school-section .round-title {
    padding: 8px 20px;
  }

  #school-section .round-title .btn-title {
    font-size: 14px;
  }

  .card-title {
    font-size: 20px;
  }

  .card-desc {
    font-size: 18px;
  }
}

/****************************************************************************/
/***** PROJECT CSS *****/
/****************************************************************************/

@keyframes ProjectFadeIn {
  0% {
    transform: translate3D(50px, 0, 0);
    opacity: 0;
  }

  100% {
    transform: none;
    opacity: 1;
  }
}

#project-section {
  background-color: var(--tiny-gray);
  width: 100%;
  padding: 130px 150px;
}

#project-section h2 {
  font-family: 'Sora Semi Bold', sans-serif;
  color: var(--black);
  font-size: 55px;
  line-height: 65px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 80px;
}

.project-card {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.project-content {
  width: 250px;
  height: auto;
  background: transparent;
  border-radius: 34px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  margin-right: 70px;
  margin-bottom: 50px;
  padding: 42px 50px;
}

.project-content:hover {
  background: var(--white);
}

.project-content img {
  width: 140px;
  height: 120px;
  object-fit: contain;
}

.project-card.visible {
  animation: ProjectFadeIn 700ms ease-in forwards;
}

@media screen and (max-width: 1300px) {
  #project-section {
    padding: 100px 50px;
  }

  .project-content {
    margin-right: 50px;
  }
}

@media screen and (max-width: 1000px) {
  #project-section {
    padding: 100px 20px;
  }

  .project-content {
    margin-right: 30px;
    margin-bottom: 30px;
  }

  #project-section h2 {
    font-size: 30px;
    line-height: 28px;
  }
}

@media screen and (max-width: 600px) {
  #project-section {
    padding: 100px 10px;
  }

  #project-section h2 {
    margin-bottom: 50px;
  }

  .project-card {
    flex-direction: column;
  }

  .project-content {
    margin-right: 0;
  }
}

/****************************************************************************/
/***** TECHNO CSS *****/
/****************************************************************************/

@keyframes TechnoFadeIn {
  0% {
    transform: translate3D(50px, 0, 0);
    opacity: 0;
  }

  100% {
    transform: none;
    opacity: 1;
  }
}

#techno-section {
  background-color: var(--tiny-gray);
  width: 100%;
  padding: 130px 100px;
  position: relative;
}

#techno-section::before {
  content: '';
  width: 100%;
  height: 1px;
  opacity: 0.12;
  border-top: 1px solid var(--black);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.entitled-techno {
  display: flex;
  justify-content: space-between;
}

#techno-section h2 {
  font-family: 'Sora Semi Bold', sans-serif;
  color: var(--black);
  font-size: 55px;
  line-height: 65px;
  margin-bottom: 80px;
}

.entitled-techno p {
  color: var(--black);
  font-family: 'Sora Regular', sans-serif;
  font-size: 18px;
  line-height: 21px;
  position: relative;
  right: 80px;
  top: 20px;
}

.entitled-techno p::before {
  content: '';
  width: 50px;
  height: 50px;
  border-radius: 25px;
  opacity: 0.05;
  background: var(--black);
  position: absolute;
  top: -17px;
  left: -23px;
  right: inherit;
  bottom: 0;
}

.entitled-techno p::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -25px;
  bottom: 0;
  left: inherit;
  width: 18px;
  height: 18px;
  background: url('../img/icon/arrow.svg') no-repeat;
  background-size: cover;
}

.entitled-techno a {
  width: fit-content;
  height: fit-content;
}

.entitled-techno p:hover {
  text-decoration: underline;
}

.techno-card {
  display: flex;
  flex-wrap: wrap;
}

.techno-content {
  width: 47%;
  height: auto;
  background: var(--white);
  border-radius: 34px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  display: flex;
  margin-bottom: 50px;
  padding: 30px;
}

.techno-content:nth-child(odd) {
  margin-right: 3%;
}

.left-techno {
  width: 35%;
}

.right-techno {
  width: 65%;
}

.techno-content img {
  width: 200px;
  object-fit: contain;
  border-radius: 16px;
}

.right-techno span {
  display: block;
  color: var(--tiny-black);
  font-family: 'Sora Regular', sans-serif;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.7;
}

.right-techno .card-title,
.right-techno .card-desc {
  margin-top: 25px;
  color: var(--tiny-black);
  font-family: 'Sora Regular', sans-serif;
  font-size: 16px;
  line-height: 19px;
}

.right-techno .card-title {
  font-family: 'Sora Semi Bold', sans-serif;
  font-size: 22px;
  line-height: 36px;
}

.right-techno .card-desc {
  text-overflow: ellipsis;
  overflow: hidden;
  /*white-space: nowrap;*/
}

.right-techno .card-link {
  margin-top: 25px;
  width: fit-content;
  height: auto;
  border-radius: 6px;
  background: var(--tint-red);
  padding: 15px 40px;
  transition: details 0.5s ease-in-out;
}

.right-techno .card-link p {
  color: var(--white);
  font-family: 'Sora Semi Bold', sans-serif;
  font-size: 18px;
  line-height: 19px;
}

.right-techno .card-link:hover {
  background-color: var(--white);
  border: 1px solid var(--tint-red);
  margin-top: 23px;
}

.right-techno .card-link:hover p {
  color: var(--tint-red);
}

.techno-card.visible {
  animation: TechnoFadeIn 700ms ease-in forwards;
}


@media screen and (max-width: 1800px) {
  #techno-section {
    padding: 130px 50px;
  }

  .left-techno {
    margin-right: 30px;
  }
}

@media screen and (max-width: 1600px) {
  #techno-section {
    padding: 100px 30px;
  }

  .techno-content {
    width: 48%;
    height: 300px;
  }

  .techno-content:nth-child(odd) {
    margin-right: 2%;
  }

  .entitled-techno p {
    right: 62px;
  }

  .right-techno .card-link {
    padding: 15px 30px;
  }

  .right-techno .card-title {
    font-size: 20px;
    /*height: 70px;*/
    overflow: hidden;
  }

  .left-techno {
    width: 30%;
    margin-right: 0;
  }

  .right-techno {
    width: 70%;
    padding-left: 50px;
  }
}

@media screen and (max-width: 1400px) {
  .right-techno .card-link {
    padding: 15px 20px;
  }

  .entitled-techno p {
    right: 60px;
  }

  .right-techno {
    padding-left: 80px;
  }
}

@media screen and (max-width: 1200px) {
  #techno-section h2 {
    font-size: 40px;
    line-height: 35px;
    margin-bottom: 50px;
  }

  .entitled-techno p {
    top: 3px;
  }

  .entitled-techno p {
    right: 55px;
  }

  .left-techno {
    display: flex;
  }

  .techno-content img {
    width: 170px;
  }

  .right-techno {
    padding-left: 70px;
  }
}

@media screen and (max-width: 1100px) {
  #techno-section {
    padding: 100px 15px;
  }

  .techno-content {
    padding: 30px 15px;
  }

  .entitled-techno p {
    right: 50px;
  }
}

@media screen and (max-width: 1000px) {
  .techno-content img {
    width: 175px;
  }

  .right-techno {
    padding-left: 75px;
  }
}

@media screen and (max-width: 900px) {
  .techno-content img {
    width: 160px;
  }

  .left-techno {
    margin-right: 20px;
  }

  .right-techno .card-link p {
    font-size: 16px;
    line-height: 16px;
  }

  .right-techno {
    padding-left: 65px;
  }
}

@media screen and (max-width: 900px) {
  .entitled-techno {
    flex-direction: column;
    justify-content: inherit;
    align-items: center;
    margin-bottom: 100px;
  }

  #techno-section h2 {
    font-size: 30px;
    line-height: 28px;
    margin-bottom: 0;
    text-align: center;
  }

  .entitled-techno p {
    right: 0;
    top: 40px;
  }

  .techno-card {
    flex-direction: column;
    align-items: center;
  }

  .techno-content {
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin-right: 0 !important;
    height: inherit;
    margin-bottom: 30px;
  }

  .left-techno,
  .right-techno {
    width: 100%;
    margin-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .right-techno {
    margin-top: 30px;
    padding-left: 0;
  }

  .right-techno .card-title {
    text-align: center;
    height: inherit;
  }

  .right-techno .card-desc {
    width: 100%;
    text-align: center;
  }

  .right-techno .card-link p {
    font-size: 18px;
    line-height: 18px;
  }
}

/****************************************************************************/
/***** CONTACT CSS *****/
/****************************************************************************/

@keyframes ContactFadeIn {
  0% {
    transform: translate3D(50px, 0, 0);
    opacity: 0;
  }

  100% {
    transform: none;
    opacity: 1;
  }
}

#contact-section {
  background-color: var(--dark-blue);
  width: 100%;
  padding: 130px 120px 200px;
  display: flex;
}

.left-contact {
  width: 40%;
  margin-right: 140px;
}

.right-contact {
  width: 60%;
}

#contact-section .round-title {
  border-radius: 30px;
  background: var(--tint-red);
  width: fit-content;
  border: 1px solid var(--tiny-red);
  padding: 7px 30px;
}

#contact-section .btn-title {
  color: var(--white);
  font-family: 'Sora Regular', sans-serif;
  font-size: 16px;
  line-height: 21px;
  text-transform: uppercase;
}

#contact-section h2 {
  font-family: 'Sora Semi Bold', sans-serif;
  color: var(--white);
  font-size: 57px;
  line-height: 74px;
  margin-top: 20px;
}

.left-contact .contact-info {
  color: var(--tint-white);
  font-family: 'Sora Light', sans-serif;
  font-size: 17px;
  line-height: 30px;
  margin-top: 40px;
}

.left-contact a {
  color: var(--white);
  font-family: 'Sora Semi Bold', sans-serif;
  font-size: 34px;
  line-height: 51px;
  margin-top: 40px;
}

.left-contact a:hover {
  text-decoration: underline;
}

.right-contact .double-input {
  display: flex;
}

.right-contact .double-input input {
  color: var(--white);
  width: calc(50% - 20px);
  height: 77px;
  padding: 25px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.50);
  background: var(--tiny-blue);
  font-family: 'Sora Regular', sans-serif;
}

.right-contact .double-input input:first-child {
  margin-right: 40px;
}

.right-contact input.single-input {
  color: var(--white);
  width: 100%;
  height: 77px;
  padding: 25px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.50);
  background: var(--tiny-blue);
  margin: 40px 0;
  font-family: 'Sora Regular', sans-serif;
}

.right-contact textarea {
  color: var(--white);
  width: 100%;
  height: 260px;
  padding: 25px;
  min-height: 180px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.50);
  background: var(--tiny-blue);
  margin-bottom: 50px;
  font-family: 'Sora Regular', sans-serif;
}

.right-contact .submit-input {
  width: 100%;
  padding: 23px 0px;
  border-radius: 13px;
  border: 1px solid var(--white);
  background: var(--tint-red);
  color: var(--white);
  font-family: 'Sora Bold', sans-serif;
  font-size: 24px;
  line-height: 30px;
}

.right-contact .submit-input:hover {
  background-color: var(--white);
  border: 1px solid var(--tint-red);
  color: var(--tint-red);
}

.message-success,
.message-error {
  display: none;
  text-align: center;
  margin-top: 20px;
  font-size: 18px;
  color: white;
  font-family: 'Sora Light';
}

.right-contact.visible {
  animation: ContactFadeIn 700ms ease-in forwards;
}

@media screen and (max-width: 1800px) {
  #contact-section {
    padding: 130px 60px 200px;
  }
}

@media screen and (max-width: 1400px) {
  #contact-section h2 {
    font-size: 40px;
    line-height: 35px;
    margin-top: 35px;
  }

  .left-contact a {
    font-size: 30px;
    line-height: 32px;
  }

  .right-contact .submit-input {
    font-size: 22px;
    line-height: 20px;
  }
}

@media screen and (max-width: 1050px) {
  #contact-section {
    padding: 100px 30px 150px;
  }

  .left-contact {
    margin-right: 100px;
  }

  .right-contact .double-input {
    flex-direction: column;
  }

  .right-contact .double-input input {
    width: 100%;
  }

  .right-contact .double-input input:first-child {
    margin-right: 0;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 800px) {
  #contact-section {
    padding: 100px 15px 150px;
    flex-direction: column;
  }

  #contact-section h2 {
    font-size: 30px;
    line-height: 28px;
    text-align: center;
    margin-top: 30px;
  }

  #contact-section .round-title {
    margin: 0 auto;
  }

  .left-contact,
  .right-contact {
    width: 100%;
    margin: 0;
  }

  .left-contact .contact-info {
    text-align: center;
  }

  .left-contact a {
    font-size: 25px;
    line-height: 22px;
    text-align: center;
  }

  .right-contact {
    margin-top: 50px;
  }
}

/****************************************************************************/
/***** FOOTER CSS *****/
/****************************************************************************/

footer {
  width: 100%;
  height: 100px;
  background: var(--tint-blue);
  padding: 30px 120px;
  position: relative;
}

.comeback {
  position: absolute;
  top: -100px;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: fit-content;
  height: 50px;
  cursor: pointer;
  background: var(--tint-red);
  margin: 0 auto;
  padding: 15px 40px;
  border-radius: 6px;
  transition: details 0.5s ease-in-out;
}

.comeback img {
  position: relative;
  top: 3px;
  margin-right: 15px;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.back-red {
  display: none;
}

.comeback p {
  color: var(--white);
  font-family: 'Sora Semi Bold', sans-serif;
  font-size: 18px;
  line-height: 19px;
  position: relative;
}

.comeback:hover {
  background-color: var(--white);
  border: 1px solid var(--tint-red);
}

.comeback:hover .back-red {
  display: block;
}

.comeback:hover .back-white {
  display: none;
}

.comeback:hover p {
  color: var(--tint-red);
}

.footer-content {
  display: flex;
  justify-content: space-between;
}

.footer-content span {
  color: var(--red);
  font-family: 'Sora Bold', sans-serif;
  font-size: 22px;
  line-height: 48px;
}

.footer-content p {
  color: var(--tint-gray);
  font-family: 'Sora Light', sans-serif;
  font-size: 18px;
  line-height: 23px;
  display: flex;
  margin-top: 12px;
}

.footer-content a {
  color: var(--tint-gray);
  font-family: 'Sora Light', sans-serif;
  font-size: 18px;
  line-height: 23px;
  text-decoration: underline;
  margin: 0 5px;
  position: relative;
}

@media screen and (max-width: 1400px) {
  footer {
    padding: 30px;
  }
}

@media screen and (max-width: 1200px) {
  footer {
    height: inherit;
    padding: 30px 15px;
  }

  .footer-content {
    flex-direction: column;
    justify-content: inherit;
    align-items: center;
  }
}

@media screen and (max-width: 800px) {
  .footer-content span {
    font-size: 20px;
    line-height: 20px;
  }

  .footer-content p {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 20px;
  }

  .footer-content a {
    margin: 15px 0 10px;
  }
}

@media screen and (max-width: 500px) {
  .comeback {
    width: calc(100% - 30px);
    padding: 15px;
    justify-content: center;
  }
}

/****************************************************************************/
/***** ADDS CSS *****/
/****************************************************************************/

div a[target="_blank"]:not(.no-add) {
  display: none !important;
}