﻿

@font-face {
    font-family: "arboria", sans-serif;
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "arboria", sans-serif;
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "arboria", sans-serif;
    font-weight: 500;
    font-style: normal;
}

h1, h2, h3, h4 {
    font-weight: 700;
    font-family: arboria;
}

body, html {
    background-color: #f5f2f3;
    font-family: arboria;
}

p {
    font-family: arboria;
}

.grid-section img {
    width: 100%;

}

.grid-section img.resetImage {
    height: unset !important;
    width: unset !important;
}

.btn p {
    margin: 0px
}

.container {
    background-color: transparent
}

.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.row-full {
    width: 99.6vw;
    position: relative;
    margin-left: -50vw;
    left: 50%;
}

.Middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate( -50%,-50% );
    text-align: center;
}

.rollover {
    width: 100%;
    height: 100%;
    background: #000000d1
}

.videoContainer {
    position: relative;
    max-height: 900px;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

video {
    object-fit: cover;
}

video {
    width: 100% !important;
    height: auto !important;
}

.pointer {
    cursor: pointer
}

.snackbar {
    display: block; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    background-color: #333; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    bottom: 30px; /* 30px from the bottom */
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}


/*FlipCard*/
/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    border: 1px solid #f1f1f1;
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
    background-color: #bbb;
    color: black;
}

/* Style the back side */
.flip-card-back {
    background-color: dodgerblue;
    color: white;
    transform: rotateY(180deg);
}
/*END FlipCard*/

/*Caousel*/
@media (max-width: 767px) {
    .carousel-inner .carousel-item > div {
        display: none;
    }

        .carousel-inner .carousel-item > div:first-child {
            display: block;
        }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
}

/* medium and up screens */
@media (min-width: 768px) {
    #FourItems .carousel-inner .carousel-item-end.active, #FourItems .carousel-inner .carousel-item-next {
        transform: translateX(25%);
    }

    #FourItems .carousel-inner .carousel-item-start.active, #FourItems .carousel-inner .carousel-item-prev {
        transform: translateX(-25%);
    }

    #ThreeItems .carousel-inner .carousel-item-end.active, #ThreeItems .carousel-inner .carousel-item-next {
        transform: translateX(33%);
    }

    #ThreeItems .carousel-inner .carousel-item-start.active, #ThreeItems .carousel-inner .carousel-item-prev {
        transform: translateX(-33%);
    }

    #TwoItems .carousel-inner .carousel-item-end.active, #TwoItems .carousel-inner .carousel-item-next {
        transform: translateX(50%);
    }

    #TwoItems .carousel-inner .carousel-item-start.active, #TwoItems .carousel-inner .carousel-item-prev {
        transform: translateX(-50%);
    }

    #OneItem .carousel-inner .carousel-item-end.active, #OneItem .carousel-inner .carousel-item-next {
        transform: translateX(100%);
    }

    #OneItem .carousel-inner .carousel-item-start.active, #OneItem .carousel-inner .carousel-item-prev {
        transform: translateX(-100%);
    }
}

#FourItems .carousel-inner .carousel-item-end, #FourItems .carousel-inner .carousel-item-start {
    transform: translateX(0);
}

#ThreeItems .carousel-inner .carousel-item-end, #ThreeItems .carousel-inner .carousel-item-start {
    transform: translateX(0);
}

#TwoItems .carousel-inner .carousel-item-end, #TwoItems .carousel-inner .carousel-item-start {
    transform: translateX(0);
}

#OneItem .carousel-inner .carousel-item-end, #OneItem .carousel-inner .carousel-item-start {
    transform: translateX(0);
}
/*end Caousel*/


.accordion {
    background-color: transparent
}

.accordion-item {
    border: 0px !important;
    background-color: transparent
}

.accordion-button {
    background-color: transparent;
    font-weight: bold;
    font-size: 1.3rem
}

    .accordion-button:not(.collapsed) {
        background-color: transparent;
        box-shadow: none;
    }

.AccordionBorder {
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    border-image: url('/Images//AccordionBorder.png') 30 stretch;
}

.accordion-header:hover {
    background: url('/Images/RollOverFade.png') no-repeat;
    background-size: cover
}

.DarkGreyText {
    color: #666361
}

.btn {
    padding: 10px;
    font-size: 1.2rem;
    border-radius: 10px;
}

.offWhiteText {
    color: #e0dedc
}

.roundedsm {
    border-radius: 10px !important
}

.rounded {
    border-radius: 20px !important
}

.roundedTop {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}


.roundedLeft {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.roundedRight {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

p, a body {
    color: #706d6b !important
}

a:link:not(.btn), a {
    color: #212529;
}

.bg-primary-pill:hover {
    color: #212529 !important;
    background: #ED8C5A
}

footer a {
    color: #e0dedc !important;
}

.overlay a {
    color: #818181 !important
}

.shaddowV1 {
    -webkit-box-shadow: 0px 0px 51px -26px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 51px -26px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 51px -26px rgba(0,0,0,0.75);
}

.dropShaddowHover:hover {
    -webkit-box-shadow: 0px 0px 10px -5px rgba(0,0,0,0.95);
    -moz-box-shadow: 0px 0px 10px -5px rgba(0,0,0,0.95);
    box-shadow: 0px 0px 10px -5px rgba(0,0,0,0.95);
}

.text-white p {
    color: #fff !important
}

h1 {
    font-size: 3.3rem
}

.lead {
    font-size: 1.4rem
}

    .lead p {
        margin-bottom: 0px
    }

.carousel-control-prev, .carousel-control-next {
    width: 5%
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%236c757d' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%236c757d' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

footer {
    background: #666361
}

.nav a {
    font-size: 1em
}

.dropdown-toggle::after {
    display: none
}



.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    background-color: #000;
    background-color: rgba(0,0,0,.9);
    overflow-x: hidden;
    transition: .5s
}

.overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px
}

.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block;
    transition: .3s
}

    .overlay a:hover, .overlay a:focusr {
        color: #f1f1f1
    }

.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px
}

.btn-primary.bg-white {
    background: #fff !important;
    color: #666361 !important;
    border: 0px;
    box-shadow: 5px 5px #0000002d;
    border-radius: 5px;
    font-weight: bold
}

h2, p, body {
    color: #666163
}

.pill {
    border-radius: 50px;
    border: 6px solid #fff
}


.topQuote, .bottomQuote {
    width: unset !important
}

.heroh1 {
    bottom: -30px;
}

@media (max-width: 767px) {
    .Middle {
        position: relative;
        top: unset;
        left: unset;
        transform: unset;
        text-align: center;
    }

    .testemonial .topQuote {
        width: 100px;
        top: 50px !important
    }

    .testemonial .bottomQuote {
        width: 100px;
    }

    h1 {
        font-size: 2.3rem
    }

    .heroh1 {
        bottom: 25px;
    }

        .heroh1 h1 {
            font-size: 1.7rem !important
        }

    .heroCarosel {
        padding: 0px !important
    }
}

@media (min-width: 769px) {
    .heroCarosel .carousel-item .bgitem {
        background: unset !important
    }
}


@media (max-width: 900px) {
    .Middle {
        position: relative;
        top: unset;
        left: unset;
        transform: unset;
        text-align: center;
    }
    .mobileUnsetHeight {
        height: unset !important
    }

}


footer a:hover, .nav-link:hover {
    color: #212529 !important
}
