:root {
    --blue: #2E456D;
    --gray: #3D3D3D;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
label,
input,
li,
ul,
ol,
div {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 300;
    color: black;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: white;
    font-weight: 300;
    opacity: 0;
    transition: all 0.3s;
    overflow-x: hidden;
}

.container {
    padding: 0;
    width: 100%;
    max-width: 1200px;
}

strong {
    font-weight: 500;
    /* color: var(--blue); */
}

h1 {
    font-size: 50px;
    font-weight: 400;
    text-transform: uppercase;
}

h2 {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 400;
}

h3 {
    font-size: 20px;
    color: var(--blue);
    font-weight: 400;
    margin-bottom: 30px;
}

h3::before {
    content: "";
    display: inline-block;
    width: 50px;
    height: 2px;
    background-color: var(--blue);
    margin-right: 15px;
    margin-bottom: 6px;
}

p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #444;
}

.primary-link {
    background-color: var(--blue);
    color: white;
    padding: 10px 20px;
    font-weight: 600;
    border: 1px solid var(--blue);
    transition: all 0.3s;
}

.primary-link:hover {
    background-color: transparent;
    color: var(--blue);
}

.secondary-link {
    background-color: transparent;
    color: var(--blue);
    padding: 10px 20px;
    font-weight: 600;
    border: 1px solid var(--blue);
    transition: all 0.3s;
}

.secondary-link:hover {
    background-color: var(--blue);
    color: white;
}

::selection {
    background: var(--blue);
    color: white;
}

::-moz-selection {
    background: var(--blue);
    color: white;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
    border-color: var(--lightblue);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px var(--lightblue);
    outline: none !important;
    transition: all 0.25s;
}

div:focus {
    outline: none !important;
}

a {
    transition: all 0.25s;
}

a:hover,
a:focus {
    text-decoration: none;
}

.bg {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

.mc {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ml {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

#wrapper {
    margin-top: 90px;
}

.marker {
    margin-top: -140px;
    padding-bottom: 140px;
}

/* LOADER */

.loader {
    width: 100%;
    height: 100vh;
    background: var(--blue);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: all 0.3s ease-out;
}

.loader #logo {
    position: absolute;
    top: 40%;
    left: 52%;
    transform: translate(-50%, -50%);
}

.loader #logo path {
    stroke-width: 0;
}

/* DESKTOP NAVBAR */

.desktop-navbar {
    width: 100%;
    height: 100px;
    border-bottom: 1px solid #2E456D88;
    background: white;
    position: fixed;
    top: -100%;
    left: 0;
    z-index: 999;
    transition: all 0.3s ease-out;
    opacity: 0;
}

.desktop-navbar.active {
    background: white;
}

.desktop-navbar .items .logo {
    width: 160px;
}

.desktop-navbar .items {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    position: relative;
}

.desktop-navbar .items .right-side a {
    margin-right: 30px;
    font-weight: 400;
}

.desktop-navbar .items .right-side a.active {
    font-weight: 600;
    color: var(--blue);
}

.desktop-navbar .items .right-side a:last-child {
    margin-right: 0;
    background: var(--blue);
    color: white;
    padding: 10px 20px;
    font-weight: 600;
}

.desktop-navbar .items a {
    text-align: center;
    width: fit-content;
}

.desktop-navbar .items a i {
    transition: all 0.3s;
}

.desktop-navbar .items a i.active {
    rotate: 180deg;
}

/* SERVICES COLLAPSE*/

.desktop-navbar .collapse {
    position: relative;
}

.desktop-navbar .background {
    width: 100%;
    background: white;
    border-top: 1px solid #2E456D88;
    z-index: 999;
}

.desktop-navbar .collapse-overlay {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease-out;
    z-index: -1;
}

.desktop-navbar .services {
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.desktop-navbar .services * {
    color: var(--blue);
}

.desktop-navbar .services .service {
    width: 100%;
    max-width: 270px;
    padding: 20px;
    box-shadow: 0 0 15px #00000022;
    min-height: 200px;
    transition: all 0.3s;
}

.desktop-navbar .services .service:hover {
    box-shadow: 0 0 20px #2E456D88;
}

.desktop-navbar .services .service img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    margin-right: 10px;
}

.desktop-navbar .services .service h4 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.desktop-navbar .services .service p {
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 10px;
}

.desktop-navbar .services .card {
    width: 100%;
    max-width: 270px;
    background: var(--blue);
    border-radius: 0;
    padding: 20px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.desktop-navbar .services .card p {
    color: white;
    text-align: center;
    font-weight: 400;
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.5;
    width: 180px;
}

.desktop-navbar .services .card .primary-link {
    background: white;
    border: 1px solid white;
    color: var(--blue);
    font-size: 13px;
    padding: 8px 16px;
    display: block;
    margin: 0 auto;
}

.desktop-navbar .services .card .primary-link:hover {
    background: transparent;
    color: white;
}

/* HERO */

#hero {
    width: 100%;
    min-height: 100svh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

#hero .background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

#hero .background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s;
}

#hero .layer {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

#hero .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

#hero .container .left-side,
#hero .container .right-side {
    width: 100%;
    max-width: 570px;
}

#hero .container .left-side {
    z-index: 1;
}

#hero .container .right-side > * {
    z-index: 0;
}

#hero h2 {
    font-size: 54px;
    width: 600px;
    margin: 40px 0;
    text-transform: uppercase;
}

#hero h2 span {
    padding: 0 10px;
    font-weight: 400;
    color: white;
    background-image: linear-gradient(var(--blue), var(--blue));
    background-size: 100% 100%;
    background-repeat: no-repeat;
    transition: background-size 1s ease-out;
}

#hero p {
    font-size: 17px;
    margin: 0;
    margin-bottom: 40px;
    text-align: justify;
}

#hero .links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

#hero .container .right-side {
    height: 100%;
    position: relative;
}

#hero .container .right-side img {
    width: 480px;
    object-fit: contain;
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
}

#hero .container .right-side img:first-child {
    width: 520px;
    opacity: 0.2;
}

/* ABOUT */

#about {
    margin: 80px 0;
    padding: 0 30px;
}

#about h2 {
    font-size: 34px;
}

#about p {
    text-align: justify;
}

#about strong {
    color: var(--blue);
}

#about .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

#about .left-side,
#about .right-side {
    width: 100%;
    max-width: 570px;
}

#about .left-side a {
    color: var(--blue);
    font-weight: 400;
    text-transform: uppercase;
    border: 1px solid var(--blue);
    padding: 10px 44px 10px 20px;
    position: relative;
    display: block;
    width: fit-content;
}

#about .left-side a:hover {
    background: var(--blue);
    color: white;
}

#about .left-side a svg {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    transition: all 0.3s;
    fill: #2E456D;
}

#about .left-side a:hover svg {
    right: 10px;
    fill: white;
}

#about .right-side {
    display: flex;
    gap: 20px;
}

#about .image1,
#about .image2 {
    width: 270px;
    height: 500px;
    position: relative;
}

#about .image1 img:first-child,
#about .image2 img:first-child {
    width: 130px;
    height: 130px;
    object-fit: cover;
    position: absolute;
    z-index: -1;
}

#about .image2 {
    margin-top: 100px;
}

#about .image1 img:first-child {
    bottom: -40px;
    left: -40px;
}

#about .image2 img:first-child {
    top: -40px;
    right: -40px;
}

#about .image1 img:last-child,
#about .image2 img:last-child {
    width: 270px;
    height: 500px;
    object-fit: cover;
}

/* SERVICES */

#services {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

#services .blue-layer {
    padding: 80px 30px;
    width: 100%;
    height: 100%;
    background: #2E456DEE;
}

#services h3 {
    color: white;
}

#services h3::before {
    background-color: white;
}

#services h2 {
    color: white;
    max-width: 650px;
}

#services .services {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

#services .services .service {
    width: 100%;
    max-width: 270px;
    padding: 0;
}

#services .services .service img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
}

#services .services .service h4 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    color: white;
}

#services .services .service p {
    font-size: 14px;
    font-weight: 400;
    color: white;
}

#services .services .card {
    width: 100%;
    max-width: 270px;
    background: white;
    border-radius: 0;
    padding: 30px 20px;
    height: fit-content;
}

#services .services .card h4 {
    font-weight: 600;
    font-size: 20px;
    color: var(--blue);
    text-align: center;
    margin-bottom: 20px;
}

#services .services .card p {
    color: var(--blue);
    text-align: center;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.5;
}

#services .services .card .primary-link {
    display: block;
    margin: 0 auto;
}

/* REFERENCES */

#references {
    margin: 80px 0 120px;
    padding: 0 30px;
}

#references h2 {
    max-width: 800px;
    font-size: 36px;
}

#references .primary-link {
    display: block;
    float: right;
    margin-top: 30px;
    padding: 10px 44px 10px 20px;
    position: relative;
}

#references .primary-link span {
    text-transform: uppercase;
    font-weight: 400;
    color: white;
    transition: all 0.3s;
}

#references .primary-link:hover {
    background: white;
}

#references .primary-link:hover span {
    color: var(--blue);
}

#references .primary-link span svg {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    transition: all 0.3s;
    fill: white;
}

#references .primary-link:hover span svg {
    right: 10px;
    fill: var(--blue);
}

#references .gallery {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

#references .gallery .image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

#references .gallery .image1,
#references .gallery .image2 {
    flex-basis: 49%;
}

#references .gallery .image3 {
    flex-basis: 23%;
}

#references .gallery .image4 {
    flex-basis: 45%;
}

#references .gallery .image5 {
    flex-basis: 28%;
}

#references .gallery .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
}

#references .gallery .image img:hover {
    transform: scale(1.075);
}

/* CONTACT */

#contact {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

#contact .blue-layer {
    padding: 40px 0;
    width: 100%;
    background: #2E456DEE;
}

#contact .container {
    position: relative;
}

#contact *:not(.slidercaptcha.card *) {
    color: white;
}

#contact h3::before {
    background-color: white;
}

#contact h2 {
    font-size: 36px;
    text-align: left;
    width: 100%;
    margin-bottom: 10px;
}

#contact h4 {
    font-size: 26px;
    margin-bottom: 30px;
    font-weight: 400;
}

#contact p {
    max-width: 500px;
    line-height: 1.5;
    font-weight: 400;
}

#contact form p {
    max-width: 9999px;
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
}

#contact span {
    display: block;
    font-size: 18px;
}

#contact .label {
    font-weight: 600;
    margin-bottom: 5px;
}

#contact .text {
    font-weight: 400;
    margin-bottom: 20px;
}

#contact .social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 40px;
}

#contact .social a img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

#contact .container .image {
    position: relative;
    max-width: 550px;
    width: 100%;
    height: 250px;
    margin-bottom: 30px;
}

#contact .container .image img {
    height: 100%;
    object-fit: contain;
    position: absolute;
    left: 0;
    top: 0;
}

#contact form {
    position: absolute;
    top: 80px;
    right: 0;
    width: 550px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

#contact form .item {
    width: 100%;
    position: relative;
}

#contact form .split {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

#contact form .item input,
#contact form .item textarea {
    width: 100%;
    outline: none;
    border: none;
    border-bottom: 2px solid #ffffff88;
    background: transparent;
    padding: 10px 0;
    color: white;
    font-size: 16px;
    font-weight: 400;
    resize: none;
}

#contact form .item input:focus,
#contact form .item textarea:focus {
    border-bottom: 2px solid white;
}

#contact form .item label {
    position: absolute;
    top: 10px;
    left: 0;
    transition: all 0.3s;
    font-weight: 400;
    color: #ffffffaa;
}

#contact form .item label.has-value {
    top: -10px;
    left: 0;
    transform: translateY(0);
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
}

#contact form button {
    float: right;
    width: fit-content;
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 10px 20px;
    text-transform: uppercase;
    margin-top: 10px;
    transition: all 0.3s;
}

#contact form button:hover {
    background: white;
    color: var(--blue);
}

/* FOOTER */

footer .container:last-of-type {
    margin: 40px auto;
    padding: 30px;
}

footer .links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

footer .links .item {
    width: 100%;
    max-width: 300px;
}

footer .links .item h4 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--blue);
}

footer .links .item span,
footer .links .item a,
footer .links .item p {
    display: block;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 10px;
    width: fit-content;
}

footer .links .item:first-of-type a {
    display: inline;
}

footer .links .item form .input-group {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .links .item form .input-group input {
    width: 250px;
    outline: none;
    border: 1px solid #2E456D88;
    background: transparent;
    padding: 10px 10px 10px 40px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 400;
}

footer .links .item form .input-group input:focus {
    border: 1px solid var(--blue);
}

footer .links .item form .input-group label {
    position: absolute;
    top: 10px;
    left: 10px;
    font-weight: 400;
    color: #2E456D88;
    transition: all 0.3s;
    padding: 0;
    margin: 0;
    line-height: 0;
}

footer .links .item form .input-group label img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

footer .links .item form .input-group button.primary-link {
    font-size: 13px;
}

footer .links .item form span {
    font-size: 13px;
    display: block;
    margin-top: 20px;
    line-height: 1.5;
    margin-left: 26px;
}

footer .links .item form span a {
    display: inline-block;
    margin: 0;
    padding: 0;
    line-height: 1.5;
    text-decoration: underline;
}

footer .links .item form span input {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    margin-left: -26px;
}

footer .links .item form span input:checked {
    background: var(--blue);
}

footer hr {
    margin: 40px 0;
    outline: none;
    border: none;
    border-bottom: 1.5px solid var(--gray);
    opacity: 0.4;
}

footer .bottom {
    margin-top: 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

footer .bottom .left-side img {
    width: 160px;
}

footer .bottom span {
    display: block;
    font-size: 13px;
    margin-top: 20px;
}

/* CONTACT PAGE */

/* HEADER */

#page-header {
    width: 100%;
    height: 570px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

#page-header .blue-layer {
    width: 100%;
    height: 100%;
    background: #2E456DCC;
    position: absolute;
    top: 0;
    left: 0;
}

#page-header h1 {
    color: white;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#page-header img {
    height: 80%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* CONTACT */

#contact-contact {
    margin: 80px 0;
    padding: 0 30px;
}

#contact-contact .container {
    position: relative;
}

#contact-contact h2 {
    max-width: 550px;
}

#contact-contact p {
    max-width: 500px;
    line-height: 1.5;
}

#contact-contact span {
    display: block;
    font-size: 18px;
}

#contact-contact .label {
    font-weight: 600;
    margin-bottom: 5px;
}

#contact-contact .text {
    font-weight: 400;
    margin-bottom: 15px;
}

#contact-contact .social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 30px;
}

#contact-contact .social a img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

#contact-contact form {
    position: absolute;
    top: 80px;
    right: 0;
    width: 550px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

#contact-contact form .item {
    width: 100%;
    position: relative;
}

#contact-contact form .split {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

#contact-contact form .item input,
#contact-contact form .item textarea {
    width: 100%;
    outline: none;
    border: none;
    background: #f1f1f1;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 400;
    resize: none;
}

#contact-contact form .item label {
    position: absolute;
    top: 10px;
    left: 15px;
    transition: all 0.3s;
    font-weight: 400;
    color: #2E456D88;
}

#contact-contact form .item label.has-value {
    top: -16px;
    left: 0;
    transform: translateY(0);
    font-size: 12px;
    font-weight: 600;
    color: var(--blue);
}

#contact-contact form button {
    float: right;
    width: fit-content;
    background: var(--blue);
    border: 1px solid var(--blue);
    color: white;
    padding: 10px 20px;
    text-transform: uppercase;
    margin-top: 10px;
    transition: all 0.3s;
}

#contact-contact form button:hover {
    background: white;
    color: var(--blue);
}

/* TEAM */

#contact-team {
    margin: 100px 0 80px;
    padding: 0 30px;
}

#contact-team .container {
    position: relative;
}

#contact-team .line {
    width: 50px;
    height: 2px;
    background: var(--blue);
    margin-bottom: 20px;
}

#contact-team h2 {
    max-width: 550px;
    font-size: 40px;
}

#contact-team .members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 100px;
    max-width: 1000px;
    margin: 60px auto;
}

#contact-team .member {
    width: 100%;
    max-width: 240px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

#contact-team .member .image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    margin-bottom: 20px;
    position: relative;
    border-bottom-left-radius: 999px;
    border-bottom-right-radius: 999px;
    overflow: hidden;
}

#contact-team .member .image .bg {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #96A2B6;
    width: 100%;
    height: 100%;
    border-radius: 999px;
    z-index: -1;
}

#contact-team .member .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom-left-radius: 999px;
    border-bottom-right-radius: 999px;
}

#contact-team .member span {
    display: block;
    text-align: center;
}

#contact-team .member .name {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

#contact-team .member .position {
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 10px;
    text-align: center;
}

#contact-team .member .contact {
    font-size: 16px;
    font-weight: 400;
}

/* REFERENCES */

#contact-references {
    margin: 80px 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

#contact-references .blue-layer {
    padding: 30px;
    width: 100%;
    height: 100%;
    background: #2E456DEE;
}

#contact-references .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0;
    max-width: 1400px;
}

#contact-references .left-side {
    flex-basis: 55%;
    height: 130px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#contact-references .left-side h2 {
    font-weight: 600;
    color: white;
    font-size: 36px;
    margin: 0;
}

#contact-references .left-side img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    position: absolute;
}

#contact-references .left-side img:first-child {
    top: 0;
    left: 0;
}

#contact-references .left-side img:last-of-type {
    bottom: 0;
    right: 0;
}

#contact-references .right-side {
    flex-basis: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#contact-references .right-side .primary-link {
    background: white;
    border: 1px solid white;
    color: var(--blue);
    padding: 8px 16px;
    display: block;
    margin: 0 auto;
    text-transform: uppercase;
}

#contact-references .right-side .primary-link:hover {
    background: transparent;
    color: white;
}

.map {
    display: block;
    width: 100%;
    max-width: 1200px;
    margin: 80px auto;
    height: 340px;
    border: 1px solid var(--blue);
}

.map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footerimage-wrapper {
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
}

.footerimage {
    width: 101%;
    height: 125%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);

}

/* REFERENCES PAGE */

/* REFERENCES */

#references-references {
    margin: 80px 0;
    padding: 0 30px;
}

#references-references .container {
    position: relative;
}

#references-references .filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 60px;
}

#references-references .filters .filter {
    font-size: 16px;
    font-weight: 600;
    color: white;
    background-color: #2E456DAA;
    padding: 10px 20px;
    border: 1px solid #2E456DAA;
    transition: all 0.3s;
}

#references-references .filters .filter:hover,
#references-references .filters .filter.active {
    background-color: var(--blue);
    border: 1px solid var(--blue);
}

#references-references .images {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

#references-references .images .image {
    width: 100%;
    max-width: 285px;
    height: 220px;
    position: relative;
    overflow: hidden;
}

#references-references .images .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
}

#references-references .images .image img:hover {
    transform: scale(1.075);
}

#references-collapses {
    margin: 80px 0;
    padding: 0 20px;
}

#references-collapses .card {
    border: none;
    margin-bottom: 20px;
}

#references-collapses .card .header {
    background-color: var(--blue);
    color: white;
    padding: 20px;
    cursor: pointer;
}

#references-collapses .card .header h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: white;
}


#references-collapses .card .content {
    max-height: 0;
    overflow: hidden;
    background-color: #f1f1f1;
}

#references-collapses .card .content p {
    padding: 20px;
    margin-bottom: 0;
    text-align: justify;
}

#references-collapses .card .content .images {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px 20px 20px;
}

#references-collapses .card .content .images img {
    width: 100%;
    max-width: 273px;
    height: 220px;
    object-fit: cover;
}

#references-text {
    margin: 80px 0;
    padding: 0 20px;
}

#references-text p {
    font-size: 20px;
    font-weight: 500;
}

#references-offer {
    margin-top: 80px;
}

#references-offer .blue-layer {
    padding: 80px 30px;
    width: 100%;
    height: 100%;
    background: #2E456DEE;
}

#references-offer .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#references-offer h2 {
    max-width: 750px;
    font-size: 26px;
    color: white;
    margin: 0;
    line-height: 1.5;
}

#references-offer .primary-link {
    display: block;
    text-transform: uppercase;
    text-align: center;
    color: var(--blue);
    background-color: #ffffff;
    border: 1px solid #ffffff;
    margin-right: 100px;
}

#references-offer .primary-link:hover {
    background-color: transparent;
    color: white;
}

/* LAYOUTS */

.margin-top {
    margin-top: 700px;
    display: block;
}

.gray-with-title-and-image-on-right {
    margin: 150px 0;
    padding: 0 30px;
}

.gray-with-title-and-image-on-right .container {
    position: relative;
}

.gray-with-title-and-image-on-right .container .left-side {
    background-color: #ECECEC;
    width: 1100px;
    padding: 40px 80px;
}

.gray-with-title-and-image-on-right .container .left-side p {
    font-size: 18px;
    line-height: 1.5;
    max-width: 650px;
}

.gray-with-title-and-image-on-right .container .image {
    position: absolute;
    top: -20px;
    right: 0px;
    box-shadow: 0 0 20px #00000033;
}

.gray-with-title-and-image-on-right .container .image img {
    width: 420px;
    height: 500px;
    object-fit: cover;
}

.gray-with-title-and-image-on-right .container .image img:last-child {
    width: 170px;
    height: 170px;
    object-fit: contain;
    position: absolute;
    bottom: -50px;
    right: -50px;
    z-index: -1;
    box-shadow: none;
}

.gray-with-blue-header-image-on-left {
    margin: 120px 0;
    padding: 0 30px;
}

.gray-with-blue-header-image-on-left .container {
    position: relative;
}

.gray-with-blue-header-image-on-left .container .header {
    background-color: var(--blue);
    width: 100%;
    margin-left: 50px;
    padding: 30px 130px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.gray-with-blue-header-image-on-left .container .content {
    background-color: #ECECEC;
    width: 1150px;
    padding: 50px 80px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: 50px;
}

.gray-with-blue-header-image-on-left .container .header p {
    font-size: 18px;
    max-width: 630px;
    color: white;
    font-weight: 400;
    margin: 0;
}

.gray-with-blue-header-image-on-left .container .content .text {
    max-width: 630px;
}

.gray-with-blue-header-image-on-left .container .content .text * {
    font-size: 18px;
    color: #444;
    margin: 0;
    margin-bottom: 10px;
}

.gray-with-blue-header-image-on-left .container .image {
    position: absolute;
    top: 20px;
    left: 0px;
}

.gray-with-blue-header-image-on-left .container .image img {
    width: 420px;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 0 20px #00000033;
}

.gray-with-blue-header-image-on-left .container .image img:first-child {
    position: relative;
    z-index: 2;
}

.gray-with-blue-header-image-on-left .container .image img:last-child {
    width: 170px;
    height: 170px;
    object-fit: contain;
    position: absolute;
    bottom: -50px;
    left: -50px;
    box-shadow: none;
}

.gray-with-blue-header-image-on-right {
    margin: 120px 0;
    padding: 0 30px;
}

.gray-with-blue-header-image-on-right .container {
    position: relative;
}

.gray-with-blue-header-image-on-right .container .header {
    background-color: var(--blue);
    width: 100%;
    margin-left: -50px;
    padding: 30px 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.gray-with-blue-header-image-on-right .container .content {
    background-color: #ECECEC;
    width: 1150px;
    padding: 50px 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.gray-with-blue-header-image-on-right .container .header p {
    font-size: 18px;
    max-width: 680px;
    color: white;
    font-weight: 400;
    margin: 0;
}

.gray-with-blue-header-image-on-right .container .content .text {
    max-width: 630px;
}

.gray-with-blue-header-image-on-right .container .content .text * {
    font-size: 18px;
    color: #444;
    margin: 0;
    margin-bottom: 10px;
}

.gray-with-blue-header-image-on-right .container .image {
    position: absolute;
    top: 10px;
    right: 0px;
}

.gray-with-blue-header-image-on-right .container .image img {
    width: 420px;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 0 20px #00000033;
}

.gray-with-blue-header-image-on-right .container .image img:first-child {
    position: relative;
    z-index: 2;
}

.gray-with-blue-header-image-on-right .container .image img:last-child {
    width: 170px;
    height: 170px;
    object-fit: contain;
    position: absolute;
    bottom: -50px;
    right: -50px;
    box-shadow: none;
}

.gray-with-blue-footer-image-on-left {
    margin: 120px 0;
    padding: 0 30px;
}

.gray-with-blue-footer-image-on-left .container {
    position: relative;
}

.gray-with-blue-footer-image-on-left .container .header {
    background-color: var(--blue);
    width: 100%;
    margin-left: 50px;
    padding: 30px 130px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.gray-with-blue-footer-image-on-left .container .content {
    background-color: #ECECEC;
    width: 1150px;
    padding: 50px 80px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: 50px;
}

.gray-with-blue-footer-image-on-left .container .header p {
    font-size: 18px;
    max-width: 630px;
    color: white;
    font-weight: 400;
    margin: 0;
}

.gray-with-blue-footer-image-on-left .container .content .text {
    max-width: 630px;
}

.gray-with-blue-footer-image-on-left .container .content .text * {
    font-size: 18px;
    color: #444;
    margin: 0;
    margin-bottom: 10px;
}

.gray-with-blue-footer-image-on-left .container .image {
    position: absolute;
    top: 20px;
    left: 0px;
}

.gray-with-blue-footer-image-on-left .container .image img {
    width: 420px;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 0 20px #00000033;
}

.gray-with-blue-footer-image-on-left .container .image img:first-child {
    position: relative;
    z-index: 2;
}

.gray-with-blue-footer-image-on-left .container .image img:last-child {
    width: 170px;
    height: 170px;
    object-fit: contain;
    position: absolute;
    bottom: -50px;
    left: -50px;
    box-shadow: none;
}

.paragraph-with-line-on-left {
    margin: 120px 0;
    padding: 0 30px;
}

.paragraph-with-line-on-left .container {
    position: relative;
    border-left: 2px solid var(--blue);
    padding-left: 30px;
}

.paragraph-with-line-on-left .container * {
    font-size: 18px;
    color: #444;
    margin: 0;
    margin-bottom: 10px;
}

.paragraph-with-line-on-left .container strong {
    color: var(--blue);
}

.paragraph-with-line-on-top-left {
    margin: 120px 0;
    padding: 0 30px;
}

.paragraph-with-line-on-top-left .line {
    width: 50px;
    height: 1.5px;
    background: var(--blue);
    margin-bottom: 20px;
}

.paragraph-with-line-on-top-left .container * {
    font-size: 18px;
    color: #444;
    margin: 0;
    margin-bottom: 10px;
}

.paragraph-with-line-on-top-left .container strong {
    color: var(--blue);
}

.blue-paragraph {
    margin: 120px 0;
}

.blue-paragraph .container {
    position: relative;
    padding: 40px 80px;
    background-color: var(--blue);
}

.blue-paragraph .container .text * {
    font-size: 18px;
    color: white;
    margin: 0;
    margin-bottom: 10px;
    line-height: 1.5;
}

.blue-paragraph .container img {
    width: 170px;
    height: 170px;
    object-fit: contain;
    position: absolute;
    z-index: -1;
}

.blue-paragraph .container img:first-of-type {
    bottom: -50px;
    left: -50px;
}

.blue-paragraph .container img:last-of-type {
    top: -50px;
    right: -50px;
}

.image-bg-with-title-and-link {
    margin: 120px 0;
}

.image-bg-with-title-and-link .container {
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.image-bg-with-title-and-link .blue-layer {
    padding: 30px;
    width: 100%;
    height: 100%;
    background: #2E456DEE;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.image-bg-with-title-and-link .blue-layer .left-side {
    flex-basis: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 200px;
}

.image-bg-with-title-and-link .blue-layer .left-side h2, .image-bg-with-title-and-link .blue-layer .left-side p {
    color: white;
    font-size: 24px;
    margin: 0;
    font-weight: 600;
    text-align: center;
}

.image-bg-with-title-and-link .blue-layer .left-side img {
    position: absolute;
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.image-bg-with-title-and-link .blue-layer .left-side img:first-of-type {
    top: 0;
    left: 0;
}

.image-bg-with-title-and-link .blue-layer .left-side img:last-of-type {
    bottom: 0;
    right: 0;
}

.image-bg-with-title-and-link .blue-layer .right-side {
    flex-basis: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-bg-with-title-and-link .right-side a {
    background: white;
    border: 1px solid white;
    color: var(--blue);
    padding: 8px 24px;
    display: block;
    margin: 0 auto;
    text-transform: uppercase;
    color: var(--blue);
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
    transition: all 0.3s;
}

.image-bg-with-title-and-link .right-side a * {
    color: var(--blue);
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
    transition: all 0.3s;
}

.image-bg-with-title-and-link .right-side a:hover {
    background: transparent;
    color: white;
}

.image-bg-with-title-and-link .right-side a:hover * {
    color: white;
}

.services-layout {
    margin: 120px 0;
}

.services-layout .services {
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    gap: 20px;
    margin: 0 auto;
}

.services-layout .services * {
    color: var(--blue);
}

.services-layout .services .service {
    width: 100%;
    max-width: 280px;
    padding: 20px;
    box-shadow: 0 0 15px #00000022;
    min-height: 330px;
    transition: all 0.3s;
    position: relative;
}

.services-layout .services .service p {
    margin-bottom: 60px;
}

.services-layout .services .service:hover {
    box-shadow: 0 0 20px #2E456D88;
}

.services-layout .services .service img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    margin-right: 10px;
}

.services-layout .services .service h4 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.services-layout .services .service p {
    font-size: 14px;
    line-height: 1.5;
}

.services-layout .services .service .secondary-link {
    font-size: 11px;
    text-transform: uppercase;
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding-right: 40px;
}

.services-layout .services .service .secondary-link:hover {
    color: white;
}

.services-layout .services .service .secondary-link svg {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    transition: all 0.3s;
    fill: var(--blue);
    width: 15px;
}

.services-layout .services .service .secondary-link:hover svg {
    right: 12px;
    fill: white;
}

.services-layout .services .card {
    width: 100%;
    max-width: 280px;
    background: var(--blue);
    border-radius: 0;
    padding: 20px;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.services-layout .services .card h2 {
    font-weight: 600;
    font-size: 20px;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.services-layout .services .card p {
    color: white;
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.5;
    width: 180px;
}

.services-layout .services .card .primary-link {
    background: white;
    border: 1px solid white;
    color: var(--blue);
    font-size: 16px;
    padding: 8px 16px;
    display: block;
    margin: 0 auto;
    text-transform: uppercase;
}

.services-layout .services .card .primary-link:hover {
    background: transparent;
    color: white;
}

@media (max-width: 1199px) {
    .desktop-navbar {
        display: none;
    }
}

@media (max-width: 1080px) {

    p {
        font-size: 15px;
    }

    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 24px;
    }

    #hero .container {
        padding: 30px;
        width: 100%;
        display: block;
        overflow: hidden;
        height: 90%;
    }

    #hero .layer {
        background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    }

    #hero h2 {
        width: 100%;
        font-size: 32px;
        margin: 0;
        margin-bottom: 30px;
    }

    #hero .left-side {
        width: 100%;
        height: 80%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        margin-top: 70px;
        position: relative;
        z-index: 1;
    }

    #hero .left-side p {
        font-size: 14px;
        line-height: 1.5;
    }

    #hero .links {
        flex-direction: column-reverse;
        justify-content: flex-start;
        align-items: flex-start;
    }

    #hero .container .right-side {
        position: absolute;
        bottom: 0;
        right: 0;
        overflow: hidden;
        width: 100%;
        z-index: 0;
    }

    #hero .container .right-side img {
        bottom: 0;
        right: 0;
        transform: none;
        width: 100%;
        z-index: 0;
    }

    #hero .container .right-side img:first-child {
        width: 100%;
    }

    #hero .container .right-side img:last-of-type {
        width: 70%;
        right: -60px;
    }

    #about .container {
        flex-direction: column;
    }

    #about h2 {
        font-size: 20px;
        width: 100%;
    }

    #about a {
        display: block;
        margin: 20px auto;
        width: fit-content;
        font-size: 14px;
    }

    #about .left-side {
        max-width: 100%;
    }

    #about .right-side {
        width: 100%;
        gap: 10px;
    }

    #about .image1,
    #about .image2 {
        width: 60%;
        height: 300px;
    }

    #about .image2 {
        margin-top: 40px;
    }

    #about .image1 img:last-child,
    #about .image2 img:last-child {
        width: 100%;
        height: 280px;
    }

    #about .image1 img:first-child {
        bottom: -40px;
        right: -40px;
        left: auto;
    }

    #about .image2 img:first-child {
        top: -40px;
        left: -40px;
    }

    #about .image1 img:first-child,
    #about .image2 img:first-child {
        width: 85px;
        height: 85px;
    }

    #services .services .service {
        max-width: 90%;
    }

    #services .services .service .title {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    #services .services .service h4 {
        font-size: 22px;
    }

    #services .services .card {
        max-width: 100%;
    }

    #references {
        margin-bottom: 40px;
    }

    #references h2 {
        font-size: 20px;
    }

    #references .gallery .image {
        flex-basis: 100%;
        height: 200px;
    }

    #references .gallery .image4,
    #references .gallery .image5 {
        display: none;
    }

    #references .primary-link {
        display: block;
        width: fit-content;
        margin: 40px auto 0;
        float: none;
    }

    #contact .blue-layer {
        padding: 20px 0;
    }

    #contact h2 {
        font-size: 28px;
        margin-top: 20px;
    }

    #contact p {
        font-size: 16px;
    }

    #contact .container .image {
        height: 200px;
    }

    #contact .container .image img {
        width: 100%;
    }

    #contact form {
        position: static;
        width: 100%;
    }

    #contact form .split {
        flex-direction: column;
        gap: 20px;
    }

    #contact form .split input {
        width: 100%;
    }

    #contact form button {
        float: none;
        width: fit-content;
        margin: 20px auto 40px;
    }

    #contact .label {
        font-size: 18px;
    }

    #contact .text {
        font-size: 16px;
    }

    footer .links {
        flex-direction: column;
        gap: 30px;
    }

    footer .links .item:last-of-type h4 {
        margin-top: 20px;
        font-size: 23px;
    }

    footer .links .item:last-of-type {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        max-width: 100%;
        width: 100%;
        margin-top: 30px;
    }

    footer .links .item:last-of-type span {
        text-align: center;
    }

    footer .links .item form .input-group input {
        width: 100%;
    }

    footer .links .item form .input-group button {
        display: block;
        margin: 20px auto 0;
        width: 100%;
    }

    footer .links .item form span,
    footer .links .item form a {
        font-size: 12px;
    }

    footer .bottom {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    footer .bottom .left-side {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #page-header {
        height: 350px;
    }

    #contact-contact form {
        position: static;
        width: 100%;
    }

    #contact-contact form .split {
        flex-direction: column;
        gap: 20px;
    }

    #contact-contact form .split input {
        width: 100%;
    }

    #contact-contact form button {
        float: none;
        width: fit-content;
        margin: 20px auto 40px;
    }

    #contact-references .container {
        flex-direction: column;
        padding: 0;
    }

    #contact-references .container .left-side {
        flex-basis: 100%;
        justify-content: center;
        align-items: center;
    }

    #contact-references .left-side h2 {
        text-align: center;
        font-size: 30px;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #contact-references .left-side img {
        width: 55px;
        height: 55px;
    }

    #contact-references .right-side .primary-link {
        margin-bottom: 40px;
    }

    .map {
        height: 300px;
        overflow: hidden;
    }

    .map img {
        width: 800px;
    }

    #references-references {
        margin: 60px 0;
    }

    #references-references .filters {
        justify-content: center;
    }

    #references-references .images .image {
        max-width: 100%;
    }

    #references-collapses .card .header h4 {
        font-size: 16px;
    }

    #references-collapses .card .content p {
        font-size: 14px;
    }

    #references-collapses .card .content .images img {
        width: 100%;
    }

    #references-text p {
        font-size: 16px;
    }

    #references-offer .container {
        flex-direction: column;
    }

    #references-offer .container h2 {
        text-align: center;
        font-size: 22px;
        margin-bottom: 40px;
    }

    #references-offer .container .primary-link {
        margin: 0 auto;
    }

    .gray-with-title-and-image-on-right {
        margin: 300px 0 40px;
        padding: 0;
    }

    .gray-with-title-and-image-on-right .container .left-side {
        width: 100%;
        padding: 120px 30px 20px;
    }

    .gray-with-title-and-image-on-right .container .left-side p {
        font-size: 14px;
        max-width: 100%;
    }

    .gray-with-title-and-image-on-right .container .image {
        top: -200px;
        right: 50%;
        transform: translateX(50%);
        width: 230px;
        height: 275px;
        overflow: hidden;
    }

    .gray-with-title-and-image-on-right .container .image img:first-of-type {
        width: 115%;
        height: 115%;
        position: absolute;
        top: 0px;
        left: 50%;
        transform: translateX(-50%);
    }

    .gray-with-title-and-image-on-right .container .image img:last-of-type {
        display: none;
    }

    .gray-with-blue-header-image-on-left {
        margin: 260px 0 40px;
        padding: 0;
    }

    .gray-with-blue-header-image-on-left .container .header {
        padding: 100px 30px 20px;
        margin: 0;
    }

    .gray-with-blue-header-image-on-left .container .header p,
    .gray-with-blue-header-image-on-left .container .content .text * {
        font-size: 14px;
        max-width: 100%;
    }

    .gray-with-blue-header-image-on-left .container .content {
        padding: 30px;
        margin: 0;
        width: 100%;
    }

    .gray-with-blue-header-image-on-left .container .content .text {
        max-width: 100%;
    }

    .gray-with-blue-header-image-on-left .container .image {
        top: -200px;
        left: 50%;
        transform: translateX(-50%);
        overflow: hidden;
        width: 330px;
        height: 275px;
        box-shadow: 0 0 20px #00000033;
    }

    .gray-with-blue-header-image-on-left .container .image img {
        width: 115%;
        height: 115%;
        position: absolute;
        top: 0px;
        left: 50%;
        transform: translateX(-50%);
    }

    .gray-with-blue-header-image-on-left .container .image img:last-child {
        width: 85px;
        height: 85px;
        top: -30px;
        right: -30px;
        left: auto;
    }

    .gray-with-blue-header-image-on-right {
        margin: 260px 0 40px;
        padding: 0;
    }

    .gray-with-blue-header-image-on-right .container .header {
        padding: 100px 30px 20px;
        margin: 0;
    }

    .gray-with-blue-header-image-on-right .container .header p,
    .gray-with-blue-header-image-on-right .container .content .text * {
        font-size: 14px;
        max-width: 100%;
    }

    .gray-with-blue-header-image-on-right .container .content {
        padding: 30px;
        margin: 0;
        width: 100%;
    }

    .gray-with-blue-header-image-on-right .container .content .text {
        max-width: 100%;
    }

    .gray-with-blue-header-image-on-right .container .image {
        top: -200px;
        right: 50%;
        transform: translateX(50%);
        width: 330px;
        height: 275px;
        overflow: hidden;
        box-shadow: 0 0 20px #00000033;
    }

    .gray-with-blue-header-image-on-right .container .image img {
        width: 115%;
        height: 115%;
        position: absolute;
        top: 0px;
        left: 50%;
        transform: translateX(-50%);
    }

    .gray-with-blue-header-image-on-right .container .image img:last-child {
        width: 85px;
        height: 85px;
        top: -30px;
        right: -30px;
        left: auto;
    }

    .gray-with-blue-footer-image-on-left {
        margin: 260px 0 40px;
        padding: 0;
    }

    .gray-with-blue-footer-image-on-left .container .content {
        padding: 100px 30px 20px;
        margin: 0;
        width: 100%;
    }

    .gray-with-blue-footer-image-on-left .container .header {
        padding: 20px 30px;
        margin: 0;
    }

    .gray-with-blue-footer-image-on-left .container .header p,
    .gray-with-blue-footer-image-on-left .container .content .text * {
        font-size: 14px;
        max-width: 100%;
    }

    .gray-with-blue-footer-image-on-left .container .content .text {
        max-width: 100%;
    }

    .gray-with-blue-footer-image-on-left .container .image {
        top: -200px;
        left: 50%;
        transform: translateX(-50%);
        width: 330px;
        height: 275px;
        overflow: hidden;
        box-shadow: 0 0 20px #00000033;
    }

    .gray-with-blue-footer-image-on-left .container .image img {
        width: 115%;
        height: 115%;
        position: absolute;
        top: 0px;
        left: 50%;
        transform: translateX(-50%);
    }

    .gray-with-blue-footer-image-on-left .container .image img:last-child {
        width: 85px;
        height: 85px;
        top: -30px;
        right: -30px;
        left: auto;
    }

    .paragraph-with-line-on-left {
        margin: 60px 0;
    }

    .paragraph-with-line-on-left .container * {
        font-size: 14px;
    }

    .paragraph-with-line-on-top-left {
        margin: 60px 0;
    }

    .paragraph-with-line-on-top-left .container * {
        font-size: 14px;
    }

    .blue-paragraph {
        margin: 60px 0;
    }

    .blue-paragraph .container {
        padding: 20px 30px;
    }

    .blue-paragraph .container img {
        display: none;
    }

    .blue-paragraph .container .text * {
        font-size: 14px;
    }

    .image-bg-with-title-and-link {
        margin: 60px 0;
    }

    .image-bg-with-title-and-link .blue-layer {
        flex-direction: column;
        padding: 30px;
    }

    .image-bg-with-title-and-link .blue-layer .left-side {
        flex-basis: 100%;
        justify-content: center;
        align-items: center;
    }

    .image-bg-with-title-and-link .blue-layer .left-side h2, .image-bg-with-title-and-link .blue-layer .left-side p {
        text-align: center;
        font-size: 18px;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        line-height: 1.3;
    }

    .image-bg-with-title-and-link .blue-layer .left-side img {
        width: 55px;
        height: 55px;
    }

    .image-bg-with-title-and-link .right-side .primary-link {
        margin-bottom: 40px;
    }

    .services-layout {
        margin: 60px 0;
    }

    .services-layout .services {
        padding: 20px 30px;
        position: relative;
        width: 100%;
        overflow-x: scroll;
        overflow-y: hidden;
        white-space: nowrap;
        transition: all 0.2s;
        will-change: transform;
        user-select: none;
        display: block;
        -ms-overflow-style: none; 
        scrollbar-width: none;
    }

    .services-layout .services::-webkit-scrollbar {
        display: none;
    }

    .services-layout .services .service {
        height: fit-content;
        display: inline-block;
        vertical-align: middle;
        margin-right: 20px;
    }

    .services-layout .services .service h4 {
        width: 100%;
    }

    .services-layout .services .service h4 img {
        display: inline-block;
    }

    .services-layout .services .service h4 {
        font-size: 20px;
        text-align: center;
        white-space: normal;
    }

    .services-layout .services .service img {
        width: 52px;
        height: 52px;
    }

    .services-layout .services .service p {
        font-size: 13px;
        white-space: normal;
    }

    .services-layout .services .service .secondary-link {
        font-size: 12px;
    }

    .services-layout .services .card {
        padding: 30px 20px;
        display: inline-flex;
        vertical-align: middle;
    }

    .services-layout .services .card p {
        font-size: 16px;
        margin: 10px 0 30px;
        white-space: normal;
        width: 100%;
    }

    .services-layout .services .card .primary-link {
        margin: 0 auto;
        width: fit-content;
    }

}

@media (min-width: 768px) and (max-width: 1081px) {
    #references-references .images .image {
        max-width: 48%;
    }
}

@media (max-width: 359px) {
    #hero .container .right-side img:last-of-type {
        width: 60%;
        right: -60px;
    }

    #hero h2 {
        font-size: 26px;
    }

    #hero .left-side p {
        font-size: 13px;
        line-height: 1.4;
    }

    #hero .links > * {
        font-size: 14px;
    }
}