:root {
    --white-color: #ffffff;
    --primary-color: #535da1;
    --secondary-color: #a2759b;
    --section-bg-color: #f9f9f9;
    --dark-color: #000000;
    --p-color: #717275;
    --border-color: #e9eaeb;
    --featured-border-color: #727aab;

    --body-font-family: "DM Sans", sans-serif;

    --h1-font-size: 62px;
    --h2-font-size: 48px;
    --h3-font-size: 36px;
    --h4-font-size: 32px;
    --h5-font-size: 24px;
    --h6-font-size: 22px;
    --p-font-size: 18px;
    --menu-font-size: 12px;
    --copyright-font-size: 14px;

    --border-radius-large: 100px;
    --border-radius-medium: 20px;
    --border-radius-small: 10px;

    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
}


/*---------------------------------------
    CUSTOM BUTTON               
  -----------------------------------------*/
.custom-btn,
.navbar .custom-btn {
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-bold);
}

.navbar .custom-btn {
    background: transparent;
    border-width: 1%;
    border-style: solid;
    border-color: var(--white-color);
    color: var(--white-color);
}

.navbar .custom-btn:hover {
    background: var(--white-color);
    border-color: transparent;
    color: var(--secondary-color);
}

.custom-btn {
    background: #a2759b;
    border-radius: var(--border-radius-large);
    color: var(--white-color);
}

.custom-btn:hover {
    background: var(--primary-color);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    color: var(--white-color);
}

.custom-border-btn {
    background: #855ae6;
    border: 2px solid #a2759b;
    color: #fff;
    display: table;
}

.custom-border-btn:hover {
    background: #855ae6;
    border-color: #a2759b;
    color: #656565;
}

.custom-link {
    background-color: var(--primary-color);
}

.custom-link:hover {
    background-color: var(--secondary-color);
}

/*---------------------------------------
    SERVICES              
  -----------------------------------------*/
.services,
.featured {
    background: var(--section-bg-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.services-thumb {
    background: var(--white-color);
    border: 1px solid #855ae6;
    border-radius: var(--border-radius-medium);
    position: relative;
    overflow: hidden;
    margin-bottom: 3%;
    padding: 4% 4% 24% 4%;
    transition: all 0.5s;
}

.services-thumb-up {
    bottom: 50px;
    margin-bottom: -50px;
    border: 1px solid #a2759b;
}

.services-thumb:hover {
    border: 2px solid #a2759b;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

.services-thumb:hover .services-icon-wrap {
    background: #606060;
    border-color: #a2759b;
    color: var(--white-color);  
}

.services-thumb h3{
    font-size: 30px;
    background: -webkit-linear-gradient(-45deg, #a2759b, #855ae6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-thumb p{
    text-align: left;
    font-size: 16px;
    color: #c1a9b9;
}

.services-icon-wrap {
    border: 1px solid #855ae6;
    border-radius: var(--border-radius-medium);
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 55%;
    transform: rotate(-35deg) translateY(55px);
    transition: all ease 0.5s;
}

.services-icon {
    font-size: 90px;
    position: relative;
    bottom: 15px;
    background: linear-gradient(-45deg, #a2759b, #855ae6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-thumb:hover .services-price-wrap {
    background: #;
}

.services-thumb:hover .services-price-overlay {
    background: #855ae6;
}

.services-price-wrap {
    background: #855ae6;
    border-radius: var(--border-radius-medium);
    position: relative;
    overflow: hidden;
    padding: 6px 20px 6px 15px;
    transition: all ease 0.5s;
}

.services-price-text {
    color: var(--white-color);
    font-size: var(--copyright-font-size);
    font-weight: var(--font-weight-bold);
}

.services-price-overlay {
    background: #855ae6;
    border-bottom-left-radius: 100%;
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    pointer-events: none;
}

@media (max-width: 700px)
{
    .services-thumb{
        grid-template-columns: repeat(1,auto);
    }
    .services-thumb img{
        width: 100%;
    }
}
@media (min-width: 576px) {
    .services-thumb{
        grid-template-columns: repeat(1,auto);
    }
    .services-thumb img {
        width: 100%;
    }
}
@media (min-width: 768px) {
    .services-thumb{
        grid-template-columns: repeat(1,auto);
    }
    .services-thumb img {
        width: 100%;
    }
}
@media (min-width: 992px) {
    .services-thumb{
        grid-template-columns: repeat(1,auto);
    }
    .services-thumb img{
        width: 100%;
    }
}
@media (min-width: 1200px) {
    .services-thumb{
        grid-template-columns: repeat(1,auto);
    }
    .services-thumb img {
        width: 100%;
    }
}
@media (min-width: 1400px) {
    .services-thumb{
        grid-template-columns: repeat(1,auto);
    }
    .services-thumb img {
        width: 100%;
    }
}