@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600&display=swap");
@import url(https://fonts.googleapis.com/css?family=Amatic+SC:400,700);
@font-face {
    font-family: Have Heart One;
    src: url(/fonts/HaveHeartOne.ttf) format('truetype'),

        url(/fonts/HaveHeartOne.otf) format('opentype');
}


*,
*:before,
*:after {
    outline: none;
    box-sizing: border-box;
  

}

:root {
    --body-font: "Manrope", sans-serif;
    --body-color: #b3b3b3;
    --body-bg-color: #f2f2f2;
    --theme-bg-color: #fafafa;
    --border-color: #efefef;
    --logo-color: #f13a2f;
    --main-color: #808080;
    --header-bg-color: #fff;
}
html {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    font-family: var(--body-font);
    font-size: 15px;
    color: var(--body-color);
    background-color: var(--body-bg-color);
    margin: 0;
    font-weight: 600;
    
}
a {
    text-decoration: none;
}

img {
    display: block;
}
.dark-light {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--header-bg-color);
    box-shadow: -1px 3px 8px -1px rgba(0, 0, 0, 0.2);
    padding: 8px;
    border-radius: 50%;
    z-index: 3;
}

.dark-mode {
    --body-bg-color: #1e222b;
    --theme-bg-color: #212835;
    --border-color: #393f50;
    --header-bg-color: #323a4b;
    --main-color: #fefffd;
    --body-color: #dddee0;
}

.dark-light svg {
    width: 28px;
}

.dark-mode .dark-light svg {
    fill: #ffce45;
    stroke: #ffce45;
}

.dark-light svg {
    fill: transparent;
    transition: 0.5s;
}



header {
    width: 100%;
    height: 64px;
    background-color: var(--header-bg-color);
    display: flex;
    position: fixed;
    top: 0;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;

}

header,
.header-menu-inner {
    font-family: "Roboto", sans-serif;

}

.header-home {
    max-height: 64px;
    text-decoration: none;
    color: var(--body-color);
}
.title-menu {
    font-size: 48px;
    vertical-align: middle;
    color: var(--body-color);
    font-family: serif;
    margin: 6px;
}



.header-banner {
    display: flex;
    align-items: center;
    width: 100%;
    max-height: 64px;
    height: auto;
    max-width: 145px;
    /* box-shadow: 0px 3px 16px 0px rgba(0,0,0,0.2);*/
}

.header-title {
    display: flex;
    align-items: self-end;
    font-family: Have Heart One !important;
    font-size: 2rem;
    color: var(--body-color);
    letter-spacing: 2px;
    min-width: 64px;
}
.header-menu-inner {
    max-width: 1200px;
    width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    display: flex;

}




.logo-menu {
    max-width: 64px;
    width: 100%;
    height: 64px;
    margin-right: 15px;
}

.wrapper{
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.container{
    max-width: 1000px;
}
main {
    padding-top: 80px;
    display: flex;
    justify-content: center;
    max-width: 1000px;
    width: 100%;
    background-color: var(--theme-bg-color);

}
main .container{
    height: 1512px;
}
.main-content {
    max-width: 1000px;
    width: 100%;
    display: flex;
    background-color: var(--theme-bg-color);
    color: var(--main-color);
    justify-content: center;
    align-items: center;

}
section.slider-main{
    display: flex;
    max-width: 1000px;
    width: 100%;
    height: 600px;
    
}
section.slider-main .container{
    height: 600px; 
}
.slider-main-content{
max-width: 1000px;
    width: 100%;
height: 600px;

}
section.parallax-main{
    position: relative;
    max-width: 1000px;
    height: 705px;
     font-family: 'Amatic SC', cursive;
}
section.parallax-main .container{
    height: 705px;
}
.parallax-main-content{
    max-width: 1000px;
    
}
.block{
 max-width: 1000px;
  height: 100%;
  position: relative;
  overflow: hidden;
  font-size: 16px;
  
}
.block h2{
  position: relative;
  display: block;
  text-align: center;
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10vw;
  color: white;
  font-weight: 400;
}
.img-parallax {
  width: 100vmax;
  z-index: -1;
  max-width: 1300px;

  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,0);
  pointer-events: none
}

footer{
  display: flex;
   
    max-width: 1000px;
    width: 100%;
   
    
}

footer .container{
    height: 120px;
}
.footer-content{
    height: 105px;
}



.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-links a {
    text-decoration: none;
    color: var(--main-color);
}

.footer-links a+a {
    margin-left: 8px;
}

.footer-links {
    display: flex;
}

.link-footer a {
    color: var(--body-color);
    font-size: 14px;
}

.footer {
    padding: 30px 0;
}

.footer-last {
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    width: 100%;
}

.social-media {
    display: flex;
    align-items: center;
}

.social-media svg {
    width: 100%;
    max-width: 22px;
    height: 100%;
    max-height: 22px;
}

.social-media a {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--body-color);
    padding: 8px;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    margin-right: 12px;
}

.social-media i {
    display: flex;
    align-items: center;
    color: var(--body-color);
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    vertical-align: middle;
    text-align: center;
}

.policy a {
    text-decoration: none;
    color: var(--body-color);
}

@media (max-width: 1030px) {
    .profile-name {
        display: none;
    }

    .profile-menu-link {
        padding: 20px 10px;
        font-size: 14px;
    }

    .trends {
        padding: 40px 10px;
    }
}

@media (max-width: 1120px) {
    .footer-row {
        flex-direction: column;
    }

    .footer-row+.footer-row {
        margin-top: 10px;
    }

    .footer-row .button {
        display: none;
    }
}

@media (max-width: 900px) {
    .play-all {
        color: transparent;
        white-space: nowrap;
        width: 30px;
        padding: 0;
        fill: #fff;
        height: 30px;
        position: relative;
    }

    .profile-item {
        padding: 20px 10px;
    }

    .play-all svg {
        position: absolute;
        left: 58%;
        top: 50%;
        transform: translate(-50%, -50%);
        fill: #fff;
    }
}

@media (max-width: 840px) {
    .profile-contact {
        padding: 6px;
    }

    .profile-item,
    .profile-avatar {
        flex-direction: column;
    }

    .profile-item svg {
        margin-right: 0;
    }

    .profile-item {
        text-align: center;
    }

    .profile-img {
        margin-right: 0;
        margin-top: 10px;
    }

    .profile-name {
        display: block;
        margin-bottom: 10px;
        margin-top: 6px;
    }

    .profile-menu {
        flex-direction: column;
    }

    .menu-items {
        order: 1;
    }
}

@media (max-width: 980px) {
    .videos {
        grid-template-columns: 1fr 1fr;
    }

    .profile {
        min-height: 380px;
        max-height: 380px;
    }
}

@media (max-width: 800px) {
    .trends .follow-buttons {
        display: none;
    }
}

@media (max-width: 750px) {
    .left-side {
        display: none;
    }

    .header-menu {
        display: none;
    }

    .search-bar input {
        max-width: 140px;
    }

    .user-settings button {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        padding: 0;
        position: relative;
        color: transparent;
    }

    .user-settings button svg {
        margin-right: 0;
        position: absolute;
        display: block;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 440px) {
    .user-settings svg {
        display: none;
    }

    .videos {
        grid-template-columns: 1fr;
    }
}

.dark-light {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--header-bg-color);
    box-shadow: -1px 3px 8px -1px rgba(0, 0, 0, 0.2);
    padding: 8px;
    border-radius: 50%;
    z-index: 3;
}

.dark-light svg {
    width: 28px;
}

.dark-mode .dark-light svg {
    fill: #ffce45;
    stroke: #ffce45;
}

.dark-light svg {
    fill: transparent;
    transition: 0.5s;
}

@media (max-width: 475px) {
    .footer-links {
        flex-direction: column;
    }

    .footer-links a+a {
        margin-left: 0;
    }

    .footer-row:last-child {
        align-items: flex-end;
    }

    .footer-row {
        align-items: flex-start;
    }

    .footer {
        display: flex;
        justify-content: space-between;
    }

    .footer-links a {
        margin-bottom: 5px;
    }

    .policy {
        display: none;
    }

    .dark-light {
        bottom: 60px;
    }
}

@font-face {
    src: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/polar.otf");
    font-family: 'Polar';
}


/*slider-------------------------------------------------------------------------------------------------------*/
/*logo----------------------------------------------------------------------------------*/

/*logo----------------------------------------------------------------------------------*/
#vk_logo,
#insta_logo,
#wapp_logo,
#tel_logo {
    width: 35px;
    height: 35px;
    background-color: #212121;
    color: #ccc;
    text-align: center;
    margin: 5px;
    border: 1px solid transparent;
    border-radius: 10px;
    line-height: 34px;
    transition: all ease 0.5s;
    font-size: 20px;
}

#github {
    width: 30px;
    height: 30px;
    background-color: #00000000;
    color: #000000;
    text-align: center;
    margin: 5px;
    border: 1px solid transparent;
    border-radius: 10px;
    line-height: 30px;
    font-size: 30px;
}

#github:hover {
    width: 30px;
    height: 30px;
    background-color: #00000000;
    color: #ffffff;
    text-align: center;
    margin: 5px;
    border: 1px solid transparent;
    border-radius: 10px;
    line-height: 30px;
    font-size: 30px;
}


#vk_logo:hover {
    background-color: #0d4af0;
}

#insta_logo:hover {
    background: linear-gradient(#540880, #d90ae0, #e4b10a);
}

#wapp_logo:hover {
    background-color: #33f00dc0;
}

#tel_logo:hover {
    background-color: #3b5998;
}

/*----------------------------------------------------------------------*/
svg {
    display: block;
    overflow: visible;
}

.slider-container {
    position: relative;
    max-height: 590px;
    height: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: all-scroll;
    overflow: hidden;
    z-index: 999;
}

.slider-control {
    z-index: 2;
    position: absolute;
    top: 0;
    width: 3%;
    height: 100%;
    transition: opacity 0.3s;
    will-change: opacity;
    opacity: 0;
}

.slider-control.inactive:hover {
    cursor: auto;
}

.slider-control:not(.inactive):hover {
    opacity: 1;
    cursor: pointer;
}

.slider-control.left {
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0) 100%);
}

.slider-control.right {
    right: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.18) 100%);
}

.slider-pagi {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%);
    font-size: 0;
    list-style-type: none;
}

.slider-pagi__elem {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 22px;
    height: 22px;
    margin: 0 0.5rem;
    border-radius: 50%;
    border: 2px solid #fff;
    cursor: pointer;
}

.slider-pagi__elem:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.2rem;
    height: 1.2rem;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s;
    transform: translate(-50%, -50%) scale(0);
}

.slider-pagi__elem.active:before,
.slider-pagi__elem:hover:before {
    transform: translate(-50%, -50%) scale(1);
}

.slider {
    z-index: 1;
    position: relative;
    height: 100%;
}

.slider.animating {
    transition: transform 0.5s;
    will-change: transform;
}

.slider.animating .slide__bg {
    transition: transform 0.5s;
    will-change: transform;
}

.slide {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide.active .slide__overlay,
.slide.active .slide__text {
    opacity: 1;
    transform: translateX(0);
}

.slide__bg {
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background-size: cover;
    will-change: transform;
}

.slide:nth-child(1) {
    left: 0;
}

.slide:nth-child(1) .slide__bg {
    left: 0;
    background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/3d-slider-3.jpg");
}

.slide:nth-child(1) .slide__overlay-path {
    fill: #e99c7e;
}

@media (max-width: 991px) {
    .slide:nth-child(1) .slide__text {
        background-color: rgba(233, 156, 126, 0.8);
    }
}

.slide:nth-child(2) {
    left: 100%;
}

.slide:nth-child(2) .slide__bg {
    left: -50%;
    background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/3d-slider-2.jpg");
}

.slide:nth-child(2) .slide__overlay-path {
    fill: #e1ccae;
}

@media (max-width: 991px) {
    .slide:nth-child(2) .slide__text {
        background-color: rgba(225, 204, 174, 0.8);
    }
}

.slide:nth-child(3) {
    left: 200%;
}

.slide:nth-child(3) .slide__bg {
    left: -100%;
    background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/3d-slider-1.jpg");
}

.slide:nth-child(3) .slide__overlay-path {
    fill: #adc5cd;
}

@media (max-width: 991px) {
    .slide:nth-child(3) .slide__text {
        background-color: rgba(173, 197, 205, 0.8);
    }
}

.slide:nth-child(4) {
    left: 300%;
}

.slide:nth-child(4) .slide__bg {
    left: -150%;
    background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/3d-slider-4.jpg");
}

.slide:nth-child(4) .slide__overlay-path {
    fill: #cbc6c3;
}

@media (max-width: 991px) {
    .slide:nth-child(4) .slide__text {
        background-color: rgba(203, 198, 195, 0.8);
    }
}

.slide__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: min-content;
}

.slide__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    min-height: 810px;
    transition: transform 0.5s 0.5s, opacity 0.2s 0.5s;
    will-change: transform, opacity;
    transform: translate3d(-20%, 0, 0);
    opacity: 0;
}

@media (max-width: 991px) {
    .slide__overlay {
        display: none;
    }
}

.slide__overlay path {
    opacity: 0.8;
}

.slide__text {
    position: absolute;
    width: 25%;
    bottom: 15%;
    left: 12%;
    color: #fff;
    transition: transform 0.5s 0.8s, opacity 0.5s 0.8s;
    will-change: transform, opacity;
    transform: translateY(-50%);
    opacity: 0;
}

@media (max-width: 991px) {
    .slide__text {
        left: 0;
        bottom: 0;
        width: 100%;
        height: 20rem;
        text-align: center;
        transform: translateY(50%);
        transition: transform 0.5s 0.5s, opacity 0.5s 0.5s;
        padding: 0 1rem;
    }
}

.slide__text-heading {
    font-family: "Polar", Helvetica, Arial, sans-serif;
    font-size: 37px;
    margin-bottom: 2rem;
}

#hiddentext {
    display: none;
}

@media (max-width: 991px) {
    .slide__text-heading {
        line-height: 25px;
        font-size: 24px;

    }
}

.slide__text-desc,
.description {
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 20px;
    margin-bottom: 16px;
}

@media (max-width: 991px) {
    .slide__text-desc {
        font-size: 12px;
    }

    .description {
        font-size: 12px;
        text-align: left;
    }

    #vk_logo,
    #insta_logo,
    #wapp_logo,
    #tel_logo {
        width: 20px;
        height: 20px;
        font-size: 14px;
        line-height: 14px;
        border-radius: 28%;

    }

    #link {
        text-align: left;
    }

    #loremtext {
        display: none;
    }

    #special-link {
        display: inline-block;
    }

    #hiddentext {
        font-size: 10px;
        margin-bottom: 0;
        display: block;
    }
}

.slide__text-link {
    z-index: 5;
    display: inline-block;
    position: relative;
    padding: 0.5rem;
    cursor: pointer;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 26px;
    perspective: 1000px;
}

@media (max-width: 991px) {
    .slide__text-link {
        display: none;
    }
}

.slide__text-link:before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    transform-origin: 50% 100%;
    transform: rotateX(-85deg);
    transition: transform 0.3s;
    will-change: transform;
}

.slide__text-link:hover:before {
    transform: rotateX(0);
}

@media (max-width: 667px) {
    .slider-container {
        height: 65%;
    }

    .slide__bg {
        background-position: 0 0;
    }
}

@media (max-width: 1024px) {
    .slide__text-heading {

        font-size: 28px;
    }

    .slide__text-desc {
        font-size: 15px;
    }

}

.tool {
    display: none;
}
