/*..........Inner Banner..........*/

.inner-banner {
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    position: relative;
    z-index: 0;
    background-color: #4cb0d4;
}

.inner-banner::before {
    content: "";
    position: absolute;
    top: 0;
    min-height: 100%;
    left: 0;
    right: 0;
    z-index: -1;
    background: rgb(12 12 12 / 19%);
}

.cont-background-banner {
    display: block;
    margin: 0 auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
    z-index: 100;
    z-index: 99;
    display: flex;
    align-items: center;
}

.background-banner {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

h4.inner-text-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    padding-top: 3rem;
    text-transform: uppercase;
}

.banner-custom-path {
    text-align: center;
    display: inline-block;
}

.banner-custom-path li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    text-transform: capitalize;
    color: #eee;
}

.banner-custom-path li span.fa {
    font-size: 12px;
}

.banner-custom-path a,
.banner-custom-path a:active {
    color: #fff;
    font-weight: bold;
    transition: all 0.2s linear;
}

.banner-custom-path a:hover {
    color: #d73041;
}

@media (max-width: 450px) {
    .cont-background-banner {
        /* padding-top: 80px; */
    }
    .banner-custom-path li {
        font-size: 16px;
    }
    h4.inner-text-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 568px) {
    .banner-custom-path li {
        font-size: 15px;
    }
}


/*..........End Inner Banner..........*/


/*..........Intro About..........*/

.cont-box-about-page {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.intro-article ul li {
    margin: 15px 0;
    list-style: none;
    font-size: 17px;
    line-height: 28px;
    color: #707070;
    letter-spacing: .4px;
}

.intro-article li span {
    color: #d73041;
    margin-right: 10px;
    font-size: 17px;
}

.content-top-ab {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    margin-top: 3rem;
}

.content-top-ab h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

a.call-style-ab {
    font-size: 18px;
    color: #d73041;
    font-weight: 600;
}


/*..........End Intro About..........*/


/*..........Content Team..........*/

.team-section {
    min-height: 100vh;
}

.team-container {
    width: 100%;
    margin: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.team-section .team-items {
    flex-basis: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.team-section .team-items .item {
    flex-basis: calc(25% - 30px);
    max-width: calc(25% - 30px);
    transition: all .5s ease;
    margin-bottom: 40px;
}

.team-section .team-items .item img {
    display: block;
    width: 100%;
    border-radius: 8px;
}

.team-section .team-items .item .inner {
    position: relative;
    z-index: 11;
    padding: 0 15px;
}

.team-section .team-items .item .inner .info {
    background-color: #fff;
    text-align: center;
    padding: 20px 15px;
    border-radius: 8px;
    transition: all .5s ease;
    margin-top: -40px;
}

.team-section .team-items .item:hover .info {
    transform: translateY(-20px);
    box-shadow: 0 1px 3px rgb(0 0 0 / 2%), 0 16px 32px -4px rgb(0 0 0 / 17%);
}

.team-section .team-items .item:hover {
    transform: translateY(-10px);
}

.team-section .team-items .item .inner .info h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #071230;
}

.team-section .team-items .item .inner .info p {
    font-size: 15px;
    font-weight: 400;
    color: #646a7a;
    margin: 10px 0 0;
}

.team-section .team-items .item .inner .info .social-links {
    padding-top: 15px;
}

.team-section .team-items .item .inner .info .social-links a {
    display: inline-block;
    height: 32px;
    width: 32px;
    background-color: #4cb0d4;
    color: #fff;
    border-radius: 50%;
    margin: 0 2px;
    text-align: center;
    line-height: 32px;
    font-size: 16px;
    transition: all .3s ease;
}

.team-section .team-items .item .inner .info .social-links a:hover {
    box-shadow: 0 0 10px #000;
    background-color: #d73041;
}


/*responsive*/

@media(max-width: 1199px) {
    .team-section .team-items .item {
        flex-basis: calc(50% - 30px);
        max-width: calc(50% - 30px);
    }
}

@media(max-width: 767px) {
    .team-section .team-items .item {
        flex-basis: calc(100%);
        max-width: calc(100%);
    }
}


/*..........End Content Team..........*/