/* @import url('https://fonts.googleapis.com/css?family=Poppins:100,300,400,500,600,700,800, 800i, 900&display=swap'); */

/* * {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif; */
/* } */

/* body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #fff; */
    /* } */

    .img-container {
        position: relative;
    }

    .img-container .card {
        position: relative;
        /* width: 320px; */
        height: 450px;
    /*     background: #192a6b; */
/*        background: #1BBFE9;*/
        background: #08143e;
        border-radius: 20px;
        overflow: hidden;
    }

    .img-container .card:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
/*        background: #192a6b;*/
    /*     background: #ff521c; */
        background: #192a6b;
        clip-path: circle(130px at 80% 20%);
        transition: 0.5s ease-in-out;
    }

    .img-container .card:hover:before {
        clip-path: circle(300px at 80% -20%);
    }

    .img-container .card:after {
        content: "WSM";
        position: absolute;
        top: 30%;
        left: -20%;
        font-size: 12em;
        font-weight: 800;
        font-style: italic;
        color: rgba(255, 255, 255, 0.02);

    }

    .img-container .card .imgBx {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        /* z-index: 1000; */
        width: 100%;
        height: 100%;
        transition: .5s;
    }

    .img-container .card:hover .imgBx {
        top: 10%;
        transform: translateY(-25%);
        /* bug  */
    }

    .img-container .card .imgBx img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(0deg);
        /* width: 110px; */
        width: 87%;
    }

    .img-container .card .contentBx {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 60px;
        text-align: center;
        transition: 1s;
        z-index: 90;
    }

    .img-container .card:hover .contentBx {
        height: 100px;
    }

    .img-container .card .contentBx h2 {
        position: relative;
        font-weight: 600;
        letter-spacing: 0.5px;
        color: #fff;
        background: #0004;
        margin: 0px 20px;
        font-size: 16px;
    }

    .img-container .card .contentBx .size,
    .img-container .card .contentBx .color {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 8px 20px;
        transition: .5s;
        opacity: 0;
        visibility: hidden;
    }

    .img-container .card:hover .contentBx .size {
        opacity: 1;
        visibility: visible;
        transition-delay: .5s;
    }

    .img-container .card:hover .contentBx .color {
        opacity: 1;
        visibility: visible;
        transition-delay: .6s;
    }

    .img-container .card .contentBx .size h3,
    .img-container .card .contentBx .color h3 {
        color: white;
        font-weight: 300;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-right: 10px;
        line-height: 14px;
        text-align: left;
    }

    .img-container .card .contentBx .size span {
        text-align: left;
        line-height: 13px;
        font-size: 14px;
        display: inline-block;
        color: #111;
        background: #fff;
        margin: 0px 12px;
        transition: .5s;
        color: #111;
        border-radius: 4px;
        cursor: pointer;
        padding: 3px;
        
        /* width: 26px;
        height: 26px;
        text-align: center;
        line-height: 26px;
        font-size: 14px;
        display: inline-block;
        color: #111;
        background: #fff;
        margin: 0 5px;
        transition: .5s;
        color: #111;
        border-radius: 4px;
        cursor: pointer; */
    }


    .img-container .card .contentBx .size img {
        width: 50%;
        margin: 3px;
    }

    .img-container .card .contentBx .size span:hover {  /* other bug */
        background: #B90000;
    }

    .img-container .card .contentBx .color span {
        width: 20px;
        height: 20px;
        background: #ff0;
        border-radius: 50%;
        margin: 0 5px;
        cursor: pointer;
    }

    .img-container .card .contentBx .color span:nth-child(2) {
         background: #1BBFE9;
    }

    .img-container .card .contentBx .color span:nth-child(3) {
         background: #1B2FE9;
    }

    .img-container .card .contentBx .color span:nth-child(4) {
         background: #080481;
    }

    .img-container .card .contentBx a {
        display: inline-block;
        padding: 10px 20px;
        background: #fff;
        border-radius: 4px;
        margin-top: 10px;
        text-decoration: none;
        font-weight: 600;
        color: #111;
        opacity: 0;
        transform: translateY(50px);
        transition: .5s;
    }

    .img-container .card:hover .contentBx a {
        opacity: 1;
        transform: translateY(0px);
        transition-delay: .7s;
    }



    @media only screen and (max-width: 768px) {
        .img-container .card {
            margin: 2px 0px;
        }
      }
      
      @media only screen and (max-width: 600px) {
      }
      
      @media only screen and (max-width: 400px) {
      }
      
      
      /* -------------------------------------------------------------------
       * make sure the menu is visible on larger screens
       * ------------------------------------------------------------------- */
      
      @media only screen and (min-width: 769px) {
      }