    @keyframes bounceInDown {
      from, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        transform: translate3d(0, 0px, 0);
    }

    75% {
        transform: translate3d(0, -15px, 0);
    }

    90% {
        transform: translate3d(0, 0px, 0);
    }

    to {
        transform: none;
    }
}

.bounceInDown {
  animation-name: bounceInDown;
  animation-duration: 1s;
}

@keyframes fadeIn {
  from {
    opacity: 0;        
}

to {
    opacity: 1;        
}
}

.fadeIn {
  animation-name: fadeIn;
  animation-duration: .5s;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
}

50% {
    opacity: 1;
}
}

.zoomIn {
  animation-name: zoomIn;
  animation-duration: .5s;
}
@keyframes zoomInBounce {
  from {
        opacity: 0;
        transform: scale3d(.3, .3, .3);
    }
    50% {
        opacity: 1;
    }

    60% {    
        transform: scale3d(1.15, 1.15, 1.15);
    }
    80% {    
        transform: scale3d(.9, .9, .9);
    }
    100% {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

.zoomInBounce {
  animation: zoomInBounce forwards;
  animation-duration: .6s;
}
.zoomOut {
    animation-name: zoomIn;
}

.opaque-animated-def {
        opacity: 0;
        background-color: #73bd4c;
}

body {
    background-color: #73bd4c;
}

@keyframes renderIn {
    from {
        opacity: 0;
        background-color: #73bd4c;
    }
    100% {
        opacity: 1;
        background-color: #f0f2f5;
    }
}


@-webkit-keyframes float {
  from {
    -webkit-transform: rotate(0deg) translate3d(12px, 0, 0) rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg) translate3d(12px, 0, 0) rotate(-360deg);
  }
}

@keyframes float {
  from {
    transform: rotate(0deg) translate3d(12px, 0, 0) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translate3d(12px, 0, 0) rotate(-360deg);
  }
}

@keyframes float-slow {
  from {
    transform: rotate(0deg) translate3d(5px, 0, 0) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translate3d(5px, 0, 0) rotate(-360deg);
  }
}
@keyframes float-back {
  from {
    transform: rotate(360deg) translate3d(-12px, 0, 0) rotate(-360deg);
  }

  to {
    transform: rotate(0deg) translate3d(-12px, 0, 0) rotate(0deg);
  }
}

@keyframes float-slow-back {
  from {
    transform: rotate(360deg) translate3d(-5px, 0, 0) rotate(-360deg);
  }

  to {
    transform: rotate(0deg) translate3d(-5px, 0, 0) rotate(0deg);
  }
}

.js-mouse-moving {
    -webkit-animation: float-slow 6s infinite linear;    
     animation: float-slow 6s infinite linear;  
}
.js-mouse-moving.backwards {
    -webkit-animation: float-slow-back 5s infinite linear;    
     animation: float-slow-back 5s infinite linear;  
}

.js-mouse-moving.moving-fast {
    -webkit-animation: float 4s infinite linear;    
     animation: float 4s infinite linear;  
}
.js-mouse-moving.moving-fast.backwards {
    -webkit-animation: float-back 4s infinite linear;    
     animation: float-back 4s infinite linear;  
}


@keyframes photoDiss  {
    from{
        opacity: 1;
        transform: scale(1)        
    }
    100% {
        opacity: 0;
        transform: scale(0.8) ;
    }
}
.photoDiss {
    animation: photoDiss .5s forwards ease-out;
}
@keyframes photoIn1 {
    from{
        opacity: 0;
        transform: translate3d(-130px, 0, 0) scale(1.4)        
    }
    60% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
    80%{
        transform: translate3d(0, 0, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
.photoIn1 {
    animation: photoIn1 .7s forwards ease-out;
}

@keyframes photoIn2 {
    from{
        opacity: 0;
        transform: translate3d(130px, 150px, 0) scale(1.3)        
    }
    60% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
    80%{
        transform: translate3d(0, 0, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
.photoIn2 {
    animation: photoIn2 .7s forwards ease-out;
}

@keyframes photoIn3 {
    from{
        opacity: 0;
        transform: translate(150px, -300px) scale(1.5)        
    }
    60% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    80%{
        transform: translate(0, 0);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}
.photoIn3 {
    animation: photoIn3 .7s forwards ease-out;
}

@keyframes fromBlur {
    from {
        filter: blur(5px);

    }
    100% {
        filter: blur(0px);
    }
}
.fromBlur {
    animation: fromBlur .5s forwards ease-out;
}

@keyframes scrollerJump {
    from {
        bottom: 20px;
    }
    25% {
       bottom: 35px;
    }    
    50% {
        bottom: 20px;
    } 
    75% {
        bottom: 35px;
    }   
    100% {
        bottom: 20px;
    }
}
.scrollerJump {
    animation: scrollerJump .6s forwards ;
}


.y10__scroller {
    position: fixed !important;
    bottom:20px;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    cursor: pointer;
}

.y10__scroller-img {display: inline-block;  vertical-align: middle;}
.y10__scroller-text {display: inline-block; vertical-align: middle;
color: #969799; font-size: 26px; padding-left: 15px;}


.opaque-animated {
    animation: renderIn forwards .3s;
}

.loading {
    position: fixed;
    font-size: 60px;
    color: white; 
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
}
.onTopOfEachOther span {
    position: absolute;
    top: 0px;
    left: -70px;
}

.fast_menu, .nav_top, #footer {
    display:none;
}
#fp-nav ul li a span, .fp-slidesNav ul li a span {
    height: 14px;
    width: 14px;
    border: 0;
    background: #d2d5d9;
    left: 50%;
    top: 50%;
    margin: -7px 0 0 -7px;
}
#fp-nav ul li, .fp-slidesNav ul li {
    margin: 14px;
}
#fp-nav ul li:hover .fp-tooltip {
    opacity: 0;
}
#fp-nav ul li a.active span, #fp-nav ul li:hover a.active span, .fp-slidesNav ul li a.active span, .fp-slidesNav ul li:hover a.active span {
    height: 17px;
    width: 17px;
    margin: -8px 0 0 -8px;
    border-radius: 100%;
    border: 2px solid #73bd4c;
    background-color: white;
}
#fp-nav ul li:hover .fp-tooltip, #fp-nav.fp-show-active a.active+.fp-tooltip {
    color: black;
    top: -9px;
    font-size: 20;
    padding-right: 6px;
}
#navigation {        
    position: fixed;
    width: 100%;
    z-index: 9;
}
.main {
    background-color: #f0f2f5;
}
.perks-holder {
    position: relative;
    height: 480px;        
}

.circle {
    border-radius: 100%;
    position: absolute;
    transition: transform 0.3s ease-out;
    color: white;
    text-align: center;
}
.circle__digit {
    font-size: 60px;
    line-height: 1;
    padding-top: 50px;
}    
.circle__caption {
    font-size: 21px;
    line-height: 1;
}    
.circle__text {
    padding-top: 10px;
    font-size: 20px;
    line-height: 1;
    max-width: 75%;
    margin: auto;
}
.circle__deco-rb {
    display: none;
    position: absolute;
    right: -14px;
    bottom: -22px;
}    
.circle__deco-l {
    display: none;
    position: absolute;
    left:-60px;
    top: 50px;
}    
.circle__deco-rt {
    display: none;
    position: absolute;
    right: -14px;
    top: -22px;
}    
.circle__deco-t {
    display: none;
    position: absolute;
    right: 34%;
    top: -60px;
}
.circle-scale1:hover {
    transform: scale(1.2);
}    
.circle-scale2:hover {
    transform: scale(1.04);
}
.circle-green {
    background-color: #73bd4c;
    z-index: -1;
}
#circle1 {
    width: 105px;
    height: 105px;
    top: 100px;
    left: 180px;
}    
#circle2 {
    width: 300px;
    height: 300px;
    top: 250px;
    left: -50px;
}    
#circle3 {
    width: 150px;
    height: 150px;
    top: -30px;
    right: -60px;
}    
#circle4 {
    width: 80px;
    height: 80px;
    top: 200px;
    right: 100px;
}    
#circle5 {
    width: 80px;
    height: 80px;
    top: 560px;
    right: -30px;
}    
#circle6 {
    width: 25px;
    height: 25px;
    top: 200px;
    left: 120px;
}    
#circle7 {
    width: 25px;
    height: 25px;
    top: 550px;
    left: 170px;
}    
#circle8 {
    width: 15px;
    height: 15px;
    top: 565px;
    left: 120px;
}    
#circle9 {
    width: 25px;
    height: 25px;
    top: 500px;
    right: 200px;
}    
#circle10 {
    width: 40px;
    height: 40px;
    top: 400px;
    left: 700px;
}    
#circle11 {
    top: 90px;
    right: 200px;
    height: 50px;
    width: 50px;
}    
#circle12 {
    top: 290px;
    right: 330px;
    height: 20px;
    width: 20px;
}  
#circle2-1 {
    width: 30px;
    height: 30px;
    top: 530px;
    left: 50px;
}    
#circle2-2 {
    width: 50px;
    height: 50px;
    top: 150px;
    left: 50px;
}    
#circle2-3 {
    width: 20px;
    height: 20px;
    top: 200px;
    right: 200px;
}    
#circle2-4 {
    width: 50px;
    height: 50px;
    top: 200px;
    right: 50px;
}    
#circle2-5 {
    width: 30px;
    height: 30px;
    top: 360px;
    right: 150px;
}    
#circle2-6 {
    width: 25px;
    height: 25px;
    top: 200px;
    left: 220px;
}    
#circle2-7 {
    width: 25px;
    height: 25px;
    top: 350px;
    left: 250px;
}    
#circle2-8 {
    width: 15px;
    height: 15px;
    top: 265px;
    left: 100px;
}    
#circle2-9 {
    width: 25px;
    height: 25px;
    top: 500px;
    right: 100px;
}    
#circle2-10 {
    width: 40px;
    height: 40px;
    top: 400px;
    left: 100px;
}    
#circle2-11 {
    top: 90px;
    right: 200px;
    height: 50px;
    width: 50px;
}    
#circle2-12 {
    top: 290px;
    right: 330px;
    height: 20px;
    width: 20px;
} 
#circle3-13 {

    top: 500px;
    right: 800px;
    height: 33px;
    width: 33px;
}   
#circle3-14 {
    top: 290px;
    left: 350px;
    height: 80px;
    width: 80px;
}    
#circle3-15 {
    top: 190px;
    right: 230px;
    height: 40px;
    width: 40px;
}    
#circle3-16 {
    top: 390px;
    right: 430px;
    height: 60px;
    width: 60px;
}    
#circle3-17 {
    top: 490px;
    left: 370px;
    height: 40px;
    width: 40px;
}   
#circle3-18 {
    top: 290px;
    right: 530px;
    height: 40px;
    width: 40px;
} 
#circle3-19 {
    top: 390px;
    left: 630px;
    height: 50px;
    width: 50px;
}
#circle3-20 {
    top: 490px;
    right: 650px;
    height: 40px;
    width: 40px;
}    
#circle4-1 {
    top: 50px;
    left: 0%;
    height: 255px;
    width: 255px;
}    
#circle4-2 {
    top: 170px;
    height: 265px;
    width: 265px;
}    
#circle4-3 {
    top: 50px;
    right: 0%;
    height: 275px;
    width: 275px;
}    
#circle5-1 {
    top: 150px;
    left: 0%;
    height: 240px;
    width: 240px;
}    
#circle5-2 {
    top: 50px;
    height: 265px;
    width: 265px;
}    
#circle5-3 {
    top: 245px;
    right: 0%;
    height: 265px;
    width: 265px;
    z-index: 0;
}    
#circle5-4 {
    top: 60px;
    right: 5%;
    height: 245px;
    width: 245px;
}

.y10__girl {
max-height: 90%;
    position: absolute;
    bottom: 0;
    left: 16%;
    z-index:1;
}
.y10__circle {
    position: absolute;
    top: 160px;
    left: 70%;
    z-index: 1;
    max-width: 15%;
}
.y10__logo-big {
    position: absolute;
    bottom: 10%;
    right: 20%;
    z-index: 1;
    max-width: 27%;
}
.y10__we {
    padding-top: 50px;
}
.y10__we-header {
    text-align: center;
    padding-top: 120px;
    font-size: 48px;
}
.y10__we-text {
    text-align: center;
    padding-top: 25px;
    font-size: 30px;
    max-width: 780px;
    margin: auto;
}
.y10__we-stats {
    padding: 40px 0;
    width: 70%;
    max-width: 1600px;
    margin: auto;
    display: flex;
    justify-content: center;
}    
.y10__stat {
    font-size: 18px;
    padding: 0 30px;
}
.y10__stat-digit {
    font-size: 60px;
    color: #73bd4c;
    line-height: 1;
    white-space: nowrap;
}
.y10__life-header {
    text-align: center;
    font-size: 48px;
    margin-bottom: 30px;
    z-index: 20;
}

.carousel {
    max-width: 80%;
    max-height: 80%;    
    margin: auto;
}
.carousel__text {
    font-size: 18px;
}
.carousel__img img {
    margin: 0 auto;
}

.slick-slide {
    opacity: .6;
    transform: scale(.8);
    transition: all .5s;
      -webkit-user-select: none;  /* Chrome all / Safari all */
  -moz-user-select: none;     /* Firefox all */
  -ms-user-select: none;      /* IE 10+ */
  user-select: none;          /* Likely future */   
}
.slick-center {
    opacity: 1;
    transform: scale(1);
}
.carousel-item {
    -webkit-user-select: none;  /* Chrome all / Safari all */
  -moz-user-select: none;     /* Firefox all */
  -ms-user-select: none;      /* IE 10+ */
  user-select: none;          /* Likely future */   
}

.yellow-plaq {
    border: solid 6px #f4c643;
    padding: 30px 30px;
    margin: 0 130px;
    padding-right: 9px;
}
.yellow-plaq .circle__digit {
    padding-top: 0px;
}
.yellow-plaq__img {
    position:absolute;
    top: -107px;
    right: 18px;
} 
.yellow-plaq__left {
    position: relative;
    width: 32%;
    display: inline-block;
    vertical-align: top;
}    
.yellow-plaq__right {
    font-size: 18px;
    width: 66%;
    display: inline-block;
    vertical-align: top;
    line-height: 1.12;
}

.map__wrapper {
    transform: scale(1.1);
    position: relative;
    max-width: 1112px;
    margin: auto;
}
.map__text {
    display: none;
    font-size: 40px;
    font-weight: 600;
    font-family: "pf_beausans_prothin", Arial;
    margin-top: -110px;
    white-space: nowrap;
    text-align: center;
    line-height: 1.1;
}
.map__text-small {
    font-size: 25px;
    color: #969799;
    margin-top: 15px;
}
.map__pin {
    position: absolute;
    height:60px;
    white-space: nowrap;
}        
.map__pin-big {
    vertical-align: bottom;
    display: none;        
}       
.map__pin-generic {
    margin-top: 23px;
    margin-left: 15px;
    vertical-align: bottom;        
}       
.map__pin-ghost {
    margin-top: 23px;
    margin-left: 15px;
    vertical-align: bottom;
    display: none;
}    
.map__pin-text {
    display: none;        
    font-size: 23px;
    font-weight: bold;        
    padding-left: 10px;
    vertical-align: top;
    line-height: 1.8;
}
.years {
position: absolute;
    width: 101%;
    bottom: 60px;
    left: -2%;
}
.years__year img {
    cursor: pointer;
    height: 80px;
}    
.years__year.blocked {
    opacity: 0.4;
}
#y-next {
    cursor: pointer;
        margin-top: 20px;
    display: block;
    z-index:1;
}
.pause {
    display: none;
}

.running > .pause {
    display: block;
}
.running > .play {
    display: none;
}

.map-next {
    display:none;
    left: 29%;
}
.map-next.blocked {
    opacity: 0.4;
}

.awards {
    margin-top: 15px;
    height: 80px;
}

.award {        
    margin-right: 33px;
    display: none;
}
.award.active {
    display: inline-block;
}

.y10__photo-wrapper {
    max-width: 1200px;
    height: 62%;
    margin: auto;
    position: relative;
    z-index:10;
}
.awards.awards-small {
    display: none;
}
.yellow-plaq__img.star {
    top: -30px;    right: 25px;
    height: 170px;
}
.yellow-plaq__right .circle__digit {
    display: none;
}

.history-nav__item {
width: 11px !important;
    height: 2px !important;
    background-color: #d2d5d9;
    margin: 6px 16px !important;
    transition: all .3s;
}
.history-nav__item.active {
    background-color: #73bd4c;
    width: 18px!important;
    height: 2px!important;
    margin: 6px 13px!important;
}

.map__text-info {
    position: absolute;
    font-size: 15px;
    text-align: left;
    line-height: 1.2;
    color: white;
    font-weight: normal;
}

#text-info-1 {
    bottom: 50px;
    left: 175px;
}

#text-info-2 {
    left: 160px;
    bottom: 45px;
    color: black;
}

#text-info-3 {
    color: black;
    bottom: 60px;
    left: 164px;
}
#text-info-4 {
    color: black;
bottom: 54px;
    left: 151px;
}
#text-info-5 {
    color: black;
    bottom: 54px;
    left: 151px;
}
#text-info-6 {
    color: black;
    bottom: 50px;
    left: 214px;
}
#text-info-7 {
    color: black;
bottom: 48px;
    left: 172px;
}
#fullpage div.fp-slidesNav.bottom {
    display: none;  
}

.y10__photo-img {
        border: 5px solid white;
    opacity:0;
    overflow: hidden;
    position: absolute;
    border-radius: 100%;
    transition: all .5s
}
.y10__photo-img img {
    height:120%;
}

.y10__photo-img:hover {
    z-index: 20 !important;    
}

.fp-controlArrow.fp-next { 
    right: 15%;
    top: initial;
    bottom: 150px;
    border: none;
}

.fp-controlArrow.fp-prev { 
    left: 15%;
    top: initial;
    bottom: 150px;
    border: none;
}

.final__baloon {
max-height: 80%;
    top: 161px;
    width: 370px;
    text-align: center;
    z-index: 20;
}

.final__baloon img {

}

.final__vkurse {
color: white;
    top: 46px;
    font-size: 45px;
    line-height: 1.1;
    margin-left: 4px;
}

.y10__logo-big-2 {
        float: right;
    max-width: 350px;
    vertical-align: middle;
    margin-top: 30px;
}

#fp-nav li:last-of-type {

}

.end-logo {
        top: 250px;
}

.slick-slide {
    outline: none
}

.carousel__item {
    padding: 0 10px;
}

.carousel__text {
    text-align: center;
        font-size: 27px;
}

.carousel-anim-1, .carousel-anim-2, .carousel-anim-3 {
    opacity: 0;
    animation-duration: .7s;
}

    .fp-table:nth-of-type(3) {
            overflow: hidden;
    }

.circle.face {
    overflow: hidden;
}
.circle.face img {
    height: 120%;
}

#circle-face-1 {
    width: 50px;
    height: 50px;
    top: 280px;
    left: 300px;
}
#circle-face-2 {
    height: 70px;
    width: 70px;
    left: 130px;
    top: 300px;
}
#circle-face-3 {
height: 60px;
    width: 60px;
    right: 200px;
    top: 280px;
}
#circle-face-4 {
height: 60px;
    width: 60px;
    right: 340px;
    top: 130px;
}
#circle-face-5 {
height: 40px;
    width: 40px;
    left: 350px;
    top: 150px;
}
#circle-face-6 {
    height: 40px;
    width: 40px;
    right: 350px;
    top: 360px;
}

@media screen and (max-device-width: 1300px) {
    .y10__circle {
        left: 74%;
    top: 307px;
    }
        .map__wrapper {
        transform: scale(1)
    }

}
@media screen and (max-device-width: 1000px) {
        .circles {
        top: 140px;
    position: absolute;
    width: 100%;
    }
    .y10__circle {
        left: 75%;
        top:400px;
    }
    .y10__girl {
        left: 3%;
    }

}

.fp-controlArrow img{
min-height: 90px;   
}

@media screen and (max-device-width: 720px) {
    #fp-nav {
        display: none;
    }
    .yellow-plaq__right .circle__digit {
        display: block;
    }
    .carousel {
        transform: scale(2);
    }
    .circle-green {
        margin-top: 150px;
    }
    #circle1 {
        opacity: 0;
    }
    .y10__logo-big {
        max-width: 65%;
        width: 65%;
        left: 6%;
        top: 180px;
    }
    .y10__circle {
        max-width: 30%;
        bottom: 5%;
        right: 5%;
        left: auto;
        top: auto; 
        z-index: 0;
    }
    .y10__girl {
        height: 60%;
        position: absolute;
        left: 2%;
        z-index: 1;
        bottom: 0;
    }
    .y10__we-header {
        font-size: 67px;
    }    
    .y10__we-text {
        font-size: 45px;
    }
    .y10__we-stats {
        flex-wrap: wrap;
        width: 70%;            
    }
    .y10__stat {
        margin-bottom: 30px;        
    }    
    .y10__stat span {
        font-size: 28px;       
    }
    .y10__stat-digit {
        font-size: 73px;
    }    




    .map__wrapper {
        transform: scale(1.5);
        right: -30%;
    }
    .map__text {
        left: 30%;
        top: 48%;
    }
    #y-next {
        left: 30%;
    }
    .years {
        display:none;
    }
    .map-next {
        display: block;
    }
    .awards.awards-big {
        display: none;  
    }        
    .awards.awards-small {
        display: block;
        position: absolute;
        top: 170px;
        left: 100px;  
    }
    .yellow-plaq__right {
        font-size: 35px;

    }
    .yellow-plaq__left {
        vertical-align: bottom;
        margin-bottom: 137px;

        transform: scale(1.5);
    }        
    .yellow-plaq__left .circle__digit {
        display: none;
    }        
    .yellow-plaq__left .circle__caption {
        display: none;
    }
    .yellow-plaq__img {
        right: 70px;
    }        
    .yellow-plaq__img.star {
        top: -121px !important;
        right: 85px;
        height: 200px;
    }
    #circle4-2 {
        display: none;
    }
    #circle4-1 {
        height: 400px;
        width: 400px;
        left: 18%;
    }
    #circle4-3 {
        top: 50px;
        right: 16%;
        height: 485px;
        width: 485px;
    }
    .circle__text {
        padding-top: 20px;
        font-size: 40px;
    }
    .circle__digit {
        font-size: 83px;
    }
    .circle__caption {
        font-size: 35px;
    }
    .perks-holder {
        position: relative;
        height: 600px;
    }
    .circle__deco-rt {
        position: absolute;
        right: 15px;
        top: -16px;
    }
    .circle__deco-l {
        position: absolute;
        left: -33px;
        top: 50px;
    }
    #circle5-2, #circle5-3 {
        display: none;
    }
    #circle5-1 {
        top: 10px;
        left: 70%;
        height: 400px;
        width: 400px;
    }
    #circle5-4 {
        top: 110px;
        right: 75%;
        height: 410px;
        width: 410px;
    }
    .final__baloon {
            transform: scale(1.5) translate(-35%, 25%);
    }
    .perks-holder .circle-green {
        margin: 0;
    }
    .y10__photo-img {
        margin-top: 100px;
    }
}

@media screen and (max-device-width: 1200px) {
    .nav_bottom__menu {
        display: none;
    }
    .y10__logo-big {
        right: 15%;
    }


    .fp-controlArrow.fp-next { 
    right: 10%;
    top: initial;
    bottom: 120px;
    border: none;
}

.fp-controlArrow.fp-prev { 
    left: 10%;
    top: initial;
    bottom: 120px;
    border: none;
}
    .center-photo-1 {
        margin-top: -75px;
    }    
    .center-photo-2 {
        margin-top: -70px;
        margin-left: -30px;
    }
    .final__baloon {
        top: 350px;
    }
    .final__wrapper {
        padding: 55% 6% 0 6% !important;
    }
}

@media screen and (min-device-width: 1200px) {
    .y10__girl {
        height: 90%;
    }
    .circles {
            width: 96%;
        position: absolute;
        top: 60px;
        left: 2%;
    }
}


@media screen and (min-device-width: 1700px) {
    .y10__girl {
        height: 90%;
    }
    .y10__circle {
        left: 65%;
    }
        .final__baloon{
        top: 340px;
    }
    .final__shar{
        transform: scale(1.5);
    }    
    .final__baloon img:last-of-type {
        transform: scale(1.3);
margin-left: -33%;
    top: -17px;
    }
}

@media screen and (min-device-width: 2000px) {
    .y10__circle {
        left: 65%;
    }
    .map__wrapper {
        transform: scale(1.4)
    }
    .y10__photo-wrapper {
        transform: scale(1.3);
        margin-top: 160px;
    }
    .fp-controlArrow {
        transform: scale(1.2);
    }
    .center-photo-1 {
        margin-top: -75px;
    }    
    .center-photo-2 {
        margin-top: -70px;
        margin-left: -30px;
    }

}

@media screen and (min-device-width: 2400px) {
    .map__wrapper {
        transform: scale(1.2)
    }

}

@media screen and (max-device-height: 900px) and (min-device-width: 768px) {
    .carousel {
        transform: scale(.8)
    }    
    .map__wrapper {
        transform: scale(.85)
    }

}