/*  */
.pageBanner {
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
}

.pageBanner > div:nth-child(2) {
    display: none;
}

.sol_summary {
    display: flex;
    margin: 150px 0px;
    /* height: 358px; */
    /* align-items: center; */
    max-width: 1200px;
    left: 50%;
    transform: translate(-50%, 0px);
}
.sum_img {
    height: 371px;
    margin-right: 53px;
    background-size: cover !important;
    background-repeat: no-repeat;
}
.sum_img ~ div {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.sol_summary .contactBtn {
    color: var(--main);
    border: 1px solid var(--main);
    margin: 30px 0 0;
    width: auto;
    padding: 20px 40px;
    font-size: 18px;
    transition: all ease-in-out .1s;
}
.sol_summary .contactBtn:hover {
    color: white;
    background: var(--main);
    border-color: transparent;
}

.sol_summary h2 {
    border-bottom: 1px solid lightgray;
    padding-bottom: 15px;
    width: 100%;
}
.sum_desc {
    /* height: calc(100% - 85px); */
    word-break: keep-all;
    text-align: left;
    font-size: 18px;
    font-weight: 300;
    color: var(--bodyText);
}
.sol_body {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    left: 50%;
    transform: translate(-50%, 0px);
}
.sol_body h1 {
    border-bottom: 1px solid lightgray;
    padding-bottom: 10px;
    width: 100%;
}
.sol_body p {
    width: 60%;
    margin: 50px 0px;
    text-align: left;
    word-break: keep-all;
    font-size: 18px;
    font-weight: 300;
    color: var(--bodyText);
}
.sol_body > img {
    padding: 90px 0px;
}
.sol_body > div:nth-child(5) {
    padding-top: 90px;
    display: flex;
    gap: 50px;
    
}
.sol_body > div:nth-child(5).group {
    height: 270px;
}
.sol_body > div:nth-child(5) img {
    height: 100%;
    width: auto;
}
.switchPageBtn {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0px;
}
.sol_body div a {
    margin: 10px;
    color: var(--main) !important;
    border: 1px solid var(--main);
    padding: 20px 40px;
    transition: all ease-in-out .1s;
}

@media screen and (max-width: 900px) {
    .sol_summary {
        margin: 30px 0px;
        height: auto;
        flex-direction: column-reverse;
    }
    .sum_img {
        height: calc(100vw * (602/930));
        margin-bottom: 40px;
    }
    .sum_img ~ div {
        text-align: center;
        margin-bottom: 20px;
        padding: 10px 20px;
        align-items: center;
    }
    
    .sol_body p {
        width: 90%;
        font-size: 16px;
        margin: 20px 0px;
    }
    .sol_body div {
        flex-direction: column;
    }
    .sol_body div a {
        width: 300px;
    }
    .sol_body > img {
        padding: 40px 0px;
    }
    .sol_body > div:nth-child(5)  {
        height: auto !important;
        padding-top: 40px;
    }
    .sol_body > div:nth-child(5) img {
        max-width: 90%;
        width: 76% !important;
        height: auto;
        margin: 0 auto;
    }
    .sol_body > div:nth-child(5) img:nth-child(2){
        width: 90% !important;
    }
    .sol_body > div:nth-child(5) img:nth-child(3){
        width: 55% !important;
    }
    
    .sum_desc {
        font-size: 16px;
        margin: 20px 0px;
    }
    .sol_summary .contactBtn {
        width: 300px;
    }
}

@media (hover: hover) {
    .sol_body div a:hover {
        color: white !important;
        background: var(--main);
        border-color: transparent;
    }
}