﻿body{

    zoom: 91%;

}

.cta span {
    padding-bottom: 3px;
    letter-spacing: 5px;
    font-size: 16px;
    padding-right: 15px;
    text-transform: uppercase;
    font: medium;
}

.hover-underline-animation {
    position: relative;
    color: black;
    padding-bottom: 20px;
}

    .hover-underline-animation:after {
        content: "";
        position: absolute;
        width: 95%;
        transform: scaleX(0);
        height: 4px;
        bottom: 0;
        left: -5px;
        background:  linear-gradient(90deg, rgba(253,209,45,1) 34%, rgba(20,119,216,1) 60%);
        transform-origin: bottom center;
        transition: transform 0.25s ease-out;
    }

.cta:hover .hover-underline-animation:after {
    transform: scaleX(1);
    transform-origin: bottom center;
}



 


.wrapingtext {
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
}

.gradientbtn {
    background: linear-gradient(82deg,#fbbb1d 40%,#0066b1 80%);
}

.gradient {
    background: linear-gradient(82deg,#fbbb1d 35%,#0066b1 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#appbar {
    background-color: rgb(255, 255, 255); /* Fallback color */
    background-color: rgba(255,255,255, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    -moz-backdrop-filter: blur(8px);
}


#footer {
    position: fixed;
    left: 20px;
    bottom: 20px;
    justify-self: center;
}

#footerChat {
    position: fixed;
    right: 18px;
    bottom: 75px;
    justify-self: center;
}

#footerChatMsg {
    position: fixed;
    right: 18px;
    bottom: 75px;
    justify-self: center;
}

#footerChatMsgRoom {
    position: fixed;
    right: 18px;
    bottom: 75px;
    justify-self: center;
}

#footerChatNotify {
    position: fixed;
    right: 60px;
    bottom: 110px;
    justify-self: center;
}

#footerChatBadge {
    position: fixed;
    right: 44px;
    bottom: 112px;
    justify-self: center;
}

 


.slideDown {
    position: relative;
    top: 0px;
    -webkit-animation: slideOn 1s forwards;
    -moz-animation: slideOn 1s forwards;
    animation: slideOn 1s forwards;
}

@-webkit-keyframes slideOn {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-moz-keyframes slideOn {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOn {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.slideUp {
    position: relative;
    bottom: 0px;
    -webkit-animation: slideTo 2s forwards;
    -moz-animation: slideTo 2s forwards;
    animation: slideTo 2s forwards;
}

@-webkit-keyframes slideTo {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-moz-keyframes slideTo {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideTo {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



.slideLeft {
    position: relative;
    left: 0px;
    -webkit-animation: slideIn 2s forwards;
    -moz-animation: slideIn 2s forwards;
    animation: slideIn 2s forwards;
}

@-webkit-keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-300px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-moz-keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-300px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-300px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


.slideRight {
    position: relative;
    right: 0px;
    -webkit-animation: slideR 2s forwards;
    -moz-animation: slideR 2s forwards;
    animation: slideR 2s forwards;
}

@-webkit-keyframes slideR {
    0% {
        opacity: 0;
        transform: translateX(300px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-moz-keyframes slideR {
    0% {
        opacity: 0;
        transform: translateX(300px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideR {
    0% {
        opacity: 0;
        transform: translateX(300px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeslow {
    margin-top: 25px;
    font-size: 21px;
    text-align: center;
    -webkit-animation: fadein 4s; /* Safari, Chrome and Opera  12.1 */
    -moz-animation: fadein 4s; /* Firefox  16 */
    -ms-animation: fadein 4s; /* Internet Explorer */
    -o-animation: fadein 4s; /* Opera  12.1 */
    animation: fadein 4s;
}

.fade {
    margin-top: 25px;
    font-size: 21px;
    text-align: center;
    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera  12.1 */
    -moz-animation: fadein 2s; /* Firefox  16 */
    -ms-animation: fadein 2s; /* Internet Explorer */
    -o-animation: fadein 2s; /* Opera  12.1 */
    animation: fadein 2s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Firefox  16 */
@-moz-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Safari, Chrome and Opera  12.1 */
@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Opera  12.1 */
@-o-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.card {
    transition: 0.5s all ease 0s;
    -webkit-transition: 0.5s all ease 0s;
    -moz-transition: 0.5s all ease 0s;
    -ms-transition: 0.5s all ease 0s;
    -webkit-animation: moveAnimation 2s;
    animation: moveAnimation 5s;
}

    .card:hover {
        -webkit-transform: scale(1.02);
        -moz-transform: scale(1.02);
        -ms-transform: scale(1.02);
        -o-transform: scale(1.02);
        transform: scale(1.02);
        transition: 0.5s all ease 0s;
        -webkit-transition: 0.5s all ease 0s;
        -moz-transition: 0.5s all ease 0s;
        -ms-transition: 0.5s all ease 0s;
    }




.slides {
    transition: 0.5s all 0s;
    -webkit-transition: 0.5s all 0s;
    -moz-transition: 0.5s all 0s;
    -ms-transition: 0.5s all 0s;
}

    .slides:hover {
        -webkit-transform: translateX(15px);
        -moz-transform: translateX(15px);
        -ms-transform: translateX(15px);
        -o-transform: translateX(15px);
        transform: translateX(15px);
    }


.uphover {
    transition: 0.5s all 0s;
    -webkit-transition: 0.5s all 0s;
    -moz-transition: 0.5s all 0s;
    -ms-transition: 0.5s all 0s;
}

    .uphover:hover {
        -webkit-transform: translateX(-4px);
        -moz-transform: translateY(-4px);
        -ms-transform: translateY(-4px);
        -o-transform: translateY(-4px);
        transform: translateY(-4px);
    }

.zoomhover {
    transition: 0.5s all 0s;
    -webkit-transition: 0.5s all 0s;
    -moz-transition: 0.5s all 0s;
    -ms-transition: 0.5s all 0s;
}

    .zoomhover:hover {
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
        transform: scale(1.05);
    }


/*Photocards*/


.pbox {
    width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-gap: 15px;
    margin: 0 auto;
}

.pcard {
    position: relative;
    width: 220px;
    height: 280px;
    background: #fff;
    margin: 0 auto;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,.2);
}

    .pcard:before,
    .pcard:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 4px;
        background: #fff;
        transition: 0.5s;
        z-index: -1;
    }

    .pcard:hover:before {
        transform: rotate(20deg);
        box-shadow: 0 2px 20px rgba(0,0,0,.2);
    }

    .pcard:hover:after {
        transform: rotate(10deg);
        box-shadow: 0 2px 20px rgba(0,0,0,.2);
    }

    .pcard .imgBx {
        position: absolute;
        top: 10px;
        left: 10px;
        bottom: 10px;
        right: 10px;
        background: #222;
        transition: 0.5s;
        z-index: 1;
    }

    .pcard:hover .imgBx {
        bottom: 80px;
    }

    .pcard .imgBx img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .pcard .details {
        position: absolute;
        left: 10px;
        right: 10px;
        bottom: 10px;
        height: 60px;
        text-align: center;
    }

        .pcard .details h2 {
            margin: 0;
            padding: 0;
            font-weight: 600;
            font-size: 20px;
            color: #777;
            text-transform: uppercase;
        }

            .pcard .details h2 span {
                font-weight: 500;
                font-size: 16px;
                color: #f38695;
                display: block;
                margin-top: 5px;
            }











.flip-card {
    background-color: transparent;
    width: 370px;
    height: 420px;
    perspective: 1000px;
    border-radius: 15px;
    color: black;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 15px;
    background-color: white;
    background: #fff;
    color: black;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
    background: transparent;
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    color: black;
    background: transparent;
}

.flip-card-front {
    background-color: white;
    color: black;
    border-radius: 15px;
    color: black;
}

.flip-card-back {
    background-color: white;
    border-radius: 15px;
    transform: rotateY(180deg);
    color: black;
}






.mySlides {
    display: none
}

img {
    vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {
    max-width: 100%;
    position: relative;
    margin: auto;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

    /* On hover, add a black background color with a little bit see-through */
    .prev:hover, .next:hover {
        background-color: #f1f1f1;
        color: black;
    }

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

    .active, .dot:hover {
        background-color: #717171;
    }

 

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .prev, .next, .text {
        font-size: 11px
    }
}














#divtwo {
    background: url(../images/bg1.png)bottom no-repeat;
    height: 125vh;
    width: 100%;
    background-size: cover;
    display: table;
    background-attachment: scroll;
}


.w3-animate-top.del {
    animation-duration: 1s;
}


 

#element {
    -webkit-animation: smooth 1s ease-in;
    -moz-animation: smooth 1s ease-in;
    -o-animation: smooth 1s ease-in;
    -ms-animation: smooth 1s ease-in;
    animation: smooth 1s ease-in;
    opacity: 0;
    animation-fill-mode: forwards;
    animation-delay: 0s;
}

#element1 {
    -webkit-animation: smooth 1s ease-in;
    -moz-animation: smooth 1s ease-in;
    -o-animation: smooth 1s ease-in;
    -ms-animation: smooth 1s ease-in;
    opacity: 0;
    animation: smooth 1s ease-in;
    animation-fill-mode: forwards;
    animation-delay: 0.2s;
}

#element2 {
    -webkit-animation: smooth 1s ease-in;
    -moz-animation: smooth 1s ease-in;
    -o-animation: smooth 1s ease-in;
    -ms-animation: smooth 1s ease-in;
    animation: smooth 1s ease-in;
    opacity: 0;
    animation-fill-mode: forwards;
    animation-delay: 0.3s;
}

@keyframes smooth {
    0% {
        opacity: 0.0;
    }



    100% {
        opacity: 0.9;
    }
}

@-webkit-keyframes smooth {
    0% {
        opacity: 0.0;
    }



    100% {
        opacity: 0.9;
    }
}


#blur {
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    -moz-backdrop-filter: blur(8px);
}


.left {
    transform: translateX(-200px);
    opacity: 0;
}


.typewrite {
    color: #0000;
    background: linear-gradient(-90deg,#00DFFC 5px,#0000 0) 10px 0, linear-gradient(#00DFFC 0 0) 0 0;
    background-size: calc(var(--n)*1ch) 200%;
    -webkit-background-clip: padding-box,text;
    background-clip: padding-box,text;
    background-repeat: no-repeat;
    animation: b .7s infinite steps(1), t calc(var(--n)*0.02s) steps(var(--n)) forwards;
}

@keyframes t {
    from {
        background-size: 0 200%
    }
}

@keyframes b {
    50% {
        background-position: 0 -100%,0 0
    }
}



.mygradientbck .mud-badge.mud-badge-default {
    background: linear-gradient(267deg, rgba(183,60,159,1) 8%, rgba(66,37,177,1) 50%, rgba(47,152,213,1) 100%);
    color: white;
}


.ql-toolbar .ql-stroke {
    fill: none;
    stroke: #A1A1A1;
}

.ql-toolbar .ql-fill {
    fill: #A1A1A1;
    stroke: none;
}

.ql-toolbar .ql-picker {
    color: #A1A1A1;
}


.ql-toolbar {
    border-radius: 7px 7px 0 0;
}