
html {
  overflow-y: scroll;
  overflow-y: overlay;
}

body {
  color: #1E1E1E;
  background-color: #efefef;
  display: flex;
  flex-direction: column;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  min-height: 100vh;
  min-width: 420px;
}

air-header {
  background-color: #000;
  border-bottom: #FFE62C 2px solid;
  display: block;
  height: 72px;
  width: 100%;
}

@media only screen and (max-width: 1440px) {

  .xl-max {
    box-sizing: border-box;
    width: 1280px;
  }

  .xl,
  .lg,
  .md,
  .xl {
    display: initial;
  }
}

@media only screen and (max-width: 1280px) {

  .xl-max,
  .lg-max {
    box-sizing: border-box;
    width: 1024px;
  }

  .xl {
    display: hidden !important;
  }

  .lg,
  .md,
  .sm {
    display: initial;
  }
}

@media only screen and (max-width: 1024px) {

  .xl-max,
  .lg-max,
  .md-max {
    box-sizing: border-box;
    width: 740px;
  }

  .xl,
  .lg {
    display: hidden !important;
  }

  .md,
  .sm {
    display: initial;
  }
}

@media only screen and (max-width: 800px) {

  .xl-max,
  .lg-max,
  .md-max,
  .sm-max {
    box-sizing: border-box;
    width: 100%;
  }
  
  .xl,
  .lg,
  .md {
    display: hidden !important;
  }

  .sm {
    display: initial;
  }
}

* {
  scrollbar-width: thin;
  scrollbar-color: #888888 #ccc;
}

::-webkit-scrollbar {
  background: transparent;
  height: 10px;
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  opacity: 0.5;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-resizer,
::-webkit-scrollbar-button,
::-webkit-scrollbar-corner { 
  display: none; 
}

::-webkit-scrollbar-track-piece {
  background:transparent;
}

.button {
  background-color: #FFE62C;
  border: none;
  border-bottom: 3px solid #000;
  border-radius: 6px;
  box-sizing: border-box;
  color: #000;
  font-weight: 500;
  font-size: 16px;
  margin-top: 12px;
  padding: 12px 36px;
  text-decoration: none;
  line-height: 150%;
}

.button:hover {
  background-color: #333;
  color: #ccc;
}

/* --- */

.page-heading {
  box-sizing: border-box;
  color: #000;
  display: flex;
  flex-direction: column;
  font-weight: 500;
  padding: 48px;
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
}

.page-heading h1,
.page-heading h2 {
  margin: 0;
}

.page-heading h1 {
  font-size: 2rem;
  order: 2;
}

.page-heading h2 {
  font-size: 1.5rem;
  opacity: 0.5;
  order: 1;
}

@media only screen and (max-width: 1024px) {
  
  .page-heading {
    padding: 24px 48px;
    font-size: 1.25rem;
  }
}

@media only screen and (max-width: 750px) {
  
  .page-heading {			
    padding: 24px;	
    font-size: 1.1rem;
  }
}

/* --- */

.company-services {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 48px;
  padding-top: 0;
  width: 1280px;
  max-width: 100%;
  margin: 0 auto auto;
  gap: 24px;
}

.company-services .company-service {
  display: flex;
  flex-direction: column;
  width: 275px;
  gap: 24px;
}

.company-services .company-service img {
  aspect-ratio: 1.5;
  object-fit: cover;
  width: 100%;
}

.company-services .company-service img.logo {
  aspect-ratio: 1;
}

.company-services .company-service h3,
.company-services .company-service p {
  margin: 0;
}

.company-services .company-service .read-more-link {
    align-items: center;
    color: #000;
    display: flex;
    margin-right: auto;
    flex-direction: row;
    text-decoration: none;
}

.company-services .company-service .read-more-link:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 1024px) {
  
  .company-services {
    padding: 48px;
    padding-top: 0;
  }
}

@media only screen and (max-width: 750px) {

  .company-services .company-service {
    width: 100%;
  }

  .company-services {
    flex-direction: column;
    padding: 24px;
    padding-top: 0;
  }
}

/* --- */

.company-services-detail {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  margin: auto;
  margin-bottom: 24px;
  padding: 48px;
  padding-top: 0;
  width: 1280px;
  max-width: 100%;
  gap: 48px;
}

.company-services-detail img {
  aspect-ratio: 1.25;
  object-fit: cover;
  width: 50%;
}

.company-services-detail .company-service-detail {
  gap: 24px;
  display: flex;
  flex-direction: column;
}

.company-services-detail .company-service-detail p,
.company-services-detail .company-service-detail ul {
  line-height: 150%;
  margin: 0;
}

.company-services-detail .company-service-detail .read-more-link {
  align-items: center;
  background-color: #f9e73a;
  border-radius: 6px;
  box-sizing: border-box;
  color: #000;
  display: flex;
  flex-direction: row;
  margin-top: 24px;
  margin-right: auto;
  padding: 3px 0 3px 12px;
  text-decoration: none;
}

.company-services-detail .company-service-detail .read-more-link:hover {
  background-color: #333;
  text-decoration: none;
  color: #ccc;
}

.company-services-detail .company-service-detail .read-more-link:hover svg {
  fill: #ccc;
}


@media only screen and (max-width: 750px) {
  
  .company-services-detail {
    flex-direction: column;
    margin-bottom: auto;
    padding: 24px;
  }

  .company-services-detail img {
    width: 100%;
  }

  .company-services-detail .company-service-detail .read-more-link {
    padding: 18px 24px;
    width: 100%;
  }
}

/* --- */