/** Customizations **/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    --blue: #102fff;
    --white: #ffffff;
    --black: #17171d;
    --border-grey-color: #00000026;
  }

.services-tab-container{
    display: flex;
    gap: 10px;
    padding: 5px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.services-tab-container:first-child{
    justify-content: center;
    border: 1px solid #dcdcdc;
}

.services-title{
    display: flex;
    justify-content: center;
    gap: 10px;
    border: none;
  }

.services-title .title{
    display: flex;
    gap: 10px;
    align-items: center;
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 50px;
    color: var(--black);
    background-color: var(--white);
    border: none !important;
}

.services-title .active{
    color: var(--white);
    background-color: var(--blue);
}

.services-title img{
    width: 28px;
}

.invert-filter{
    filter: invert(1);
}

.services-content{
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-content .thumbnail{
    min-width: 500px;
    width: 500px;
    object-fit: cover;
    border-radius: 40px;
}

.services-content h1, .services-content h2, .services-content h3, .services-content h4, .services-content h5, .services-content h6 {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
}

.services-content p{
    font-size: 16px;
    font-weight: 500;
    color: #77797b;
}

.services-content ul{
    margin-top: 30px;
    padding: 0;
}

.services-content li{
    font-size: 16px;
    font-weight: 500;
    list-style: none;
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 40px;
    border: 1px solid var(--border-grey-color);
}

.services-content .icon{
    width: 16px;
    margin-right: 5px;
    position: relative;
    top: 2px;
}

.cta{
    display: inline-block;
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-size: 17px;
    font-weight: bold;
    margin-top: 20px;
    padding: 10px 20px;
    color: var(--white);
    background-color: var(--blue);
    border: none !important;
    border-radius: 6px;
}

.cta img{
    position: relative;
    top: 4px;
    right: -3px;
    width: 17px;
}