
html {
    /*background: linear-gradient(45deg, #796792 10%, #796792 90%);*/
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    height: 100vh;
}

body {
    /*background: #fff0 !important;*/
    font-family: "Trebuchet MS",sans-serif;
    font-weight: bold;
    color: #858AA6;
    font-size: 20px;
}
.container{
    margin-right:0px !important;
}
.container-fluid{
    margin-right: 0px !important;
}
.flip-card-3D-wrapper {
    width: 100%;
    height: 100%;
    max-width: 300px;
    perspective: 900px;
    margin: 10px auto;
}

.flip-card {
    height: 100%;
    transition: all 1s ease-in-out;
    transform-style: preserve-3d;
    height: 500px;
}

.flip-card img{
    display: block;
    width: 333px;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.do-flip {
    transform: rotateY(-180deg);
}

.flip-card-btn-turn-to-back, .flip-card-btn-turn-to-front {
    position: absolute;
    bottom: 8px;
    right: 8px;
    visibility: hidden;
    border-radius: 10px;
}

.flip-card-btn-turn-to-back{
    border: white;
    background: white;
    color: #858AA6;
}

.flip-card-btn-turn-to-front  {
    border: #796792 ;
    /*background: #E80088;*/
    color: #796792;
}

.flip-card-front, .flip-card-back {
    position: absolute;
    backface-visibility: hidden;
    z-index: 2;
    border-radius: 10px;
    border:5px solid #796792;
    height: 100%;
    max-height: 650px;
}

.flip-card-front {
    background: #796792;
}
.flip-card-back {
    background: white;
    transform: rotateY(180deg);
}
.flip-card-front {
    color: white;
}
.flip-card-back h4 {
    color: #796792
}

.mt-20{
    margin-top: 20px;
}

/*Loading screen*/
.ring-container
{
    width: 100%;
    height: 100%;
    margin:0;
    padding:0;
    background:#262626;
}
.ring
{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:150px;
    height:150px;
    background:transparent;
    border:3px solid #3c3c3c;
    border-radius:50%;
    text-align:center;
    line-height:150px;
    font-family:sans-serif;
    font-size:20px;
    color:#796792;
    letter-spacing:4px;
    text-transform:uppercase;
    text-shadow:0 0 10px #796792;
    box-shadow:0 0 20px rgba(0,0,0,.5);
}
.ring:before
{
    content:'';
    position:absolute;
    top:-3px;
    left:-3px;
    width:100%;
    height:100%;
    border:3px solid transparent;
    border-top:3px solid #796792;
    border-right:3px solid #796792;
    border-radius:50%;
    animation:animateC 2s linear infinite;
}
span
{
    display:block;
    position:absolute;
    top:calc(50% - 2px);
    left:50%;
    width:50%;
    height:4px;
    background:transparent;
    transform-origin:left;
    animation:animate 2s linear infinite;
}
span:before
{
    content:'';
    position:absolute;
    width:16px;
    height:16px;
    border-radius:50%;
    background:#796792;
    top:-6px;
    right:-8px;
    box-shadow:0 0 20px #796792;
}
@keyframes animateC
{
    0%
    {
        transform:rotate(0deg);
    }
    100%
    {
        transform:rotate(360deg);
    }
}
@keyframes animate
{
    0%
    {
        transform:rotate(45deg);
    }
    100%
    {
        transform:rotate(405deg);
    }
}


html {
  font-family: sans-serif;
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

.text-center {
  text-align: center;
}

.color-white {
  color: #fff;
}
.flip-card .flip-card-back {
	display: flex;
  	align-items: center;
  	justify-content: center;
}
.box-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 35px 15px;
  width: 100%;
}

@media screen and (min-width:1380px) {
  .box-container {
    flex-direction: row
  }
}

.box-item {
  position: relative;
  -webkit-backface-visibility: hidden;
  width: 415px;
  margin-bottom: 35px;
  max-width: 100%;
}