@import url('../fonts/stylesheet.css');

body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  position: relative;
  overflow-x: hidden;
}

p {
  font-weight: 400;
  line-height: 30px;
}

a:focus {
  outline: none;
  outline-offset: none;
}

a:hover {
  text-decoration: none;
}

.space-15 {
  height: 15px;
}

.space-20 {
  height: 20px;
}

.space-25 {
  height: 25px;
}

.space-50 {
  height: 50px;
}

.padding-100 {
  padding: 100px 0;
}

.padding-t-100 {
  padding-top: 100px;
}

.section-title h3 {
  font-size: 60px;
  font-weight: 900;
  margin: 0;
  color: #4E4D4B;
}

.section-title h3 span {
  color: #E3980B;
}

.section-title h3 span.white {
  color: #fff !important;
}

.section-title p {
  font-size: 18px;
  font-weight: 600;
  max-width: 750px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-title h3 {
    font-size: 40px;
  }
}

.feather {
  position: relative;
  top: -2px;
  width: 2rem;
  height: 2rem;
  stroke: #E3980B;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

header {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  z-index: 999;
  border-radius: 0;
  border: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #fff;
}

header .logo {
  max-width: 190px;
}

header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0px 13px 10px -10px rgba(0, 0, 0, 0.15);
  animation: menu_sticky 0.7s ease-in-out;
  background: #fff;
}

header.sticky .logo {
  max-width: 90px;
}

@keyframes menu_sticky {
  0% {
    margin-top: -120px;
    opacity: 0;
  }

  50% {
    margin-top: -64px;
    opacity: 0;
  }

  100% {
    margin-top: 0;
    opacity: 1;
  }
}

header .navbar {
  padding: 0;
}

header .navbar-light .navbar-toggler {
  border-color: #003b6f;
  outline: none;
}

header .navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,59,111, 1)' stroke-width='2' stroke-linecap='' stroke-miterlimit='0' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

header .navbar .navbar-nav .nav-item>.nav-link {
  color: #E3980B;
  /* margin: 20px 10px; */
  font-weight: 800;
  position: relative;
  padding: 20px;
}

header .navbar .navbar-nav .nav-item>.nav-link:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0%;
  height: 3px;
  background-color: #4E4D4B;
  transform: translateX(-50%);
  -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

header .navbar .navbar-nav .nav-item>.nav-link:hover:before {
  width: 100%;
}

header .navbar .navbar-nav .nav-item>.nav-link.active:before {
  width: 100%;
}

header .dropdown-menu {
  padding: 0;
  margin: 0;
  border-radius: 0;
  border: 0;
  transform: translateY(-15px);
  animation: hide_dropdown_menu 0.2s ease-in-out;
  display: block;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.04);
  height: 0;
  transition: all ease 0.1s;
}

@keyframes hide_dropdown_menu {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}

header .dropdown-menu.show {
  animation: show_dropdown_menu 0.2s ease-in-out forwards;
  visibility: visible;
  height: auto;
}

@keyframes show_dropdown_menu {
  0% {
    transform: translateY(15px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

header .dropdown-menu .dropdown-item {
  padding: .75rem 1.5rem;
}

header .dropdown-menu .dropdown-item:hover {
  color: #003b6f;
}

@media (max-width: 992px) {
  header {
    padding: 1em;
  }

  header .dropdown-menu {
    display: none;
  }

  header .dropdown-menu.show {
    display: block;
  }

  header .navbar .navbar-nav .nav-item>.nav-link {
    padding: 10px;
  }

  header .dropdown-menu .dropdown-item {
    padding: 10px;
  }
}

section.home {
  position: relative;
  padding-bottom: 100px;
}

section.home.background-withcolor {
  background: linear-gradient(45deg, #003b6f, #008cca);
}

section.home::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: 0;
}

section.home .content-bottom {
  padding-top: 200px;
  position: relative;
  z-index: 1;
}

section.home .content-bottom h2 {
  font-size: 85px;
  font-weight: 700;
  color: #E3980B;
  text-transform: uppercase;
  line-height: 90px;
  margin-left: -5px;
}

section.home .content-bottom h2 span {
  font-size: 90px;
}

section.home .content-bottom p {
  color: #212529;
  font-size: 20px;
  max-width: 500px;
}

@media (max-width: 1366px) {
  section.home .content-bottom {
    padding-top: 170px;
  }
}

@media (min-width: 992px) {}

@media (max-width: 768px) {
  section.home .content-bottom h2 {
    font-size: 3em;
    line-height: 60px;
  }
}

section.about {
  background: #fff;
}

section.about .section-title p {
  max-width: 950px;
}

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

section.services h3 {
  color: #4E4D4B;
  font-size: 40px;
  font-weight: 900;
}

section.services p {
  font-weight: 400;
  font-size: 18px;
  margin: 0;
}

section.services .services-card {
  text-align: center;
  margin-bottom: 30px;
}

section.services .services-card img {
  max-width: 100px;
}

section.services .services-card__title {
  text-align: center;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: .5rem;
  color: #231F20;
}

section.services .services-card__description {
  text-align: justify;
  font-weight: 400;
  font-size: 17px;
  margin-bottom: .5rem;
  color: #231F20;
}

section.shop {
  background: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

section.shop h3 {
  color: #4E4D4B;
  font-size: 40px;
  font-weight: 900;
}

section.shop p {
  font-weight: 400;
  font-size: 18px;
  margin: 0;
}

section.shop .services-card {
  text-align: center;
  margin-bottom: 30px;
}

section.shop .services-card__title {
  text-align: center;
  font-weight: 700;
  margin-bottom: .5rem;
  color: #231F20;
}

section.shop .services-card__description {
  text-align: center;
  padding: 0 10px;
}

#contacts_map_container.maps-placeholder {
  width: 100%;
  min-height: 500px;
  background-image: url('../img/maps-placeholder.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

section.contacts .contact-info {
  margin-top: 40px;
}

section.contacts .contact-info h5 {
  font-size: 18px;
  line-height: 30px;
  margin-top: 1rem;
}

.jobs {
  padding-top: 25px;
}

.job_accordion-item {
  margin-bottom: 15px;
  background-color: #fff;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

button.accordion {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  border: none;
  outline: none;
  text-align: left;
  padding: 15px 20px;
  font-size: 18px;
  color: #333;
  cursor: pointer;
  transition: all 0.3s linear;
}

button.accordion:hover,
button.accordion.is-open {
  background-color: #0653a6;
  color: white;
  box-shadow: none;
}

button.accordion.is-open {
  border-radius: 4px 4px 0 0;
  margin-bottom: 15px;
}

.accordion-content {
  background-color: #fff;
  border-radius: 4px !important;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s linear;
}

footer .copyright p {
  margin-bottom: 0;
}

footer .footer-nav {
  list-style: none;
  display: flex;
  flex-direction: row;  
  justify-content: right;
  margin-bottom: 0;
}

footer .footer-nav li {
  margin-left: 2rem;  
}

@media (max-width: 800px) {
  footer .footer-nav {
    flex-direction: column;
  }
}

.additional_page_top {
  padding-top: 200px;
}

.additional_page_top h3 {
  color: #4E4D4B;
  font-size: 40px;
  font-weight: 900;
}

.background-fullwidth {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.background-fixed {
  background-attachment: fixed;
}

.background-withcolor {
  background: linear-gradient(45deg, #003b6f, #008cca);
}