.services {
    margin-top: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.services2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 40px;
    margin-top: 140px;
}

.services-page {
    gap: 80px;
}

.hoverable {
    transition: .3s;
}

.hoverable:hover {
    background-color: #056DFA;
    border: 1px solid #056DFA;
    color: #FFFFFF;
    transition: .3s;
}

.service-info-item {
    display: flex;
    width: 100%;
    gap: 135px;
}

.service-info-item-img {
    display: flex;
    width: 50%;
}

.service-info-item-img img {
    width: 100%;
    max-height: 339px;
    object-fit: cover;
    border-radius: 16px;
}

.service-info-item-text-img {
    display: none;
}

.service-info-item-text {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.service-info-item-text h2 {
    font-size: 44px;
    font-weight: 600;
    letter-spacing: 0em;
    color: #056DFA;
}

.service-info-item-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    color: #13307E;
    opacity: 0.5;
}

.service-info-item-text button {
    cursor: pointer;
    font-size: 16px;
    width: 210px;
    height: 52px;
    border-radius: 16px;
    border: 1px solid #056DFA;
    color: #056DFA;
    background-color: transparent;
    transition: .3s;
}

.info-img-right {
    display: flex;
    flex-direction: row-reverse;
}

.service-heading {
    font-size: 44px;
    font-weight: 600;
    line-height: 52px;
    letter-spacing: 0em;
    color: #056DFA;
}

.service-plans {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    padding-top: 60px;
}

.mobile-service-more-button {
    display: none;
}

.service-plan-card {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url(../img/plan-card-bg.png);
    width: 325px;
    height: 410px;
    border-radius: 30px;
    color: #FFFFFF;
}

.service-plan-card-heading {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.service-plan-card-heading h3 {
    font-size: 30px;
    font-weight: 700;
    height: min-content;
    letter-spacing: 0em;
}

.service-plan-card-heading p {
    font-size: 16px;
    font-weight: 400;
    height: min-content;
    letter-spacing: 0em;
}

.service-plan-card-price {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.service-plan-card-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.service-plan-card-info p,
.service-plan-card-price p {
    font-size: 16px;
    font-weight: 400;
    height: min-content;
}

.service-plan-card-info span {
    font-size: 30px;
    font-weight: 500;
    height: min-content;
    letter-spacing: 0em;
}

.service-plan-card-price span {
    font-size: 36px;
    font-weight: 800;
    height: min-content;
    letter-spacing: 0em;
}

.service-plan-card-button {
    width: 100%;
    display: flex;
    justify-content: center;

}

.service-plan-card-button button {
    display: flex;
    cursor: pointer;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
    width: 275px;
    height: 50px;
    border: 0;
    border-radius: 16px;
    background-color: #FFFFFF;
    color: #056DFA;
    font-size: 16px;
}


.service-type {
    margin-top: 35px;
    border: 1px solid #056DFA80;
    border-radius: 16px;
    width: 325px;
    height: 52px;
    display: flex;
    justify-content: space-around;
    overflow: hidden;
}

.service-type button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: #056DFA;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 23px;
    letter-spacing: 0em;
    text-align: left;
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

.service-type-active {
    color: #F1F1F1 !important;
    background-color: #056DFA !important;
}

.service-type-left {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}

.service-type-right {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.service-info-item-text button:hover {
    background-color: #056DFA;
    border: 1px solid #056DFA;
    color: #FFFFFF;
    transition: .3s;
}


.service-hide {
    display: none;
}

.new-card-service {
    width: 100%;
    height: auto;
    border-radius: 30px;
    background-color: #FFFFFF;
    box-shadow: 0px 6px 35px 0px #829DBC26;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 50px;
    gap: 60px;
}

.new-card-service-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.new-card-service-container p h1,
.new-card-service-container p h2,
.new-card-service-container p h3,
.new-card-service-container p h4,
.new-card-service-container p h5,
.new-card-service-container p h6 {
    color: #056DFA !important;
}

.new-card-service-container h1,
.new-card-service-container h2,
.new-card-service-container h3,
.new-card-service-container h4,
.new-card-service-container h5,
.new-card-service-container h6 {
    color: #056DFA !important;
}

.new-card-service-container span {
    color: inherit !important;
    font-size: inherit !important;
}


.new-card-service-container p {
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    color: #13307E !important;
}

.new-card-service-container ul, .new-card-service-container ol {
    color: #13307E !important;
}

button {
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    height: 52px;
    border-radius: 16px;
    border: 1px solid #056DFA;
    color: #056DFA;
    background-color: transparent;
    transition: .3s;
}