:root {
    --top-height: 20px;
    --header-height: 84px;
    --footer-height: 50px;

    --red: #E20F18;
    --white: #ffffff;
    --green: #009742;
}
* {
    box-sizing: border-box;
}

html, body, .container {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    background-color: #5291EF;;
    display: flex;
    flex-direction: column;
    align-items: center;
}


main {
    height: 100%;
    width: 60%;
    display: flex;
    flex-direction: column;
    background-color: white;
}

main > .header {
    height: auto;
    background-color: white;
    display: flex;
    flex-direction: column;

}

main > .header > .nav-top {
    width: 100%;
}
main > .header > .nav-top > img {
    width: 100%;
    height: auto;
}

main > .header > .nav-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
main > .header > .nav-bottom > span { margin-bottom: 10px; }

main > .header > .nav-bottom > .nav-social{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
}

main > .content {
    height: calc(100% - var(--header-height) - var(--footer-height));
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

main > .content > .whoweare {
    padding: 20px;
    display: flex;
    align-items: center;
}

main > .content > .whoweare > .story {
    width: 60%;
    font-size: 90%;
}
main > .content > .whoweare > .story-image {
    width: 40%;
    text-align: center;
}
main > .content > .whoweare > .story-image > img {
    height: auto;
    width: 75%;
}

main > .content > .services {
    padding: 20px;
    display: flex;
    justify-content: space-around;
}
main > .content > .services ul {
    margin: 0; padding: 0; list-style:none;
}
main > .content > .services ul li {
    font-weight: 600;
    font-size: 75%;
    margin-bottom: 5px;
    position: relative;
    padding-left: 10px;
}

main > .content > .services ul li::before {
    content: "";
    display: block;
    width: 6px; /* Adjust circle size */
    height: 6px;
    background-color: var(--green); /* Change to your desired color */
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%); /* Center circle vertically */
    left: 0;
}

main > .content > .gallery {
    padding: 20px;
    min-height: 100px;
}

main > .content > .gallery ul { margin:0px; padding:0px; list-style-type:none; }
main > .content > .gallery ul li { display:inline; padding:0px; }
main > .content > .gallery ul li img { margin:0px 10px 10px 0px; outline: 1px solid var(--main-color-dark);}

main > .content > .contacts {
    padding: 20px;
    display: flex;
    flex-direction: column;
}
main > .content > .contacts > .contacts-address { text-align: center; }
main > .content > .contacts > .contacts-other {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
main > .content > .contacts > .contacts-other > .contacts-other-item {
    display: flex;
    column-gap: 10px;
    align-items: center;
}


main > .content > .vspace {
    min-height: 50px;
}

main > .content > .tag {
    position: relative;
    padding-left: 50px;
    height: 30px;
}
main > .content > .tag > span {
    position: absolute;
    font-size: 150%;
    font-style: italic;
    text-transform: capitalize;
    color: #666666;
    bottom: -5px;
    margin-top: 20px;
}

main > .content > .divider {
    height: 6px;
    min-height: 6px;
    display: flex;
    width: 100%;
}
main > .content > .divider > .d1 {
    background-color: var(--green);
    width: 8px;
}
main > .content > .divider > .d2 {
    background-color: var(--white);
    width: 8px;
}
main > .content > .divider > .d3 {
    background-color: var(--red);
    width: calc(100% - 16px);
}

main > .footer {
    height: var(--footer-height);
    background-color: var(--green);
    color:  var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}