/* Import Link Main Style Orange Moon */

@import url(base/fonts.css);
@import url(base/reset.css);
@import url(base/tools.css);
@import url(base/variables.css);
@import url(components/main-footer.css);
@import url(components/main-header.css);
@import url(components/main-swiper.css);
@import url(components/main-bottom-nav.css);
@import url(components/text-heading-site.css);
@import url(components/btn-heading-site.css);
@import url(components/btn-link-page.css);
@import url(components/btn-swiper.css);

/* Main Style Orange Moon */

#main-content-OrangeMoon {
    width: 100%;
    height: auto;
}

.outside-top-indentation {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 0;
}

.outside-top-indentation::before {
    content: "";
    position: absolute;
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 200px;
    z-index: 1;
    background: #121212;
    clip-path: ellipse(45% 110% at 50% 140%);
    pointer-events: none;
}

.inside-top-indentation {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 0;
}

.inside-top-indentation::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 150px;
    z-index: 1;
    background: #fff;
    clip-path: ellipse(40% 100% at 50% 0%);
    pointer-events: none;
}

.inside-bottom-indentation {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 0;
}

.inside-bottom-indentation::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 100px;
    z-index: 1;
    background: #ffffff;
    clip-path: ellipse(40% 100% at 50% 100%);
    pointer-events: none;
}

.vertical-indentation {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 0;
    padding: 300px 0 270px 0;
    background: #F2F2F2;
}

.vertical-indentation::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 200px;
    z-index: 1;
    background: #fff;
    clip-path: ellipse(40% 60% at 50% 20%);
    pointer-events: none;
}

.vertical-indentation::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 200px;
    z-index: 1;
    background: #fff;
    clip-path: ellipse(40% 60% at 50% 90%);
    pointer-events: none;
}

#wrapper {
    height: 100vh;
    overflow: hidden;
}
  
#content {
    will-change: transform;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    min-width: 55px;
    min-height: 55px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #E63B0E;
    border: 0;
    outline: 0;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.5);
}

.back-to-top img {
    transform: translateY(0) rotate(90deg);
    animation: moveicon 2s ease infinite;
    transition: .5s ease;
}

@keyframes moveicon {
    0%{transform: translateY(0) rotate(90deg);}
    50%{transform: translateY(5px) rotate(90deg);}
    75%{transform: translateY(-5px) rotate(90deg);}
    100%{transform: translateY(0) rotate(90deg);}
}

.back-to-top:hover img {
    animation: unset;
    transform: translateY(-5px) rotate(90deg);
}

.section-anchor {
    position: relative;
    top: 300px;
    height: 1px;
    visibility: hidden;
}

/* All Media Queris Main Style Orange Moon */

@media screen and (max-width: 998px) {
    .vertical-indentation::before {
        top: -20px;
        clip-path: ellipse(40% 60% at 50% 20%);
        height: 100px;
    }
    .vertical-indentation::after {
        bottom: -20px;
        clip-path: ellipse(40% 60% at 50% 80%);
        height: 100px;
    }
    .inside-top-indentation::before {
        top: -15px;
        clip-path: ellipse(50% 80% at 50% -10%);
    }
    .outside-top-indentation::before {
        top: -160px;
        clip-path: ellipse(65% 110% at 50% 140%);
    }
}

@media screen and (max-width: 768px) {
    .back-to-top {
        bottom: 100px;
    }
}

@media screen and (max-width: 576px) {
    .vertical-indentation::before {
        top: -15px;
        clip-path: ellipse(40% 70% at 50% 15%);
        height: 70px;
    }
    .vertical-indentation::after {
        bottom: -15px;
        clip-path: ellipse(40% 70% at 50% 70%);
        height: 70px;
    }
    .inside-top-indentation::before {
        top: -10px;
        clip-path: ellipse(45% 80% at 50% -10%);
        height: 110px;
    }
    .outside-top-indentation::before {
        top: -120px;
        clip-path: ellipse(60% 120% at 50% 140%);
        height: 130px;
    }
}