body, * {
    font-family: Arial, Helvetica, sans-serif;
}

::-webkit-scrollbar {
    display: none;
  }
  
  ::-webkit-scrollbar-button {
    display: none;
  }
  
  body {
    -ms-overflow-style:none;
  }

.flex {
    display: flex;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-justify {
    justify-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.flex-align {
    align-items: center;
}

.ignore-a {
    pointer-events: none;
}

.content-container {
    background: radial-gradient(circle, rgb(195, 213, 255) 0%, rgb(63, 87, 153) 100%);
}


/************************* Box 1 ***********************************/

#content-1 {
    height: 100vh;
}

span {
    font-size: 0.85rem;
}

#head-container {
    margin-bottom: 100px;
}

#card {
    padding: 15px 20px 25px 20px;
    width:400px;
    background-color: rgb(245, 245, 245);
    /* background-image: url('images/seamless-paper-texture-business-card-background.png');
    background-size: 1000px; */
    border-radius: 2px 2px 2px 2px;
    box-shadow: 10px 10px 8px 10px #859bca;
    transition: .2s ease;
    align-items:center;
}


#head-details p {
    display: inline;
}

/* --------- */

.flip-container {
    perspective: 3000;
    -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}

.flip-container.hovered .flippable {
    transform: rotateX(180deg);
}

.flippable {
    direction: rtl;
    transition: 0.5s;
    transform-style: preserve-3d;
}

.front, .back {
    backface-visibility: hidden;
}

.front {
    position: absolute;
    z-index: 1;
    transform: rotateX(180deg);
}

.back {
    z-index: 2; /* back side, placed above front */
    transform: rotateX(0deg);
}

#head-details p {
    margin: 0;
}

#head-details-div {
    margin-top: 30px;
    margin-right: 20px;
}

/* --------- */

#card-logo {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    width: 360px;
    height: auto;
    margin-top: -15px;
    margin-right: 40px;
}


li {
    margin: 2px;
    padding: 0;
    /* font-size: 0.85rem; */
}

#info {
    justify-content: space-around;
}


#head-details {
    flex-wrap: nowrap;
}

#head-details>span {
    font-weight: bold;
    margin-top: 6px;
    white-space: nowrap;
}

a {
    color: black;
    text-decoration: none;
}

.logo-div {
    height:100px;
    width: 150px;
    display:flex;
    align-items: center;
    justify-content: center;
}

.client-logo {
    padding-top:10px;
    /* filter: grayscale(100%); */
    display:block;
    width: 150px; 
}


@media (max-width: 500px) {
    
    #card {
        width:300px;
        align-items: center !important;
    }

    #card-logo {
        width: 280px;
    }

    #info {
        flex-direction: column-reverse;
        align-items: center;
    }

    #head-details-div {
        margin: 0;
        margin-top: 15px;
    }

  }