@import url("https://fonts.googleapis.com/css?family=Old+Standard+TT:400,700");
body {
  margin: 0;
  padding: 0;
  font: 16px / 2 Helvetica, sans-serif;
  color: #000000;
}

header {
  display: grid;
  grid-template-columns: 25px auto auto 25px;
  grid-template-rows: 55px auto auto auto auto 55px;
  background: linear-gradient(#1B267A, #060C3A);
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  header {
    grid-template-rows: 55px auto 200px 450px;
    grid-template-columns: auto 360px 300px auto;
  }
}

@media only screen and (min-width: 1025px) {
  header {
    grid-template-rows: 55px auto 200px 450px;
    grid-template-columns: auto 500px 460px auto;
  }
}

header h1 {
  color: white;
  max-width: 200px;
  grid-column: 2;
  grid-row-start: 2;
  font-weight: 900;
  font-size: 2.5em;
  line-height: .75em;
  margin-bottom: 5px;
  font-family: 'Old Standard TT', serif;
}

@media only screen and (min-width: 768px) and (max-width: 1024px), only screen and (min-width: 1025px) {
  header h1 {
    max-width: 350px;
    font-size: 3em;
  }
}

header h2 {
  color: #3949AB;
  font-weight: lighter;
  margin-top: 0;
  max-width: 200px;
  font-size: 1.5em;
  line-height: 1em;
  grid-column: 2;
  grid-row-start: 3;
}

@media only screen and (min-width: 768px) and (max-width: 1024px), only screen and (min-width: 1025px) {
  header h2 {
    max-width: 350px;
  }
}

header nav {
  grid-column: 2;
  grid-row: 4;
}

@media only screen and (min-width: 768px) and (max-width: 1024px), only screen and (min-width: 1025px) {
  header nav {
    grid-column: 3;
    grid-row: 2;
    justify-self: end;
  }
}

header nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  font-size: 1.15em;
}

@media only screen and (min-width: 768px) and (max-width: 1024px), only screen and (min-width: 1025px) {
  header nav ul {
    flex-direction: row;
  }
}

header nav ul li {
  color: #5C6BC0;
}

header nav ul li a {
  color: #5C6BC0;
  text-decoration: none;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 1024px), only screen and (min-width: 1025px) {
  header nav ul li {
    margin-left: 25px;
  }
  header nav ul li a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: #FFDE82;
    bottom: -5px;
    border-radius: 3px;
    transform: scaleX(0);
    transition: all .4s ease-in-out;
  }
  header nav ul li:hover a::before {
    transform: scaleX(1);
  }
}

header .offer {
  grid-column-start: 2;
  grid-column-end: 4;
  grid-row: 5;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-self: start;
}

@media only screen and (min-width: 768px) and (max-width: 1024px), only screen and (min-width: 1025px) {
  header .offer {
    grid-row: 4;
  }
}

header .offer .module {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

@media only screen and (min-width: 768px) and (max-width: 1024px), only screen and (min-width: 1025px) {
  header .offer .module {
    width: 25%;
  }
}

header .offer .module img {
  width: 100px;
  height: auto;
  margin-bottom: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px), only screen and (min-width: 1025px) {
  header .offer .module img {
    width: 45%;
  }
}

header .offer .module h2 {
  padding: 0 15px;
  font-family: 'Old Standard TT', serif;
  color: white;
  font-size: 1.25em;
  text-align: center;
  width: 100%;
  position: relative;
}

header .offer .module h2:before {
  content: '';
  position: absolute;
  background: linear-gradient(to right, #384597 36%, transparent 36%, transparent 58%, #384597 58%);
  left: 15px;
  top: -45px;
  width: 90%;
  height: 2px;
}

@media only screen and (min-width: 1025px) {
  header .offer .module h2:before {
    background: linear-gradient(to right, #384597 40%, transparent 40%, transparent 58%, #384597 58%);
  }
}

header .offer .module h2:after {
  content: '';
  position: absolute;
  border: 2px solid #384597;
  border-radius: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  top: -50px;
  width: 10px;
  height: 10px;
}

header .offer .module h2 span {
  font-size: 1.35em;
  margin: -30px 0 0 0;
  color: #FFDE82;
}

@media only screen and (min-width: 768px) and (max-width: 1024px), only screen and (min-width: 1025px) {
  header .offer .module h2 span {
    font-size: 2em;
  }
}

header .offer .module.active h2:before {
  background: linear-gradient(to right, #FFDE82 36%, transparent 36%, transparent 58%, #FFDE82 58%);
}

@media only screen and (min-width: 1025px) {
  header .offer .module.active h2:before {
    background: linear-gradient(to right, #FFDE82 40%, transparent 40%, transparent 58%, #FFDE82 58%);
  }
}

header .offer .module.active h2:after {
  border: 2px solid #FFDE82;
}

header .offer .module.active .description {
  display: block;
}

@media only screen and (min-width: 768px) and (max-width: 1024px), only screen and (min-width: 1025px) {
  header .offer .module.active .description {
    visibility: visible;
    opacity: 1;
  }
}

header .offer .module .description {
  padding: 0 15px;
  text-align: center;
  color: #7986cb;
  line-height: 1.15em;
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 1024px), only screen and (min-width: 1025px) {
  header .offer .module .description {
    display: block;
    visibility: hidden;
    transition: opacity .5s ease-in-out;
    opacity: 0;
  }
}

main {
  display: grid;
  grid-template-columns: 25px auto 25px;
  grid-template-rows: 55px auto auto 55px;
}

@media only screen and (min-width: 1025px) {
  main {
    grid-template-columns: auto 960px auto;
  }
}

main .working-with {
  grid-column: 2;
  grid-row: 2;
  justify-content: center;
  margin-bottom: 100px;
  display: flex;
  flex-wrap: wrap;
}

main .working-with h1 {
  width: 100%;
  font-size: 2em;
  text-align: center;
  color: #1A237E;
}

main .working-with img {
  height: 85px;
  width: 85px;
  object-fit: contain;
  transition: transform 0.3s;
  -moz-transition: moz-transformtransform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
}

.working-with .logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
}

main .working-with img:hover {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

main .localization {
  background-color: white;
  grid-row-start: 3;
  grid-row-end: 5;
  grid-column-start: 1;
  grid-column-end: 4;
  display: grid;
  grid-template-rows: 55px auto 55px;
  grid-template-columns: auto;
}

@media only screen and (min-width: 768px) and (max-width: 1024px), only screen and (min-width: 1025px) {
  main .localization {
    background-color: #EDEDED;
    grid-template-columns: 25px auto 25px;
  }
}

@media only screen and (min-width: 1025px) {
  main .localization {
    grid-template-columns: auto 960px auto;
  }
}

main .localization .container {
  background-color: white;
  grid-column: 2;
  grid-row: 2;
  padding: 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media only screen and (min-width: 1025px) {
  main .localization .container {
    padding: 50px;
  }
}

main .localization .container .map {
  width: 100%;
  height: 300px;
  background-color: #ededed;
}

main .localization .container .map.hidden {
  display: none;
}

main .localization .container .contact-details {
  background-color: #ededed;
  width: 100%;
  cursor: pointer;
  padding: 15px;
  box-sizing: border-box;
  margin-top: 15px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  word-break: break-all;
}

main .localization .container .contact-details a {
  color: #5C6BC0;
}

@media only screen and (min-width: 1025px) {
  main .localization .container .contact-details {
    padding: 25px;
    margin-right: 50px;
    margin-top: 50px;
    width: calc(50% - 25px);
  }
  main .localization .container .contact-details a:hover {
    color: #818cce;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  main .localization .container .contact-details {
    width: calc(50% - 13px);
    padding: 25px;
    margin-right: 25px;
    margin-top: 25px;
  }
}

@media only screen and (min-width: 1025px) {
  main .localization .container .contact-details:hover {
    background-color: #1A237E;
  }
  main .localization .container .contact-details:hover h1 {
    color: white;
  }
  main .localization .container .contact-details:hover h2 {
    color: #3F51B9;
  }
  main .localization .container .contact-details:hover p {
    color: #7986CB;
  }
}

main .localization .container .contact-details:last-of-type {
  margin-right: 0;
}

main .localization .container .contact-details h1 {
  font-size: 2em;
  color: #1A237E;
  line-height: 1.25em;
  margin-bottom: 10px;
  word-break: break-word;
}

main .localization .container .contact-details h2 {
  margin: 0;
  font-size: 1.5em;
  color: #3F51B5;
  line-height: 1.5em;
  max-width: 230px;
  word-break: break-word;
}

main .localization .container .contact-details p {
  color: #7986CB;
  font-size: 1.15em;
  line-height: 1.5em;
  padding: 0;
  margin: 0;
}

main .localization .container .contact-details .mobile {
  margin-top: 75px;
}

main .localization .container .contact-details .mail {
  margin-bottom: 100px;
}

main .localization .container .contact-details.active {
  background-color: #1A237E;
}

main .localization .container .contact-details.active h1 {
  color: white;
}

main .localization .container .contact-details.active h2 {
  color: #3F51B9;
}

main .localization .container .contact-details.active p {
  color: #7986CB;
}
/*# sourceMappingURL=styles.css.map */