.experience {
  .page-begin {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 48px;

    .begin-title {
      font-family: "Roboto";
      font-weight: 700;
      font-size: 44px;
    }

    .begin-text {
      font-family: "Roboto";
      font-size: 16px;
      max-width: 50%;
      padding: 16px 0;
    }
  }

  .exp-list {
    display: flex;
    flex-direction: column;
    padding: 0 78px;

    .exp-container {
      display: flex;
      position: relative;
      gap: 84px;

      .exp-left {
        width: 48%;
        display: flex;
        flex-direction: column;
        font-family: "Roboto";
        font-size: 14px;

        .space-list {
          display: flex;
          flex-direction: column;
          padding: 32px 0;
          gap: 12px;

          .space {
            display: flex;
            gap: 8px;

            img {
              width: 16px;
              height: 16px;
            }
          }
        }

        .space-actions {
          display: flex;
          align-items: center;
          gap: 32px;
          padding-bottom: 32px;

          .button-exp {
            padding: 12px 22px;
            border: 1px solid black;
            transition: all 0.1s ease-in-out;
            cursor: pointer;

            &:hover {
              background-color: black;
              color: white;
            }
          }

          .reserver {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 80px;
            transition: all 0.1s ease-in-out;

            div {
              padding-bottom: 2px;
            }

            &:hover {
              width: 86px;
              text-decoration: underline;
              cursor: pointer;
            }

          }
        }

        .exp-title {
          display: flex;
          justify-content: end;
          text-align: end;
          font-family: "Roboto";
          font-weight: 700;
          font-size: 26px;
          padding-left: 14%;
          padding-top: 16px;
        }

        .info-split {
          display: flex;
          gap: 24px;
          padding: 32px 0;

          .split-text {
            img {
              width: 36px;
            }

            display: flex;
            flex-direction: column;
            gap: 16px;

            .split-title {
              font-size: 18px;
              font-weight: 700;
            }
          }
        }

        .img {
          padding: 12px 0 84px 0;
          width: 100%;

          img {
            width: 100%;
            height: 100%;
            object-fit: cover;
          }
        }
      }

      .exp-progress {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;

        .line {
          width: 1px;
          background-color: #DAA520;
          height: 100%;

          &.little {
            height: 20px;
          }
        }

        .round {
          min-width: 13px;
          min-height: 13px;
          border-radius: 50px;
          background-color: #DAA520;
        }
      }

      .exp-right {
        width: 48%;
        display: flex;
        flex-direction: column;
        font-family: "Roboto";
        font-size: 14px;

        .exp-title {
          display: flex;
          justify-content: start;
          text-align: start;
          font-family: "Roboto";
          font-weight: 700;
          font-size: 26px;
          padding-right: 14%;
          padding-top: 16px;
        }

        .info-split {
          display: flex;
          gap: 24px;
          padding: 32px 0;

          .split-text {
            img {
              width: 36px;
            }

            display: flex;
            flex-direction: column;
            gap: 16px;

            .split-title {
              font-size: 18px;
              font-weight: 700;
            }
          }
        }

        .img {
          padding: 12px 0 84px 0;
          width: 100%;

          img {
            width: 100%;
            height: 100%;
            object-fit: cover;
          }
        }
      }
    }
  }

  .services {
    display: flex;
    margin: 124px 78px 64px 78px;
    font-family: "Roboto";

    .decouvrir {
      width: 45%;
      font-weight: 700;
      font-size: 36px;
      padding-right: 5%;
    }

    .services-list {
      width: 50%;

      .services-split {
        display: flex;
        gap: 24px;
        padding: 32px 0;

        .split-text {
          display: flex;
          flex-direction: column;
          gap: 36px;
          justify-content: space-between;

          .up {
            img {
              width: 36px;
            }

            display: flex;
            flex-direction: column;
            gap: 16px;

            .split-title {
              font-size: 18px;
              font-weight: 700;
            }
          }

          .more {
            padding: 12px 22px;
            border: 1px solid black;
            transition: all 0.1s ease-in-out;
            cursor: pointer;
            width: fit-content;

            &:hover {
              background-color: black;
              color: white;
            }
          }
        }
      }
    }
  }

  .big-image {
    margin: 0 78px;
    padding-bottom: 124px;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
}

/* Tablet and small desktop */
@media (max-width: 1024px) {
  .experience {
    .exp-list {
      padding: 0 40px;
      
      .exp-container {
        gap: 40px;
      }
    }
    
    .services {
      margin: 80px 40px 40px 40px;
      
      .decouvrir {
        font-size: 28px;
      }
    }
    
    .big-image {
      margin: 0 40px;
      padding-bottom: 80px;
    }
  }
}

/* Large mobile / small tablet */
@media (max-width: 768px) {
  .experience {
    .page-begin {
      .begin-title {
        font-size: 32px;
      }
      
      .begin-text {
        max-width: 80%;
        font-size: 14px;
      }
    }
    
    .exp-list {
      padding: 0 20px;
      
      .exp-container {
        flex-direction: column;
        gap: 20px;
        
        .exp-left, .exp-right {
          width: 100%;
          
          .exp-title {
            padding-left: 0;
            padding-right: 0;
            justify-content: start;
            text-align: start;
            font-size: 22px;
          }
          
          .info-split {
            flex-direction: column;
            gap: 16px;
          }
          
          .img {
            padding: 12px 0 40px 0;
          }
        }
        
        .exp-progress {
          flex-direction: row;
          align-items: center;
          order: -1;
          
          .line {
            width: 100%;
            height: 1px;
            
            &.little {
              width: 20px;
              height: 1px;
            }
          }
        }
      }
    }
    
    .services {
      flex-direction: column;
      margin: 60px 20px 40px 20px;
      
      .decouvrir {
        width: 100%;
        font-size: 24px;
        padding-right: 0;
        padding-bottom: 20px;
      }
      
      .services-list {
        width: 100%;
        
        .services-split {
          flex-direction: column;
          gap: 16px;
        }
      }
    }
    
    .big-image {
      margin: 0 20px;
      padding-bottom: 60px;
    }
  }
}

/* Mobile */
@media (max-width: 480px) {
  .experience {
    .page-begin {
      padding-bottom: 32px;
      
      .begin-title {
        font-size: 28px;
      }
      
      .begin-text {
        max-width: 90%;
        font-size: 14px;
        padding: 12px 0;
      }
    }
    
    .exp-list {
      padding: 0 16px;
      
      .exp-container {
        .exp-left, .exp-right {
          .exp-title {
            font-size: 20px;
            padding-top: 12px;
          }
          
          .space-actions {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
            
            .reserver {
              &:hover {
                width: 80px;
              }
            }
          }
          
          .img {
            padding: 12px 0 32px 0;
          }
        }
      }
    }
    
    .services {
      margin: 40px 16px 32px 16px;
      
      .decouvrir {
        font-size: 22px;
      }
      
      .services-list {
        .services-split {
          .split-text {
            gap: 24px;
          }
        }
      }
    }
    
    .big-image {
      margin: 0 16px;
      padding-bottom: 40px;
    }
  }
}