@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

.fontJakarta {
    font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

.aboutTitle {
    font-size: clamp(1.625rem, 0.2663rem + 5.4348vw, 2.875rem);
}

.cardAbout {
    padding: 2rem;
    color: white;
    border-radius: 20px !important;
    box-shadow: 0 1.5rem 4rem rgba(22, 28, 45, 0.1) !important;
    justify-content: space-between;
    gap: 8rem;
}

.cardSubtitle {
    color: #a25812;
    font-size: 18px;
}

.cardTitle {
    font-size: 24px;
}

.card-body-list li {
    list-style-type: disc;
}
/* The card */

@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;600&display=swap");

.aboutSection {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.aboutCard {
    font-family: "Oswald", sans-serif;
    position: relative;
    height: 400px;
    width: 350px;
    margin: 10px 0;
    transition: ease all 2.3s;
    perspective: 1200px;
}

.aboutCard:hover .cover {
    transform: rotateX(0deg) rotateY(-180deg);
}

.aboutCard:hover .cover:before {
    transform: translateZ(30px);
}

.aboutCard:hover .cover:after {
    background-color: black;
}

.aboutCard:hover .cover h1 {
    transform: translateZ(100px);
}

.aboutCard:hover .cover .price {
    transform: translateZ(60px);
}

.aboutCard:hover .cover a {
    transform: translateZ(-60px) rotatey(-180deg);
}

.cover {
    position: absolute;
    height: 100%;
    width: 100%;
    transform-style: preserve-3d;
    transition: ease all 2.3s;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.cover:before {
    content: "";
    position: absolute;
    border: 5px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    transition: ease all 2.3s;
    transform-style: preserve-3d;
    transform: translateZ(0px);
}

.cover:after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 2;
    transition: ease all 1.3s;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 140px;
}

.cover.item-a {
    background-image: url("/styles_2024/img/clockIllustration.jpg");
}

.cover.item-b {
    background-image: url("/styles_2024/img/securityIllustration.jpg");
}

.cover.item-c {
    background-image: url("/styles_2024/img/cloudIllustration.jpg");
}

.cover h1 {
    font-weight: 600;
    position: absolute;
    bottom: 55px;
    left: 40px;
    color: white;
    transform-style: preserve-3d;
    bottom: 30px;
    transition: ease all 2.3s;
    z-index: 3;
    font-size: 2.3em;
    transform: translateZ(0px);
}

.cover .price {
    font-weight: 200;
    position: absolute;
    top: 55px;
    right: 50px;
    color: white;
    transform-style: preserve-3d;
    transition: ease all 2.3s;
    z-index: 4;
    font-size: 2em;
    transform: translateZ(0px);
}

.card-back {
    position: absolute;
    height: 100%;
    width: 100%;
    background: white;
    transform-style: preserve-3d;
    transition: ease all 2.3s;
    transform: translateZ(-1px);
    display: flex;
    justify-content: center;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
    border-width: 5px;
    border-style: solid;
    border-image: linear-gradient(to right, #4797ff, #025acb) 1;
    flex-direction: column;
}

.card-back h3 {
    transform-style: preserve-3d;
    transition: ease transform 2.3s, ease background 0.5s;
    transform: translateZ(-1px) rotatey(-180deg);
    background: transparent;
    font-weight: 200;
    font-size: 1.3em;
    padding: 14px 32px;
    outline: none;
    text-decoration: none;
    line-height: 2rem;
    color: #343a40;
}

.aboutCard.flipped .cover {
    transform: rotateX(0deg) rotateY(-180deg);
}

.aboutCard.flipped .cover:before {
    transform: translateZ(30px);
}

.aboutCard.flipped .cover:after {
    background: rgba(0, 0, 0, 0.6);
}

.aboutCard.flipped .cover h1 {
    transform: translateZ(100px);
}

.aboutCard.notflipped .cover {
    transform: rotateX(0deg) rotateY(0deg);
}

.aboutCard.notflipped .cover:after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 2;
    transition: ease all 1.3s;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 140px;
}

.aboutCard.notflipped .cover h1 {
    font-weight: 600;
    position: absolute;
    bottom: 55px;
    left: 40px;
    color: white;
    transform-style: preserve-3d;
    bottom: 30px;
    transition: ease all 2.3s;
    z-index: 3;
    font-size: 2.3em;
    transform: translateZ(0px);
}

.aboutCard.notflipped .cover .price {
    font-weight: 200;
    position: absolute;
    top: 55px;
    right: 50px;
    color: white;
    transform-style: preserve-3d;
    transition: ease all 2.3s;
    z-index: 4;
    font-size: 2em;
    transform: translateZ(0px);
}
