@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700&family=Tilt+Prism&display=swap");

* {
  font-family: "Poppins", Oswald, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth !important;
}

:root {
  --primary-bg-color: #03101f;
  --secondary-bg-color: #0c283b;
  --thirt-bg-color: #0f3358;
  --color-text: #f1f1f1;
  --decoration-color: #5b7dcf;
}

html::-webkit-scrollbar {
  display: none;
}

html:focus-within {
  scroll-behavior: smooth;
}


html {
  overflow-x: hidden;
  background-color: var(--primary-bg-color);
  scroll-behavior: smooth;
}

section {
  min-height: 100vh;
  padding: 5rem 9% 2rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 9%;
  background-color: var(--primary-bg-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  opacity: 0;
  animation: fade_bottom 1.2s 1s forwards ease-out;
  user-select: none;
}

.brand {
  font-size: 1.5rem;
  color: var(--color-text);
  font-weight: 600;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
}

.brand img {
  width: 60px;
}

.navbar a {
  padding: 1.2rem;
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 600;
  position: relative;
}

.navbar a:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 0.125rem;
  bottom: 0;
  left: 0;
  background-color: var(--decoration-color);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.navbar a:hover,
.navbar a.active {
  color: var(--decoration-color);
  transition: all 0.2s ease-in-out;
}

.navbar a:hover:after,
.navbar a.active:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.menu-button {
  font-size: 2rem;
  color: var(--color-text);
  display: none;
}

.home-section {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-text);
}

.home-container h3 {
  font-size: 3.2rem;
  font-weight: 700;
}

.home-container h3>span {
  color: var(--decoration-color);
}

.home-container h3:nth-of-type(1) {
  animation: fade_left 1.2s 1s forwards ease-out;
  opacity: 0;
}

.home-container h3:nth-of-type(2) {
  margin-bottom: 1.5rem;
  animation: fade_left 1.2s 1.7s forwards ease-out;
  opacity: 0;
}

.home-container p {
  margin-bottom: 2.5rem;
  animation: fade_left 1.2s 2s forwards ease-out;
  opacity: 0;
}

.home-container h1 {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.3;
  animation: fade_left 1.2s 1.3s forwards ease-out;
  opacity: 0;
}

.home-container a {
  display: flex;
  width: max-content;
  padding: 1rem 2.5rem;
  border-radius: 15px;
  background-color: var(--decoration-color);
  box-shadow: 0px 0px 30px var(--secondary-bg-color);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  animation: fade_left 1.2s 2.3s forwards ease-out;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.home-container a:hover {
  box-shadow: none;
  transition: all 0.2s ease-in-out;
}

.home-picture {
  min-width: 10%;
  height: 100%;
  animation: fade_right 1.2s 1.3s forwards ease-out;
  opacity: 0;
  transform: translateX(5rem);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* @keyframes floating {
  50% {
    padding-bottom: 5rem;
  }

  100% {
    padding-bottom: 0rem;
  }
} */

.home-picture img {
  width: 80%;
  animation: floating 4s 2.1s infinite ease-in-out;
  border-radius: 50%;
  object-fit: contain;
  mix-blend-mode: color-dodge;
}

.social-media {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.social-media a {
  color: var(--color-text);
  font-size: 18px;
  opacity: 0;
}

.social-media a:nth-of-type(1) {
  animation: fade_up 10s 1s infinite ease-out;
}

.social-media a:nth-of-type(2) {
  animation: fade_up 10s 1.2s infinite ease-out;
}

.social-media a:nth-of-type(3) {
  animation: fade_up 10s 1.4s infinite ease-out;
}

.social-media a:nth-of-type(4) {
  animation: fade_up 10s 1.6s infinite ease-out;
}

.scroll-dots {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}

.scroll-dots a {
  width: 15px;
  height: 15px;
  background-color: var(--color-text);
  border-radius: 50%;
  opacity: 0;
}

.scroll-dots a.active {
  background-color: var(--decoration-color);
}

.scroll-dots a:nth-of-type(1) {
  animation: fade_right 1s 1s forwards ease-out;
}

.scroll-dots a:nth-of-type(2) {
  animation: fade_right 1s 1.2s forwards ease-out;
}

.scroll-dots a:nth-of-type(3) {
  animation: fade_right 1s 1.4s forwards ease-out;
}

.scroll-dots a:nth-of-type(4) {
  animation: fade_right 1s 1.6s forwards ease-out;
}

.scroll-dots a:nth-of-type(5) {
  animation: fade_right 1s 1.8s forwards ease-out;
}

.next-section {
  width: max-content;
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  margin: auto;

  display: flex;
  justify-content: center;

  opacity: 0;
  animation: fade_bottom 1.2s 1s forwards ease-out;
  cursor: pointer;
}

.next-section span a {
  color: var(--color-text);
}

.next-section span {
  font-size: 1.4rem;
  animation: growing 4s 2.1s infinite ease-in-out;
}

/** MODAL SECTION */

.modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
  animation: fade_in 0.5s forwards;
  user-select: none;
}

.modal-logo {
  width: 800px;
  transform: rotate(22deg);
  opacity: 0.05;
  position: absolute;
  top: 25%;
  left: 45%;
}

.modal-content {
  position: relative;
  background-color: var(--secondary-bg-color);
  margin: 15% auto;
  padding: 1.5rem;
  border: 1px solid #888;
  width: 70%;
  height: 80%;
  overflow: hidden;
  border-radius: 15px;
  color: var(--color-text);
  
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.5);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  margin: 0;
}

.close {
  color: #aaa;
  font-size: 48px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 0px;
  right: 20px;
}

.modal-header .close:hover,
.modal-header .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal-content .modal-body {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content .left-side {
  width: 50%;
  padding: 2rem;
}

.modal-content .right-side {
  width: 50%;
  font-size: large;
}

.modal-content .right-side h3{
  font-size: 1.5rem;
  margin-top: 1rem;
}

.modal-content .right-side ul {
  list-style: none;
  padding: 0;
  margin-left: 1.5rem;
}

.modal-content .left-side img {
  width: 90%;
  height: auto;
  border-radius: 15px;
}

/** ABOUT SECTION START */

.about {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background-color: var(--secondary-bg-color);
  color: var(--color-text);
}

.about .about-image {
  width: 40%;
  height: 800;
  position: relative;
  padding: 10% 0 15% 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.central-circle {
  width: 300px;
  height: 300px;
  position: absolute;
  background-color: #f1f1f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5%;
  box-shadow: 0px 0px 50px #fff;
}

.central-circle img {
  width: 100%;
}

.circle {
  position: absolute;
  width: 70%;
  height: 78%;
  background-color: var(--decoration-color);
  border-radius: 50%;
}

.circle1 {
  transform: translate(-150px, -150px);
}

.circle2 {
  transform: translate(150px, 150px);
}

.about-content .about-header {
  font-size: 4.5rem;
}

.about-header span {
  color: var(--decoration-color);
  margin-left: 0.8rem;
}

.about-content {
  width: 90%;
  padding-left: 5%;
}

.about-content h2 {
  text-align: left;
  line-height: 1.2;
}

.about-content h3 {
  font-size: 2.6rem;
}

.about-content p {
  font-size: 1.2rem;
  margin: 2rem 0 3rem;
}

/*********************************************************************************************************************/
/** CUT 1 SECTION */
/*********************************************************************************************************************/

.cut1 {
  width: 100%;
  height: 40vh;
  background-image: url('../images/backCut1.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.cut1 .picture {
  width: 100%;
  height: 100%;
  background-color: #000000b6;
  overflow: hidden;
  z-index: 2;
}

.cut1 .picture img {
  width: 5cm;
}

.cut1::before {
  content: "";
  position: absolute;
  top: -82%;
  width: 110%;
  height: 100%;
  background-color: var(--secondary-bg-color);
  transform: rotate(-5deg);
  left: -5%;
  z-index: 5;
}

.cut1::after {
  content: "";
  position: absolute;
  bottom: -82%;
  width: 110%;
  height: 100%;
  background-color: var(--secondary-bg-color);
  transform: rotate(-5deg);
  right: -5%;
  z-index: 5;
}

.cut1 .cut-shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000000b6;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #ffffff;
}

.cut1 .cut-shadow img {
  width: 80px;
}

/** -------------------------------------------------------------------- */
/** PRODUCTS SECTION */
/** -------------------------------------------------------------------- */
.products {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background-color: var(--secondary-bg-color);
  color: var(--color-text);
  flex-direction: column;
}

.products-header {
  font-size: 3.5rem;
}

.products-header span {
  color: var(--decoration-color);
  margin-left: 0.8rem;
}

.products-container{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.products-item {
  width: 400px;
  height: max-content;
  background-color: var(--primary-bg-color);
  padding: 1rem;
  border-radius: 15px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  user-select: none;
}

.products-item:hover {
  transform: scale(1.05);
  transition: all 0.4s ease-in-out;
}

.products-item img {
  width: 210px;
}

.products-item p {
  font-size: 1.5rem;
  margin: 1rem 0;
  color: var(--color-text);
  font-weight: 500;
}
.products-item button {
  padding: 0.5rem 1.5rem;
  border-radius: 10px;
  background-color: var(--decoration-color);
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.products-item button:hover {
  background-color: var(--color-text);
  color: var(--decoration-color);
  transition: all 0.2s ease-in-out;
}

/** -------------------------------------------------------------------- */
/** KNOWING SECTION */
/** -------------------------------------------------------------------- */
.knowing {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background-color: var(--secondary-bg-color);
  color: var(--color-text);
  flex-direction: column;
}

.knowing-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.knowing-header {
  font-size: 3.5rem;
}

.knowing-header span {
  color: var(--decoration-color);
  margin-left: 0.8rem;
}

.knowing-item {
  display: flex;
  width: 350px;
  align-items: start;
  flex-direction: column;
  padding: 1rem;
  background-color: var(--primary-bg-color);
  border-radius: 15px;
  transition: all 0.4s ease-in-out;
}

.knowing-item:hover {
  transform: scale(1.05);
  transition: all 0.4s ease-in-out;
}

.knowing-item:hover p:nth-of-type(1) {
  overflow: visible;
}

.knowing-item h3 {
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: .3rem;
  gap: 5px;
}

.knowing-item h3 img {
  width: 33px;
}

.knowing-item p:nth-of-type(1) {
  width: 100%;
  height: 5px;
  background-color: #073c5f;
  position: relative;
  transition: all .4s ease-in-out;
  overflow: hidden;
}

.knowing-item.nodejs:hover p span {
  transition: all .4s ease-in-out;
  box-shadow: 0 0 8px #83CD29;
}

.knowing-item.reactjs:hover p span {
  transition: all .4s ease-in-out;
  box-shadow: 0 0 8px #61DAFB;
}

.knowing-item.angularjs:hover p span {
  transition: all .4s ease-in-out;
  box-shadow: 0 0 8px #db3131;
}

.knowing-item.javascript:hover p span {
  transition: all .4s ease-in-out;
  box-shadow: 0 0 8px #F0DB4F;
}

.knowing-item.laravel:hover p span {
  transition: all .4s ease-in-out;
  box-shadow: 0 0 8px #FD4F31;
}

.knowing-item.css3:hover p span {
  transition: all .4s ease-in-out;
  box-shadow: 0 0 8px #1572B6;
}

.knowing-item.mongodb:hover p span {
  transition: all .4s ease-in-out;
  box-shadow: 0 0 8px #46A037;
}

.knowing-item.mysql:hover p span {
  transition: all .4s ease-in-out;
  box-shadow: 0 0 8px #00618A;
}

.knowing-item.sql:hover p span {
  transition: all .4s ease-in-out;
  box-shadow: 0 0 8px #0d82b4;
}

.knowing-item.python:hover p span {
  transition: all .4s ease-in-out;
  box-shadow: 0 0 8px #FFE05C;
}

.knowing-item.c-char:hover p span {
  transition: all .4s ease-in-out;
  box-shadow: 0 0 8px #570961;
}

.knowing-item.html:hover p span {
  transition: all .4s ease-in-out;
  box-shadow: 0 0 8px #EF652A;
}

.knowing-item.git:hover p span {
  transition: all .4s ease-in-out;
  box-shadow: 0 0 8px #F05133;
}

.knowing-item.java:hover p span {
  transition: all .4s ease-in-out;
  box-shadow: 0 0 8px #9b2811;
}

.knowing-item.java p span {
  position: absolute;
  width: 75%;
  height: 5px;
  background-color: #9b2811;
  text-align: right;
  transition: all .4s ease-in-out;
}

.knowing-item.git p span {
  position: absolute;
  width: 75%;
  height: 5px;
  background-color: #F05133;
  text-align: right;
  transition: all .4s ease-in-out;
}

.knowing-item.html p span {
  position: absolute;
  width: 75%;
  height: 5px;
  background-color: #EF652A;
  text-align: right;
  transition: all .4s ease-in-out;
}

.knowing-item.nodejs p span {
  position: absolute;
  width: 75%;
  height: 5px;
  background-color: #83CD29;
  text-align: right;
  transition: all .4s ease-in-out;
}

.knowing-item.reactjs p span {
  position: absolute;
  width: 85%;
  height: 5px;
  background-color: #61DAFB;
  text-align: right;
  transition: all .4s ease-in-out;
}

.knowing-item.angularjs p span {
  position: absolute;
  width: 85%;
  height: 5px;
  background-color: #f03a3a;
  text-align: right;
  transition: all .4s ease-in-out;
}

.knowing-item.javascript p span {
  position: absolute;
  width: 83%;
  height: 5px;
  background-color: #F0DB4F;
  text-align: right;
  transition: all .4s ease-in-out;
}

.knowing-item.laravel p span {
  position: absolute;
  width: 83%;
  height: 5px;
  background-color: #FD4F31;
  text-align: right;
  transition: all .4s ease-in-out;
}

.knowing-item.css3 p span {
  position: absolute;
  width: 63%;
  height: 5px;
  background-color: #1572B6;
  text-align: right;
  transition: all .4s ease-in-out;
}

.knowing-item.mysql p span {
  position: absolute;
  width: 77%;
  height: 5px;
  background-color: #00618A;
  text-align: right;
  transition: all .4s ease-in-out;
}

.knowing-item.sql p span {
  position: absolute;
  width: 77%;
  height: 5px;
  background-color: #0d82b4;
  text-align: right;
  transition: all .4s ease-in-out;
}

.knowing-item.mongodb p span {
  position: absolute;
  width: 70%;
  height: 5px;
  background-color: #46A037;
  text-align: right;
  transition: all .4s ease-in-out;
}

.knowing-item.python p span {
  position: absolute;
  width: 62%;
  height: 5px;
  background-color: #FFE05C;
  text-align: right;
  transition: all .4s ease-in-out;
}

.knowing-item.c-char p span {
  position: absolute;
  width: 62%;
  height: 5px;
  background-color: #570961;
  text-align: right;
  transition: all .4s ease-in-out;
}

.knowing-item p:nth-of-type(2) {
  width: 100%;
  text-align: right;
}

.knowing-item .about-header {
  font-size: 4.5rem;
}

.knowing-item a {
  display: flex;
  width: max-content;
  padding: 1rem 2.5rem;
  margin-top: 1rem;
  border-radius: 15px;
  background-color: var(--decoration-color);
  box-shadow: 0px 0px 30px var(--secondary-bg-color);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  transition: all 0.2s ease-in-out;
}

.knowing-item a:hover {
  box-shadow: none;
  transition: all 0.2s ease-in-out;
}

/*********************************************************************************************************************/
/** CUT 2 SECTION */
/*********************************************************************************************************************/

.cut2 {
  width: 100%;
  height: 40vh;
  background-image: url('../images/backCut2.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.cut2 .picture {
  width: 100%;
  height: 100%;
  background-color: #000000b6;
  overflow: hidden;
  z-index: 2;
}

.cut2 .picture img {
  width: 5cm;
}

.cut2::before {
  content: "";
  position: absolute;
  top: -82%;
  width: 110%;
  height: 100%;
  background-color: var(--secondary-bg-color);
  transform: rotate(5deg);
  left: -5%;
  z-index: 5;
}

.cut2::after {
  content: "";
  position: absolute;
  bottom: -82%;
  width: 110%;
  height: 100%;
  background-color: var(--secondary-bg-color);
  transform: rotate(5deg);
  right: -5%;
  z-index: 5;
}

.cut2 .cut-shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000000b6;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #ffffff;
}

.cut2 .cut-shadow img {
  width: 80px;
}

/** -------------------------------------------------------------------- */
/** PORTFOLIO SECTION */
/** -------------------------------------------------------------------- */
.portfolio {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background-color: var(--secondary-bg-color);
  color: var(--color-text);
  flex-direction: column;
}

.portfolio-header {
  font-size: 3.5rem;
}

.portfolio-header span {
  color: var(--decoration-color);
  margin-left: 0.8rem;
}

.portfolio-container{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.portfolio-container .project-card{
  width: 400px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 15px;
  background-color: var(--decoration-color);
  position: relative;
  overflow: hidden;
}

.portfolio-container .project-card .project-picture{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-container .project-card .project-picture img{
  width: 150%;
  height: 100%;
  transition: all .4s ease-in-out;
}

.portfolio-container .project-card .project-description{
  position: absolute;
  width: 100%;
  min-height: 25%;
  background-color: var(--primary-bg-color);
  bottom: 0;
  transform: translateY(100%);
  transition: all .4s ease-in-out;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

.portfolio-container .project-card .project-description a{
  color: #ffffff;
}

.portfolio-container .project-card:hover .project-picture img{
  transform: scale(1.1);
  transition: all .4s ease-in-out;
}

.portfolio-container .project-card:hover .project-description{
  transform: translateY(0);
  transition: all .4s ease-in-out;
}

.portfolio-container .project-card .project-description p{
  font-size: 12px;
}

.portfolio-container .project-card .project-description p:nth-child(2){
  width: 100%;
}

.portfolio-container .project-card .project-description p img{
  width: 20px;
}

.portfolio-container .project-card .project-description .decoration{
  position: absolute;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: .3;
  transform: rotate(15deg);
}

.portfolio-container .project-card .project-description .decoration img{
  width: 80px;
}


/*********************************************************************************************************************/
/** CUT 3 SECTION */
/*********************************************************************************************************************/

.cut3 {
  width: 100%;
  height: 40vh;
  background-image: url('../images/backCut3.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.cut3 .picture {
  width: 100%;
  height: 100%;
  background-color: #000000b6;
  overflow: hidden;
  z-index: 2;
}

.cut3 .picture img {
  width: 5cm;
}

.cut3::before {
  content: "";
  position: absolute;
  top: -82%;
  width: 110%;
  height: 100%;
  background-color: var(--secondary-bg-color);
  transform: rotate(-5deg);
  left: -5%;
  z-index: 5;
}

.cut3::after {
  content: "";
  position: absolute;
  bottom: -82%;
  width: 110%;
  height: 100%;
  background-color: var(--secondary-bg-color);
  transform: rotate(-5deg);
  right: -5%;
  z-index: 5;
}

.cut3 .cut-shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000000b6;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #ffffff;
}

.cut3 .cut-shadow img {
  width: 80px;
}

/*********************************************************************************************************************/
/** CUT 4 SECTION */
/*********************************************************************************************************************/

.cut4 {
  width: 100%;
  height: 40vh;
  background-image: url('../images/backCut4.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.cut4 .picture {
  width: 100%;
  height: 100%;
  background-color: #000000b6;
  overflow: hidden;
  z-index: 2;
}

.cut4 .picture img {
  width: 5cm;
}

.cut4::before {
  content: "";
  position: absolute;
  top: -82%;
  width: 110%;
  height: 100%;
  background-color: var(--secondary-bg-color);
  transform: rotate(5deg);
  left: -5%;
  z-index: 5;
}

.cut4::after {
  content: "";
  position: absolute;
  bottom: -82%;
  width: 110%;
  height: 100%;
  background-color: var(--secondary-bg-color);
  transform: rotate(5deg);
  right: -5%;
  z-index: 5;
}

.cut4 .cut-shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000000b6;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #ffffff;
}

.cut4 .cut-shadow img {
  width: 80px;
}

/** -------------------------------------------------------------------- */
/** KNOWING SECTION */
/** -------------------------------------------------------------------- */
.curses {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background-color: var(--secondary-bg-color);
  color: var(--color-text);
  flex-direction: column;
}

.curses-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.curses-header {
  font-size: 3.5rem;
}

.curses-header span {
  color: var(--decoration-color);
  margin-left: 0.8rem;
}

.curses-container .curse-item{
  width: 300px;
  height: 250px;
  background-color: var(--primary-bg-color);
  padding: 1rem;
  border-radius: 15px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.4s ease-in-out;
}

.curses-container .curse-item:hover{
  transform: scale(1.05);
  transition: all 0.4s ease-in-out;
}

.curses-container .curse-item .item-icons{
  width: 100%;
}

.curses-container .curse-item .item-icons img{
  width: 60px;
}

.curses-container .curse-item .udemy img{
  width: 50px;
  margin-top: 1rem;
  background-color: var(--decoration-color);
  padding: .2rem;
  border-radius: 5px;
}

/** -------------------------------------------------------------------- */
/** CONTACT SECTION */
/** -------------------------------------------------------------------- */
.contact {
  height: 30vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background-color: var(--primary-bg-color);
  color: var(--color-text);
}

.contact-header {
  font-size: 3.5rem;
}

.contact-header span {
  color: var(--decoration-color);
}

.contact-container{
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .2rem;
  flex-wrap: wrap;
  flex-direction: column;
  font-size: 28px;
}

.contact-container a{
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-container a span{
  margin-right: 1rem;
  font-size: 32px;
  color: var(--decoration-color);
}

.contact .right-side{
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.contact .right-side img{
  width: 80px;
}