/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

:root {
    --fem: #c100b1;
    --male: #c4833f;
  }

.femdom_color {
    color: var(--fem) !important;
}

.maledom_color {
    color: var(--male) !important;
}

.edition_heading {
    font-size: 2rem;
}

h5 {
    font-size: 2rem;
}

.blinking {
    animation: blink 1.5s linear infinite;
}

@keyframes blink {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 0;
    }
}

.portfolio-image:hover {
    filter: brightness(.5);
}

.cta{
    white-space: nowrap;
}

.cta:hover {
    animation: none;
}


p.center {
    font-size: 1.2rem;
}

.startpicture{
    padding-left: 80px;
    padding-right: 80px;
}

.testi-content{
    min-height: 6em;
}

.mycta {
    font-family: 'Raleway', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40vh;
    background: #050801;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
}

.mycta--femdom a {
    color: var(--fem);
}
.mycta--maledom a {
    color: var(--male);
}
.mycta a { 
    position: relative;
    display: inline-block;
    padding: 25px 30px;
    border-radius: 5px;
    margin: 40px 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.5s;
    letter-spacing: 4px;
    overflow: hidden;
}

.mycta--femdom a:hover {
    background: var(--fem);
    box-shadow: 0 0 5px var(--fem),
            0 0 25px var(--fem),
            0 0 50px var(--fem),
            0 0 200px var(--fem);
}
.mycta--maledom a:hover {
    background: var(--male);
    box-shadow: 0 0 5px var(--male),
            0 0 25px var(--male),
            0 0 50px var(--male),
            0 0 200px var(--male);
}
.mycta a:hover{
    color: #050801;
    -webkit-box-reflect:below 1px linear-gradient(transparent, #0005);
}

.mycta a span{
    position: absolute;
    display: block;
}

.mycta--femdom a span:nth-child(1){
    background: linear-gradient(90deg,transparent,var(--fem));
}
.mycta--maledom a span:nth-child(1){
    background: linear-gradient(90deg,transparent,var(--male));
}
.mycta a span:nth-child(1){
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    animation: animate1 1s linear infinite;
}

@keyframes animate1{
    0%{
        left: -100%;
    }
    50%,100%{
        left: 100%;
    }
}
.mycta--femdom a span:nth-child(2){
    background: linear-gradient(180deg,transparent,var(--fem));
}
.mycta--maledom a span:nth-child(2){
    background: linear-gradient(180deg,transparent,var(--male));
}
.mycta a span:nth-child(2){
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    animation: animate2 1s linear infinite;
    animation-delay: 0.25s;
}
@keyframes animate2{
    0%{
        top: -100%;
    }
    50%,100%{
        top: 100%;
    }
}

.mycta--femdom a span:nth-child(3){
    background: linear-gradient(270deg,transparent,var(--fem));
}

.mycta--maledom a span:nth-child(3){
    background: linear-gradient(270deg,transparent,var(--male));
}

.mycta a span:nth-child(3){
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    animation: animate3 1s linear infinite;
    animation-delay: 0.50s;
}
@keyframes animate3{
    0%{
        right: -100%;
    }
    50%,100%{
        right: 100%;
    }
}

.mycta--femdom a span:nth-child(4){
    background: linear-gradient(360deg,transparent,var(--fem));
}

.mycta--maledom a span:nth-child(4){
    background: linear-gradient(360deg,transparent,var(--male));
}

.mycta a span:nth-child(4){
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    animation: animate4 1s linear infinite;
    animation-delay: 0.75s;
}

@keyframes animate4{
    0%{
        bottom: -100%;
    }
    50%,100%{
        bottom: 100%;
    }
}

a h4:hover {
    color: grey;
}

.coloredBackgroundFemdom {
    background-color: var(--fem);
    border-radius: 5px;
}

.coloredBackgroundMaledom {
    background-color: var(--male);
    border-radius: 5px;
}

.bg-femdom {
    background-color: var(--fem) !important;
}

.bg-maledom {
    background-color: var(--male) !important;
}

.text-larger {
    font-size: larger;
}


@media (max-width: 992px) {
    .portfolio-item .portfolio-image img {
        width: 30vw;
        margin: 0 auto;
    }
    .edition_heading {
        font-size: large;
    }
    .startpicture h5 {
        font-size: large;
    }
    #logo h1 {
        font-size: larger;
    }
    .contentDescription__text {
        width: 90vw !important;
        line-height: 1.4em !important;
        font-size: 5px;
        font-size: large;
    }
    .contentDescription__half {
        width: 50vw;
    }
    
    .myBanner {
        margin: 0 2vw;
    }

    .Bonusmaterial__text {
        width: 90vw;
    }

    .Bonusmaterial__testimonial {
        width: 90vw;
        margin: 0 auto;
    }
}