/*! HTML5 Boilerplate v9.0.0-RC1 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */


:root {
  --color-black: #131313;
  --color-white: #ffffff;
  --color-blue: #00B7DF;
  --color-gray-light: #EEEEEE;
}

  

html {
  color: var(--color-black);
  font-size: 1em;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;

}

body {
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}


ul,li {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    color: var(--color-blue);
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

a,
a:visited {
  color: var(--color-blue);
  text-decoration: none;
}

h1,h2,h3,h4,h5,h6 {
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  
}

.navigation {
  display: flex;
  flex-wrap: wrap;
}

.navigation a {
  display: block;
  margin: 0 8px;
  padding: 8px 16px;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight:500;
}

.navigation a.active {
  color: var(--color-blue);
}

@media only screen and (max-width: 900px) {
  .navigation {
    position: fixed;
    z-index: 10;
    right: 0;
    top: 0;
    bottom: 0;
    transform: translate3d(-200px);
    padding: 128px 48px 80px 48px;
    background-color: var(--color-black);
    transition: transform 0.3s ease-in-out;
    transform: translate3d(100%, 0, 0);
  }

  .navigation.open {
    display: block;
    transform: translate3d(0, 0, 0);
  }

  .navigation a {
    padding: 8px 24px;
    border-bottom: 1px solid #333;
    font-size: 24px;
    font-weight: 600;
  }
}


header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 32px 0;
  background-color: var(--color-black);
  z-index: 5;
}

.header.compact {
  padding: 24px 0;
}

@media only screen and (max-width: 900px) {
  .header {
    padding: 24px 0;
  }
}

header .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}

header .actions {
  background-color: wheat;
  width: 5px;
  height: 5px;
}

.component {
  padding: 128px 0;
}

.intro-text {
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 48px;
  text-align: center;
}

.intro-text__title {
  margin-bottom: 24px;
  font-size: clamp(32px, calc(28px + 2vw), 64px);
  line-height: clamp(40px, calc(32px + 2vw), 72px);

  font-weight: 900;
}

.intro-text__description {
  margin-bottom: 32px;
  font-weight: 300;
  font-size: 24px;
  line-height: 32px;
}

/*
  * Component Hero
  */

.component-hero {
  padding: 196px 0 160px 0;

  background-color: var(--color-black);
  color: white;
}

.component-hero__text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.component-hero__title {
  margin-bottom: 32px;
  font-size: clamp(48px, calc(32px + 2vw), 72px);
  line-height: clamp(48px, calc(32px + 2vw), 72px);
  font-weight: 900;
}

.component-hero__description {
  margin-bottom: 32px;
  font-size: clamp(16px, calc(14px + 1vw), 24px);
  line-height: clamp(32px, calc(14px + 1vw), 40px);
  font-weight: 300;
}


.component-hero__link {
  display: inline-block;
  font-weight: 300;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 32px;
  color: var(--color-white);
  text-decoration: none;
  padding: 12px 32px;
  border: 1px solid var(--color-blue);
  border-radius: 5px;
  transition: 0.5s all;
}

.component-hero__link:hover {
  background-color: var(--color-blue);
  color: white;
}

/*
  * Component Logos
  */

.component-logos {
  padding: 96px 0;
  background-color: var(--color-gray-light);
}

.component-logos__title {
  margin-bottom: 40px;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;

}

.component-logos__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.component-logos__items img {
  margin: 0 40px;
  filter: grayscale(100%);
  opacity: 0.7;
  height: 64px;
  width: auto;
  display: block;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 900px) {
  .component-logos__items img {
    width: 40%;
    margin-bottom: 16px;
  }
}

.component-logos__items img.logo-small {
  height: 32px;
}

/*
  * Component Features
  */
.component-features {
}

.component-features__text {

}



.component-features__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 64px;
}

.component-features__item {
  display: flex;
  flex-wrap: wrap;
}

@media only screen and (max-width: 900px) {
  .component-features__items {
    display: block;
  }
}


.feature {
  padding: 40px;
  border: 1px solid var(--color-gray-light);
  border-radius: 5px;
}

@media only screen and (max-width: 900px) {
  .feature {
    margin-bottom: 32px;
  }
}

.feature__icon {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  width: 64px;
  height: 64px;
  border-radius: 5px;
  background-color: var(--color-gray-light);
}

.feature__title {
  margin: 0 0 16px 0;
  font-size: 24px;
  font-weight: 800;
}

.feature__description {
  font-size: 16px;
  line-height: 28px;
}

/*
  * Component Solutions
  */
  .component-solutions {
    background-color: #eee;

  }
  

  .component-solutions__items {

  }
  
  .solution {
    margin-bottom: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  @media only screen and (max-width: 900px) {
    .solution {
      margin-bottom: 64px;
      display: block;
    }
  }

  .solution__title {
    font-size: 32px;
    font-weight: 800;
  }

  .solution__description {
    font-size: 18px;
    line-height: 32px;
    font-weight: 400;
  }

  .solution__text {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
  }

  @media only screen and (max-width: 900px) {
    .solution__text {
      margin-top: 16px;
    }
  }

  .solution img {
    width: 100%;
    height: auto;
  }

.component-company__subtitle {
  margin-bottom: 40px;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
}

.component-company__under-title {
  margin-bottom: 40px;
  margin-top: -40px;
  text-align: center;
  font-size: 18px;
  font-weight: 300;
}
  
.component-company__items {
  margin: 0 auto;
  width: 100%;
  max-width: 1024px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 72px;
}

@media only screen and (max-width: 900px) {
  .component-company__items {
    display: block;
  }
}

@media only screen and (max-width: 900px) {
  .team {
    margin: 0 auto;
    max-width: 280px;
    margin-bottom: 40px;
  }
}



.team img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}



.team__name {
  margin-top: 25px;
  text-align: center;
  font-weight: 800;
}

.team__title {
  text-align: center;
  color: #333;
}


.footer {
  padding: 96px 0;
  background-color: var(--color-black);
  color: var(--color-white);
}

.footer__logo {
  height: 28px;
  width: auto;
}

.footer__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 80px;
}

@media only screen and (max-width: 900px) {
  .footer__items {
    display: block;
  }
}

.footer__title {
  margin-bottom: 24px;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
}

@media only screen and (max-width: 900px) {
  .footer__title {
    margin-bottom: 16px;
  }
}

.footer p {
  font-size: 12px;
  line-height: 21px;
  color: #eee;
}

.text-highlight {
  color: var(--color-blue);
  font-weight: 500;
}

@media only screen and (max-width: 900px) {
  .footer__col {
    margin-bottom: 48px;
  }
}





.burger {
  display: none;
  margin-right: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  outline: 0;
  position: relative;
  width: 24px;
  height: 24px;
  z-index: 11;
}

@media only screen and (max-width: 900px) {
  .burger {
    display: block;
  }
}


.burger .line {
  display: block;
  height: 2px;
  margin: 5px 0;
  background-color: var(--color-white);
  transition: 0.2s ease-in-out;
}

.burger.open .line:nth-child(1) {
  transform: rotate(45deg) translateX(5px) translateY(5px);
  transition-delay: 0.2s;
}

.burger.open .line:nth-child(2) {
  opacity: 0;
}

.burger.open .line:nth-child(3) {
  transform: rotate(-45deg) translateX(5px) translateY(-5px);
  transition-delay: 0.2s;
}