body {
    background-color: #4834d4;
    height: 100vh;
    margin: 0;
}

.experience-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cross-container {
    position: absolute;
    top: 20px;
    right: 20px;
}

.cross-icon {
    width: 30px;
    height: 30px;
}

.container-exp {
    margin: 0 auto;
    padding: 25px 40px;
    color: #000000;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    border-radius: 5px;
    cursor: pointer;
}

.container-exp:hover {
    animation-name: pulse;
    animation-duration: 2s;
}


h4 {
    margin: 0;
    margin-bottom: 20px;
    font-size: 42px;
    line-height: 44px;
    color: #ffffff;
    text-align: center;
    padding-top: 30px;
}

.company-icon {
    height: 50px;
    margin-bottom: 10px;
}


.container-exp h1 {
    font-size: 36px;
    line-height: 38px;
    font-weight: bolder;
    margin-bottom: 10px;
}

.container-exp h3 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 10px;
    font-weight: 900;
}


.container-exp p {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.container-exp span {
    font-size: 24px;
    line-height: 28px;
    font-weight: bolder;
}

.container-exp .exp-desc {
    margin-bottom: 20px;
    font-weight: 500;
}
@-webkit-keyframes pulse {
    from {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
  
    50% {
      -webkit-transform: scale3d(1.05, 1.05, 1.05);
      transform: scale3d(1.05, 1.05, 1.05);
    }
  
    to {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
  }
  
  @keyframes pulse {
    from {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
  
    50% {
      -webkit-transform: scale3d(1.05, 1.05, 1.05);
      transform: scale3d(1.05, 1.05, 1.05);
    }
  
    to {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
  }
  
  .pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
  }

@media (min-width: 0) and (max-width: 767px) {
    h4 {
        font-size: 28px;
        line-height: 30px;
        margin-bottom: 10px;
    }

    .container-exp {
        padding: 20px;
        width: 70%;
    }

    .container-exp h1 {
        font-size: 26px;
        line-height: 28px;
        font-weight: bolder;
        margin-bottom: 5px;
    }

    .container-exp h3 {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 5px;
        font-weight: 900;
    }

    .container-exp p {
        font-size: 14px;
        line-height: 16px;
        font-weight: 600;
    }

    .company-icon {
        height: 30px;
        margin-bottom: 10px;
    }
}