@import url("https://fonts.googleapis.com/css2?family=Michroma&display=swap");
@font-face {
  font-family: "Gotham Pro";
  src: url("../fonts/GothamPro-Light.woff2") format("woff2"), url("../fonts/GothamPro-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("../fonts/GothamPro-Medium.woff2") format("woff2"), url("../fonts/GothamPro-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("../fonts/GothamPro.woff2") format("woff2"), url("../fonts/GothamPro.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --black: #2c2c2b;
  --grey: #8e8e8e;
  --blue: #0076b8;
  --white: #f0f0f0;
  --text-multiplier: 1;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (min-width: 48rem) {
  :root {
    --text-multiplier: 1.5;
  }
}
@media (min-width: 320px) {
  :root {
    --text-multiplier: 0.8;
  }
}
@media (min-width: 600px) {
  :root {
    --text-multiplier: 0.9;
  }
}
@media only screen and (min-width: 768px) {
  :root {
    --text-multiplier: 1;
  }
}
@media only screen and (min-width: 992px) {
  :root {
    --text-multiplier: 0.9;
  }
}
@media only screen and (min-width: 1200px) {
  :root {
    --text-multiplier: 1;
  }
}
@media only screen and (min-width: 1920px) {
  :root {
    --text-multiplier: 1.5;
  }
}
h1 {
  font-size: calc(2rem * var(--text-multiplier));
  font-family: "Michroma", sans-serif;
}

h2 {
  font-size: calc(1.75rem * var(--text-multiplier));
  font-family: "Michroma", sans-serif;
  text-transform: uppercase;
}

h3 {
  font-size: calc(1.5rem * var(--text-multiplier));
  font-family: "Michroma", sans-serif;
}

h4 {
  font-size: calc(1.25rem * var(--text-multiplier));
  font-family: "Michroma", sans-serif;
}

p {
  font-size: calc(1rem * var(--text-multiplier));
  font-family: "Maven Pro", sans-serif;
  font-family: "Gotham Pro";
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
}

html {
  margin: 0;
  padding: 0;
  height: 95%;
  max-width: 100vw;
  overflow-x: auto;
  scroll-behavior: smooth;
}

body {
  font-size: calc(1rem * var(--text-multiplier));
  background: var(--white);
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Gotham Pro";
  font-weight: normal;
  font-style: normal;
  justify-content: space-between;
}

header {
  font-family: "Maven Pro", sans-serif;
  padding: 10px 0;
  position: fixed;
  width: 100%;
  margin: 0 auto;
  z-index: 5;
  z-index: 10;
  transition: all 0.5s ease;
  background: rgba(255, 255, 255, 0.6);
}
header img.logo {
  width: 100px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
header .menu-icon {
  height: 30px;
  width: 30px;
  position: absolute;
  z-index: 101;
  right: 20px;
  top: 25px;
  cursor: pointer;
  display: none;
  z-index: 101;
}
@media only screen and (max-width: 600px) {
  header .menu-icon {
    display: block;
  }
}
header .menu-icon .menu-icon__line {
  height: 2px;
  width: 30px;
  display: block;
  background-color: var(--black);
  margin-bottom: 4px;
  transition: transform 0.2s ease, background-color 0.5s ease;
}
header .menu-icon .menu-icon__line-left {
  width: 15px;
}
header .menu-icon .menu-icon__line-right {
  width: 15px;
  float: right;
}
header .menu-icon.nav-active {
  position: fixed;
}
header .menu-icon.nav-active .menu-icon__line {
  background-color: var(--white);
  transform: translateX(0px) rotate(-45deg);
}
header .menu-icon.nav-active .menu-icon__line-left {
  transform: translateX(1px) rotate(45deg);
}
header .menu-icon.nav-active .menu-icon__line-right {
  transform: translateX(-2px) rotate(45deg);
}
@media only screen and (max-width: 600px) {
  header .menu-header {
    position: absolute;
    top: 0%;
    left: 0;
    background: var(--blue);
    z-index: 100;
    height: 100vh;
    width: 100%;
    transition: all 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transform: translateX(-100%);
  }
  header .menu-header.nav-active {
    display: block;
    transform: translateX(0%);
  }
}
header .menu-header .menu ul {
  list-style: none;
  display: inline-flex;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 600px) {
  header .menu-header .menu ul {
    display: block;
    padding: 50px 20px;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 340px) {
  header .menu-header .menu ul {
    display: block;
    padding: 10px;
    font-size: 1.25rem;
  }
}
header .menu-header .menu ul li {
  margin: 8px 15px;
  white-space: nowrap;
  text-decoration: none;
  text-transform: uppercase;
}
@media only screen and (max-width: 600px) {
  header .menu-header .menu ul li {
    width: auto;
    margin: 20px 0;
    font-size: 1.5rem;
  }
}
header .menu-header .menu ul li a {
  text-decoration: none;
  padding: 10px 10px;
  color: var(--black);
  font-weight: 400;
  font-family: var(--font-family);
  position: relative;
  display: block;
  padding: 4px 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.5s;
}
@media only screen and (max-width: 600px) {
  header .menu-header .menu ul li a {
    color: var(--white);
  }
}
header .menu-header .menu ul li a:after {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--grey);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s;
}
header .menu-header .menu ul li a:hover {
  color: var(--blue);
}
@media only screen and (max-width: 600px) {
  header .menu-header .menu ul li a:hover {
    color: var(--white);
  }
}
header .menu-header .menu ul li a:hover::after, header .menu-header .menu ul li a.active:after {
  transform: scaleX(1);
  transform-origin: left;
}
header .menu-header .phone {
  padding: 10px;
  font-size: 1rem;
}
@media only screen and (max-width: 600px) {
  header .menu-header .phone {
    width: auto;
    margin: 20px;
    font-size: 1.5rem;
  }
}
header .menu-header .langs {
  display: inline-flex;
  list-style: none;
  padding-left: 20px;
}
header .menu-header .langs li {
  font-size: 1rem;
  margin: 10px;
  padding: 5px 7px;
}
header .menu-header .langs li a {
  color: var(--black);
  text-decoration: none;
}
@media only screen and (max-width: 600px) {
  header .menu-header .langs li a {
    color: var(--white);
    font-size: 1.5rem;
  }
}
header .menu-header .langs li.active {
  background: var(--blue);
}
header .menu-header .langs li.active a {
  color: var(--white);
}
header.scroll {
  background: var(--white);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
}
header.scroll img.logo {
  opacity: 1;
}

.page-content {
  max-width: 100vw;
  flex-grow: 1;
  height: auto;
  overflow-x: hidden;
}
.page-content p {
  font-size: 1.1rem;
}
.page-content img {
  width: 100%;
  position: relative;
}
.page-content .hero {
  height: 80vh;
  position: relative;
  margin-bottom: 80px;
}
@media only screen and (max-width: 600px) {
  .page-content .hero {
    height: 65vh;
    margin-bottom: 0px;
  }
}
.page-content .hero .logo-hero {
  position: absolute;
  top: 50%;
  width: 30vw;
  left: 10vw;
  z-index: 1;
  transform: translateY(-50%);
  transition: all 0.5s ease;
}
@media only screen and (max-width: 600px) {
  .page-content .hero .logo-hero {
    position: absolute;
    top: 30vh;
    width: 80vw;
  }
}
.page-content .hero .logo-hero h3 {
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 600px) {
  .page-content .hero .logo-hero h3 {
    display: none;
  }
}
.page-content .hero .logo-hero p {
  margin: 15px 0;
}
.page-content .hero .logo-hero svg {
  display: block;
  margin: 0 auto;
}
.page-content .hero .logo-hero svg path {
  stroke-width: 0;
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  stroke: transparent;
  animation: draw 3s none;
}
@media only screen and (max-width: 600px) {
  .page-content .hero .logo-hero svg {
    width: 70vw;
  }
}
@keyframes draw {
  0% {
    stroke-width: 1px;
    fill: transparent;
    stroke: #000;
    stroke-dashoffset: 1500;
  }
  50% {
    stroke-width: 1px;
    fill: transparent;
    stroke: #000;
    stroke-dashoffset: 2000;
  }
}
.page-content .hero img.hero-image {
  height: 100%;
  width: auto;
  position: absolute;
  top: 0;
  right: 10vw;
}
@media only screen and (max-width: 600px) {
  .page-content .hero img.hero-image {
    top: 37vh;
    height: 200px;
  }
}
.page-content h3 {
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 20px;
}
.page-content h3.title-left {
  text-align: left;
}
.page-content h3.title-right {
  text-align: right;
}
.page-content section {
  padding: 60px 10px;
}
@media only screen and (max-width: 600px) {
  .page-content section {
    padding: 30px 20px;
  }
}
.page-content section.counter {
  background-color: var(--black);
  left: 0;
  padding: 50px 0;
  color: var(--white);
  text-transform: uppercase;
  text-align: left;
}
@media only screen and (max-width: 600px) {
  .page-content section.counter div > div {
    margin-bottom: 20px;
  }
}
.page-content section.counter h2 {
  padding: 0px;
  margin: 5px 0;
  font-size: 3rem;
}
.page-content section.counter p {
  padding: 0;
  margin: 0;
  font-size: 1.5rem;
  text-align: left;
}
.page-content section.counter sup {
  color: var(--blue);
  padding: 10px;
  font-size: 1.25rem;
}
@media only screen and (max-width: 600px) {
  .page-content section.counter {
    padding: 30px 40px;
  }
  .page-content section.counter h2 {
    padding: 0px;
    margin: 5px 0;
    font-size: 2rem;
  }
  .page-content section.counter p {
    padding: 0;
    margin: 0;
    font-size: 1.25rem;
    text-align: left;
  }
  .page-content section.counter sup {
    color: var(--blue);
    padding: 10px;
    font-size: 1rem;
  }
}
.page-content section.about {
  background: var(--blue);
  color: var(--white);
}
.page-content section.services .accordion {
  width: 100%;
  position: relative;
}
.page-content section.services .accordion p {
  color: var(--black);
  font-weight: 400;
}
.page-content section.services .accordion .service {
  max-height: 60px;
  width: 100%;
  border-bottom: 2px solid var(--blue);
  overflow: hidden;
  transition: 0.6s;
  animation-timing-function: ease-in-out;
}
.page-content section.services .accordion .service .header {
  width: 100%;
  height: 60px;
  padding: 15px;
  transition: 0.6s;
  font-size: 2rem;
  position: relative;
}
.page-content section.services .accordion .service .header h3 {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
  padding: 0;
  margin: 0;
  font-family: "Gotham Pro";
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
}
.page-content section.services .accordion .service .header .icon {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  vertical-align: middle;
  font-size: 1.5rem;
}
.page-content section.services .accordion .service .inner-content {
  width: 100%;
  padding: 20px;
  background: var(--white);
  color: var(--black);
}
@media only screen and (max-width: 600px) {
  .page-content section.services .accordion .service .inner-content {
    padding: 10px;
  }
}
.page-content section.services .accordion .service .inner-content p {
  padding: 0;
  margin: 5px 0;
  line-height: 1.5;
}
.page-content section.services .accordion .service .inner-content ul {
  padding: 0 0 0 20px;
  margin: 0;
  line-height: 1.2;
}
.page-content section.services .accordion .service.open {
  max-height: 800px;
  color: var(--white);
}
.page-content section.services .accordion .service.open .header {
  background: var(--blue);
}
.page-content section.services .accordion .service.closed {
  max-height: 0px;
  border-top: 0px none;
}
.page-content section.services .accordion .service:hover {
  background: var(--blue);
}
.page-content section.services .accordion .service:hover h3,
.page-content section.services .accordion .service:hover span {
  color: var(--white);
}
.page-content section.departments {
  background: var(--blue);
  color: var(--white);
}
.page-content section.departments .department {
  position: relative;
  margin-bottom: 30px;
}
.page-content section.departments .department::after {
  position: absolute;
  width: 1px;
  height: 100%;
  content: "";
  background: var(--white);
  top: 0;
  left: 8px;
}
.page-content section.departments .department h3 {
  padding: 0;
  margin: 0;
  background: var(--white);
  color: var(--blue);
  padding: 10px;
  font-size: 1.25rem;
}
.page-content section.departments .department h4 {
  padding: 10px;
  margin: 0;
  font-family: "Gotham Pro";
  font-weight: 500;
  font-style: normal;
  font-size: 1.25rem;
}
.page-content section.departments .department p {
  padding: 0;
  margin: 0px 10px;
  display: flex;
  height: 30px;
  font-family: "Gotham Pro";
  font-weight: 300;
  font-style: normal;
}
.page-content section.departments .department p img {
  height: 24px;
  width: 24px;
  padding: 4px;
  margin-right: 5px;
  float: inline-start;
}
.page-content section.departments .department p img svg {
  stroke: var(--white);
}
.page-content section.departments .department p a {
  color: var(--white);
  text-decoration: none;
}
.page-content section .ports svg {
  height: 100%;
}
.page-content section .ports svg .port {
  transition: all 0.3s ease;
  fill: var(--white);
}
.page-content section .ports svg .port .hover {
  fill: var(--black);
}
.page-content section .ports svg .port:hover {
  fill: var(--black);
}
.page-content section .ports ul.port-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-content section .ports ul.port-list li {
  width: 100%;
  max-width: 100%;
  padding: 20px 10px;
  transition: all 0.5s ease;
}
.page-content section .ports ul.port-list li:not(:first-of-type) {
  border-top: 1px solid var(--grey);
}
.page-content section .ports ul.port-list li h3 {
  padding: 0;
  margin: 0;
  font-family: "Michroma", sans-serif;
  text-align: left;
}
@media only screen and (max-width: 600px) {
  .page-content section .ports ul.port-list li h3 {
    padding-bottom: 15px;
    text-align: center;
  }
}
.page-content section .ports ul.port-list li small {
  font-size: 0.8rem;
  width: 100%;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  display: block;
}
.page-content section .ports ul.port-list li:hover, .page-content section .ports ul.port-list li.hover {
  opacity: 1;
  background: var(--blue);
  color: var(--white);
}
.page-content section.team {
  background: var(--blue);
  color: var(--white);
}
.page-content section.team .person {
  position: relative;
  overflow: hidden;
}
.page-content section.team .person .text {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}
.page-content section.team .person .text h4 {
  padding: 0;
  margin: 5px 10px;
}
.page-content section.team .person .text h5 {
  padding: 0;
  margin: 5px 10px;
}
.page-content section.team .person .image {
  width: 100%;
  padding: 0;
}
.page-content section.contacts h4 {
  text-transform: uppercase;
}
.page-content section.contacts p {
  color: var(--grey);
  padding: 5px 0;
  margin: 0;
}

footer {
  margin: 0;
  padding: 10px;
  font-size: 0.8rem;
  background: var(--blue);
  color: var(--white);
}/*# sourceMappingURL=style.css.map */