
.c-drive64-header {
    padding: 15px;
    height: 60vh;
    background: rgb(206,208,222);
    background: -moz-linear-gradient(180deg, rgba(206,208,222,1) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(206,208,222,1) 0%, rgba(255,255,255,1) 100%);
    background: linear-gradient(180deg, rgba(206,208,222,1) 0%, rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ced0de",endColorstr="#ffffff",GradientType=1);
    display: flex;
    align-items: end;
}

.c-drive64-header h1 {
    font-size: var(--sizeH1);
    color: var(--PrimaryBlue);
}

.parent-header-product {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}
    
.head-prod1 { 
    grid-area: 1 / 1 / 3 / 4; 
    
}
.head-prod2 { 
    grid-area: 1 / 3 / 3 / 5; 
    position: relative;
}
.head-prod3 { 
    grid-area: 1 / 5 / 3 / 6; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.head-prod1 p {
    text-transform: uppercase;
    margin-left: 10dvw;
    font-size: var(--sizeP);
}

.head-prod2 img {
    width: 80%;
    position: absolute;
}


.incline-20 {
    transform: rotate(-20deg);
    top: 20%;
    right: 0;
}

.specifications {
    padding-top: 10vh;
    padding-left: 20%;
}

.specifications h2{
    font-size: var(--sizeH3-big);
    font-weight: 300;
}

.specifications ul{
    font-size: var(--sizeP);
    font-weight: 300;
    list-style-type: none;
    margin-top: 5dvw;
}

.specifications ul li {
    margin-bottom: 1dvw;
} 

.specifications ul li i{
    margin-right: 15px;
} 

.c-drive-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.parent-cdrive-img {
    margin-top: 10vh;
    width: 50%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
}

.parent-cdrive-img img {
    width: 100%;
    object-fit: cover;

}

.cdrive1 { grid-area: 1 / 1 / 3 / 3; }
.cdrive2 { grid-area: 1 / 3 / 3 / 5; }
.cdrive3 { 
    grid-area: 3 / 1 / 5 / 3;
}
.cdrive4 { grid-area: 3 / 3 / 5 / 5; }
