@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;500;600;700;800;900&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:wght@100&display=swap');

html {
  box-sizing: border-box;
}

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

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
}

/*overlay*/

#overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  text-align: center;
}

.content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.cta {
  border: none;
  background: none;
  cursor: pointer;
}

.cta span {
  padding-bottom: 7px;
  letter-spacing: 4px;
  font-size: 14px;
  padding-right: 15px;
  text-transform: uppercase;
}

.cta svg {
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.cta:hover svg {
  transform: translateX(0);
}

.cta:active svg {
  transform: scale(0.9);
}

.hover-underline-animation {
  position: relative;
  color: white;
  padding-bottom: 20px;
}

.hover-underline-animation:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: white;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.cta:hover .hover-underline-animation:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/*end-of-overlay*/

.szechenyi-logo{
  position: absolute;
  bottom:0;
  right: 0;
}

/*body*/

.body {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  overflow: hidden;
}

.logo_close{
  position: absolute;
  top: 23%;
  left: 16%;
  z-index: 99;
  background-color: rgb(198, 43, 43);
  border-radius: 100%;
  transition: all 0.5s ease-in-out;
  height: 30px;
  font-size: 17px;
  font-weight: 100;
  width: 30px;
  display: flex; 
  justify-content: center;
  align-items: center;
}

.body__bg-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: max-content;
  min-width: 100%;
  transition: all 1s ease-in-out;
}

.body__bg-img {
  position: absolute;
  object-fit: cover;
  height: 100vh;
  width: 100%;
  transform: scale(1);
  z-index: -2;
}

.body__bg-img--night {
  opacity: 0;
}

.body__bg-img--light {
  display: none;
}

.body__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 26, 40, 0.215);
  transform: scale(1.15);
  z-index: -1;
}

.main {
  flex-grow: 1;
}

.container {
  max-width: 1720px;
  padding: 0 100px;
  margin: 0 auto;
}

.header {
  padding-top: 70px;
  color: #fff;
  position: relative;
  z-index: 15;
}

.header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 37px;
}

.header__logo {
  margin-right: 40px;
  display: inline-block;
}

.header__top button {
  position: relative;
  z-index: 10;
  transition: all 0.3s;
}

.header__top button:hover,
.menu__link:hover {
  opacity: 0.5;
}

.burger {
  display: none;
  background-color: transparent;
  border: none;
  padding: 0 20px 0 0;
  cursor: pointer;
}



/*end-of-body*/

/*points*/

.points {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: all 1s;
}

.points__item {
  position: absolute;
}


.points__item--opacity {
  z-index: 1;
  opacity: 0 !important;
}

.points__item--opacity:hover+.points__item svg path {
  fill: #d87e94ab;
}


.points__item svg {
  width: 100%;
  height: 100%;

}

.points__item path {
  transition: all .3s ease-in-out;

}

.point-1 {
  width: 140px;
  height: 185px;
  top: 26%;
  left: 28%;
}

.point-2 {
  width: 130px;
  height: 150px;
  top: 70%;
  left: 26%;
}

.point-3 {
  width: 110px;
  height: 145px;
  top: 32%;
  left: 45%;
}

.point-4 {
  width: 95px;
  height: 125px;
  top: 18%;
  left: 52%;
}

.point-5 {
  width: 100px;
  height: 135px;
  top: 42%;
  left: 56%;
}

.point-6 {
  width: 80px;
  height: 125px;
  top: 62%;
  left: 79%;
}

.point-7 {
  width: 90px;
  height: 115px;
  top: 72%;
  left: 55%;
}


/*end-of-hotspots*/


/*popup*/

.popup {
  position: fixed;
  top: 25%;
  left: 0;
  right: 0;
  margin-bottom: 50px;
  color: #000000;
  letter-spacing: -0.045em;
  z-index: 10;
  display: none;
}

.popup__inner {
  max-width: 900px;
  animation: show-left 0.5s ease-in-out;
  background: rgba(255, 255, 255, 0.74);
  border-radius: 35px 35px;
}

.popup__top {
  display: flex;
  align-items: center;
  border-bottom: 2px solid;
  border-image: linear-gradient(to right, #03c9fe, #af2afe86) 1;
}

.popup__btn {
  padding: 50px 50px 50px 50px;
  border-right: 2px solid;
  border-image: linear-gradient(to bottom, #af2afe86, #03c9fe) 1;
}

.popup__btn svg path {
  transition: all .3s ease-in-out;
}

.popup__btn:hover svg path {
  stroke: #03c9fe;
}

.popup__title {
  padding-left: 50px;
  width: 100%;
  font-size: 64px;
  font-weight: 700;
  font-family: "Montserrat";
}

.popup__title div {
  padding-left: 12%;
  font-size: 40px;
  font-weight: 400;
}

.popup__content {
  max-width: 725px;
  padding-left: 165px;
}

.popup__text {
  padding: 35px;
}

.popup__link {
  display: inline-block;
  width: 100%;
  padding: 12px 100px 12px 70px;
  font-size: 36px;
  color: #fff;
  background: linear-gradient(45deg, rgba(43, 201, 254, 1) 0%, rgba(175, 42, 254, 0.5270483193277311) 100%);
  position: relative;
  text-align: center;
  transition: all 0.3s ease-in-out;
  border-radius: 35px 35px;
  margin-bottom: 25px;
}

.popup__link:hover {
  background-color: #660055;
}

.popup__link::after {
  content: '';
  width: 29px;
  height: 21px;
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
  background-image: url(../img/icons/arrow-link.svg);
  background-repeat: no-repeat;
  background-position: center;
}

/*end-of-popup*/
.logo_close {
  cursor: pointer;
}
/*footer*/

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(246,246,246,0.0) 0%, rgba(255,255,255,1) 100%);
}

.footer__inner {
  display: block;
  align-items: center;
  padding: 10px 0;
}

.footer__btns {
  display: flex;
}

.footer__menu {
  margin-left: auto;
  display: flex;
  text-transform: uppercase;
  align-items: center;
  
}

.footer__item+.footer__item {
  padding-left: 50px;
  margin-left: 50px;
  border-left: 2px solid rgba(0, 155, 142, 0.7);
}

.footer__link {
  color: black;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.footer__link2 {

  color: black;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.footer__link:hover {
  color: rgba(0, 155, 142, 0.7);
}

.footer__link+.footer__link {
  margin-left: 50px;
}

.footer__mob-btns {
  display: none;
}

.footer__mob-btn {
  max-height: 57px;
  overflow: hidden;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #fff;
}

.footer__mob-btn img {
  transition: all .3s ease-in-out;
}

.footer__mob-btn img+img {
  margin-top: 35px;
}

.footer__mob-btn.night img {
  transform: translateY(-75px);
}

.footer__mob-btn.sound-on img {
  transform: scaleY(0.5);
}

.footer__arrows {
  display: none;
}

.footer__arrows svg {
  max-width: 60px;
  max-height: 57px;
}

/*end-of-footer*/

/*mobile-menu*/

.mob-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  text-transform: capitalize;
  font-size: 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.88);
  z-index: 10;
}

.mob-menu__top {
  display: flex;
  justify-content: space-between;
  height: 90px;
  padding: 17.5px 20px 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.mob-menu__logo {
  width: 55px;
}

.mob-menu__inner {
  height: 50vh;
  margin-top: 20px;
  animation: show-left 0.6s ease-in-out;
}

@keyframes show-left {
  from {
    transform: translateX(-150%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.mob-menu__close-btn-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
}

.mob-menu__close-btn {
  padding-left: 15px;
}

.mob-menu__list {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.mob-menu__item {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  margin: 0 20px;
}


.mob-menu__link:hover {
 color:rgba(0, 155, 142, 0.7);
}

.mob-menu__link--active {
  color:rgba(0, 211, 193, 0.884);
}

.mob-menu__item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.mob-menu__btn {
  margin-right: 20px;
}

.mob-menu__social {
  margin-bottom: 15px;
  text-align: center;
}

.mob-menu__social-link {
  display: inline-block;
  padding-top: 15px;
  padding-bottom: 15px;
}

.mob-menu__social-link {
  margin-left: 40px;
  padding-left: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.mob-menu__box {
  margin-left: -100px;
  margin-right: -100px;
  margin-bottom: 15px;
}

.mob-menu__modal-btn {
  position: relative;
  display: block;
  left: 50%;
  transform: translate(-50%, 0);
  width: 30%;
  padding: 15px 35px;
  color: #fff;
  transition: all .3s ease-in-out;
  border-radius: 55px 55px;
  margin: 25px 0;
}



.mob-menu__modal-btn:hover {
  background-color: rgba(0, 155, 142, 0.7);;
}

.mob-menu__info {
  display: none;
  animation: show-right 0.5s ease-in-out;
}

@keyframes show-right {
  from {
    transform: translateX(150%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.mob-menu__info-top {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.mob-menu__btn-back {
  padding: 30px 20px;
  line-height: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.mob-menu__title {
  padding-left: 20px;
  font-size: 36px;
  font-weight: 500;
}

.mob-menu__info-list {
  padding: 0 20px;
}

.mob-menu__info-item {
  padding: 20px 0;
  font-size: 18px;
}

.mob-menu__info-item+.mob-menu__info-item {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hide-left {
  animation: hide-left 0.5s ease-in-out forwards;
}

@keyframes hide-left {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(-150%);
    opacity: 0;
  }
}

.hide-right {
  animation: hide-right 0.5ss ease-in-out forwards;
}

@keyframes hide-right {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(150%);
    opacity: 0;
  }
}

.mob-menu__eu {
  max-width: 250px;
  display: flex;
  position: fixed;
  transition: all 0.8s ease-in-out;
  z-index: 30;
  right: 0; 
  bottom: 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  80% {
    opacity: 0;
  }

  95% {
    opacity: 0.9;
  }

  100% {
    opacity: 1;
  }
}

.fade-in {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

/*end-of-mobile-menu*/

/*animation-points*/

.animation-point-1 {
  transform: scale(2.5) translate(500px, 140px);
  overflow: hidden;
}

.animation-point-2 {
  position: fixed !important;
  transform: scale(2.5) translate(226px, -109px);
  overflow: hidden;
}

.animation-point-3 {
  position: fixed !important;
  transform: scale(2.5) translate(-480px, -145px);
  overflow: hidden;
}

.animation-point-4 {
  position: fixed !important;
  transform: scale(2.5) translate(-58px, 140px);
  overflow: hidden;
}

.animation-point-5 {
  position: fixed !important;
  transform: scale(2.5) translate(-32px, 65px);
  overflow: hidden;
}

.animation-point-6 {
  position: fixed !important;
  transform: scale(2.5) translate(-32px, 65px);
  overflow: hidden;
}

.animation-point-7 {
  position: fixed !important;
  transform: scale(2.5) translate(-32px, 65px);
  overflow: hidden;
}

@media (max-width: 1600px) {
  .animation-point-1 {
    transform: scale(2.5) translate(360px, 140px);
  }

  .animation-point-2 {
    transform: scale(2.5) translate(170px, -109px);
  }

  .animation-point-3 {
    transform: scale(2.5) translate(-435px, -145px);
  }

  .animation-point-4 {
    transform: scale(2.5) translate(-440px, 140px);
  }

  .animation-point-5 {
    transform: scale(2.5) translate(-70px, 65px);
  }

  .animation-point-6 {
    transform: scale(2.5) translate(-70px, 65px);
  }
  .animation-point-7 {
    transform: scale(2.5) translate(-70px, 65px);
  }
}

@media (max-width: 1280px) {
  .animation-point-1 {
    transform: scale(2.5) translate(250px, 140px);
  }

  .animation-point-2 {
    transform: scale(2.5) translate(100px, -165px);
  }

  .animation-point-3 {
    transform: scale(2.5) translate(-560px, -200px);
  }

  .animation-point-4 {
    transform: scale(2.5) translate(-580px, 70px);
  }

  .animation-point-5 {
    transform: scale(2.5) translate(-160px, 45px);
  }

  .animation-point-6 {
    transform: scale(2.5) translate(-160px, 45px);
  }
  .animation-point-7 {
    transform: scale(2.5) translate(-160px, 45px);
  }
}

@media (max-width: 1024px) {
  .animation-point-1 {
    transform: scale(2.5) translate(165px, 55px);
  }

  .animation-point-2 {
    transform: scale(2.5) translate(0, -190px);
  }

  .animation-point-3 {
    transform: scale(2.5) translate(-560px, -200px);
  }

  .animation-point-4 {
    transform: scale(2.5) translate(-580px, 70px);
  }

  .animation-point-5 {
    transform: scale(2.5) translate(-160px, 45px);
  }

  .animation-point-6 {
    transform: scale(2.5) translate(-160px, 45px);
  }
  .animation-point-7 {
    transform: scale(2.5) translate(-160px, 45px);
  }
}

@media (max-width: 768px) {
  .animation-point-1 {
    transform: scale(2) translate(-10px, -45px);
  }

  .animation-point-2 {
    transform: scale(2) translate(-140px, -265px);
  }

  .animation-point-3 {
    transform: scale(2) translate(-747px, -276px);
  }

  .animation-point-4 {
    transform: scale(2) translate(-580px, 70px);
  }

  .animation-point-5 {
    transform: scale(2) translate(-160px, 45px);
  }

  .animation-point-6 {
    transform: scale(2) translate(-160px, 45px);
  }
  .animation-point-7 {
    transform: scale(2) translate(-160px, 45px);
  }
}

@media (max-width: 540px) {
  .animation-point-1 {
    position: relative !important;
  }

  .animation-point-2 {
    transform: scale(1.5) translate(-345px, -281px);
  }

  .animation-point-3 {
    transform: scale(1.5) translate(-856px, -292px);
  }

  .animation-point-4 {
    transform: scale(1.5) translate(-580px, 70px);
  }

  .animation-point-5 {
    transform: scale(1.5) translate(-160px, 45px);
  }

  .animation-point-6 {
    transform: scale(1.5) translate(-160px, 45px);
  }
  .animation-point-7 {
    transform: scale(1.5) translate(-160px, 45px);
  }
}

/*end-of-animation-points*/

/*media-querys*/



@media (max-width: 1590px) {



  .mob-menu__modal-btn {
    width: 60%;
    padding: 15px 35px;
  }

  .header {
    padding-top: 30px;
    position: fixed;
    top: 0;
    width: 100%;
  }

  .popup {
    margin-bottom: 50px;
  }
  
  .popup__inner {
    max-width: 800px;
    border-radius: 35px 35px;
  }
  
  .popup__btn {
    padding:40px ;
  }
  
  .popup__title {
    padding-left: 40px;
    width: 100%;
    font-size: 45px;
    font-weight: 700;

  }
  
  .popup__title div {
    padding-left: 10%;
    font-size: 32px;
    font-weight: 400;
  }
  
  .popup__content {
    max-width: 800px;
    padding-left: 90px;
  }
  
  .popup__text {
    padding: 30px;
  }
  
  .popup__link {
    width: 90%;
    padding: 10px 0;
    font-size: 28px;
    border-radius: 25px 25px;
    margin-bottom: 20px;
  }
  .popup__link::after {
    width: 24px;
    height: 20px;
    top: 45%;
    right: 50px;
  }

  .header {
    padding-top: 30px;
    position: fixed;
    top: 0;
    width: 100%;
  }


  .body {
    height: 100vh;
    width: 100vw;
  }

  .body__bg-box {
    position: fixed;
    overflow-x: scroll;
    width: 100%;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .body__bg-box::-webkit-scrollbar {
    display: none;
  }

  .points {
    width: 2097px;
    height: 1180px;
    position: relative
  }

  .body__bg-img {
    height: 100%;
  }

  .header__top {
    display: block;
  }

  .header__logo {
    margin-bottom: 45px;
  }

  .menu__wrapper {
    max-width: 970px;
  }

  .menu__subitem {
    width: 240px;
    height: 170px;
  }
  
  .small{
    padding-top: 5px;
    font-size: 14px;
  }


}

@media (max-width: 1280px) {

  .mob-menu__modal-btn {
    width: 60%;
    padding: 10px 35px;
    margin: 25px 0;
  }


  /* #overlay {
     display: none; 
  } */

  .header {
    padding-top: 20px;
  }

  .header__top {
    display: flex;
  }

  .header__logo {
    margin-bottom: 0;
  }

  .menu {
    display: none;
  }

  .burger {
    display: block;
  }

  .header__title {
    padding-bottom: 74px;
    font-size: 96px;
  }

  .popup {
    top: 30%;
    bottom: 0;
    transform: translate(0);
  }

  .popup__inner {
    height: 50vh;
    max-width: 675px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .popup__top {
    margin-bottom: 50px;
  }

  .popup__btn {
    padding: 20px 20px 20px 20px;
  }

  .popup__btn svg {
    width: 60px;
    height: 45px;
  }

  .popup__title {
    padding-left: 20px;
    font-size: 36px;
  }

  .popup__title div {
    font-size: 24px;
  }

  .popup__content {
    padding-left: 0;
  }

  .popup__text {
    padding: 12px 100px 12px 80px;
  }

  .popup__link {
    position: relative;
    width: auto;
    padding: 12px 100px 12px 80px;
    font-size: 24px;
    top: 10%;
    left: 5%;
  }

  .popup__link::after {
    right: 50px;
  }

  .footer {
    background: rgba(255, 255, 255, 0);
  }
  .footer__menu{
    align-items: center;
  }

  .footer__link2 {

    color: black;
    font-size: 10px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    line-height:normal;
  }

  .footer__inner {
    border-top: none;
    padding-top: 0;
    padding-bottom: 25px;
  }

  .footer__mob-btns {
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 100%;
  }


}

@media (max-width: 1024px) {
  /* #overlay {
    display: none;
  } */

  .mob-menu__modal-btn {
    width: 60%;
    padding: 10px 35px;
    margin: 25px 0;
  }

  /* #overlay {
    display: none;
  } */

  body {
    font-size: 16px;
  }

  .body__bg-img {
    transform: scale(1.35);
  }

  .body__overlay {
    transform: scale(2);
  }

  .container {
    padding: 0 20px;
  }

  .mob-menu {
    overflow-y: scroll;
    overflow-x: hidden;
  }

  .popup {
    top: 30%;
    bottom: 0;
    transform: translate(0);
    
  }
  .footer {
    background: rgba(255, 255, 255, 0);
  }

  .popup__inner {
    height: 54vh;
    max-width: 675px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .popup__top {
    margin-bottom: 30px;
  }

  .popup__btn {
    padding: 15px;
    border: none;
  }

  .popup__btn svg {
    width: 50px;
    height: 40px;
  }

  .popup__title {
    padding-left: 18px;
    font-size: 32px;
  }

  .popup__title div {
    font-size: 20px;
  }

  .popup__content {
    padding-left: 0;
  }

  .popup__text {
    padding: 5px 20px 12px 20px;
  }

  .popup__link {
    position: relative;
    display: block;
    width: auto;
    padding: 12px 10px 12px 8px;
    font-size: 20px;
    top: 10%;
    left: 0;
    margin: 1px 40px 10px 40px;
  }

  .popup__link::after {
    right: 50px;
  }

  .footer__mob-btns {
    display: none;
  }


}

@media (max-width: 768px) {
  /* #overlay {
    display: none;
  } */

  body {
    font-size: 14px;
  }

  .body__bg-img {
    transform: scale(1.15);
  }

  .mob-menu__social-link {
    font-size: 16px;
  }

  .burger {
    background-color: transparent;
    border: none;
    padding: 0 20px 0 0;
    cursor: pointer;
  }

  .mob-menu__social-link+.mob-menu__social-link {
    margin-left: 10px;
    padding-left: 10px;
  }

  .mob-menu__modal-btn {
    width: 70%;
    padding: 10px 35px;
  }

  @keyframes lighting {
    0% {
      opacity: 0.6;
    }

    50% {
      opacity: 1;
    }

    100% {
      opacity: 0.6;
    }
  }

  .points__item {
    opacity: 0;
  }

  .points__item--visible {
    display: none;
  }

  .points__item--opacity {
    z-index: -1;
  }

  .popup {
    margin-bottom: 0;
    top: 30%;
    left: 0;
    z-index: 0;
  }

  #experience {
    display: block;
  }

  .popup__inner {
    padding: 15px 10px 15px 10px;
    justify-content: end;
    height: auto;
    border-radius: 35px 35px;
    margin-bottom: 100px;
  }

  .popup__top {
    margin-bottom: 0;
  }

  .popup__btn {
    display: none;
  }

  .popup__title {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .popup__title div {
    padding-left: 5%;
    font-size: 14px;
  }

  .popup__text {
    display: block;
    padding: 20px;
    font-size: 14px;
  }

  .popup__link {
    padding: 12px 30px 12px 20px;
    width: 100%;
    max-width: 420px;
    position: relative;
    top: 0;
    left: 0;
  }

  .popup__link::after {
    right: 10px;
  }

  .footer__inner {
    padding-bottom: 5px;
  }

  .footer__menu {
    display: none;
  }

  .footer__arrows {
    display: none;
  }

  .footer__mob-btns {
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 100%;
  }

}

@media (max-width: 560px) {

  /* #overlay {
    display: none;
  } */

  .mob-menu__eu {
    max-width: 160px;
  }
  .logo_close{
    top: 23%;
    left: 17% ;
    font-weight: 300;
    height: 18px;
    width: 18px;
    font-size: 11px;
    display: flex; 
    justify-content: center;
    align-items: center;
  }
  .popup__inner {
    padding: 15px 10px 15px 10px;
    justify-content: end;
    height: auto;
    border-radius: 35px 35px;
    margin-bottom: 100px;
    margin-top: 100px;
  }

  .popup__top {
    margin-bottom: 0;
  }

  .popup__btn {
    display: none;
  }

  .popup__title {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .popup__title div {
    padding-left: 5%;
    font-size: 14px;
  }

  .popup__text {
    display: block;
    padding: 20px;
    font-size: 14px;
  }

  .popup__link {
    padding: 12px 40px 12px 20px;
    width: 100%;
    max-width: 420px;
    position: relative;
    top: 0;
    left: 0;
    margin: 0 10px 10px 0;
  }

  .mob-menu__modal-btn {
    width: 70%;
    padding: 10px 35px;
  }

  .burger {
    border: none;
    padding: 0 20px 0 0;
    cursor: pointer;
  }

  .point-1 {
    width: 120px;
    height: 56px;
    top: 35%;
    left: 24%;
  }

  .point-2 {
    top: 54%;
    width: 90px;
    height: 165px;
  }

  .point-3 {
    width: 70px;
    height: 102px;
    top: 50%;
    left: 47%;
  }

  .point-4 {
    width: 145px;
    height: 153px;
    top: 55%;
    left: 53%;
  }

  .point-5 {
    width: 80px;
    height: 165px;
    top: 11%;
    left: 58%;
  }

  .point-6 {
    width: 55px;
    height: 75px;
    top: 55%;
    left: 85.6%;
  }

  .point-7 {
    width: 55px;
    height: 75px;
    top: 77%;
    left: 72.6%;
  }
}


#overlay{
overflow: hidden;
position: fixed;
top: 0;
left: 0;
}
/*end-of-media-querys*/