#main-content.container {
    width: 100%;
}

div.breadcrumb-x {
    box-shadow: 0 1px 1px rgb(0 0 0 / 10%);
    position: relative;
    z-index: 1;
    margin: 0;
}

#main-content.container > section {
    margin: 0 0 20px 0;
}

#main-content.container > section.section-video {
    margin: 0 0 15px 0;
}

.section-authentication {
    padding: 120px 20px;
}

.section-info,
.section-stats,
.section-quote,
.section-download,
footer.index {
    padding: 70px 20px;
}

section > .container::before,
section > .container::after {
    display: none;
}

/* Section Authentication */
.section-authentication {
    background: #fff url('/assets/images/custom/start.svg') no-repeat center center;
    background-size: cover;
}

.section-authentication h1 {
    font-size: 64px;
    font-weight: bold;
}

.section-authentication > .container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.section-authentication > .container > div:first-of-type {
    flex: 1;
    padding: 0 80px 0 0;
}

.section-authentication .form-wrapper {
    border-radius: 8px;
    background-color: #f7f7f7;
    padding: 50px 0;
    margin: 0 50px 0 0;
}

.section-authentication .tab-content {
    border-top: 2px solid #000;
}

.section-authentication .tab-content > div {
    max-width: 500px;
}

.section-authentication .form-wrapper > label {
    cursor: pointer;
    padding: 8px 24px;
    font-weight: bold;
    position: relative;
    margin: 0;
    text-transform: uppercase;
}

.section-authentication .form-wrapper > label a,
.section-authentication .form-wrapper > label a:hover {
    text-decoration: none;
}

.section-authentication .form-wrapper > label[for="tab-login"] {
    margin-left: 35px;
}

.section-authentication .login [for="tab-login"],
.section-authentication .registration [for="tab-registration"] {
    color: #fff;
    background-color: #000;
}

.section-authentication .login [for="tab-login"] a,
.section-authentication .registration [for="tab-registration"] a {
    color: #fff;
    text-transform: uppercase;
}

.section-authentication .form-wrapper > [type="radio"] {
    display: none;
}

.section-authentication .form-control {
    outline: none;
    border: 0;
    box-shadow: none;
}

.section-authentication .registration form .col-sm-2.control-label,
.section-authentication .password-change form .col-sm-2.control-label {
    width: 25%;
}

.section-authentication .registration form .col-sm-10,
.section-authentication .password-change form .col-sm-10 {
    width: 75%;
}

.section-authentication .eye-input-group {
    border: 0;
    background-color: #fff;
}

@media(max-width: 600px) {
    .section-authentication {
        padding: 50px 20px;
        background-image: none;
    }

    .section-authentication h1 {
        font-size: 32px;
    }
}

@media(max-width: 776px) {
    .section-authentication .form-wrapper {
        flex: 1;
        margin: 0;
    }

    .section-authentication > .container > div:first-of-type {
        flex: auto;
        padding: 0;
    }
}


/* Section Info */
.section-info {
    background-color: #f7f7f7;
}

.section-info h3 {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin: 0 0 30px;
}

.section-info h4 {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 10px 0 10px;
    line-height: 130%;
}

.section-info > .container > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 80px;
}

.section-info article  {
    flex: 1;
    min-width: 250px;
}

.section-info article header {
    border-bottom: 2px solid #000;
    background: transparent url('/assets/images/custom/laptop.svg') no-repeat center center;
    height: 130px;
}

@media(max-width: 600px) {
    .section-info > .container > div {
        gap: 20px;
    }
}

/* Section Stats */
.section-stats {
    background-color: #000;
    color: #fff;
}

.section-stats > .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 20px;
}

.section-stats > .container > div  {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-stats > .container > div > span:first-of-type {
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 10px 0;
    line-height: 120%;
}

.section-stats > .container > div > span:last-of-type {
    font-size: 12px;
    text-transform: uppercase;
}

/* Section Quote */
.section-quote  {
    background: transparent url('/assets/images/custom/flowers.jpg') no-repeat center center;
}

.section-quote blockquote {
    max-width: 600px;
    border: 0;
    margin: 0 auto;
    position: relative;
    padding: 0 80px;
}

.section-quote blockquote::before,
.section-quote blockquote::after {
    width: 50px;
    height: 50px;
    background-size: contain !important;
    position: absolute;
    top: calc(50% - 25px);
}

.section-quote blockquote::before {
    content: '';
    background: transparent url('/assets/images/custom/right-quote.svg') no-repeat center center;
    left: 0;
}

.section-quote blockquote::after {
    content: '';
    background: transparent url('/assets/images/custom/left-quote.svg') no-repeat center center;
    right: 30px;
}

.section-quote blockquote p {
    font-size: 42px;
    font-weight: bold;
    line-height: 110%;
}

.section-quote blockquote span {
    font-size: 16px;
    color: #fff;
    background-color: #000;
    padding: 2px 8px;
    font-weight: 400;
}

@media(max-width: 600px) {
    .section-quote blockquote p {
        font-size: 32px;
    }
}

@media(max-width: 350px) {
    .section-quote blockquote::before,
    .section-quote blockquote::after {
        display: none;
    }

    .section-quote blockquote {
        padding: 0;
    }
}

/* Section Download */
.section-download  {
    background-color: #000;
    text-align: center;
}

.section-download h3 {
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 30px;
    color: #fff;
}

/* Section Video */
.section-video  {
   background-color: #fff;
}

/* Footer */
footer.index {
    background-color: #000;
}

footer.index > .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

footer.index a {
    color: #fff !important;
    font-size: 16px;
}
