/*==============================
	Section
==============================*/

.section {
    position: relative;
    padding-bottom: 60px;
}

.section--head {
    margin-top: 80px;
    padding: 60px 0 20px;
}

.section--pb {
    padding-bottom: 26px;
}

.section--content {
    padding: 0;
}

.section__title {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.section__title h1,
.section__title h2 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 16px;
    text-align: center;
    position: relative;
    width: auto;
    padding: 0 50px;
}

.section__title h1:before,
.section__title h2:before,
.section__title h1:after,
.section__title h2:after {
    content: '';
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    pointer-events: none;
    top: 50%;
    margin-top: -12px;
}

.section__title h1:before,
.section__title h2:before {
    left: 0;
    background: url("../img/dodgers/title--left.svg") no-repeat center;
}

.section__title h1:after,
.section__title h2:after {
    right: 0;
    background: url("../img/dodgers/title--right.svg") no-repeat center;
}

.section__title p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #d0d0d0;
    margin-bottom: 16px;
    text-align: center;
}

.section__title p a {
    color: #fff;
    border-bottom: 2px solid #028654;
}

.section__title p a:hover {
    border-color: transparent;
}

.section__canvas {
    position: absolute;
    top: 0;
    right: 40px;
    left: 40px;
    bottom: -24px;
    width: auto;
    max-width: none;
    padding: 0;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    opacity: 0.25;
}

.section__canvas--full {
    right: 0;
    left: 0;
    bottom: 0;
    border-radius: 0;
}

.section__tabs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    border: none;
    margin-bottom: 16px;
    margin-top: 24px;
}

.section__tabs li {
    margin-right: 25px;
}

.section__tabs li:last-child {
    margin-right: 0;
}

.section__tabs button {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    color: #d0d0d0;
    position: relative;
    font-size: 14px;
    height: 40px;
    font-weight: 400;
    white-space: nowrap;
}

.section__tabs button:hover {
    color: #fff;
}

.section__tabs button:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    display: block;
    background: #028654;
    box-shadow: none;
    transition: 0.5s ease;
    border-radius: 3px 3px 0 0;
}

.section__tabs button.active {
    color: #fff;
}

.section__tabs button.active:before {
    height: 2px;
}

.section__tabs--big {
    justify-content: flex-start;
}

.section__tabs--left {
    justify-content: flex-start;
    margin-top: 0;
}

.section__btns {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 40px;
}

.section__btns--two {
    justify-content: space-between;
}

.section__btns--two .section__btn {
    width: calc(50% - 15px);
}

.section__btns--mt {
    margin-top: 10px;
}

.section__btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 60px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #06482f 0%, #06482f 50%, #028654 100%);
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
}

.section__btn--light {
    background: transparent;
}

.section__btn:before,
.section__btn:after {
    content: '';
    position: absolute;
    pointer-events: none;
    width: 28px;
    height: 40px;
}

.section__btn:before {
    background: url("../img/btn/left.svg") no-repeat center;
    left: 10px;
    transition: left 0.5s ease;
}

.section__btn:after {
    background: url("../img/btn/right.svg") no-repeat center;
    right: 10px;
    transition: right 0.5s ease;
}

.section__btn:hover {
    border-color: #028654;
}

.section__btn:hover:before {
    left: 15px;
}

.section__btn:hover:after {
    right: 15px;
}

.section__content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 100vh;
    padding: 40px 20px;
    position: relative;
}

@media (min-width: 414px) {
    .section__tabs button {
        font-size: 16px;
    }
}

@media (min-width: 576px) {
    .section__tabs li {
        margin-right: 30px;
    }
    .section__tabs li:last-child {
        margin-right: 0;
    }
    .section__tabs--big {
        justify-content: center;
    }
    .section__btns--two {
        justify-content: center;
    }
    .section__btns--two .section__btn {
        width: 200px;
        margin: 0 15px;
    }
    .section__btn {
        width: 200px;
    }
}

@media (min-width: 768px) {
    .section {
        padding-bottom: 70px;
    }
    .section--head {
        padding: 70px 0 30px;
    }
    .section--pb {
        padding-bottom: 26px;
    }
    .section--content {
        padding: 0;
    }
    .section__title h1,
    .section__title h2 {
        font-size: 36px;
        line-height: 50px;
    }
    .section__btns {
        margin-top: 50px;
    }
    .section__btns--two .section__btn {
        margin: 0 20px;
    }
    .section__btns--mt {
        margin-top: 20px;
    }
}

@media (min-width: 992px) {
    .section--head {
        padding: 70px 0 30px;
    }
    .section__canvas {
        top: 50px;
        right: -15px;
        left: -15px;
        bottom: 50px;
    }
    .section__canvas--page {
        top: 74px;
    }
    .section__canvas--full {
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
    }
    .section__tabs-profile {
        position: relative;
    }
    .section__tabs--profile {
        flex-direction: column;
        justify-content: flex-start;
        overflow-x: visible;
        width: 100%;
        margin-bottom: 0;
        margin-top: 24px;
        border-radius: 10px;
        border: 2px solid rgba(255, 255, 255, 0.05);
        background: linear-gradient(150deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        position: relative;
        padding: 50px 45px;
        z-index: 2;
    }
    .section__tabs--profile li {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-right: 0;
        margin-bottom: 22px;
        position: relative;
        width: 100%;
    }
    .section__tabs--profile li:before {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        right: 0;
        display: block;
        height: 2px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 20%, rgba(255, 255, 255, 0.05) 80%, rgba(255, 255, 255, 0) 100%);
    }
    .section__tabs--profile li:last-child {
        margin-right: 0;
        margin-bottom: 0;
    }
    .section__tabs--profile li:last-child:before {
        display: none;
    }
    .section__tabs--profile button {
        padding: 0 14px;
        height: 36px;
    }
    .section__tabs--profile button:before {
        width: 4px;
        height: 4px;
        right: auto;
        bottom: 50%;
        border-radius: 50%;
        left: 0;
        margin-bottom: -2px;
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    .section__tabs--profile button:after {
        content: '';
        position: absolute;
        width: 4px;
        height: 4px;
        bottom: 50%;
        border-radius: 50%;
        right: 0;
        margin-bottom: -2px;
        background-color: #028654;
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    .section__tabs--profile button.active:before {
        height: 4px;
    }
    .section__tabs--profile button.active:before,
    .section__tabs--profile button.active:after {
        opacity: 1;
    }
}

@media (min-width: 1200px) {
    .section {
        padding-bottom: 100px;
    }
    .section--head {
        padding: 70px 0 30px;
    }
    .section--pb {
        padding-bottom: 26px;
    }
    .section--content {
        padding: 0;
    }
    .section__tabs li {
        margin-right: 44px;
    }
    .section__tabs li:last-child {
        margin-right: 0;
    }
    .section__tabs--profile li {
        margin-right: 0;
    }
}