.services {
    padding: 150px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(238, 238, 238);
}

.services-body {
    display: flex;
    align-items: stretch;
    gap: 100px;
}

.services-left {
    width: calc(33.33% - 50px);
    position: relative;
}

.services-left>span {
    font-size: 16px;
    font-weight: 800;
    color: #09ab9c;
    text-transform: uppercase;
}

.services-left>h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    padding-bottom: 25px;
}

.services-left>p {
    font-size: 18px;
    margin-bottom: 25px;
    padding-bottom: 25px;
}

.services-left>a {
    transition: 0.3s;
    display: block;
    width: 100%;
    max-width: 200px;
    background: #09ab9c;
    padding: 15px 25px;
    text-align: center;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-size: 15px;
}

.services-left>a:hover {
    transition: 0.3s;
    background: #077c70;
}

.services-right {
    width: calc(66.66% - 50px);
}

.services-card {
    border-radius: 25px;
    background: #09ab9c;
    padding: 50px 25px;
    color: white;
    min-height: 500px;
    position: relative;
}

.services-card-second {
    min-height: 475px;
}

.services-card>img {
    width: 100px;
    height: 100px;
    border: 2px solid white;
    background: #09ab9c;
    border-radius: 25px;
    padding: 15px;
    margin-bottom: 25px;
}

.services-card>h1 {
    font-size: 30px;
    font-weight: 800;
}

.services-card>p {
    margin: 15px 0;
    padding: 15px 0;
    font-size: 18px;
}

.services-card>a {
    transition: 0.2s;
    display: flex;
    color: white;
    font-size: 20px;
    text-decoration: none;
    font-weight: 800;
    position: absolute;
    bottom: 50px;
    align-items: center;
    gap: 15px;
}

.services-card>a:hover {
    transition: 0.2s;
    color: rgb(238, 238, 238);
}

.services-controls {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    padding: 50px 0;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.services-slider-nav {
    display: flex;
    gap: 10px;
    width: 80%;
}

.nav-item {
    transition: 0.3s;
    width: calc(25% - 8px);
    height: 8px;
    background: white;
    border-radius: 25px;
    border: 1px solid #09ab9c;
}

.nav-item:hover {
    transition: 0.3s;
    cursor: pointer;
    background: #09ab9c;
}

.tns-nav-active {
    background: #09ab9c;
}

.services-slider-controls {
    width: 20%;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.services-slider-controls>button {
    transition: 0.3s;
    border-radius: 5px;
    border: 1px solid #09ab9c;
    font-size: 21px;
    color: #09ab9c;
    width: 50px;
    height: 35px;
}

.services-slider-controls>button:hover {
    transition: 0.3s;
    cursor: pointer;
    background: #09ab9c;
    color: white;
}

@media (max-width: 1280px) {
    .services-card>h1 {
        font-size: 24px;
        font-weight: 800;
    }

    .services-card>p {
        margin: 15px 0;
        padding: 15px 0;
        font-size: 16px;
    }

    .services-left>h1 {
        font-size: 32px;
    }

    .services-left>p {
        font-size: 16px;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
}


/* Mobile */

.mobile-services {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 90px);
    background: rgb(238, 238, 238);
    padding-top: 90px;
}

.services-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 35px;
}

.services-top>span {
    font-size: 14px;
    font-weight: 800;
    color: #09ab9c;
    text-align: center;
}

.services-top>h1 {
    color: #101010;
    font-weight: 800;
    font-size: 28px;
    text-align: center;
}

.services-top>p {
    font-size: 14px;
    text-align: center;
}

.services-top>a {
    transition: 0.3s;
    display: block;
    width: 100%;
    max-width: 200px;
    background: #09ab9c;
    padding: 15px 25px;
    text-align: center;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    margin: 0 auto;
}

.mobile-services-card-header>img {
    max-width: 50px;
}

.mobile-services-card {
    padding: 15px;
    border-radius: 15px;
    background: #09ab9c;
}

.mobile-services-card-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.mobile-services-card-header>img {
    width: 100%;
    max-width: 75px;
}

.mobile-services-card-header>h1 {
    width: calc(100% - 90px);
    font-size: 18px;
    color: white;
}

.mobile-services-card>p {
    text-align: center;
    color: white;
    margin-bottom: 25px;
}

.mobile-services-card>a {
    display: block;
    margin: 0 auto;
    max-width: 200px;
    text-align: center;
    color: white;
    text-decoration: none;
    padding: 5px 15px;
    border: 1px solid white;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}