/* images */

.mainHeader {
    padding-top: 170px !important;
    padding-bottom: 170px !important;
}
.Logo{
    margin-top: -200px !important;
    display: inline-block;
}
.img-header {
    background: rgba(0, 0, 0) url('../images/header-image.jpeg');
    background-size: cover;
    background-position: center;
}

.artist-img {
    width: 280px;
    min-height: 400px;
}

.img-artist1 {
    background: url('../images/artista.png') center no-repeat;
    background-size: cover;
}

.img-artist2 {
    background: url('../images/artista1.png') center no-repeat;
    background-size: cover;
}

.img-artist3 {
    background: url('../images/artista2.png') center no-repeat;
    background-size: cover;
}

.img-stage-light {
    top: -40%;
    right: -20%;
    z-index: 1000;
}

.img-header-bottom {
    width: 100%;
    height: 100px;
    background: url('../images/header-poligon.svg');
    background-repeat: no-repeat;
    background-size: 1000px auto;
}

.img-bottom-layer {
    height: 100px;
    width: 100%;
    object-fit: stretch;
}

.img-bottom-layer2 {
    height: 80px;
}

.cursor-grab {
    cursor: grab;
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.cursor-grab:active {
    cursor: grabbing;
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}


/* fonts */
@font-face {
    font-family: 'Poppins';
    src: url('../webfonts/Poppins-Regular.ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../webfonts/Poppins-Bold.ttf');
    font-weight: 700;
    font-style: bold;
}

/* styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #F5F2F1;
}

.theme-border {
    display: inline-block;
    position: relative;
}

.theme-border::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 2px;
    width: 100%;
    height: 12px;
    border-radius: 20px;
    position: inherit;
}

.theme-border-light::after {
    background-color: #EAE8E2;
}

.theme-border-primary::after {
    background-color: var(--bs-primary);
}

.bg-dark-glass {
    background-color: rgba(0, 0, 0, 0.6) !important;
}

.fw-semi {
    font-weight: 600;
}

.py-6 {
    padding-top: 0.5rem !important;
    padding-bottom: 5rem !important;
}

.py-7 {
    padding-top: 1rem !important;
    padding-bottom: 10rem !important;
}

.mb-6 {
    margin-bottom: 5rem !important;
}

.clickable {
    cursor: pointer;
}

.border-gray {
    border-color: rgb(86, 86, 86) !important;
}

.hover-gray:hover {
    background-color: rgb(68, 68, 68);
    cursor: pointer;
}

.text-gray {
    color: #CAC4D0 !important;
}

.text-theme {
    color: #D0BCFF;
}

.bottom-liner {
    bottom: -1px;
}

.slick-dots li button::before{
    font-size: 70px !important;
}
.slick-dots {
    bottom: 60% !important;
    left: -27% !important;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

.slick-dots li.slick-active button::before {
    opacity: 1 !important;
    color: #A79587 !important;
  }
  .slick-dots li button::before{
    color: #E9E8E1 !important;
    opacity: 1 !important;
  }

/* media quries */
@media (min-width: 576px) {}

@media screen and (max-width: 700px) {
    .mainHeader {
        padding-top: 70px !important;
        padding-bottom: 20px !important;
    }
    .Logo{
        margin-top: -100px !important;
    }
    .slick-dots {
        left: -40% !important;
    }
    .img-header{
        background-size: 100% 100% !important;
    }
    .container{
        overflow-x: hidden !important;
    }
}

@media (min-width: 768px) {
    .py-7 {
        padding-top: 3rem !important;
        padding-bottom: 10rem !important;
    }
}

@media (min-width: 992px) {}

@media (min-width: 1275px) {
    .img-stage-light {
        top: -35%;
        right: -5%;
    }
}

@media (min-width: 1460px) {}

/* animations */
.slide-in-left {
    -webkit-animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.slide-in-right {
    -webkit-animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.fade-in {
    -webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}


/**
 * ----------------------------------------
 * animation slide-in-left
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-left {
    0% {
        -webkit-transform: translateX(-1000px);
        transform: translateX(-1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-left {
    0% {
        -webkit-transform: translateX(-1000px);
        transform: translateX(-1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

/**
 * ----------------------------------------
 * animation slide-in-right
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(1000px);
        transform: translateX(1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(1000px);
        transform: translateX(1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

/**
 * ----------------------------------------
 * animation fade-in
 * ----------------------------------------
 */
@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}