@import "../font/Lato/stylesheet.css";
* {
  line-height: 1.42857143;
  box-sizing: border-box;
  -webkit-text-size-adjust: none !important;
}

body {
  margin: 0;
}

#mapContact {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
#mapContact .textWrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#mapContact .textWrapper .mainTitle {
  color: #3885b1;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  font-family: "Lato";
  text-align: center;
}
#mapContact .textWrapper p {
  margin-left: 10px;
  color: black;
  font-size: 20px;
  text-align: left;
  margin: 20px 0 0 0;
  font-family: "Lato", serif;
}
#mapContact .rowWrapper {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0 !important;
}
#mapContact .mapContainer {
  width: 450px;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}
#mapContact .mapContainer .map {
  width: 100%;
  height: 100%;
  background-image: url("../img/contactMap/map.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#mapContact .mapContainer .mapPoint {
  width: 26px;
  height: 36px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.3s all ease-in-out;
  transform-origin: bottom center;
  scale: 0.95;
}
@keyframes imgZoom {
  0% {
    scale: 0.9;
  }
  50% {
    scale: 1;
  }
  100% {
    scale: 0.9;
  }
}
#mapContact .mapContainer .mapPoint.beforeActive {
  animation-name: unset;
}
#mapContact .mapContainer .mapPoint.active {
  scale: 1.5;
}
#mapContact .mapContainer .mapPoint1 {
  background-image: url("../img/contactMap/p1.svg");
  top: 335px;
  left: 191px;
  animation-duration: 3s;
  animation-name: imgZoom;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  scale: 0.9;
}
#mapContact .mapContainer .mapPoint2 {
  background-image: url("../img/contactMap/p2.svg");
  top: 372px;
  left: 216px;
  animation-duration: 3.2s;
  animation-name: imgZoom;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 1s;
  scale: 0.9;
}
#mapContact .mapContainer .mapPoint3 {
  color: #337ab7;
  background-image: url("../img/contactMap/p3.svg");
  top: 157.5px;
  left: 145px;
  animation-duration: 2.8s;
  animation-name: imgZoom;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0.5s;
  scale: 0.9;
}
#mapContact .mapContainer .mapPoint4 {
  background-image: url("../img/contactMap/p4.svg");
  top: 265px;
  left: 75px;
  animation-duration: 3s;
  animation-name: imgZoom;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 2s;
  scale: 0.9;
}
#mapContact .mapContainer .mapPoint5 {
  background-image: url("../img/contactMap/p5.svg");
  top: 198px;
  left: 232px;
  animation-duration: 2.8s;
  animation-name: imgZoom;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 1s;
  scale: 0.9;
}
#mapContact .listContainer {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 30px 0;
  border-radius: 35px;
  padding: 0 15px;
}
#mapContact .listContainer .element {
  max-height: 70px;
  height: auto;
  display: flex;
  flex-direction: column;
  background-color: #e1e7ee;
  overflow: hidden;
  position: relative;
  border-radius: 35px;
  padding: 10px 25px;
  margin: 5px 0;
  text-decoration: none;
  transition: 0.5s all ease-in-out;
  flex-shrink: 0;
  z-index: 1;
}
#mapContact .listContainer .element .titleContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
#mapContact .listContainer .element .titleContainer .title {
  color: #e03997;
  font-family: "Lato";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
}
#mapContact .listContainer .element .titleContainer .text {
  color: #000000;
  font-family: "Lato";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}
#mapContact .listContainer .element .titleContainer .label {
  color: #337ab7;
  font-family: "Lato";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  position: absolute;
  top: 15px;
  right: 15px;
  transform: rotate(350deg);
  z-index: 15;
}
#mapContact .listContainer .element .number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  color: #ffffff;
  background-color: #cf3c6e;
  border-radius: 50%;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.3s all ease-in-out;
}
#mapContact .listContainer .element .number::before {
  content: attr(data-number);
  font-family: "Lato";
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: calc(50% - 1px);
  transform: translate(-50%, -50%);
}
#mapContact .listContainer .element .content {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#mapContact .listContainer .element .content .label {
  color: #337ab7;
  font-family: "Lato";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  margin: 10px 0 5px 0;
}
#mapContact .listContainer .element .content .text {
  color: #000000;
  font-family: "Lato";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}
#mapContact .listContainer .element .content .textSmall {
  color: #000000;
  font-family: "Lato";
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  margin: 6px 0 0 0;
}
#mapContact .listContainer .element .content .textEnd {
  text-align: end;
}
#mapContact .listContainer .element .content .map {
  display: none;
  width: 100%;
  height: 800px;
  background-color: antiquewhite;
  border: unset;
  margin: 30px 0 0 0;
}
#mapContact .listContainer .element .content .btnContainer {
  width: 96%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 15px auto;
}
#mapContact .listContainer .element .content .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: unset;
  border-radius: 55px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  padding: 5px 10px;
  transition: 0.3s all ease-in-out;
}
#mapContact .listContainer .element .content .btn:hover {
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
#mapContact .listContainer .element .content .btnAll {
  display: none;
  width: 48%;
  height: 64px;
  background-color: #d43d6e;
  color: #fff;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
#mapContact .listContainer .element .content .btnShow {
  max-width: 500px;
  width: 48%;
  height: 50px;
  background-color: #6285b3;
  color: #fff;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
#mapContact .listContainer .element .content .btnRoute {
  max-width: 500px;
  width: 48%;
  height: 50px;
  background-color: #d43d6e;
  color: #fff;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
}
#mapContact .listContainer .element .content .btnMeet {
  width: 100%;
  height: 50px;
  background-color: #3ac0ff;
  color: #fff;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  margin: 15px 0 0 0;
}
#mapContact .listContainer .element.inactive {
  background-color: rgba(225, 231, 238, 0.4901960784);
}
#mapContact .listContainer .element.inactive .titleContainer {
  cursor: auto !important;
}
#mapContact .listContainer .element.inactive .titleContainer .title {
  color: rgba(224, 57, 151, 0.4901960784);
}
#mapContact .listContainer .element.inactive .titleContainer .text {
  color: rgba(0, 0, 0, 0.4901960784);
}
#mapContact .listContainer .element.scrollHeight {
  max-height: 2000px !important;
}
#mapContact .desktopMapContainer {
  width: 450px;
  height: 450px;
  display: flex;
  overflow: hidden;
  position: absolute;
  top: 50px;
  right: 0;
  z-index: -10;
}
#mapContact .desktopMapContainer .desktopMap {
  width: calc(100% - 10px);
  height: 100%;
  display: flex;
  background-color: antiquewhite;
  transition: 0.3s all ease-in-out;
  position: absolute;
  top: 0;
  right: -800px;
}
#mapContact .desktopMapContainer .desktopMap .frameMap {
  width: 100%;
  height: 100%;
}
#mapContact .desktopMapContainer .desktopMap.active {
  right: 10px;
}
#mapContact .desktopMapContainer .btnClose {
  display: flex;
  justify-content: center;
  align-items: center;
  border: unset;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border: 1px solid black;
  background-color: #ffffff;
  background-image: url("../img/contactMap/closeBtn.png");
  background-position: center;
  background-size: 25px 25px;
  background-repeat: no-repeat;
  font-family: Poppins;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: absolute;
  top: 0px;
  right: 0px;
}
#mapContact .desktopMapContainer.active {
  z-index: 100;
}
#mapContact .inactive {
  cursor: auto !important;
}

@media screen and (max-width: 1300px) {
  #mapContact .mapContainer {
    width: 450px;
    height: 450px;
  }
  #mapContact .mapContainer .mapPoint {
    width: 26px;
    height: 36px;
  }
  #mapContact .mapContainer .mapPoint1 {
    top: 335px;
    left: 191px;
  }
  #mapContact .mapContainer .mapPoint2 {
    top: 372px;
    left: 216px;
  }
  #mapContact .mapContainer .mapPoint3 {
    top: 157.5px;
    left: 145px;
  }
  #mapContact .mapContainer .mapPoint4 {
    top: 265px;
    left: 75px;
  }
  #mapContact .mapContainer .mapPoint5 {
    top: 198px;
    left: 232px;
  }
  #mapContact .listContainer .element {
    max-height: 65px;
    padding: 8px 25px;
  }
  #mapContact .listContainer .element .titleContainer .title {
    font-size: 17px;
  }
  #mapContact .listContainer .element .titleContainer .text {
    font-size: 17px;
  }
  #mapContact .listContainer .element .titleContainer .label {
    font-size: 16px;
  }
  #mapContact .listContainer .element .content .label {
    font-size: 17px;
  }
  #mapContact .listContainer .element .content .text {
    font-size: 17px;
  }
  #mapContact .listContainer .element .content .textSmall {
    font-size: 16px;
  }
  #mapContact .listContainer .element .content .btnContainer {
    margin: 20px auto;
  }
  #mapContact .listContainer .element .content .btnShow {
    height: 45px;
    font-size: 16px;
  }
  #mapContact .listContainer .element .content .btnRoute {
    height: 45px;
    font-size: 16px;
  }
  #mapContact .listContainer .element .content .btnMeet {
    height: 45px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1200px) {
  #mapContact .listContainer .element {
    max-height: 60px;
  }
  #mapContact .listContainer .element .titleContainer .title {
    font-size: 17px;
  }
  #mapContact .listContainer .element .titleContainer .text {
    font-size: 17px;
  }
  #mapContact .listContainer .element .titleContainer .label {
    font-size: 16px;
  }
  #mapContact .listContainer .element .content .label {
    font-size: 17px;
  }
  #mapContact .listContainer .element .content .text {
    font-size: 17px;
  }
  #mapContact .listContainer .element .content .textSmall {
    font-size: 16px;
  }
  #mapContact .listContainer .element .content .btnContainer {
    margin: 20px auto;
  }
}
@media screen and (max-width: 1199px) {
  .extraPadding {
    padding: 60px 0 40px 0;
  }
}
@media screen and (max-width: 995px) {
  .extraPadding {
    padding: 40px 0 40px 0;
  }
}
@media screen and (max-width: 900px) {
  #mapContact .rowWrapper {
    flex-direction: column-reverse;
    align-items: center;
  }
  #mapContact .mapContainer {
    width: 800px;
    height: 800px;
  }
  #mapContact .mapContainer .mapPoint {
    width: 44.8px;
    height: 62.3px;
  }
  #mapContact .mapContainer .mapPoint1 {
    top: 580px;
    left: 333px;
  }
  #mapContact .mapContainer .mapPoint2 {
    top: 666px;
    left: 381px;
  }
  #mapContact .mapContainer .mapPoint3 {
    top: 280px;
    left: 257px;
  }
  #mapContact .mapContainer .mapPoint4 {
    top: 462px;
    left: 128px;
  }
  #mapContact .mapContainer .mapPoint5 {
    top: 340px;
    left: 405px;
  }
  #mapContact .listContainer {
    max-width: unset;
    height: auto;
    margin: 30px 0;
    padding: 0 20px;
    overflow-y: unset;
    border-radius: 0;
  }
  #mapContact .listContainer .element {
    height: 100%;
    max-height: 68px;
    flex-shrink: 1;
  }
  #mapContact .listContainer .element .titleContainer .number {
    width: 35px;
    height: 35px;
    right: 0px;
  }
  #mapContact .listContainer .element .titleContainer .title {
    font-size: 18px;
  }
  #mapContact .listContainer .element .titleContainer .text {
    font-size: 18px;
  }
  #mapContact .listContainer .element .titleContainer .label {
    font-size: 18px;
    top: 15px;
    right: 35px;
  }
  #mapContact .listContainer .element .content .label {
    font-size: 18px;
    margin: 15px 0 0 0;
  }
  #mapContact .listContainer .element .content .text {
    font-size: 18px;
  }
  #mapContact .listContainer .element .content .textSmall {
    font-size: 18px;
  }
  #mapContact .listContainer .element .content .map {
    display: flex;
    height: 550px;
  }
  #mapContact .listContainer .element .content .btnAll {
    display: flex;
    width: 48%;
    font-size: 20px;
  }
  #mapContact .listContainer .element .content .btnShow {
    display: none;
  }
  #mapContact .listContainer .element .content .btnRoute {
    height: 64px;
    font-size: 20px;
    width: 48%;
    background-color: #6285b3;
  }
  #mapContact .listContainer .element .content .btnMeet {
    height: 64px;
    font-size: 20px;
  }
  #mapContact .desktopMapContainer {
    display: none;
  }
}
@media screen and (max-width: 850px) {
  .extraPadding {
    padding: 60px 0 40px 0;
  }
}
@media screen and (max-width: 800px) {
  #mapContact .mapContainer {
    width: 750px;
    height: 750px;
  }
  #mapContact .mapContainer .mapPoint1 {
    top: 542px;
    left: 312px;
  }
  #mapContact .mapContainer .mapPoint2 {
    top: 619px;
    left: 356px;
  }
  #mapContact .mapContainer .mapPoint3 {
    top: 259px;
    left: 239px;
  }
  #mapContact .mapContainer .mapPoint4 {
    top: 430px;
    left: 119px;
  }
  #mapContact .mapContainer .mapPoint5 {
    top: 316px;
    left: 381px;
  }
  #mapContact .listContainer .element .content .btnAll {
    font-size: 18px;
    height: 55px;
  }
  #mapContact .listContainer .element .content .btnRoute {
    font-size: 18px;
    height: 55px;
  }
  #mapContact .listContainer .element .content .btnMeet {
    font-size: 18px;
    height: 55px;
  }
}
@media screen and (max-width: 750px) {
  #mapContact .mapContainer {
    width: 700px;
    height: 700px;
  }
  #mapContact .mapContainer .mapPoint1 {
    top: 504px;
    left: 291px;
  }
  #mapContact .mapContainer .mapPoint2 {
    top: 575px;
    left: 331px;
  }
  #mapContact .mapContainer .mapPoint3 {
    top: 238px;
    left: 222px;
  }
  #mapContact .mapContainer .mapPoint4 {
    top: 398px;
    left: 110px;
  }
  #mapContact .mapContainer .mapPoint5 {
    top: 293px;
    left: 355px;
  }
}
@media screen and (max-width: 700px) {
  #mapContact .mapContainer {
    width: 650px;
    height: 650px;
  }
  #mapContact .mapContainer .mapPoint {
    width: 38.4px;
    height: 53.4px;
  }
  #mapContact .mapContainer .mapPoint1 {
    top: 473px;
    left: 273px;
  }
  #mapContact .mapContainer .mapPoint2 {
    top: 537px;
    left: 310px;
  }
  #mapContact .mapContainer .mapPoint3 {
    top: 226px;
    left: 208px;
  }
  #mapContact .mapContainer .mapPoint4 {
    top: 373px;
    left: 103px;
  }
  #mapContact .mapContainer .mapPoint5 {
    top: 280px;
    left: 332px;
  }
  #mapContact .listContainer .element .content .btnAll {
    font-size: 18px;
    height: 55px;
  }
  #mapContact .listContainer .element .content .btnRoute {
    font-size: 18px;
    height: 55px;
  }
}
@media screen and (max-width: 650px) {
  #mapContact .mapContainer {
    width: 600px;
    height: 600px;
  }
  #mapContact .mapContainer .mapPoint1 {
    top: 433px;
    left: 251px;
  }
  #mapContact .mapContainer .mapPoint2 {
    top: 493px;
    left: 284px;
  }
  #mapContact .mapContainer .mapPoint3 {
    top: 205px;
    left: 190px;
  }
  #mapContact .mapContainer .mapPoint4 {
    top: 342px;
    left: 94px;
  }
  #mapContact .mapContainer .mapPoint5 {
    top: 257px;
    left: 305px;
  }
}
@media screen and (max-width: 600px) {
  #mapContact .mapContainer {
    width: 550px;
    height: 550px;
  }
  #mapContact .mapContainer .mapPoint {
    width: 32px;
    height: 44.5px;
  }
  #mapContact .mapContainer .mapPoint1 {
    top: 402px;
    left: 230px;
  }
  #mapContact .mapContainer .mapPoint2 {
    top: 455px;
    left: 262px;
  }
  #mapContact .mapContainer .mapPoint3 {
    top: 191px;
    left: 175px;
  }
  #mapContact .mapContainer .mapPoint4 {
    top: 319px;
    left: 88px;
  }
  #mapContact .mapContainer .mapPoint5 {
    top: 238px;
    left: 281px;
  }
  #mapContact .listContainer .element .titleContainer .label {
    right: 25px;
  }
  #mapContact .listContainer .element .content .btnAll {
    font-size: 16px;
    height: 48px;
  }
  #mapContact .listContainer .element .content .btnRoute {
    font-size: 16px;
    height: 48px;
  }
  #mapContact .listContainer .element .content .btnMeet {
    font-size: 16px;
    height: 48px;
  }
}
@media screen and (max-width: 550px) {
  #mapContact .mapContainer {
    width: 500px;
    height: 500px;
  }
  #mapContact .mapContainer .mapPoint1 {
    top: 364px;
    left: 209px;
  }
  #mapContact .mapContainer .mapPoint2 {
    top: 410px;
    left: 237px;
  }
  #mapContact .mapContainer .mapPoint3 {
    top: 171px;
    left: 158px;
  }
  #mapContact .mapContainer .mapPoint4 {
    top: 288px;
    left: 80px;
  }
  #mapContact .mapContainer .mapPoint5 {
    top: 213px;
    left: 256px;
  }
}
@media screen and (max-width: 500px) {
  #mapContact .mapContainer {
    width: 450px;
    height: 450px;
  }
  #mapContact .mapContainer .mapPoint {
    width: 26px;
    height: 36px;
  }
  #mapContact .mapContainer .mapPoint1 {
    top: 335px;
    left: 191px;
  }
  #mapContact .mapContainer .mapPoint2 {
    top: 372px;
    left: 216px;
  }
  #mapContact .mapContainer .mapPoint3 {
    top: 157.5px;
    left: 145px;
  }
  #mapContact .mapContainer .mapPoint4 {
    top: 265px;
    left: 75px;
  }
  #mapContact .mapContainer .mapPoint5 {
    top: 198px;
    left: 232px;
  }
  #mapContact .listContainer .element {
    max-height: 63px;
  }
  #mapContact .listContainer .element .titleContainer .title {
    font-size: 16px;
  }
  #mapContact .listContainer .element .titleContainer .text {
    font-size: 16px;
  }
  #mapContact .listContainer .element .titleContainer .label {
    font-size: 15px;
    right: 18px;
  }
  #mapContact .listContainer .element .content .label {
    font-size: 16px;
    margin: 15px 0 0 0;
  }
  #mapContact .listContainer .element .content .text {
    font-size: 16px;
  }
  #mapContact .listContainer .element .content .textSmall {
    font-size: 16px;
  }
  #mapContact .listContainer .element .content .map {
    height: 450px;
  }
  #mapContact .listContainer .element .content .btnContainer {
    flex-direction: column;
  }
  #mapContact .listContainer .element .content .btnAll {
    width: 100%;
    font-size: 18px;
    height: 55px;
  }
  #mapContact .listContainer .element .content .btnRoute {
    width: 100%;
    font-size: 18px;
    height: 55px;
    margin: 0 0 15px 0;
  }
  #mapContact .listContainer .element .content .btnMeet {
    font-size: 18px;
    height: 55px;
  }
}
@media screen and (max-width: 450px) {
  #mapContact .mapContainer {
    width: 400px;
    height: 400px;
  }
  #mapContact .mapContainer .mapPoint1 {
    top: 293px;
    left: 166px;
  }
  #mapContact .mapContainer .mapPoint2 {
    top: 330px;
    left: 194px;
  }
  #mapContact .mapContainer .mapPoint3 {
    top: 136px;
    left: 127px;
  }
  #mapContact .mapContainer .mapPoint4 {
    top: 232px;
    left: 64px;
  }
  #mapContact .mapContainer .mapPoint5 {
    top: 173px;
    left: 207px;
  }
  #mapContact .listContainer .element {
    max-height: 58px;
    transition: 0.6s all ease-in-out;
  }
  #mapContact .listContainer .element .titleContainer .number {
    width: 30px;
    height: 30px;
    right: -5px;
  }
  #mapContact .listContainer .element .titleContainer .title {
    font-size: 15px;
  }
  #mapContact .listContainer .element .titleContainer .text {
    font-size: 15px;
  }
  #mapContact .listContainer .element .titleContainer .label {
    font-size: 14px;
    top: 12px;
    right: 15px;
  }
  #mapContact .listContainer .element .content .label {
    font-size: 16px;
    margin: 13px 0 0 0;
  }
  #mapContact .listContainer .element .content .text {
    font-size: 16px;
  }
  #mapContact .listContainer .element .content .textSmall {
    font-size: 15px;
  }
  #mapContact .listContainer .element .content .map {
    height: 400px;
  }
  #mapContact .listContainer .element .content .btnRoute {
    height: 50px;
    font-size: 16px;
  }
  #mapContact .listContainer .element .content .btnAll {
    height: 50px;
    font-size: 16px;
  }
  #mapContact .listContainer .element .content .btnMeet {
    height: 50px;
    font-size: 16px;
  }
}
@media screen and (max-width: 400px) {
  #mapContact .mapContainer {
    width: 350px;
    height: 350px;
  }
  #mapContact .mapContainer .mapPoint1 {
    top: 249px;
    left: 142px;
  }
  #mapContact .mapContainer .mapPoint2 {
    top: 285px;
    left: 171px;
  }
  #mapContact .mapContainer .mapPoint3 {
    top: 115px;
    left: 109px;
  }
  #mapContact .mapContainer .mapPoint4 {
    top: 197px;
    left: 56px;
  }
  #mapContact .mapContainer .mapPoint5 {
    top: 147px;
    left: 180px;
  }
  #mapContact .listContainer {
    padding: 0 15px;
  }
  #mapContact .listContainer .element {
    max-height: 56px;
    transition: 0.7s all ease-in-out;
    padding: 10px 20px;
  }
  #mapContact .listContainer .element .titleContainer .title {
    font-size: 13px;
  }
  #mapContact .listContainer .element .titleContainer .text {
    font-size: 13px;
  }
  #mapContact .listContainer .element .titleContainer .label {
    font-size: 12px;
  }
  #mapContact .listContainer .element .content .label {
    font-size: 14px;
  }
  #mapContact .listContainer .element .content .text {
    font-size: 14px;
  }
  #mapContact .listContainer .element .content .textSmall {
    font-size: 13px;
  }
  #mapContact .listContainer .element .content .map {
    height: 350px;
  }
  #mapContact .listContainer .element .content .btnContainer {
    margin: 20px auto 15px auto;
  }
  #mapContact .listContainer .element .content .btnRoute {
    height: 45px;
    font-size: 14px;
  }
  #mapContact .listContainer .element .content .btnAll {
    height: 45px;
    font-size: 14px;
  }
  #mapContact .listContainer .element .content .btnMeet {
    height: 45px;
    font-size: 14px;
  }
}
@media screen and (max-width: 350px) {
  #mapContact .mapContainer {
    width: 320px;
    height: 320px;
  }
  #mapContact .mapContainer .mapPoint {
    width: 19px;
    height: 27px;
  }
  #mapContact .mapContainer .mapPoint1 {
    top: 232px;
    left: 131px;
  }
  #mapContact .mapContainer .mapPoint2 {
    top: 266px;
    left: 156px;
  }
  #mapContact .mapContainer .mapPoint3 {
    top: 111px;
    left: 102px;
  }
  #mapContact .mapContainer .mapPoint4 {
    top: 185px;
    left: 53px;
  }
  #mapContact .mapContainer .mapPoint5 {
    top: 140px;
    left: 167px;
  }
  #mapContact .listContainer .element {
    max-height: 50px;
    transition: 0.8s all ease-in-out;
    padding: 8px 20px;
  }
  #mapContact .listContainer .element .titleContainer .number {
    width: 25px;
    height: 25px;
  }
  #mapContact .listContainer .element .titleContainer .number::before {
    font-size: 18px;
  }
  #mapContact .listContainer .element .titleContainer .title {
    font-size: 12px;
  }
  #mapContact .listContainer .element .titleContainer .text {
    font-size: 12px;
  }
  #mapContact .listContainer .element .titleContainer .label {
    font-size: 11px;
    top: 13px;
    right: 10px;
  }
  #mapContact .listContainer .element .content .label {
    font-size: 13px;
  }
  #mapContact .listContainer .element .content .text {
    font-size: 13px;
  }
  #mapContact .listContainer .element .content .textSmall {
    font-size: 12px;
  }
  #mapContact .listContainer .element .content .map {
    height: 300px;
  }
  #mapContact .listContainer .element .content .btnRoute {
    height: 35px;
    font-size: 12px;
  }
  #mapContact .listContainer .element .content .btnAll {
    height: 35px;
    font-size: 12px;
  }
  #mapContact .listContainer .element .content .btnMeet {
    height: 35px;
    font-size: 12px;
  }
}/*# sourceMappingURL=contactMapStaticNumber.css.map */