@font-face {
    font-family: 'Inter Regular 18pt';
    src: url('../web/fonts/Inter_18pt-Regular.ttf');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Inter Bold 18pt';
    src: url('../web/fonts/Inter_18pt-Bold.ttf');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Inter ExtraBold 18pt';
    src: url('../web/fonts/Inter_18pt-ExtraBold.ttf');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Inter Black 24pt';
    src: url('../web/fonts/Inter_24pt-Black.ttf');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Inter ExtraLight 18pt';
    src: url('../web/fonts/Inter_18pt-ExtraLight.ttf');
    font-weight: 500;
    font-style: normal;
}

body {
    margin: 0;
    font-family: 'Inter Regular 18pt', sans-serif;
    background: white;
    color: #333;
}

header {
    background: #fff;
    color: #fff;
    padding: 1rem 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo {
    margin-left: 20px;
}

a.logo > img {
    height: 50px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    margin-left: 40px;
    padding: 0px 40px;
}

.nav-left, .nav-right {
    display: flex;
    align-items: baseline;
    gap: 40px;
}

.navbar a {
    position: relative;
    text-decoration: none;
    font-family: 'Inter Bold 18pt', sans-serif;
    color: #2d3142;
    font-weight: 500;
    padding-bottom: 4px;
}

.navbar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background: orange;
    transition: width 0.3s ease;
}

.navbar a:hover::after {
    width: 100%;
}

.navbar a.active::after {
    width: 100%;
}

.language {
    position: relative;
    margin-right: 40px;
}

.mobile-lang {
    display: none;
}

.menu-icon {
    display: none;
    font-size: 2.8rem;
    cursor: pointer;
    color: #2d3142;
    margin-right: 30px;
    position: relative;
    z-index: 9999 !important;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    z-index: 9000;
    top: 60px;
    right: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 160px;
}

.mobile-menu a {
    padding: 10px 0;
    font-family: 'Inter Bold 18pt', sans-serif;
    color: #2d3142;
    font-weight: 500;
    text-decoration: none;
    font-weight: 500;
}

.mobile-menu a:hover {
    color: orange;
}

.lang-menu, .mobile-lang-menu {
    display: none;
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    padding: 8px;
    border-radius: 4px;
    z-index: 999;
}

.lang-menu {
    top: 10px;
    left: 80%;
}

.lang-menu a,
.mobile-lang-menu a {
    display: block;
    padding: 5px 10px;
    color: #333;
    text-decoration: none;
}

.lang-menu a:hover,
.mobile-lang-menu a:hover {
    background: #eee;
}

h1 {
    font-family: 'Inter ExtraBold 18pt', sans-serif;
}

h2 {
    font-family: 'Inter Bold 18pt', sans-serif;
}

section.home-1 {
    background: white;
}

section.home-1 > .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    height: auto;
    background: #fff;
    flex-wrap: wrap;
    width: 80%;
    margin: 0 auto;
}

section.home-1 > .container > h1 {
    font-family: 'Inter Black 24pt', sans-serif;
    flex: 1 1 250px;
    background: #fff;
    font-size: 28pt;
    color: #2d3142;
    text-align: left;
}

section.home-1 > .container > p {
    flex: 2 2 250px;
    background: #fff;
    font-family: 'Inter Regular 18pt', sans-serif;
    font-size: 18pt;
    color: #2d3142;
}

section.home-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    background: #2d3142;
    padding: 0px 0 60px 0;
}

section.home-2 > .slideshow > .container {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
    height: 62px;
}

section.home-2 > .slideshow > .container > .arrow {
    height: 34px;
}

section.home-2 > .slideshow > .container > .arrow > img {
    height: 34px;
}

section.home-2 > .slideshow {
    width: 80%;
}

section.home-2 .slides-box {
}

section.home-2 .slide {
}

section.home-2 img.slide-image {
    width: 80vw;
    height: 50vh;
    object-fit: cover;
    object-position: 70% 50%;
}

section.home-3 {
    padding: 60px 0 60px 0;
    display: flex;
    align-items: center;
}

section.home-3 > .container {
    display: flex;
    align-items: center;
    height: auto;
    width: 80%;
    margin: 0 auto;
    flex-wrap: wrap;
}

section.home-3 > .container > .box {
    flex: 1;
    height: 450px;
}

section.home-3 > .container > .image {
    flex: 1 1 350px;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.home-3 > .container > .text {
    flex: 1 1 350px;
    background: #2d3142;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

section.home-3 > .container > .text > h2,
section.home-3 > .container > .text > p {
    color: white;
    padding-left: 30px;
    padding-right: 30px;
}

section.home-3 > .container > .text > h2 {
    margin-bottom: 0px;
}

section.home-3 > .container > .text > p {
    margin-top: 0px;
}

section.home-3 > .container > .text > button {
    padding: 5px;
    margin-left: 30px;
}

section.home-4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #2d3142;
    color: white;
    height: auto;
}

section.home-4 > * {
    width: 80%;
    margin: 0 auto;
}

section.home-4 > .text {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
    flex-wrap: wrap;
}

section.home-4 > .text > h1 {
    flex: 1 1 200px;
}

section.home-4 > .text > p {
    flex: 3 1 300px;
    padding-top: 10px;
}

section.home-4 > .thumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

section.home-4 > .thumbs > .service {
    flex: 1 1 calc(25% - 20px);
    max-width: calc(25% - 20px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section.home-4 > .thumbs > .service > img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

section.home-5 {
    display: flex;
    flex-direction: column;
}

section.home-5 > * {
    width: 80%;
    margin: 0 auto;
}

section.home-5 > .heading {
    display: flex;
    gap: 20px;
    font-family: 'Inter Bold 18pt', sans-serif;
    align-items: flex-start;
    padding-top: 30px;
    flex-wrap: wrap;
}

section.home-5 > .heading > h1 {
    flex: 1 1 150px;
    margin-top: 0px;
    min-width: fit-content;
}

section.home-5 > .heading > p {
    flex: 3 1 300px;
    margin-top: 0px;
    line-height: 1.4;
    padding-top: 10px;
}

section.home-5 > .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    align-items: stretch;
    flex-wrap: wrap;
}

section.home-5 > .container > .box {
    display: flex;
}

section.home-5 > .container > img {
    flex: 1 1 300px;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

section.home-5 > .container > .thumbs-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

section.home-5 > .container > .thumbs-container > .thumb {
    display: flex;
    gap: 20px;
    flex-wrap: wrap-reverse;
}

section.home-5 > .container > .thumbs-container > .thumb > * {
}

section.home-5 > .container > .thumbs-container > .thumb > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    flex: 1 1 200px;;
}

section.home-5 > .container > .thumbs-container > .thumb > .text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1 1 200px;
}

section.home-5 > .container > .thumbs-container > .thumb > .text-container > h4 {
    margin-top: 0;
    margin-bottom: 0;
}

section.home-6 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 60px;
}

section.home-6 > * {
    width: 80%;
}

section.home-6 > .container {
    display: flex;
    align-items: center;
    height: auto;
    margin: 0 auto;
    flex-wrap: wrap;
}

section.home-6 > .container > .box {
    flex: 1;
    height: 450px;
}

section.home-6 > .container > .image {
    flex: 1 1 350px;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.home-6 > .container > .image > img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

section.home-6 > .container > .text {
    flex: 1 1 350px;
    background: #2d3142;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

section.home-6 > .container > .text > h2,
section.home-6 > .container > .text > p {
    color: white;
    padding-left: 30px;
    padding-right: 30px;
}

section.home-6 > .container > .text > h2 {
    margin-bottom: 0px;
}

section.home-6 > .container > .text > p {
    margin-top: 0px;
}

section.home-6 > .container > .text > a {
    padding: 5px;
    margin-left: 30px;
    text-decoration: none;
}

.orange-btn {
    background-color: orange;
    color: #2d3142;
    border: none;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Inter Bold 18pt', sans-serif;
    transition: background 0.3s;
    width: 150px;
    height: 40px;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.orange-btn:hover {
    background-color: darkorange;
}

.orange-btn > * {
    padding: 10px;
}

.orange-btn.blue {
    background-color: #2d3142;
    color: white;
}

.download-btn {
    text-decoration: none;
}

img.btn-arrow {
    height: 21px;
    width: 21px;
}

/* Footer */

footer {
    background: #222;
    color: #fff;
    padding: 1rem 0;
    width: 100%;
}

footer {
    background: #2d3142;
    color: white;
    display: flex;
    justify-content: center;
}

footer > .container {
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

footer > .container > .footer-col {
    flex: 1 1 200px;
}

footer > .container > .footer-logo > a > img {
    width: 200px;
    height: auto;
    margin-top: 23px;
}

footer > .container > .footer-links > h4,
footer > .container > .footer-address > h4 {
    margin-bottom: 20px;
    font-family: 'Inter Bold 18pt', sans-serif;
}

footer > .container > .footer-links > ul {
    list-style: none;
    padding: 0 0 0 3px;
    margin: 0;
}

footer > .container > .footer-links > ul > li {
    margin-bottom: 16px;
}

footer > .container > .footer-links > ul > li > a {
    color: white;
    text-decoration: none;
}


footer > .container > .footer-links > ul > li > a:hover {
    color: orange;
}

footer > .container > .footer-address > p {
    line-height: 1.8;
    padding: 0 0 0 3px;
    margin-top: -4px;
    vertical-align: top;
}

footer > .container > .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    margin-top: 23px;
}

footer > .container > .footer-contact > a.linkedin {
    flex: 1;
}

footer > .container > .footer-contact > a.contact-button {
    background: white;
    color: #2d3142;
    text-decoration: none;
    font-weight: 600;
    height: 50px;
    min-height: 50px;
    width: 160px;
    font-size: 1.2em;
    font-family: 'Inter Bold 18pt', sans-serif;
    display:  flex;
    justify-content: center;
    align-items: center;
    flex: 1.5;
    margin-top: 20px;
}

footer > .container > .footer-contact > a.contact-button:hover {
    background: orange;
}

footer > .container > .footer-contact > a.contact-button > img {
    padding-left: 10px;
}

footer > .container > .footer-contact > .wrapper {
    flex: 5;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

footer > .container > .footer-contact > .wrapper > p {
    font-size: 1.1em;
    font-family: 'Inter ExtraLight 18pt';
}

/* Services */

section.services > * {
    width: 80%;
}

section.services {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section.services > .header {
    height: auto;
    width: 100%;
    background: #2d3142;
    margin: 0 0 40px 0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0 10px 0;
}


section.services > .header > p {
    padding: 0 20px 0 20px;
    width: 80%;
}

section.services > .thumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    box-sizing: border-box;
}

section.services > .thumbs > .service {
    flex: 1 1 calc(25% - 20px);
    max-width: calc(25% - 20px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section.services > .thumbs > .service > img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

section.services > .content {
    margin-bottom: 40px;
}

/* References */
section.references {
    display: flex;
    flex-direction: column;
    align-items: center;
}

section.references > * {
    width: 80%;
}

section.references > .filter-container {
    display: flex;
    justify-content: flex-end;
}

section.references > .filter-container > label {
    padding: 0 20px 0 20px;
}

section.references > .filter-container > select {
    width: 150px;
    font-size: 1rem;
    border: 2px solid #ccc;
    background-color: white;
    color: #333;
    appearence: none;
    -webkit-appearence: none;
    -moz-appearence: none;
    outline: none;
}

section.references > .filter-container > select:focus {
    border-color: #888;
}

section.references > .thumbs {
    display: grid;
    gap: 5px;
    width: 100%;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    margin: 40px 10px 40px 10px;
}

section.references > .thumbs > .item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1; /* maintain square */
}

section.references > .thumbs > .item > a > img,
section.references > .thumbs > .item > a > .no-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

section.references > .thumbs > .item > a > .title {
    position: absolute;
    bottom: 0;
    width: 100%;
    min-height: 62px;
    background: rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    color: white;
    padding: 8px 12px;
    font-size: 1.2rem;
    font-family: 'Inter Bold 18pt';
    box-sizing: border-box;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.references > .thumbs > .item > a > .black {
    color: #333;
}

/* Reference */
section.reference {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section.reference > * {
    width: 80%;
}

section.reference > .header {
    position: relative;
    width: 100%;
    height: 460px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

section.reference > .header > .primary-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section.reference > .header > .primary-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% 50%;
    display: block;
}

section.reference > .header > .primary-image > .no-image-background {
    background: #2d3142;
    width: 100%;
    height: 100%;
}

section.reference > .header > h1 {
    position: absolute;
    bottom: 30px;
    width: 80%;
    color: white;
    margin-left: auto;
    margin-right: auto;
}

section.reference > .content {
    width: 60%;
    margin-bottom: 40px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
}

section.reference > .content > .text {
    display: flex;
    flex-direction: column;
    flex: 4;
}

section.reference > .content > .text > p {
    margin-top: 0;
}

section.reference > .content h3 {
    font-family: 'Inter Bold 18pt';
}

section.reference > .content > .parameters {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 20px;
}

section.reference > .container {
    width: 100%;
    margin-bottom: 50px;
}

section.reference > .container > .slideshow {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 12px;
    scroll-behavior: smooth;
}

section.reference > .container > .slideshow.single-image {
    justify-content: center;
}

section.reference > .container > .slideshow > img {
    flex: 0 0 auto;
    width: clamp(300px, 45vw, 700px);
    height: auto;
    scroll-snap-align: start;
    object-fit: cover;
}

section.reference > .container > .arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding-top: 40px;
}

section.reference > .container > .arrows > .arrow {
    border: none;
    color: white;
    width: 34px;
    height: 34px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.reference > .container > .arrows > .arrow.left {
}

section.reference > .container > .arrows > .arrow.right {
}

/* News */

section.news-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

section.news-list > * {
    width: 80%;
}

section.news-list > .news > p.date {
    font-size: 1.0em;
}

/* About Us */
section.about-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

section.about-us > * {
    width: 80%;
}

/* Our Team */

section.our-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

section.our-team > * {
    width: 80%;
}

section.our-team > .thumbs {
    /*display: grid;
    gap: 5px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    margin: 40px 10px 40px 10px;*/
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 60px;
    margin: 20px 0 20px 0;
}

section.our-team > .thumbs > .employee {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

section.our-team > .thumbs > .employee > img {
    height: 150px;
}

section.our-team > .thumbs > .employee > p > .orange {
    color: orange;
}

section.our-team > .thumbs > .employee > p > .blue {
    color: #222e64;
}

/* Contact page */

section.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
}

section.contact > * {
    width: 80%;
}

section.contact > .info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

section.contact > .info > .box {
    background: #2d3142;
    height: 180px;
    flex: 1 1 100px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

section.contact > .info > .box > h4,
section.contact > .info > .box > p {
    margin: 0;
    text-align: center;
}

section.contact > .info > .box > img {
    flex: 1;
}

section.contact > .info > .box > h4 {
    flex: 1;
}

section.contact > .info > .box > p {
    flex: 2;
}

section.contact > .map {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0 20px 0;
}

section.contact > .map > iframe {
    width: 100%;
    height: 450px;
}

section.contact > .form {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section.contact > .form > * {
    width: 50%;
}

section.contact > .form > form {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

section.contact > .form > form > .form-group {
    display: flex;
    flex-direction: column;
}

section.contact > .form > form > .form-group > label {
    margin-bottom: 5px;
    font-weight: 600;
}

section.contact > .form > form > .form-group > input,
section.contact > .form > form > .form-group > textarea,
section.contact > .form > form > .form-group > select {
    padding: 10px;
    border: 2px solid #ccc;
}

section.contact > .form > form > .form-group > button {
    margin: 20px 0 0 auto;
}

section.documents {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
}

section.documents > * {
    width: 80%;
}

section.documents > .documents-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section.documents > .documents-list > .doc {
    width: 90%;
    padding: 20px 20px 20px 20px;
    border: 2px solid #ccc;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

section.documents > .documents-list > .doc > img {
    width: 71px;
}

section.documents > .documents-list > .doc > .container {
    display: flex;
    flex-direction: column;
    flex: 3;
    margin-left: 20px;
}

section.documents > .documents-list > .doc > .container > h3 {
    margin: 0;
    font-family: 'Inter Bold 18pt';
}

section.documents > .documents-list > .doc > .container > .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

section.documents > .documents-list > .doc > .download-btn {
    flex: 1;
}

/* Responsive style */

@media (min-width: 1078px) {
    section.references > .thumbs {
        grid-template-columns: repeat(4, 1fr);
    }

    section.home-5 > .container > .box {
        flex: 1 1 350px;
    }
}

@media (max-width: 900px) {
    section.home-4 > .thumbs > .service {
        flex: 1 1 calc(33.333% - 20px); /* 3 per row */
        max-width: calc(33.333% - 20px);
    }

    section.services > .thumbs > .service {
        flex: 1 1 calc(33.333% - 20px); /* 3 per row */
        max-width: calc(33.333% - 20px);
    }

    section.contact > .form > * {
        width: 100%;
    }

    section.reference > .content {
        width: 90%;
    }
    section.documents > .documents-list > .doc > .container {
        flex: 1;
    }

    section.documents > .documents-list > .doc > .container > .meta {
        gap: 10px;
    }
}

/* responsive menu */
@media (max-width: 1078px) {
    .navbar {
        display: none;
    }

    .language {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .mobile-menu.show {
        display: flex;
    }

    .mobile-lang {
        display: block;
    }

    a.logo > img {
        height: 43px;
    }

    footer > .container > .footer-col {
        flex: 1 1 100%;
    }

    footer > .container > .footer-links,
    footer > .container > .footer-address {
        flex: 1 1 40%;
    }

}

@media (max-width: 600px) {
    section.home-1 > .container {
        width: 90%;
        gap: 0;
    }

    section.home-2 > .slideshow {
        width: 90%;
    }

    section.home-2 img.slide-image {
        width: 90vw;
    }

    section.home-3 {
        padding: 0;
    }

    section.home-3 > .container {
        width: 100%;
    }

    section.home-3 > .container > .text {
        background: white;
    }

    section.home-3 > .container > .text > h2,
    section.home-3 > .container > .text > p {
        color: #333;
    }

    section.home-3 > .container > .box > img {
        width: 90%;
    }

    section.home-4 > * {
        width: 90%;
    }

    section.home-4 > .text {
        gap: 0;
    }

    section.home-4 > .text > p {
        padding-top: 0;
    }

    section.home-4 > .thumbs > .service {
        flex: 1 1 calc(50% - 20px); /* 2 per row */
        max-width: calc(50% - 20px);
    }

    section.services > .thumbs > .service {
        flex: 1 1 calc(50% - 20px); /* 2 per row */
        max-width: calc(50% - 20px);
    }

    section.home-5 > * {
        width: 90%;
    }

    section.home-5 > .heading > p {
        padding-top: 0;
    }

    section.home-5 > .container > .thumbs-container > .thumb > img {
        height: 250px;
    }

    section.home-6 > * {
        width: 90%;
    }

    footer > .container {
        width: 90%;
    }

    section.services > * {
        width: 90%;
    }

    section.references > * {
        width: 90%;
    }

    section.reference > * {
        width: 90%;
    }

    section.reference > .content {
        flex-direction: column;
    }

    section.about-us > * {
        width: 90%;
    }

    section.our-team > * {
        width: 90%;
    }

    section.news-list > * {
        width: 90%;
    }

    section.contact > * {
        width: 90%;
    }

    section.documents > * {
        width: 90%;
    }

    section.documents > .documents-list > .doc {
        flex-direction: column;
    }

    section.documents > .documents-list > .doc > img {
        width: 51px;
    }
}

@media (max-width: 400px) {
    section.home-4 > .thumbs > .service {
        flex: 1 1 100%; /* 1 per row */
        max-width: 100%;
    }

    section.services > .thumbs > .service {
        flex: 1 1 100%; /* 1 per row */
        max-width: 100%;
    }
}
