:root {
  --background: #121212;
  --cta-btn: #0097A7;
  --cta-btn-hover: #00B8A9;
  --text-color: #E0E0E0;
  --text-color-on-white: #C8961E;
  --primary: #0097A7;
  --secondary: #DAA520;
  --tertiary: #007BFF;
  --link-color: #00A3A3;
  --link-hover: #007B7B;
  --menu-links: #00A3A3;
  --menu-links-hover: #004fa3;
  --card-background: #242C34;
  --background--animation-color: #E0E0E0;
  --content-font: 'Open Sans', sans-serif;
  --heading-font: 'Montserrat', sans-serif;
}

html {
  font-size: 16px;
  position: relative;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--content-font);
  color: var(--text-color);
  background: fixed;
  background-color: var(--background);  
  letter-spacing: 0.05em;  
  position: relative;
  margin: 0;
  padding: 0 2rem;
  overflow-x: hidden;
}

#content {
  max-width: 1600px;
  margin: 40px auto;
  padding: 0 20px;
  z-index: 2;
}

#content * {
  z-index: 2;
  position: relative;
}

#animation-layer {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
}

#animation-layer:before, #animation-layer:after {
  position: absolute;
  content: '';
  width: 50rem;
  height: 50rem;
  border-radius: 50%;
  filter: blur(200px);
  opacity: 0.3;
}

#animation-layer:before {
  top: -25rem;
  left: -25rem;
  background-color: var(--primary);
}

#animation-layer:after {
  bottom: -25rem;
  right: -25rem;
  background-color: var(--secondary);

}

.animation-singularity {
  width: 0.1rem;
  height: 0.1rem;
  border-radius: 50%;
  background-color: var(--background--animation-color);
  position: relative;
  animation-name: background-singularity;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  animation-timing-function: linear;  
  box-shadow: 0 0 0.5rem 0.5rem var(--background--animation-color);
  -webkit-box-shadow: 0 0 0.5rem 0.5rem var(--background--animation-color);
  -moz-box-shadow: 0 0 0.5rem 0.5rem var(--background--animation-color);
  opacity: 1;
}

@keyframes background-singularity {
  0% {transform: scale(1); opacity: 1;}
  100% {transform: scale(var(--scale_to)); opacity: 0}
}

section {
  margin: 6rem auto 8rem;
  text-align: center;
}

.inverted {
  flex-direction: row-reverse;
}

.text-container {
  width: 100%;
  padding: 2rem;
  background-color: var(--card-background);
  border-radius: 8px;
  font-weight: 500;
  letter-spacing: 0.05rem;
}

.text-inv {
  background-color: var(--primary);
}

.text-container h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

.columns-2 .text-container {
  text-align: left;
}

a {
  text-decoration: none;
  color: var(--link-color);
  font-family: var(--content-font);
}

a:hover {
  color: var(--link-hover);
}

a:visited {
  color: var(--link-color);
}

li > strong {
  font-style: italic;
  color: var(--tertiary);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  font-family: var(--heading-font);
}

h1:after {
  content: '';
  display: block;
  width: 5rem;
  height: 3px;
  background-color: var(--secondary);
  margin: 2rem auto 4rem;
}

.cta-btn {
  display: block;
  background-color: var(--cta-btn);
  font-weight: bold;
  font-size: 1rem;
  border-radius: 8px;
  width: fit-content;
  transition: 0.5s;
  margin-top: 3rem;
  padding: 1rem 1.5rem;
  transition: 0.5s;
  justify-self: center;
}

.btn-std {
  background-color: var(--cta-btn);
  color: var(--text-color);
}

.btn-std:visited {
  color: var(--text-color);
}

.btn-std:hover {
  background-color: var(--cta-btn-hover);
  color: var(--text-color);
}

.btn-inv {
  background-color: var(--text-color);
  color: var(--primary);
}

.btn-inv:visited {
  color: var(--primary);
}

.btn-inv:hover {
  background-color: var(--cta-btn-hover);
  color: var(--text-color);
}

.card {
  border: 2px solid var(--secondary);
  border-radius: 5px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--text-color);
  color: var(--text-color-on-white);
  width: 100%;
  box-shadow: 10px 10px var(--secondary);
}

.no-after:after {
  display: none;
}

ul {
  list-style: none;
  padding: 1rem;
}

#offer-section li:before {
  content: '_';
  color: var(--secondary);
}

#why-us-section li::before {
  content: '✔';
  margin-right: 1rem;
  color: var(--secondary);
}

ul li:not(:last-child) {
  margin-bottom: 0.6rem;
}

.divider {
  display: flex;
  width: 100%;
  gap: 4rem;
  justify-content: space-around;
  align-items: center;
}

.divider-vertical {
  width: 50%;
  height: 0.3rem;
}

.divider-vertical:first-child {
  background: linear-gradient(135deg, #006077, #007BFF);
}

.divider-vertical:last-child {
  background: linear-gradient(135deg, #007BFF, #006077);
}

.divider-icon {
  width: 3rem;
  height: 3rem;
  fill: var(--secondary);
  color: var(--secondary);
}

.gear-icon {
  animation-name: spin;
  animation-duration: 20s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

#opinion-icon {
  position: absolute;
  width: 5rem;
  height: 5rem;
  left: 2rem;
  top: -12px;
  fill: var(--secondary);
}

.small-card-icon {
  fill: var(--secondary);
  width: 2rem;
  height: 2rem;
}

.list-icon {
  width: 1rem;
  height: 1rem;
  fill: var(--secondary);
}

.form-row {
  display: flex;
  justify-content: start;
  gap: 1rem;
}

input, textarea {
  border-radius: 3px;
  padding: 1rem;
  font-size: 1.3rem;
  border: 2px solid var(--secondary);
  font-family: var(--header-font);
}

input:focus, textarea:focus {
  outline: none;
  border: 2px solid var(--primary);
  box-shadow: 0.3rem 0.3rem var(--primary);
}

input[type="submit"] {
  cursor: pointer;
}

.main-lead {
  font-size: 2rem;
  color: var(--tertiary);
  margin: auto auto 5rem;
}

.lead {
  font-size: 1.4rem;
  color: var(--tertiary);
  margin: auto auto 3rem;
}

.visible {
  opacity: 1 !important;
}

/* --- header --- */
header {
  max-width: 1600px;
  margin: auto;
  padding: 0 0 4.5rem;
  letter-spacing: normal;
  font-family: var(--heading-font);
  position: relative;
}

header * {
  position: relative;
  z-index: 2;
}

#header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--text-color);
}

#logo {
  display: flex;
  flex-direction: column;
}

#logo a {
  height: 100px;
}

#logo img {
  height: 100%;
}

#logo:after {
  display: none;
}

#logo-solvum {
  background: linear-gradient(135deg, #007BFF, #006077);
  color: transparent;
  background-clip: text;
}

#logo-it {
  color: var(--primary);
  position: relative;
}

#logo-it::after {
  content: '</>';
  font-family: 'Roboto Mono', monospace;
  font-size: 0.4em;
  position: absolute;
  top: -16px;
  right: -58px;
  color: var(--primary);
}

#logo-slogan {
  font-size: 2rem;
  color: var(--text-color)
}

#mobile-menu-toggle {
  display: none;
}

#mobile-menu {
  display: none;
}

#mobile-topbar {
  display: none;
}

#main-menu {
  display: flex;
  gap: 50px;
  font-size: 2rem;
}

#main-menu a {
  color: var(--menu-links);
  position: relative;
  transition: 1s;
  text-decoration-thickness: 2px;
}

.active-menu-link {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 10px;
}

/* #main-menu a:hover {
  color: var(--menu-links-hover);
} */

#main-menu a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0px;
  height: 2px;
  background-color: var(--link-color);
  transition: width 1s ease;
}

#main-menu a:hover:after {
  width: 100%;
}

#sidebar {
  position: fixed;
  opacity: 0;
  display: flex;
  top: 45vh;
  right: -40px;
  color: var(--card-background);
  align-items: center;
  z-index: 3;
  overflow: hidden;
  animation-name: showAfterDelay;
  animation-delay: 5s;
  animation-fill-mode: forwards;
  user-select: none;
}

@keyframes showAfterDelay {
  from {opacity: 0;}
  to {opacity: 1;}
}

#sidebar-nav {
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 10px 1px;
  display: flex;
  align-items: center;
  background-color: white;
  max-height: fit-content;
  z-index: 3;
}

#sidebar-nav p {
  margin: 0;
  writing-mode: sideways-lr;
}
#sidebar-nav svg {
  transition: 0.1s;
}

#sidebar-content {
  border-radius: 8px 0 0 8px;
  max-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: white;
  z-index: 3;
  overflow: hidden;
  transition: 1s linear;
  padding: 15px 20px;
}

#sidebar-content a {
  white-space: nowrap;
}

.sidebar-visible {
  max-width: 500px !important;
  padding-right: 60px !important;
}

.rotated {
  transform: rotate(180deg);
}

/* --- general --- */
.columns-2 {
  display: flex;
  gap: 5rem;
  align-items: center;
}

.rows-2 {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 2rem;
  background-color: var(--card-background);
  border-radius: 8px;
}

.cta-btns-2 {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.text {
  width: 100%;
  font-weight: 500;
  letter-spacing: 0.05rem;
}

/* --- main --- */
#hero {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
  margin-top: 3rem;
}

#under-header-text {
  font-size: 1.4rem;
  font-style: italic;
  text-align: justify;
  width: 100%;
  color: var(--tertiary);
  padding: 20px;
  height: 10rem;
}

#under-header-text p {
  opacity: 0;
  text-indent: 1.5rem;
  animation-name: fade-in;
  animation-duration: 2s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}

#hero div:last-child {
  width: 100%;
}

#clients-opinions {
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  gap: 0.3rem;
  font-size: 1.3rem;
  height: 20rem;
}

#opinions-content {
  font-weight: 600;
  opacity: 1;
  animation-duration: 10s;
  /*animation-name: fade-out;*/
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  height: 5rem;
  text-align: left;
  width: 100%;
}

#opinions-lower-row {
  display: flex;
    height: 40%;
    justify-content: end;
    align-items: start;
    position: relative;
}

#opinions-signature {
  margin: 0;
  animation-duration: 10s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  max-width: 70%;
  text-align: right;
  justify-self: end;
}

#who-are-we-img {
  object-fit: contain;
  max-height: 40rem;
  width: calc(100% - 30px);
  margin: 0 auto 5rem;
  width: fit-content;
  box-shadow: 10px 10px var(--primary);
}

#offer-section .card {
  height: 27rem;  
}

#offer-section img {
  animation-name: breathe;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#why-us-section .card {
  flex-direction: column;
}

#why-us-section .card-row {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  margin: 2rem;
}

#why-us-section .card-row h4 {
  font-size: 4.4rem;
  margin: 0.1rem;
  line-height: 4.4rem;
}
.header-expansion {
  font-size: 2rem;
  margin: 0.1rem auto 1.5rem;
}

.header-description {
  font-weight: 600;
}

#companies-section .card {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  align-items: stretch;
}

.company-logo {
  border: 3px solid var(--primary);
  border-radius: 8px;
  width: 100%;
  display: flex;
  background-color: white;
  transition-duration: 0.5s;
  height: auto;
  overflow: hidden;
}

.company-logo:hover {
  transform: scale(1.1);
}

.company-logo a {
  display: block;
  animation-name: breathe;
  animation-duration: 10s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  overflow: hidden;
}

#companies-section img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

/* ---contact --- */
#contact-form {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 30px;
  width: 75%;
  margin: 5rem auto 0;
}

#contact-form-inputs-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#contact-form .text-container {
  align-self: stretch;
}

#contact-form input {
  width: 25rem;
}

#contact-form textarea {
  width: 100%;
  height: 30rem;
}

#contact-form input[type="checkbox"] {
  width: 1.2rem;
  height: 1.2rem;
  accent-color: var(--primary);
}

#contact-form input[type="submit"] {
  border: none;
}

#contact-form input[type="checkbox"]:focus {
  box-shadow: 0.2rem 0.2rem var(--primary);
}

#contact-form-after-message {
  display: none;
  flex-direction: column;
}

/* ---about us--- */
#about-us-values {
  padding: 2rem 5rem;
  justify-content: space-between;
  align-items: stretch;
}

.about-us-value {
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 20%;
  border: 1px solid var(--secondary);
  border-radius: 8px;
  text-align: center;
  padding: 1rem;
  animation-name: fade-in;
  animation-delay: 0.2s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  background-color: var(--secondary);
  color: var(--text-color);
  align-items: center;
}

.about-us-value-icon {
  fill: var(--text-color);
  width: 5rem;
  height: 5rem;
}

.about-us-value p {
  text-align: justify;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.about-us-value:first-child {
  animation-delay: 0.3s;
  overflow: hidden;
}

.about-us-value:first-child::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 20%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
}

.about-us-value:first-child:hover::after {
  animation: shine 1s ease-in-out;
}

.about-us-value:nth-child(2) {
  animation-delay: 0.8s;
}

.about-us-value:nth-child(2):hover {
  animation-name: fade-in, flex;
  animation-delay: 0.8s, 0s;
  animation-duration: 0.5s, 2s;
  animation-fill-mode: forwards, forwards;
}

.about-us-value:nth-child(3) {
  animation-delay: 1.3s;
}

.about-us-value:nth-child(3):hover svg {
  animation-name: color-change;
  animation-delay: 0s;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

.about-us-value:nth-child(4) {
  animation-delay: 1.8s;
}

.about-us-value:nth-child(4):hover {
  animation-name: fade-in, hand-shake;
  animation-delay: 1.8s, 0s;
  animation-duration: 0.5s, 2s;
  animation-fill-mode: forwards, forwards;
  animation-timing-function: ease-in-out, linear;
}

.about-us-value,
.about-us-value-icon {
  transform-origin: center center;
  -webkit-transform-origin: center center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform, opacity;
}

@keyframes shine {
  from {
    left: -75%;
  }
  to {
    left: 125%;
  }
}

@keyframes flex {
  0% {transform: scale(1,1);}
  30% {transform: scale(1.1,1);}
  60% {transform: scale(1,1.1);}
  100% {transform: scale(1);}
}

@keyframes hand-shake {
  0%, 100% { transform: translateY(0); }
  33% { transform: translateY(+1.5rem); }
  66% { transform: translateY(-1.5rem); }
}

@keyframes color-change {
  0%, 100% {fill: var(--text-color);}
  20% {fill: var(--primary);}
  40% {fill: var(--tertiary);}
  60% {fill: var(--background);}
  80% {fill: var(--primary);}
}

/* ---offer--- */
#services-section .cta-btn {
  margin-top: 0;
}

#offer-lead-section .text-container {
  margin-top: 3rem;
}

#offer-lead-first em, #offer-lead-second p {
  animation-name: fade-in;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

#offer-lead-first em {
  animation-delay: 0.5s;
}

#offer-lead-second p {
  animation-delay: 1s;
}

#offer-services-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  padding: 2rem;
  align-items: stretch;
  scroll-margin-top: 5rem;
}

.offer-service-card {
  flex: 0 0 calc(25% - 1.5rem);
  padding: 2rem 0.5rem;
  border: 1px solid var(--secondary);
  border-radius: 8px;
  transition-duration: 0.5s;
  cursor: pointer;
  background-color: var(--primary);
  color: var(--text-color);
  font-weight: 600;
}

.offer-service-card h2 {
  color: var(--secondary);
}

.offer-service-card p {
  font-size: 1.2rem;
}

.offer-service-card:hover {
  box-shadow: 15px 15px 0 0 var(--secondary);
}

.offer-service-card:last-child {
  cursor:default;
  flex: 1 1;
}

.offer-service {
  scroll-margin-top: 5rem;
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.offer-service h1 {
  text-align: left;
  margin-bottom: 0;
}

.offer-service h1:before {
  content: '_';
  color: var(--secondary);
  margin-right: 1rem;
}

.offer-service h1:after {
  display: none;
}

.service-bulletpoints {
  display: flex;
  justify-content: space-around;
}

.service-bulletpoints li {
  color: var(--tertiary);
  font-weight: 600;
  font-size: 1.1rem;
  list-style-type: none;
  text-transform: capitalize;
}

.service-bulletpoints li::before {
    content: '✔';
    margin-right: 1rem;
    color: var(--secondary);
}

.service-details-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  gap: 3rem;
  background-color: var(--primary);
  width: 80%;
  margin: 0 auto;
  border-radius: 8px;
}

.service-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-details h2 {
  color: var(--text-color);
  text-decoration: underline;
  text-decoration-color: var(--secondary);
  text-decoration-thickness: 3px;
  text-underline-offset: 10px;
  line-height: 2.4rem;
}

.service-details ul {
  padding: 0;
  margin-top: 2rem;
}

.service-details ul li {
  padding-left: 1.5rem;
}

.service-details ul li:before {
  position: absolute;
  left: 0;
}

.service-details:first-child ul li:before {
  content: '▸';
  color: gold;
}

.service-details:last-child ul li:before {
  content: '★';
  color: gold;
}

.service-faq {
  text-align: left;
}

.service-faq h2 {
  margin-bottom: 2rem;
}

.service-faq svg {
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.2rem;
  fill: var(--secondary);
}

.service-faq-question {
  font-weight: 700;
  color: var(--tertiary);
}

.service-faq-answer {
  margin-bottom: 2rem;
}

.service-details ul {
  text-align: left;
  color: var(--background);
  font-size: 1.1rem;
  font-weight: 600;
}

.offer-service .cta-btn {
  align-self: center;
}

#offer-closing-cta {
    flex-direction: column;
    padding: 2rem 20rem;
    gap: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

#offer-closing-cta .cta-btn {
    margin: 0;
}

#scroll-to-button {
  position: fixed;
  right: 5rem;
  bottom: 5rem;
  cursor: pointer;
  opacity: 0;
  transition-duration: 0.3s;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 1rem;
  border-radius: 8px;
}

#scroll-to-button svg {
  width: 2rem;
  fill: var(--primary);
}

/* ---footer--- */
footer {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 1.8rem 0 2rem;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--text-color);
}

footer * {
  position: relative;
  z-index: 2;
}

/* ---animations--- */
.breathe {
  animation-name: breathe;
}

.fade-out {
  animation-name: fade-out;
}

.fade-in {
  animation-name: fade-in;
}

@keyframes fade-in {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fade-out {
  0% {opacity: 0;}
  5% {opacity: 1;}
  90% {opacity: 1;}
  100% {opacity: 0;}
}

@keyframes breathe {
  0% {opacity: 0;}
  10% {opacity: 1;}
  90% {opacity: 1;}
  100% {opacity: 0;}
}

@keyframes spin {
  from {transform: rotate(0deg);}
  to {transform: rotate(360deg);}
}

@media screen and (max-width: 1024px) {
  body {
    padding: 0 1rem;
  }
  section {
    margin: 4rem auto;
  }
  #animation-layer:before, #animation-layer:after {
    width: 30rem;
    height: 30rem;
  }
  #header-wrapper {
    flex-direction: column;
  }
  header {
    padding: 0 0 1rem;
  }
  #logo a {
    max-width: 95vw;
  }
  #logo img {
    height: auto;
    width: 100%;
  }
  #main-menu {
    display: none;
  }
  #mobile-menu-toggle {
    display: block;
  }
  #mobile-menu {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.99);
    z-index: 5;
    align-content: flex-start;
    gap: 3rem;
    padding: 15vh 0 0 3rem;
  }
  #mobile-menu a {
    display: flex;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    align-items: center;
    opacity: 0;
    animation-duration: 0.5s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
    animation-delay: calc(var(--i) * 0.1s);
  }
  #mobile-menu a:nth-child(1) {
    --i: 1;
  }
  #mobile-menu a:nth-child(2) {
    --i: 1;
  }
  #mobile-menu a:nth-child(3) {
    --i: 2;
  }
  #mobile-menu a:nth-child(4) {
    --i: 3;
  }
  #close-mobile-menu {
    position: absolute;
    top: 1rem;
    left: calc(50% - 24px);
    cursor: pointer;
  }
  #close-mobile-menu svg {
    width: 3rem;
    height: 3rem;
  }
  #mobile-menu-toggle {
    cursor: pointer;
  }
  #mobile-menu-toggle svg {
    width: 3rem;
    height: 3rem;
    margin-top: 2rem;
  }
  #mobile-menu-toggle svg path {
    fill: var(--primary);
  }
  #mobile-topbar {
    z-index: 4;
    justify-content: space-around;
    align-items: center;
    width: 100vw;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.9);
    gap: 2em;
  }
  #mobile-topbar-toggler {
    cursor: pointer;
  }
  #mobile-topbar-toggler svg {
    width: 3rem;
    height: 3rem;
  }
  #mobile-topbar-toggler svg path {
    fill: var(--primary);
  }
  #mobile-topbar-logo img {
    max-width: 100%;
  }
  #mobile-topbar-scroll {
    cursor: pointer;
  }
  #mobile-topbar-scroll svg {
    width: 3rem;
    height: 3rem;
    fill: #404040;
  }
  #content {
    padding: 0;
    margin: 0 auto;
  }
  #hero {
    margin-top: 1rem;
    gap: 0;
  }
  #under-header-text {
    height: auto;
    padding: 0;
  }
  .columns-2 {
    flex-direction: column;
  }
  .rows-2 {
    flex-direction: column;
    padding: 1rem 0.5rem;
  }
  .cta-btns-2 {
    flex-direction: column;
    gap: 0;
  }
  #clients-opinions {
    height: 75vh;
    justify-content: space-between;
    padding: 1rem;
  }
  #opinions-content {
    height: auto;
  }

#opinions-lower-row {
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  height: auto;
}
  #opinions-signature {
    max-width: 100%;
    text-align: left;
    margin-top: auto;    
  }
  #opinions-name {
    text-align: left;
  }
  #opinion-icon {
    position: relative;
    bottom: 0;
    left: 0;
  }
  .text-container {
    padding: 1rem;
  }
  .divider {
    gap: 1rem;
  }
  #who-are-we-img {
    width: 100%;
  }
  #why-us-section .card-row {
    flex-direction: column;
    gap: 0.3rem;
  }
  #companies-section .card {
    flex-direction: column;
  }
  .company-logo {
    height: 12rem;
  }
  #offer-services-cards {
    flex-direction: column;
  }
  .service-bulletpoints {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .service-bulletpoints li {
    width: 45%;
    text-align: left;
  }
  .service-details-wrapper {
    flex-direction: column;
    padding: 1rem;
    width: 100%;
  }
  ul li:not(:last-child) {
    margin-bottom: 1.2rem;
  }
  #offer-closing-cta {
    padding: 1rem;
  }
  #scroll-to-button {
    right: 1rem;
    bottom: 2rem;
  }
  #about-us-values {
    flex-direction: column;
    gap: 2rem;
    padding: 1rem;
  }
  .about-us-value {
    width: 100%;
  }
  #contact-form {
    width: 100%;
    margin-bottom: 2rem;
  }
  #contact-form .text-container {
    order: -1;
  }
  #contact-form input {
    width: 90vw;
  }
  #sidebar svg {
    display: none;
  }
}

@media screen and (min-width: 481px) and (max-width: 900px) {
  #logo a {
    height: 100px;
  }
  #logo img {
    height: 100%;
    width: auto;
  }
  #companies-section .card {
    align-items: center;
  }
 .company-logo {
    width: 70vw;
    height: 40vw;
  }
  #companies-section img {
    object-fit: fill;
  }
  .company-logo a {
    width: 100%;
  }
}

@media screen and (min-width: 901px) and (max-width: 1024px) {
  #logo a {
    height: 100px;
  }
  #logo img {
    height: 100%;
    width: auto;
  }
  #companies-section .card {
    flex-direction: row;
  }
  .company-logo {
    height: auto;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1450px) {
  #contact-form .text-container {
      order: -1;
  }
  #contact-form .columns-2 {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-us-value {
    width: 22%;
  }
  #about-us-values {
    padding: 1rem 2rem;
  }
}