/* Style the navbar */
.navbar {
    transition: background-color 2s ease;
}
a{
    text-decoration: none;
    color: #000;
}

.insta{
    background: rgb(131,58,180);
    background: linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
}
.whats{
    background: rgb(34,193,195);
    background: linear-gradient(0deg, rgba(34,193,195,1) 0%, rgba(45,253,69,1) 100%);
}

/* Style the transparent navbar */
.transparent-navbar {
    background-color: transparent !important;
}

/* Style the colored navbar */
.colored-navbar {
    background: rgba(100, 100, 100, 0.9) !important;
}

.me_bg {
    background-image: url('../img/me.jpg');
}

.siabg01{
    background-image: url('../img/bg01.png');
}
.siabg02{
    background-image: url('../img/bg02.png');
}
.siabg03{
    background-image: url('../img/bg03.png');
}
.siabg04{
    background-image: url('../img/bg04.png');
}
.siabg05{
    background-image: url('../img/bg05.png');
}
.gallery-bg{
    background-image: url('../img/gbgw.jpg');
}
.ml3 {
    font-weight: 900;
    font-size: 3.5em;
}

.ml11 {
    font-weight: 700;
    font-size: 3.5em;
}

.ml11 .text-wrapper {
    position: relative;
    display: inline-block;
    padding-top: 0.1em;
    padding-right: 0.05em;
    padding-bottom: 0.15em;
}

.ml11 .line {
    opacity: 0;
    position: absolute;
    left: 0;
    height: 100%;
    width: 3px;
    background-color: #fff;
    transform-origin: 0 50%;
}

.ml11 .line1 {
    top: 0;
    left: 0;
}

.ml11 .letter {
    display: inline-block;
    line-height: 1em;
}

.covers {
    height: 100vh;
    min-height: 500px;
    background-image: url('../img/cover.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mybutton {
    min-width: 300px;
    min-height: 60px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-weight: 700;
    color: #313133;
    background: #4FD1C5;
    background: linear-gradient(90deg, rgba(129, 230, 217, 1) 0%, rgba(79, 209, 197, 1) 100%);
    border: none;
    border-radius: 1000px;
    box-shadow: 12px 12px 24px rgba(79, 209, 197, .64);
    transition: all 0.3s ease-in-out 0s;
    cursor: pointer;
    outline: none;
    position: relative;
    padding: 10px;
}

.mybutton::before {
    content: '';
    border-radius: 1000px;
    min-width: calc(300px + 12px);
    min-height: calc(60px + 12px);
    border: 6px solid #00FFCB;
    box-shadow: 0 0 60px rgba(0, 255, 203, .64);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .3s ease-in-out 0s;
}

.mybutton:hover, .mybutton:focus {
    color: #313133;
    transform: translateY(-6px);
}

.mybutton:hover::before, .mybutton:focus::before {
    opacity: 1;
}

.mybutton::after {
    content: '';
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 4px solid #33ccff;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring 1.5s infinite;
}

.mybutton:hover::after, .mybutton:focus::after {
    animation: none;
    display: none;
}

/*MyButton2*/
.ring23 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    position: absolute;
    background-color: transparent;
    border: 15px gray solid;
    -webkit-animation-name: ani;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -webkit-animation-duration: 6s;
    -webkit-animation-direction: normal;

}

@-webkit-keyframes ani {
    0% {-webkit-transform: scale(0.01); opacity: 0}
    1% {-webkit-transform: scale(0.01); opacity: 1}
    95% {-webkit-transform: scale(1); opacity: 1;}
    100% {-webkit-transform: scale(1); opacity: 0;}
}

#r2 { -webkit-animation-delay: -1s;}
#r3 { -webkit-animation-delay: -2s;}
#r4 { -webkit-animation-delay: -3s;}
#r5 { -webkit-animation-delay: -4s;}
#r6 { -webkit-animation-delay: -5s;}

/*MyButton2*/

@keyframes ring {
    0% {
        width: 30px;
        height: 30px;
        opacity: 1;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

/*Gallery*/
.lightbox-gallery {

    background-repeat: no-repeat;
    color: #000;
    overflow-x: hidden
}

.lightbox-gallery p {
    color: #fff
}

.lightbox-gallery h2 {
    font-weight: bold;
    margin-bottom: 40px;
    padding-top: 40px;
    color: #fff
}

@media (max-width: 767px) {
    .lightbox-gallery h2 {
        margin-bottom: 25px;
        padding-top: 25px;
        font-size: 24px
    }
}

.lightbox-gallery .intro {
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 40px
}

.lightbox-gallery .intro p {
    margin-bottom: 0
}

.lightbox-gallery .photos {
    padding-bottom: 20px
}

.lightbox-gallery .item {
    padding-bottom: 30px
}

/*Gallery*/

.pulse {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.bounce {
    animation: bounce 0.9s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.spin {
    animation: spin 1s infinite linear;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.grow {
    transition: transform 0.3s ease;
}

.grow:hover {
    transform: scale(1.1);
}

.shake {
    animation: shake 2s infinite;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25%, 75% {
        transform: translateX(-5px);
    }
    50% {
        transform: translateX(5px);
    }
}

.bgg {
            --b: .5em; /* border width */
            --c: 3em; /* corner size */
            --r: 2em; /* corner rounding */
            position: relative;
            margin: 1em auto;
            border: solid var(--b) transparent;
            padding: 1em;
        &
        ::before {
            position: absolute;
            z-index: -1;
            inset: calc(-1 * var(--b));
            border: inherit;
            border-radius: var(--r);
            background: linear-gradient(orange, deeppink, purple) border-box;
            --corner: conic-gradient(from -90deg at var(--c) var(--c), red 25%, #0000 0) 0 0/ calc(100% - var(--c)) calc(100% - var(--c)) border-box;
            --inner: conic-gradient(red 0 0) padding-box;
            -webkit-mask: var(--corner), var(--inner);
            -webkit-mask-composite: source-out;
            mask: var(--corner) subtract, var(--inner);
            content: ''
        }

        }

