/*#######################################
                FONTS
#######################################*/
@import url(https://fonts.googleapis.com/css?family=Open+Sans:600,300);
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800");
@import url("https://fonts.googleapis.com/css?family=Montserrat:900");
@import url("https://fonts.googleapis.com/css?family=Poppins");
@import url(https://fonts.googleapis.com/css?family=Crimson+Text:400,700,900,400italic,700italic,900italic|Playfair+Display:400,700,900,400italic,700italic,900italic|Rock+Salt:400);

/*#######################################
        GENERELLA INSTÄLLNINGAR
#######################################*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}


html,
body {
    height: 100%;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

footer {
    background-color: #0C120C;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    justify-content: space-evenly;
    color: white;
    width: 100%;
    height: 70px;
    text-align: center;
}



/*#######################################
    MENYN KOMMER ATT KOMMA UNDER DENNA
#######################################*/

.container {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.container ul {
    list-style-type: none;
    padding: 0;
}

.container ul.menu {
    height: 50px;
    width: 50px;
}

.container ul.menu li {
    position: relative;
    background: white;
    margin: 10px;
    height: 8px;
    width: 50px;
    transition: transform .3s, width .3s;
}

.container .active_menu li:nth-child(1) {
    top: 18px;
    transform: rotate(135deg);
    transition: transform .3s;
}

.container .active_menu li:nth-child(2) {
    width: 0;
    transition: width .3s;
}

.container .active_menu li:nth-child(3) {
    bottom: 18px;
    transform: rotate(-135deg);
    transition: transform .3s;
}

.container ul.links {
    overflow: hidden;
    width: 0;
    margin-left: 0px;
    transition: width .4s, margin-left .4s;
    text-shadow: 1px 1px 1px black;
}

.container ul.links li {
    margin: 5px;
}

.container ul.links li a {
    color: white;
    text-decoration: none;
    transition: color .5s;
    text-transform: uppercase;
    font-size: 54px;
    font-family: 'Montserrat', sans-serif;
    transition: color .5s, margin-left .5s;
}

.container ul.links li a:hover {
    color: black;
    margin-left: 20px;
    transition: color .5s, margin-left .5s;
}

.container .active_links {
    width: 370px !important;
    margin-left: 35px !important;
    transition: width .4s, margin-left .4s;
}

@media only screen and (max-width: 603px) {

    .container ul.links {
        text-shadow: -2px -2px 2px black;
    }

    .container ul.links li a {
        color: white;
        font-size: 32px;
        font-family: 'Montserrat', sans-serif;
    }
}

/*#######################################
    MENYN KOMMER ATT KOMMA OVAN DENNA
#######################################*/

/*#######################################
    WELCOME KOMMER ATT KOMMA UNDER DENNA
#######################################*/


.welcome {
    height: 100vh;
    background: linear-gradient(45deg, rgba(255, 175, 189, .7), rgba(100, 216, 243, .7), rgba(234, 236, 198, .7), rgba(245, 146, 176, .7), rgba(52, 219, 216, .7)) 0 0 / 1000% no-repeat, url("Images/bgMain.jpg") 0 0 / cover no-repeat;
    -webkit-animation: gradientAnimation 40s ease infinite;
    animation: gradientAnimation 40s ease infinite;
}

@-webkit-keyframes gradientAnimation {
    0% {
        background-position: 0% 30%, 0 0;
    }

    50% {
        background-position: 100% 70%, 0 0;
    }

    100% {
        background-position: 0% 30%, 0 0;
    }
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 30%, 0 0;
    }

    50% {
        background-position: 100% 70%, 0 0;
    }

    100% {
        background-position: 0% 30%, 0 0;
    }
}

.welcome h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    font: normal 600 72px/1 'Open Sans', sans-serif;
    text-align: center;
    white-space: nowrap;
    text-shadow: 1px 1px 1px black;
}

.welcome h1 span {
    display: block;
    margin-top: 1em;
    font-size: 40px;
    font-weight: 300;
}

@media only screen and (max-width: 660px) {

    #startSida {
        width: 100%;
    }

    .welcome h1 {
        font: normal 600 32px/1 'Open Sans', sans-serif;
    }

    .welcome h1 span {
        font-size: 24px;
    }
}

@media only screen and (max-width: 500px) {

    #startSida {
        width: 100%;
    }

    .welcome h1 {
        font: normal 600 30px/1 'Open Sans', sans-serif;
    }

    .welcome h1 span {
        font-size: 20px;
    }
}

/*#######################################
    KORTEN KOMMER ATT KOMMA OVAN DENNA
#######################################*/












.whitecont {
    background-color: #FFFFFF;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    min-height: 200px;
}

/*#######################################
    KORTEN KOMMER ATT KOMMA UNDER DENNA
#######################################*/

.cardholder h1 {
    color: #3e3e42;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 30px;
    -webkit-transform: translateZ(35px);
    transform: translateZ(35px);
}

.cardholder h3 {
    color: #eb285d;
    font-size: 16px;
    margin-bottom: 6px;
    -webkit-transform: translateZ(25px);
    transform: translateZ(25px);
}

#cardHolder {
    width: 100%;
    min-height: 100vh;
    align-items: center;
    background: #642B73;
    background: linear-gradient(to bottom, #C6426E, #642B73);
    display: flex;
    font-family: 'Open Sans', sans;
    justify-content: center;
    overflow: hidden;
    -webkit-perspective: 1800px;
    perspective: 1800px;
    text-align: center;
    margin: 0;
}

.cards {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 10px 20px 20px rgba(0, 0, 0, 0.17);
    display: inline-block;
    padding: 30px 35px;
    -webkit-perspective: 1800px;
    perspective: 1800px;
    text-align: left;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: rotateX(11deg) rotateY(16.5deg);
    transform: rotateX(11deg) rotateY(16.5deg);
    max-width: 604px;
}

.card {
    border-radius: 15px;
    box-shadow: 5px 5px 20px -5px rgba(0, 0, 0, 0.6);
    display: inline-block;
    height: 250px;
    overflow: hidden;
    -webkit-perspective: 1200px;
    perspective: 1200px;
    position: relative;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translatez(35px);
    transform: translatez(35px);
    transition: -webkit-transform 200ms ease-out;
    transition: transform 200ms ease-out;
    transition: transform 200ms ease-out, -webkit-transform 200ms ease-out;
    width: 175px;
    text-align: center;
}

.card:not(:last-child) {
    margin-right: 30px;
}

.card .card__img {
    position: relative;
    height: 100%;
}

.card .card__bg {
    bottom: -50px;
    left: -50px;
    position: absolute;
    right: -50px;
    top: -50px;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: translateZ(-50px);
    transform: translateZ(-50px);
    z-index: 0;
}

.card__one .card__img {
    top: 14px;
    right: -10px;
    height: 110%;
}

.card__one .card__bg {
    background: url("Images/3dr_monobg.jpg") center/cover no-repeat;
}

.card__two .card__img {
    top: 25px;
}

.card__two .card__bg {
    background: url("Images/3dr_spirited.jpg") center/cover no-repeat;
}

.card__three .card__img{
    top: 5px;
    left: -4px;
    height: 110%;
}

.card__three .card__bg {
    background: url("Images/3dr_howlbg.jpg") center/cover no-repeat;
}

.card__text {
    align-items: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
    bottom: 0;
    display: flex;
    flex-direction: column;
    height: 70px;
    justify-content: center;
    position: absolute;
    width: 100%;
    z-index: 2;
    text-shadow: 1px 1px 1px black;
}

.card__title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 0 10px;
    margin-bottom: 3px;
}

.notice {
    background: gold;
    border-top-left-radius: 6px;
    bottom: 0;
    font-family: monospace;
    font-size: 14px;
    padding: 8px 10px;
    position: absolute;
    right: -20px;
}

.twitter__link {
    cursor: pointer;
    position: absolute;
    right: -10px;
    top: 12px;
    z-index: -1;
    background: #00aced;
    border-radius: 20px;
    height: 30px;
    text-decoration: none;
    padding-right: 10px;
    justify-content: space-between;
    font-weight: 600;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 14px;
    width: 74px;
    opacity: 0.4;
}

.twitter__link:hover {
    opacity: 1;
}

.twitter__icon {
    height: 30px;
}


#flaticon{font-size: 16px; text-decoration: none;}


#mobilsCards {
    display: none;
}



@media only screen and (max-width: 603px) {
    .cards {
        display: none;
    }
    
    #flaticon{font-size: 7px; height: 10px; background: white}

    .Mcard {
        width: 100%;
        background-color: #fff;
        padding: 10px;
        
    }

    #mobilsCards {
        background: #0C120C;
        border-radius: 15px;
        box-shadow: 0px 10px 20px 20px rgba(0, 0, 0, 0.17);
        display: block;
        padding: 7px 7px;
    }


    .Mcard .card__bg {
        position: relative;
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-transform: translateZ(-50px);
        transform: translateZ(-50px);
        z-index: 0;
    }

    .Mcard .card__img {
        top: 14px;
        right: -10px;
        height: 100px;
    }

    #Mcard-1 .card__bg {
        width: 100%;
        background: url("Images/3dr_monobg.jpg") center/cover no-repeat;

    }



    #Mcard-2 .card__bg {
        background: url("Images/3dr_spirited.jpg") center/cover no-repeat;
    }



    #Mcard-3 .card__bg {
        background: url("Images/3dr_howlbg.jpg") center/cover no-repeat;
    }

    .card__text {
        align-items: center;
        background: none;
        bottom: 0;
        display: flex;
        flex-direction: column;
        height: 7px;
        justify-content: center;
        position: relative;
        top: -50px;
        width: 100%;
        z-index: 2;
        text-shadow: 1px 1px 1px black;
    }

    .card__title {
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        padding: 0 10px;
        margin-bottom: 3px;
    }

}


.mobilCard {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}




/*#######################################
    KORTEN KOMMER ATT KOMMA OVAN DENNA
#######################################*/


.bluecont {
    background-color: #247BA0;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    min-height: 200px;
}




.blackcont {
    background-color: #0C120C;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    height: 200px;
}

