.cta-pricing-wapper{margin: 50px 0}
*, ::after, ::before {
    box-sizing: border-box;
}
:root {
    /*--button-bg-color:#2eaf61;*/
    --btn-text-color:#fff;
    --font-family:proxima-nova;
    /*--animation-rgb-value: 51, 217, 178;*/
}
.container-escort {
   width: 100%;
   padding-right: 15px;
   padding-left: 15px;
   margin-right: auto;
   margin-left: auto;
}

.row-grid-escort {
    display: grid;
    grid-template-columns: repeat(3, 32%);
    gap: 20px;
    counter-reset: number;
}
.escort-col { width:100%; display:block; position:relative; }
.escort-main-card {
    position: relative;
    display: inline-block;
    width: 100%;
}
.escort-link-image {
    position: relative;
    padding-bottom: 100%;
    padding-bottom: calc(100% - 2px);
    background: #f5f5f5;
    overflow: hidden;
    border-radius: 5px;
    z-index: 1;
}
.escort-link-image:after{
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    background: #000;
    background: linear-gradient(0deg, #000 0, rgba(0, 0, 0, .58) 25%, rgba(107, 107, 107, 0) 50%, rgba(255, 255, 255, 0) 100%);
}
.escort-img img {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    opacity: 1;
    transition: transform .3s;
    transform: scale(1);
    transform-origin: top left;
}
.escort-main-card:hover .escort-img img {
    transform: scale(1.1);
    transform-origin: top left;
}
.escort-link-title {
    position: absolute;
    text-align: center;
    bottom: 10px;
    z-index: 5;
    left: 0;
    width: 100%;
}
.escort-link-title span.link
 {
    color: #fff;
    font-weight: 500;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 15px;
    text-align: center;
    text-decoration: none;
}
/*.escort-link-title a:before {*/
/*    counter-increment: number;*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    left: 10px;*/
/*    content: counter(number);*/
/*    display: inline-block;*/
/*    margin: -1px 1px 0 0;*/
/*    text-align: right;*/
/*    color: #fff;*/
/*    font-weight: 400;*/
/*}*/

.escort-link-overcover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    z-index: -2;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    animation: fadeEffect .2s;
    transition: transform .3s;
    opacity:0;
    transform: translate3d(0, calc(100% - 3.5rem), 0);
}
.escort-main-card:hover .escort-link-overcover {
    z-index: 4;
    opacity:1;
    transform: translate3d(0, 0, 0);
}
.escort-link-overcover .escort-item-link {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-height: 46px;
    padding: 15px 6px;
    border: 2px solid #4c4c4c;
    border-radius: 5px;
    font-size: 0;
    text-decoration: none;
    color: var(--btn-text-color);
    background: var(--button-bg-color);
}
.escort-link-overcover .escort-item-link:hover {
    animation: pulse 1s infinite;
}
.escort-link-overcover .escort-item-link .escort-link-icon {
    color: #fff;
    display: inline-block;
    vertical-align: bottom;
    background: url(../img/w-icon-new-tab.svg) no-repeat;
    background-position: center;
    width: 20px;
    height: 20px;
    background-size: 15px;
    flex-shrink: 0;
    transform: translateZ(0);
}
.escort-link-overcover .escort-item-link .escort-btn-text {
    font-size: 14px;
    margin: 0 8px 0 0;
    display: inline-block;
    vertical-align: middle;
    word-break: break-word;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    min-width: 87px;
    font-family: var(--font-family);
}
.escort-short-desc { margin-top:10px; }
.escort-short-desc p {
    margin: 0;
    font-family: var(--font-family);
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.5em;
    text-transform: none;
    color: #222;
}

@keyframes fadeEffect {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--animation-rgb-value,255,177,66),var(--animation-rgb-opacity,.7))
    }

    70% {
        box-shadow: 0 0 0 10px rgba(var(--animation-rgb-value,255,177,66),0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(var(--animation-rgb-value,255,177,66),0)
    }
}


@media(max-width:600px){
    .row-grid-escort {
        grid-template-columns: repeat(2, 50%);
        gap: 10px;
    }
.container-escort {
   padding-right: 10px;
   padding-left: 0px;
}
}

@media (hover: none) and (pointer: coarse) {
    .escort-item-link:hover .escort-link-overcover {
        opacity: 0 !important;
        visibility: hidden !important;
    }
}

/* container width css */
@media (min-width: 576px) {
/*    .container-escort { max-width: 540px; }*/
}
@media (min-width: 768px) {
/*    .container-escort { max-width: 720px; }*/
}
@media (min-width: 992px) {
/*    .container-escort { max-width: 728px; }*/
/*    .container-escort { max-width: 960px; }*/
}
/*@media (min-width: 1200px) {
    .container-escort { max-width: 1140px; }
}*/