@font-face {
    font-family: 'Roboto Slab';
    src: url('../fonts/RobotoSlab-Bold.eot');
    src: url('../fonts/RobotoSlab-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/RobotoSlab-Bold.woff2') format('woff2'),
        url('../fonts/RobotoSlab-Bold.woff') format('woff'),
        url('../fonts/RobotoSlab-Bold.ttf') format('truetype'),
        url('../fonts/RobotoSlab-Bold.svg#RobotoSlab-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Slab';
    src: url('../fonts/RobotoSlab-Regular.eot');
    src: url('../fonts/RobotoSlab-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/RobotoSlab-Regular.woff2') format('woff2'),
        url('../fonts/RobotoSlab-Regular.woff') format('woff'),
        url('../fonts/RobotoSlab-Regular.ttf') format('truetype'),
        url('../fonts/RobotoSlab-Regular.svg#RobotoSlab-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Slab';
    src: url('../fonts/RobotoSlab-Thin.eot');
    src: url('../fonts/RobotoSlab-Thin.eot?#iefix') format('embedded-opentype'),
        url('../fonts/RobotoSlab-Thin.woff2') format('woff2'),
        url('../fonts/RobotoSlab-Thin.woff') format('woff'),
        url('../fonts/RobotoSlab-Thin.ttf') format('truetype'),
        url('../fonts/RobotoSlab-Thin.svg#RobotoSlab-Thin') format('svg');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.eot');
    src: url('../fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Roboto-Regular.woff2') format('woff2'),
        url('../fonts/Roboto-Regular.woff') format('woff'),
        url('../fonts/Roboto-Regular.ttf') format('truetype'),
        url('../fonts/Roboto-Regular.svg#Roboto-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Zilla Slab';
    src: url('../fonts/ZillaSlab-Bold.eot');
    src: url('../fonts/ZillaSlab-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/ZillaSlab-Bold.woff2') format('woff2'),
        url('../fonts/ZillaSlab-Bold.woff') format('woff'),
        url('../fonts/ZillaSlab-Bold.ttf') format('truetype'),
        url('../fonts/ZillaSlab-Bold.svg#ZillaSlab-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


:root {
    --primaryColor: #E00817;
    --secondaryColor: #93C01F;
    --baseColor: #4F4F4E;
    --white: #fff;
    --lightBg: #F2F2F2;
    --footerBg: #93C01F;
    --bg1: #93C01F;
    --bg2: #22B573;
    --baseFont: 'Roboto Slab';
    --zsFont: 'Zilla Slab';
    --robotoFont: 'Roboto';
    --bold: 700;
    --regular: 400;
    --thin: 100;
}

body {
    font-size: 16px;
    line-height: 1.4;
    color: var(--baseColor);
    font-weight: var(--regular);
    font-family: var(--baseFont);
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a,
.btn {
    -webkit-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

:focus,
.form-control:focus,
.btn:focus,
button,
button:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--secondaryColor) var(--white);
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 16px;
}

*::-webkit-scrollbar-track {
    background: var(--white);
}

*::-webkit-scrollbar-thumb {
    background-color: var(--primaryColor);
    border-radius: 10px;
    border: 3px solid var(--white);
}

/*****/

.primaryColor {
    color: var(--primaryColor);
}

.secondaryColor {
    color: var(--secondaryColor);
}

.lgTitle {
    font-size: 50px;
    line-height: 1.1;
    font-family: var(--zsFont);
}

.mdTitle {
    font-size: 32px;
    line-height: 1.1;
    font-family: var(--zsFont);
}

.bold {
    font-weight: var(--bold);
}

.thin {
    font-family: var(--thin);
}

.lgSpaceSection {
    padding: 100px 0;
}

.mdSpaceSection {
    padding: 80px 0;
}

/* header */
.headerCol {
    padding: 20px 0px;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    color: var(--baseColor);
    background-color: var(--white);
}

.logoCol,
.headerCol {
    -webkit-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

.fixedHeader .headerCol {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.logoCol {
    width: 80px;
}

.fixedHeader .logoCol {
    width: 70px;
}

/** btn **/

.btn {
    font-size: 16px;
    text-transform: uppercase;
    padding: 10px 30px;
    border-radius: 10px;
    font-family: var(--robotoFont);
    min-width: 180px;
}

.btnOutline {
    color: var(--white);
    border: 1px solid var(--white);
}

.btnOutline:hover {
    color: var(--secondaryColor);
    background-color: var(--white);
}

.scheduledSection .btnOutline {
	color: #002100;
	border: 1px solid #002100;
}
.scheduledSection .btnOutline:hover {
		color: #002100;
	border: 1px solid #FFF;
	background-color: #002100;
}
.btnLight {
    color: var(--baseColor);
    background-color: var(--white);
}

.btnLight:hover {
    color: var(--white);
    background-color: var(--primaryColor);
}

/*   /header */

/* navigation */
.navigation>ul>li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 15px;
}

.data-scroll {
    display: inline-block;
    cursor: pointer;
}

.data-scroll a {
    pointer-events: none;
}

.navigation>ul>li>.data-scroll a,
.navigation>ul>li>a {
    display: block;
    color: inherit;
    font-size: 16px;
    position: relative;
    font-weight: var(--bold);
    padding: 4px 0;
    -webkit-transition: color 300ms ease-in-out 0s;
    -o-transition: color 300ms ease-in-out 0s;
    transition: color 300ms ease-in-out 0s;
}

.navigation>ul>li>.data-scroll a:hover,
.navigation>ul>li>.data-scroll a:focus,
.navigation>ul>li>.data-scroll a.active,
.navigation>ul>li>a:hover,
.navigation>ul>li>a:focus,
.navigation>ul>li>a.active {
    color: var(--primaryColor);
}

.navigation>ul>li>.data-scroll a>span,
.navigation>ul>li>a>span {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.menuToggle {
    display: block;
    width: 30px;
    height: 18px;
    position: relative;
    cursor: pointer;
    z-index: 10;
}

.menuToggle .tglLine {
    position: absolute;
    height: 2px;
    border-radius: 0px;
    background: var(--secondaryColor);
    -webkit-transition: transform 0.45s cubic-bezier(0.9, -0.6, 0.3, 1.6), width 0.2s ease 0.2s;
    -o-transition: transform 0.45s cubic-bezier(0.9, -0.6, 0.3, 1.6), width 0.2s ease 0.2s;
    transition: transform 0.45s cubic-bezier(0.9, -0.6, 0.3, 1.6), width 0.2s ease 0.2s;
    border-radius: 2px;
}

.menuToggle .tglLine1 {
    top: 50%;
    left: 0;
    margin: -1px 0 0 0;
    width: 30px;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.menuToggle .tglLine2 {
    top: 0px;
    left: 0;
    width: 30px;
}

.menuToggle .tglLine3 {
    top: auto;
    left: auto;
    bottom: 0px;
    right: 0;
    width: 30px;
    -webkit-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
}

.actMenu .menuToggle .tglLine1 {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: transform 0.45s cubic-bezier(0.9, -0.6, 0.3, 1.6) 0.1s;
    -o-transition: transform 0.45s cubic-bezier(0.9, -0.6, 0.3, 1.6) 0.1s;
    transition: transform 0.45s cubic-bezier(0.9, -0.6, 0.3, 1.6) 0.1s;
    opacity: 0;
}

.actMenu .menuToggle .tglLine2 {
    -webkit-transform: translate(0px, 7px) rotate(-45deg);
    -ms-transform: translate(0px, 7px) rotate(-45deg);
    transform: translate(0px, 7px) rotate(-45deg);
    -webkit-transition: transform 0.45s cubic-bezier(0.9, -0.6, 0.3, 1.6) 0.1s, width 0.2s ease;
    -o-transition: transform 0.45s cubic-bezier(0.9, -0.6, 0.3, 1.6) 0.1s, width 0.2s ease;
    transition: transform 0.45s cubic-bezier(0.9, -0.6, 0.3, 1.6) 0.1s, width 0.2s ease;
}

.actMenu .menuToggle .tglLine3 {
    -webkit-transform: translate(-4px, 2px) rotate(45deg);
    -ms-transform: translate(-4px, 2px) rotate(45deg);
    transform: translate(-4px, 2px) rotate(45deg);
    -webkit-transition: transform 0.45s cubic-bezier(0.9, -0.6, 0.3, 1.6) 0.1s, width 0.2s ease;
    -o-transition: transform 0.45s cubic-bezier(0.9, -0.6, 0.3, 1.6) 0.1s, width 0.2s ease;
    transition: transform 0.45s cubic-bezier(0.9, -0.6, 0.3, 1.6) 0.1s, width 0.2s ease;
}

/*  */

.bannerSection {
    padding: 150px 0;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-position: center;
    background-image: url('../images/banner-bg.jpg');
    margin-top: 113px;
    color: var(--white);
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bannerSection::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.5;
    /*background: linear-gradient(130deg, var(--bg2) 25%, var(--bg1) 50%);*/
    background: linear-gradient(130deg, #e7f8f8 37%, var(--bg1) 50%)
}

.bannerInner {
    position: relative;
}

.bannerLogo {
    width: 200px;
}

.bannerLogo>img {
    max-width: 100%;
    width: 100%;
    /*filter: brightness(0) invert(1);*/
}

.bannerContent {
    max-width: 800px;
    text-align: right;
    margin-left: auto;
}

.bannerContent .btn {
    margin-top: 15px;
}

.aboutLftCol {
    max-width: 350px;
}

.aboutRtCol>p {
    font-size: 20px;
    max-width: 570px;
    text-align: right;
    margin-left: auto;
}

.thematicSection {
    background: linear-gradient(to right, var(--bg2) 0%, var(--bg1) 100%);
}

.cStyle1 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.cStyle1Icon {
    width: 60px;
    display: block;
    flex: 0 0 auto;
}

.cStyle1Content {
    color: var(--white);
    padding-right: 30px;
}

.cStyle1Content>h3 {
    font-size: 20px;
}

.cStyle1Content>p {
    font-size: 13px;
    margin-bottom: 0;
    line-height: 1.2;
}

.thematicInner .btnCol {
    margin-top: 40px;
}

.cardSection {
    margin-top: 60px;
}

.cStyle2 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cs2ImgCol {
    overflow: hidden;
}

.cs2ImgCol img {
    transition: transform 600ms ease-in-out 0s;
}

.cStyle2:hover .cs2ImgCol img {
    transform: scale(1.1);
}

.cs2ContentCol {
    text-align: center;
}

.cs2CardTitle {
    font-size: 20px;
    font-family: var(--zsFont);
    display: block;
    line-height: 1.1;
    margin-bottom: 15px;
}

.cStyle2:hover .cs2CardTitle {
    color: var(--primaryColor);
}

.cs2ContentCol>p {
    font-size: 13px;
    padding: 10px 60px;
    background-color: var(--lightBg);
    margin: 0;
}

.scheduledSection {
    --height: 350px;
}

.upcomingCard {
    color: #00183b;
    background-color: var(--secondaryColor);
    min-height: var(--height);
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 20px 30px;
}

.upcomingCard .btnCol {
    margin-top: auto;
}

.upcomingCard>h4 {
    padding-top: 20px;
}

.cStyle3 {
    position: relative;
    font-family: var(--zsFont);
    overflow: hidden;
}

.cStyle3::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    z-index: 1;
    pointer-events: none;
    background-color: rgba(0, 0, 0, .5);
    -webkit-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

.cStyle3:hover::before {
    height: 100%;
}

.cs3ImgCol {
    min-height: var(--height);
    height: 100%;
    position: relative;
}

.cs3ImgCol>a>img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    object-position: center bottom;
}

.csDate {
    position: absolute;
    right: 15px;
    top: 15px;
    background-color: rgba(0, 0, 0, .5);
    padding: 15px;
    color: var(--white);
    max-width: 65px;
    display: block;
    z-index: 1;
    text-align: center;
}

.csDate>h6 {
    font-size: 16px;
    line-height: 1.1;
    margin: 0;
}

.cs3ContentCol {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 12px;
    color: var(--white);
    text-align: center;
    background-color: rgba(0, 0, 0, .5);
}

.cs3ContentCol>h5 {
    font-size: 16px;
    margin: 0;
}

.linkStyle {
    color: var(--secondaryColor);
    font-size: 16px;
}

.linkStyle:hover {
    color: var(--primaryColor);
}

.communitySection {
    padding: 120px 0 80px;
    color: var(--white);
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-position: center;
    background-image: url('../images/community-bg.jpg');
    position: relative;
}

.communitySection::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.6;
    background: linear-gradient(to right, var(--bg2) 0%, var(--bg1) 100%);
}

.communityInner {
    position: relative;
}

.communityInner .btnCol {
    margin-top: 20px;
}

.overlayLine {
    position: relative;
}

.overlayLine::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--baseColor);
    height: 1px;
    opacity: 0.3;
}

.ncardSection {
    padding-top: 50px;
}

.cs4ImgCol {
    min-height: 200px;
    height: 100%;
    position: relative;
}

.cs4ImgCol img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    object-position: center;
}

.cs4ContentCol {
    padding-top: 20px;
}

.cs4ContentCol>h6 {
    font-size: 14px;
    text-transform: uppercase;
}

.cs4ContentCol>h3>a {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dtContent {
    padding-bottom: 15px;
    opacity: 0.7;
    font-size: 14px;
}

.dateCol {
    margin-right: 15px;
}

.cs4ContentCol>p {
    font-size: 14px;
}

.postImg {
    min-height: 65px;
    height: 100%;
    position: relative;
    width: 100px;
}

.postImg>img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    object-position: center;
}

.postContent>p,
.postContent>p>a {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--baseColor);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.postContent>span {
    display: block;
    font-size: 14px;
    opacity: 0.8;
}

.postCol+.postCol {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.cs4ContentCol>h3>a:hover,
.postContent>p>a:hover {
    color: var(--primaryColor);
}

.footerSection {
    padding: 50px 0;
    /*color: var(--white);*/
    background-color: var(--secondaryColor);
}

.footerText>p {
    margin: 0;
    font-size: 14px;
}

.footerLogo {
    width: 150px;
}

.footerLogo>img {
    max-width: 120px;
    width: 100%;
    filter: brightness(0) invert(1);
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 1199px) {
    .bannerSection {
        padding: 120px 0;
    }

    .bannerLogo {
        width: 160px;
    }

    .lgSpaceSection {
        padding: 80px 0;
    }

    .cs2ContentCol>p {
        padding: 10px 30px;
    }

    .lgTitle {
        font-size: 46px;
    }

    .aboutRtCol>p {
        font-size: 18px;
        max-width: 100%;
    }

    .cardSection {
        margin-top: 40px;
    }
}

@media (max-width: 991px) {
    .navColMain {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        width: 260px;
        padding: 20px 25px;
        background-color: var(--white);
        z-index: 99;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: all 300ms ease-in-out 0s;
        -o-transition: all 300ms ease-in-out 0s;
        transition: all 300ms ease-in-out 0s;
    }

    .actMenu .navColMain {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    .navDropBack {
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.7);
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
        z-index: 1;
    }

    .actMenu .navDropBack {
        pointer-events: initial;
        opacity: 1;
        visibility: visible;
    }

    .actMenu .menuToggle .tglLine {
        background-color: var(--white);
    }

    .navigation>ul>li>span.data-scroll a {
        color: var(--baseColor);
    }

    .navigation .nav {
        display: block;
    }

    .navigation>ul>li {
        display: block;
        padding: 5px 0px;
    }

    .bannerContent {
        max-width: 100%;
        text-align: center;
    }

    .lgTitle {
        font-size: 38px;
    }

    .mdTitle {
        font-size: 28px;
    }

    .aboutSection {
        text-align: center;
    }

    .aboutLftCol {
        max-width: 100%;
        padding-bottom: 15px;
    }

    .aboutRtCol>p {
        font-size: 16px;
        text-align: center;
        margin: 0;
    }

    .cardSection {
        margin-top: 0;
    }

    .cStyle2 {
        margin-top: 30px;
    }

    .csDate {
        padding: 10px;
        max-width: 56px;
    }

    .csDate>h6 {
        font-size: 14px;
    }

    .communitySection {
        padding: 100px 0 80px;
    }

    .ncardSection {
        padding-top: 0;
    }

    .cStyle4Col {
        margin-top: 50px;
    }

    .cs4ImgCol {
        min-height: 320px;
    }

    .postCol+.postCol {
        margin-top: 10px;
        padding-top: 10px;
    }
}

@media (max-width: 767px) {
    .headerCol {
        padding: 15px 0px;
    }

    .logoCol,
    .fixedHeader .logoCol {
        width: 60px;
    }

    .bannerSection {
        padding: 100px 0;
        margin-top: 95px;
    }

    .lgSpaceSection,
    .mdSpaceSection {
        padding: 60px 0;
    }

    .lgTitle {
        font-size: 30px;
    }

    .mdTitle {
        font-size: 24px;
    }

    .btn {
        font-size: 14px;
        padding: 10px 20px;
        min-width: 150px;
    }

    .aboutRtCol>p {
        font-size: 14px;
    }

    .cStyle1 {
        margin-bottom: 40px;
    }

    .cs4ContentCol>h3>p,
    .cs2CardTitle,
    .cStyle1Content>h3 {
        font-size: 18px;
    }

    .thematicInner .btnCol {
        margin-top: 20px;
    }

    .upcomingCard {
        min-height: auto;
    }

    .upcomingCard .btnCol {
        margin-top: 20px;
    }

    .cs2ContentCol>p {
        padding: 10px 15px;
    }

    .cs4ContentCol>h3>a,
    .cs2CardTitle,
    .cStyle1Content>h3 {
        font-size: 16px;
    }

    .footerSection {
        padding: 30px 0;
        text-align: center;
    }

    .footerLogo>img {
        max-width: 100%;
    }

    .footerLogo {
        width: 60px;
        margin: 0 auto 20px;
    }
}

@media (max-width: 585px) {

    .lgSpaceSection,
    .mdSpaceSection {
        padding: 45px 0;
    }

    .cStyle4Col {
        margin-top: 30px;
    }

    .lgTitle {
        font-size: 28px;
    }

    .cStyle1Icon {
        width: 50px;
    }

    .cStyle1 {
        margin-bottom: 30px;
    }

    .cStyle2 {
        margin-top: 20px;
    }

    .cs4ImgCol {
        min-height: 280px;
    }

    .postImg {
        width: 80px;
    }
}

/* CORSO */

.title-paragraph {
    position: relative
}

.title-paragraph .boolean-available-country {
    display: block;
    margin-top: 40px
}

@media (max-width:575px) {
    .title-paragraph .boolean-available-country {
        margin-top: 24px
    }
}

.title-paragraph img {
    border-radius: 16px;
    display: block;
    margin: 56px auto 0;
    width: 100%
}

@media (max-width:575px) {
    .title-paragraph img {
        margin: 24px auto 0
    }
}

.title-paragraph-video {
    margin-top: 56px
}

@media (max-width:575px) {
    .title-paragraph-video {
        margin-top: 16px
    }
}

.title-paragraph-video .iframeContainer {
    border-radius: 16px;
    overflow: hidden;
    padding: 56.25% 0 0;
    position: relative
}

.title-paragraph-video .iframeContainer iframe {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.title-paragraph-head.with-image {
    position: relative
}

@media (min-width:940px) {
    .title-paragraph-head.with-image {
        padding-right: 250px
    }
}

.title-paragraph-head.with-image img {
    margin-top: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 60px
}

@media (max-width:939px) {
    .title-paragraph-head.with-image img {
        display: none
    }
}

@media (min-width:940px) {
    .title-paragraph-head {
        margin-bottom: 16px
    }
}

@media (min-width:576px) and (max-width:939px) {
    .title-paragraph-head {
        margin-bottom: 8px
    }
}

@media (max-width:575px) {
    .title-paragraph-head {
        margin-bottom: 8px
    }
}

.title-paragraph-cta {
    margin-top: 40px
}

@media (max-width:575px) {
    .title-paragraph-cta {
        margin-top: 24px
    }

    .title-paragraph-cta .button-primary {
        display: block;
        width: 100%
    }
}

.title-paragraph .svg {
    position: relative
}

.title-paragraph .svg svg {
    position: absolute
}

.title-paragraph-icon {
    left: 0;
    position: absolute;
    top: -35px
}

.title-paragraph-icon i {
    font-size: 200px;
    mix-blend-mode: multiply
}

.summer-sale-desktop {
    background-image: url(../images/png/thunder-sito.png);
    background-position-x: 99%;
    background-position-y: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-size: 148px;
    border-radius: 16px;
    position: relative
}

@media (max-width:939px) {
    .summer-sale-desktop {
        background-color: #b8d3ff;
        background-image: none
    }
}

.summer-sale-desktop .banner {
    border-radius: 16px 0 32px 0;
    left: 0;
    position: absolute;
    top: 0
}

.summer-sale-desktop .left-banner {
    width: 436px
}

.summer-sale-desktop .right-banner {
    width: 344px
}

.summer-sale-mobile .wrapper {
    background-image: url(../images/png/thunder-sito.png);
    background-position-x: center;
    background-position-y: 96%;
    background-repeat: no-repeat;
    background-size: 35%;
    border-radius: 16px;
    overflow: hidden;
    position: relative
}

.summer-sale-mobile .wrapper .banner {
    border-radius: 16px 0 32px 0;
    left: 0;
    top: 0;
    width: -moz-fit-content;
    width: fit-content
}

.summer-sale-mobile .bottom-banner {
    position: relative
}

.summer-sale-mobile .bottom-banner .wave {
    -webkit-clip-path: polygon(100% 100%, 0 100%, 0 31.59%, 1% 36.43%, 2% 42.4%, 3% 49.18%, 4% 56.37%, 5% 63.57%, 6% 70.38%, 7% 76.39%, 8% 81.28%, 9% 84.76%, 10% 86.65%, 11% 86.82%, 12% 85.27%, 13% 82.09%, 14% 77.46%, 15% 71.65%, 16% 64.97%, 17% 57.82%, 18% 50.59%, 19% 43.7%, 20% 37.53%, 21% 32.45%, 22% 28.73%, 23% 26.58%, 24% 26.14%, 25% 27.42%, 26% 30.35%, 27% 34.76%, 28% 40.41%, 29% 46.98%, 30% 54.08%, 31% 61.32%, 32% 68.3%, 33% 74.6%, 34% 79.88%, 35% 83.83%, 36% 86.23%, 37% 86.95%, 38% 85.94%, 39% 83.26%, 40% 79.07%, 41% 73.59%, 42% 67.15%, 43% 60.1%, 44% 52.85%, 45% 45.81%, 46% 39.38%, 47% 33.92%, 48% 29.74%, 49% 27.08%, 50% 26.09%, 51% 26.83%, 52% 29.25%, 53% 33.22%, 54% 38.51%, 55% 44.83%, 56% 51.8%, 57% 59.05%, 58% 66.15%, 59% 72.7%, 60% 78.34%, 61% 82.74%, 62% 85.65%, 63% 86.91%, 64% 86.44%, 65% 84.28%, 66% 80.54%, 67% 75.44%, 68% 69.27%, 69% 62.37%, 70% 55.14%, 71% 47.99%, 72% 41.32%, 73% 35.52%, 74% 30.9%, 75% 27.75%, 76% 26.22%, 77% 26.41%, 78% 28.31%, 79% 31.81%, 80% 36.72%, 81% 42.74%, 82% 49.55%, 83% 56.76%, 84% 63.95%, 85% 70.72%, 86% 76.68%, 87% 81.5%, 88% 84.9%, 89% 86.7%, 90% 86.78%, 91% 85.14%, 92% 81.88%, 93% 77.18%, 94% 71.31%, 95% 64.6%, 96% 57.44%, 97% 50.21%, 98% 43.35%, 99% 37.24%, 100% 32.22%);
    clip-path: polygon(100% 100%, 0 100%, 0 31.59%, 1% 36.43%, 2% 42.4%, 3% 49.18%, 4% 56.37%, 5% 63.57%, 6% 70.38%, 7% 76.39%, 8% 81.28%, 9% 84.76%, 10% 86.65%, 11% 86.82%, 12% 85.27%, 13% 82.09%, 14% 77.46%, 15% 71.65%, 16% 64.97%, 17% 57.82%, 18% 50.59%, 19% 43.7%, 20% 37.53%, 21% 32.45%, 22% 28.73%, 23% 26.58%, 24% 26.14%, 25% 27.42%, 26% 30.35%, 27% 34.76%, 28% 40.41%, 29% 46.98%, 30% 54.08%, 31% 61.32%, 32% 68.3%, 33% 74.6%, 34% 79.88%, 35% 83.83%, 36% 86.23%, 37% 86.95%, 38% 85.94%, 39% 83.26%, 40% 79.07%, 41% 73.59%, 42% 67.15%, 43% 60.1%, 44% 52.85%, 45% 45.81%, 46% 39.38%, 47% 33.92%, 48% 29.74%, 49% 27.08%, 50% 26.09%, 51% 26.83%, 52% 29.25%, 53% 33.22%, 54% 38.51%, 55% 44.83%, 56% 51.8%, 57% 59.05%, 58% 66.15%, 59% 72.7%, 60% 78.34%, 61% 82.74%, 62% 85.65%, 63% 86.91%, 64% 86.44%, 65% 84.28%, 66% 80.54%, 67% 75.44%, 68% 69.27%, 69% 62.37%, 70% 55.14%, 71% 47.99%, 72% 41.32%, 73% 35.52%, 74% 30.9%, 75% 27.75%, 76% 26.22%, 77% 26.41%, 78% 28.31%, 79% 31.81%, 80% 36.72%, 81% 42.74%, 82% 49.55%, 83% 56.76%, 84% 63.95%, 85% 70.72%, 86% 76.68%, 87% 81.5%, 88% 84.9%, 89% 86.7%, 90% 86.78%, 91% 85.14%, 92% 81.88%, 93% 77.18%, 94% 71.31%, 95% 64.6%, 96% 57.44%, 97% 50.21%, 98% 43.35%, 99% 37.24%, 100% 32.22%);
    height: 23px;
    left: 0;
    position: absolute;
    top: 0;
    transform: translateY(-100%);
    width: 100%
}

.count-blocks {
    display: flex;
    gap: 8px
}

.count-blocks .count-block {
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 0;
    width: 80px
}

@media (max-width:939px) {
    .count-blocks .count-block {
        width: 100%
    }
}

.count-blocks .count-block .time-unit {
    text-transform: uppercase
}

.bg-cw-lightblue {
    background-color: #8ed3fd
}

.text-cw-blue {
    color: #07337a
}

.text-cw-lightblue-10 {
    color: #ebf6fa
}

.text-cw-lightblue-5 {
    color: #c2e5f0
}

.bg-cw-blue {
    background-color: #07337a
}

.last-availabilities-wrapper {
    color: #f66659;
    display: inline-flex;
    transform: translateY(2px)
}

.last-availabilities-wrapper .animated-circle-wrapper {
    align-items: center;
    display: flex;
    height: 14px;
    justify-content: center;
    position: relative;
    width: 14px
}

.last-availabilities-wrapper .animated-circle-wrapper .animated-circle-back {
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-name: opacityPulse;
    animation-timing-function: linear;
    background-color: #f66659;
    border-radius: 14px;
    content: "";
    height: 6px;
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    will-change: opacity, transform
}

@keyframes opacityPulse {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1)
    }

    2% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1)
    }

    99% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2.33)
    }

    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1)
    }
}

.last-availabilities-wrapper .animated-circle-wrapper .animated-circle-back.dark {
    background-color: #d9ff66
}

.last-availabilities-wrapper .animated-circle-wrapper .animated-circle {
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-name: pulse;
    animation-timing-function: ease;
    background-color: #f66659;
    border-radius: 8px;
    content: "";
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    will-change: width, height, transform
}

@keyframes pulse {
    0% {
        height: 6px;
        transform: translate(-50%, -50%);
        width: 6px
    }

    20% {
        height: 8px;
        transform: translate(-50%, -50%);
        width: 8px
    }

    25% {
        height: 8px;
        transform: translate(-50%, -50%);
        width: 8px
    }

    30% {
        height: 6px;
        transform: translate(-50%, -50%);
        width: 6px
    }

    to {
        height: 6px;
        transform: translate(-50%, -50%);
        width: 6px
    }
}

.last-availabilities-wrapper .animated-circle-wrapper .animated-circle.dark {
    background-color: #d9ff66
}

.last-availabilities-wrapper.dark {
    color: #d9ff66
}

.back-end-course-it {
    height: -moz-fit-content;
    height: fit-content;
    position: relative;
    width: 100%
}

.back-end-course-it .swiper-slide {
    height: auto
}

.back-end-course-it .modal {
    align-items: center;
    background-color: rgba(0, 0, 0, .6);
    display: flex;
    height: 100dvh;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3000
}

@media (max-width:939px) {
    .back-end-course-it .modal .modal-box {
        padding: 0 16px
    }
}

.back-end-course-it .modal .leadform-container .mail-input.special {
    font-size: 16px !important
}

.back-end-course-it .modal .leadform-container .lead-card {
    background-color: #fff;
    border-radius: 2px;
    width: 592px
}

@media (max-width:939px) {
    .back-end-course-it .modal .leadform-container .lead-card {
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: center;
        width: 100%
    }
}

.back-end-course-it .modal .leadform-container .lead-card h4 {
    margin-bottom: 36px
}

@media (max-width:939px) {
    .back-end-course-it .modal .leadform-container .lead-card h4 {
        margin-bottom: 16px
    }
}

.back-end-course-it .modal .leadform-container .lead-card .image-container {
    height: 184px;
    overflow: hidden;
    position: relative;
    width: 100%
}

@media (max-width:575px) {
    .back-end-course-it .modal .leadform-container .lead-card .image-container {
        height: 104px
    }
}

.back-end-course-it .modal .leadform-container .lead-card .image-container img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%
}

.back-end-course-it .modal .leadform-container .lead-card .image-container .close-button {
    cursor: pointer;
    position: absolute;
    right: 16px;
    top: 16px
}

.back-end-course-it .modal .leadform-container .lead-card .modal-content {
    padding: 32px 72px 56px
}

@media (max-width:575px) {
    .back-end-course-it .modal .leadform-container .lead-card .modal-content {
        padding: 24px 16px 32px
    }
}

.back-end-course-it .jumbo-section {
    padding-top: 56px
}

@media (max-width:939px) {
    .back-end-course-it .jumbo-section {
        padding-top: 0
    }

    .back-end-course-it .jumbo-section .jumbo-content {
        gap: 24px
    }
}

.back-end-course-it .jumbo-section .jumbo-content .badge {
    background-color: #fff;
    border-radius: 42px;
    display: inline-block;
    margin-bottom: 24px;
    padding: 8px 16px 4px
}

@media (max-width:939px) {
    .back-end-course-it .jumbo-section .jumbo-content .badge {
        margin-bottom: 16px
    }
}

.back-end-course-it .jumbo-section .jumbo-content h1 {
    margin-bottom: 8px
}

.back-end-course-it .jumbo-section .jumbo-content p {
    margin-bottom: 24px
}

@media (max-width:939px) {
    .back-end-course-it .jumbo-section .jumbo-content p {
        margin-bottom: 8px
    }
}

.back-end-course-it .jumbo-section .jumbo-content .list ul {
    margin-top: 8px
}

.back-end-course-it .jumbo-section .jumbo-content .list ul li {
    align-items: flex-start;
    display: flex;
    gap: 8px;
    list-style: none;
    margin-bottom: 8px
}

.back-end-course-it .jumbo-section .jumbo-content .list ul li:before {
    color: #172ba1;
    content: "\\e906";
    font-family: BooleanFont;
    font-size: 20px;
    line-height: 27px;
    transform: translateY(-3.5px)
}

@media (max-width:939px) {
    .back-end-course-it .jumbo-section .jumbo-content .list ul li:before {
        line-height: 24px;
        transform: translateY(-2.5px)
    }
}

.back-end-course-it .jumbo-section .jumbo-content .list ul li:last-child {
    margin-bottom: 0
}

.back-end-course-it .jumbo-section .jumbo-img-container {
    border-radius: 0px;
    height: 447px;
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden;
    position: relative
}

@media (max-width:939px) {
    .back-end-course-it .jumbo-section .jumbo-img-container {
        height: 429px
    }
}

.back-end-course-it .jumbo-section .jumbo-img-container img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.back-end-course-it .jumbo-section .jumbo-img-container.mobile {
    border-radius: 0;
    height: 200px
}

.back-end-course-it .jumbo-section .info-recap {
    background-color: #F4FBF3;
    border-radius: 16px 0px;
    display: flex;
    justify-content: space-between;
    margin: 24px 0 0;
    padding: 24px 0
}

@media (max-width:939px) {
    .back-end-course-it .jumbo-section .info-recap {
        flex-direction: column;
        margin: 32px 0 16px;
        padding: 0 16px
    }
}

.back-end-course-it .jumbo-section .info-recap .block {
    border-right: 2px solid #b8d3ff;
    padding: 16px;
    text-align: center;
    width: 25%
}

@media (max-width:939px) {
    .back-end-course-it .jumbo-section .info-recap .block {
        border-bottom: 2px solid var(--bs-border-color-translucent);
        border-right: 0;
        display: flex;
        justify-content: space-between;
        padding: 16px 0;
        width: 100%
    }
}

.back-end-course-it .jumbo-section .info-recap .block:last-child {
    border: none
}

.back-end-course-it .jumbo-section .jumbo-trustpilot {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 32px
}

.back-end-course-it .jumbo-section .jumbo-trustpilot-icons {
    display: flex;
    gap: 8px
}

@media (max-width:939px) {
    .back-end-course-it .jumbo-section .jumbo-trustpilot {
        gap: 8px;
        margin-top: 0
    }
}

.back-end-course-it .start-date-section .content {
    border-radius: 16px;
    margin-top: -32px;
    padding: 16px
}

@media (max-width:939px) {
    .back-end-course-it .start-date-section .content {
        margin-top: -16px
    }
}

@media (min-width:940px) {
    .back-end-course-it .start-date-section .content .head {
        padding: 24px 40px 0
    }
}

.back-end-course-it .start-date-section .content .date-container {
    background: #4c64f2;
    background: #ADDFAA;
    border-radius: 8px;
    padding: 16px 40px 24px
}

@media (max-width:939px) {
    .back-end-course-it .start-date-section .content .date-container {
        padding: 16px
    }
}

.back-end-course-it .start-date-section .content .date {
    display: flex;
    gap: 64px;
    justify-content: center
}

@media (max-width:939px) {
    .back-end-course-it .start-date-section .content .date {
        flex-direction: column;
        gap: 24px
    }

    .back-end-course-it .start-date-section .content .date .date-block {
        min-width: 100%
    }
}

.back-end-course-it .start-date-section .content .date .date-block h3 s {
    text-decoration-color: #172ba1;
    text-decoration-thickness: 3px;
    vertical-align: middle
}

.back-end-course-it .start-date-section .content .date .date-block span {
    display: block
}

.back-end-course-it .start-date-section .content .date .end-submit {
    align-items: center;
    display: flex;
    gap: 4px;
    justify-content: center
}

.back-end-course-it .start-date-section .content .cta {
    display: flex;
    justify-content: center;
    margin: 24px 0
}

@media (max-width:939px) {
    .back-end-course-it .start-date-section .content .cta {
        display: block
    }
}

.back-end-course-it .start-date-section .whatsapp-cta {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 8px 0
}

.back-end-course-it .start-date-section .whatsapp-cta-wrapper {
    align-items: center;
    color: #2e45cc;
    cursor: pointer;
    display: inline-flex;
    gap: 4px
}

.back-end-course-it .start-date-section .whatsapp-cta-wrapper:hover {
    color: #0d1c73
}

.back-end-course-it .start-date-section .whatsapp-cta-text {
    text-decoration: underline
}

.back-end-course-it .start-date-section .info-tooltip {
    cursor: pointer;
    height: 16px;
    position: relative;
    transition: all easy .4s
}

.back-end-course-it .start-date-section .info-tooltip .tooltip-content {
    bottom: 16px;
    display: none;
    left: 50%;
    min-width: 272px;
    position: absolute;
    transform: translateX(-50%)
}

.back-end-course-it .start-date-section .info-tooltip .tooltip-content .square {
    background-color: #f5f9ff;
    border-radius: 16px;
    box-shadow: 0 4px 13.1px 0 rgba(0, 22, 50, .25)
}

.back-end-course-it .start-date-section .info-tooltip .tooltip-content .square span {
    color: #000
}

.back-end-course-it .start-date-section .info-tooltip .tooltip-content .triangle {
    transform: translateY(-2px)
}

.back-end-course-it .start-date-section .info-tooltip:hover .tooltip-content {
    display: block
}

.back-end-course-it .card-info-section .card {
    border-radius: 16px
}

.back-end-course-it .card-info-section .path-card {
    display: flex;
    gap: 32px;
    overflow: hidden
}

.back-end-course-it .card-info-section .path-card .content {
    flex-grow: 1;
    padding: 32px 0 32px 32px
}

.back-end-course-it .card-info-section .path-card .image-container {
    flex-basis: calc(33.33333% - 16px);
    flex-shrink: 0
}

.back-end-course-it .card-info-section .path-card .image-container img {
    width: 100%
}

.back-end-course-it .card-info-section .teacher-card {
    height: 100%;
    padding: 32px;
    position: relative
}

.back-end-course-it .card-info-section .teacher-card .content {
    position: relative;
    z-index: 10
}

.back-end-course-it .card-info-section .teacher-card .image-container {
    border-radius: 16px;
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%
}

.back-end-course-it .card-info-section .teacher-card .image-container img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.back-end-course-it .card-info-section .card-extra {
    height: 100%;
    padding: 32px;
    position: relative
}

.back-end-course-it .card-info-section .card-extra:after {
    background-color: #F4FBF3;
    border-radius: 16px;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    top: 0px;
    width: 100%
}

.back-end-course-it .card-info-section .card-extra .content {
    position: relative;
    z-index: 10
}

.back-end-course-it .card-info-section .card-extra .image-container {
    position: relative;
    width: 100%;
    z-index: 10
}

.back-end-course-it .card-info-section .card-extra .image-container img {
    width: 100%
}

.back-end-course-it .card-info-section .card-cs {
    align-items: center;
    display: flex;
    gap: 8px;
    padding: 22.5px 32px
}

.back-end-course-it .card-info-section .card-cs .icon {
    flex-shrink: 0;
    width: 136px
}

.back-end-course-it .card-info-section-mobile .cards-carousel .image-container {
    height: 160px;
    overflow: hidden
}

.back-end-course-it .card-info-section-mobile .cards-carousel .image-container img {
    width: 100%
}

.back-end-course-it .card-info-section-mobile .cards-carousel .card-mobile {
    height: 100%
}

.back-end-course-it .card-info-section-mobile .cards-carousel .path-card-mobile .image-container {
    align-items: center;
    display: flex;
    justify-content: center
}

.back-end-course-it .card-info-section-mobile .cards-carousel .path-card-mobile .image-container img {
    height: 90px;
    width: auto
}

.back-end-course-it .card-info-section-mobile .cards-carousel .card-extra-mobile .image-container {
    align-items: center;
    display: flex;
    justify-content: center
}

.back-end-course-it .card-info-section-mobile .cards-carousel .card-extra-mobile .image-container img {
    height: 135px;
    width: auto
}

.back-end-course-it .card-info-section-mobile .cards-carousel .card-cs-mobile .image-container {
    align-items: center;
    display: flex;
    justify-content: center
}

.back-end-course-it .card-info-section-mobile .cards-carousel .card-cs-mobile .image-container img {
    height: 136px;
    width: auto
}

.back-end-course-it .card-info-section-mobile .cards-carousel .carousel-controls {
    align-items: center;
    display: flex;
    justify-content: space-between
}

.back-end-course-it .card-info-section-mobile .cards-carousel .carousel-controls-btn {
    gap: 16px
}

@media (max-width:939px) {
    .back-end-course-it .card-info-section-mobile .cards-carousel .carousel-controls {
        flex-direction: column-reverse
    }
}

.back-end-course-it .card-info-section-mobile .cards-carousel .carousel-controls a {
    text-decoration: underline
}

@media (max-width:939px) {
    .back-end-course-it .card-info-section-mobile .cards-carousel .carousel-controls a {
        margin-top: 16px
    }
}

.back-end-course-it .card-info-section-mobile .cards-carousel .carousel-controls .button-next,
.back-end-course-it .card-info-section-mobile .cards-carousel .carousel-controls .button-prev {
    align-items: center;
    background-color: #2e45cc;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    height: 60px;
    justify-content: center;
    width: 60px
}

@media (max-width:939px) {

    .back-end-course-it .card-info-section-mobile .cards-carousel .carousel-controls .button-next,
    .back-end-course-it .card-info-section-mobile .cards-carousel .carousel-controls .button-prev {
        height: 50px;
        width: 50px
    }
}

.back-end-course-it .card-info-section-mobile .cards-carousel .carousel-controls .button-next i,
.back-end-course-it .card-info-section-mobile .cards-carousel .carousel-controls .button-prev i {
    color: #fff
}

.back-end-course-it .card-info-section-mobile .cards-carousel .carousel-controls .button-next:hover,
.back-end-course-it .card-info-section-mobile .cards-carousel .carousel-controls .button-prev:hover {
    background-color: #0d1c73
}

.back-end-course-it .card-info-section-mobile .cards-carousel .carousel-controls .button-next:hover:active,
.back-end-course-it .card-info-section-mobile .cards-carousel .carousel-controls .button-prev:hover:active {
    background-color: #4c64f2
}

.back-end-course-it .card-info-section-mobile .cards-carousel .carousel-controls .button-prev {
    transform: rotate(180deg)
}

.back-end-course-it .course-schedule-section .lessons-block:after {
    background-color: #d5dbe1;
    content: "";
    height: 1px;
    margin: 24px 16px;
    width: 100%
}

@media (max-width:939px) {
    .back-end-course-it .course-schedule-section .lessons-block:after {
        margin: 16px
    }
}

.back-end-course-it .course-schedule-section .lessons-block .title-block {
    align-items: center;
    display: flex;
    gap: 16px
}

.back-end-course-it .course-schedule-section .lessons-block .title-block:before {
    content: "\\e957";
    font-family: BooleanFont;
    font-size: 32px;
    line-height: 30.5px
}

@media (max-width:939px) {
    .back-end-course-it .course-schedule-section .lessons-block .title-block:before {
        line-height: 23.5px
    }
}

.back-end-course-it .course-schedule-section .tutoring-block .title-block {
    align-items: center;
    display: flex;
    gap: 16px
}

.back-end-course-it .course-schedule-section .tutoring-block .title-block:before {
    content: "\\e959";
    font-family: BooleanFont;
    font-size: 32px;
    line-height: 30.5px
}

@media (max-width:939px) {
    .back-end-course-it .course-schedule-section .tutoring-block .title-block:before {
        line-height: 23.5px
    }
}

.back-end-course-it .part-time-section {
    text-align: start
}

@media (max-width:939px) {
    .back-end-course-it .part-time-section {
        background-color: #F4FBF3;
        padding: 40px 0
    }
}

.back-end-course-it .part-time-section .box {
    border-radius: 16px;
    padding: 32px
}

@media (max-width:939px) {
    .back-end-course-it .part-time-section .box {
        border-radius: 0;
        padding: 0
    }
}

.back-end-course-it .part-time-section .blocks {
    display: flex;
    gap: 32px
}

@media (max-width:939px) {
    .back-end-course-it .part-time-section .blocks {
        flex-direction: column
    }
}

.back-end-course-it .part-time-section .blocks .badge {
    background-color: #b8d3ff;
    border-radius: 120px;
    color: #172ba1;
    display: inline-block;
    padding: 8px 24px 4px
}

.back-end-course-it .part-time-section .blocks .block .list ul {
    margin-top: 8px
}

.back-end-course-it .part-time-section .blocks .block .list ul li {
    align-items: center;
    display: flex;
    gap: 8px;
    list-style: none;
    margin-bottom: 8px
}

.back-end-course-it .part-time-section .blocks .block .list ul li:last-child {
    margin-bottom: 0
}

.back-end-course-it .course-details-section {
    background-color: #F4FBF3;
    padding: 72px 0
}

@media (max-width:939px) {
    .back-end-course-it .course-details-section {
        padding: 40px 0
    }
}

.back-end-course-it .course-details-section .badge-container {
    display: flex;
    justify-content: center
}

.back-end-course-it .course-details-section .badge-container .badge {
    background-color: #80b0ff;
    border-radius: 42px;
    color: #fff;
    display: inline-block;
    padding: 8px 16px 4px
}

.back-end-course-it .course-details-section .early-banner {
    align-items: center;
    background-color: #a1decf;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    padding: 16px
}

@media (max-width:939px) {
    .back-end-course-it .course-details-section .early-banner {
        flex-direction: column;
        gap: 16px
    }
}

.back-end-course-it .course-details-section .early-banner .content {
    align-items: center;
    display: flex;
    gap: 8px
}

@media (max-width:939px) {
    .back-end-course-it .course-details-section .early-banner .content {
        flex-direction: column;
        text-align: center;
        width: 100%
    }

    .back-end-course-it .course-details-section .early-banner .countdown {
        width: 100%
    }
}

.back-end-course-it .course-details-section .early-banner .countdown h3 {
    text-align: center
}

.back-end-course-it .course-details-section .early-banner .countdown .count-blocks {
    display: flex;
    gap: 8px
}

.back-end-course-it .course-details-section .early-banner .countdown .count-blocks .count-block {
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 0;
    width: 80px
}

@media (max-width:939px) {
    .back-end-course-it .course-details-section .early-banner .countdown .count-blocks .count-block {
        width: 100%
    }
}

.back-end-course-it .course-details-section .early-banner .countdown .count-blocks .count-block .time-unit {
    text-transform: uppercase
}

.back-end-course-it .course-details-section .info-box {
    border: 1px solid #002100;
    border-radius: 16px;
    gap: 32px;
    padding: 16px;
    position: relative
}

.back-end-course-it .course-details-section .info-box.financing {
    background-color: #fff;
    border: 0
}

@media (max-width:939px) {
    .back-end-course-it .course-details-section .info-box.financing {
        padding: 16px 16px 54px
    }
}

.back-end-course-it .course-details-section .info-box .head {
    align-items: center;
    display: flex;
    gap: 8px
}

.back-end-course-it .course-details-section .info-box .head h4 {
    text-transform: uppercase
}

.back-end-course-it .course-details-section .info-box .head .cta-badge {
    background-color: #f5f9ff;
    border-radius: 120px;
    cursor: pointer;
    padding: 2px 16px
}

@media (max-width:939px) {
    .back-end-course-it .course-details-section .info-box .head .cta-badge {
        background-color: #b8d3ff;
        border-radius: 0 0 16px 16px;
        bottom: 0;
        left: 0;
        padding: 8px 0;
        position: absolute;
        text-align: center;
        width: 100%
    }
}

.back-end-course-it .course-details-section .info-box .head .cta-badge:hover {
    background-color: #172ba1;
    color: #fff
}

.back-end-course-it .course-details-section .info-box .content {
    display: flex;
    gap: 32px
}

@media (max-width:939px) {
    .back-end-course-it .course-details-section .info-box .content {
        flex-direction: column;
        gap: 16px
    }
}

.back-end-course-it .course-details-section .info-box .content .list-container {
    width: 41.6666666667%
}

@media (max-width:939px) {
    .back-end-course-it .course-details-section .info-box .content .list-container {
        width: 100%
    }
}

.back-end-course-it .course-details-section .info-box .content .list-container ul {
    margin-top: 8px
}

.back-end-course-it .course-details-section .info-box .content .list-container ul li {
    align-items: flex-start;
    display: flex;
    gap: 8px;
    list-style: none;
    margin-bottom: 4px
}

.back-end-course-it .course-details-section .info-box .content .list-container ul li:last-child {
    margin-bottom: 0
}

.back-end-course-it .course-details-section .info-box .content .list-container ul li .icon {
    margin-top: 6px
}

@media (max-width:939px) {
    .back-end-course-it .course-details-section .info-box .content .list-container ul li .icon {
        margin-top: 3px
    }
}

.back-end-course-it .course-details-section .info-box .price-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 58.3333333333%
}

@media (max-width:939px) {
    .back-end-course-it .course-details-section .info-box .price-info {
        width: 100%
    }
}

.back-end-course-it .course-details-section .info-box .price-info .early-price-box {
    align-items: center;
    background: #d2efe8;
    border: 1px solid #5fc6ad;
    border-radius: 2px;
    border-radius: 8px;
    display: flex;
    gap: 16px;
    margin-top: 16px;
    padding: 8px 16px
}

.back-end-course-it .course-details-section .info-box .price-info .early-price-box .content {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%
}

@media (max-width:939px) {

    .back-end-course-it .course-details-section .info-box .price-info .early-price-box .content .paragraph-2,
    .back-end-course-it .course-details-section .info-box .price-info .price-box .content .paragraph-2 {
        display: block;
        margin-bottom: 4px
    }
}

.back-end-course-it .course-details-section .end-list ul {
    list-style: none
}

.back-end-course-it .course-details-section .end-list ul li {
    align-items: flex-start;
    display: flex
}

.back-end-course-it .course-details-section .end-list ul li:before {
    color: #172ba1;
    content: "\\e906";
    font-family: BooleanFont;
    font-size: 20px;
    font-style: normal;
    line-height: 27px;
    margin-right: 8px
}

@media (max-width:939px) {
    .back-end-course-it .course-details-section .end-list ul li:before {
        line-height: 24px
    }
}

.back-end-course-it .skills-details-section .logo-skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    row-gap: 8px
}

@media (max-width:939px) {
    .back-end-course-it .skills-details-section .logo-skills-container img {
        height: 64px
    }
}

.back-end-course-it .certificate-section .wrap {
    position: relative
}

.back-end-course-it .certificate-section .wrap:before {
    background-color: #F4FBF3;
    border-radius: 16px;
    content: "";
    height: 100%;
    left: 16px;
    position: absolute;
    top: 0;
    width: calc(100% - 32px)
}

.back-end-course-it .certificate-section .picture-container {
    height: 100%;
    overflow: hidden;
    position: relative
}

@media (min-width:940px) {
    .back-end-course-it .certificate-section .picture-container {
        border-bottom-left-radius: 16px;
        border-top-left-radius: 16px
    }
}

@media (max-width:939px) {
    .back-end-course-it .certificate-section .picture-container {
        border-top-left-radius: 16px;
        border-top-right-radius: 16px
    }
}

.back-end-course-it .certificate-section .picture-container img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    width: 100%
}

@media (max-width:939px) {
    .back-end-course-it .certificate-section .picture-container img {
        height: 216px;
        position: static
    }
}

.back-end-course-it .certificate-section .content-wrap {
    height: 100%;
    padding: 32px
}

@media (max-width:939px) {
    .back-end-course-it .certificate-section .content-wrap {
        padding: 16px
    }
}

.back-end-course-it .career-service-section .head .special-title {
    align-items: center;
    display: flex
}

.back-end-course-it .career-service-section .head .special-title h2 {
    z-index: 10
}

.back-end-course-it .career-service-section .head .special-title span {
    border-radius: 8px;
    transform: rotate(-6deg) translate(-10px, -5px)
}

.back-end-course-it .career-service-section ul li {
    align-items: flex-start;
    display: flex;
    gap: 8px;
    list-style: none;
    margin-bottom: 8px
}

.back-end-course-it .career-service-section ul li:last-child {
    margin-bottom: 0
}

.back-end-course-it .career-service-section ul li .icon {
    flex-shrink: 0;
    margin-top: 6px
}

@media (max-width:939px) {
    .back-end-course-it .career-service-section ul li .icon {
        margin-top: 3px
    }
}

.back-end-course-it .career-service-section .picture-container {
    height: 100%;
    overflow: hidden;
    position: relative
}

@media (max-width:939px) {
    .back-end-course-it .career-service-section .picture-container {
        margin-bottom: 32px
    }
}

.back-end-course-it .career-service-section .picture-container img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    width: 100%
}

@media (max-width:939px) {
    .back-end-course-it .career-service-section .picture-container img {
        height: 216px;
        position: static
    }
}

.back-end-course-it .reviews-section {
    padding: 72px 0
}

@media (max-width:939px) {
    .back-end-course-it .reviews-section {
        padding: 40px 0
    }
}

.back-end-course-it .reviews-section .content-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center
}

@media (max-width:939px) {
    .back-end-course-it .reviews-section .content-wrap {
        display: block
    }
}

.back-end-course-it .reviews-section .picture-container img {
    margin-top: -20px;
    width: 100%
}

.back-end-course-it .reviews-section .logo-container {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: -40px
}

.back-end-course-it .prefooter-section {
    overflow: hidden
}

.back-end-course-it .prefooter-section .wrap {
    position: relative
}

.back-end-course-it .prefooter-section .wrap .mobile-picture img {
    margin-right: 16px;
    transform: translate(100%, 5px);
    width: 50%
}

.back-end-course-it .prefooter-section .wrap .picture-container {
    bottom: -63.5px;
    position: absolute;
    right: 0;
    transform: translateX(-96px);
    width: 321px
}

.back-end-course-it .prefooter-section .wrap .picture-container img {
    width: 100%
}

.back-end-course-it .faqs-section {
    padding: 56px 0
}

@media (max-width:939px) {
    .back-end-course-it .faqs-section {
        padding: 32px 0
    }
}

.back-end-course-it .faqs-section .faq-title {
    color: #001632;
    margin-bottom: 40px
}

@media (max-width:939px) {
    .back-end-course-it .faqs-section .faq-title {
        display: none
    }
}

.back-end-course-it .skills-section .skill-card div {
    height: 100%
}

.back-end-course-it .skills-section .skill-card div h4 {
    margin: 8px 0
}

@media (max-width:939px) {
    .back-end-course-it .skills-section .skill-card div h4 {
        margin: 8px 0 0
    }
}

.back-end-course-it .banner .content {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 32px 0;
    width: 100%
}

@media (max-width:939px) {
    .back-end-course-it .banner .content {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
        padding: 16px 0
    }
}

.back-end-course-it .banner .content a {
    display: inline-block;
    width: -moz-fit-content;
    width: fit-content
}

@media (max-width:939px) {
    .back-end-course-it .banner .content a {
        width: 100%
    }
}

.back-end-course-it .banner.fundamentals {
    background: linear-gradient(90deg, var(--secondaryColor) -.21%, var(--bg1) 90.14%);
    color: white;
}

@media (max-width:939px) {
    .back-end-course-it .banner.fundamentals .content-text {
        text-align: center;
        width: 100%
    }
}

.back-end-course-it .banner.syllabus .icon-text {
    align-items: center;
    display: flex;
    gap: 16px;
    width: 100%
}

@media (max-width:939px) {
    .back-end-course-it .banner.syllabus .icon-text {
        align-items: flex-start;
        flex-direction: column;
        text-align: left
    }
}

.back-end-course-it .banner.syllabus .icon-text .icon-block {
    align-items: center;
    background-color: #80b0ff;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    padding: 4px
}

.back-end-course-it .banner.syllabus .icon-text .icon-block:before {
    color: #0d1c73;
    content: "\\e912";
    font-size: 64px
}

.back-end-course-it .banner.syllabus button {
    white-space: nowrap
}

@media (max-width:939px) {
    .back-end-course-it .banner.syllabus button {
        width: 100%
    }
}






.title-paragraph {
    position: relative
}

.title-paragraph .boolean-available-country {
    display: block;
    margin-top: 40px
}

@media (max-width:575px) {
    .title-paragraph .boolean-available-country {
        margin-top: 24px
    }
}

.title-paragraph img {
    border-radius: 16px;
    display: block;
    margin: 56px auto 0;
    width: 100%
}

@media (max-width:575px) {
    .title-paragraph img {
        margin: 24px auto 0
    }
}

.title-paragraph-video {
    margin-top: 56px
}

@media (max-width:575px) {
    .title-paragraph-video {
        margin-top: 16px
    }
}

.title-paragraph-video .iframeContainer {
    border-radius: 16px;
    overflow: hidden;
    padding: 56.25% 0 0;
    position: relative
}

.title-paragraph-video .iframeContainer iframe {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.title-paragraph-head.with-image {
    position: relative
}

@media (min-width:940px) {
    .title-paragraph-head.with-image {
        padding-right: 250px
    }
}

.title-paragraph-head.with-image img {
    margin-top: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 60px
}

@media (max-width:939px) {
    .title-paragraph-head.with-image img {
        display: none
    }
}

@media (min-width:940px) {
    .title-paragraph-head {
        margin-bottom: 16px
    }
}

@media (min-width:576px) and (max-width:939px) {
    .title-paragraph-head {
        margin-bottom: 8px
    }
}

@media (max-width:575px) {
    .title-paragraph-head {
        margin-bottom: 8px
    }
}

.title-paragraph-cta {
    margin-top: 40px
}

@media (max-width:575px) {
    .title-paragraph-cta {
        margin-top: 24px
    }

    .title-paragraph-cta .button-primary {
        display: block;
        width: 100%
    }
}

.title-paragraph .svg {
    position: relative
}

.title-paragraph .svg svg {
    position: absolute
}

.title-paragraph-icon {
    left: 0;
    position: absolute;
    top: -35px
}

.title-paragraph-icon i {
    font-size: 200px;
    mix-blend-mode: multiply
}

.summer-sale-desktop {
    background-image: url(../images/png/thunder-sito.png);
    background-position-x: 99%;
    background-position-y: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-size: 148px;
    border-radius: 16px;
    position: relative
}

@media (max-width:939px) {
    .summer-sale-desktop {
        background-color: #b8d3ff;
        background-image: none
    }
}

.summer-sale-desktop .banner {
    border-radius: 16px 0 32px 0;
    left: 0;
    position: absolute;
    top: 0
}

.summer-sale-desktop .left-banner {
    width: 436px
}

.summer-sale-desktop .right-banner {
    width: 344px
}

.summer-sale-mobile .wrapper {
    background-image: url(../images/png/thunder-sito.png);
    background-position-x: center;
    background-position-y: 96%;
    background-repeat: no-repeat;
    background-size: 35%;
    border-radius: 16px;
    overflow: hidden;
    position: relative
}

.summer-sale-mobile .wrapper .banner {
    border-radius: 16px 0 32px 0;
    left: 0;
    top: 0;
    width: -moz-fit-content;
    width: fit-content
}

.summer-sale-mobile .bottom-banner {
    position: relative
}

.summer-sale-mobile .bottom-banner .wave {
    -webkit-clip-path: polygon(100% 100%, 0 100%, 0 31.59%, 1% 36.43%, 2% 42.4%, 3% 49.18%, 4% 56.37%, 5% 63.57%, 6% 70.38%, 7% 76.39%, 8% 81.28%, 9% 84.76%, 10% 86.65%, 11% 86.82%, 12% 85.27%, 13% 82.09%, 14% 77.46%, 15% 71.65%, 16% 64.97%, 17% 57.82%, 18% 50.59%, 19% 43.7%, 20% 37.53%, 21% 32.45%, 22% 28.73%, 23% 26.58%, 24% 26.14%, 25% 27.42%, 26% 30.35%, 27% 34.76%, 28% 40.41%, 29% 46.98%, 30% 54.08%, 31% 61.32%, 32% 68.3%, 33% 74.6%, 34% 79.88%, 35% 83.83%, 36% 86.23%, 37% 86.95%, 38% 85.94%, 39% 83.26%, 40% 79.07%, 41% 73.59%, 42% 67.15%, 43% 60.1%, 44% 52.85%, 45% 45.81%, 46% 39.38%, 47% 33.92%, 48% 29.74%, 49% 27.08%, 50% 26.09%, 51% 26.83%, 52% 29.25%, 53% 33.22%, 54% 38.51%, 55% 44.83%, 56% 51.8%, 57% 59.05%, 58% 66.15%, 59% 72.7%, 60% 78.34%, 61% 82.74%, 62% 85.65%, 63% 86.91%, 64% 86.44%, 65% 84.28%, 66% 80.54%, 67% 75.44%, 68% 69.27%, 69% 62.37%, 70% 55.14%, 71% 47.99%, 72% 41.32%, 73% 35.52%, 74% 30.9%, 75% 27.75%, 76% 26.22%, 77% 26.41%, 78% 28.31%, 79% 31.81%, 80% 36.72%, 81% 42.74%, 82% 49.55%, 83% 56.76%, 84% 63.95%, 85% 70.72%, 86% 76.68%, 87% 81.5%, 88% 84.9%, 89% 86.7%, 90% 86.78%, 91% 85.14%, 92% 81.88%, 93% 77.18%, 94% 71.31%, 95% 64.6%, 96% 57.44%, 97% 50.21%, 98% 43.35%, 99% 37.24%, 100% 32.22%);
    clip-path: polygon(100% 100%, 0 100%, 0 31.59%, 1% 36.43%, 2% 42.4%, 3% 49.18%, 4% 56.37%, 5% 63.57%, 6% 70.38%, 7% 76.39%, 8% 81.28%, 9% 84.76%, 10% 86.65%, 11% 86.82%, 12% 85.27%, 13% 82.09%, 14% 77.46%, 15% 71.65%, 16% 64.97%, 17% 57.82%, 18% 50.59%, 19% 43.7%, 20% 37.53%, 21% 32.45%, 22% 28.73%, 23% 26.58%, 24% 26.14%, 25% 27.42%, 26% 30.35%, 27% 34.76%, 28% 40.41%, 29% 46.98%, 30% 54.08%, 31% 61.32%, 32% 68.3%, 33% 74.6%, 34% 79.88%, 35% 83.83%, 36% 86.23%, 37% 86.95%, 38% 85.94%, 39% 83.26%, 40% 79.07%, 41% 73.59%, 42% 67.15%, 43% 60.1%, 44% 52.85%, 45% 45.81%, 46% 39.38%, 47% 33.92%, 48% 29.74%, 49% 27.08%, 50% 26.09%, 51% 26.83%, 52% 29.25%, 53% 33.22%, 54% 38.51%, 55% 44.83%, 56% 51.8%, 57% 59.05%, 58% 66.15%, 59% 72.7%, 60% 78.34%, 61% 82.74%, 62% 85.65%, 63% 86.91%, 64% 86.44%, 65% 84.28%, 66% 80.54%, 67% 75.44%, 68% 69.27%, 69% 62.37%, 70% 55.14%, 71% 47.99%, 72% 41.32%, 73% 35.52%, 74% 30.9%, 75% 27.75%, 76% 26.22%, 77% 26.41%, 78% 28.31%, 79% 31.81%, 80% 36.72%, 81% 42.74%, 82% 49.55%, 83% 56.76%, 84% 63.95%, 85% 70.72%, 86% 76.68%, 87% 81.5%, 88% 84.9%, 89% 86.7%, 90% 86.78%, 91% 85.14%, 92% 81.88%, 93% 77.18%, 94% 71.31%, 95% 64.6%, 96% 57.44%, 97% 50.21%, 98% 43.35%, 99% 37.24%, 100% 32.22%);
    height: 23px;
    left: 0;
    position: absolute;
    top: 0;
    transform: translateY(-100%);
    width: 100%
}

.count-blocks {
    display: flex;
    gap: 8px
}

.count-blocks .count-block {
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 0;
    width: 80px
}

@media (max-width:939px) {
    .count-blocks .count-block {
        width: 100%
    }
}

.count-blocks .count-block .time-unit {
    text-transform: uppercase
}

.bg-cw-lightblue {
    background-color: #8ed3fd
}

.text-cw-blue {
    color: #07337a
}

.text-cw-lightblue-10 {
    color: #ebf6fa
}

.text-cw-lightblue-5 {
    color: #c2e5f0
}

.bg-cw-blue {
    background-color: #07337a
}

.last-availabilities-wrapper {
    color: #f66659;
    display: inline-flex;
    transform: translateY(2px)
}

.last-availabilities-wrapper .animated-circle-wrapper {
    align-items: center;
    display: flex;
    height: 14px;
    justify-content: center;
    position: relative;
    width: 14px
}

.last-availabilities-wrapper .animated-circle-wrapper .animated-circle-back {
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-name: opacityPulse;
    animation-timing-function: linear;
    background-color: #f66659;
    border-radius: 14px;
    content: "";
    height: 6px;
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    will-change: opacity, transform
}

@keyframes opacityPulse {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1)
    }

    2% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1)
    }

    99% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2.33)
    }

    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1)
    }
}

.last-availabilities-wrapper .animated-circle-wrapper .animated-circle-back.dark {
    background-color: #d9ff66
}

.last-availabilities-wrapper .animated-circle-wrapper .animated-circle {
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-name: pulse;
    animation-timing-function: ease;
    background-color: #f66659;
    border-radius: 8px;
    content: "";
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    will-change: width, height, transform
}

@keyframes pulse {
    0% {
        height: 6px;
        transform: translate(-50%, -50%);
        width: 6px
    }

    20% {
        height: 8px;
        transform: translate(-50%, -50%);
        width: 8px
    }

    25% {
        height: 8px;
        transform: translate(-50%, -50%);
        width: 8px
    }

    30% {
        height: 6px;
        transform: translate(-50%, -50%);
        width: 6px
    }

    to {
        height: 6px;
        transform: translate(-50%, -50%);
        width: 6px
    }
}

.last-availabilities-wrapper .animated-circle-wrapper .animated-circle.dark {
    background-color: #d9ff66
}

.last-availabilities-wrapper.dark {
    color: #d9ff66
}

.back-end-course-it {
    height: -moz-fit-content;
    height: fit-content;
    position: relative;
    width: 100%
}

.back-end-course-it .swiper-slide {
    height: auto
}

.back-end-course-it .modal {
    align-items: center;
    background-color: rgba(0, 0, 0, .6);
    display: flex;
    height: 100dvh;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3000
}

@media (max-width:939px) {
    .back-end-course-it .modal .modal-box {
        padding: 0 16px
    }
}

.back-end-course-it .modal .leadform-container .mail-input.special {
    font-size: 16px !important
}

.back-end-course-it .modal .leadform-container .lead-card {
    background-color: #fff;
    border-radius: 2px;
    width: 592px
}

@media (max-width:939px) {
    .back-end-course-it .modal .leadform-container .lead-card {
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: center;
        width: 100%
    }
}

.back-end-course-it .modal .leadform-container .lead-card h4 {
    margin-bottom: 36px
}

@media (max-width:939px) {
    .back-end-course-it .modal .leadform-container .lead-card h4 {
        margin-bottom: 16px
    }
}

.back-end-course-it .modal .leadform-container .lead-card .image-container {
    height: 184px;
    overflow: hidden;
    position: relative;
    width: 100%
}

@media (max-width:575px) {
    .back-end-course-it .modal .leadform-container .lead-card .image-container {
        height: 104px
    }
}

.back-end-course-it .modal .leadform-container .lead-card .image-container img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%
}

.back-end-course-it .modal .leadform-container .lead-card .image-container .close-button {
    cursor: pointer;
    position: absolute;
    right: 16px;
    top: 16px
}

.back-end-course-it .modal .leadform-container .lead-card .modal-content {
    padding: 32px 72px 56px
}

@media (max-width:575px) {
    .back-end-course-it .modal .leadform-container .lead-card .modal-content {
        padding: 24px 16px 32px
    }
}

.back-end-course-it .jumbo-section {
    padding-top: 56px
}

@media (max-width:939px) {
    .back-end-course-it .jumbo-section {
        padding-top: 0
    }

    .back-end-course-it .jumbo-section .jumbo-content {
        gap: 24px
    }
}

.back-end-course-it .jumbo-section .jumbo-content .badge {
    background-color: var(--secondaryColor);
    border-radius: 42px;
    display: inline-block;
    margin-bottom: 24px;
    padding: 8px 16px 4px
}

@media (max-width:939px) {
    .back-end-course-it .jumbo-section .jumbo-content .badge {
        margin-bottom: 16px
    }
}

.back-end-course-it .jumbo-section .jumbo-content h1 {
    margin-bottom: 8px
}

.back-end-course-it .jumbo-section .jumbo-content p {
    margin-bottom: 24px
}

@media (max-width:939px) {
    .back-end-course-it .jumbo-section .jumbo-content p {
        margin-bottom: 8px
    }
}

.back-end-course-it .jumbo-section .jumbo-content .list ul {
    margin-top: 8px
}

.back-end-course-it .jumbo-section .jumbo-content .list ul li {
    align-items: flex-start;
    display: flex;
    gap: 8px;
    list-style: none;
    margin-bottom: 8px
}

.back-end-course-it .jumbo-section .jumbo-content .list ul li:before {
    color: #172ba1;
    content: "\e906";
    font-family: BooleanFont;
    font-size: 20px;
    line-height: 27px;
    transform: translateY(-3.5px)
}

@media (max-width:939px) {
    .back-end-course-it .jumbo-section .jumbo-content .list ul li:before {
        line-height: 24px;
        transform: translateY(-2.5px)
    }
}

.back-end-course-it .jumbo-section .jumbo-content .list ul li:last-child {
    margin-bottom: 0
}

.back-end-course-it .jumbo-section .jumbo-img-container {
    border-radius: 0px;
    height: 447px;
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden;
    position: relative
}

@media (max-width:939px) {
    .back-end-course-it .jumbo-section .jumbo-img-container {
        height: 429px
    }
}

.back-end-course-it .jumbo-section .jumbo-img-container img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.back-end-course-it .jumbo-section .jumbo-img-container.mobile {
    border-radius: 0;
    height: 200px
}

.back-end-course-it .jumbo-section .info-recap {
    background-color: var(--secondaryColor);
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    margin: 24px 0 0;
    padding: 24px 0
}

@media (max-width:939px) {
    .back-end-course-it .jumbo-section .info-recap {
        flex-direction: column;
        margin: 32px 0 16px;
        padding: 0 16px
    }
}

.back-end-course-it .jumbo-section .info-recap .block {
    border-right: 2px solid var(--bs-border-color-translucent);
    padding: 16px;
    text-align: center;
    width: 25%
}

@media (max-width:939px) {
    .back-end-course-it .jumbo-section .info-recap .block {
        border-bottom: 2px solid var(--bs-border-color-translucent);
        border-right: 0;
        display: flex;
        justify-content: space-between;
        padding: 16px 0;
        width: 100%
    }
}

.back-end-course-it .jumbo-section .info-recap .block:last-child {
    border: none
}

.back-end-course-it .jumbo-section .jumbo-trustpilot {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 32px
}

.back-end-course-it .jumbo-section .jumbo-trustpilot-icons {
    display: flex;
    gap: 8px
}

@media (max-width:939px) {
    .back-end-course-it .jumbo-section .jumbo-trustpilot {
        gap: 8px;
        margin-top: 0
    }
}

.back-end-course-it .start-date-section .content {
    border-radius: 16px;
    margin-top: -32px;
    padding: 16px
}

@media (max-width:939px) {
    .back-end-course-it .start-date-section .content {
        margin-top: -16px
    }
}

@media (min-width:940px) {
    .back-end-course-it .start-date-section .content .head {
        padding: 24px 40px 0
    }
}

.back-end-course-it .start-date-section .content .date-container {
    background: #ADDFAA;
    border-radius: 8px;
    padding: 16px 40px 24px
}

@media (max-width:939px) {
    .back-end-course-it .start-date-section .content .date-container {
        padding: 16px
    }
}

.back-end-course-it .start-date-section .content .date {
    display: flex;
    gap: 64px;
    justify-content: center
}

@media (max-width:939px) {
    .back-end-course-it .start-date-section .content .date {
        flex-direction: column;
        gap: 24px
    }

    .back-end-course-it .start-date-section .content .date .date-block {
        min-width: 100%
    }
}

.back-end-course-it .start-date-section .content .date .date-block h3 s {
    text-decoration-color: #172ba1;
    text-decoration-thickness: 3px;
    vertical-align: middle
}

.back-end-course-it .start-date-section .content .date .date-block span {
    display: block
}

.back-end-course-it .start-date-section .content .date .end-submit {
    align-items: center;
    display: flex;
    gap: 4px;
    justify-content: center
}

.back-end-course-it .start-date-section .content .cta {
    display: flex;
    justify-content: center;
    margin: 24px 0
}

@media (max-width:939px) {
    .back-end-course-it .start-date-section .content .cta {
        display: block
    }
}

.back-end-course-it .start-date-section .whatsapp-cta {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 8px 0
}

.back-end-course-it .start-date-section .whatsapp-cta-wrapper {
    align-items: center;
    color: #2e45cc;
    cursor: pointer;
    display: inline-flex;
    gap: 4px
}

.back-end-course-it .start-date-section .whatsapp-cta-wrapper:hover {
    color: #0d1c73
}

.back-end-course-it .start-date-section .whatsapp-cta-text {
    text-decoration: underline
}

.back-end-course-it .start-date-section .info-tooltip {
    cursor: pointer;
    height: 16px;
    position: relative;
    transition: all easy .4s
}

.back-end-course-it .start-date-section .info-tooltip .tooltip-content {
    bottom: 16px;
    display: none;
    left: 50%;
    min-width: 272px;
    position: absolute;
    transform: translateX(-50%)
}

.back-end-course-it .start-date-section .info-tooltip .tooltip-content .square {
    background-color: #f5f9ff;
    border-radius: 16px;
    box-shadow: 0 4px 13.1px 0 rgba(0, 22, 50, .25)
}

.back-end-course-it .start-date-section .info-tooltip .tooltip-content .square span {
    color: #000
}

.back-end-course-it .start-date-section .info-tooltip .tooltip-content .triangle {
    transform: translateY(-2px)
}

.back-end-course-it .start-date-section .info-tooltip:hover .tooltip-content {
    display: block
}

.back-end-course-it .card-info-section .card {
    border-radius: 16px
}

.back-end-course-it .card-info-section .path-card {
    display: flex;
    gap: 32px;
    overflow: hidden
}

.back-end-course-it .card-info-section .path-card .content {
    flex-grow: 1;
    padding: 32px 0 32px 32px
}

.back-end-course-it .card-info-section .path-card .image-container {
    flex-basis: calc(33.33333% - 16px);
    flex-shrink: 0
}

.back-end-course-it .card-info-section .path-card .image-container img {
    width: 100%
}

.back-end-course-it .card-info-section .teacher-card {
    height: 100%;
    padding: 32px;
    position: relative
}

.back-end-course-it .card-info-section .teacher-card .content {
    position: relative;
    z-index: 10
}

.back-end-course-it .card-info-section .teacher-card .image-container {
    border-radius: 16px;
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%
}

.back-end-course-it .card-info-section .teacher-card .image-container img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.back-end-course-it .card-info-section .card-extra {
    height: 100%;
    padding: 32px;
    position: relative
}

.back-end-course-it .card-info-section .card-extra:after {
    background-color: #F4FBF3;
    border-radius: 16px;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    top: 0px;
    width: 100%
}

.back-end-course-it .card-info-section .card-extra .content {
    position: relative;
    z-index: 10
}

.back-end-course-it .card-info-section .card-extra .image-container {
    position: relative;
    width: 100%;
    z-index: 10
}

.back-end-course-it .card-info-section .card-extra .image-container img {
    width: 100%
}

.back-end-course-it .card-info-section .card-cs {
    align-items: center;
    display: flex;
    gap: 8px;
    padding: 22.5px 32px
}

.back-end-course-it .card-info-section .card-cs .icon {
    flex-shrink: 0;
    width: 136px
}

.back-end-course-it .card-info-section-mobile .cards-carousel .image-container {
    height: 160px;
    overflow: hidden
}

.back-end-course-it .card-info-section-mobile .cards-carousel .image-container img {
    width: 100%
}

.back-end-course-it .card-info-section-mobile .cards-carousel .card-mobile {
    height: 100%
}

.back-end-course-it .card-info-section-mobile .cards-carousel .path-card-mobile .image-container {
    align-items: center;
    display: flex;
    justify-content: center
}

.back-end-course-it .card-info-section-mobile .cards-carousel .path-card-mobile .image-container img {
    height: 90px;
    width: auto
}

.back-end-course-it .card-info-section-mobile .cards-carousel .card-extra-mobile .image-container {
    align-items: center;
    display: flex;
    justify-content: center
}

.back-end-course-it .card-info-section-mobile .cards-carousel .card-extra-mobile .image-container img {
    height: 135px;
    width: auto
}

.back-end-course-it .card-info-section-mobile .cards-carousel .card-cs-mobile .image-container {
    align-items: center;
    display: flex;
    justify-content: center
}

.back-end-course-it .card-info-section-mobile .cards-carousel .card-cs-mobile .image-container img {
    height: 136px;
    width: auto
}

.back-end-course-it .card-info-section-mobile .cards-carousel .carousel-controls {
    align-items: center;
    display: flex;
    justify-content: space-between
}

.back-end-course-it .card-info-section-mobile .cards-carousel .carousel-controls-btn {
    gap: 16px
}

@media (max-width:939px) {
    .back-end-course-it .card-info-section-mobile .cards-carousel .carousel-controls {
        flex-direction: column-reverse
    }
}

.back-end-course-it .card-info-section-mobile .cards-carousel .carousel-controls a {
    text-decoration: underline
}

@media (max-width:939px) {
    .back-end-course-it .card-info-section-mobile .cards-carousel .carousel-controls a {
        margin-top: 16px
    }
}

.back-end-course-it .card-info-section-mobile .cards-carousel .carousel-controls .button-next,
.back-end-course-it .card-info-section-mobile .cards-carousel .carousel-controls .button-prev {
    align-items: center;
    background-color: #2e45cc;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    height: 60px;
    justify-content: center;
    width: 60px
}

@media (max-width:939px) {

    .back-end-course-it .card-info-section-mobile .cards-carousel .carousel-controls .button-next,
    .back-end-course-it .card-info-section-mobile .cards-carousel .carousel-controls .button-prev {
        height: 50px;
        width: 50px
    }
}

.back-end-course-it .card-info-section-mobile .cards-carousel .carousel-controls .button-next i,
.back-end-course-it .card-info-section-mobile .cards-carousel .carousel-controls .button-prev i {
    color: #fff
}

.back-end-course-it .card-info-section-mobile .cards-carousel .carousel-controls .button-next:hover,
.back-end-course-it .card-info-section-mobile .cards-carousel .carousel-controls .button-prev:hover {
    background-color: #0d1c73
}

.back-end-course-it .card-info-section-mobile .cards-carousel .carousel-controls .button-next:hover:active,
.back-end-course-it .card-info-section-mobile .cards-carousel .carousel-controls .button-prev:hover:active {
    background-color: #4c64f2
}

.back-end-course-it .card-info-section-mobile .cards-carousel .carousel-controls .button-prev {
    transform: rotate(180deg)
}

.back-end-course-it .course-schedule-section .lessons-block:after {
    background-color: #d5dbe1;
    content: "";
    height: 1px;
    margin: 24px 16px;
    width: 100%
}

@media (max-width:939px) {
    .back-end-course-it .course-schedule-section .lessons-block:after {
        margin: 16px
    }
}

.back-end-course-it .course-schedule-section .lessons-block .title-block {
    align-items: center;
    display: flex;
    gap: 16px
}

.back-end-course-it .course-schedule-section .lessons-block .title-block:before {
    content: "\e957";
    font-family: BooleanFont;
    font-size: 32px;
    line-height: 30.5px
}

@media (max-width:939px) {
    .back-end-course-it .course-schedule-section .lessons-block .title-block:before {
        line-height: 23.5px
    }
}

.back-end-course-it .course-schedule-section .tutoring-block .title-block {
    align-items: center;
    display: flex;
    gap: 16px
}

.back-end-course-it .course-schedule-section .tutoring-block .title-block:before {
    content: "\e959";
    font-family: BooleanFont;
    font-size: 32px;
    line-height: 30.5px
}

@media (max-width:939px) {
    .back-end-course-it .course-schedule-section .tutoring-block .title-block:before {
        line-height: 23.5px
    }
}

.back-end-course-it .part-time-section {
    text-align: start
}

@media (max-width:939px) {
    .back-end-course-it .part-time-section {
        background-color: #F4FBF3;
        padding: 40px 0
    }
}

.back-end-course-it .part-time-section .box {
    border-radius: 16px;
    padding: 32px
}

@media (max-width:939px) {
    .back-end-course-it .part-time-section .box {
        border-radius: 0;
        padding: 0
    }
}

.back-end-course-it .part-time-section .blocks {
    display: flex;
    gap: 32px
}

@media (max-width:939px) {
    .back-end-course-it .part-time-section .blocks {
        flex-direction: column
    }
}

.back-end-course-it .part-time-section .blocks .badge {
    background-color: #b8d3ff;
    border-radius: 120px;
    color: #172ba1;
    display: inline-block;
    padding: 8px 24px 4px
}

.back-end-course-it .part-time-section .blocks .block .list ul {
    margin-top: 8px
}

.back-end-course-it .part-time-section .blocks .block .list ul li {
    align-items: center;
    display: flex;
    gap: 8px;
    list-style: none;
    margin-bottom: 8px
}

.back-end-course-it .part-time-section .blocks .block .list ul li:last-child {
    margin-bottom: 0
}

.back-end-course-it .course-details-section {
    background-color: #F4FBF3;
    padding: 72px 0
}

@media (max-width:939px) {
    .back-end-course-it .course-details-section {
        padding: 40px 0
    }
}

.back-end-course-it .course-details-section .badge-container {
    display: flex;
    justify-content: center
}

.back-end-course-it .course-details-section .badge-container .badge {
    background-color: #80b0ff;
    border-radius: 42px;
    color: #fff;
    display: inline-block;
    padding: 8px 16px 4px
}

.back-end-course-it .course-details-section .early-banner {
    align-items: center;
    background-color: #a1decf;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    padding: 16px
}

@media (max-width:939px) {
    .back-end-course-it .course-details-section .early-banner {
        flex-direction: column;
        gap: 16px
    }
}

.back-end-course-it .course-details-section .early-banner .content {
    align-items: center;
    display: flex;
    gap: 8px
}

@media (max-width:939px) {
    .back-end-course-it .course-details-section .early-banner .content {
        flex-direction: column;
        text-align: center;
        width: 100%
    }

    .back-end-course-it .course-details-section .early-banner .countdown {
        width: 100%
    }
}

.back-end-course-it .course-details-section .early-banner .countdown h3 {
    text-align: center
}

.back-end-course-it .course-details-section .early-banner .countdown .count-blocks {
    display: flex;
    gap: 8px
}

.back-end-course-it .course-details-section .early-banner .countdown .count-blocks .count-block {
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 0;
    width: 80px
}

@media (max-width:939px) {
    .back-end-course-it .course-details-section .early-banner .countdown .count-blocks .count-block {
        width: 100%
    }
}

.back-end-course-it .course-details-section .early-banner .countdown .count-blocks .count-block .time-unit {
    text-transform: uppercase
}

.back-end-course-it .course-details-section .info-box {
    border: 1px solid #002100;
    border-radius: 16px;
    gap: 32px;
    padding: 16px;
    position: relative
}

.back-end-course-it .course-details-section .info-box.financing {
    background-color: #fff;
    border: 0
}

@media (max-width:939px) {
    .back-end-course-it .course-details-section .info-box.financing {
        padding: 16px 16px 54px
    }
}

.back-end-course-it .course-details-section .info-box .head {
    align-items: center;
    display: flex;
    gap: 8px
}

.back-end-course-it .course-details-section .info-box .head h4 {
    text-transform: uppercase
}

.back-end-course-it .course-details-section .info-box .head .cta-badge {
    background-color: #f5f9ff;
    border-radius: 120px;
    cursor: pointer;
    padding: 2px 16px
}

@media (max-width:939px) {
    .back-end-course-it .course-details-section .info-box .head .cta-badge {
        background-color: #b8d3ff;
        border-radius: 0 0 16px 16px;
        bottom: 0;
        left: 0;
        padding: 8px 0;
        position: absolute;
        text-align: center;
        width: 100%
    }
}

.back-end-course-it .course-details-section .info-box .head .cta-badge:hover {
    background-color: #172ba1;
    color: #fff
}

.back-end-course-it .course-details-section .info-box .content {
    display: flex;
    gap: 32px
}

@media (max-width:939px) {
    .back-end-course-it .course-details-section .info-box .content {
        flex-direction: column;
        gap: 16px
    }
}

.back-end-course-it .course-details-section .info-box .content .list-container {
    width: 41.6666666667%
}

@media (max-width:939px) {
    .back-end-course-it .course-details-section .info-box .content .list-container {
        width: 100%
    }
}

.back-end-course-it .course-details-section .info-box .content .list-container ul {
    margin-top: 8px
}

.back-end-course-it .course-details-section .info-box .content .list-container ul li {
    align-items: flex-start;
    display: flex;
    gap: 8px;
    list-style: none;
    margin-bottom: 4px
}

.back-end-course-it .course-details-section .info-box .content .list-container ul li:last-child {
    margin-bottom: 0
}

.back-end-course-it .course-details-section .info-box .content .list-container ul li .icon {
    margin-top: 6px
}

@media (max-width:939px) {
    .back-end-course-it .course-details-section .info-box .content .list-container ul li .icon {
        margin-top: 3px
    }
}

.back-end-course-it .course-details-section .info-box .price-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 58.3333333333%
}

@media (max-width:939px) {
    .back-end-course-it .course-details-section .info-box .price-info {
        width: 100%
    }
}

.back-end-course-it .course-details-section .info-box .price-info .early-price-box {
    align-items: center;
    background: #d2efe8;
    border: 1px solid #5fc6ad;
    border-radius: 2px;
    border-radius: 8px;
    display: flex;
    gap: 16px;
    margin-top: 16px;
    padding: 8px 16px
}

.back-end-course-it .course-details-section .info-box .price-info .early-price-box .content {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%
}

@media (max-width:939px) {

    .back-end-course-it .course-details-section .info-box .price-info .early-price-box .content .paragraph-2,
    .back-end-course-it .course-details-section .info-box .price-info .price-box .content .paragraph-2 {
        display: block;
        margin-bottom: 4px
    }
}

.back-end-course-it .course-details-section .end-list ul {
    list-style: none
}

.back-end-course-it .course-details-section .end-list ul li {
    align-items: flex-start;
    display: flex
}

.back-end-course-it .course-details-section .end-list ul li:before {
    color: #172ba1;
    content: "\e906";
    font-family: BooleanFont;
    font-size: 20px;
    font-style: normal;
    line-height: 27px;
    margin-right: 8px
}

@media (max-width:939px) {
    .back-end-course-it .course-details-section .end-list ul li:before {
        line-height: 24px
    }
}

.back-end-course-it .skills-details-section .logo-skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    row-gap: 8px
}

@media (max-width:939px) {
    .back-end-course-it .skills-details-section .logo-skills-container img {
        height: 64px
    }
}

.back-end-course-it .certificate-section .wrap {
    position: relative
}

.back-end-course-it .certificate-section .wrap:before {
    background-color: #F4FBF3;
    border-radius: 16px;
    content: "";
    height: 100%;
    left: 16px;
    position: absolute;
    top: 0;
    width: calc(100% - 32px)
}

.back-end-course-it .certificate-section .picture-container {
    height: 100%;
    overflow: hidden;
    position: relative
}

@media (min-width:940px) {
    .back-end-course-it .certificate-section .picture-container {
        border-bottom-left-radius: 16px;
        border-top-left-radius: 16px
    }
}

@media (max-width:939px) {
    .back-end-course-it .certificate-section .picture-container {
        border-top-left-radius: 16px;
        border-top-right-radius: 16px
    }
}

.back-end-course-it .certificate-section .picture-container img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    width: 100%
}

@media (max-width:939px) {
    .back-end-course-it .certificate-section .picture-container img {
        height: 216px;
        position: static
    }
}

.back-end-course-it .certificate-section .content-wrap {
    height: 100%;
    padding: 32px
}

@media (max-width:939px) {
    .back-end-course-it .certificate-section .content-wrap {
        padding: 16px
    }
}

.back-end-course-it .career-service-section .head .special-title {
    align-items: center;
    display: flex
}

.back-end-course-it .career-service-section .head .special-title h2 {
    z-index: 10
}

.back-end-course-it .career-service-section .head .special-title span {
    border-radius: 8px;
    transform: rotate(-6deg) translate(-10px, -5px)
}

.back-end-course-it .career-service-section ul li {
    align-items: flex-start;
    display: flex;
    gap: 8px;
    list-style: none;
    margin-bottom: 8px
}

.back-end-course-it .career-service-section ul li:last-child {
    margin-bottom: 0
}

.back-end-course-it .career-service-section ul li .icon {
    flex-shrink: 0;
    margin-top: 6px
}

@media (max-width:939px) {
    .back-end-course-it .career-service-section ul li .icon {
        margin-top: 3px
    }
}

.back-end-course-it .career-service-section .picture-container {
    height: 100%;
    overflow: hidden;
    position: relative
}

@media (max-width:939px) {
    .back-end-course-it .career-service-section .picture-container {
        margin-bottom: 32px
    }
}

.back-end-course-it .career-service-section .picture-container img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    width: 100%
}

@media (max-width:939px) {
    .back-end-course-it .career-service-section .picture-container img {
        height: 216px;
        position: static
    }
}

.back-end-course-it .reviews-section {
    padding: 72px 0
}

@media (max-width:939px) {
    .back-end-course-it .reviews-section {
        padding: 40px 0
    }
}

.back-end-course-it .reviews-section .content-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center
}

@media (max-width:939px) {
    .back-end-course-it .reviews-section .content-wrap {
        display: block
    }
}

.back-end-course-it .reviews-section .picture-container img {
    margin-top: -20px;
    width: 100%
}

.back-end-course-it .reviews-section .logo-container {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: -40px
}

.back-end-course-it .prefooter-section {
    overflow: hidden
}

.back-end-course-it .prefooter-section .wrap {
    position: relative
}

.back-end-course-it .prefooter-section .wrap .mobile-picture img {
    margin-right: 16px;
    transform: translate(100%, 5px);
    width: 50%
}

.back-end-course-it .prefooter-section .wrap .picture-container {
    bottom: -63.5px;
    position: absolute;
    right: 0;
    transform: translateX(-96px);
    width: 321px
}

.back-end-course-it .prefooter-section .wrap .picture-container img {
    width: 100%
}

.back-end-course-it .faqs-section {
    padding: 56px 0
}

@media (max-width:939px) {
    .back-end-course-it .faqs-section {
        padding: 32px 0
    }
}

.back-end-course-it .faqs-section .faq-title {
    color: #001632;
    margin-bottom: 40px
}

@media (max-width:939px) {
    .back-end-course-it .faqs-section .faq-title {
        display: none
    }
}

.back-end-course-it .skills-section .skill-card div {
    height: 100%
}

.back-end-course-it .skills-section .skill-card div h4 {
    margin: 8px 0
}

@media (max-width:939px) {
    .back-end-course-it .skills-section .skill-card div h4 {
        margin: 8px 0 0
    }
}

.back-end-course-it .banner .content {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 32px 0;
    width: 100%
}

@media (max-width:939px) {
    .back-end-course-it .banner .content {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
        padding: 16px 0
    }
}

.back-end-course-it .banner .content a {
    display: inline-block;
    width: -moz-fit-content;
    width: fit-content
}

@media (max-width:939px) {
    .back-end-course-it .banner .content a {
        width: 100%
    }
}

.back-end-course-it .banner.fundamentals {
    background: linear-gradient(90deg, var(--secondaryColor) -.21%, var(--bg1) 90.14%);
    color: white;
}

@media (max-width:939px) {
    .back-end-course-it .banner.fundamentals .content-text {
        text-align: center;
        width: 100%
    }
}

.back-end-course-it .banner.syllabus .icon-text {
    align-items: center;
    display: flex;
    gap: 16px;
    width: 100%
}

@media (max-width:939px) {
    .back-end-course-it .banner.syllabus .icon-text {
        align-items: flex-start;
        flex-direction: column;
        text-align: left
    }
}

.back-end-course-it .banner.syllabus .icon-text .icon-block {
    align-items: center;
    background-color: #80b0ff;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    padding: 4px
}

.back-end-course-it .banner.syllabus .icon-text .icon-block:before {
    color: #0d1c73;
    content: "\e912";
    font-size: 64px
}

.back-end-course-it .banner.syllabus button {
    white-space: nowrap
}

@media (max-width:939px) {
    .back-end-course-it .banner.syllabus button {
        width: 100%
    }
}

.text-editorBlue-90 {
    color: #00183b;
}

.paragraph-3 {
    color: #FFF;
}

.heading-4 {
    font-size: 20px;
    font-style: normal;
    font-synthesis: none;
    letter-spacing: 0;
    line-height: 23px;
}

.skills-details .line-lang {
    align-items: center;
    display: flex;
    margin-bottom: 24px
}

@media (min-width:940px) {
    .skills-details .line-lang {
        justify-content: center
    }
}

.skills-details .line-lang:nth-of-type(3) {
    margin-bottom: 48px
}

@media (max-width:939px) {
    .skills-details .line-lang:nth-of-type(3) {
        margin-bottom: 32px
    }

    .skills-details .line-lang {
        margin-bottom: 0
    }
}

.skills-details .line-lang .line {
    align-items: center;
    display: flex
}

@media (max-width:939px) {
    .skills-details .line-lang .line {
        margin-bottom: 8px
    }
}

.skills-details .line-lang .language {
    margin-left: 32px;
    margin-right: 16px
}

@media (max-width:939px) {
    .skills-details .line-lang .language {
        margin-left: 16px;
        margin-right: 8px
    }
}

.skills-details .line-lang svg {
    height: 60px;
    width: 60px
}

@media (max-width:939px) {
    .skills-details .line-lang svg {
        height: 30px;
        width: 30px
    }
}

.skills-details .line-with-skill {
    border-bottom: 1px solid #F4FBF3;
    margin-bottom: 16px;
    padding-bottom: 16px
}

.skills-details .line-with-skill:last-child {
    border-bottom: none;
    margin-bottom: 0
}

@media (max-width:939px) {

    .skills-details .line-with-skill,
    .skills-details .line-with-skill .description {
        margin-top: 16px
    }

    .skills-details .line-with-skill .title {
        padding-right: 40px;
        position: relative
    }

    .skills-details .line-with-skill .title:after {
        content: "\e902";
        font-family: BooleanFont;
        font-size: 12px;
        font-style: normal;
        position: absolute;
        right: 20px;
        top: 0;
        transform: rotate(-45deg);
        transition: all .2s ease-in
    }

    .skills-details .line-with-skill .title.active-title:after {
        transform: rotate(0deg)
    }

    .skills-details .line-with-skill .description.active {
        display: none
    }
}

.button-primary,
.button-primary:hover {
    background-color: #002100;
    border: none;
    border-radius: 120px;
    color: #f8f9fa;
    cursor: pointer;
    display: inline-block;
    font-size: 18px;
    line-height: 24px;
    padding: 13px 20px 11px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.button-tertiary,
.button-tertiary:hover {
    background-color: var(--secondaryColor);
    border: none;
    border-radius: 120px;
    color: #FFF;
    cursor: pointer;
    display: inline-block;
    font-size: 18px;
    line-height: 24px;
    padding: 13px 20px 11px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.fs-16 {
    font-size: 16px;
}

.bmb-16px,
.bmy-16px {
    margin-bottom: 16px;
}

.bmb-72px,
.bmy-72px {
    margin-bottom: 72px;
}

.bpy-72px {
    padding-top: 72px;
}

.bpb-72px,
.bpy-72px {
    padding-bottom: 72px;
}

.bmt-56px {
    margin-top: 56px;
}

.bpy-xs-40px {
    padding-top: 40px;
    padding-bottom: 40px;
}

#contatti, #contatti li, #contatti ul {color: #00183b !important; } #contatti a {color: #00183b; text-decoration: underline !important; }