:root {
    --violet: #5624d0;
    --grey: #eee;
    --white: #fff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    font-size: 62.5%;
}

body {
    margin: 0;
    padding: 0;
    font-family: Montserrat;
}

img, picture {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.body-wrapper {
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
    box-sizing: border-box;
    padding: 0;
}

.section-wrapper {
    margin-top: 4.8rem;
    padding-right: 2.4rem;
    padding-left: 2.4rem;
    max-width: 134rem;
    margin-left: auto;
    margin-right: auto;
}

.bg-grey {
    background-color: var(--grey);
}

.bg-black {
    color: white;
    background-color: black;
}

.bg-white {
    color: black;
    background-color: white;
}

/********************************************
    Mobile Header
********************************************/

.promotion-banner-wrapper {
    width: 100%;
    background-color: var(--violet);
}

.promotion-banner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.promotion-banner-text {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.6rem 0 1.6rem 2.4rem;
    width: 90%;
    color: var(--white);
}

.promotion-banner-text div span {
    font-size: 1.4rem;
}

.promotion-banner-text div span:first-child {
    font-weight: 700;
}

.promotion-baner-close button {
    margin: 0 1rem;
}

.font-size-1-4rem {
    font-size: 1.4rem;
}

.font-weight-700 {
    font-weight: 700;
}

.exit-button {
    margin: .8rem;
    background-color: transparent;
    color: white;
    border: none;
}

.exit-button img {
    width: 1.5rem;
    height: 1.5rem;
}

.toolbar-wrapper {
    width: 100%;
    height: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.08);
    position: relative;
    z-index: 100;
}

.toolbar-mobile {
    background: white;
    padding: .4rem;
    display: flex;
}

.menu-button img {
    width: 2.4rem;
    height: 2.4rem;
}

.menu-button {
    background-color: transparent;
    color: white;
    border: none;
    padding: 0 1.2rem;
    width: 4.8rem;
    height: 4.8rem;
}

.toolbar-mobile .empty-block {
    width: 4.8rem;
    height: 4.8rem;
    visibility: hidden;
}

.toolbar-mobile .logo {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 850px) {
    .toolbar-mobile {
        display: none;
    }
}


/********************************************
    Desktop Header
********************************************/
.toolbar-desktop {
    background: #fff;
    height: 7.2rem;
    padding: 0 2.4rem;
    position: relative;
    align-items: center;
    display: flex;
}

.toolbar-desktop .button-box {
    margin-left: .4rem;
}

.toolbar-desktop .anchor-box button {
    align-items: center;
    border: none;
    background-color: transparent;
    margin: 1.2rem 0;
    padding: 0 1.2rem;
    font-family: var(--font-stack-text);
    font-weight: 400;
    font-size: 1.4rem;
    color: #2d2f31;
}

.toolbar-desktop .button-box button {
    align-items: center;
    border: none;
    margin: 1.2rem 0;
    padding: 0 1.2rem;
    font-family: var(--font-stack-text);
    font-weight: 400;
    font-size: 1.4rem;
    height: 4rem;
    border: 1px solid #2d2f31;
}

.toolbar-desktop .button-box img {
    width: 2rem;
    height: 2rem;
}

.toolbar-desktop .button-box button:nth-child(2) {
    background-color: #222;
}

.toolbar-desktop .search-bar {
    min-width: 18rem;
    max-width: 60rem;
    position: relative;
    flex-grow: 1;
    height: 4.8rem;
    border: 1px solid #2d2f31;
    border-radius: 9999px;
    background-color: #f7f9fa;
    margin: 0 1.2rem;
    max-width: none;
}

.toolbar-desktop .search-bar .input-container {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 2.4rem 0 0;
    flex-direction: row-reverse;
}

.toolbar-desktop .search-bar .input-container:focus {
    border: none;
}

.toolbar-desktop .search-bar .input-container input {
    font-family: var(--font-stack-text);
    font-size: 1.4rem;
    width: 100%;
    height: 3.4rem;
    flex: 1;
    padding: 0 0 0 .4rem;
    background-color: transparent;
    border: none;
}

.toolbar-desktop .search-bar .input-container input:focus {
    border: none;
}

.toolbar-desktop .search-bar .input-container button {
    border: none;
    width: 4.8rem;
    background-color: transparent;
    opacity: .5;
}

.toolbar-desktop .search-bar .input-container button img {
    fill: currentColor;
    display: inline-block;
    flex-shrink: 0;
    width: 2.4rem;
    height: 2.4rem;
    color: #2d2f31;
}

@media screen and (max-width: 850px) {
    .toolbar-desktop {
        display: none;
    }
}

@media screen and (max-width: 1200px) {
    .udemy-business-btn {
        display: none;
    }
}

@media screen and (max-width: 1000px) {
    .teach-at-udemy-btn {
        display: none;
    }
}


/********************************************
    Billboard
********************************************/

.billboard-wrapper {
    max-width: 134rem;
    margin: 0 auto;
    margin-bottom: 2.4rem;
}

.billboard-carrousel-scroll-port {
    scrollbar-width: none;
    display: flex;
    overflow: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    touch-action: manipulation;
}

.billboard-carrousel-scroll-port-container {
    display: block;
    margin: 0 auto;
    position: relative;
    min-width: 100%;
    scroll-snap-align: start;
}

.billboard-carrousel-scroll-port-container .picture-container {
    margin-bottom: 1.6rem;
}

.billboard-carrousel-scroll-port-container .picture-container picture {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.billboard-carrousel-scroll-port-container .picture-container picture img {
    object-fit: cover;
    height: 25rem;
    object-position: center;
    min-width: 32rem;
    max-width: 100%;
    aspect-ratio: auto 1340 / 400;
}

.billboard-carrousel-scroll-port-container .caption-container {
    display: flex;
    flex-direction: column;
    box-shadow: none;
    background: #fff;
    width: 100vw;
}

.caption-container h1 {
    font-size: 2.8rem;
    padding: 0 2.4rem;
    margin-bottom: .8rem;
    font-family: SuisseWorks;
}

.caption-container p {
    line-height: 1.4;
    font-size: 1.4rem;
    padding: 0 2.4rem;
}

.billboard-carrousel-scroll-port-container .search-input-container {
    display: flex;
    flex-direction: column;
    padding: 2.8rem 2.4rem 0;
}

.search-input-container button {
    font-family: var(--font-stack-text);
    font-size: 1.6rem;
    position: relative;
    align-items: center;
    cursor: pointer;
    display: inline-flex;
    height: 4.8rem;
    background-color: transparent;
    border: 1px solid #2d2f31;
    color: #6a6f73;    
}

.search-input-container button span {
    left: 1.2rem;
    position: absolute;
}

.search-input-container button img {
    width: 2.4rem;
    height: 2.4rem;
    margin-left: .4rem;
    right: 1.2rem;
    position: absolute;
}

.billboard-carrousel-scroll-port-container .plans-button-container {
    margin-top: 1.6rem;
    flex: 1;
    display: flex;
    padding-left: 2.4rem;
    padding-bottom: 1.6rem;
}

.plans-button-container a {
    align-items: center;
    display: inline-flex;
    padding: 0 1.2rem;
    height: 4.8rem;
    color: white;
    background-color: black;
    font-weight: 700;
    font-size: 1.6rem;
}

@media screen and (min-width: 700px) {
    .billboard-carrousel-scroll-port-container .picture-container picture img {
        min-width: initial;
        width: 100vw;
        height: auto;
        object-fit: contain;
        object-position: initial;
    }
}

@media screen and (min-width: 850px) {
    .billboard-carrousel-scroll-port-container .caption-container  {
        width: 40rem;
        left: 3.8rem;
        top: 3.8rem;
        position: absolute;
        box-shadow: 0 2px 4px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.08);
        padding: 2.4rem;
    }

    .billboard-carrousel-scroll-port-container .search-input-container {
        display: none;
    }

    .billboard-carrousel-scroll-port-container .plans-button-container {
        display: none;
    }

    .caption-container p {
        padding-right: 0;
    }

}

@media screen and (min-width: 1000px) {
    .billboard-carrousel-scroll-port-container .caption-container  {
        width: 40rem;
        left: 4.8rem;
        top: 4.8rem;
    }
    .billboard-carrousel-scroll-port-container .caption-container h1 {
        font-size: 3.1rem;
    }
    .billboard-carrousel-scroll-port-container .caption-container p {
        font-size: 1.6rem;
    }
}

@media screen and (min-width: 1200px) {
    .billboard-carrousel-scroll-port-container .caption-container  {
        left: 5.6rem;
        top: 5.6rem;
    }

    .billboard-carrousel-scroll-port-container .caption-container h1 {
        font-size: 3.6rem;
    }

    .billboard-carrousel-scroll-port-container .caption-container p {
        font-size: 1.8rem;
    }
}

/********************************************
    Trusted by
********************************************/
.trusted-by-wrapper {
    background-color: var(--grey);
}

.trusted-by-content {
    width: auto;
    max-width: 134rem;
    margin-right: auto;
    margin-left: auto;
    padding-right: 2.4rem;
    padding-left: 2.4rem;
}

.trusted-by-content-grid {
    display: flex;
    flex-direction: column;
    padding: 4.8rem 2.4rem;
    align-items: center;
    text-align: center;
}

.trusted-by-content-grid h2 {
    color: #6a6f73;
    font-weight: 400;
    margin-bottom: 2.4rem;
    font-size: 1.4rem;
}

.company-logos {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 4fr);
    grid-gap: 1.6rem;
}

.company-logos li {
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0;
}

@media screen and (min-width: 700px) {
    .trusted-by-content-grid h2 {
        font-size: 1.9rem;
    }
}

@media screen and (min-width: 1000px) {
    .company-logos {
        display: grid;
        grid-auto-flow: column;
        justify-content: space-between;
    }
}

/********************************************
    Wide range of courses
********************************************/
.wide-range-options-caption {
    margin-bottom: 1.6rem;
}

.wide-range-options-caption h2 {
    font-family: 'SuisseWorks';
    font-size: 2.8rem;
    line-height: 1.35;
}

.wide-range-options-caption p {
    font-weight: 400;
    line-height: 1.4;
    font-size: 1.9rem;
    margin: 1.6rem 0 0;
}

.acordeon-topic-option {
    border-top: 1px solid #d1d7dc;
}

.acordeon-topic-option-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.6rem 0;
}

.acordeon-topic-option-title h3 button {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    font-size: 1.9rem;
    border: none;
    cursor: pointer;
    background-color: transparent;
}

.acordeon-topic-option-title img {
    width: 2rem;
    height: 2rem;
    color: #2d2f31;
    transform: rotate(-180deg);
}

.acordeon-topic-option-content {
    padding: .8rem 0 1.6rem;
}

.acordeon-topic-option-content .courses-grid {
    scrollbar-width: none;
    overflow: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    touch-action: manipulation;
    -webkit-overflow-scrolling: touch;
    display: grid;
    grid-auto-columns: clamp(17.3rem, 75%, 37.5rem);
    grid-auto-flow: column;
    grid-gap: 1.6rem;
}

.acordeon-topic-option-content .courses-grid .courses-grid-item-wrapper {
    min-width: .1rem;
    scroll-snap-align: start;
}

.courses-grid-item-wrapper .courses-grid-item-content {
    height: 100%;
    width: 100%;
}

.courses-grid-item-content .courses-grid-item-content-card {
    display: grid;
    gap: .8rem;
    grid-template-rows: auto 1fr;
}

.courses-grid-item-content-card .caption .title h3 {
    font-size: 1.6rem;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: .8rem;
}

.courses-grid-item-content-card .caption .author {
    line-height: 1.4;
    font-size: 1.2rem;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: .8rem;
}

.rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: .8rem;
}

.rating .score {
    display: inline-flex;
    align-items: center;
}

.score span {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    font-size: 1.4rem;
    margin-right: .4rem;
    color: #4d3105;
}
.score p {
    font-weight: 400;
    line-height: 1.4;
    font-size: 1.2rem;
    color: #6a6f73;
    margin-left: .4rem;
}

.rating .score .stars {
    display: flex;
}

.rating .score .stars img {
    width: 1.7rem;
    height: 1.7rem;
}

.price {
    align-items: center;
    color: #2d2f31;
    display: flex;
    flex-flow: row wrap;
}

.price span {
    color: #2d2f31;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    font-size: 1.6rem;
    line-height: 1;
    padding: .4rem 0;
    margin-right: .8rem;
    white-space: nowrap;
}

.price s {
    font-size: 1.4rem;
    color: #555;
}

.topic-filtered-grid {
    position: relative;
}

.topic-filters {
    scrollbar-width: none;
    overflow: auto;
    overflow-y: hidden;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    touch-action: manipulation;
    display: grid;
    grid-auto-columns: max-content;
    grid-auto-flow: column;
    grid-gap: 1.6rem;
}

.topic-filters button {
    font-family: var(--font-stack-heading);
    font-weight: 700;
    font-size: 1.6rem;
    align-items: center;
    border: none;
    cursor: pointer;
    display: inline-flex;
    min-width: 8rem;
    justify-content: center;
    height: 4.8rem;
    background: 0 0;
    padding: .8rem .4rem;
    color:grey;
}

.topic-filters button:nth-child(1) {
    color:black;
}

.topics-grid {
    cursor: auto;
    padding: 0;
    padding-top: 0 !important;
    max-width: none;
    max-height: none;
    overflow: visible;
    visibility: visible;
    border: 1px solid #d1d7dc;
    padding: 3.2rem;
    padding-top: 3.2rem;
    width: 100%;
    margin-bottom: 2rem;
}

.topics-grid .topics-grid-caption {
    border: 1px solid #d1d7dc;
    margin-top: 3.2rem;
    border: none;
    margin-bottom: .8rem;
    max-width: 80rem;
}

.topics-grid .topics-grid-caption h2 {
    font-size: 2.4rem;
    margin-bottom: 2.4rem;
}

.topics-grid .topics-grid-caption p {
    line-height: 1.4;
    font-size: 1.6rem;
    display: -webkit-box!important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 1.6rem;
}

.topics-grid a {
    font-weight: 700;
    font-size: 1.4rem;
    align-items: center;
    cursor: pointer;
    display: inline-flex;
    min-width: 8rem;
    padding: 0 1.2rem;
    justify-content: center;
    height: 4rem;
    border: 1px solid #2d2f31;
}

.topic-filtered-grid .courses-carrousel {
    margin-top: 2rem;
    scrollbar-width: none;
    overflow: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    touch-action: manipulation;
    -webkit-overflow-scrolling: t;
    display: grid;
    grid-auto-flow: column;
    grid-gap: 1.6rem;
    grid-auto-columns: calc((100% - (3 - 1) * 1.6rem) / 3);
}

@media screen and (min-width: 700px) {
    .topics-list {
        display: none;
    }
}

@media screen and (max-width: 699px) {
    .topic-filtered-grid {
        display: none;
    }
}

@media screen and (min-width: 1000px) {
    .topic-filtered-grid .courses-carrousel {
        grid-auto-columns: calc((100% - (4 - 1) * 1.6rem) / 4);
    }
}

@media screen and (min-width: 1200px) {
    .topic-filtered-grid .courses-carrousel {
        grid-auto-columns: calc((100% - (5 - 1) * 1.6rem) / 5);
    }
}

/********************************************
    The students are viewing
********************************************/
.viewed-by-students-title h2 {
    line-height: 1.2;
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.viewed-by-students-content {
    scrollbar-width: none;
    overflow: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    touch-action: manipulation;
    display: grid;
    grid-auto-columns: max-content;
    grid-auto-flow: column;
    grid-gap: 1.6rem;
    grid-template-rows: repeat(2, 1fr);
    margin-bottom: 2rem;
}

.viewed-by-students-content .item-wrapper {
    scroll-snap-align: start;
}

.item-wrapper .card {
    display: grid;
    width: 17.3rem;
    gap: .8rem;
    grid-template-columns: auto 1fr;
    min-width: 22.2rem;
    max-width: 55.2rem;
    height: 100%;
}

.item-wrapper .card .image-wrapper {
    align-self: start;
    background-color: #2d2f31;
    border: 1px solid #d1d7dc;
    overflow: hidden;
    position: relative;
}


.item-wrapper .card .image-wrapper img {
    display: block;
    transition: opacity linear 100ms;
    width: 4.8rem;
    height: 4.8rem;
}

.item-wrapper .card .caption-wrapper {
    color: #2d2f31;
    white-space: nowrap;
    min-width: 1px;
}


.item-wrapper .card .caption-wrapper .title h3 {
    font-size: 1.4rem;
    display: -webkit-box!important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
}

.item-wrapper .card .caption-wrapper .author {
    font-weight: 400;
    line-height: 1.4;
    font-size: 1.2rem;
    margin-bottom: .4rem;
}

.item-wrapper .card .caption-wrapper .author p {
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    color: #6a6f73;
}

.best-seller {
    margin: .8rem 0 .4rem;
}

.best-seller-container {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem .8rem;
}

.best-seller-content {
    font-weight: 700;
    line-height: 1.2;
    font-size: 1.2rem;
    letter-spacing: .02rem;
    padding: .4rem .8rem;
    color: #3d3c0a;
    background-color: #eceb98;
}

/********************************************
    Main categories
********************************************/
.main-categories-content {
    margin-bottom: 4.8rem;
}

.main-categories-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.main-categories-content ul {
    margin: -.8rem 0 0 -.8rem;
}

.main-categories-content ul li {
    margin: .8rem 0 0 .8rem;
    display: inline-block;
}

.main-categories-content ul  li a {
    font-weight: 700;
    font-size: 1.6rem;
    align-items: center;
    display: inline-flex;
    padding: 0 1.2rem;
    height: 4.8rem;
    border: 1px solid #2d2f31;
    border-radius: 9999px;
}

/********************************************
    Categories
********************************************/
.categories-section {
    background-color: #eee;
    padding-bottom: 4.8rem;
}

.categories-wrapper {
    margin-top: 4.8rem;
    padding-right: 2.4rem;
    padding-left: 2.4rem;
    max-width: 134rem;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
    background-color: #EEE;
}

.categories-title {
    margin-bottom: 2rem;
}

.categories-title h2 {
    font-size: 2.4rem;
}

.categories-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.categories-content .categories-content-item {
    display: inline-block;
    margin-bottom: 2.4rem;
    width: 50%;
    padding-right: .8rem;
}

.categories-content-item h3 {
    font-size: 1.6rem;
}

.categories-content .categories-content-item .categories-content-item-list-element {
    margin-top: 2rem;
}

.categories-content .categories-content-item .categories-content-item-list-element a {
    color: #5624d0;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: underline;
}

.categories-content .categories-content-item .categories-content-item-list-element p {
    margin-top: .8rem;
    font-size: 1.2rem;
    color: #6a6f73;
}

.transparent-button {
    font-weight: 700;
    font-size: 1.4rem;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    height: 4rem;
    border: 1px solid #2d2f31;
    width: 100%;
}

@media screen and (min-width: 700px) {
    .categories-content .categories-content-item {
        width: calc(100% / 4 - 1.6rem);
    }
    .categories-wrapper .transparent-button {
        width: auto;
        padding: .4rem 1.8rem;
    }
}

/********************************************
    Udemy business
********************************************/
.udemy-business-wrapper {
    width: 100%;
    max-width: 134rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
    padding-right: 2.4rem;
    padding-left: 2.4rem;
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
}

.udemy-business-wrapper .udemy-business-image {
    display: flex;
    align-items: center;
    margin-left: 1.8rem;
}

.udemy-business-wrapper .udemy-business-image img {
    width: 48rem;
    margin: 3.2rem auto;
}

.udemy-business-wrapper .udemy-business-content {
    max-width: 54rem;
    margin: 0 auto;
    text-align: center;
}

.udemy-business-wrapper .udemy-business-content img {
    width: 192px;
    aspect-ratio: auto 192 / 32;
    height: 32px;
    margin: 3.2rem auto;
}

.udemy-business-wrapper .udemy-business-content h3 {
    font-family: 'SuisseWorks';
    font-size: 2.4rem;
    line-height: 1.35;
    margin-bottom: 1.6rem;
}


.udemy-business-wrapper .udemy-business-content .udemy-business-features-list {
    margin-bottom: 1.6rem;
}

.udemy-business-features-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: none;
}

.udemy-business-features-list ul li .udemy-business-feature  {
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    text-align: left;
    padding: .4rem 0;
    margin-bottom: 1.2rem
}

.udemy-business-features-list ul li .udemy-business-feature img {
    fill: currentColor;
    display: inline-block;
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    margin-top: 1rem;
    color: #2d2f31;
}

.udemy-business-features-list ul li .udemy-business-feature div {
    flex: 1;
    min-width: 1px;
    min-height: 2.24rem;
    margin-left: 1.6rem;
    font-size: 1.7rem;
    color: black;
}

.udemy-business-wrapper .udemy-business-content .udemy-business-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.udemy-business-buttons .get-udemy-business {
    width: 100%;
    margin-bottom: 1.8rem;
}

.udemy-business-buttons .more-info {
    width: 100%;
    margin: 0 0 .8rem;
}

.udemy-business-buttons .more-info .more-info-button a {
    font-weight: 700;
    font-size: 1.4rem;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    height: 4rem;
    border: 1px solid #2d2f31;
    width: 100%;
}

.udemy-business-buttons .get-udemy-business a {
    text-decoration: none;
    letter-spacing: 0;
    font-size: 1.6rem;
    align-items: center;
    cursor: pointer;
    display: inline-flex;
    padding: 0 1.2rem;
    justify-content: center;
    height: 4.8rem;
    color: white;
    background-color: #222;
    width: 100%;
}

.udemy-business-buttons .more-info a {
    text-decoration: none;
    letter-spacing: 0;
    font-size: 1.6rem;
    align-items: center;
    cursor: pointer;
    display: inline-flex;
    padding: 0 1.2rem;
    justify-content: center;
    height: 4.8rem;
    color: #000;
    background-color: #fff;
    width: 100%;
    border: 1px solid black;
}

@media screen and (min-width: 1000px) {
    .udemy-business-wrapper {
        display: flex;
        flex-direction: row-reverse;
    }

    .udemy-business-wrapper img {
        width: 400px;
        height: 400px;
        margin-left: 4.8rem;
    }

    .udemy-business-wrapper .udemy-business-content {
        max-width: 56rem;
    }
    
    .udemy-business-wrapper .udemy-business-content .udemy-business-buttons {
        flex-direction: row;
    }

    .udemy-business-buttons .get-udemy-business {
        margin-bottom: 0;
        margin-right: 1.8rem
    }

    .udemy-business-wrapper .udemy-business-content h3 {
        font-size: 3.2rem;
    }
}

/********************************************
    Become an instructor
********************************************/
.become-an-instructor-wrapper {
    width: 100%;
    max-width: 134rem;
    display:flex;
    flex-direction: column;
    margin-right: auto;
    margin-left: auto;
    padding-right: 2.4rem;
    padding-left: 2.4rem;
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
    margin-bottom: 2.8rem;
}

.become-an-instructor-wrapper .become-an-instructor-img {
    display: flex;
    align-items: center;
    margin-left: 1.8rem;
}

.become-an-instructor-wrapper .become-an-instructor-img img {
    width: 48rem;
    margin: 3.2rem auto;
}

.become-an-instructor-wrapper .become-an-instructor-content {
    max-width: 60rem;
    margin: 0 auto;
    text-align: center;   
}

.become-an-instructor-wrapper .become-an-instructor-content h3 {
    font-family: 'SuisseWorks';
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.35;
    letter-spacing: -.012rem;
    max-width: 36em;
    margin-bottom: 1.6rem;
    margin-top: 2rem;
}


.become-an-instructor-wrapper .become-an-instructor-content p {
    font-weight: 400;
    line-height: 1.4;
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
}

.become-an-instructor-wrapper .become-an-instructor-content .become-an-instructor-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.become-an-instructor-buttons .start-today {
    width: 100%;
    margin: 0 0 .8rem;
}

.become-an-instructor-buttons .start-today a {
    text-decoration: none;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    font-size: 1.6rem;
    position: relative;
    align-items: center;
    border: none;
    cursor: pointer;
    display: inline-flex;
    min-width: 8rem;
    padding: 0 1.2rem;
    justify-content: center;
    user-select: none;
    -webkit-user-select: none;
    vertical-align: bottom;
    white-space: nowrap;
    height: 4.8rem;
    color: white;
    background-color: #222;
    width: 100%;
}

@media screen and (min-width: 1000px) {
    .become-an-instructor-wrapper {
        flex-direction: row;
    }

    .become-an-instructor-wrapper .become-an-instructor-content h3 {
        font-size: 3.2rem;
    }
}


/********************************************
    Footer
********************************************/
.footer-wrapper {
    background: #2d2f31;
    border-top: 1px solid #3e4143;
    color: #fff;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
    padding-bottom: 2.4rem;
}

.footer-wrapper .urls-list .language-button {
    padding: 2.4rem 0;
    font-family: var(--font-stack-text);
    font-weight: 400;
    line-height: 1.4;
    font-size: 1.6rem;
}

.footer-wrapper .urls-list .language-button button {
    position: relative;
    align-items: center;
    border: none;
    cursor: pointer;
    display: inline-flex;
    min-width: 8rem;
    padding: 0 1.2rem;
    justify-content: center;
    user-select: none;
    -webkit-user-select: none;
    vertical-align: bottom;
    white-space: nowrap;
    height: 4rem;
    color: var(--color-gray-500);
    background-color: transparent;
    border: 1px solid #2d2f31;
    justify-content: flex-start;
    padding: 0 1.6rem;
    min-width: 14rem;
    border-color: #fff;
    color: #fff;
}

.urls-list .language-button button img {
    height: 2.0rem;
    width: 2.0rem;
    margin-right: 1rem;
}

.urls-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: none;
}

.urls-list ul li {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: none;
    font-weight: 400;
    line-height: 1.4;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.4;
    font-size: 1.4rem;
    display: block;
    padding: .4rem 0;
    color: #fff;
}

.copyright {
    margin-top: 2.4rem;
}

.copyright .logo-container img {
    width: 9rem;
    height: 3.5rem;
}

.copyright-caption {
    font-weight: 400;
    line-height: 1.4;
    font-size: 1.2rem;
    margin-top: 1rem;
}


/********************************************
    Sidebar menu
********************************************/
.sidebar-menu {
    left: 0;
    display: block;
    position: fixed;
    top: 0;
    width: 28rem;
    max-width: 78%;
    height: 100%;
    background: white;
    z-index: 2000;
    transform: translateX(0);
    transition: transform 250ms cubic-bezier(0,0,.38,.9);
}

.sidebar-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: none;
}

.sidebar-menu-header {
    width: 100%;
    height: auto;
    text-align: left;
    letter-spacing: normal;
    white-space: normal;
    padding: 1.6rem 0;
    color: #2d2f31;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
    background: #f7f9fa;
    display: flex;
    align-items: center;
    border: none;
}

.sidebar-menu-header .initials-ball-container {
    display: inline-flex;
    position: relative;
}

.initials-ball-container .initials-ball {
    font-family: var(--font-stack-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    font-size: 2.4rem;
    max-width: 36em;
    background: #2d2f31;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    object-fit: cover;
    color: white;
    width: 6.4rem;
    height: 6.4rem;
}

.initials-ball-container .badge {
    background: #a435f0;
    display: inline-block;
    font-weight: 700;
    text-align: center;
    border-radius: 50%;
    height: 1em;
    width: 1em;
    position: absolute;
    font-size: 1.6rem;
    top: 0;
    right: 2%;
}

.sidebar-menu-header .header-caption h1 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    font-size: 1.6rem;
    display: block;
    margin: 0 .8rem 0 1.6rem;
    word-break: break-word;
    font-family: var(--font-stack-heading);
}

.sidebar-menu-header .header-caption p {
    font-weight: 400;
    line-height: 1.4;
    font-size: 1.4rem;
    color: #6a6f73;
    margin: 0 .8rem 0 1.6rem;
    font-family: var(--font-stack-heading);
}

.sidebar-menu-header img, .sidebar-menu .link li a button img {
    width: 2.4rem;
    height: 2.4rem;
    transform: rotate(90deg);
    opacity: .5;
}

.sidebar-menu .link li a button span {
    flex: 1;
    min-width: 1px;
}

.sidebar-background {
    background: rgba(45, 47, 49, .8);
    left: 0;
    opacity: 0;
    transform: scale(0);
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    transition: opacity 100ms linear, transform 0ms linear 100ms;
    z-index: 1030;
    opacity: 1;
    transform: scale(1);
    transition: opacity 100ms linear;
}

.sidebar-menu .instructor-view {
    padding: .8rem 0;
}

.sidebar-menu .instructor-view li a {
    line-height: 1.4;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    min-width: auto;
    justify-content: center;
    background-color: transparent;
    padding: .8rem 1.6rem;
}

.sidebar-menu h2 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    font-size: 1.4rem;
    color: #6a6f73;
    padding: 1.6rem 1.6rem 1.6rem;
    margin-bottom: -.4rem;
    border-top: 1px solid #d1d7dc;
}

.sidebar-menu .link {
    font-size: inherit;
    font-weight: 400;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: none;
    padding: .8rem 0;
}

.sidebar-menu .link {
    padding-top: 0;
    padding-bottom: 0;
}

.sidebar-menu .link li a {
    display: flex;
    align-items: flex-start;
    padding: .8rem 1.6rem;
}

.sidebar-menu .link li a button {
    flex: 1;
    line-height: 1.4;
    font-size: 1.6rem;
    border: none;
    background-color: transparent;
    text-align: left;
    color: #6a6f73;
    display: flex;

}

.close-sidebar {
    align-items: center;
    border: none;
    height: 4.8rem;
    background-color: #fff;
    padding: 0 1.2rem;
    width: 4.8rem;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .08), 0 4px 12px rgba(0, 0, 0, .08);
    position: absolute;
    left: 100%;
    top: 0;
    margin: 1.6rem;
    transform: scale(1);
    transition: transform 100ms cubic-bezier(0,0,.38,.9) 400ms;
    z-index: 10000;
}

.close-sidebar img {
    width: 2.4rem;
    height: 2.4rem;
}

.sidebar-section {
    position: absolute;
    display: none;
}

.sidebar-wrapper {
    display: block;
    position: fixed;
    top: 0;
    width: 28rem;
    max-width: 78%;
    height: 100%;
    z-index: 100;
}

.sidebar-submenu {
    display: block;
    position: fixed;
    top: 0;
    width: 28rem;
    max-width: 78%;
    height: 100%;
    background: white;
    position: absolute;
    max-width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .08), 0 4px 12px rgba(0, 0, 0, .08);
    z-index: 1;
    height: 100%;
    overflow: auto;
    padding-bottom: 3.2rem;
    z-index: 15000;
    display: none;
}

.bg-grey {
    background-color: #eee !important;
}

.sidebar-submenu ul li button {
    line-height: 1.4;
    font-size: 1.6rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    width: 100%;
    padding: 1.6rem 0;
    color: #2d2f31;
    padding-left: 1.6rem;
    background-color: transparent;
}



.sidebar-submenu ul li button img {
    width: 2.4rem;
    height: 2.4rem;
    transform: rotate(270deg);
    opacity: .6;
}

.sidebar-submenu ul li button div {
    margin-left: 2.4rem;
}