/* CSS RESET */

@font-face {
  font-family: 'Metrophobic';
  src: url("font/Metrophobic.woff2");
}

.clearfix {
  clear: both;
}

.d {
  display: block;
}

.m {
  display: none;
}

.hide {
  display: none !important;
}

@media screen and (max-width: 550px) {
  .d {
    display: none;
  }

  .m {
    display: block;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Metrophobic', sans-serif;
}

html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

.policy {
  position: fixed;
  width: 350px;
  right: 0;
  bottom: 0;
  background-color: white;
  z-index: 1;
  padding: 15px;
  border: 1px #000000 solid;
  color: #332A7C;
}

.policy.hide {
  display: none;
}

.policy p a,
.policy p a:link,
.policy p a:hover,
.policy p a:active,
.policy p a:visited {
  color: #332A7C;
}

.policy .policy-personalize {
  padding-top: 15px;
  display: none;
}

.policy .policy-personalize.open {
  display: block;
}

.policy .policy-personalize div {
  padding-top: 5px;
  padding-left: 15px;
}

.policy .policy-buttons {
  text-align: center;
  padding-top: 15px;
}

.policy .policy-button:hover {
  cursor: pointer;
}

.policy .policy-button {
  border-bottom: 3px solid rgba(51, 42, 124, .48);
  color: rgba(51, 42, 124, .48);
}

.policy .policy-button.reject {
  float: left;
}

.policy .policy-button.accept {
  float: right;
  color: #332A7C;
  border-color: #332A7C;
}

@media screen and (max-width: 550px) {
  .policy {
    width: calc(100%);
  }
}

nav {
  width: 100%;
  padding: 50px 35px 50px 25px;
  position: fixed;
  z-index: 1;
}

nav img {
  width: 17%;
  float: left;
}

nav ul {
  padding-top: calc((.17*(100vw - 75px) * .3711 - 30px)/2);
  float: right;
}

nav ul li {
  display: inline;
  font-size: 22px;
  margin: 0 15px;
}

nav ul li a,
nav ul li a:active,
nav ul li a:link,
nav ul li a:visited {
  text-decoration: none;
  color: black;
}

@media screen and (max-width: 768px) {
  nav ul li {
    margin: 0 8px;
  }
}

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

  @keyframes navScrolled {
    from {
      padding: 25px 5px
    }

    to {
      padding: 10px 5px
    }
  }

  @keyframes navScrolledReverse {
    from {
      padding: 10px 5px
    }

    to {
      padding: 25px 5px
    }
  }

  @keyframes navScrolledImg {
    from {
      width: 33%;
    }

    to {
      width: 15%;
    }
  }

  @keyframes navScrolledImgReverse {
    from {
      width: 15%;
    }

    to {
      width: 33%;
    }
  }

  @keyframes navScrolledUl {
    from {
      padding-top: 19px;
    }

    to {
      padding-top: 4px;
    }
  }

  @keyframes navScrolledUlReverse {
    from {
      padding-top: 4px;
    }

    to {
      padding-top: 19px;
    }
  }

  nav {
    width: 100%;
    padding: 25px 5px;
  }

  nav.no-scrolled {
    animation-name: navScrolledReverse;
    animation-duration: 1500ms;
  }

  nav.scrolled {
    padding: 10px 5px;
    animation-name: navScrolled;
    animation-duration: 1500ms;
  }

  nav img {
    float: none;
    margin-left: auto;
    margin-right: auto;
    width: 33%;
  }

  nav.no-scrolled img {
    animation-name: navScrolledImgReverse;
    animation-duration: 1500ms;
  }

  nav.scrolled img {
    animation-name: navScrolledImg;
    animation-duration: 1500ms;
    width: 15%;
  }

  nav ul {
    float: none;
    text-align: center;
    padding-top: 19px;
  }

  nav.no-scrolled ul {
    animation-name: navScrolledUlReverse;
    animation-duration: 1500ms;
  }

  nav.scrolled ul {
    padding-top: 4px;
    animation-name: navScrolledUl;
    animation-duration: 1500ms;
  }

  nav ul li {
    padding: 0 20px;
  }
}

@media screen and (max-width: 382px) {
  nav ul li {
    padding: 0 5px;
  }
}

@media screen and (max-width: 305px) {
  nav ul li {
    padding: 0;
    font-size: 18px;
  }
}

.nav-space {
  width: 100%;
  height: calc(.17*(100vw - 75px) * .3711 + 100px);
}

@media screen and (max-width: 550px) {
  .nav-space {
    height: calc(.33*(100vw - 10px) * .3711 + 97px);
  }
}

.container {
  padding-left: calc(.17 * 100vw + 25px);
  padding-right: calc(.17 * 100vw + 25px);
  width: 100%;
}

.disable-scroll {
  overflow: hidden;
}

.disable-scroll-mobile {
  overflow: scroll;
}

@media screen and (max-width: 650px) {
  .container.t-container {
    padding: 0 25px;
  }
}

@media screen and (max-width: 550px) {
  .container {
    padding: 0 25px;
  }

  .disable-scroll-mobile {
    overflow: hidden;
  }
}

@media screen and (max-width: 305px) {
  .container {
    padding: 0 5px;
  }
}

.home {
  color: #332A7C;
  position: relative;
}

.home img {
  z-index: -1;
  padding-top: 20vh;
  right: 23%;
  width: 50%;
  transform: translateY(-187px);
  position: absolute;
}

.home h1 {
  padding-top: 15vh;
  float: left;
  font-size: 3.5em;
}

@media screen and (max-width: 1650px) {
  .home img {
    right: 20%;
  }
}

@media screen and (max-width: 1400px) {
  .home h1 {
    padding-top: 12vh;
    font-size: 3em;
  }
}

@media screen and (max-width: 1250px) {
  .home h1 {
    font-size: 2.7em;
  }

  .home img {
    width: 50%;
  }
}

@media screen and (max-width: 1000px) {
  .home h1 {
    padding-top: 10vh;
  }

  .home img {
    right: 10%;
    width: 60%;
  }
}

@media screen and (max-width: 920px) {
  .home img {
    right: 0;
    width: 70%;
  }
}

@media screen and (max-width: 800px) {
  .home h1 {
    padding-top: 6vh;
    font-size: 2em;
  }
}

@media screen and (max-width: 650px) {
  .home h1 {
    padding-top: 6vh;
    font-size: 1.7em;
  }
}

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

  .home h1 {
    font-size: 2.5em;
  }

  .home .space.m {
    padding-bottom: 20vh;
  }

}

.services {
  position: relative;
  margin-top: 20vh;
  padding-top: 20vh;
  color: #332A7C;
}

.services img {
  float: right;
  width: 30%;
}

.services h3 {
  top: auto;
  position: absolute;
  bottom: 0;
  max-width: 65%;
  font-size: 2.40em;
}

@media screen and (max-width: 1400px) {
  .services {
    margin-top: 15vh;
    padding-top: 15vh;
  }

  .services h3 {
    font-size: 2.2em;
  }
}

@media screen and (max-width: 1250px) {
  .services h3 {
    font-size: 1.7em;
  }
}

@media screen and (max-width: 1000px) {
  .services h3 {
    font-size: 1.6em;
  }
}

@media screen and (max-width: 930px) {
  .services h3 {
    font-size: 1.4em;
  }
}

@media screen and (max-width: 800px) {
  .services {
    margin-top: 10vh;
    padding-top: 10vh;
  }

  .services h3 {
    font-size: 1.2em;
  }
}

@media screen and (max-width: 650px) {
  div#services.container {}

  .services h3 {
    font-size: 1.19em;
  }
}

@media screen and (max-width: 550px) {
  .services {
    margin-top: 0;
    padding-top: 15vh;
  }

  .services h3 {
    padding-top: 3vh;
    position: relative;
    font-size: 1.3em;
    max-width: 100%;
  }

  .services img {
    width: 65%;
    margin-right: -25px;
    position: relative;
  }
}

.discover-more {
  position: relative;
  text-align: center;
  padding: 70px 0;
  cursor: pointer;
}

.discover-more span {
  padding: 61px 20px;
  background-color: #FFD034;
  color: #332A7C;
  font-size: 1em;
  border-radius: 100px;
}

.discover-more .ring {
  height: 142px;
  width: 142px;
  z-index: -1;
  left: 50%;
  position: absolute;
  transform: translate(-50%, calc(-50% + 10px));
  border-radius: 1000px;
  border: 1px solid rgba(255, 208, 52, 1);
  animation-name: ring;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  cursor: pointer;
}

@keyframes ring {
  from {
    width: 142px;
    height: 142px;
    border-color: rgba(255, 208, 52, 1);
  }

  to {
    width: 170px;
    height: 170px;
    border-color: rgba(255, 208, 52, 0);
  }
}

.discover-more-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  background-color: #FFD034;
  display: none;
  color: #332A7C;
  padding-bottom: 10vh;
  z-index: 1;
}

.discover-more-container h1 {
  margin-bottom: 2vh;
}

.discover-more-container.open {
  display: block;
}

.discover-more-container .close {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3em;
}

.discover-more-container .box1 {
  padding-top: 10vh;
  padding-left: calc(100% / 16);
  width: calc(100% / 16 * 5);
  max-width: calc(100% / 16 * 5);
  float: left;
}

.discover-more-container .box2 {
  padding-top: 13vh;
  padding-left: calc(100% / 16 * 5);
  width: calc(100% / 16 * 10);
  max-width: calc(100% / 16 * 10);
  float: left;
}

.discover-more-container .box3 {
  padding-left: calc(100% / 16 * 2);
  width: calc(100% / 16 * 7);
  max-width: calc(100% / 16 * 7);
  float: left;
}

.discover-more-container .box4 {
  padding-top: 10vh;
  padding-left: calc(100% / 16 * 2);
  width: calc(100% / 16 * 8);
  max-width: calc(100% / 16 * 8);
  float: left;
}

@media screen and (max-width: 1000px) {
  .discover-more-container .box1 {
    width: calc(100% / 16 * 6);
    max-width: calc(100% / 16 * 6);
  }
}

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

  @keyframes discoverMoreHorizontalScroll0 {
    to {
      transform: translate(0);
    }
  }

  @keyframes discoverMoreHorizontalScroll25 {
    to {
      transform: translate(-25%);
    }
  }

  @keyframes discoverMoreHorizontalScroll50 {
    to {
      transform: translate(-50%);
    }
  }

  @keyframes discoverMoreHorizontalScroll75 {
    to {
      transform: translate(-75%);
    }
  }

  .discover-more {
    padding: 240px 0;
  }

  .discover-more-container-close {
    position: fixed;
    z-index: 100;
    top: auto;
    bottom: 13vh;
    font-size: 3em;
    text-align: center;
    width: 100%;
    color: #332A7C;
    display: none;
    cursor: pointer;
  }

  .discover-more-container-close.open {
    display: block;
  }

  ul.dots {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 200;
    height: 15vh;
    padding-top: calc((15vh - 15px)/2);
    text-align: center;
    display: none;
  }

  ul.dots.open {
    display: block;
  }

  ul.dots li {
    border-radius: 100px;
    width: 15px;
    height: 15px;
    display: inline-block;
    margin: 0 5px;
    background-color: #B3934F;
  }

  ul.dots li.active {
    background-color: #332A7C;
  }

  .discover-more-container {
    padding: 75px 0 25px 0;
    overflow-x: hidden;
    overflow-y: scroll;
    width: 400%;
    animation-name: discoverMoreHorizontalScroll0;
    animation-duration: 1s;
  }

  .discover-more-container .box1,
  .discover-more-container .box2,
  .discover-more-container .box3,
  .discover-more-container .box4 {
    width: 25%;
    max-width: 25%;
    padding: 0 25px;

  }
}

.team {
  position: relative;
  margin-top: 20vh;
  color: #332A7C;
}

.team img {
  width: 30%;
  float: left;
}

.team h3 {
  position: absolute;
  bottom: 0;
  padding-left: 40%;
  font-size: 2.4em;
}

.team .person {
  padding-left: 35%;
}

.team .person h4 {
  font-size: 2.4em;
}

.team .person h5 {
  padding-top: 10px;
}

.team .person p {
  padding-top: 20px;
}

@media screen and (max-width: 1400px) {
  .team h3 {
    font-size: 2.2em;
  }
}

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

  .team h3,
  .team .person h4 {
    font-size: 1.7em;
  }
}

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

  .team h3,
  .team .person h4 {
    font-size: 1.6em;
  }
}

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

  .team h3,
  .team .person h4 {
    font-size: 1.4em;
  }

  .team .person p {
    font-size: .9em;
  }
}

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

  .team h3,
  .team .person h4 {
    font-size: 1.2em;
  }

  .team .person p {
    font-size: .8em;
  }
}

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

  .team h3,
  .team .person h4 {
    font-size: 1.19em;
  }
}

@media screen and (max-width: 550px) {
  .team {
    margin-top: 0;
  }

  .team h3 {
    bottom: auto;
    position: relative;
    padding-left: 0;
    padding-bottom: 10vh;
  }

  .team img {
    width: 50%;
    left: 50%;
    transform: translate(-50%);
    float: none;
    position: relative;
  }

  .team .person {
    z-index: 1 !important;
    background-color: white;
  }
}


div.highway-slider {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 150px;
}

div.highway-slider div.highway-barrier {
  overflow: hidden;
  position: relative;
}

div.highway-slider div.highway-barrier ul.highway-lane {
  display: flex;
  height: 100%;
}

div.highway-slider div.highway-barrier ul.highway-lane li.highway-car {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #A6A2C6;
  font-size: 2.2em;
}

div.highway-slider div.highway-barrier ul.highway-lane li.highway-car:hover,
div.highway-slider div.highway-barrier ul.highway-lane li.highway-car.active {
  color: #332A7C;
}

@keyframes translatestf {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-500%);
  }
}

@keyframes translateinfinite {
  100% {
    transform: translateX(calc(-180px * 12));
  }
}

#infinite div.highway-barrier {
  background: #fff;
}

#infinite div.highway-barrier::before,
#infinite div.highway-barrier::after {
  content: " ";
  position: absolute;
  z-index: 9;
  width: 180px;
  height: 100%;
}

#infinite div.highway-barrier::before {
  top: 0;
  left: 0;
  /*background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
*/
}

#infinite div.highway-barrier::after {
  top: 0;
  right: 0;
  /*background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
 */
}

ul.highway-lane {
  width: calc(180px * 24);
}

ul.highway-lane li.highway-car {
  width: 180px;
  animation: translateinfinite 45s linear infinite;
}

@media screen and (max-width: 1400px) {
  div.highway-slider div.highway-barrier ul.highway-lane li.highway-car {
    font-size: 2em;
  }

  @keyframes translateinfinite {
    100% {
      transform: translateX(calc(-140px * 12));
    }
  }

  #infinite div.highway-barrier::before,
  #infinite div.highway-barrier::after {
    width: 140px;
  }

  ul.highway-lane {
    width: calc(140px * 24);
  }

  ul.highway-lane li.highway-car {
    width: 140px;
    animation: translateinfinite 38s linear infinite;
  }
}

@media screen and (max-width: 1250px) {
  div.highway-slider div.highway-barrier ul.highway-lane li.highway-car {
    font-size: 1.6em;
  }

  @keyframes translateinfinite {
    100% {
      transform: translateX(calc(-100px * 12));
    }
  }

  #infinite div.highway-barrier::before,
  #infinite div.highway-barrier::after {
    width: 100px;
  }

  ul.highway-lane {
    width: calc(100px * 24);
  }

  ul.highway-lane li.highway-car {
    width: 100px;
    animation: translateinfinite 30s linear infinite;
  }
}

@media screen and (max-width: 1000px) {
  div.highway-slider div.highway-barrier ul.highway-lane li.highway-car {
    font-size: 1.5em;
  }
}

@media screen and (max-width: 930px) {
  div.highway-slider div.highway-barrier ul.highway-lane li.highway-car {
    font-size: 1.3em;
  }
}

@media screen and (max-width: 800px) {
  div.highway-slider div.highway-barrier ul.highway-lane li.highway-car {
    font-size: 1.1em;
  }
}

@media screen and (max-width: 650px) {
  div.highway-slider div.highway-barrier ul.highway-lane li.highway-car {
    font-size: 1em;
  }
}

@media screen and (max-width: 550px) {
  div.highway-slider div.highway-barrier ul.highway-lane li.highway-car {
    font-size: 1.4em;
  }

  @keyframes translateinfinite {
    100% {
      transform: translateX(calc(-80px * 12));
    }
  }

  #infinite div.highway-barrier::before,
  #infinite div.highway-barrier::after {
    width: 80px;
  }

  ul.highway-lane {
    width: calc(80px * 24);
  }

  ul.highway-lane li.highway-car {
    width: 80px;
    animation: translateinfinite 45s linear infinite;
  }
}

@media screen and (max-width: 550px) {
  .team-member-mobile {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    overflow-y: scroll;
    color: #332A7C;
    display: none;
  }

  .team-member-mobile.open {
    display: block;
  }

  .team-member-mobile img.logo {
    padding-top: 10vh;
    left: 50%;
    transform: translateX(-50%);
    width: 33%;
    position: relative;
  }

  .team-member-mobile img.team-profile {
    padding-top: 5vh;
    width: 40%;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
  }

  .team-member-mobile h4 {
    padding-top: 25px;
  }

  .team-member-mobile h5 {
    padding-top: 5px;
  }

  .team-member-mobile p {
    padding-top: 25px;
  }

  .team-member-mobile div {
    padding-top: 25px;
    text-align: center;
    font-size: 3em;
  }
}

.snapsite {
  margin-top: 20vh;
  margin-bottom: 20vh;
}

.snapsite img {
  padding-top: 10vh;
  width: 40%;
  float: right;
}

.snapsite-description {
  width: 55%;
}

.snapsite h3 {
  font-size: 1.6em;
  color: #332A7C;
}

.snapsite p {
  font-size: 1.4em;
  color: #332A7C;
}

.snapsite a,
.snapsite a:link,
.snapsite a,
.snapsite a:active,
.snapsite a:visited {
  text-decoration: none;
  color: #332A7C;
}

.snapsite a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 800px) {
  .snapsite {
    margin-top: 2vh;
    margin-bottom: 2vh;
  }

  .snapsite img {
    padding-top: 0;
    padding-bottom: 5vh;
    width: 50%;
    float: none;
    position: relative;
    left: 50%;
    transform: translate(-50%);
  }

  .snapsite-description {
    width: 100%;
  }
}

.swidoc {
  margin-top: 20vh;
  margin-bottom: 20vh;
}

.swidoc img {
  padding-top: 10vh;
  width: 40%;
  float: right;
}


.swidoc-description {
  width: 55%;
}

.swidoc h3 {
  font-size: 1.6em;
  color: #332A7C;
}

.swidoc p {
  font-size: 1.4em;
  color: #332A7C;
}

.swidoc a,
.swidoc a:link,
.swidoc a,
.swidoc a:active,
.swidoc a:visited {
  text-decoration: none;
  color: #332A7C;
}

.swidoc a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 800px) {
  .swidoc {
    margin-top: 2vh;
    margin-bottom: 2vh;
  }

  .swidoc img {
    padding-top: 0;
    padding-bottom: 5vh;
    width: 50%;
    float: none;
    position: relative;
    left: 50%;
    transform: translate(-50%);
  }

  .swidoc-description {
    width: 100%;
  }
}


.ms-tools {
  margin-top: 20vh;
  margin-bottom: 20vh;
}

.ms-tools img {
  padding-top: 10vh;
  width: 40%;
  float: left;
}

.ms-tools-description {
  width: 40%;
  float: right;
}

.ms-tools h3 {
  font-size: 1.6em;
  color: #332A7C;
}

.ms-tools p {
  font-size: 1.4em;
  color: #332A7C;
}

.ms-tools a,
.ms-tools a:link,
.ms-tools a,
.ms-tools a:active,
.ms-tools a:visited {
  text-decoration: none;
  color: #332A7C;
}

.ms-tools a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 800px) {
  .ms-tools {
    margin-top: 2vh;
    margin-bottom: 2vh;
  }

  .ms-tools img {
    padding-top: 0;
    padding-bottom: 5vh;
    width: 50%;
    float: none;
    position: relative;
    left: 50%;
    transform: translate(-50%);
  }

  .ms-tools-description {
    width: 100%;
    float: none;
  }
}

.clients {
  padding-top: 20vh;
  width: 100%;
  color: #332A7C;
}

.clients img {
  width: 40%;
}

.clients .clients-logos {
  width: 60%;
  padding-left: 5%;
  float: right;
}

.clients .clients-logos h3 {
  font-size: 2.4em;
  padding-bottom: 20px;
}

.clients .clients-logos a {
  float: left;
  width: 50%;
  aspect-ratio: 202/113;
  position: relative;
  padding: 10px;
}

.clients .clients-logos img {
  width: calc(100% - 20px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.clients .clients-logos .cassi {
  width: 65%;
  aspect-ratio: 202/60;
}

.clients .clients-logos .ivansokolov {
  width: 35%;
}

.clients .clients-logos .romanmarbles {
  width: 65%;
  margin-top: 20px;
  aspect-ratio: 202/60;
}

.clients .clients-logos .da {
  margin-top: 20px;
  width: 35%;
}


@media screen and (max-width: 1400px) {
  .clients .clients-logos h3 {
    font-size: 2.2em;
  }
}

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

  .clients .clients-logos h3,
  .team .person h4 {
    font-size: 1.7em;
  }
}

@media screen and (max-width: 1000px) {
  .clients .clients-logos h3 {
    font-size: 1.6em;
  }
}

@media screen and (max-width: 930px) {
  .clients .clients-logos h3 {
    font-size: 1.4em;
  }
}

@media screen and (max-width: 800px) {
  .clients {
    margin-top: 10vh;
    padding-top: 10vh;
  }

  .clients .clients-logos h3 {
    font-size: 1.2em;
  }
}

@media screen and (max-width: 650px) {
  .clients .clients-logos h3 {
    font-size: 1.19em;
  }
}

@media screen and (max-width: 550px) {
  .clients {
    margin-top: 0;
  }

  .clients h3 {
    bottom: auto;
    position: relative;
    padding: 10vh 0;
  }

  .clients img {
    width: 50%;
    left: 50%;
    transform: translate(-50%);
    float: none;
    position: relative;
    z-index: -1;
  }

  .clients .clients-logos {
    width: 100%;
  }

  .clients .clients-logos a {
    float: left;
    width: 100% !important;
    position: relative;
    aspect-ratio: auto !important;
    text-align: center;
    padding: 2vh 0;
  }

  .clients .clients-logos img {
    width: 80%;
    position: relative;
    top: auto;
    transform: none;
    left: 0;
  }

  .clients .clients-logos .ivansokolov {
    width: 60% !important;
    padding-left: 10%;
    padding-right: 5%;
  }

  .clients .clients-logos .ivansokolov img {
    padding: 2vh 0;
    width: 100%;
  }

  .clients .clients-logos .da {
    padding-top: 3vh;
    width: 40% !important;
    padding-left: 5%;
    padding-right: 10%;
  }

  .clients .clients-logos .da img {
    width: 100%;
  }

  .clients .clients-logos .romanmarbles {
    padding-top: 0;
  }
}

.contacts {
  padding-top: 20vh;
  color: #332A7C;
}

.contacts h3 {
  width: 55%;
  font-size: 2.4em;
  float: left;
}

.contacts .bubbles {
  width: 45%;
  float: left;

}

.contacts .bubbles .bubble {
  width: 50%;
  float: left;
  aspect-ratio: 1;
  position: relative;
  color: #332A7C;
  background-repeat: no-repeat;
  background-size: contain;
}

.contacts .bubbles .bubble a {
  position: absolute;
  transform: translate(-50%, -50%);
  font-size: 1.2em;
}

.contacts .bubbles .bubble a:link,
.contacts .bubbles .bubble a:active,
.contacts .bubbles .bubble a:visited,
.contacts .bubbles .bubble a:hover {
  text-decoration: none;
  color: #332A7C;
  font-weight: bolder;
}

.contacts .bubbles .bubble.instagram {
  background-image: url("img/bubble-instagram.png");
}

.contacts .bubbles .bubble.instagram a {
  top: 50%;
  left: 45%;
}

.contacts .bubbles .bubble.email {
  background-image: url("img/bubble-email.png");
  background-size: 60%;
  background-position-x: 10%;
  background-position-y: 20%;
}

.contacts .bubbles .bubble.email a {
  top: 40%;
  left: 32%;
}

.contacts .bubbles .bubble.phone {
  background-image: url("img/bubble-phone.png");
  background-size: 60%;
  background-position-x: 65%;
  background-position-y: 0;
}

.contacts .bubbles .bubble.phone a {
  top: 25%;
  left: 55%;
}

.contacts .bubbles .bubble.linkedin {
  background-image: url("img/bubble-linkedin.png");
  background-size: 70%;
  background-position-x: 30%;
  background-position-y: 0;
}

.contacts .bubbles .bubble.linkedin a {
  top: 30%;
  left: 45%;
}

@media screen and (max-width: 1400px) {
  .contacts h3 {
    font-size: 2.2em;
  }
}

@media screen and (max-width: 1250px) {
  .contacts h3 {
    font-size: 1.7em;
  }
}

@media screen and (max-width: 1000px) {
  .contacts h3 {
    font-size: 1.6em;
  }
}

@media screen and (max-width: 930px) {
  .contacts h3 {
    font-size: 1.4em;
  }

  .contacts .bubbles .bubble a {
    font-size: 1.1em;
  }
}

@media screen and (max-width: 800px) {
  .contacts {
    margin-top: 10vh;
    padding-top: 10vh;
  }

  .contacts h3 {
    font-size: 1.2em;
  }

  .contacts .bubbles .bubble a {
    font-size: .9em;
  }
}

@media screen and (max-width: 650px) {
  .contacts h3 {
    font-size: 1.19em;
  }

  .contacts .bubbles .bubble a {
    font-size: 1.1em;
  }
}

@media screen and (max-width: 550px) {
  .contacts {
    margin-top: 0;
    padding-top: 10vh;
    position: relative;
  }

  .contacts h3 {
    position: relative;
    font-size: 1.3em;
    width: 100%;
  }

  .services img {
    width: 65%;
    margin-right: -25px;
    position: relative;
  }

  .contacts .bubbles {
    width: 80%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 10vh;
    padding-bottom: 5vh;
  }

  .contacts .bubbles .bubble a {
    font-size: 1.1em;
  }
}

footer {
  border-top: 2px solid #332A7C;
  padding: 48px 40px 24px;
  color: #333;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-logo img {
  width: 160px;
  max-width: 100%;
}

.footer-block a {
  display: block;
  color: #332A7C;
  text-decoration: none;
  font-size: 14px;
  line-height: 2;
}

.footer-block a:hover {
  text-decoration: underline;
}

.footer-block strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #332A7C;
  margin-bottom: 6px;
}

.footer-block {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.footer-bottom {
  text-align: center;
  margin-top: 36px;
  padding-top: 16px;
  border-top: 1px solid #e0dce6;
  font-size: 12px;
  color: #999;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 32px 24px 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-logo {
    grid-column: 1 / -1;
  }
}

@media screen and (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* calc((0.17 * 100vw * 3568 / 1324 - 30) / 2)
calc((.17*(100vw - 75px) * .3711 - 30px)/2);*/