﻿

/*******************************/
/******** SHADOW **************/
/*******************************/
.shadow-cust1 {
    padding: 8px;
    border-radius: 4px;
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}

.shadow-cust2 {
    padding: 8px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.shadow-cust3 {
    padding: 8px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.shadow-cust4 {
    padding: 8px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.shadow-cust5 {
    padding: 8px;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
}

.div-item-center {
    display: inline-flex;
    align-items: center;
}


/*******************************/
/******** card-1 **************/
/*******************************/
.card-1-title {
    color: #262626;
    font-size: 1.5em;
    line-height: normal;
    font-weight: 700;
    margin-bottom: 0.5em;
}

.small-desc {
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5em;
    color: #452c2c;
}

.small-desc {
    font-size: 1em;
}

.go-corner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 2em;
    height: 2em;
    overflow: hidden;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #6293c8, #384c6c);
    border-radius: 0 4px 0 32px;
}

.go-arrow {
    margin-top: -4px;
    margin-right: -4px;
    color: white;
    font-family: courier, sans;
}

.card-1 {
    display: block;
    position: relative;
    /* max-width: 300px;
    max-height: 320px;*/
    background-color: #f2f8f9;
    color: white;
    border-radius: 10px;
    padding: 2em 1.2em;
    margin: 12px;
    text-decoration: none;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(to bottom, #c3e6ec, #a7d1d9);
    font-family: Arial, Helvetica, sans-serif;
}

.card-1:before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -16px;
    right: -16px;
    background: linear-gradient(135deg, #364a60, #384c6c);
    height: 32px;
    width: 300px;
    border-radius: 32px;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.35s ease-out;
}
    .card-1:hover  {
        color: white !important;
    }
.card-1:hover:before {
    transform: scale(28);
}

.card-1:hover .small-desc {
    transition: all 0.5s ease-out;
    color: rgba(255, 255, 255, 0.8);
}

.card-1:hover .card-1-title {
    transition: all 0.5s ease-out;
    color: #ffffff;
}


/*******************************/
/******** card-2 **************/
/*******************************/

.card-2 {
    position: relative;
    background: mediumturquoise;
    border-radius: 15px;
}

.card-2::before,
.card-2::after {
    position: absolute;
    content: "";
    width: 20%;
    height: 20%;
    background-color: lightblue;
    transition: all 0.5s;
}

.card-2::before {
    top: 0;
    right: 0;
    border-radius: 0 15px 0 100%;
}

.card-2::after {
    bottom: 0;
    left: 0;
    border-radius: 0 100% 0 15px;
  
}

/*******************************/
/******** card-3 **************/
/*******************************/
.card-3 {
   /* width: 300px;
    height: 300px;*/
    background: #e4e3e3da;
    border-radius: 1em;
   /* display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 0.4em;
    align-items: flex-start;*/
    padding: 1em 1.5em;
    transition: all 0.5s ease;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.card-3:hover {
    background: #f1f1f1 !important;
}

.card-icon svg {
    height: 4rem;
    width: 4rem;
}

.card-body {
    text-align: justify;
}