.contentWeb {
    width: 100%;
    position: relative;
}

.section2 {
    width: 100%;
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section2 h2 {
    font: normal normal 400 50px/60px Accia Piano;
}

.contentWeb .sectionExperience {
    width: 100%;
    position: relative;
    background-color: #162748;
    padding-inline: 10rem;
    padding-block: 15%;
}

.sectionExperience .headSect3 {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.headSect3 .contentLeft {
    width: 30%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.headSect3 .contentRight {
    width: 65%;
    position: relative;
}

.contentLeft .dotWhite {
    width: 12px;
    height: 12px;
    border-radius: 80px;
    background-color: #fff;
}

.contentLeft p {
    font: normal normal 400 16px/22px Accia Piano;
    color: #fff;
}

.contentRight h2 {
    font: normal normal 400 40px/44px Accia Piano;
    color: #fff;
}

/* Grids */

.contentSect3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0px 0px;
    margin-top: 112px;
}

.grids {
    position: relative;
    overflow: hidden;
}

.gridsInner {
    position: relative;
    width: 100%;
    height: 100%;
}

.grids:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
}

.grids:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
}

.grids:nth-child(3) {
    grid-area: 1 / 3 / 2 / 4;
}

.grids:nth-child(4) {
    grid-area: 2 / 1 / 3 / 2;
}

.grids:nth-child(5) {
    grid-area: 2 / 2 / 3 / 3;
}

.grids:nth-child(6) {
    grid-area: 2 / 3 / 3 / 4;
}

.gridsWrapper {
    width: 100%;
    position: relative;
    border: 1px solid #fff;
    height: 300px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.5s ease;
}

.gridsWrapper img {
    width: 55px;
}

.gridsWrapper h2 {
    font: normal normal 400 24px/30px Avenir;
    color: #fff;
}

.gridsWrapper.first,
.videoHide.first,
.videoHide.first video
{
    border-radius: 9px 0 0 9px;
}

.gridsWrapper.third,
.videoHide.third,
.videoHide.third video {
    border-top-right-radius: 9px;
}

.gridsWrapper.fifth,
.videoHide.fifth,
.videoHide.fift video {
    border-bottom-left-radius: 9px;
}

.gridsWrapper.six,
.videoHide.six,
.videoHide.six video {
    border-bottom-right-radius: 9px;
}

.videoHide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    z-index: 1;
    border: 1px solid #fff;
}

.videoHide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.grids:hover .gridsWrapper {
    opacity: 0;
    pointer-events: none;
}

.grids:hover .videoHide {
    opacity: 1;
    pointer-events: auto;
}