@import url(./variables.css);

* {
    margin: 0;
}

body {
    background-color: var(--background-color);
}

.container {
    width: 1240px;
    margin: 0 auto;
    padding-bottom: 50px;
}

h1 {
    color: white;
    font-family: var(--accent-font);
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 50px;
}

.spaceFlex {
    display: flex;
    justify-content: space-between;
}

.firstTitle {
    margin-bottom: 80px;
}

.colFlex {
    width: 512px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.simpleText {
    color: #fff;
    font-family: var(--body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.pdfFlex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.pdfTitle {
    color: #fff;
    font-family: var(--body-font);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
}

.buttonType {
    display: flex;
    width: 330px;
    padding: 10px 0px;
    justify-content: center;
    color: #fff;
    background-color: var(--primary-color);
    font-family: var(--accent-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    text-decoration: none;
    border-radius: 5px;
}

.imgTitle {
    width: 400px;
}

.titleTowSection {
    margin: 60px 0px;
}

.flexSectionTitle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.firstLane {
    width: 190px;
}

.secondLane {
    width: 610px;
}

h2 {
    color: #fff;
    font-family: var(--body-font);
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
}

.contentFlexSpacing {
    display: flex;
    flex-direction: column;
    gap: 27px;
    width: 591px;
}

.miniFlexPadding {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 10px;
}

h3 {
    color: #fff;
    font-family: var(--accent-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
}

.contentButtonType {
    display: flex;
    width: 180px;
    padding: 10px;
    justify-content: center;
    border-radius: 5px;
    background: var(--primaire, #2f1d62);
    color: #fff;
    font-family: var(--body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    border: none;
    cursor: pointer;
}

.simpleContentText {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    color: #fff;
    text-overflow: ellipsis;
    font-family: var(--body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    max-height: 20px; /* Ajoutez une valeur appropriée pour la hauteur maximale */
    transition: max-height 2s ease; /* Ajoutez une transition en douceur */
}

.expandedContent .simpleContentText {
    -webkit-line-clamp: unset;
    max-height: 500px; /* Ajoutez une valeur appropriée pour la hauteur maximale lorsqu'il est étendu */
}

.newLane{
    margin-top: 40px;
}