* {
    margin: 0;
    padding: 0;
    font-family: "Cabin", sans-serif;
}

body {
    background-color: #fffefd;
}

:root {
    --PrimaryColor: #A4CD3A;
    --SecondColor: #125439;
    --ThirdColor: #D9D9D9;
    --FourColor: #07814e;
    --WhiteMain: #FFFFFF;
    --Silver: #555555;
}

header {
    background-color: #053320;
    width: 100%;
}

.container-main {
    width: 70%;
    display: flex;
    justify-content: space-between;
    margin: 120px auto;
}

.main-container-about {
    background-color: var(--SecondColor);
    padding: 30px 0;
}

.bar-separator {
    height: 5px;
    background-color: var(--PrimaryColor);
    width: 120px;
    margin: 30px 0;
}

.bar-separator-title {
    height: 5px;
    background-color: var(--PrimaryColor);
    width: 120px;
    margin: 40px auto;
}

.bar-separator-share {
    height: 5px;
    background-color: var(--PrimaryColor);
    width: 120px;
    margin: 20px auto;
}

.left-content-main {
    width: 100%;
}

.left-content-about {
    padding-right: 80px;
}

.left-content-about img {
    width: 18%;
    margin-bottom: 20px;
}

.left-content-about h1 {
    font-size: 40px;
    color: var(--WhiteMain);
}

.left-content-about p {
    font-size: 18px;
    color: var(--WhiteMain);
}

.right-content-about img {
    width: 100%;
    border-radius: 20px;
}

.atlantica-title-services {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70%;
    text-align: center;
    margin: 100px auto;
}

.atlantica-title-services h1 {
    color: var(--FourColor);
    font-size: 40px;
}

.atlantica-title-services h4 {
    margin: 0 auto;
    color: var(--Silver);
    font-size: 18px;
    width: 80%;
}

.partnes img {
    width: 90%;
}

.left-content-about img {
    width: 16%;
    margin-bottom: 20px;
}

.btn-about a {
    display: inline-block;
    padding: 18px 24px;
    background-color: var(--PrimaryColor);
    color: var(--SecondColor);
    margin-top: 5%;
    text-decoration: none;
    border-radius: 20px;
}

.btn-about a:hover {
    transition: 0.3s;
    background-color: var(--WhiteMain);
    scale: 0.9;
}

.right-facilities {
    width: 60%;
}

.right-facilities img {
    width: 20%;
    margin-bottom: 20px;
}

.right-facilities h1 {
    font-size: 40px;
    color: var(--FourColor);
}

.left-facilities img {
    width: 90%;
    border-radius: 20px;
}

.accordeon-infos summary::marker {
    color: var(--FourColor);
}

summary {
    padding: 10px 10px 10px 0px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 26px;
    color: var(--SecondColor);
    list-style: none;
    display: flex;
    /* also removes the list marker */
    align-items: center;
    font-weight: bold;
}

summary::before {
    content: '';
    width: 18px;
    height: 10px;
    background: url('https://uploads.sitepoint.com/wp-content/uploads/2023/10/1697699669arrow.svg') no-repeat;
    background-size: contain;
    transition: 0.2s;
    margin-right: .75em;
}

details p {
    padding-right: 50px;
    text-align: justify;
}

details[open]>summary::before {
    transform: rotate(180deg);
}

summary::-webkit-details-marker {
    display: none;
}

details[open] summary {
    border-radius: 5px 5px 0 0;
}

details li {
    list-style-type: none;
    margin: 10px 0;
}

details li:before {
    content: '\2022';
    margin: 0 14px;
    color: var(--FourColor)
}

.btn-contact a {
    background-color: var(--FourColor);
    padding: 16px 24px;
    border-radius: 10px;
    display: inline-block;
    color: var(--WhiteMain);
    text-decoration: none;
    margin-top: 30px;
}

.btn-contact a:hover {
    transition: 0.3s;
    background-color: var(--SecondColor);
    scale: 0.9;
}

.bar-separator-2 {
    width: 100%;
    height: 10px;
    background-color: var(--PrimaryColor);
}

.btn-partnes {
    margin-top: 30px;
}

.btn-partnes a {
    background-color: #07814e;
    color: var(--WhiteMain);
    padding: 18px 24px;
    border-radius: 12px;
    text-decoration: none;
}

.btn-partnes a:hover {
    transition: 0.3s;
    background-color: var(--SecondColor);
    scale: 0.9;
}

.container-share {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

.container-share img {
    width: 35%;
}

.left-content-share {
    width: 60%;
    text-align: center;
}

.left-content-share h1 {
    font-size: 40px;
    color: var(--SecondColor);
    margin-top: 8%;
}

.left-content-share p {
    margin: auto auto;
    width: 50%;
    text-align: center;
}

.right-content-share img {
    width: 80%;
    margin-bottom: -4px;
}

.contact-main {
    background-color: var(--SecondColor);
}

.contact-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.right-contact-content img {
    width: 100%;
}

.icons-contact li {
    display: flex;
    align-items: center;
}

.icons-contact li p {
    color: var(--WhiteMain);
    font-size: 20px;
    width: 70%;
    margin-left: 30px;
}

.icons-contact li img {
    width: 50px;
    padding: 20px 0;
}

.left-contact-content {
    padding-left: 12%;
}

.left-contact-content h1 {
    font-size: 40px;
    color: var(--WhiteMain);
}

footer {
    background-color: var(--SecondColor);
}

.footer-main {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    color: var(--WhiteMain);
    padding: 40px 0;
    font-weight: 100;
}

.footer-main a {
    text-decoration: none;
    color: var(--PrimaryColor);
}