
@font-face {
    font-family: "Futura-Bold";
    src: url("fonts/futura-pt-bold.ttf") format("truetype");
}
@font-face {
    font-family: "Futura-Book";
    src: url("fonts/futura-pt-book.ttf") format("truetype");
}
@font-face {
    font-family: "Futura-Demi";
    src: url("fonts/futura-pt-demi.ttf") format("truetype");
}
@font-face {
    font-family: "Futura-Heavy";
    src: url("fonts/futura-pt-heavy.ttf") format("truetype");
}
@font-face {
    font-family: "Futura-Medium";
    src: url("fonts/futura-pt-medium.ttf") format("truetype");
}
@font-face {
    font-family: "Futura-Light";
    src: url("fonts/futura-pt-light.ttf") format("truetype");
}
:root{
    --FBold: "Futura-Bold";
    --FBook: "Futura-Book";
    --FDemi: "Futura-Demi";
    --FHeavy: "Futura-Heavy";
    --FMedium: "Futura-Medium";
    --FLight: "Futura-Light";
    --orange: #FFB673;
    --orangeLight: #ffe9d6;
    --grey: #383838;
    --greyLight: #7e7e7e;
    --bgGrey: #e7e7e7;
    --orangeDark: #CA772A;
    --orangeDark2: #ca772a8c;
    --radiusBlock: 18px;
    --radiusBigBlock: 24px;
}
html, body{
    scroll-behavior: smooth;
}
*{
    margin: 0px;
    padding: 0px;
}
header{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    top: 0;
    left: 0;
    opacity: 0;
    padding: 10px 15px;
    width: calc(100% - 30px);
    z-index: 100;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.8);
}
#dark_bg{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.418);
    z-index: 300;
    opacity: 0;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    pointer-events: none;
}
#image_{
    border-radius: var(--radiusBigBlock);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    overflow: hidden;
    opacity: 0;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    pointer-events: none;
    background-color: white;
    z-index: 300;
    height: 90%;
}
#image_ img{
    height: 100%;
    aspect-ratio: auto;
}
#dark_bg.shown, #image_.shown{
    opacity: 1;
    pointer-events: all;
}
a{
    text-decoration: none;
}
.human-profile{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}
.human-photo{
    border-radius: 10px;
    background-image: url('img/4.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: 10px;
    width: 40px;
    height: 40px;
}
h4{
    font-family: var(--FMedium);
    color: var(--grey);
    font-size: 18px;
    font-weight: normal;
}

#top{
    width: 100%;
    text-align: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, rgba(2,0,36,0)), to(rgba(255, 255, 255, 1))), url('img/4.webp');
    background-image: -o-linear-gradient(top, rgba(2,0,36,0) 20%, rgba(255, 255, 255, 1) 100%), url('img/4.webp');
    background-image: linear-gradient(180deg, rgba(2,0,36,0) 20%, rgba(255, 255, 255, 1) 100%), url('img/4.webp');
    height: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.top-name{
    font-family: var(--FBook);
    font-size: 24px;
    color: var(--orangeDark);
}
.top-surname{
    font-family: var(--FDemi);
    font-size: 50px;
    font-weight: normal;
    color: var(--grey);
    margin-top: -10px;
}
.top-desc{
    font-family: var(--FMedium);
    font-size: 18px;
    color: var(--grey);
    text-align: center;
    width: calc(70% - 340px);
    margin: 10px auto;
    padding: 20px 160px;
    border-radius: var(--radiusBlock);
    background-color: var(--orangeLight);
    max-width: 840px;
}
.top-desc span{
    color: var(--orangeDark);
}
.tabs{
    width: calc(100% - 60px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px 30px;
    top: 60px;
    background-color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid var(--bgGrey);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    position: sticky;
    z-index: 100;
}

.tabs::-webkit-scrollbar, .diplomas-wrapper::-webkit-scrollbar {
    height: 10px;
  }
  
  .tabs::-webkit-scrollbar-track, .diplomas-wrapper::-webkit-scrollbar-track {
    background: #fff2e3;
    
  }
  
  .tabs::-webkit-scrollbar-thumb, .diplomas-wrapper::-webkit-scrollbar-thumb{
    background: var(--orange);
    border-radius: 4px;
  }
.tab{
    width: 250px;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    padding: 15px 20px;
    border-radius: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-weight: 100;
    font-family: var(--FMedium);
    text-transform: uppercase;
    color: var(--orangeDark2);
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    cursor: pointer;
}
.tab.checked, .tab:hover{
    background-color: var(--orange);
    color: white;
}
.views{
    position: relative;
    width: 85%;
    max-width: 1000px;
    overflow-y: hidden;
    margin: 0px auto;
    margin-top: -116px;
    padding-top: 143px;
}
#about_tab, #arrangements_tab, #kinesiology_tab, #game_tab{
    width: 100%;
    left: 0;
    opacity: 0;
    top: 143px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    pointer-events: none;
    position: absolute;
}

#about_tab.shown, #arrangements_tab.shown, #kinesiology_tab.shown, #game_tab.shown{
    opacity: 1;
    pointer-events: all;
    top: auto;
    left: auto;
    position: relative;
}
#about_tab > div:first-of-type p{
    margin: 0px;
    line-height: normal;
}
#about_tab > div:first-of-type h2{
    margin: 0px;
    padding-top: 0px !important;
}
#about_tab > div:first-of-type > div:first-of-type{
    width: 40%;
}
#about_tab > div:first-of-type > div:nth-of-type(2){
    width: 60%;
}
.flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}
.flex-center{
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.space-between{
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.flex-end{
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}
.center{
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.natalia-bg{
    border-radius: var(--radiusBigBlock);
    background-color: var(--orangeLight);
    height: 300px;
    width: 350px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 60px;
}
.natalia-bg img{
    height: 130%;
}
p.label{
    font-family: var(--FLight);
    color: var(--greyLight);
    font-size: 20px;
    margin: 0px;
    font-weight: normal;
}
h2{
    font-weight: normal;
    color: var(--grey);
    font-size: 30px;
    font-family: var(--FMedium);
    margin: 80px 0px 10px;
    margin-top: -50px;
    padding-top: 70px;
}
h3{
    font-weight: normal;
    color: var(--grey);
    font-size: 25px;
    font-family: var(--FMedium);
    margin: 80px 0px 10px;
    margin-top: -50px;
    padding-top: 70px;
}
.item{
    padding: 7px 15px;
    border-radius: 30px;
    font-family: var(--FMedium);
    margin: 10px 0px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.item-desc{
    padding: 5px 30px;
    text-align: justify;
    font-family: var(--FLight);
    color: var(--grey);
    font-size: 18px;
    font-weight: normal;
}
#about_tab .item:first-of-type{
    background-color: #ffe9d6;
    color: var(--orangeDark);
}
#about_tab .item:nth-of-type(2){
    background-color: #ffaa0023;
    color: var(--orangeDark);
}
#about_tab .item:nth-of-type(3){
    background-color: var(--bgGrey);
    color: var(--grey);
}
#about_tab .item:nth-of-type(4){
    background-color: #ffe7d0;
    color: var(--orangeDark);
}
p{
    font-family: var(--FLight);
    color: var(--grey);
    font-size: 20px;
    margin: 25px 0px;
    text-align: justify;
    font-weight: normal;
    line-height: 40px;
}
p span{
    color: var(--orangeDark);
    font-weight: normal;
    font-family: var(--FMedium);
}
.p-left{
    text-align: left;
}
.p-center{
    text-align: center;
}
.p-right{
    text-align: right;
}
p b{
    font-family: var(--FMedium);
    font-weight: normal;
}
.prompt{
    padding: 20px 25px;
    border-radius: var(--radiusBigBlock);
    border: 2px solid var(--orangeLight);
    text-align: center;
    font-family: var(--FMedium);
    color: var(--grey);
    font-size: 20px;
    margin: 40px auto;
    width: calc(80% - 50px);
}
.prompt span{
    color: var(--orangeDark);
}
.metrics{
    width: 60%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.metric{
    margin: 20px 50px 10px 0px;
    width: 40%;
}
.metric p{
    margin: 0px;
    color: var(--orangeDark);
    text-align: center;
    font-weight: normal;
    opacity: .7;
    line-height: 25px;
}
.metric .value{
    font-size: 40px;
    font-family: var(--FMedium);
    text-align: center;
    color: var(--orangeDark);
}
.result{
    padding: 20px 25px;
    width: calc(100% - 50px);
    border-radius: var(--radiusBigBlock);
    height: 100px;
    text-align: center;
    font-size: 20px;
    font-family: var(--FMedium);
    color: var(--grey);
    margin: 20px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.results > .result:first-of-type{
    background-color: #ffc08531;
}
.results > .result:nth-of-type(2){
    background-color: #ffc08562;
}
.results > .result:nth-of-type(3){
    background-color: #ff953193;
}
.results > .result:nth-of-type(4){
    background-color: #be7c3f96;
}
.results > .result:nth-of-type(5){
    background-color: #38383844;
}
.diplomas{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  border-radius: var(--bigBlockRadius);
    padding: 15px 0px;
    width: 100%;
    position: relative;
}
.diploma{
    scroll-snap-align: center;
    margin-right: 20px;
    cursor: pointer;
    border-radius: var(--bigBlockRadius);
    border-radius: var(--radiusBlock);
    height: 200px;
    border: 2px solid var(--orangeDark2);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        -webkit-transition: .2s;
        -o-transition: .2s;
        transition: .2s;
            flex: 0 0 auto; 
            background-position: center;
            background-repeat: no-repeat;
            overflow: hidden;
            background-size: cover;
            position: relative;
}
.diploma.w100{
    width: 100px;
}
.diploma.w200{
    width: 200px;
}
.diploma.w300{
    width: 300px;
}
.diploma.w150{
    width: 150px;
}
.diplomas-wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: scroll;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
}
.diploma img{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.reviews{
    margin: 40px auto;
    padding: 25px;
    width: calc(100% - 50px);
    background-color: var(--orangeLight);
    border-radius: var(--radiusBigBlock);
}
.review:hover, .diploma:hover{
    opacity: .7;
}
.reviews h2{
    margin-top: 0px;
    padding-top: 0px !important;
}
.review{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: white;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 230px;
    cursor: pointer;
    border-radius: var(--radiusBlock);
    border: 2px solid var(--orangeDark2);
    overflow: hidden;
    position: relative;
}
.video{
    overflow: hidden;
    height: 340px;
    cursor: pointer;
    background-color: white;
    border-radius: var(--radiusBlock);
    border: 2px solid var(--orangeDark2);
}
.main-video{
    overflow: hidden;
    height: 100%;
    width: 100%;
    cursor: pointer;
    background-color: white;
    border-radius: var(--radiusBlock);
    border: 2px solid var(--orangeDark2);
}
.review img{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.reviews-inner, #videos, #videos_game{
    display: -ms-grid;
    display: grid;
        -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
        grid-template-columns: repeat(3, 1fr);
        grid-column-gap: 30px;
        grid-row-gap: 30px;
}
#videos, #videos_game{
    margin-bottom: 30px;
}
#videos .video, #videos_game .video, #main_video .main-video{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.question{
    border-radius: var(--radiusBigBlock);
    background-color: var(--orangeLight);
    padding: 20px 25px;
    width: calc(100% - 50px);
    cursor: pointer;
    margin: 20px 0px;
}
.question-text{
    font-size: 25px;
    color: var(--orangeDark);
    font-family: var(--FMedium);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
}
.question-text img{
    width: 25px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    -webkit-filter: brightness(0) saturate(100%) invert(27%) sepia(75%) saturate(433%) hue-rotate(348deg) brightness(92%) contrast(91%);
            filter: brightness(0) saturate(100%) invert(27%) sepia(75%) saturate(433%) hue-rotate(348deg) brightness(92%) contrast(91%);
}
.question-text img.rotate{
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}
.answer{
    max-height: 0px;
    overflow: hidden;
    -webkit-transition: .7s ease-in-out;
    -o-transition: .7s ease-in-out;
    transition: .7s ease-in-out;
}
.answer.shown{
    max-height: 1000px;
}
#arrangements_tab .top-tab{
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.411)), to(rgba(255, 183, 115, 0.397))), url('img/6_4_11zon.webp');
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.411) 0%, rgba(255, 183, 115, 0.397) 100%), url('img/6_4_11zon.webp');
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.411) 0%, rgba(255, 183, 115, 0.397) 100%), url('img/6_4_11zon.webp');
}
.top-tab{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: var(--radiusBigBlock);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px 40px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.top-tab h2, .top-tab p{
    color: white;
}
.top-tab p{
    width: 60%;
    font-size: 19px;
    font-weight: normal;
    text-align: right;
}
.main-span{
    font-size: 25px;
    font-family: var(--FMedium);
    color: var(--orangeDark);
    font-weight: normal;
}
.portrait, .portrait-2, .portrait-3, .portrait-4{
    width: 300px;
    height: 200px;
    background-image: url('img/6_4_11zon.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: var(--radiusBigBlock);
    margin-right: 20px;
}
.portrait-2{
    background-image: url('img/3_2_11zon.webp');
    margin-right: 0px;
    margin-left: 20px;
    height: 300px;
}
.portrait-3{
    background-image: url('img/9_5_11zon.webp');
    height: 300px;
}
.portrait-4{
    background-image: url('img/2_1_11zon.webp');
    height: 300px;
}
.p-image{
    width: calc(100% - 320px);
}
.p-image span{
    color: var(--orangeDark);
}
ul{
    width: 80%;
    margin: 20px auto;
}
li{
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-family: var(--FLight);
    color: var(--grey);
    font-size: 20px;
    margin: 40px 0px;
}
li p{
    margin: 0px;
}
li b{
    font-family: var(--FMedium);
    margin-right: 10px;
}
#arrangements_tab li img{
    width: 50px;
    -webkit-filter: brightness(0) saturate(100%) invert(73%) sepia(20%) saturate(935%) hue-rotate(343deg) brightness(101%) contrast(102%);
            filter: brightness(0) saturate(100%) invert(73%) sepia(20%) saturate(935%) hue-rotate(343deg) brightness(101%) contrast(102%);
    margin-right: 20px;
}
.solution{
    position: relative;
    background-color: var(--orangeLight);
    border-radius: var(--radiusBigBlock);
    padding: 20px 25px;
    width: calc(100% - 50px);
    text-align: center;
}
.solution p{
    text-align: center;
    color: var(--orangeDark);
}
.solution p b{
    font-family: var(--FMedium);
}
.solution .smile{
    position: absolute;
    width: 70px;
    background-color: white;
    border-radius: 50%;
    height: 65px;
}
.smile img{
    width: 70px;
    -webkit-filter: brightness(0) saturate(100%) invert(75%) sepia(33%) saturate(328%) hue-rotate(347deg) brightness(92%) contrast(84%);
            filter: brightness(0) saturate(100%) invert(75%) sepia(33%) saturate(328%) hue-rotate(347deg) brightness(92%) contrast(84%);
}
.solution .smile:first-of-type{
    top: 0px;
    left: 0px;
}
.solution .smile:last-of-type{
    bottom: 0px;
    right: 0px;
}
#kinesiology_tab .top-tab{
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.411)), to(rgba(255, 183, 115, 0.397))), url('img/5_3_11zon.webp');
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.411) 0%, rgba(255, 183, 115, 0.397) 100%), url('img/5_3_11zon.webp');
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.411) 0%, rgba(255, 183, 115, 0.397) 100%), url('img/5_3_11zon.webp');
}
.indication img{
    height: 50px;
    margin: 20px auto;
    -webkit-filter: brightness(0) saturate(100%) invert(68%) sepia(33%) saturate(577%) hue-rotate(344deg) brightness(105%) contrast(101%);
            filter: brightness(0) saturate(100%) invert(68%) sepia(33%) saturate(577%) hue-rotate(344deg) brightness(105%) contrast(101%);
}
.indication{
    width: 45%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 20px 0px;
}
.indication h3{
    color: #724821;
    font-size: 20px;
    text-align: center;
    margin: 0px auto;
    padding: 0px;
    padding-top: 0px;
}
.more-bg{
    width: 40%;
}
.indication p{
    margin: 0px auto;
    text-align: center;
}
#game_tab .top-tab{
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.411)), to(rgba(255, 183, 115, 0.397))), url('img/10_10_11zon.webp');
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.411) 0%, rgba(255, 183, 115, 0.397) 100%), url('img/10_10_11zon.webp');
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.411) 0%, rgba(255, 183, 115, 0.397) 100%), url('img/10_10_11zon.webp');
}
.target{
    text-align: center;
    margin: 0px 20px;
}
.target p{
    text-align: center;
    font-family: var(--FMedium);
    color: #724821;
}
.target h3{
    font-family: var(--FLight);
    font-size: 30px;
    color: var(--orangeDark);
}
.grid{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.service{
    border-radius: var(--radiusBigBlock);
    padding: 20px 25px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100px;
    background-size: cover;
}
.price{
    font-family: var(--FMedium);
    color: white;
    padding: 5px 10px;
    border-radius: 12px;
    background-color: #d69b65;
    font-size: 25px;
}
#services{
    margin-bottom: 40px;
}
#services > h3{
    margin-bottom: 20px;
}
.service h3{
    margin-top: 0px;
    padding-top: 0px;
}
.service > div{
    margin: 5px 0px;
}
footer{
    padding: 40px 0px 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 70px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: var(--orangeLight);
    border-radius: var(--radiusBigBlock) var(--radiusBigBlock) 0px 0px;
}
footer > div{
    width: auto;
    position: relative;
}
footer > div:first-of-type{
    margin-right: 70px;
    width: 40%;
}
footer hr{
    border: none;
    outline: none;
    height: 1px;
    width: 70%;
    background-color: var(--grey);
    margin: 20px 0px;
    opacity: .5;
}
footer h1{
    color: var(--grey);
    font-weight: normal;
    font-family: var(--FMedium);
}
footer p{
    color: var(--orangeDark);
    font-weight: normal;
}
footer .natalia-footer{
    width: 250px;
    height: 300px;
    border-radius: var(--radiusBigBlock);
    background-image: url('img/6.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 10px auto;
}
footer .social{
    width: 60px;
    height: 60px;
    position: absolute;
    border-radius: var(--radiusBlock);
    background-color: #ffb773bb;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    bottom: -10px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
footer .social:hover{
    background-color: #ffb773;
}
.social img{
    width: 30px;
    -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(3%) hue-rotate(193deg) brightness(104%) contrast(102%);
            filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(3%) hue-rotate(193deg) brightness(104%) contrast(102%);
}
.telegram{
    left: -20px;
}
.whatsapp{
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
}
.inst{
    right: -20px;
}
#main_video{
    position: fixed;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    -webkit-animation: 3s 0s show ease-in-out;
            animation: 3s 0s show ease-in-out;
    bottom: 20px;
    left: 20px;
    border-radius: var(--radiusBlock);
    height: 180px;
    width: 100px;
    z-index: 300;
    -webkit-box-shadow: 0px 0px 10px 10px #ffb77336;
            box-shadow: 0px 0px 10px 10px #ffb77336;
}
#main_video.opened{
    width: 200px;
    height: 360px;
}
@-webkit-keyframes show {
    0%, 79% { left: -120px; }
    100% { left: 20px; }
  }
@keyframes show {
    0%, 79% { left: -120px; }
    100% { left: 20px; }
  }

@media only screen and (max-device-width: 1200px){
    .tabs{
        overflow-x: scroll;
        margin-top: 100px;
    }
    .tabs::-webkit-scrollbar{
        height: 0px;
    }
    .tab{
        width: 200px;
        margin-right: 10px;
    }
    .tabs a:last-of-type .tab{
        margin: 0px;
    }
    #top{
        height: 350px;
    }
    .top-desc{
        padding: 20px 40px;
        width: calc(90% - 80px);
        font-size: 16px;
        margin-bottom: -100px;
    }
    .top-surname{
        font-size: 40px;
    }
    .views{
        width: calc(100% - 40px);
        padding-left: 20px;
        padding-right: 20px;
    }
    #about_tab > div:first-of-type > div:first-of-type{
        width: 50%;
    }
    #about_tab > div:first-of-type > div:nth-of-type(2){
        width: 50%;
    }
    
    .natalia-bg{
        margin: 60px auto 0px;
    }
    .metrics{
        display: block;
    }
    .metric{
        margin: 40px auto;
        width: 100%;
    }
    .metric p{
        line-height: 25px;
    }
}
@media only screen and (max-device-width: 850px){
    #about_tab > div:first-of-type{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin-top: 30px;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    #about_tab > div:first-of-type > div:first-of-type{
        width: 100%;
    }
    #about_tab > div:first-of-type > div:nth-of-type(2){
        width: 100%;
        text-align: center;
    }
    #about_tab > div:first-of-type p{
        text-align: center;
    }
    #about_tab > div:first-of-type p:first-of-type{
        margin-top: 20px;
    }
    .item{
        margin: 10px auto;
    }
    .natalia-bg{
        width: 320px;
    }
    .flex{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .p-image{
        width: 100%;
        text-align: justify;
    }
    .service .flex{
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
    .prompt{
        width: calc(90% - 50px);
    }
    .metrics, .more-bg{
        width: 100%;
    }
    .reviews-inner{
        grid-template-columns: repeat(2, 1fr);
    }
    .question-img{
        position: absolute;
        top: -5px;
        right: -10px;
    }
    .question-text img{
        width: 15px;
    }
}
@media only screen and (max-device-width: 670px){
    footer{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
                padding-bottom: 230px;
    }
    footer > div:first-of-type{
        width: 90%;
        margin-right: 0px;
    }
    footer h1{
        text-align: center;
    }
    footer hr{
        margin: 20px auto 10px;
    }
    footer p{
        text-align: center;
    }
    #services .grid, .reviews-inner, #videos, #videos_game{
        grid-template-columns: repeat(1, 1fr);
    }
    .video{
        height: 555px;
    }
    .top-tab{
        display: block;
    }
    .question-text{
        font-size: 20px;
    }
    .top-tab h2{
        text-align: center;
    }
    .top-tab p{
        width: 100%;
        text-align: center;
    }
    li{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    li p{
        text-align: center;
    }
    .smile img{
        width: 40px;
    }
    .solution .smile{
        width: 40px;
        height: 35px;
    }
    .solution{
        padding: 10px 15px;
        width: calc(100% - 30px);
    }
    ul, .indication{
        width: 100%;
    }
    #main_video.opened{
        width: 90%;
        height: 90%;
    }
    h2.p-right{
        text-align: center;
    }
}