@font-face {
    font-family: sfprodisplay-regular;
    src: url(../fonts/SFProDisplay-Regular.ttf);
    font-display: swap
}

@font-face {
    font-family: sfprodisplay-semibold;
    src: url(../fonts/SFProDisplay-Semibold.ttf);
    font-display: swap
}

@font-face {
    font-family: quentin;
    src: url(../fonts/Quentin.ttf);
    font-display: swap
}

body {
    font-family: sfprodisplay-regular;
    position: relative;
    -ms-overflow-style: scrollbar;
    overflow-x: hidden;
    font-size: 14px !important
}

_:-ms-fullscreen, :root body {
    font-family: roboto, sans-serif
}

.container {
    position: relative
}

.content-wrapper {
    overflow-x: hidden;
    overflow-y: hidden
}

.inline-block {
    display: inline-block
}

@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(20px)
    }
    80% {
        -webkit-transform: translateX(-10px)
    }
    100% {
        -webkit-transform: translateX(0)
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        transform: translateX(-2000px)
    }
    60% {
        opacity: 1;
        transform: translateX(20px)
    }
    80% {
        transform: translateX(-10px)
    }
    100% {
        transform: translateX(0)
    }
}

@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(-20px)
    }
    80% {
        -webkit-transform: translateX(10px)
    }
    100% {
        -webkit-transform: translateX(0)
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        transform: translateX(2000px)
    }
    60% {
        opacity: 1;
        transform: translateX(-20px)
    }
    80% {
        transform: translateX(10px)
    }
    100% {
        transform: translateX(0)
    }
}

@-webkit-keyframes showUp {
    0% {
        opacity: 0;
        transform: translateY(35%)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes showUp {
    0% {
        opacity: 0;
        transform: translateY(35%)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@-webkit-keyframes rotateCircle {
    0% {
        -webkit-transform: rotateZ(0)
    }
    100% {
        -webkit-transform: rotateZ(360deg)
    }
}

@keyframes rotateCircle {
    0% {
        transform: rotateZ(0)
    }
    100% {
        transform: rotateZ(360deg)
    }
}

@-webkit-keyframes moveUpDown {
    0% {
        -webkit-transform: translateY(0)
    }
    50% {
        -webkit-transform: translateY(-30%)
    }
    100% {
        -webkit-transform: translateY(0)
    }
}

@keyframes moveUpDown {
    0% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-30%)
    }
    100% {
        transform: translateY(0)
    }
}

@-webkit-keyframes moveLeftRight {
    0% {
        -webkit-transform: translatX(0)
    }
    50% {
        -webkit-transform: translateX(8%)
    }
    100% {
        -webkit-transform: translateX(0)
    }
}

@keyframes moveLeftRight {
    0% {
        transform: translatX(0)
    }
    50% {
        transform: translateX(8%)
    }
    100% {
        transform: translateX(0)
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
    50% {
        transform: scale(1.05);
        -webkit-transform: scale(1.05)
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
}

@-webkit-keyframes pulse {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
    50% {
        transform: scale(1.05);
        -webkit-transform: scale(1.05)
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
}

@keyframes pulseharder {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
    50% {
        transform: scale(1.2);
        -webkit-transform: scale(1.2)
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
}

@-webkit-keyframes pulseharder {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
    50% {
        transform: scale(1.2);
        -webkit-transform: scale(1.2)
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
}

@-webkit-keyframes oscilation {
    25% {
        -webkit-transform: translatX(0)
    }
    50% {
        -webkit-transform: translateX(5px)
    }
    75% {
        -webkit-transform: translateX(0)
    }
}

@keyframes oscilation {
    25% {
        transform: translatX(0)
    }
    50% {
        transform: translateX(5px)
    }
    75% {
        transform: translateX(0)
    }
}

@-webkit-keyframes hoverMoveLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(40px)
    }
}

@keyframes hoverMoveLeft {
    0% {
        opacity: 1;
        transform: translateX(0)
    }
    100% {
        opacity: 0;
        transform: translateX(40px)
    }
}

.pr-0 {
    padding-right: 0
}

.pl-0 {
    padding-left: 0
}

img {
    max-width: 100%;
    height: auto;
    color: transparent
}

h1, h2, h3, h4 {
    font-family: titillium web, sans-serif
}

.custom-button {
    background-color: #00a0a6;
    padding: 10px;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #00a0a6;
    font-size: 14px;
    transition: .2s all ease-in-out;
    margin: 10px 0;
    border-radius: 0
}

.custom-button:hover {
    background-color: transparent;
    color: #00a0a6;
    border: 1px solid #00a0a6
}

.navbar.navbar-default {
    background-color: #fff;
    border-radius: 0;
    -webkit-border-radius: 0;
    border-top: 0;
    border-bottom: 3px solid #FF7E00;
    margin: 0;
    padding-top: 5px;
    padding-bottom: 5px
}

.nav-content {
    position: relative
}

.navbar.navbar-default .navbar-brand {
    background: url('../images/leoron_%20logo-01.svg');
    display: block;
    width: 130px;
    height: 40px;
    background-repeat: no-repeat;
    margin-top: 4px;
    margin-left: 0;
    background-size: contain
}

.navbar-brand-ta3leem {
    background: url(../images/ta3leem-logo.png)
}

.menu-left .nav.navbar-nav {
    margin-left: 45px
}

.menu-left .nav.navbar-nav li a {
    padding: 15px 20px;
    font-weight: 700;
    font-size: 14px
}

.menu-left .nav.navbar-nav li.menu-hover:before {
    content: "";
    position: absolute;
    height: 3px;
    width: 0;
    background-color: #FF7E00;
    display: block;
    margin: 0 auto;
    left: 50%;
    transform: translate(-50%);
    transition: width .25s ease-in-out
}

.menu-left .nav.navbar-nav li.menu-hover:hover:before {
    width: 50px
}

.menu-left .nav.navbar-nav li.dropdown:hover .dropdown-menu {
    display: block
}

.dropdown-menu.main li img {
    height: 26px;
    position: absolute;
    top: 13px
}

.menu-left .nav.navbar-nav li.dropdown .dropdown-menu.main {
    position: fixed;
    min-width: 190px;
    max-width: 214px;
    background-color: #f2f3f5;
    border-radius: 0;
    -webkit-border-radius: 0;
    padding: 0;
    height: 595px;
    left: -166%;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-box-shadow: inset -4px 0 3px -5px #000;
    -moz-box-shadow: inset -4px 0 3px -5px #000;
    box-shadow: inset -4px 0 3px -5px #000;
    z-index: 10000000
}

.menu-left .nav.navbar-nav li.dropdown .dropdown-menu.main li {
    border-bottom: 1px solid #c3cdd6
}

.menu-left .nav.navbar-nav li.dropdown .dropdown-menu.main li:last-child {
    border-bottom: 0
}

.menu-left .nav.navbar-nav li.dropdown .dropdown-menu.main li a {
    color: #5c6b77;
    position: relative;
    white-space: normal;
    font-family: SFProDisplay-Semibold
}

.menu-left .dropdown-menu.main li a:hover {
    background-color: transparent
}

.dropdown-menu.main li.hover {
    background-color: #fff;
    transition: all .25s ease-in-out;
    border: none
}

.menu-left .dropdown-menu.main li.hover a {
    color: #3f4850
}

.menu-left .dropdown-menu.main li a img:first-child {
    opacity: 1
}

.menu-left .dropdown-menu.main li a img:nth-child(2) {
    opacity: 0 !important
}

.menu-left .dropdown-menu.main li.hover a img:first-child {
    opacity: 0
}

.menu-left .dropdown-menu.main li.hover a img:nth-child(2) {
    opacity: 1 !important
}

.text-wrap {
    padding-left: 40px
}

ul.second-menu {
    list-style: none;
    position: fixed;
    left: 197px;
    height: 595px;
    top: 0;
    display: none;
    padding-left: 0;
    padding-right: 0;
    width: 300px;
    padding-top: 5px;
    padding-bottom: 10px;
    -webkit-box-shadow: inset -4px 0 3px -5px #000;
    -moz-box-shadow: inset -4px 0 3px -5px #000;
    box-shadow: inset -4px 0 3px -5px #000;
    background-color: #fafafa
}

ul.second-menu li.second-menu-title {
    padding-left: 20px !important;
    padding-top: 10px !important;
    color: #FF7E00;
    font-weight: 700;
    font-size: 12px
}

ul.second-menu::-webkit-scrollbar {
    width: 6px
}

ul.second-menu::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    border-radius: 10px;
    background-color: rgba(0, 130, 101, .3)
}

ul.second-menu::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #008265
}

ul.second-menu::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 130, 101, .7)
}

ul.second-menu:before {
    border-color: transparent transparent #fff transparent;
    top: -12px;
    border-style: solid;
    border-width: 0 12px 12px;
    content: '';
    position: absolute;
    left: 1px;
    width: 0;
    z-index: 2;
    height: 555px
}

ul.second-menu li .text-sub-wrap {
    color: #3f4850;
    padding-left: 45px;
    font-family: sfprodisplay-regular;
    font-weight: 500;
    font-size: 14px
}

.menu-left .nav.navbar-nav li.dropdown .dropdown-menu.main li.hover > ul.second-menu {
    display: block
}

.menu-left .nav.navbar-nav li.dropdown .dropdown-menu.main li.hover > ul.second-menu li {
    border-bottom: 0;
    padding-left: 0;
    padding-right: 0
}

.menu-left .dropdown-menu.main li.hover > ul.second-menu li a {
    position: relative;
    display: block;
    font-weight: 400;
    text-decoration: none;
    padding: 7px 20px
}

.menu-left .dropdown-menu.main li.hover ul.second-menu li a:hover {
    background-color: #f2f3f5;
    box-shadow: 2px #000
}

.menu-left .dropdown-menu.main li.hover ul.second-menu li a:hover .text-sub-wrap {
    color: #FF7E00
}

.menu-left .dropdown-menu.main li.hover ul.second-menu li a img {
    min-width: 22px;
    min-height: 26px;
    position: absolute;
    top: 4px
}

#second-menu-training li a img {
    min-width: 5px
}

#second-menu-location li a img {
    position: absolute;
    top: 7px;
    min-width: 1px;
    min-height: 1px;
    width: 30px;
    height: 20px
}

.menu-left ul.second-menu li a img:nth-child(3) {
    opacity: 0
}

.menu-left ul.second-menu li a:hover img:nth-child(3) {
    opacity: 1
}

.menu-left ul.second-menu li a span {
    position: absolute;
    top: -10px;
    right: 30px;
    font-weight: 700
}

.menu-left ul.second-menu li a i {
    position: absolute;
    top: 12px;
    right: 20px;
    color: #5d6b78;
    font-size: 11px
}

#second-menu-association .second-menu .text-sub-wrap {
    color: #3f4850;
    padding-left: 10px;
    padding-right: 30px;
    margin-bottom: 0;
    margin-left: 75px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    border-left: 1px solid #c3cdd6;
    height: 36px
}

#second-menu-association .second-menu .text-sub-wrap:last-child {
    margin-bottom: 0
}

#second-menu-association .second-menu li {
    margin-bottom: 1px
}

#second-menu-association .second-menu li a {
    padding-top: 6px;
    padding-bottom: 6px
}

#second-menu-association .second-menu > li a img {
    width: auto !important;
    position: absolute;
    top: 8px;
    min-width: 65px;
    max-height: 27px !important;
    max-width: 65px
}

ul.thirth-menu {
    display: none;
    list-style: none;
    position: fixed;
    z-index: 1000000;
    left: 497px;
    top: 0;
    width: 300px;
    background-color: rgba(255, 255, 255, .96);
    padding: 5px 0 10px;
    height: 595px;
    overflow-y: auto;
    font-family: sfprodisplay-regular;
    font-weight: 400
}

ul.thirth-menu::-webkit-scrollbar {
    width: 6px
}

ul.thirth-menu::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    border-radius: 10px;
    background-color: rgba(0, 130, 101, .3)
}

ul.thirth-menu::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #008265
}

ul.thirth-menu::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 130, 101, .7)
}

.menu-left .dropdown-menu.main li.hover ul.second-menu li:hover > ul.thirth-menu {
    display: block;
    padding-left: 0;
    padding-right: 0
}

.menu-left .dropdown-menu.main li.hover ul.second-menu li > ul.thirth-menu li {
    border-bottom: 1px solid #c3cdd6;
    margin-left: 0;
    padding: 0
}

.menu-left .dropdown-menu.main li.hover ul.second-menu li > ul.thirth-menu li:last-child {
    border-bottom: 0
}

.menu-left .dropdown-menu.main li.hover ul.second-menu li > ul.thirth-menu li a {
    color: #3f4850;
    padding: 9px 10px;
    font-size: 12px;
    line-height: 1.2;
    font-family: sfprodisplay-regular;
    font-weight: 500
}

#second-menu-association .second-menu ul.second-menu li > ul.thirth-menu li a {
    color: #3f4850;
    padding: 9px 10px;
    font-size: 12px;
    line-height: 1.2;
    font-family: sfprodisplay-regular;
    font-weight: 500
}

#second-menu-association .second-menu li a {
    padding-top: 6px;
    padding-bottom: 6px
}

.menu-left .nav.navbar-nav li.dropdown .dropdown-menu.main li.hover ul.second-menu li > ul.thirth-menu li a:hover {
    background: #f2f3f5;
    color: #FF7E00
}

.menu-left .nav.navbar-nav li a span {
    color: #5c6b77;
    margin-right: 5px;
    font-size: 17px;
    margin-top: 16px;
    position: absolute;
    top: -1px;
    left: 4px
}

.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover {
    background-color: transparent
}

.navbar.navbar-default .nav.navbar-nav li a {
    color: #5c6b77
}

.menu-left .navbar.navbar-default .nav.navbar-nav li a {
    font-size: 14px
}

.navbar.navbar-default .nav.navbar-nav li a:hover span {
    color: #FF7E00
}

.navbar.navbar-default .nav.navbar-nav li a:hover i {
    color: #FF7E00
}

.navbar.navbar-default .nav.navbar-nav li:hover a {
    color: #FF7E00
}

.navbar.navbar-default .nav.navbar-nav li:hover a span:before {
    text-decoration: none
}

.navbar.navbar-default .nav.navbar-nav li:hover a i:before {
    text-decoration: none
}

.navbar.navbar-default .nav.navbar-nav li:hover select {
    color: #FF7E00
}

.navbar.navbar-default .nav.navbar-nav li:hover .select_wrapper:after {
    color: #FF7E00
}

.menu_right .nav.navbar-nav li {
    padding: 0 8px
}

.menu_right .nav.navbar-nav li a {
    font-size: 11px;
    display: block
}

.menu_right .nav.navbar-nav li img {
    display: block;
    width: 25px;
    margin: 5px auto 0
}

.menu_right .nav.navbar-nav li img:first-child {
    display: block;
    width: 25px;
    margin: 5px auto 0
}

.menu_right .nav.navbar-nav li img:nth-child(2) {
    display: none
}

.menu_right .nav.navbar-nav li:hover img:first-child {
    display: none
}

.menu_right .nav.navbar-nav li:hover img:nth-child(2) {
    display: block
}

.menu_right .select_wrapper {
    position: relative;
    padding: right;
    cursor: pointer
}

.menu_right .select_wrapper ul {
    list-style: none;
    padding: 0
}

.menu_right .select_wrapper ul li.dropdown {
    padding: 0
}

.menu_right .select_wrapper ul li.dropdown a:hover, .menu_right .select_wrapper ul li.dropdown a:focus .menu_right .select_wrapper ul li.dropdown a:active, .menu_right .select_wrapper ul li.dropdown.open a:hover, .menu_right .select_wrapper ul li.dropdown.open a:focus, .menu_right .select_wrapper ul li.dropdown.open a:active {
    background-color: transparent;
    box-shadow: none
}

.menu_right .select_wrapper ul li.dropdown > ul.dropdown-menu {
    border-radius: 0;
    -webkit-border-radius: 0;
    min-width: 48px;
    margin: 0
}

.menu_right .select_wrapper ul li.dropdown.open > ul.dropdown-menu {
    display: none
}

.menu_right .select_wrapper:hover ul li.dropdown ul.dropdown-menu {
    display: block
}

.menu_right .select_wrapper ul li.dropdown > ul.dropdown-menu li a {
    padding: 5px 0
}

.menu_right .select_wrapper ul li.dropdown a i {
    padding-left: 3px
}

.menu_right .select_wrapper select {
    border: 0;
    color: #5c6b77;
    font-size: 11px;
    display: block;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 15px
}

.menu_right .select_wrapper select::-ms-expand {
    display: none
}

.menu_right .select_wrapper select:focus {
    outline: none
}

.navbar.navbar-default .navbar-form {
    float: left;
    margin-right: 10px
}

.navbar.navbar-default .form-group {
    position: relative
}

.navbar.navbar-default .form-group i {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    width: 40px;
    height: 34px;
    background: #FF7E00;
    cursor: pointer
}

.navbar.navbar-default .form-group i:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    color: #fff;
    font-size: 17px
}

.navbar.navbar-default input.form-control {
    border: 1px solid #5c6b77;
    border-radius: 0;
    -webkit-border-radius: 0;
    box-shadow: none;
    -webkit-transition: none;
    width: 250px;
    background-color: #f1f3f5;
    transition: width .5s ease-in-out;
    padding-right: 45px
}

.navbar.navbar-default input.form-control:focus {
    width: 350px;
    background-color: transparent;
    outline: none
}

.navbar.navbar-default input.form-control:focus ~ span ~ .dropdown-list ul {
    height: 99px;
    opacity: 1
}

.navbar.navbar-default .dropdown-list {
    position: absolute;
    width: 100%;
    padding-right: 40px;
    z-index: 10
}

.dropdown-list ul {
    list-style: none;
    padding: 3px 15px;
    background-color: #fff;
    height: 0;
    opacity: 0;
    overflow: hidden;
    border: 1px solid #5c6b77;
    border-top: 0;
    transition: all .25s ease-in-out
}

.dropdown-list ul li {
    padding: 5px 0;
    border-bottom: 1px solid #5c6b77
}

.dropdown-list ul li:last-child {
    border-bottom: 0
}

.dropdown-list ul li a {
    color: #5c6b77
}

.menu-hover.dropdown.services .dropdown-menu {
    background-color: #fafafa;
    border: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    box-shadow: inset -2px 0 0 -2px #000;
    -webkit-box-shadow: inset -2px 0 0 -2px #000;
    -moz-box-shadow: inset -2px 0 0 -2px #000
}

.menu-hover.dropdown.services .dropdown-menu li {
    padding: 0;
    display: block;
    border-bottom: 1px solid #ddd
}

.menu-hover.dropdown.services .dropdown-menu li a {
    padding: 7px 25px 7px 50px;
    color: #3f4850 !important;
    font-weight: 400;
    position: relative;
    transition: all ease .25s
}

.menu-hover.dropdown.services .dropdown-menu li a:hover {
    background-color: #f2f3f5;
    color: #FF7E00 !important;
    padding-left: 58px;
    padding-right: 17px
}

.menu-hover.dropdown.services .dropdown-menu li a img {
    position: absolute;
    width: 25px;
    height: auto;
    left: 20px;
    top: 5px
}

.menu-hover.dropdown.services .dropdown-menu li a i {
    position: absolute;
    width: 25px;
    height: auto;
    left: 20px;
    top: 10px;
    font-size: 14px;
    transition: all ease .25s
}

.menu-hover.dropdown.services .dropdown-menu li a:hover i {
    left: 28px
}

.menu_right {
    display: inline-block;
    float: right;
    margin-right: 70px
}

.menu_right .sign-in {
    position: absolute;
    right: 0;
    top: 5px
}

.sign-in .btn.btn-default {
    padding: 5px 15px;
    border: 1px solid #5c6b77;
    border-radius: 0;
    -webkit-border-radius: 0;
    color: #5c6b77;
    transition: all .25s ease-in-out
}

.sign-in .btn.btn-default:hover {
    border: 1px solid #FF7E00;
    background-color: #FF7E00;
    color: #fff
}

.menu_second {
    background-color: #f3f4f5
}

.menu_second-left {
    list-style: none;
    float: left;
    margin: 0;
    padding-left: 0;
    color: #5c6b77
}

ul.menu_second-left li a {
    text-decoration: none;
    color: #5c6b77;
    font-size: 12px
}

.menu_second-left img {
    margin-right: 7px
}

.menu_second-right {
    list-style: none;
    float: right;
    margin: 0;
    padding-left: 0
}

.menu_second-right li a {
    font-size: 14px
}

.menu_second ul li {
    display: inline-block;
    padding: 10px 0 10px 25px
}

.menu_second ul li a {
    color: #5c6b77
}

.menu_second ul li a:hover {
    color: #FF7E00
}

.menu_second ul li a:hover span:before {
    text-decoration: none
}

.menu_second ul li.dropdown .dropdown-menu {
    border-radius: 0;
    -webkit-box-shadow: inset -2px 0 0 -2px #000;
    -moz-box-shadow: inset -2px 0 0 -2px #000;
    box-shadow: inset -2px 0 0 -2px #000;
    background-color: #fafafa;
    border: 0;
    margin-top: 0
}

.downloads-menu-second a:hover {
    text-decoration: none
}

.dropdown-menu {
    padding: 0
}

.menu_second ul li.dropdown .dropdown-menu li {
    padding: 0;
    display: block;
    border-bottom: 1px solid #ddd
}

.menu_second ul li.dropdown .dropdown-menu:before {
    content: "";
    position: absolute;
    top: 0;
    width: 220px;
    right: 100%;
    height: 100%
}

.menu_second ul li.dropdown .dropdown-menu.zero:before {
    background: url(../images/training-calendar_downloads.jpg);
    background-size: cover;
    background-repeat: no-repeat
}

.menu_second ul li.dropdown .dropdown-menu.one:before {
    background: url(../images/calendar_downloads_2020.jpg);
    background-size: cover;
    background-repeat: no-repeat
}

.menu_second ul li.dropdown .dropdown-menu.two:before {
    background: url(../images/prospectus_downloads.jpg);
    background-size: cover;
    background-repeat: no-repeat
}

.menu_second ul li.dropdown .dropdown-menu.three:before {
    background: url(../images/brochure_downloads.jpg);
    background-size: cover;
    background-repeat: no-repeat
}

.menu_second ul li.dropdown .dropdown-menu.four:before {
    background: url(../images/calendar_downloads.jpg);
    background-size: cover;
    background-repeat: no-repeat
}

.menu_second ul li.dropdown .dropdown-menu li a {
    padding: 8px 22px;
    color: #3f4850;
    transition: all ease .3s
}

.undefined i {
    margin-right: 10px
}

.downloadsMenuItems i {
    padding-right: 8px
}

.menu_second ul li.dropdown .dropdown-menu li a:hover {
    background-color: #f2f3f5;
    color: #FF7E00;
    padding-left: 30px;
    padding-right: 14px
}

.menu_second ul li.dropdown .dropdown-menu li a:hover i {
    background-color: #f2f3f5;
    color: #FF7E00;
    padding-left: -8px
}

.menu_second ul li.dropdown.open .dropdown-menu {
    display: none
}

.menu_second ul li.dropdown:hover .dropdown-menu {
    display: block
}

.menu_second ul li.dropdown a {
    color: #FF7E00
}

.menu_second ul li.dropdown a#about_us_header {
    color: #5c6b77
}

.menu_second ul li.dropdown a#about_us_header:hover {
    color: #FF7E00
}

.menu_second ul li.dropdown a span {
    padding-left: 7px
}

.menu_second ul li.dropdown.services .dropdown-menu:before {
    width: 0;
    height: 0
}

.menu_second ul li.dropdown.media-news-menu .dropdown-menu:before {
    width: 0;
    height: 0
}

div.welcomeUserLabel {
    text-align: center;
    position: absolute;
    right: -20px;
    line-height: 14px;
    top: 0;
    width: 100px
}

div.welcomeUserLabel .dropdown-list {
    padding-right: 0 !important;
    cursor: pointer
}

div.welcomeUserLabel .dropdown-list .user-img {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    background: #fff;
    border: 2px solid #FF7E00;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -6px;
    left: 50%;
    transform: translate(-50%);
    margin-top: 0;
    position: relative
}

div.welcomeUserLabel .dropdown-list a {
    white-space: nowrap;
    text-overflow: ellipsis;
    position: absolute;
    top: 21px;
    color: #5c6b77;
    text-decoration: none;
    overflow: hidden;
    width: 105px;
    left: 0;
    font-size: 11px
}

div.welcomeUserLabel .dropdown-list .acount-list {
    cursor: default;
    position: relative
}

div.welcomeUserLabel .dropdown-list #account-list-panel {
    position: absolute;
    height: 0;
    visibility: hidden;
    opacity: 1;
    top: 43px;
    left: 50%;
    transform: translate(-50%);
    background-color: #fff;
    border: 1px solid #ebebeb;
    width: 340px;
    padding: 3px 0
}

#account-list-panel:hover .triangle {
    display: block
}

div.welcomeUserLabel .dropdown-list:hover #account-list-panel {
    height: auto;
    visibility: visible;
    text-align: left
}

div.welcomeUserLabel .dropdown-list #account-list-panel li {
    border-bottom: none
}

div.welcomeUserLabel .dropdown-list #account-list-panel li a {
    position: relative;
    top: 0 !important;
    font-size: 15px;
    text-transform: uppercase;
    color: #5d6b78
}

#account-list-my {
    position: relative;
    padding: 0 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left
}

.account-list-my-inner {
    border-bottom: 1px solid #ebebeb !important;
    padding: 15px 0
}

#account-list-my li {
    position: relative;
    text-align: center;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline;
    padding-left: 7px;
    text-transform: lowercase !important;
    color: #5d6b78;
    font-size: 14px
}

.account-circle {
    display: inline-block;
    border-radius: 100% !important;
    background-color: #5d6b78 !important;
    border: 0 !important;
    color: #fff;
    text-transform: uppercase;
    width: 42px !important;
    height: 42px !important;
    text-align: center;
    line-height: 42px;
    font-size: 18px
}

#account-list-my img {
    position: absolute;
    right: 15px;
    top: 18px;
    width: 15px;
    cursor: pointer;
    transition: all ease .2s
}

#account-list-my img:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1)
}

#account-list-main {
    border-bottom: 0;
    padding: 10px 0
}

#account-list-main li {
    padding: 10px 25px;
    text-align: left;
    cursor: pointer
}

#account-list-main li:hover {
    background-color: #f2f3f5;
    color: #FF7E00 !important
}

#account-list-main li i {
    margin-right: 10px;
    color: #00a0a6;
    display: inline;
    font-size: 17px
}

#account-list-main li a {
    transition: all ease .2s;
    color: #333;
    text-transform: initial !important;
    font-size: 17px
}

#account-list-main li a:hover {
    color: #00a0a6 !important
}

#account-list-main li:hover a {
    color: #FF7E00 !important
}

#account-list-sign {
    text-align: center;
    padding: 10px 25px
}

div.welcomeUserLabel span {
    font-size: 14px;
    display: block;
    margin-top: 2px;
    margin-bottom: 2px;
    color: #5c6b77;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

div.welcomeUserLabel i {
    font-size: 14px;
    display: block;
    margin-top: 2px;
    margin-bottom: 2px;
    color: #5c6b77;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

div.welcomeUserLabel span strong {
    color: #FF7E00;
    font-size: 10px
}

#logOutButton {
    border: 1px solid #00a0a6;
    width: 100%;
    color: #fff;
    cursor: pointer;
    transition: all ease .2s;
    text-transform: initial;
    background: 0 0;
    text-align: center;
    padding: 10px 0;
    background-color: #00a0a6;
    font-size: 17px
}

#logOutButton:hover {
    background-color: transparent;
    border: 1px solid #00a0a6;
    color: #00a0a6
}

.slider-wrapper {
    margin-top: 0;
    margin-bottom: 40px
}

.box {
    position: relative
}

.box:hover > .box-active {
    opacity: 1
}

.most-popular-cards .box:hover > .box-hover {
    opacity: 1;
    z-index: 3;
    display: block;
    visibility: visible;
    transform: scale(1);
    -webkit-transform: scale(1)
}

.slick-slide {
    opacity: 0;
    transition: opacity 1s ease-out
}

.slick-active {
    opacity: 1 !important;
    transition: opacity 1s ease-in
}

.slick-cloned {
    opacity: 0
}

.slick-list.draggable {
    position: relative;
    z-index: 1;
    transition: all .25s ease-in-out;
    overflow: visible;
    padding: 35px 0 0
}

.box-hover:after {
    content: "";
    width: 0;
    height: 100%;
    background-color: transparent;
    position: absolute;
    left: 100%;
    top: 0;
    display: none
}

.slick-active + .slick-active + .slick-active + .slick-active + .slick-active .box:hover > .box-hover {
    left: -121px
}

.slick-active + .slick-active + .slick-active + .slick-active + .slick-active .box > .box-hover:after {
    content: "";
    width: 0;
    height: 100%;
    background-color: transparent;
    position: absolute;
    left: 100%;
    top: 0;
    display: none
}

.slick-active + .slick-active + .slick-active + .slick-active + .slick-active .box:hover > .box-hover:after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: transparent;
    position: absolute;
    left: 100%;
    top: 0;
    display: block
}

.slick-slide.slick-current.slick-active .box:hover > .box-hover {
    left: 2px
}

.box-active {
    overflow: hidden;
    opacity: 1;
    position: relative;
    z-index: 2;
    -webkit-box-shadow: 4px 1px 7px -3px rgba(143, 148, 148, .06);
    -moz-box-shadow: 4px 1px 7px -3px rgba(143, 148, 148, .06);
    box-shadow: 4px 1px 7px -3px rgba(143, 148, 148, .06)
}

.box-image {
    position: relative;
    overflow: hidden
}

.box-image img {
    max-width: 100%;
    width: 100%;
    height: auto
}

.box-content {
    padding: 0 15px;
    background: #fff;
    height: 135px;
    overflow: hidden
}

.box-content h2 {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 5px
}

.brand-wrapper {
    position: relative;
    border-right: 1px solid #aeb5bb
}

.brand-wrapper img {
    max-width: 100%;
    height: auto;
    max-height: 38px !important
}

.box-hover {
    padding: 12px 18px;
    position: absolute;
    top: -129px;
    left: -61px;
    display: block;
    visibility: hidden;
    width: 337px;
    height: 461px;
    z-index: -1;
    background: #fff;
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 0;
    -webkit-box-shadow: 3px 2px 3px 0 rgba(204, 204, 204, .17);
    -moz-box-shadow: 3px 2px 3px 0 rgba(204, 204, 204, .17);
    box-shadow: 3px 2px 3px 0 rgba(204, 204, 204, .17);
    transition: opacity .05s linear;
    -webkit-transition: opacity .05s linear;
    -moz-transition: opacity .05s linear;
    -o-transition: opacity .05s linear;
    transition-delay: .35s;
    -webkit-transition-delay: .35s;
    -moz-transition-delay: .35s;
    -o-transition-delay: .35s
}

.slick-slide.slick-current.slick-active .box-hover {
    left: 35px
}

.box-hover-header {
    padding-bottom: 5px;
    height: 42px
}

.box-hover-header a p {
    padding-bottom: 0;
    color: #5d6b78;
    font-family: sfprodisplay-regular
}

.courses-list-body .radiation-text-01 {
    position: absolute;
    top: 150px;
    left: 2%;
    width: 25px;
    -webkit-animation: pulse 2.5s infinite;
    -moz-animation: pulse 2.5s infinite;
    -o-animation: pulse 2.5s infinite;
    animation: pulse 2.5s infinite;
    z-index: 1
}

.courses-list-body .radiation-text-01.fixed {
    position: fixed;
    z-index: 10
}

.courses-list-body .radiation-text-02 {
    position: absolute;
    bottom: 100px;
    left: 2%;
    width: 25px;
    -webkit-animation: pulse 2.5s infinite;
    -moz-animation: pulse 2.5s infinite;
    -o-animation: pulse 2.5s infinite;
    animation: pulse 2.5s infinite;
    z-index: -1
}

.course-category {
    position: relative
}

.course-category .img-wrap {
    top: 0;
    position: absolute;
    width: 35px;
    height: auto
}

.brand-wrapper .img-wrap a:focus {
    outline: none
}

.course-category a:focus {
    outline: none
}

.course-category .img-wrap a:focus {
    outline: none
}

.course-category .img-wrap img {
    width: auto;
    height: 32px !important
}

.course-category p {
    font-size: 14px;
    padding: 1px 0 0 43px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

.box-hover-subheader {
    padding: 7px 0;
    border-top: 1px solid #aeb5bb;
    border-bottom: 1px solid #aeb5bb;
    margin-bottom: 7px;
    height: 32px
}

.box-hover-subheader .row {
    height: 19px
}

.box-hover-subheader .img-wrap {
    position: absolute;
    width: 35px;
    height: auto;
    display: block
}

.box-hover-subheader p {
    font-size: 13px;
    margin: 0;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #5d6b78
}

.sub-header-left {
    border-right: 1px solid #aeb5bb
}

.sub-header-left img {
    width: 17px;
    height: auto;
    display: block;
    margin-top: 0
}

.sub-header-left p {
    padding-left: 25px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

.sub-header-right img {
    width: 20px;
    height: auto;
    display: block;
    margin: 0 auto
}

.sub-header-right p {
    padding-left: 36px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

.box-hoverer-content {
    height: 295px;
    padding-top: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    cursor: pointer
}

.box-hoverer-content .header-wrapper {
    margin-bottom: 5px
}

.box-hoverer-content .header-wrapper h2 {
    margin: 0;
    font-size: 20px;
    color: #5f686d;
    margin-bottom: 5px;
    font-family: Titillium Web;
    font-weight: 600
}

.box-hoverer-content .header-wrapper h3 {
    margin: 0;
    font-size: 16px;
    color: #FF7E00;
    font-family: Titillium Web
}

.box-hoverer-content .intro {
    margin-top: 10px;
    margin-bottom: 15px;
    font-family: sfprodisplay-regular
}

.box-hoverer-content .intro p {
    font-size: 13px;
    margin-bottom: 0;
    font-family: sfprodisplay-regular
}

.box-hoverer-content .intro p span {
    font-size: 10px;
    margin-bottom: 0;
    font-family: sfprodisplay-regular;
    line-height: 1
}

.box-hoverer-content .intro p span span {
    font-size: 10px;
    margin-bottom: 0;
    font-family: SFProDisplay-Regular;
    line-height: 1
}

.box-hoverer-content .intro ul {
    list-style: none;
    padding-left: 0;
    padding-right: 0;
    margin-top: 5px;
    font-family: sfprodisplay-regular
}

.box-hoverer-content .intro ul li {
    font-size: 10px;
    position: relative;
    padding-left: 15px
}

.box-hoverer-content .intro ul li:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 2px;
    height: 2px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    background-color: #5c6b77
}

.box-hover-bottom .btn-default {
    width: 100%;
    border-radius: 0;
    -webkit-border-radius: 0;
    background-color: #FF7E00;
    color: #fff;
    padding: 13px 12px;
    font-size: 17px
}

.box-hover-bottom .btn-default:hover {
    color: #FF7E00;
    background-color: transparent;
    border: 1px solid #FF7E00;
    transition: all ease-in-out .25s
}

.box-hover-bottom img {
    width: 33px;
    height: auto;
    display: block;
    margin-top: 5px
}

.box-hover-bottom .saved-wraper a img:nth-child(2) {
    display: none
}

.box-hover-bottom .saved-wraper a:focus {
    outline: none
}

.box-hover-bottom .saved-wraper a:hover img:nth-child(1) {
    display: none
}

.box-hover-bottom .saved-wraper a:hover img:nth-child(2) {
    display: block
}

.box-hover-bottom .saved-wraper a i {
    font-size: 29px;
    margin-top: 10px;
    color: #5c6b77
}

.box-hover-bottom .saved-wraper a i:hover {
    color: #FF7E00;
    transition: all ease-in-out .15s
}

.tooltip-wrap {
    position: relative;
    display: inline-block
}

.tooltip-text {
    visibility: hidden;
    width: 75px;
    background-color: #5c6b77;
    color: #fff;
    text-align: center;
    border-radius: 1px;
    padding: 6px 0;
    font-size: 15px;
    position: absolute;
    z-index: 100000000000000;
    overflow: visible
}

.tooltip-top {
    bottom: 100%;
    left: 50%;
    transform: translate(-50%);
    -webkit-transform: translate(-50%)
}

.tooltip-download {
    right: -10%;
    bottom: 100%
}

.tooltip-wrap:hover .tooltip-text {
    visibility: visible
}

.tooltip-wrap .tooltip-text::after {
    content: " ";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%);
    -webkit-transform: translate(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #5c6b77 transparent transparent transparent
}

.banner-section {
    height: 360px
}

.banner-section.lazyloaded {
    background: url(../images/radiating-banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 360px
}

.banner-section2-wrapper {
    height: 440px;
    overflow: hidden;
    width: 100%;
    position: relative
}

.banner-section2 {
    height: 440px;
    overflow: hidden;
    width: 1920px;
    position: absolute;
    left: 50%;
    margin-left: -960px
}

.banner-section3 {
    display: none
}

.no-js #loader {
    display: none
}

.js #loader {
    display: block;
    position: absolute;
    left: 100px;
    top: 0
}

.gradient-box {
    position: relative;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #91abd9 20%, #ba96c5 60%, #70cdde 100%);
    background: -moz-linear-gradient(to right, #91abd9 20%, #ba96c5 60%, #70cdde 100%);
    background: -webkit-linear-gradient(to right, #91abd9 20%, #ba96c5 60%, #70cdde 100%);
    background: -o-linear-gradient(to right, #91abd9 20%, #ba96c5 60%, #70cdde 100%);
    background: -ms-linear-gradient(to right, #91abd9 20%, #ba96c5 60%, #70cdde 100%)
}

.section_01 {
    background-color: #d2d8de;
    padding: 40px 0 30px
}

.slick-initialized .slick-slide {
    margin: 0 5px
}

button.slick-prev.slick-arrow {
    width: 35px;
    height: 35px;
    display: block;
    z-index: 10;
    left: -25px
}

button.slick-next.slick-arrow {
    width: 35px;
    height: 35px;
    display: block;
    z-index: 10;
    right: -25px
}

.slick-prev:before {
    content: "\f053";
    font-family: "font awesome 5 free";
    color: #00a0a6;
    font-size: 18px;
    font-weight: 700
}

.slick-next:before {
    content: "\f054";
    font-family: "font awesome 5 free";
    color: #00a0a6;
    font-size: 18px;
    font-weight: 700
}

.all-courses {
    text-align: center;
    margin-top: 10px
}

.all-courses .btn.btn-default {
    border-radius: 0;
    -webkit-border-radius: 0;
    background-color: #FF7E00;
    color: #fff;
    transition: all .25s ease-in-out;
    margin-top: 20px
}

.all-courses .btn.btn-default:hover {
    border: 1px solid #FF7E00;
    background-color: transparent;
    color: #5c6b77
}

.section_03 {
    background-color: #5c6b77;
    padding: 100px 0 80px
}

.section_03 .header.animation_element {
    transform: translateY(35%);
    opacity: 0;
    margin-bottom: 22px;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: .1s
}

.section_03 .header.animation_element.in-view {
    -webkit-animation-name: showUp;
    animation-name: showUp
}

.section_03 .header h2 {
    margin: 0;
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    line-height: .9
}

.section_03 .section-description.animation_element {
    transform: translateY(35%);
    opacity: 0;
    margin-bottom: 22px;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: .1s
}

.section_03 .section-description.animation_element.in-view {
    -webkit-animation-name: showUp;
    animation-name: showUp
}

.section_03 .section-description p {
    color: #fff;
    font-size: 14px;
    line-height: 22px
}

.contact-form.main-page {
    margin: 15px 0 0
}

.forms_desription p {
    margin: 0;
    font-weight: 400;
    color: #fff;
    font-size: 14px
}

.section_05 {
    background-color: #5c6b77;
    padding: 45px 20px 35px
}

.section_05 .header.animation_element {
    transform: translateY(35%);
    opacity: 0;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: .1s
}

.section_05 .header.animation_element.in-view {
    -webkit-animation-name: showUp;
    animation-name: showUp
}

.section_05 .header h2 {
    color: #fff
}

.slider-clients .slick-list.draggable {
    padding: 50px 0 0
}

.slider-clients .slick-list.draggable .slick-slide .img-wrap {
    position: relative
}

.slider-clients .slick-list.draggable .slick-slide .img-wrap img {
    display: block;
    margin: 0 auto
}

.section_07 {
    background-color: #FF7E00;
    padding: 12px 0 0;
    overflow: hidden
}

.section_07 .header.animation_element {
    transform: translateY(35%);
    opacity: 0;
    margin-bottom: 0;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: .1s
}

.section_07 .header.animation_element.in-view {
    -webkit-animation-name: showUp;
    animation-name: showUp
}

.section_07 .header h2 {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    max-width: 100%;
    margin-top: 30px;
    margin-bottom: 0
}

.section_07 .description {
    margin-bottom: 30px
}

.section_07 .img-wrap {
    text-align: right
}

.section_07 .description p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin: 0
}

.btn.btn-default.right-symbol {
    position: relative;
    border-radius: 3px;
    border: 2px solid #fff;
    background-color: transparent;
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;
    padding: 9px 45px 9px 20px;
    transition: all .25s ease-in-out
}

.btn.btn-default.right-symbol:hover {
    background-color: #fff;
    transition: all .25s ease-in-out;
    color: #000
}

.btn.btn-default.right-symbol i {
    font-weight: 700;
    font-size: 20px;
    position: absolute;
    z-index: 2;
    left: auto;
    right: 12px;
    color: #FF7E00;
    transition: all .25s ease-in-out
}

.btn.btn-default.right-symbol i {
    font-weight: 700;
    font-size: 20px;
    position: absolute;
    z-index: 2;
    left: auto;
    right: 12px;
    color: #fff;
    transition: all .25s ease-in-out
}

.btn.btn-default.right-symbol:hover i {
    transition: all .25s ease-in-out;
    color: #FF7E00
}

.contact-form {
    margin: 60px 0 0
}

.contact-form .btn-group {
    width: 100%
}

.contact-form .btn.btn-default {
    position: relative;
    width: 100%;
    padding: 15px 30px;
    border-radius: 0;
    background-color: #cacaca;
    text-align: left;
    color: #222
}

.contact-form .btn-group .btn.btn-default span {
    position: absolute;
    right: 35px;
    color: #777;
    font-size: 18px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: all .2s ease-in-out
}

.contact-form .btn-group .btn.btn-default i {
    position: absolute;
    right: 35px;
    color: #777;
    font-size: 18px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: all .2s ease-in-out
}

.contact-form .btn-group.open .btn.btn-default.dropdown-toggle {
    background-color: #fff;
    box-shadow: none;
    -webkit-box-shadow: none
}

.contact-form .btn-group.open .btn.btn-default span {
    transform: translateY(-50%) rotate(180deg)
}

.contact-form .btn-group.open .btn.btn-default i {
    transform: translateY(-50%) rotate(180deg)
}

.contact-form .btn.btn-default:focus {
    box-shadow: none;
    -webkit-box-shadow: none;
    text-shadow: none
}

.contact-form .dropdown-menu {
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
    height: 200px;
    overflow-y: scroll
}

.contact-form .dropdown-menu li {
    padding: 15px 30px
}

.contact-form .dropdown-menu li:hover {
    background-color: #FF7E00
}

.contact-form .input_field {
    margin-bottom: 30px
}

.contact-form .input_field input.form-control::placeholder {
    color: #222;
    opacity: 1;
    font-size: 14px
}

.contact-form .input_field input.form-control:-ms-input-placeholder {
    color: #222;
    opacity: 1;
    font-size: 14px
}

.contact-form .input_field input.form-control {
    width: 100%;
    padding: 0 30px;
    height: 52px;
    border-radius: 0;
    background-color: #cacaca;
    text-align: left;
    color: #222;
    transition: all .25s ease-in-out
}

.contact-form .input_field input.form-control:focus {
    box-shadow: none;
    border-radius: 4px;
    border: 2px solid #FF7E00;
    background-color: #fff
}

.contact-form .input_field .btn.btn-primary {
    padding: 16px 30px;
    color: #fff;
    background-color: #000;
    box-shadow: none;
    -webkit-box-shadow: none;
    border-radius: 0;
    border: 0;
    font-weight: 400;
    transition: all .25s ease-in-out;
    text-transform: uppercase
}

.contact-form .input_field .btn.btn-primary:hover {
    background-color: #FF7E00;
    color: #000
}

.contact-form .input_field .btn.btn-primary span {
    padding-left: 15px;
    color: #FF7E00;
    transition: all .25s ease-in-out
}

.contact-form .input_field .btn.btn-primary i {
    padding-left: 15px;
    color: #FF7E00;
    transition: all .25s ease-in-out
}

.contact-form .input_field .btn.btn-primary:hover span {
    color: #000
}

.contact-form .input_field .btn.btn-primary:hover i {
    color: #000
}

.contact-form .input_field .btn.btn-primary span:before {
    font-weight: 700
}

.contact-form .input_field .btn.btn-primary i:before {
    font-weight: 700
}

.braedcrumb-wrapper {
    margin-top: 10px;
    margin-bottom: 6px
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0
}

.breadcrumb > li {
    font-size: 14px
}

.breadcrumb > li > a {
    color: #5d6b78;
    text-decoration: none;
    position: relative
}

.breadcrumb > li > a span {
    font-size: 11px;
    padding-left: 5px;
    font-weight: 700
}

.breadcrumb > li:not(:first-child) > a span {
    padding-left: 15px;
    font-size: 16px;
    position: relative;
    top: 1px
}

.breadcrumb > li:not(:first-child) > a span:before {
    font-weight: 700
}

.breadcrumb > li > a:hover {
    text-decoration: none
}

.breadcrumb > li:before {
    display: none
}

.course-section-recommended {
    position: relative;
    padding-bottom: 50px
}

.course-section-recommended .left-wrap {
    margin: 20px 0 0;
    padding: 35px 0 30px;
    position: relative;
    z-index: 10
}

.course-section-recommended .left-wrap .header-text h2 {
    margin: 0;
    color: #5d6b78;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0 0 16px;
    border-bottom: 3px solid #00a0a6;
    font-size: 32px
}

.course-section-recommended .left-wrap .header-text h2 span {
    font-family: sfprodisplay-semibold;
    margin-top: 9px;
    display: block;
    font-size: 24px
}

.course-slider-wrapper {
    margin-top: 0;
    position: relative;
    z-index: 10
}

.course-slider-wrapper .box {
    position: relative
}

.course-slider-wrapper .box:hover > .box-active {
    opacity: 1
}

.course-slider-wrapper .slick-slide .box:hover > .box-hover {
    opacity: 1;
    z-index: 3;
    display: block;
    visibility: visible;
    transform: scale(1);
    -webkit-transform: scale(1)
}

.course-slider-wrapper .slick-slide {
    opacity: 0;
    transition: opacity 1s ease-out
}

.course-slider-wrapper .slick-active {
    opacity: 1 !important;
    transition: opacity 1s ease-in
}

.course-slider-wrapper .slick-cloned {
    opacity: 0
}

.course-slider-wrapper .slick-list.draggable {
    position: relative;
    z-index: 1;
    transition: all .25s ease-in-out;
    overflow: visible;
    padding: 25px 0 20px
}

.course-slider-wrapper .slick-active + .slick-active + .slick-active + .slick-active + .slick-active .box:hover > .box-hover {
    left: -119px
}

.course-slider-wrapper .slick-active + .slick-active + .slick-active + .slick-active + .slick-active .box > .box-hover:after {
    content: "";
    width: 0;
    height: 100%;
    background-color: transparent;
    position: absolute;
    left: 100%;
    top: 0;
    display: none
}

.course-slider-wrapper .slick-slide.slick-current.slick-active .box:hover > .box-hover {
    left: 0
}

.course-slider-wrapper .box-active {
    overflow: hidden;
    opacity: 1;
    position: relative;
    z-index: 2;
    -webkit-box-shadow: 4px 1px 7px -3px rgba(143, 148, 148, .06);
    -moz-box-shadow: 4px 1px 7px -3px rgba(143, 148, 148, .06);
    box-shadow: 4px 1px 7px -3px rgba(143, 148, 148, .06)
}

.course-slider-wrapper .slick-slide .box .courses-list-result-text img {
    display: inline-block
}

.course-slider-wrapper .slick-slide .box .courses-list-result-text {
    margin: 0
}

.course-slider-wrapper .slick-slide .box .recommended-intro {
    height: 40px;
    overflow: hidden
}

.course-slider-wrapper .box-image {
    position: relative;
    overflow: hidden
}

.course-slider-wrapper .box-image img {
    max-width: 100%;
    width: 100%;
    height: auto
}

.course-slider-wrapper .box-content {
    padding: 0 15px;
    background: #fff;
    height: 134px;
    overflow: hidden
}

.course-slider-wrapper .box-content h2 {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 5px
}

.course-slider-wrapper .brand-wrapper {
    position: relative;
    border-right: 1px solid #aeb5bb
}

.course-slider-wrapper .brand-wrapper img {
    max-width: 100%;
    height: auto;
    max-height: 38px !important
}

.course-slider-wrapper .box-hover {
    padding: 12px 18px;
    position: absolute;
    top: -100px;
    left: -61px;
    display: block;
    visibility: hidden;
    width: 337px;
    height: 461px;
    z-index: -1;
    background: #fff;
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 0;
    -webkit-box-shadow: 3px 2px 3px 0 rgba(204, 204, 204, .17);
    -moz-box-shadow: 3px 2px 3px 0 rgba(204, 204, 204, .17);
    box-shadow: 3px 2px 3px 0 rgba(204, 204, 204, .17);
    transition: opacity .05s linear;
    -webkit-transition: opacity .05s linear;
    -moz-transition: opacity .05s linear;
    -o-transition: opacity .05s linear;
    transition-delay: .35s;
    -webkit-transition-delay: .35s;
    -moz-transition-delay: .35s;
    -o-transition-delay: .35s
}

.course-slider-wrapper .slick-slide.slick-current.slick-active .box-hover {
    left: 35px
}

.course-slider-wrapper .box-hover-header {
    padding-bottom: 5px;
    height: 42px
}

.course-slider-wrapper .box-hover-header a p {
    padding-bottom: 0;
    color: #5d6b78;
    font-family: sfprodisplay-regular
}

.course-slider-wrapper .course-slider-wrapper .course-category {
    position: relative
}

.course-slider-wrapper .course-category .img-wrap {
    top: 0;
    position: absolute;
    width: 35px;
    height: auto
}

.course-slider-wrapper .brand-wrapper .img-wrap a:focus {
    outline: none
}

.course-slider-wrapper .course-category a:focus {
    outline: none
}

.course-slider-wrapper .course-category .img-wrap a:focus {
    outline: none
}

.course-slider-wrapper .course-category .img-wrap img {
    width: auto;
    height: 32px !important
}

.course-slider-wrapper .course-category p {
    font-size: 14px;
    margin: 0;
    padding: 1px 0 0 43px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

.course-slider-wrapper .box-hover-subheader {
    padding: 7px 0;
    border-top: 1px solid #aeb5bb;
    border-bottom: 1px solid #aeb5bb;
    margin-bottom: 7px;
    height: 32px
}

.course-slider-wrapper .box-hover-subheader .row {
    height: 19px
}

.course-slider-wrapper .box-hover-subheader .img-wrap {
    position: absolute;
    width: 35px;
    height: auto;
    display: block
}

.course-slider-wrapper .box-hover-subheader p {
    font-size: 13px;
    margin: 0;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #5d6b78
}

.course-slider-wrapper .sub-header-left {
    border-right: 1px solid #aeb5bb
}

.course-slider-wrapper .sub-header-left img {
    width: 17px;
    height: auto;
    display: block;
    margin-top: 0
}

.course-slider-wrapper .sub-header-left p {
    padding-left: 25px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

.course-slider-wrapper .sub-header-right img {
    width: 20px;
    height: auto;
    display: block;
    margin: 0 auto
}

.course-slider-wrapper .sub-header-right p {
    padding-left: 36px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

.course-slider-wrapper .box-hoverer-content {
    height: 295px;
    padding-top: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    cursor: pointer
}

.course-slider-wrapper .box-hoverer-content .header-wrapper {
    margin-bottom: 5px
}

.course-slider-wrapper .box-hoverer-content .header-wrapper h2 {
    margin: 0;
    font-size: 20px;
    color: #5f686d;
    margin-bottom: 5px;
    font-family: Titillium Web;
    font-weight: 600
}

.course-slider-wrapper .box-hoverer-content .header-wrapper h3 {
    margin: 0;
    font-size: 16px;
    color: #FF7E00;
    font-family: Titillium Web
}

.course-slider-wrapper .box-hoverer-content .intro {
    height: 197px;
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 15px;
    font-family: sfprodisplay-regular
}

.course-slider-wrapper .box-hoverer-content .intro p {
    font-size: 13px;
    margin-bottom: 0;
    font-family: sfprodisplay-regular
}

.course-slider-wrapper .box-hoverer-content .intro p span {
    font-size: 10px;
    margin-bottom: 0;
    font-family: sfprodisplay-regular;
    line-height: 1
}

.course-slider-wrapper .box-hoverer-content .intro p span span {
    font-size: 10px;
    margin-bottom: 0;
    font-family: SFProDisplay-Regular;
    line-height: 1
}

.course-slider-wrapper .box-hoverer-content .intro ul {
    list-style: none;
    padding-left: 0;
    padding-right: 0;
    margin-top: 5px;
    font-family: sfprodisplay-regular
}

.course-slider-wrapper .box-hoverer-content .intro ul li {
    font-size: 10px;
    position: relative;
    padding-left: 15px
}

.course-slider-wrapper .box-hoverer-content .intro ul li:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 2px;
    height: 2px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    background-color: #5c6b77
}

.course-slider-wrapper .box-hover-bottom .btn-default {
    width: 100%;
    border-radius: 0;
    -webkit-border-radius: 0;
    background-color: #FF7E00;
    color: #fff;
    padding: 13px 12px;
    font-size: 17px
}

.course-slider-wrapper .box-hover-bottom .btn-default:hover {
    color: #FF7E00;
    background-color: transparent;
    border: 1px solid #FF7E00;
    transition: all ease-in-out .25s
}

.course-slider-wrapper .box-hover-bottom img {
    width: 33px;
    height: auto;
    display: block;
    margin-top: 5px
}

.course-slider-wrapper .box-hover-bottom .saved-wraper a img:nth-child(2) {
    display: none
}

.course-slider-wrapper .box-hover-bottom .saved-wraper a:focus {
    outline: none
}

.course-slider-wrapper .box-hover-bottom .saved-wraper a:hover img:nth-child(1) {
    display: none
}

.course-slider-wrapper .course-slider-wrapper .box-hover-bottom .saved-wraper a:hover img:nth-child(2) {
    display: block
}

.course-slider-wrapper .box-hover-bottom .saved-wraper a i {
    font-size: 29px;
    margin-top: 10px;
    color: #5c6b77
}

.course-slider-wrapper .box-hover-bottom .saved-wraper a i:hover {
    color: #FF7E00;
    transition: all ease-in-out .15s
}

.course-slider-wrapper .tooltip-wrap {
    position: relative;
    display: inline-block
}

.course-slider-wrapper .tooltip-text {
    visibility: hidden;
    width: 75px;
    background-color: #5c6b77;
    color: #fff;
    text-align: center;
    border-radius: 1px;
    padding: 6px 0;
    font-size: 15px;
    position: absolute;
    z-index: 100000000000000;
    overflow: visible
}

.course-slider-wrapper .course-slider-wrapper .tooltip-top {
    bottom: 100%;
    left: 50%;
    transform: translate(-50%);
    -webkit-transform: translate(-50%)
}

.course-slider-wrapper .tooltip-download {
    right: -10%;
    bottom: 100%
}

.course-slider-wrapper .tooltip-wrap:hover .tooltip-text {
    visibility: visible
}

.course-slider-wrapper .tooltip-wrap .tooltip-text::after {
    content: " ";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%);
    -webkit-transform: translate(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #5c6b77 transparent transparent transparent
}

.course-slider-wrapper.slick-initialized .slick-slide {
    margin: 0 5px
}

.course-slider-wrapper button.slick-prev.slick-arrow {
    z-index: 10;
    left: -35px
}

.course-slider-wrapper button.slick-next.slick-arrow {
    z-index: 10;
    right: -35px
}

.course-slider-wrapper .slick-prev:before {
    content: "\f053";
    font-family: "font awesome 5 free";
    color: #00a0a6;
    font-size: 28px;
    font-weight: 700
}

.course-slider-wrapper .slick-next:before {
    content: "\f054";
    font-family: "font awesome 5 free";
    color: #00a0a6;
    font-size: 28px;
    font-weight: 700
}

.pagingInfo {
    float: right;
    margin-bottom: 10px;
    margin-right: 5px;
    color: #5c6b77;
    display: none
}

.modal {
    z-index: 10000000000000000000
}

.modal-header {
    border: none
}

.modal-body {
    padding-top: 0
}

.modal-content {
    background-color: rgba(250, 250, 250, .97);
    border-radius: 0
}

.modal-content .close {
    padding: 5px;
    padding-right: 10px;
    border-radius: 0;
    opacity: 1;
    font-weight: 400;
    color: #0cb0cb;
    font-size: 30px
}

.modal-content #public-online {
    border-top: 2px solid #fff;
    border-bottom: 1px solid #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0
}

.modal-content #call-email {
    border-bottom: 2px solid #fff;
    padding: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0;
    margin-bottom: 15px
}

.modal-content input {
    padding: 20px;
    padding-left: 30px;
    border-radius: 1px
}

.modal-content .form-group input {
    padding: 0 20px;
    height: 42px
}

.modal-content .form-group .radio-inline input {
    height: auto
}

.modal-content input:focus {
    border: solid 2px #FF7E00
}

.modal-content select {
    padding: 10px;
    padding-left: 30px;
    border-radius: 1px;
    height: 100%;
    background-color: #e3e3e3
}

.modal-content select:focus {
    border: solid 2px #FF7E00
}

.modal-content .checkbox {
    margin-left: 20px;
    position: relative
}

.checkbox {
    position: relative
}

input.check-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: auto;
    width: auto
}

.check-button {
    position: absolute;
    top: 4px;
    left: 0;
    height: 13px;
    width: 13px;
    background-color: #dededc;
    border: 1px solid #b2b2b3;
    border-radius: 3px;
    -webkit-border-radius: 3px
}

.check-button:after {
    content: "";
    position: absolute;
    display: none
}

.checkbox .check-button:after {
    left: 3px;
    top: 0;
    width: 5px;
    height: 9px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

input.check-input:checked ~ .check-button:after {
    display: block
}

.modal-content #remember-lostpassword {
    margin-top: 50px;
    margin-bottom: 5px
}

.modal-content .form-control {
    width: 100%
}

.modal-content .radio-inline {
    margin-left: 20px
}

.modal-content button[type=submit] {
    padding: 15px;
    border-radius: 0;
    background-color: #FF7E00;
    color: #fff;
    width: 100%;
    border: none;
    font-weight: 700
}

.login-social {
    border-radius: 5px;
    color: #fff;
    font-weight: 700;
    width: 90%
}

#login-google {
    border-radius: 5px;
    background-color: #dd4b39;
    margin: 0 auto;
    text-align: left;
    padding: 0;
    height: 50px;
    line-height: 1;
    vertical-align: middle
}

.register-wrapper #login-google {
    padding-right: 15px
}

.login-social i {
    border-right: 1px solid #fff;
    padding-left: 20px;
    padding-right: 20px;
    height: 100%;
    margin: 0;
    margin-right: 15px;
    padding-top: 0;
    padding-bottom: 0;
    vertical-align: middle;
    line-height: 50px;
    width: 50px
}

#login-linkedin {
    border-radius: 5px;
    background-color: #007bb6;
    margin: 0 auto;
    text-align: left;
    padding: 0;
    height: 50px;
    line-height: 1;
    vertical-align: middle
}

.register-wrapper #login-linkedin {
    padding-right: 15px
}

.modal-footer {
    border: none
}

#left-box {
    padding: 20px
}

#right-box {
    padding: 20px;
    padding-left: 30px;
    border-left: 1px solid #fff
}

.register-wrapper {
    margin-bottom: 90px
}

.register-wrapper input:focus {
    border: solid 2px #FF7E00
}

.register-wrapper h3 {
    font-weight: 700;
    margin-bottom: 30px
}

.register-wrapper label {
    font-weight: 700;
    margin-left: 0
}

.register-wrapper .checkbox {
    text-align: left
}

.register-wrapper input {
    border-radius: 2px;
    margin-bottom: 20px
}

#register-sign-up-wrapper {
    border-top: 1px solid #ccc
}

#register-sign-up {
    padding: 15px;
    border-radius: 0;
    background-color: #FF7E00;
    color: #fff;
    width: 100%;
    border: none;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 15px
}

#register-login-social {
    margin-top: 30px;
    margin-bottom: 40px
}

#lost-password {
    margin-top: 40px
}

#lost-password-button {
    border-radius: 0;
    padding: 10px;
    background-color: #FF7E00;
    color: #fff;
    width: 100%;
    border: none;
    font-weight: 700;
    margin-left: 0;
    margin-right: 0
}

#lost-password input {
    border-radius: 0;
    margin-left: 0;
    margin-right: 0
}

.courses-filter-tags-content a:hover {
    color: #00a0a6
}

#courses-list-header {
    background-image: url(../images/courses-list/courses_list_header.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    height: 300px;
    border-bottom: 5px solid #00a0a6
}

#courses-list-wrapper {
    background-color: #fafafa;
    overflow: hidden;
    width: 1400px;
    margin: 0 auto
}

.courses-list-body {
    width: 100%;
    background-color: #fafafa;
    position: relative
}

#courses-list-top-margin {
    margin-top: 50px
}

.courses-list-header-text {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 150px;
    left: 0;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600
}

.courses-list-header-text h2 {
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 50px
}

.courses-list-header-text h2:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 5px;
    border-radius: 0;
    border: 1px solid #FF7E00;
    display: block;
    background-color: #FF7E00;
    top: 100%;
    left: 50%;
    transform: translate(-50%)
}

#courses-list-hamburger {
    display: none
}

#courses-list-path i {
    margin-left: 10px;
    margin-right: 10px;
    color: #767676;
    font-size: 12px
}

#courses-list-path a {
    color: #5d6b78
}

#courses-list-grid {
    padding: 0;
    padding-right: 10px;
    text-align: right
}

#courses-list-grid-icons {
    display: inline-block;
    padding-bottom: 0;
    margin-bottom: 0;
    vertical-align: bottom
}

.courses-list-grid-icons-three {
    background-image: url(../images/courses-list/grid-three-idle.png);
    height: 16px;
    width: 16px;
    display: inline-block;
    background-size: cover;
    margin-right: 8px;
    float: left
}

.courses-list-grid-icons-four {
    background-image: url(../images/courses-list/grid-four-checked.png);
    height: 16px;
    width: 16px;
    display: inline-block;
    background-size: cover;
    float: left
}

.courses-list-grid-icons-three:hover {
    background-image: url(../images/courses-list/grid-three-hover.png);
    cursor: pointer;
    transform: scale(1.2);
    transition: transform .15s
}

.courses-list-grid-icons-three-checked {
    background-image: url(../images/courses-list/grid-three-checked.png)
}

.courses-list-grid-icons-four:hover {
    background-image: url(../images/courses-list/grid-four-hover.png);
    transform: scale(1.2);
    cursor: pointer;
    transition: transform .15s
}

#courses-list-grid img {
    margin-left: 5px
}

#courses-list-grid i:hover {
    color: #00b5ad
}

.custom-select {
    position: relative;
    display: inline-block;
    margin-left: 30px
}

#courses-list-grid-custom-select {
    margin-top: -20px;
    display: inline-block
}

.custom-select select {
    display: none
}

.select-selected {
    background-color: transparent;
    color: #5d6b78;
    text-align: left;
    border-bottom: 1px solid #757575;
    border-color: transparent transparent #757575 transparent
}

#courses-list-grid-custom-select .select-selected {
    width: 100%;
    font-size: 16px;
    padding-left: 10px
}

.select-selected:after {
    position: absolute;
    content: "";
    top: 8px;
    right: 5px;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-color: #757575 transparent transparent transparent
}

.select-selected.select-arrow-active:after {
    border-color: transparent transparent #757575 transparent;
    top: 3px
}

.select-items div, .select-selected {
    color: #5d6b78;
    padding: 0 25px 0 0;
    cursor: pointer;
    text-align: left
}

.select-items {
    position: absolute;
    background-color: #fff;
    color: #5d6b78;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99
}

.select-hide {
    display: none
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, .1);
    color: #5d6b78
}

.courses-filter-collapse-wrapper {
    width: 100%;
    margin-bottom: 30px
}

.courses-filter {
    padding: 0 30px 10px 10px;
    color: #5d6b78;
    z-index: 100
}

.courses-filter:before {
    content: "";
    display: block;
    margin: 0 auto;
    width: 95%
}

.courses-filter h3 {
    text-transform: uppercase;
    font-size: 16px;
    padding-left: 30px;
    font-weight: 700;
    margin-bottom: 30px
}

.filter-public-online {
    padding-left: 30px;
    margin-bottom: 30px
}

.filter-public-online-checkbox {
    margin-right: 20px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.filter-public-online-checkbox:last-child {
    margin-right: 0
}

.filter-public-online-checkbox .custom-label {
    margin-left: 25px
}

.filter-public-online-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

.filter-public-online-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 17px;
    width: 17px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #00a0a6;
    margin-top: 2px
}

.filter-public-online-checkbox:hover input ~ .checkmark {
    background-color: #ccc
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none
}

.filter-public-online-checkbox input:checked ~ .checkmark:after {
    display: block
}

.filter-public-online-checkbox .checkmark:after {
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid #0c0c0c;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.courses-filter .filter-heading {
    width: 100%;
    background-color: #f3f3f3;
    text-decoration: none;
    padding: 7px 10px 6px;
    text-transform: uppercase;
    color: #5d6b78;
    font-family: SFProDisplay-Semibold
}

_:-ms-fullscreen, :root .courses-filter .filter-heading {
    font-family: roboto, sans-serif;
    font-weight: 500
}

.rotate-plus-90 {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    transition: all ease-in-out .3s
}

.rotate-plus-180 {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    transition: all ease-in-out .3s
}

.rotate-minus-90 {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transition: all ease-in-out .3s
}

.rotate-minus-180 {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    transition: all ease-in-out .3s
}

.courses-filter .filter-heading-text {
    padding-top: 3px;
    font-family: SFProDisplay-Semibold;
    font-size: 13px;
    text-transform: uppercase
}

.courses-filter .filter-heading-path {
    position: relative;
    color: #fff;
    margin: 0;
    overflow: hidden;
    float: right;
    width: 34px;
    padding: 2px 6px;
    background-color: #00b5ad;
    border-radius: 5px;
    text-align: center;
    font-size: 13px;
    font-family: SFProDisplay-Semibold
}

.courses-filter .filter-heading i {
    margin-left: 5px;
    margin-right: 5px
}

.courses-filter a:hover {
    text-decoration: none
}

.courses-filter .collapse-content {
    padding-top: 10px;
    padding-left: 30px
}

.collapse-content-category {
    padding: 4px 10px 4px 4px;
    border-bottom: 1px solid #e9eaea;
    width: 100%;
    margin: 0 auto
}

.collapse-content-category a {
    color: #5d6b78
}

.collapse-content-category .row:hover {
    text-decoration: underline
}

.collapse-content-category-text {
    padding-top: 3px;
    font-family: sfprodisplay-regular;
    font-size: 13px
}

.collapse-content-category-number {
    float: right;
    background-color: #e4e6e8;
    text-align: center;
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
    padding: 1px 0;
    width: 34px;
    font-size: 13px;
    font-family: SFProDisplay-Semibold
}

_:-ms-fullscreen, :root .collapse-content-category-number {
    font-family: roboto, sans-serif;
    font-weight: 500
}

#collapse-top-rated-courses {
    padding: 0;
    margin: 0
}

.top-rated-courses-category {
    padding: 20px 0 10px
}

.top-rated-courses-image {
    padding-left: 0;
    padding-right: 0;
    height: 74px;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover
}

.top-rated-courses-text {
    padding: 0 30px 0 10px
}

#courses-list-filter-datepicker {
    margin-top: 20px;
    margin-bottom: 25px
}

#courses-list-filter-datepicker h3 {
    margin-top: 0;
    margin-bottom: 15px;
    padding-left: 0
}

#courses-list-filter-datepicker h4 {
    margin-top: 6px;
    margin-bottom: 5px;
    padding-left: 0;
    font-family: sfprodisplay-regular;
    font-size: 14px
}

_:-ms-fullscreen, :root #courses-list-filter-datepicker h4 {
    font-family: roboto, sans-serif;
    font-weight: 500
}

.courses-filter input[type=date] {
    border: 2px solid #00000066;
    width: 100%;
    padding: 5px;
    padding-left: 10px;
    font-size: 12px;
    margin-bottom: 15px;
    font-family: sfprodisplay-regular
}

_:-ms-fullscreen, :root .courses-filter input[type=date] {
    font-family: roboto, sans-serif;
    font-weight: 500
}

.courses-filter input[type=text] {
    border: 1px solid #00000066;
    width: 100%;
    padding: 5px;
    padding-left: 10px;
    font-size: 12px;
    margin-bottom: 6px;
    font-family: sfprodisplay-regular
}

_:-ms-fullscreen, :root .courses-filter input[type=date] {
    font-family: roboto, sans-serif;
    font-weight: 500
}

.top-rated-courses-category h3 {
    font-size: 15px;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
    text-transform: none
}

.top-rated-courses-category h3 p {
    font-size: 15px;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
    text-transform: none
}

.top-rated-courses-category p {
    font-size: 12px;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px
}

.top-rated-courses-category h3 span {
    font-size: 15px
}

.top-rated-courses-category i {
    color: #ffe622;
    text-shadow: 1px 1px 1px 1px #dec60a;
    font-size: 14px
}

.top-rated-courses-category span {
    font-size: 10px
}

.courses-filter-hiring-image {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    height: 178px
}

.courses-filter-hiring-text {
    padding: 56px 35px 30px 26px;
    color: #fff;
    background-color: #5d6b78
}

.courses-filter-hiring-text h3 {
    color: #fff;
    padding: 0;
    line-height: 1.4;
    font-size: 21px;
    text-transform: none;
    margin-bottom: 25px;
    margin-top: 0;
    font-family: Titillium Web;
    font-weight: 600
}

.courses-filter-hiring-text-h3:after {
    content: "";
    position: absolute;
    width: 28px;
    height: 1px;
    border-radius: 0;
    display: block;
    background-color: #fff
}

.courses-filter-hiring-text p {
    padding-top: 10px
}

.courses-filter-hiring-button {
    width: 100%
}

#courses-filter-hiring-btn {
    width: 100%;
    background-color: #00a0a6;
    padding: 0 0 0 35px;
    color: #fff;
    border-radius: 0;
    border: 0;
    font-family: sfprodisplay-regular;
    text-transform: uppercase;
    font-size: 16px;
    text-align: left;
    letter-spacing: 2.5px
}

_:-ms-fullscreen, :root #courses-filter-hiring-btn {
    font-family: roboto, sans-serif;
    font-weight: 500
}

#courses-filter-hiring-btn span {
    height: 55px;
    line-height: 55px;
    vertical-align: middle
}

#courses-filter-hiring-btn i {
    background-color: #ff5639;
    float: right;
    vertical-align: middle;
    padding: 20px 30px
}

.nav .courses-filter-hiring-wrapper {
    margin-top: 20px;
    padding: 15px;
    padding-bottom: 10px
}

.nav .courses-filter-hiring-image {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    height: 156px
}

.nav .courses-filter-hiring-text {
    padding: 10px 20px;
    color: #fff;
    background-color: #5d6b78;
    height: 120px
}

.nav .courses-filter-hiring-text h3 {
    color: #fff;
    padding: 0;
    line-height: 1.2;
    font-size: 15px;
    text-transform: none;
    margin-bottom: 5px;
    margin-top: 0;
    font-family: Titillium Web;
    font-weight: 600
}

.nav .courses-filter-hiring-text-h3:after {
    position: absolute;
    width: 28px;
    height: 3px;
    border-radius: 0;
    display: block;
    background-color: #00a0a6
}

.nav .courses-filter-hiring-text p {
    padding-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
    line-height: 1.1
}

.nav .courses-filter-hiring-button {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    width: 100%;
    background-color: #5d6b78
}

.nav #courses-filter-hiring-btn {
    width: 100%;
    background-color: #00a0a6;
    padding: 10px 0;
    color: #fff;
    border-radius: 0;
    font-family: sfprodisplay-regular;
    text-transform: uppercase;
    font-size: 11px;
    text-align: center;
    letter-spacing: 2.5px;
    border: 1px solid #00a0a6
}

.nav #courses-filter-hiring-btn a {
    color: #fff;
    font-family: sfprodisplay-regular;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    padding-left: 0;
    padding-right: 0;
    font-size: 12px
}

.nav #courses-filter-hiring-btn:hover {
    color: #00a0a6;
    background-color: transparent;
    border: 1px solid #00a0a6;
    letter-spacing: 2.5px;
    text-decoration: none;
    transition: all ease-in-out .2s
}

.courses-filter-resume-wrapper {
    border-radius: 4px;
    border: 1px solid #5d6b78;
    padding: 25px 35px 25px 20px;
    box-shadow: 0 6px 10px #00000029;
    margin-top: 30px;
    margin-bottom: 40px
}

.courses-filter-resume-wrapper p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #5d6b78;
    font-family: sfprodisplay-regular
}

#courses-filter-submit-resume-anchor {
    align-items: right
}

#courses-filter-submit-resume-anchor a {
    display: block;
    color: #00a0a6;
    text-align: right;
    text-decoration: none;
    align-items: right;
    font-family: SFProDisplay-Semibold
}

_:-ms-fullscreen, :root #courses-filter-submit-resume-anchor a {
    font-family: roboto, sans-serif;
    font-weight: 500
}

.courses-filter-tags {
    width: 100%;
    margin-bottom: 70px
}

.courses-filter-tags-heading {
    padding: 15px 15px 15px 35px;
    text-transform: uppercase;
    background-color: #f3f3f3;
    columns: #5d6b78;
    margin-bottom: 15px
}

.courses-filter-tags-heading h3 {
    padding: 0;
    margin: 0
}

.courses-filter-tags-content a {
    text-decoration: none;
    color: #5d6b78
}

.courses-filter-tags-individual {
    display: inline-block;
    padding: 6px 10px;
    margin-right: 10px;
    border: 3px solid #f3f3f3;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 12px;
    font-family: sfprodisplay-regular
}

_:-ms-fullscreen, :root .courses-filter-tags-individual {
    font-family: roboto, sans-serif;
    font-weight: 500
}

.courses-list-results-wrapper {
    margin-top: 20px;
    padding: 0
}

.courses-list-promo-box {
    box-shadow: 3px 3px 20px #0000001a;
    margin: 0 10px 30px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    position: relative;
    border-bottom: 7px solid #ff492d
}

.courses-list-promo-box .col-sm-5 {
    width: 35%
}

#courses-list-promo-box-close {
    position: absolute;
    right: 10px;
    top: 2px;
    color: #5d6b78;
    text-shadow: none;
    opacity: .7
}

#courses-list-promo-box-close span {
    color: #5d6b78;
    font-weight: 400;
    font-size: 30px;
    border: 0
}

.promo-box-text {
    height: 300px
}

#courses-list-promo-box-text {
    padding-top: 30px;
    padding-left: 30px;
    background: rgba(81, 79, 160, .5);
    color: #fff;
    height: 300px
}

#promo-box-2seats {
    padding-top: 30px;
    padding-left: 30px;
    background: rgba(231, 231, 231, .7);
    color: #5d6b78;
    height: 300px
}

#promo-box-2seats h3 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: 600
}

#promo-box-2seats h4 {
    font-size: 28px;
    margin-bottom: 22px;
    font-weight: 600;
    line-height: 1.2
}

#promo-box-2seats p {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 20px
}

#promo-box-2seats button {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 14px;
    padding: 7px 20px
}

#courses-list-promo-box-text h1 {
    text-transform: uppercase;
    color: #000;
    font-size: 35px;
    padding: 0;
    margin: 0 0 10px;
    font-family: Titillium Web;
    font-weight: 700
}

#courses-list-promo-box-text span {
    font-size: 15px;
    display: block;
    margin-bottom: 5px
}

#courses-list-promo-box-text h2 {
    text-transform: uppercase;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 15px;
    font-family: SFProDisplay-Semibold
}

#courses-list-promo-box-text h3 {
    font-size: 28px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 10px;
    font-family: Titillium Web;
    font-weight: 600
}

#courses-list-promo-box-text h4 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 17px;
    font-family: Titillium Web
}

_:-ms-fullscreen, :root #courses-list-promo-box-text h2 {
    font-family: roboto, sans-serif;
    font-weight: 500
}

#courses-list-promo-box-text p {
    font-size: 15px;
    text-transform: capitalize;
    margin: 0 0 6px;
    display: inline-block
}

#courses-list-promo-box-text img {
    margin-right: 10px;
    width: 20px
}

_:-ms-fullscreen, :root #courses-list-promo-box-text h2 {
    font-family: roboto, sans-serif;
    font-weight: 500
}

.promo-box-text button {
    background-color: #ff492d;
    text-transform: uppercase;
    padding: 10px 25px;
    border-radius: 0;
    border: 1px solid #ff492d;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 12px;
    transition: all ease .2s
}

.promo-box-text button:hover {
    background-color: transparent;
    border: 1px solid #ff492d
}

_:-ms-fullscreen, :root .promo-box-text button {
    font-family: roboto, sans-serif;
    font-weight: 500
}

.courses-list-promo-box-image {
    height: 300px
}

.courses-list-results-wrapper .animation_element {
    transform: translateX(20%);
    -webkit-animation-duration: 1.6s;
    animation-duration: 1.6s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 0s;
    opacity: 0
}

.courses-list-results-wrapper .animation_element.in-view {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
    opacity: 1
}

.courses-list-result {
    padding: 0;
    margin-top: 25px;
    margin-bottom: 25px;
    border: 0
}

.box .courses-list-result {
    margin-top: 0;
    margin-bottom: 0
}

.courses-list-result-inner {
    margin-left: 10px;
    margin-right: 10px;
    box-shadow: 5px 5px 15px #00000029;
    border: 0;
    position: relative
}

.courses-list-result-inner .box-hover {
    transform: scale(1);
    -webkit-transform: scale(1)
}

.courses-list-result-image {
    height: 180px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center
}

.courses-list-result-category {
    height: 22px;
    color: #fff;
    padding-left: 15px;
    position: relative
}

.courses-list-result-category span {
    display: block;
    padding-top: 3px;
    font-size: 12px;
    width: calc(100% - 40px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.course-category-icon {
    position: absolute;
    top: -5px;
    right: 10px;
    border-radius: 100%;
    background: #fff;
    height: 32px;
    width: 32px;
    text-align: center
}

.course-category-icon img {
    padding-top: 5px;
    max-height: 25px;
    max-width: 25px;
    display: inline-block
}

.courses-category-icon img {
}

.courses-list-result-text {
    padding: 12px 15px 10px
}

#coursesListBoxContainer .courses-list-result-text {
    min-height: auto
}

.courses-list-result-text h3 {
    color: #5d6b78;
    font-size: 18px !important;
    height: 44px;
    margin-top: 0;
    padding-top: 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: Titillium Web !important;
    font-weight: 600;
    margin-bottom: 3px
}

.courses-list-result-text h3 p {
    color: #5d6b78;
    font-size: 18px !important;
    height: 44px;
    margin-top: 0;
    padding-top: 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: Titillium Web !important;
    font-weight: 600;
    margin-bottom: 3px
}

.courses-list-result-text p {
    font-family: Titillium Web;
    font-size: 15px;
    color: #5d6b78;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
    height: 19px
}

.courses-list-result-text i {
    font-size: 16px;
    color: #ffe622;
    text-shadow: 1px 1px 1px 1px #dec60a
}

.courses-list-result-text img {
    display: inline-block
}

.slick-slide .box .courses-list-result-text img {
    display: inline-block
}

.box .courses-list-result-text h3 {
    color: #5d6b78;
    font-size: 18px;
    height: 44px;
    margin-top: 0;
    padding-top: 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: Titillium Web;
    font-weight: 600;
    margin-bottom: 3px
}

.box .courses-list-result-text h3 * {
    font-size: 18px !important;
    -webkit-line-clamp: 2 !important;
    height: auto !important
}

.box .courses-list-result-text p {
    font-family: Titillium Web;
    font-size: 15px;
    color: #5d6b78;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
    height: 19px
}

.courses-list-result-icons-wrapper {
    border-bottom: 2px solid #7fc25c;
    font-size: 14px;
    position: relative
}

.courses-list-result-icons-wrapper .row {
    padding: 0 5px;
    color: #5d6b78;
    background-color: #f6f7f8;
    margin-left: 0;
    margin-right: 0;
    border-top: 1px solid #bec3c8
}

.courses-list-result-icons-wrapper i {
    font-size: 16px;
    color: #5d6b78;
    padding: 5px 0
}

.courses-list-result-icons-wrapper a {
    font-size: 16px;
    color: #5d6b78
}

.courses-list-result-icons-wrapper p {
    padding: 5px 0 3px;
    margin: 0;
    font-family: sfprodisplay-regular;
    font-size: 14px
}

.courses-list-result-icons-wrapper img {
    width: 18px;
    height: 18px
}

.courses-list-result-icon {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    height: 30px;
    padding-top: 4px
}

.course-three-cards .courses-list-result-image {
    height: 200px
}

.course-three-cards .courses-list-result-text {
    padding: 15px 17px 10px
}

.course-three-cards .courses-list-result-text h3 {
    margin-bottom: 4px
}

.course-three-cards .courses-list-result-text p {
    margin-bottom: 5px
}

.courses-list-result-inner:hover .box-hover {
    top: -81px;
    left: -81px;
    opacity: 1;
    z-index: 101;
    visibility: visible;
    transform: scale(1);
    -webkit-transform: scale(1)
}

.courses-list-result.course-three-cards .courses-list-result-inner:hover .box-hover {
    left: -19px;
    top: -55px
}

.footer {
    overflow: hidden
}

#footer-main {
    color: #fff;
    background-color: #5d6b78;
    padding: 40px 30px 20px
}

.footer a {
    color: #fff;
    text-decoration: none
}

.footer a:hover {
    color: #00a0a6
}

#footer-logo {
    margin-top: -13px
}

#footer-logo img {
    width: 100%;
    margin-bottom: 30px
}

#footer-logo p {
    text-align: right;
    font-family: sfprodisplay-regular
}

_:-ms-fullscreen, :root #footer-logo p {
    font-family: roboto, sans-serif;
    font-weight: 500
}

.footer h3 {
    text-transform: uppercase;
    padding: 0;
    margin: 0 0 15px;
    font-size: 15px;
    font-family: SFProDisplay-Semibold
}

_:-ms-fullscreen, :root .footer h3 {
    font-family: roboto, sans-serif;
    font-weight: 500
}

.footer-angledown-svg {
    height: 14px;
    width: 14px;
    background-color: #72808e;
    border-radius: 4px;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 10px
}

.footer-angledown-svg img {
    padding-left: 3px;
    padding-bottom: 8px
}

.footer .collapse-content {
    margin-top: -5px;
    margin-bottom: 10px
}

#footer-contact-us {
    padding-left: 5px;
    padding-right: 5px
}

.footer-contact-heading {
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 14px;
    vertical-align: top
}

.collapse-contact-svg {
    display: inline-block;
    margin-right: 7px;
    width: 10px;
    margin-left: 2px
}

.footer-contact-text {
    color: #c5cbd1;
    font-size: 12px
}

#footer-explore {
    padding-left: 5px;
    padding-right: 5px
}

#footer-stay-connected {
    padding-left: 5px;
    padding-right: 5px
}

.footer-social {
    margin-bottom: 10px
}

.footer-social img {
    width: 15px;
    height: 15px;
    margin-right: 10px
}

.footer-social-text {
    line-height: 15px;
    vertical-align: middle
}

.footer-contact-text a {
    color: #c5cbd1;
    font-size: 12px;
    text-decoration: none
}

#footer-contact-second-heading {
    margin-top: 30px;
    margin-bottom: 10px
}

#footer-language {
    margin-top: 40px
}

#footer-language-mobile {
    display: none
}

#footer-reviews i {
    color: #ffe622;
    text-shadow: 1px 1px 1px 1px #dec60a;
    margin-bottom: 10px
}

#footer-reviews a {
    text-decoration: underline;
    color: #c5cbd1
}

#footer-reviews a:hover {
    color: #00a0a6
}

#footer-reviews button.slick-prev.slick-arrow {
    width: 18px;
    height: 18px;
    color: #fff;
    border: none;
    display: block;
    background-color: transparent;
    z-index: 10;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    left: -15px
}

#footer-reviews button.slick-next.slick-arrow {
    width: 18px;
    height: 18px;
    color: #fff;
    border: none;
    display: block;
    background-color: transparent;
    z-index: 10;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    right: -15px
}

#footer-reviews .slick-prev:before {
    content: "\f053";
    font-family: "font awesome 5 free";
    color: #c5cbd1;
    font-size: 11px;
    font-weight: 700
}

#footer-reviews .slick-next:before {
    content: "\f054";
    font-family: "font awesome 5 free";
    color: #c5cbd1;
    font-size: 11px;
    font-weight: 700
}

#footer-reviews .slick-list {
    padding: 0;
    overflow: hidden
}

#footer-downloads h1 {
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 0;
    padding-top: 0
}

#footer-downloads h1 span {
    font-family: SFProDisplay-Semibold
}

#footer-downloads img {
    -webkit-animation: pulse 2.5s infinite;
    -moz-animation: pulse 2.5s infinite;
    -o-animation: pulse 2.5s infinite;
    animation: pulse 2.5s infinite
}

.footer-buttons {
    padding-left: 0;
    padding-right: 0;
    margin-top: 10px;
    margin-bottom: 20px
}

#footer-button-e-mail {
    background-color: #495865;
    border: 2px solid #00a0a6;
    padding: 5px 10px;
    color: #fff;
    border-radius: 4px;
    font-size: 14px
}

#footer-button-e-mail:hover {
    background-color: grey
}

#footer-button-download {
    background-color: #00a0a6;
    padding: 6px 10px;
    color: #fff;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    border: 1px solid #393f44
}

#footer-button-download:hover {
    background-color: #ccc
}

.footer-endline-1 {
    background-color: #e5e6e6;
    padding: 15px 30px;
    margin: 0
}

.footer-endline-1 p {
    font-size: 14px;
    color: #5d6b78;
    padding: 0;
    padding-top: 3px;
    margin: 0
}

.footer-endline-1 .slick-list.draggable {
    padding: 0
}

.footer-endline-links-img {
    display: inline-block;
    width: 18.5%
}

.footer-endline-links-img img {
    max-width: 100%;
    height: 25px
}

#footer-endline-2 {
    background-color: #495865;
    padding: 15px 30px;
    margin: 0
}

#footer-endline-2 p {
    font-size: 14px;
    color: #c5cbd1;
    padding: 0;
    margin: 0
}

.footer-other-links {
    margin-top: 0;
    text-align: center;
    color: #00a0a6
}

.footer-other-links a {
    color: #c5cbd1
}

.in-house-header {
    background-color: #ededed;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    position: relative;
    z-index: 1
}

#e-learning-header {
    background-color: #1c2d56;
    color: #f8f8f8;
    font-family: Titillium Web;
    background-position: bottom center
}

.in-house-header .animation_element {
    transform: translateY(35%);
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: .2s;
    opacity: 0
}

.in-house-header .animation_element.in-view {
    -webkit-animation-name: showUp;
    animation-name: showUp;
    opacity: 1
}

.in-house-header .row:first-child {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 16px;
    vertical-align: top;
    color: #393f44;
    position: relative;
    text-align: center
}

#e-learning-header .row:first-child {
    margin-top: 10px;
    margin-bottom: 0
}

#in-house-breadcrumb span {
    font-size: 12px;
    margin-left: 10px;
    margin-right: 10px;
    color: #393f44
}

#e-learning-header #in-house-breadcrumb span {
    color: #f8f8f8
}

#in-house-breadcrumb li {
    color: #00a0a6
}

#e-learning-header #in-house-breadcrumb li {
    color: #fdb834
}

#in-house-breadcrumb a {
    color: #393f44
}

#e-learning-header #in-house-breadcrumb a {
    color: #f8f8f8
}

.in-house-header h2 {
    color: #393f44;
    font-size: 33px;
    font-family: SFProDisplay-Semibold;
    text-transform: capitalize
}

_:-ms-fullscreen, :root .in-house-header h2 {
    font-family: roboto, sans-serif;
    font-weight: 500
}

#e-learning-header h2 {
    color: #f8f8f8
}

.in-house-header h1 {
    color: #393f44;
    font-size: 57px;
    font-family: Titillium Web;
    font-weight: 600;
    z-index: 10000
}

#e-learning-header h1 {
    color: #f8f8f8
}

#in-house-header-buttons {
    margin-top: 30px;
    align-items: center;
    text-align: center
}

#e-learning-header-buttons {
    margin-top: 20px;
    align-items: center;
    text-align: center
}

#in-house-header-buttons button {
    border-radius: 4px;
    background-color: transparent;
    border: 1px solid #00a0a6;
    color: #00a0a6;
    margin-left: 15px;
    margin-right: 15px;
    font-size: 20px
}

#e-learning-header-buttons button {
    color: #fcb834;
    border: 1px solid #fff;
    padding: 10px;
    border-radius: 4px;
    background-color: transparent;
    margin-right: 0;
    margin-left: 0;
    font-size: 20px;
    height: auto;
    margin-bottom: 35px
}

#in-house-header-buttons button:hover {
    border: 1px solid #00a0a6;
    background-color: #e4e6e6;
    transition: all .25s ease-in-out;
    cursor: pointer
}

#e-learning-header-buttons button:hover {
    border: 1px solid #00a0a6;
    color: #1c2d56;
    background-color: #e4e6e6;
    transition: all .25s ease-in-out;
    cursor: pointer
}

#in-house-header-buttons button span {
    margin-left: 10px
}

#e-learning-header-buttons button span img {
    margin-left: 10px;
    width: 25px;
    height: 25px
}

.underline {
    display: inline-block;
    text-decoration: none
}

.underline::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #00a0a6;
    transition: width .3s
}

#franchise-header-button .underline::after {
    background: #fff
}

.underline:hover::after {
    width: 100%;
    transition: width .3s
}

#in-house-header-man {
    height: 585px;
    background-image: url(../images/in-house-courses/header-man2.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
    z-index: 0
}

#in-house-header-coaching-men {
    height: 579px;
    background-image: url(../images/in-house-courses/coaching-men.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
    padding-bottom: 30px;
    z-index: 0;
    margin-top: -35px
}

.in-house-header .gradient-box {
    height: 10px
}

.why-in-house {
    background-color: #fff;
    text-align: center;
    position: relative
}

.tazleem-break-content {
    background-color: #8a2889;
    text-align: center;
    z-index: 1000000
}

.tazleem-break-content img {
    margin-top: 48px;
    margin-bottom: 48px
}

.why-in-house h1 {
    margin-top: 50px;
    font-size: 57px;
    color: #393f44;
    font-family: Titillium Web;
    font-weight: 600;
    -webkit-animation: pulse 2s infinite;
    -moz-animation: pulse 2s infinite;
    -o-animation: pulse 2s infinite;
    animation: pulse 2s infinite
}

.why-in-house h2 {
    text-transform: capitalize;
    font-size: 33px;
    margin-bottom: 70px;
    line-height: 1.2
}

.why-in-house i {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 20px
}

.why-in-house a {
    color: #000
}

.why-in-house a:hover {
    color: #00a0a6;
    transition: all .15s ease-in-out
}

@keyframes upAndDown {
    0% {
        -webkit-transform: translateY(0)
    }
    50% {
        -webkit-transform: translateY(-5%)
    }
    100% {
        -webkit-transform: translateY(0)
    }
}

@-webkit-keyframes upAndDown {
    0% {
        -webkit-transform: translateY(0)
    }
    50% {
        -webkit-transform: translateY(-5%)
    }
    100% {
        -webkit-transform: translateY(0)
    }
}

@keyframes leftAndRight {
    0% {
        -webkit-transform: translateX(0)
    }
    50% {
        -webkit-transform: translateX(-5%)
    }
    100% {
        -webkit-transform: translateX(0)
    }
}

@-webkit-keyframes leftAndRight {
    0% {
        -webkit-transform: translateX(0)
    }
    50% {
        -webkit-transform: translateX(-5%)
    }
    100% {
        -webkit-transform: translateX(0)
    }
}

@keyframes swing {
    0% {
        -webkit-transform: rotate(-30deg)
    }
    50% {
        -webkit-transform: rotate(-0deg)
    }
    100% {
        -webkit-transform: rotate(-30deg)
    }
}

@-webkit-keyframes swing {
    0% {
        -webkit-transform: rotate(-30deg)
    }
    50% {
        -webkit-transform: rotate(-0deg)
    }
    100% {
        -webkit-transform: rotate(-30deg)
    }
}

@keyframes moveDiagonal {
    0% {
        -webkit-transform: translateY(0) translateX(0)
    }
    50% {
        -webkit-transform: translateY(-5%) translateX(-5%)
    }
    100% {
        -webkit-transform: translateY(0) translateX(0)
    }
}

@-webkit-keyframes moveDiagonal {
    0% {
        -webkit-transform: translateY(0) translateX(0)
    }
    50% {
        -webkit-transform: translateY(-5%) translateX(-5%)
    }
    100% {
        -webkit-transform: translateY(0) translateX(0)
    }
}

.moving-arrow {
    position: absolute;
    bottom: 2px;
    left: 50%;
    -webkit-animation: upAndDown 2s infinite;
    -moz-animation: upAndDown 2s infinite;
    -o-animation: upAndDown 2s infinite;
    animation: upAndDown 2s infinite
}

.moving-objects {
    position: absolute;
    width: 150px;
    height: 150px
}

#moving-objects-left-center {
    top: 60%;
    left: 17%;
    -webkit-animation: swing 4s infinite;
    -moz-animation: swing 4s infinite;
    -o-animation: swing 4s infinite;
    animation: swing 4s infinite
}

#moving-objects-left-bottom {
    bottom: 5%;
    left: 10%;
    -webkit-animation: leftAndRight 2.5s infinite;
    -moz-animation: leftAndRight 2.5s infinite;
    -o-animation: leftAndRight 2.5s infinite;
    animation: leftAndRight 2.5s infinite
}

#moving-objects-right-center {
    top: 50%;
    left: 77%;
    -webkit-animation: moveDiagonal 2.5s infinite;
    -moz-animation: moveDiagonal 2.5s infinite;
    -o-animation: moveDiagonal 2.5s infinite;
    animation: moveDiagonal 2.5s infinite
}

#moving-objects-right-bottom {
    bottom: 3%;
    left: 75%;
    width: 200px;
    -webkit-animation: upAndDown 3s infinite;
    -moz-animation: upAndDown 3s infinite;
    -o-animation: upAndDown 3s infinite;
    animation: upAndDown 3s infinite
}

.in-house-features {
    background-color: #f8f8f8;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    padding: 50px 0
}

.in-house-features-container {
    padding-right: 50px
}

@keyframes pulseLong {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 0
    }
    25% {
        transform: scale(1.05);
        -webkit-transform: scale(1.05)
    }
    50% {
        transform: scale(.9);
        -webkit-transform: scale(.9)
    }
    75% {
        transform: scale(1.05);
        -webkit-transform: scale(1.05)
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 1
    }
}

@-webkit-keyframes pulseLong {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 0
    }
    25% {
        transform: scale(1.05);
        -webkit-transform: scale(1.05)
    }
    50% {
        transform: scale(.9);
        -webkit-transform: scale(.9)
    }
    75% {
        transform: scale(1.05);
        -webkit-transform: scale(1.05)
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 1
    }
}

.in-house-feature-wrapper {
    height: 300px;
    padding-left: 50px;
    padding-right: 50px
}

.in-house-features .animation_element {
    opacity: 0;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 0s
}

.in-house-features .animation_element.in-view {
    -webkit-animation: pulseLong .8s;
    -moz-animation: pulseLong .8s;
    -o-animation: pulseLong .8s;
    animation: pulseLong .8s;
    opacity: 1
}

.in-house-features h2 {
    font-size: 39px;
    color: #393f44;
    text-transform: uppercase;
    font-weight: 600;
    text-align: left;
    font-family: Titillium Web;
    margin-top: -7px;
    line-height: 1.3
}

.in-house-features h3 {
    color: #00a0a6;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 25px;
    font-family: Titillium Web;
    margin-bottom: 20px
}

.in-house-features .e-learning-benefits-box h3 {
    text-transform: uppercase;
    color: #fcb834;
    font-family: Titillium Web;
    font-size: 40px;
    text-align: left
}

.in-house-features .e-learning-benefits-box p {
    text-transform: uppercase;
    color: #fff;
    font-family: Titillium Web;
    font-weight: 500;
    font-size: 28px;
    text-align: left
}

.in-house-features .e-learning-benefits-box-benefit {
    border-bottom: 3px solid #fcb834;
    margin-left: 20px;
    margin-right: 20px;
    padding-top: 10px;
    padding-bottom: 0;
    display: flex
}

.video-buttons {
    height: 56px;
    width: 56px;
    position: absolute;
    top: 330px;
    left: 50%;
    margin-left: -5px;
    border-radius: 100%;
    background-color: rgba(245, 88, 243, .5);
    color: #fff;
    border: none;
    z-index: 10000000
}

.video-buttons:focus {
    border: none;
    outline: 0
}

.video-buttons i {
    padding-top: 4px;
    padding-left: 2px;
    font-size: 18px
}

.more-button {
    color: #474f59;
    font-family: SFProDisplay-Semibold;
    font-size: 15px;
    border: none;
    border-bottom: 1px solid #c1c1c1;
    background: 0 0;
    padding: 5px 0
}

_:-ms-fullscreen, :root .more-button {
    font-family: roboto, sans-serif;
    font-weight: 500
}

.more-button:hover {
    color: #8a2889;
    transition: all ease-in-out .2s
}

.more-button:focus {
    border: none;
    border-bottom: 1px solid #c1c1c1;
    outline: 0
}

.more-button i {
    font-size: 13px;
    margin-left: 10px;
    color: #8a2889
}

.in-house-features-headings:after {
    content: "";
    position: absolute;
    width: 90px;
    height: 3px;
    display: block;
    left: 50%;
    margin-top: 10px;
    transform: translate(-50%);
    background: linear-gradient(to right, #91abd9 20%, #ba96c5 60%, #70cdde 100%);
    background: -moz-linear-gradient(to right, #91abd9 20%, #ba96c5 60%, #70cdde 100%);
    background: -webkit-linear-gradient(to right, #91abd9 20%, #ba96c5 60%, #70cdde 100%);
    background: -o-linear-gradient(to right, #91abd9 20%, #ba96c5 60%, #70cdde 100%);
    background: -ms-linear-gradient(to right, #91abd9 20%, #ba96c5 60%, #70cdde 100%)
}

.in-house-features h4 {
    text-align: left;
    color: #393f44;
    font-size: 28px;
    font-weight: 600;
    font-family: Titillium Web
}

.in-house-features p {
    font-size: 20px;
    color: #5d6b78
}

.in-house-features img {
    width: 85px;
    height: 85px
}

.in-house-features-green-box {
    background-color: #00a0a6;
    position: relative;
    padding: 30px 40px 35px 20px;
    color: #fff;
    text-align: left;
    margin-top: 30px
}

.in-house-features-green-box p {
    color: #fff;
    font-size: 25px !important
}

.in-house-features-green-box p:first-child {
    border-bottom: 2px dashed #fff;
    padding-bottom: 10px
}

.in-house-features-green-box span {
    font-weight: 700;
    font-size: 25px
}

#in-house-features-green-box-plane {
    position: absolute;
    top: 20px;
    right: -15px
}

#in-house-features-green-box-plane img {
    width: 70px;
    color: #5d6b78
}

.in-house-fully-alligned {
    background-color: #00a0a6;
    color: #fff;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 60px
}

.in-house-fully-alligned h1 {
    font-weight: 600;
    font-size: 57px;
    margin-top: 30px;
    margin-bottom: 30px;
    font-family: Titillium Web;
    -webkit-animation: pulse 2.5s infinite;
    -moz-animation: pulse 2.5s infinite;
    -o-animation: pulse 2.5s infinite;
    animation: pulse 2.5s infinite
}

.in-house-fully-alligned h2 {
    font-size: 33px;
    margin-bottom: 40px;
    color: #bef0f2
}

.in-house-pyramid {
    background-color: #fff;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    padding: 50px 108px
}

.in-house-pyramid-left {
    padding-right: 80px
}

.in-house-pyramid-right {
    padding: 0;
    padding-left: 10px
}

.in-house-pyramid-right h2 {
    text-transform: capitalize;
    color: #393f44;
    font-size: 33px;
    font-family: Titillium Web;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 5px;
    padding-bottom: 0
}

.in-house-pyramid-right h3 {
    color: #00a0a6;
    font-size: 28px;
    font-family: Titillium Web;
    font-weight: 600;
    margin-top: 0
}

.in-house-pyramid-right p {
    color: #393f44;
    font-size: 21px;
    margin-bottom: 50px
}

.in-house-pyramid-man {
    width: 100%;
    margin-bottom: 50px
}

.in-house-pyramid-man img {
    width: 100%
}

.in-house-pyramid-grey-box {
    font-size: 33px;
    margin-bottom: 40px;
    color: #fff;
    background-color: #5d6b78;
    padding: 25px 75px 45px 60px
}

.in-house-pyramid-grey-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px
}

.in-house-pyramid-grey-box p {
    font-size: 21px
}

.coaching-features-section {
    padding: 56px 55px;
    background-color: #f8f8f8
}

.coaching-features-left {
    padding-right: 115px
}

.coaching-features-left h2 {
    color: #393f44;
    font-size: 33px;
    line-height: 1.3;
    font-family: Titillium Web;
    font-weight: 600;
    margin-bottom: 30px;
    margin-top: 0
}

.coaching-features-left h3 {
    color: #5d6b78;
    font-size: 30px;
    font-family: Titillium Web;
    font-weight: 600;
    margin-bottom: 5px
}

.coaching-features-left p {
    font-size: 21px;
    margin-bottom: 40px
}

#coaching-highlight-gradient-box {
    margin-bottom: 40px
}

#coaching-highlight-gradient-box h2 {
    color: #393f44;
    font-size: 33px;
    font-family: Titillium Web;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px
}

#coaching-triangle-ball {
    padding-left: 0;
    padding-right: 10px
}

#coaching-triangle-ball img {
    height: 105px;
    width: 116px
}

.coaching-step-wrapper {
    padding-top: 20px;
    border-bottom: 1px solid #5d6b78
}

.coaching-step-wrapper:last-child {
    border-bottom: none
}

.coaching-step-wrapper .row {
    margin-bottom: 15px
}

.coaching-step-wrapper p {
    margin-bottom: 20px;
    color: #393f44;
    font-size: 21px
}

.coaching-step-wrapper .coaching-step-number p {
    font-size: 70px;
    color: #cecece;
    font-family: SFProDisplay-Semibold;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: top;
    line-height: 1
}

_:-ms-fullscreen, :root .coaching-step-wrapper .coaching-step-number p {
    font-family: roboto, sans-serif;
    font-weight: 500
}

.coaching-step-text {
    vertical-align: top
}

.coaching-step-text h4 {
    font-size: 25px;
    color: #00a0a6;
    padding-top: 0;
    padding-bottom: 0;
    text-transform: capitalize;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 35px;
    height: 70px;
    vertical-align: middle
}

.coaching-step-number {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    height: 70px;
    vertical-align: top
}

.coaching-form-contact {
    padding: 30px;
    border: 1px solid #5d6b78;
    margin-bottom: 50px
}

#e-learning-form-contact {
    text-align: left
}

.coaching-form-contact h3 {
    text-transform: uppercase;
    color: #393f44;
    font-family: Titillium Web;
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 25px;
    line-height: 1.4
}

.coaching-form-contact input {
    border: 1px solid #5d6b78;
    font-size: 16px;
    margin-bottom: 25px
}

.coaching-form-contact input:focus {
    border: solid 2px #FF7E00;
    transition: all .25s ease-in-out
}

#e-learning-form-contact input:focus {
    border: solid 2px #8a2889;
    transition: all .25s ease-in-out
}

.coaching-form-contact .checkbox {
    margin-top: 25px;
    margin-bottom: 25px
}

.coaching-form-contact button {
    background-color: #00a0a6;
    border: 0;
    border-radius: 4px;
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    width: 100%;
    color: #fff;
    font-weight: 400;
    padding: 12px
}

.coaching-form-contact button:hover {
    background-color: transparent;
    color: #00a0a6;
    transition: all .12s ease-in-out;
    border: 1px solid #00a0a6
}

#e-learning-form-contact button:hover {
    background-color: transparent;
    border: 1px solid #71ca84;
    color: #71ca84;
    transition: all ease-in-out .2s
}

#coaching-advert-image {
    background-image: url(../images/in-house-courses/pyramid-man.png)
}

.privacy-wrapper {
    padding-top: 10px;
    padding-bottom: 50px
}

.checkout-wrapper {
    max-width: 1400px;
    margin: 0 auto
}

.checkout-wrapper h3 {
    font-family: Titillium Web;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 20px
}

.label-red {
    color: #f11
}

.checkout-wrapper input {
    border-radius: 1px;
    margin-bottom: 10px
}

.checkout-wrapper select {
    width: 100%;
    padding: 5px 10px;
    border: 1px solid #ccc
}

.checkout-wrapper .table td {
    padding: 15px 10px
}

.checkout-wrapper select:focus {
    border: 1px solid #FF7E00
}

.checkout-wrapper input:focus {
    border: 1px solid #FF7E00
}

.checkout-wrapper textarea {
    width: 100%;
    height: 108px;
    padding: 5px 10px
}

.checkout-wrapper textarea:focus {
    outline: none !important;
    border: 1px solid #FF7E00;
    transition: all ease-in-out .2s
}

.checkout-payment-wrapper {
    background-color: #ebe9eb;
    color: #666;
    padding: 20px;
    margin-bottom: 70px
}

.checkout-payment-wrapper a {
    color: #666
}

.checkout-payment-wrapper a:hover {
    text-decoration: none
}

.checkout-payment-wrapper .collapse-content {
    background-color: #dfdcde;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px
}

.checkout-payment-wrapper .collapse-content p {
    margin-bottom: 0
}

.checkout-payment-wrapper img {
    margin-left: 10px
}

.checkout-payment-wrapper input[type=radio] {
    margin-right: 10px;
    padding-left: 5px;
    margin-bottom: 10px
}

.checkout-payment-wrapper #terms-conditions {
    margin-left: 20px
}

.checkout-payment-wrapper label {
    padding-left: 0
}

.checkout-payment-wrapper #terms-collapse {
    height: 180px;
    overflow-y: scroll;
    border: 1px solid grey
}

.checkout-payment-wrapper #terms-collapse p {
    margin-bottom: 10px
}

#check-payments-collapse {
    display: none
}

#credit-cards-collapse {
    display: none
}

.checkout-payment-terms-wrapper {
    border-top: 1px solid grey;
    padding-top: 20px;
    margin-top: 15px
}

.checkout-payment-button-wrapper {
    text-align: right
}

.checkout-payment-wrapper #payment-order-btn {
    background-color: #FF7E00;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0;
    padding: 10px 30px;
    border: none
}

.checkout-payment-wrapper #payment-order-btn:hover {
    background-color: transparent;
    border: 1px solid #FF7E00;
    transition: all ease-in-out .2s;
    color: #FF7E00
}

.checkout-payment-wrapper .checkbox a {
    color: #FF7E00
}

.checkout-payment-wrapper .checkbox a:hover {
    text-decoration: underline
}

.mobile-menu {
    display: none
}

#mobile-menu-content {
    display: none
}

.mobile-menu-above-header {
    display: none
}

.courses-filter .form-group {
    position: relative;
    margin-top: 20px;
    margin-left: 0;
    margin-right: 0
}

.courses-filter .form-group i {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    width: 40px;
    height: 34px;
    background: #FF7E00;
    cursor: pointer
}

.courses-filter .form-group i:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 16px
}

.courses-filter input.form-control {
    border: 1px solid #5c6b77;
    border-radius: 0;
    -webkit-border-radius: 0;
    box-shadow: none;
    -webkit-transition: none;
    width: 100%;
    background-color: #f1f3f5;
    transition: width .5s ease-in-out
}

.courses-filter input.form-control:focus {
    border: 1px solid #FF7E00
}

.courses-filtert input.form-control:focus {
    outline: none
}

#course-catalogue-home {
    display: none
}

#courses-list-grid-custom-select .select-items {
    position: absolute;
    background-color: #fff;
    color: #5d6b78;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 5px 5px 5px 10px
}

.course-section_03 #radiating-hidden {
    display: none
}

.show-mobile {
    display: none
}

.show-tablet {
    display: none
}

.hidden-mobile {
    display: block
}

.hidden-tablet {
    display: block
}

.section_04 .left-box-description {
    margin-top: 10px
}

.about-us-header {
    padding-bottom: 40px;
    padding-left: 50px;
    padding-right: 50px
}

.about-us-header h1 {
    color: #393f44;
    font-size: 57px
}

.about-us-header h2 {
    color: #393f44;
    font-size: 33px
}

.all-directors-wrap {
    padding: 70px 0;
    width: 1400px;
    margin: 0 auto
}

.all-directors-wrap:after {
    content: "";
    clear: both;
    display: block
}

.all-directors-wrap .animation_element {
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 0s;
    opacity: 0
}

.all-directors-wrap .animation_element.in-view {
    -webkit-animation-name: showUp;
    animation-name: showUp;
    opacity: 1
}

#courses-filter-menu {
    display: block
}

.post-header {
    height: 200px;
    background-color: #00a0a6;
    color: #fff;
    text-align: center;
    padding-left: 30px;
    padding-right: 30px
}

.post-header h1 {
    font-size: 68px;
    margin-top: 40px;
    margin-bottom: 30px;
    text-transform: capitalize
}

.post-header .breadcrumb-item a {
    color: #fff;
    text-transform: uppercase;
    margin-right: 10px
}

.post-header .active {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    margin-left: 10px
}

.post-heading-wrap {
    text-align: center
}

.post-heading-wrap h2 {
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: capitalize
}

.post-category-tag {
    background-color: #ff4d4d;
    text-transform: uppercase;
    font-size: 12px;
    width: fit-content;
    padding: 5px 10px;
    color: #fff;
    font-weight: 700;
    margin: 0 auto
}

.post-wrapper {
    padding: 30px 0;
    width: 1400px;
    margin: 0 auto
}

.post-data {
    margin-bottom: 20px
}

.post-data-group {
    display: inline-block;
    border-right: 1px solid #a4a4a4;
    text-align: center;
    padding-left: 30px;
    padding-right: 30px
}

.post-data-group:last-child {
    border-right: none
}

.post-data-group-type {
    font-size: 12px;
    color: #a4a4a4;
    font-weight: 700;
    margin-bottom: 2px
}

.post-data-group-data {
    font-size: 12px;
    color: #7a7a7a;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0
}

.post-thumbnail img {
    margin-bottom: 20px
}

.post-thumbnail img {
    width: 100%
}

.post-body {
    margin-bottom: 110px
}

.post-body p {
    font-size: 16px;
    line-height: 26px;
    color: #777
}

.post-body p > span * {
    font-size: 16px !important;
    line-height: 26px !important;
    color: #777 !important;
    font-family: sfprodisplay-regular !important
}

.post-body li * {
    font-size: 16px !important;
    line-height: 26px !important;
    color: #777 !important;
    font-family: sfprodisplay-regular !important
}

.post-body li > span * {
    font-size: 16px !important;
    line-height: 26px !important;
    color: #777 !important;
    font-family: sfprodisplay-regular !important
}

.post-body p a {
    color: #2f5496 !important
}

.post-body p span a {
    color: #2f5496 !important
}

.post-body li a {
    color: #2f5496 !important
}

blockquote {
    font-size: 16px !important;
    line-height: 30px !important;
    color: #666;
    padding-left: 20px;
    border-left: 1px solid #00a0a6;
    font-style: italic
}

.post-body-quote {
    font-size: 18px !important;
    line-height: 30px !important;
    color: #666;
    padding-left: 20px;
    border-left: 1px solid #00a0a6;
    font-style: italic
}

.post-body h1 {
    font-size: 22px;
    line-height: 31px;
    color: #2d2a2a;
    font-weight: 600;
    width: 100%;
    border-bottom: 1px solid #a4a4a4;
    margin-bottom: 20px
}

.post-body h2 {
    font-size: 18px;
    line-height: 31px;
    color: #2d2a2a;
    font-weight: 600;
    width: 100%;
    border-bottom: 1px solid rgba(119, 119, 119, .17);
    margin-bottom: 30px;
    margin-top: 30px;
    padding-bottom: 7px
}

.post-body h3 {
    font-size: 22px;
    line-height: 31px;
    color: #2d2a2a;
    font-weight: 600;
    width: 100%;
    border-bottom: 1px solid #a4a4a4;
    margin-bottom: 20px
}

.post-author-about {
    background-color: #f9f9f9;
    padding: 50px 20px 30px;
    width: 100%;
    position: relative;
    text-align: center;
    margin-bottom: 30px
}

.post-author-about img {
    position: absolute;
    border-radius: 100%;
    width: 70px;
    left: 50%;
    margin-left: -35px;
    top: -35px
}

.post-author-about-who {
    font-size: 18px;
    line-height: 25px;
    color: #2d2a2a
}

.post-author-about-bio {
    font-size: 14px;
    line-height: 22px;
    color: #777
}

.post-social-share {
    text-align: right;
    font-size: 15px;
    color: #666;
    margin-bottom: 40px
}

.post-social-share img {
    width: 30px;
    margin-left: 10px
}

.post-previous-next {
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid #a4a4a4
}

.post-previous-next p {
    display: inline-block;
    color: #777;
    margin-left: 7px;
    margin-right: 7px;
    font-weight: 700
}

.post-previous {
    text-align: left
}

.post-previous a {
    background: 0 0;
    color: #000;
    text-decoration: none;
    border-radius: 50%;
    display: inline-block;
    height: 30px;
    border: 1px solid #000;
    width: 30px
}

.post-previous a:hover {
    background: #00a0a6;
    transition: all ease .2s
}

.post-previous a::after {
    content: "\003C";
    display: block;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    margin-top: 3px
}

.post-next {
    text-align: right
}

.post-next a {
    background: 0 0;
    text-decoration: none;
    border-radius: 50%;
    display: inline-block;
    height: 30px;
    width: 30px;
    border: 1px solid #000
}

.post-next a:hover {
    background: #00a0a6;
    transition: all ease .2s
}

.post-next a::after {
    content: "\003E";
    display: block;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    margin-top: 3px
}

.post-search input {
    width: 100%;
    margin-bottom: 20px;
    padding: 5px 10px
}

.post-search input:focus {
    border: solid 2px #FF7E00;
    outline: none;
    transition: all .4s ease-in-out
}

.post-categories-list {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #c7c7c7
}

.post-right-panel h3 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px
}

.post-categories-list a {
    display: block;
    font-size: 14px;
    color: #777;
    margin-bottom: 10px
}

.post-categories-list a:hover {
    text-decoration: none;
    color: #00a0a6
}

.post-download-catalogue img {
    width: 100%;
    margin-bottom: 20px
}

.post-recent-wrap {
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(129, 129, 129, .2)
}

.post-recent-wrap-img {
    height: 66px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

.post-recent h4 {
    margin-top: 0;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 18px;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    height: 38px;
    font-weight: 700;
    display: -webkit-box;
    color: #333
}

.post-recent p {
    margin-top: 3px;
    font-size: 12px;
    color: #bbb;
    margin-bottom: 0
}

.associations-wrapper {
    padding: 30px 108px 10px
}

.association-wrap {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 50px;
    text-align: center
}

.container.custom_second {
    max-width: 1222px;
    width: auto
}

.banner-postlist {
    background-image: url(../images/about-us/board-header.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding: 70px 0 60px
}

.banner-postlist h1 {
    font-size: 68px;
    color: #fff;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 50px;
    padding-right: 50px
}

.banner-postlist .braedcrumb-wrapper a {
    color: #fff;
    font-size: 14px
}

.banner-postlist .braedcrumb-wrapper span {
    color: #fff;
    font-size: 14px
}

.banner-postlist .braedcrumb-wrapper i {
    color: #fff;
    margin: 0 10px;
    font-size: 12px
}

.banner-postlist .braedcrumb-wrapper #post-list-path i {
    color: #fff
}

.post-list-wrapper {
    padding: 50px 0 0;
    overflow: hidden
}

.post-list-box {
    text-align: center;
    box-shadow: 0 0 4px rgba(0, 0, 0, .12);
    transition: all .3s ease-in-out;
    margin-bottom: 30px
}

.post-list-box:hover {
    box-shadow: 0 0 9px rgba(0, 0, 0, .2)
}

.post-list-box .img-wrap {
    position: relative;
    overflow: hidden;
    height: auto
}

.post-list-box .img-wrap img {
    transform: scale(1);
    -webkit-transform: scale(1);
    transition: all .7s ease;
    -webkit-transition: all .7s ease-in-out
}

.post-list-box:hover .img-wrap img {
    transform: scale(1.12);
    -webkit-transform: scale(1.12)
}

.post-list-box .transparent-backround {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    transition: all .7s ease;
    -webkit-transition: all .7s ease-in-out
}

.post-list-box:hover .transparent-backround {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5)
}

.post-list-box .img-wrap .hover-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    pointer-events: none
}

.postListMenu {
    text-align: center;
    margin-bottom: 10px
}

.postListMenu span {
    padding: 15px 20px;
    cursor: pointer;
    position: relative
}

hr {
    margin-top: 0
}

.postListMenu span:hover {
    text-decoration: underline;
    cursor: pointer
}

.postListMenu span.selected {
    color: #00a0a6;
    font-weight: 700
}

.postListMenu span.selected::before {
    position: absolute;
    display: inline-block;
    width: 11px;
    height: 11px;
    background-image: none;
    left: auto;
    right: 100%;
    top: 4px;
    margin-right: 10px;
    background-size: 100%;
    content: " ";
    opacity: .7;
    margin-right: 5px
}

.hover-circles .circle {
    width: 10px;
    height: 10px;
    background-color: #fff;
    display: inline-block;
    border-radius: 100%;
    margin: 0 2px;
    opacity: 0;
    transform: translateX(-40px);
    -webkit-transform: translateX(-40px);
    transition: opacity .7s ease-in-out
}

.hover-circles .circle.showing {
    -webkit-animation: hoverMove .7s forwards;
    animation: hoverMove .7s forwards;
    transition: opacity .7s ease-in-out
}

.hover-circles .circle.one.showing {
    animation-delay: .5s
}

.hover-circles .circle.sec.showing {
    animation-delay: .25s
}

.hover-circles .circle.showing.show-over {
    -webkit-animation: hoverMove .7s forwards;
    animation: hoverMoveLeft .7s forwards
}

.post-list-box .date-box {
    position: absolute;
    top: 10px;
    left: 10px;
    min-width: 53px;
    background-color: #fff;
    box-shadow: 0 0 9px rgba(0, 0, 0, .1);
    text-align: center;
    padding: 0 5px
}

.post-list-box .date-box .date {
    padding-top: 6px;
    padding-bottom: 4px;
    font-size: 24px;
    margin: 0;
    color: #5c6b77;
    line-height: 1
}

.post-list-box .date-box .month {
    margin: 0;
    padding-top: 0;
    padding-bottom: 8px;
    color: #5c6b77;
    font-size: 16px;
    letter-spacing: .3px;
    line-height: 1;
    font-family: sfprodisplay-semibold;
    display: inline-block
}

.post-list-box .date-box .year {
    margin: 0;
    padding-top: 0;
    padding-bottom: 8px;
    color: #5c6b77;
    font-size: 16px;
    letter-spacing: .3px;
    line-height: 1;
    font-family: sfprodisplay-semibold;
    display: inline-block
}

.post-list-content {
    padding-bottom: 25px;
    padding-left: 15px;
    padding-right: 15px
}

.description-wrap {
    display: block;
    text-align: center;
    margin-top: -13px;
    position: relative;
    z-index: 1
}

.post-list-description {
    display: inline-block;
    padding: 3px 10px;
    background-color: #ff4d4d
}

.post-list-description a {
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-family: sfprodisplay-semibold
}

.post-list-description a:hover {
    text-decoration: none
}

.post-list-header {
    text-align: center
}

.post-list-header a {
    text-decoration: none
}

.post-list-header a:hover {
    text-decoration: none
}

.post-list-header {
    margin: 12px 0 3px
}

.post-list-header a h2 {
    margin: 0;
    font-size: 24px;
    color: #333;
    transition: all .35s ease-in-out;
    text-decoration: none;
    font-weight: 600;
    padding: 0 45px;
    line-height: 1.3;
    height: 61px;
    overflow: hidden
}

.post-list-header a:hover h2 {
    color: #FF7E00
}

.post-list-author {
    text-align: center
}

.post-list-author span {
    color: #a4a4a4;
    font-size: 14px
}

.post-list-author i {
    color: #777;
    font-size: 14px
}

.post-list-author .avatar-img {
    display: inline-block;
    border-radius: 100%;
    margin: 0 7px;
    width: 18px;
    height: 18px
}

.post-list-author a {
    margin: 0 12px;
    position: relative;
    top: 9px;
    text-decoration: none
}

.post-list-author a:hover {
    text-decoration: none
}

.post-list-author a span {
    font-size: 24px
}

.post-list-author i span {
    font-size: 24px
}

.post-list-author a span.indicator {
    position: absolute;
    top: -9px;
    right: -3px;
    width: 13px;
    height: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background-color: #777;
    font-size: 9px;
    color: #fff;
    z-index: 10;
    font-family: sfprodisplay-semibold
}

.post-list-author a i.indicator {
    position: absolute;
    top: -9px;
    right: -3px;
    width: 13px;
    height: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background-color: #777;
    font-size: 9px;
    color: #fff;
    z-index: 10
}

.post-list-author .share {
    position: relative
}

.post-list-author .share span:before {
    font-size: 18px;
    color: #777
}

.post-list-author .share i:before {
    font-size: 18px;
    color: #777
}

.post-list-author .share .share-tooltip {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: auto;
    bottom: 30px;
    min-width: 155px;
    transform: translate(-50%);
    -webkit-transform: translate(-50%);
    visibility: hidden;
    opacity: 0;
    transition: opacity .25s ease-in-out;
    padding-top: 4px;
    padding-bottom: 8px
}

.post-list-author .share:hover .share-tooltip {
    visibility: visible;
    opacity: 1
}

.post-list-author .share .share-tooltip {
    background-color: #5c6b77
}

.post-list-author .share .share-tooltip:after {
    content: " ";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%);
    -webkit-transform: translate(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #5c6b77 transparent transparent transparent
}

.post-list-author .share .share-tooltip a {
    margin: 0 10px
}

.post-list-author .share .share-tooltip span {
    margin: 0;
    position: relative;
    bottom: 5px
}

.post-list-author .share .share-tooltip i {
    margin: 0;
    position: relative;
    bottom: 5px
}

.post-list-author .share .share-tooltip span:before {
    font-size: 17px;
    color: #fff;
    -webkit-text-stroke-width: 0;
    -webkit-text-stroke-color: transparent
}

.post-list-author .share .share-tooltip i:before {
    font-size: 17px;
    color: #fff;
    -webkit-text-stroke-width: 0;
    -webkit-text-stroke-color: transparent
}

.courses-list-result-icon .share {
    position: relative
}

.courses-list-result-icon .share span:before {
    font-size: 18px;
    color: #777
}

.courses-list-result-icon .share i:before {
    font-size: 18px;
    color: #777
}

.courses-list-result-icon .share .share-tooltip {
    display: inline-block;
    position: absolute;
    top: auto;
    min-width: 145px;
    transform: translate(-50%);
    -webkit-transform: translate(-50%);
    visibility: hidden;
    opacity: 0;
    transition: opacity .25s ease-in-out;
    left: -190%;
    bottom: 17px;
    background-color: #5c6b77;
    height: 40px
}

.post-list-author .share:hover .share-tooltip {
    visibility: visible;
    opacity: 1;
    z-index: 10
}

.courses-list-result-icon .share:hover .share-tooltip {
    visibility: visible;
    opacity: 1;
    z-index: 10;
    height: 30px
}

.courses-list-result-icon .share .share-tooltip:after {
    content: " ";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%);
    -webkit-transform: translate(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #5c6b77 transparent transparent transparent
}

.courses-list-result-icon .share .share-tooltip:after {
    border: none
}

.courses-list-result-icon .share .share-tooltip a {
    margin: 0 10px
}

.post-list-author .share .post-list-author .share .share-tooltip span {
    margin: 0;
    position: relative;
    bottom: 5px
}

.post-list-author .share .post-list-author .share .share-tooltip i {
    margin: 0;
    position: relative;
    bottom: 5px
}

.courses-list-result-icon .share .share-tooltip span {
    margin: 0;
    position: relative;
    bottom: -7px
}

.courses-list-result-icon .share .share-tooltip i {
    margin: 0;
    position: relative;
    bottom: -7px
}

.courses-list-result-icon .share .share-tooltip span:before {
    font-size: 17px;
    color: #fff;
    -webkit-text-stroke-width: 0;
    -webkit-text-stroke-color: transparent
}

.courses-list-result-icon .share .share-tooltip i:before {
    font-size: 17px;
    color: #fff;
    -webkit-text-stroke-width: 0;
    -webkit-text-stroke-color: transparent
}

.post-list-content .intro p {
    text-align: center;
    font-size: 14px;
    color: #5c6b77;
    font-family: sfprodisplay-semibold;
    margin: 0;
    line-height: 1.8;
    padding: 0 30px;
    height: 71px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical
}

.post-list-content .intro {
    margin-top: 13px;
    margin-bottom: 20px;
    color: #777;
    height: 40px
}

.post-list-box a.continue-reading {
    position: relative;
    font-size: 13px;
    text-transform: uppercase;
    color: #FF7E00;
    font-family: sfprodisplay-semibold;
    text-decoration: none;
    margin-top: 30px
}

.post-list-box a.continue-reading span {
    position: absolute;
    top: 3px;
    right: -14px;
    font-size: 16px;
    opacity: 0;
    -webkit-animation: oscilation 1s infinite;
    animation: oscilation 1s infinite
}

.post-list-box a.continue-reading i {
    position: absolute;
    top: 3px;
    right: -16px;
    font-size: 14px;
    opacity: 0;
    -webkit-animation: oscilation 1s infinite;
    animation: oscilation 1s infinite
}

.post-list-box a.continue-reading:hover span {
    opacity: 1;
    -webkit-animation: oscilation 1s infinite;
    animation: oscilation 1s infinite
}

.post-list-box a.continue-reading:hover i {
    opacity: 1;
    -webkit-animation: oscilation 1s infinite;
    animation: oscilation 1s infinite
}

.post-list-pagination {
    margin-bottom: 50px
}

.post-list-pagination ul {
    display: block;
    text-align: center
}

.post-list-pagination ul li {
    display: inline-block
}

.post-list-pagination ul li a {
    color: #5c6b77;
    padding: 10px 13px;
    text-decoration: none;
    background-color: transparent;
    transition: all .35s ease-in-out
}

.post-list-pagination ul li a:hover {
    text-decoration: none;
    background-color: #eee
}

.post-list-pagination ul li.active a {
    background-color: #FF7E00;
    color: #fff
}

.post-list-pagination ul li.active:hover a {
    background-color: #FF7E00
}

.post-wrapper .post-list-wrapper {
    padding-top: 0
}

.cart-wrapper {
    padding: 30px 0 100px;
    width: 1400px;
    margin: 0 auto
}

.cart-th {
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 1px solid #d8d8d8;
    padding-bottom: 10px;
    text-align: left;
    color: #5d6b78
}

.cart-tr {
    vertical-align: middle;
    padding: 20px 0;
    border-bottom: 1px solid #d8d8d8;
    color: #5d6b78;
    position: relative
}

.cart-tr p {
    margin: 0
}

.cart-tr-image {
    width: 100%;
    height: 80px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center
}

.cart-tr-close {
    height: 80px;
    text-align: center
}

.cart-tr-close i {
    vertical-align: middle;
    line-height: 80px
}

.cart-tr-price, .cart-tr-increment, .cart-tr-total {
    display: table;
    height: 80px
}

.cart-tr-course {
    display: block
}

.cart-tr-price p, .cart-tr-increment .form-group, .cart-tr-total {
    display: table-cell;
    vertical-align: middle
}

.cart-tr-increment {
    text-align: center;
    width: 100%
}

.cart-tr-total {
    color: #00a0a6;
    font-weight: 700
}

.cart-tr-course h4 {
    margin-top: 0;
    -webkit-line-clamp: 2 !important;
    text-overflow: ellipsis !important;
    overflow: hidden;
    height: 40px;
    display: block;
    cursor: pointer
}

.cart-total-wrap {
    padding: 20px;
    border: 1px solid #d8d8d8;
    color: #5d6b78
}

.cart-total-wrap h3 {
    margin-top: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700
}

.cart-total-tr {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #d8d8d8
}

.cart-total-sum-tr {
    border-bottom: none
}

.cart-total-tr-left {
    font-weight: 700
}

.cart-total-tr p {
    text-align: right;
    margin-bottom: 0
}

.cart-total-wrap button {
    width: 100%;
    text-transform: uppercase;
    padding: 10px;
    border-radius: 1px;
    font-weight: 600;
    letter-spacing: 2px
}

.cart-total-tr-sum-left {
    font-size: 18px;
    font-weight: 700
}

.cart-total-tr-sum-right {
    font-size: 18px;
    font-weight: 700;
    color: #00a0a6
}

.show-xs {
    display: none
}

.cart-sidebar {
    position: fixed;
    display: block;
    width: 35%;
    height: 100vh;
    background-color: rgba(248, 248, 248, .9);
    top: 0;
    right: 0;
    z-index: 100000000000000000000000;
    display: none
}

.cart-sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #777
}

.cart-sidebar-header h3 {
    margin: 0;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 700
}

.cart-sidebar-close {
    text-align: right;
    line-height: 24px;
    vertical-align: middle;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    position: absolute;
    right: 20px
}

.cart-sidebar-close p {
    display: inline
}

.cart-sidebar-close img {
    height: 15px;
    margin-top: -2px;
    margin-left: 5px
}

.cart-sidebar-items {
    height: 45%;
    overflow-y: scroll
}

.cart-sidebar-items::-webkit-scrollbar {
    width: 6px
}

.cart-sidebar-items::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    border-radius: 10px;
    background-color: rgba(0, 130, 101, .3)
}

.cart-sidebar-items::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #008265
}

.cart-sidebar-items::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 130, 101, .7)
}

.cart-sidebar-item-wrap {
    width: 100%;
    padding: 15px 20px;
    border-bottom: 1px solid #d8d8d8
}

.cart-sidebar-item-wrap:last-child {
    border-bottom: none
}

.cart-sidebar-item-image {
    width: 100%;
    height: 80px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer
}

.cart-sidebar-item-wrap h4 {
    margin: 0;
    font-size: 14px;
    color: #777;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 33px;
    margin-top: -3px;
    cursor: pointer
}

.cart-sidebar-item-wrap h4 p {
    margin-bottom: 0;
    font-size: 14px;
    color: #777;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: auto;
    line-height: 1
}

.cart-sidebar-item-wrap h4 * {
    display: inline !important;
    font-size: 14px;
    display: inline-block;
    margin: 0
}

.cart-sidebar-item-wrap p {
    margin-bottom: 3px;
    margin-top: 2px
}

.cart-sidebar-item-price {
    margin-bottom: 0;
    line-height: 30px;
    vertical-align: middle;
    display: inline-block;
    margin-left: 5px;
    margin-top: -22px !important
}

.cart-sidebar-item-wrap .cart-sidebar-close {
    font-size: 12px
}

.cart-sidebar-bottom {
    padding: 20px;
    bottom: 0;
    position: absolute;
    width: 100%;
    border-top: 1px solid #777
}

.cart-sidebar-bottom h3 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700
}

.cart-sidebar-total-amount {
    text-align: right
}

.cart-sidebar-bottom span {
    color: #00a0a6
}

.cart-sidebar-bottom button {
    width: 100%;
    text-transform: uppercase;
    padding: 15px;
    border-radius: 1px;
    font-weight: 600;
    letter-spacing: 2px
}

.cart-sidebar-view-cart-btn a {
    color: #fff
}

.cart-sidebar-view-cart-btn a:hover {
    color: #5d6b78;
    text-decoration: none
}

.cart-sidebar-view-cart-btn {
    background-color: #5d6b78;
    color: #fff;
    margin-bottom: 10px
}

.cart-sidebar-view-cart-btn:hover {
    color: #5d6b78;
    background-color: #fff;
    border: 1px solid #5d6b78;
    transition: all .2s ease-in-out
}

.cart-sidebar-checkout-btn {
    background-color: #00a0a6;
    color: #fff
}

.cart-sidebar-checkout-btn:hover {
    color: #00a0a6;
    background-color: #fff;
    border: 1px solid #00a0a6;
    transition: all .2s ease-in-out
}

.dateAndLocationLabel {
    font-size: 12px;
    color: #959595;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

@-webkit-keyframes showFromRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(1000px)
    }
    100% {
        -webkit-transform: translateX(0)
    }
}

@keyframes showFromRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(1000px)
    }
    100% {
        -webkit-transform: translateX(0)
    }
}

@-webkit-keyframes hideRight {
    0% {
        -webkit-transform: translateX(0)
    }
    100% {
        -webkit-transform: translateX(1000px)
    }
}

@keyframes hideRight {
    0% {
        -webkit-transform: translateX(0)
    }
    100% {
        -webkit-transform: translateX(1000px)
    }
}

.quantity-increment {
    margin: 0;
    width: 70px;
    display: inline-block
}

.quantity-increment .glyphicon {
    color: #00a0a6
}

.quantity-increment .form-control {
    color: #00a0a6;
    height: 28px
}

.input-number {
    padding: 6px 4px;
    text-align: center
}

.counter-down, .counter-up {
    padding: 6px 4px;
    font-size: 10px;
    text-align: center;
    border-radius: 1px
}

.counter-down:focus {
    outline: 1px solid #00a0a6
}

.counter-up:focus {
    outline: 1px solid #00a0a6
}

@-webkit-keyframes showFromBottom {
    0% {
        opacity: 0;
        bottom: -1000px
    }
    100% {
        opacity: .95;
        bottom: 0
    }
}

@keyframes showFromBottom {
    0% {
        opacity: 0;
        bottom: -1000px
    }
    100% {
        opacity: .95;
        bottom: 0
    }
}

@-webkit-keyframes hideBottom {
    0% {
        -webkit-transform: translateY(0)
    }
    100% {
        -webkit-transform: translateY(-1000px)
    }
}

@keyframes hideBottom {
    0% {
        -webkit-transform: translateY(0)
    }
    100% {
        -webkit-transform: translateY(-1000px)
    }
}

.gdpr {
    position: fixed;
    display: table;
    width: 100%;
    background-color: #5d6b78;
    color: #fff;
    z-index: 1000000000000000000000000;
    bottom: -1000px;
    padding: 40px 200px;
    -webkit-animation-name: showFromBottom;
    -webkit-animation-duration: .9s;
    animation-name: showFromBottom;
    animation-duration: .9s;
    animation-delay: 2s;
    opacity: .95;
    animation-fill-mode: both;
    font-size: 18x
}

.gdpr p {
    margin-bottom: 0
}

.gdpr a {
    color: #96e6e9
}

.gdpr-button-wrap {
    display: table-cell;
    vertical-align: middle;
    text-align: center
}

.gdpr-button {
    background-color: #00a0a6;
    font-weight: 400;
    color: #fff;
    padding: 10px 30px;
    border-radius: 0;
    outline: none;
    text-transform: uppercase;
    font-weight: 700
}

.gdpr-button:hover {
    background-color: transparent;
    border: 1px solid #00a0a6;
    font-weight: 700;
    transition: all .2s ease-in-out
}

#media_news_header {
    color: #5c6b77
}

#media_news_header:hover {
    color: #FF7E00
}

.media-news-menu a i {
    margin-right: 10px
}

.loader {
    height: 800px;
    width: 100%;
    z-index: 9999;
    background: url(../images/loader-dots.gif) no-repeat #f3f4f5;
    background-position: 50% 10%;
    position: absolute;
    top: 0;
    left: 0
}

.most-popular-courses-slider .loader {
    background: url(../images/loader-dots.gif) no-repeat #d2d8de;
    background-position: 50% 10%;
    position: absolute
}

.home-locations .loader {
    background: url(../images/loader-dots.gif) no-repeat #f5f7fa;
    background-position: 50% 10%;
    position: absolute
}

.expert-wrap {
    width: 20%;
    margin-bottom: 55px;
    float: left;
    position: relative;
    padding-left: 15px;
    padding-right: 15px
}

.experts-related .expert-wrap {
    margin-bottom: 30px;
    padding-left: 0
}

.expert-wrap-inner:hover {
    -webkit-box-shadow: 4px 4px 17px 0 rgba(0, 0, 0, .43);
    -moz-box-shadow: 4px 4px 17px 0 rgba(0, 0, 0, .43);
    box-shadow: 4px 4px 17px 0 rgba(0, 0, 0, .43);
    transition: all .2s ease-in-out
}

.expert-category {
    clear: both;
    opacity: 0
}

.expert-category-inner {
    float: left;
    clear: left;
    padding: 16px;
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    color: #fff;
    height: 100%
}

.expert-category h3 {
    margin-top: 0;
    font-size: 35px;
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: 700
}

.expert-category p {
    font-size: 14px;
    margin-bottom: 0
}

.expert-img-wrap {
    position: relative
}

.expert-img-wrap img {
    width: 100%
}

.expert-img-wrap .gradient-box {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: .6
}

.expert-social a i {
    font-size: 20px;
    margin-right: 4px;
    text-align: left;
    color: #5d6b78
}

.expert-social a i:hover {
    color: #FF7E00
}

.expert-text {
    border: 1px solid #5d6b78;
    padding: 13px 9px 9px
}

.expert-text h4 {
    font-size: 15px;
    color: #FF7E00;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-weight: 600;
    margin-top: 10px;
    height: 30px
}

.expert-text p {
    margin-bottom: 0;
    font-size: 14px;
    color: #5d6b78;
    text-transform: capitalize;
    height: 49px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

.last-expert:after {
    content: "";
    height: 50px;
    display: block
}

.menu-right-items {
    cursor: pointer
}

.clickable {
    cursor: pointer
}

.instagram-pictures {
    font-family: sfprodisplay-regular
}

.instagram-pictures .title-box {
    display: none !important
}

#load-more-pages-btn-2 {
    height: auto;
    width: auto;
    padding: 20px 40px;
    width: 140px;
    text-transform: capitalize;
    transition-duration: .1s;
    transition-timing-function: ease-in-out;
    padding: 10px;
    left: calc(50% - 70px);
    border-radius: 1px;
    border-style: solid;
    border-width: 1px;
    border-color: #00a0a6;
    background-color: #00a0a6;
    color: #fff
}

#load-more-pages-btn-2:hover {
    border-color: #00a0a6;
    background-color: transparent;
    color: #00a0a6
}

.radiating-social .left-wrap {
    margin: 0;
    padding: 0;
    margin-bottom: 40px
}

.container-1400 {
    max-width: 1400px;
    margin: 0 auto
}

.watch-leoron-video {
    font-size: 24px;
    color: #00a0a6;
    display: block;
    font-weight: 700;
    margin-top: 41px
}

.leoron-office {
    background-image: url(../images/about-us/office2.jpg);
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
    position: relative;
    height: 592px;
    width: 100%
}

.leoron-office-radiating {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 592px
}

.who-radiating {
    position: absolute;
    right: 100px;
    width: 27px;
    bottom: 50%;
    margin-bottom: -222px;
    -webkit-animation: pulse 2.5s infinite;
    -moz-animation: pulse 2.5s infinite;
    -o-animation: pulse 2.5s infinite;
    animation: pulse 2.5s infinite
}

.who-top-quality {
    background-color: #e5eae9;
    padding: 97px 266px
}

.leoron-video-modal {
    padding-right: 0 !important;
    text-align: center;
    height: 100vh
}

.leoron-video-modal .modal-dialog {
    width: 100%;
    margin: 30px auto;
    padding: 0;
    margin: 0;
    height: 100vh
}

.leoron-video-modal .modal-header {
    height: 0
}

.leoron-video-modal .modal-body {
    height: calc(100vh - 32px);
    padding-top: 50px
}

video:focus {
    border: none;
    outline: 0
}

.leoron-video-wrap {
    position: relative;
    width: 100%
}

.leoron-video-wrap video {
    width: 70%
}

.leoron-video-wrap .video-buttons {
    height: 56px;
    width: 56px;
    top: 50%;
    left: 50%;
    margin-left: -28px;
    margin-top: -45px
}

.why-top-quality-right {
    padding-left: 50px
}

.why-mission {
    background: transparent linear-gradient(93deg, #5D6B78 0%, #34303E 100%) 0% 0% no-repeat padding-box;
    color: #fff;
    text-align: center;
    width: 95%;
    margin: 0 auto
}

.why-mission-left {
    padding: 50px 50px 0 88px
}

.why-mission span {
    font-size: 48px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 30px
}

.why-mission p {
    font-size: 25px
}

.why-mission-right {
    height: 100%;
    background-image: url(../images/about-us/engine.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left bottom;
    height: 423px
}

#why-vision {
    background: #00a0a6 !important
}

#why-vision .why-mission-left {
    padding: 0
}

#why-vision .why-mission-left img {
    margin-top: -30px;
    margin-left: 50px
}

#why-vision .why-mission-right {
    padding: 70px 120px 0 0;
    background: 0 0
}

#why-vision .watch-leoron-video {
    color: #fff;
    font-size: 24px;
    text-transform: none
}

.why-instagram {
    width: 95%;
    margin: 0 auto
}

.billing-details-wrap {
    margin-bottom: 70px
}

.billing-your-order-wrap {
    padding-left: 20px
}

.billing-details-wrap h3:first-child {
    color: #00a0a6
}

.billing-your-order-wrap h3 {
    color: #00a0a6
}

.franchise-why-video {
    padding: 70px 0;
    position: relative;
    text-align: center
}

.franchise-why-video h3 {
    font-weight: 400;
    font-size: 57px;
    color: #00a0a6
}

.franchise-why-video p {
    font-size: 18px;
    color: #5d6b78
}

.franchise-video {
    position: relative;
    width: 100%;
    min-height: 300px
}

.franchise-video-laptop {
    position: absolute;
    width: 500px;
    left: 35px
}

.franchise-video-dots {
    position: absolute;
    width: 459px;
    right: -120px;
    top: -56px;
    -webkit-animation: leftAndRight 5s infinite;
    -moz-animation: leftAndRight 5s infinite;
    -o-animation: leftAndRight 5s infinite;
    animation: leftAndRight 5s infinite
}

.franchise-video video {
    position: absolute;
    width: 377px;
    top: 30px;
    left: 97px
}

.franchise-video .video-buttons {
    height: 56px;
    width: 56px;
    top: 97px;
    left: 263px;
    background-color: rgba(0, 160, 166, .5)
}

.franchise-operating-sectors {
    text-align: center;
    background-color: #eef0f0;
    padding-top: 70px
}

.franchise-operating-sectors h2 {
    font-size: 57px;
    text-transform: uppercase;
    color: #5d6b78;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 100px;
    padding-bottom: 7px;
    font-weight: 600
}

.franchise-operating-sectors h2:after {
    content: "";
    position: absolute;
    width: 115px;
    height: 5px;
    border-radius: 20px;
    border: 1px solid #FF7E00;
    display: block;
    background-color: #FF7E00;
    margin-top: 20px;
    left: 50%;
    transform: translate(-50%)
}

.operating-sector {
    width: 20%;
    float: left;
    margin-bottom: 55px;
    cursor: pointer
}

.operating-sector img {
    height: 96px;
    transition: .2s all ease-in-out
}

.operating-sector img:hover {
    -webkit-filter: grayscale(60%);
    filter: grayscale(60%);
    transform: scale(1.05)
}

.operating-sector p {
    font-size: 15px;
    text-transform: uppercase;
    height: 36px
}

.grey-container {
    background-color: #5d6b78;
    color: #fff
}

.grey-container {
    background-color: #5d6b78;
    color: #fff;
    text-align: center;
    padding: 40px
}

.grey-container h2 {
    font-size: 57px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 40px;
    padding-bottom: 7px;
    font-weight: 600
}

.grey-container h2:after {
    content: "";
    position: absolute;
    width: 115px;
    height: 5px;
    border-radius: 20px;
    border: 1px solid #FF7E00;
    display: block;
    background-color: #FF7E00;
    margin-top: 20px;
    left: 50%;
    transform: translate(-50%)
}

.grey-container p {
    color: #d6d6d6;
    font-size: 30px
}

.clients-slider {
    padding-top: 30px;
    padding-bottom: 40px
}

#why-franchise {
    padding-top: 70px
}

#countries-franchising {
    padding-top: 70px
}

#franchise-form-wrap {
    padding-top: 90px;
    padding-bottom: 90px
}

#franchise-contact {
    padding-top: 45px;
    padding-bottom: 5px
}

#why-franchise h2 {
    margin-bottom: 90px
}

#why-franchise p {
    height: 170px;
    margin-top: 20px
}

.primary-color-text {
    color: #00a0a6
}

.why-franchise-leoron-wrap {
    width: 33.33%;
    float: left;
    padding-left: 50px;
    padding-right: 50px
}

#countries-franchising {
    background-color: #eef0f0
}

#countries-franchising h2 {
    color: #5d6b78;
    margin-bottom: 100px
}

.franchising-available-countries {
    margin-top: -20px
}

.franchising-available-countries p {
    margin-bottom: 0
}

.franchise-clients-img {
    padding-left: 10px;
    padding-right: 10px
}

#franchise-form-wrap {
    background-color: #e2e2e2
}

.franchise-form {
    padding: 25px 80px 30px;
    border: 1px solid #707070;
    border-radius: 43px;
    background-color: #eef0f0
}

.franchise-form p {
    text-transform: uppercase;
    color: #00a0a6;
    font-size: 30px;
    margin-bottom: 50px
}

.franchise-form-label {
    text-align: left !important;
    color: #5d6b78;
    font-size: 15px;
    margin-bottom: 5px;
    display: block
}

.franchise-form input {
    border: 1px solid #5d6b78;
    border-radius: 0
}

.franchise-form input:focus {
    border: 2px solid #FF7E00;
    border-radius: 0;
    transition: .2s all ease
}

.franchise-form button {
    width: 100%;
    text-align: center;
    background-color: #00a0a6;
    padding: 10px;
    text-transform: uppercase;
    border-radius: 0;
    color: #fff;
    font-size: 22px;
    margin-top: 7px;
    border: 1px solid #00a0a6
}

.franchise-form button:hover {
    background-color: transparent;
    color: #00a0a6;
    transition: .2s all ease-in-out;
    border: 1px solid #00a0a6;
    outline: none;
    border-radius: 0
}

.franchise-form button:focus {
    outline: none;
    border-radius: 0
}

.franchise-form-wrap p {
    text-transform: uppercase;
    color: #00a0a6;
    font-size: 30px
}

#franchise-contact {
    background-color: #eef0f0
}

.franchise-contact-left {
    position: relative
}

.franchise-contact-right {
    padding-bottom: 55px
}

#franchise-contact p {
    color: #00a0a6;
    font-size: 25px;
    text-transform: uppercase;
    margin-bottom: 20px
}

#franchise-contact i {
    color: #00a0a6;
    font-size: 20px
}

#franchise-contact span {
    color: #5d6b78;
    font-size: 20px;
    text-align: left;
    display: block;
    margin-top: -5px;
    margin-bottom: 5px
}

#franchise-contact a {
    color: #5d6b78;
    font-size: 20px;
    text-align: left;
    display: block;
    margin-top: -5px;
    text-decoration: none
}

#franchise-contact a:hover {
    text-decoration: none;
    color: #00a0a6
}

#franchise-contact img {
    position: absolute;
    bottom: -230px;
    left: 0
}

.watch-leoron-video {
    font-size: 24px;
    color: #00a0a6;
    display: block;
    font-weight: 500;
    margin-top: 41px
}

.leoron-office {
    background-image: url(../images/about-us/office2.jpg);
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
    position: relative;
    height: 592px;
    width: 100%
}

.leoron-office-radiating {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 592px
}

.who-radiating {
    position: absolute;
    right: 100px;
    width: 27px;
    bottom: 50%;
    margin-bottom: -222px;
    -webkit-animation: pulse 2.5s infinite;
    -moz-animation: pulse 2.5s infinite;
    -o-animation: pulse 2.5s infinite;
    animation: pulse 2.5s infinite
}

.who-top-quality {
    background-color: #e5eae9;
    padding: 97px 266px
}

.leoron-video-modal {
    padding-right: 0 !important;
    text-align: center;
    height: 100vh
}

.leoron-video-modal .modal-dialog {
    width: 100%;
    margin: 30px auto;
    padding: 0;
    margin: 0;
    height: 100vh
}

.leoron-video-modal .modal-header {
    height: 0
}

.leoron-video-modal .modal-body {
    height: calc(100vh - 32px);
    padding-top: 50px
}

video:focus {
    border: none;
    outline: 0
}

.leoron-video-wrap {
    position: relative;
    width: 100%
}

.leoron-video-wrap video {
    width: 70%
}

.leoron-video-wrap .video-buttons {
    height: 56px;
    width: 56px;
    top: 50%;
    left: 50%;
    margin-left: -28px;
    margin-top: -45px
}

.why-top-quality-right {
    padding-left: 50px
}

.why-mission {
    background: transparent linear-gradient(93deg, #5D6B78 0%, #34303E 100%) 0% 0% no-repeat padding-box;
    color: #fff;
    text-align: center;
    width: 95%;
    margin: 0 auto
}

.why-mission-left {
    padding: 50px 50px 0 88px
}

.why-mission span {
    font-size: 48px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 30px
}

.why-mission p {
    font-size: 25px
}

.why-mission-right {
    height: 100%;
    background-image: url(../images/about-us/engine.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left bottom;
    height: 423px
}

#why-vision {
    background: #00a0a6 !important
}

#why-vision .why-mission-left {
    padding: 0
}

#why-vision .why-mission-left img {
    margin-top: -30px;
    margin-left: 50px
}

#why-vision .why-mission-right {
    padding: 70px 120px 0 0;
    background: 0 0
}

#why-vision .watch-leoron-video {
    color: #fff;
    font-size: 24px;
    text-transform: none
}

.expert-body .expert-img-wrap {
    margin-top: 25px
}

.expert-bio h3 {
    border: none;
    margin-bottom: 10px;
    font-size: 40px;
    line-height: 31px;
    color: #2d2a2a;
    font-weight: 600;
    width: 100%;
    padding-top: 5px
}

.expert-bio h4 {
    color: #FF7E00;
    font-weight: 400;
    margin-bottom: 20px
}

.experts-related {
    margin-bottom: 70px
}

.experts-related h3 {
    text-align: left;
    margin-bottom: 0;
    font-weight: 700
}

.expert-body {
    margin-bottom: 50px
}

.expert-social-share {
    margin-bottom: 80px;
    text-align: left;
    background-color: #eaeaea;
    padding: 10px 0
}

.post-left-panel {
    padding-right: 40px
}

.expert-radiating {
    display: inline-block;
    -webkit-animation: pulse 2.5s infinite;
    -moz-animation: pulse 2.5s infinite;
    -o-animation: pulse 2.5s infinite;
    animation: pulse 2.5s infinite
}

.expert-radiating img {
    width: 100%;
    margin-top: 7px;
    margin-left: 0
}

.wishlist-wrapper .courses-list-result {
    margin-top: 0;
    margin-bottom: 50px
}

.wishlist-wrapper .course-section-10 {
    background-color: transparent;
    overflow: visible
}

.wishlist-wrapper .course-section-10 .left-wrap {
    margin: 100px 0 0;
    padding: 0;
    position: relative;
    z-index: 10
}

.wishlist-wrapper .course-section-10 .left-wrap .header-text {
    margin-bottom: 30px
}

.wishlist-wrapper .top-rated-courses-category:first-child {
    padding-top: 0
}

#elearn-header h1 {
    margin-bottom: 30px
}

#elearn-header h2 {
    margin-bottom: 40px;
    text-transform: inherit
}

.elearn-button {
    border-radius: 4px;
    background-color: #514fa0;
    border: 1px solid #514fa0;
    color: #fff;
    font-size: 20px;
    transition: all .2s ease;
    padding: 3px 10px
}

.elearn-button .underline::after {
    background: #514fa0
}

.elearn-button img {
    margin-left: 10px
}

.elearn-button span {
    font-weight: 400
}

.elearn-button:hover {
    background-color: transparent;
    border: 1px solid #514fa0;
    color: #514fa0
}

#elearn-header {
    background-color: #fff;
    margin-bottom: 50px
}

.elearn-banner {
    width: 100%
}

.elearn-banner img {
    width: 100%
}

.elearn-plans {
    background-color: #514fa0;
    color: #e1e1e1;
    text-align: center;
    padding: 45px 0
}

.elearn-plans-choose {
    color: #c4c4c4;
    font-size: 15px;
    letter-spacing: 3px
}

.elearn-plans .col-lg-2 {
    min-width: 20%;
    padding-left: 10px;
    padding-right: 10px
}

.elearn-plans-headline {
    font-size: 40px;
    margin-bottom: 35px;
    font-weight: 600;
    line-height: 1.3
}

.elearn-plan {
    border: 1px solid #c1c1c1;
    border-radius: 30px;
    padding: 15px 15px 30px;
    box-shadow: inset 0 10px 8px rgba(0, 0, 0, .15), 0 10px 8px rgba(0, 0, 0, .2);
    -moz-box-shadow: inset 0 10px 8px rgba(0, 0, 0, .15), 0 10px 8px rgba(0, 0, 0, .2);
    -webkit-box-shadow: inset 0 10px 8px rgba(0, 0, 0, .15), 0 10px 8px rgba(0, 0, 0, .2);
    transition: all .25s ease
}

.elearn-plan:hover {
    box-shadow: inset 0 10px 8px rgba(0, 0, 0, .15), 10px 10px 10px rgba(0, 0, 0, .2);
    -moz-box-shadow: inset 0 10px 8px rgba(0, 0, 0, .15), 10px 10px 10px rgba(0, 0, 0, .2);
    -webkit-box-shadow: inset 0 10px 8px rgba(0, 0, 0, .15), 10px 10px 10px rgba(0, 0, 0, .2)
}

#elearn-plan-highlight {
    background-color: #ff492d;
    box-shadow: inset 0 0 0 transparent, 0 10px 8px rgba(0, 0, 0, .2);
    -moz-box-shadow: inset 0 0 0 transparent, 0 10px 8px rgba(0, 0, 0, .2);
    -webkit-box-shadow: inset 0 0 0 transparent, 0 10px 8px rgba(0, 0, 0, .2)
}

#elearn-plan-highlight:hover {
    box-shadow: 10px 10px 10px rgba(0, 0, 0, .2);
    -moz-box-shadow: 10px 10px 10px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, .2)
}

#elearn-plan-highlight .elearn-plan-button {
    background-color: #fff;
    border: 1px solid #fff;
    color: #514fa0
}

#elearn-plan-highlight .elearn-plan-features {
    color: #e1e1e1
}

#elearn-plan-highlight button:hover {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff
}

#elearn-plan-highlight .elearn-plan-features-wrap {
    color: #ebebeb
}

.elearn-plan-number-courses {
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 12px
}

.elearn-plan-title {
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 25px;
    font-size: 23px;
    color: #fff
}

.elearn-plan-features-wrap {
    font-weight: 500
}

.elearn-plan-features {
    display: block;
    color: #c6c6c6;
    font-weight: 400;
    position: relative
}

.elearn-plan-features-wrap {
    color: #e1e1e1;
    height: 180px
}

.elearn-plan-features-wrap:after {
    content: '';
    position: absolute;
    width: 35px;
    height: 3px;
    background-color: #ff492d;
    border: 1px solid #ff492d;
    bottom: 175px;
    left: 50%;
    transform: translate(-12px)
}

#elearn-plan-highlight .elearn-plan-features-wrap:after {
    background-color: #fff;
    border: 1px solid #fff
}

.elearn-plan-starting {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0
}

.elearn-plan-price {
    color: #fff;
    font-size: 50px;
    margin-bottom: 0
}

.elearn-plan-button {
    background-color: #ff492d;
    border-radius: 12px;
    text-transform: uppercase;
    padding: 10px 30px;
    border: 1px solid #ff492d;
    transition: all .2s ease;
    color: #fff;
    font-weight: 500;
    font-size: 15px
}

.elearn-plan-button:hover {
    background-color: transparent;
    border: 1px solid #ff492d;
    color: #ff492d
}

.container-1400-clear {
    max-width: 1400px;
    margin: 0 auto
}

.container.custom {
    max-width: 1400px;
    margin: 0 auto
}

.elearn-accredited-by {
    background-color: #7a80a1;
    color: #fff;
    text-align: center;
    padding: 13px 0 0 13px
}

.elearn-accredited-by p {
    line-height: 1.8;
    font-size: 18px
}

.elearn-asterix {
    background-color: #6c6c81;
    color: #fff;
    text-align: center;
    padding: 9px 0
}

.elearn-asterix p {
    font-size: 13px;
    margin-bottom: 0
}

.elearn-trial img {
    width: 100%
}

.elearn-trial-content {
    padding: 87px 60px 0 87px;
    background-image: url(../images/e-learning/back-empower.png);
    background-size: 442px 459px;
    background-repeat: repeat;
    background-position: center;
    width: 100%;
    height: 459px
}

.elearn-trial-headline {
    color: #514fa0;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    height: 120px;
    position: relative;
    margin-bottom: 30px
}

.elearn-trial-headline:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 5px;
    background-color: #ff492d;
    border: 2px solid #ff492d;
    border-radius: 5px;
    bottom: 0;
    left: 0
}

.elearn-trial-text {
    color: #5d5d5d;
    font-size: 17px;
    margin-bottom: 30px
}

.elearn-usa {
    background-color: #514fa0;
    padding: 76px 0 44px
}

.elearn-usa .elearn-trial-content {
    padding: 0;
    height: auto
}

.elearn-usa .elearn-trial-headline {
    color: #fff;
    margin-bottom: 15px
}

.elearn-usa .elearn-trial-text {
    color: #fff;
    margin-bottom: 0
}

.elearn-libraries {
    text-align: center;
    padding: 30px 0 0;
    position: relative
}

.elearn-libraries-headline {
    font-size: 40px;
    color: #7b7b7b;
    font-weight: 700;
    margin-bottom: 45px;
    line-height: 1.2
}

.elearn-libraries-single {
    margin-bottom: 45px;
    height: 220px;
    padding-left: 14px;
    padding-right: 14px
}

.elearn-libraries-single img {
    margin-bottom: 20px
}

.elearn-library-image {
    height: 80px;
    display: inline-flex
}

.library-headline {
    font-size: 23px;
    font-weight: 700;
    color: #7b7b7b;
    text-transform: uppercase
}

.library-headline span {
    display: block
}

.library-text {
    font-size: 14px;
    font-weight: 700;
    color: #7b7b7b;
    height: 70px;
    margin-bottom: 0
}

.elearn-library-extra {
    background-color: #514fa0;
    padding: 10px 0
}

.elearn-library-extra p {
    font-size: 25px;
    color: #fff;
    font-weight: 400;
    text-align: left;
    margin-bottom: 0
}

.elearn-standing-man {
    position: absolute;
    top: -4px;
    right: 0
}

.elearn-pros {
    background-color: #ff492d;
    text-align: center;
    padding: 90px 0 60px;
    color: #fff
}

.elearn-pros .container-1400-clear {
    padding-left: 55px;
    padding-right: 55px
}

.elearn-pros .col-lg-2 {
    min-width: 20%
}

.elearn-pro {
    padding-left: 10px;
    padding-right: 10px
}

.elearn-pro i {
    margin-left: 7px;
    color: #c4c4c4;
    font-size: 12px;
    -webkit-animation: leftAndRight 2s infinite;
    -moz-animation: leftAndRight 2s infinite;
    -o-animation: leftAndRight 2s infinite;
    animation: leftAndRight 2s infinite
}

.elearn-pro-headline {
    font-size: 23px;
    font-weight: 400;
    margin-bottom: 17px;
    margin-top: 30px
}

.elearn-pro-content {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 25px;
    height: 52px;
    overflow: hidden
}

.elearn-pro button {
    border: none;
    background-color: transparent
}

.elearn-pro-image {
    height: 90px;
    vertical-align: bottom;
    display: inline-flex
}

.elearn-pro-image img {
    vertical-align: bottom
}

.digital-mockup {
    height: 700px
}

.digital-mockup.lazyloaded {
    height: 700px;
    background-image: url(../images/e-learning/digital-mockup.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%
}

#elearn-ta3leem {
    background-color: transparent;
    background-image: url(../images/e-learning/back-ta3leem.png);
    background-size: 289px 300px;
    background-repeat: repeat;
    background-position: center;
    width: 100%;
    border-top: 2px solid #ff492d;
    border-bottom: 2px solid #ff492d
}

.elearn-libraries {
    background-color: transparent;
    background-image: url(../images/e-learning/back-distinct.png);
    background-size: 456px 474px;
    background-repeat: repeat;
    background-position: center;
    width: 100%
}

.elearn-trial-back {
    height: 459px
}

.elearn-trial-back.lazyloaded {
    background-image: url(../images/e-learning/trial.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 459px
}

#elearn-4-distinct {
    padding-bottom: 20px
}

.elearn-banner {
    height: 489px
}

.elearn-banner.lazyloaded {
    background-image: url(../images/e-learning/mockup.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 489px;
    background-position: top center
}

.elearn-plan-features-dot {
    font-size: 30px;
    line-height: 15px;
    position: absolute;
    top: 2px
}

.elearn-plan-features-dot-text {
    padding-left: 10px
}

.togglePassword {
    position: absolute;
    right: 30px;
    border-radius: 0
}

.cart-wrapper .productPrice {
    display: block !important;
    margin-top: 30px !important
}

.product-original-price {
    font-size: 11px;
    text-decoration: line-through;
    text-decoration-color: #333;
    margin-top: 5px;
    margin-right: 7px;
    padding-top: 1px
}

.product-discount {
    font-size: 11px;
    background-color: #00a0a6;
    color: #fff;
    padding: 1px 3px 1px 1px
}

.select-currency-wrap {
    width: 100%;
    text-align: right
}

.select-currency-wrap p {
    font-weight: 700;
    margin-bottom: 7px
}

#selectCurrency {
    max-width: 160px;
    display: inline
}

.cart-checkbox {
    display: block;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.cart-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

.cart-checkbox .checkmark {
    position: absolute;
    top: -5px;
    height: 15px;
    width: 15px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #00a0a6;
    margin-top: 2px
}

.cart-checkbox:hover input ~ .checkmark {
    background-color: #ccc
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none
}

.cart-checkbox input:checked ~ .checkmark:after {
    display: block
}

.cart-checkbox .checkmark:after {
    left: 4px;
    top: 0;
    width: 5px;
    height: 10px;
    border: solid #0c0c0c;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

#cart-tr-price-row {
    padding-right: 0
}

.sidebar-time-wrap {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: 10px
}

.sidebar-time-wrap img {
    height: 25px;
    vertical-align: top
}

.sidebar-time-content {
    display: inline-block;
    margin-left: 3px
}

.sidebar-time-content span {
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 4px;
    padding: 1px
}

.cart-sidebar-price-details p, .cart-sidebar-price-details span {
    font-size: 9px
}

.cart-sidebar-item-price {
    font-size: 12px;
    font-weight: 700
}

.cart-sidebar-price-details .quantity-increment .form-control {
    color: #00a0a6;
    height: 28px;
    font-size: 10px
}

.sidebar-time-content p, .sidebar-time-content span {
    font-size: 8px;
    color: #00a0a6;
    margin-bottom: 0;
    margin-top: 1px
}

.cart-sidebar-price-details {
    margin-top: 5px
}

#cart-sidebar-item-final-price {
    line-height: .3;
    display: block;
    margin-bottom: 0;
    margin-left: 0
}

#cart-sidebar-item-total-price {
    margin-top: -17px !important
}

#cart-sidebar-item-total-price span {
    font-size: 11px;
    line-height: 25px;
    vertical-align: middle
}

#cart-sidebar-item-final-price .productPrice {
    font-size: 11px
}

.billing-your-order-wrap td a {
    color: #000;
    font-weight: 700
}

.billing-your-order-wrap .table-bordered {
    border: 2px solid #ddd
}

.billing-your-order-wrap .table-bordered > tbody > tr > td, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > td, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > thead > tr > th {
    border: 2px solid #ddd
}

.billing-your-order-wrap .cart-sidebar-close {
    right: -35px;
    top: -21px
}

.billing-your-order-wrap td a:hover {
    text-decoration: none
}

.billing-your-order-wrap #selectCurrency {
    max-width: 80px;
    margin-left: 10px
}

.home-banner-wrap {
    padding-left: 50px;
    padding-right: 50px;
    background-color: #f3f4f5
}

.home-banner {
    background-size: cover;
    background-position: center;
    height: 800px;
    position: relative;
    overflow: hidden
}

.home-banner-text {
    position: absolute;
    top: 100px;
    left: 83px;
    color: #fff;
    width: 378px;
    z-index: 2
}

.home-banner-text h1 {
    font-size: 80px;
    margin-bottom: 25px
}

.home-banner-text span {
    font-family: sfprodisplay-semibold;
    font-size: 18px;
    letter-spacing: 12px;
    display: block;
    text-transform: uppercase;
    padding-left: 3px;
    margin-bottom: 0
}

.home-banner-text p {
    font-size: 16px;
    letter-spacing: .48px
}

.home-banner-text button {
    border: 1px solid #00a0a6;
    background-color: #00a0a6;
    color: #fff;
    border-radius: 0;
    margin-top: 20px;
    letter-spacing: 3.2px;
    font-size: 16px;
    padding: 12px 19px;
    text-transform: uppercase;
    transition: all ease-in-out .25s
}

.home-banner-text button a {
    color: #fff
}

.home-banner-text button a:hover {
    color: #fff;
    text-decoration: none
}

.home-banner-text button:hover {
    border: 1px solid #00a0a6;
    background-color: #5d6b78;
    color: #fff
}

.live-virtual-heading {
    border-top: 2px solid #FF7E00;
    border-bottom: 2px solid #FF7E00;
    padding: 8px 0;
    margin-bottom: 20px;
    position: relative;
    cursor: pointer
}

.live-virtual-heading img {
    margin-top: -44px;
    transition: all .5s ease;
    -webkit-animation: pulseharder 2.5s infinite;
    -moz-animation: pulseharder 2.5s infinite;
    -o-animation: pulseharder 2.5s infinite;
    animation: pulseharder 2.5s infinite
}

.live-virtual-heading:hover #live-virtual-play {
    transform: scale(1.2);
    -webkit-transform: scale(1.2)
}

#live-virtual-live {
    font-size: 80px;
    font-family: titillium web;
    font-weight: 600;
    letter-spacing: 0;
    display: inline-block;
    line-height: 1;
    margin-left: -7px;
    margin-right: 2px
}

.virtual-training-block {
    display: inline-block;
    position: absolute;
    top: 26px;
    right: -6px
}

.virtual-training-block span {
    display: block;
    font-family: sfprodisplay-regular;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 9px
}

.virtual-training-block span:first-child {
    letter-spacing: 9.66px;
    font-size: 21px;
    line-height: 1;
    margin-bottom: 7px
}

.home-banner-social {
    position: absolute;
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;
    z-index: 1;
    left: 83px;
    bottom: 30px
}

.home-banner-social p {
    display: inline-block;
    margin-right: 10px
}

.home-banner-social img {
    margin-right: 5px;
    transition: all ease-in-out .2s;
    z-index: 1000;
    margin-top: -3px;
    transition: .25s ease all
}

.home-banner-social img:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2)
}

.home-banner-wrap .footer-endline-1 {
    background-color: #f3f4f5;
    padding: 25px 0 25px 70px;
    margin: 0
}

.home-banner-wrap .footer-endline-1 .col-sm-7 {
    width: 53%
}

.home-banner-wrap .footer-endline-1 .col-sm-5 {
    width: 47%
}

.home-banner-wrap .footer-endline-links-img img {
    max-width: 100%;
    height: 30px
}

.under-banner-home .gradient-box {
    position: relative;
    width: 100%;
    height: 4px;
    background: 0 0;
    background-color: #FF7E00
}

.form-control option {
    font-family: sfprodisplay-regular;
    font-size: 13px
}

.post-data-group-data a {
    color: #7a7a7a
}

.post-data-group-data a:hover {
    text-decoration: none;
    color: #00a0a6
}

.careers-steps {
    background-color: #ededed;
    padding: 70px 0;
    position: relative;
    border-bottom: 1px solid #8f8a87
}

.careers-steps .modal-content button img {
    width: 15px;
    position: absolute;
    right: 10px;
    top: 10px;
    transition: all ease .2s
}

.careers-steps .modal-content button img:hover {
    width: 17px;
    right: 9px
}

.careers-steps .modal-dialog {
    width: 60%
}

.careers-steps .modal-header h4 {
    margin-bottom: 0;
    font-size: 50px;
    text-align: left;
    margin-left: 40px
}

.careers-steps .modal-content {
    min-height: 450px
}

.careers-steps .modal-content button {
    margin-top: 0;
    border: none
}

.careers-steps .modal-body {
    padding: 0 110px 0 55px;
    text-align: justify
}

.careers-steps .modal-body p {
    line-height: 1.6
}

.careers-arrow-down {
    position: absolute;
    width: 180px;
    top: -1px;
    left: 50%;
    margin-left: -90px
}

.careers-steps h3 {
    color: #34303e;
    font-size: 40px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 100px
}

.careers-steps h4 {
    color: #34303e;
    font-size: 40px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 70px
}

.careers-step-wrap {
    padding-right: 24px
}

.careers-step-img-wrap {
    position: relative
}

.careers-step-wrap img {
    margin-bottom: 10px
}

.careers-step-heading {
    text-transform: uppercase;
    font-size: 30px;
    letter-spacing: -.2px
}

.careers-step-heading span {
    font-size: 60px;
    color: #00a0a6
}

.careers-step-text {
    font-size: 17px;
    line-height: 1.6;
    height: 165px;
    overflow: hidden
}

.careers-step-wrap button {
    color: #474f59;
    border-bottom: 2px solid #8f8a87;
    font-size: 15px;
    margin-top: 12px
}

.careers-step-wrap button:hover {
    color: #00a0a6
}

.careers-step-wrap button:focus {
    border-bottom: 2px solid #8f8a87
}

.careers-step-wrap button i {
    color: #00a0a6
}

.careers-submit {
    background-color: #ededed;
    padding: 70px 0;
    border-bottom: 1px solid #8f8a87
}

.careers-submit .col-sm-5 {
    width: 47.5%
}

.careers-submit .col-sm-7 {
    width: 52.5%
}

.careers-submit-form {
    padding-right: 20px
}

.careers-submit-heading {
    font-size: 42px;
    color: #4e5d6a;
    line-height: 1.2;
    letter-spacing: 2.1px;
    margin-bottom: 50px
}

.careers-submit-heading span {
    font-size: 30px;
    color: #00a0a6;
    display: block;
    letter-spacing: 1px
}

.careers-submit-image-outer {
    position: relative
}

#careers-submit-grid1 {
    position: absolute;
    bottom: -47px;
    left: -20px;
    opacity: .7;
    -webkit-animation: moveLeftRight 3s infinite;
    animation: moveLeftRight 3s infinite;
    z-index: 10
}

#careers-submit-grid2 {
    position: absolute;
    top: 39px;
    right: -72px;
    opacity: .7;
    -webkit-animation: moveLeftRight 4s infinite;
    animation: moveLeftRight 4s infinite;
    z-index: 10
}

.careers-submit-image-outer {
    height: 511px;
    overflow: hidden
}

.careers-submit-image {
    background-image: url(../images/careers/careers-submit.png);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    transition: all ease .3s
}

.careers-submit-image:hover {
    transform: scale(1.3) rotate(-3deg);
    -webkit-transform: scale(1.3) rotate(-3deg);
    -ms-transform: scale(1.3) rotate(-3deg)
}

.careers-submit .form-group {
    position: relative;
    margin-bottom: 16px;
    transition: all ease-in-out .2s
}

.careers-submit .form-group img {
    position: absolute;
    top: 13px;
    left: 21px
}

.careers-submit .form-group input {
    padding: 21px 13px 21px 45px;
    font-size: 14px
}

.careers-submit .form-group input:focus {
    border: 2px solid #00a0a6
}

.careers-submit .checkbox {
    margin-top: 16px;
    font-size: 12px
}

.careers-submit button {
    width: 100%;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    padding: 10px 20px;
    transition: all ease-in-out .2s
}

#careers-choose-file {
    width: 100%;
    position: relative
}

#careers-choose-file::-webkit-file-upload-button {
    visibility: hidden;
    display: none;
    position: absolute;
    z-index: 100000
}

#careers-choose-file::before {
    content: 'Choose file';
    display: inline-block;
    background: #5d6b78;
    border: 1px solid #999;
    border-radius: 8px;
    padding: 10px 20px;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    width: 100%
}

#careers-choose-file:hover::before {
    background-color: transparent;
    color: #5d6b78
}

#careers-choose-file:active::before {
    background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9)
}

.inputfile {
    width: .1px;
    height: .1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1
}

.inputfile + label {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background-color: #5d6b78;
    display: inline-block;
    width: 100%;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #999;
    transition: all ease .2s
}

.inputfile + label span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: block
}

.inputfile + label i {
    margin-right: 7px
}

.inputfile + label img {
    margin-right: 7px
}

.inputfile + label p {
    display: inline;
    margin-left: 9px;
    color: #b5c0cb
}

.inputfile:focus + label, .inputfile + label:hover {
    background-color: transparent;
    color: #5d6b78;
    outline: 0
}

.inputfile:focus + label, .inputfile + label:focus {
    outline: 0
}

.inputfile + label {
    cursor: pointer
}

.inputfile:focus + label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px
}

.inputfile + label * {
    pointer-events: none
}

#careers-submit-btn {
    background-color: #00a0a6;
    border: 1px solid #00a0a6;
    text-transform: uppercase;
    letter-spacing: 1.75px
}

#careers-submit-btn:hover {
    background-color: transparent;
    color: #00a0a6
}

.careers-submit .checkmark {
    margin-top: 5px
}

.careers-submit .checkbox label {
    padding-left: 0
}

#read-privacy-policy {
    padding-left: 23px;
    font-size: 12px
}

#careers-header {
    background-image: url(../images/careers/careers-banner.jpg);
    height: 596px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 10px
}

.careers-header-color {
    height: 596px;
    width: 100%;
    opacity: .47;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #34303e
}

#careers-header #in-house-breadcrumb {
    margin-bottom: 15px
}

#careers-header #in-house-breadcrumb a {
    color: #fff;
    font-weight: 400
}

#careers-header #in-house-breadcrumb span {
    color: #fff
}

#careers-header h1 {
    color: #fff;
    font-weight: 400;
    text-transform: initial;
    margin-bottom: 170px;
    font-size: 45px;
    line-height: 1.5
}

#careers-header h2 {
    color: #fff;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 70px
}

#careers-header .watch-leoron-video {
    color: #fff
}

#careers-header .watch-leoron-video i {
    margin-left: 6px
}

.careers-posts {
    background-color: #ededed;
    padding: 70px 0;
    border-bottom: 1px solid #8f8a87
}

.careers-pros {
    background-color: #ededed;
    padding: 100px 0 45px;
    border-bottom: 1px solid #8f8a87
}

.career-pro-wrap {
    position: relative;
    margin: 0 auto;
    width: 200px
}

.career-pro-img-wrap {
    height: 105px
}

.career-pro-circle {
    position: absolute;
    height: 94px;
    width: 94px;
    background: #00a0a6;
    border-radius: 100%;
    opacity: .13
}

.careers-pro-heading {
    font-size: 45px;
    margin-bottom: 3px;
    margin-top: 20px;
    color: #000
}

.careers-pro-subheading {
    font-size: 30px;
    color: #000;
    line-height: 1.1
}

.careers-heroes {
    background-color: #ededed;
    padding: 50px 0 0
}

.careers-heroes h2 {
    font-size: 57px;
    color: #4e5d6a;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 38px;
    padding-bottom: 7px;
    font-weight: 600;
    text-align: center
}

.careers-heroes h2:after {
    content: "";
    position: absolute;
    width: 75px;
    height: 5px;
    border: 1px solid #FF7E00;
    display: block;
    background-color: #FF7E00;
    margin-top: 10px;
    left: 50%;
    transform: translate(-50%)
}

.careers-heroes .slick-slide {
    opacity: 1
}

.careers-heroes .slick-list.draggable {
    padding: 0
}

.careers-heroes button.slick-prev.slick-arrow {
    width: 44px;
    height: 61px;
    display: block;
    z-index: 10;
    left: 25px;
    background: #00a0a6;
    border-radius: 8px;
    opacity: .7;
    transition: all ease .2s
}

.careers-heroes button.slick-prev.slick-arrow:hover {
    background: #00a0a6;
    border-radius: 8px;
    opacity: 1
}

.careers-heroes .slick-prev:before {
    content: "\f053";
    font-family: "font awesome 5 free";
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    opacity: 1.5
}

.careers-heroes button.slick-next.slick-arrow {
    width: 44px;
    height: 61px;
    display: block;
    z-index: 10;
    right: 25px;
    background: #00a0a6;
    border-radius: 8px;
    opacity: .7;
    transition: all ease .2s
}

.careers-heroes button.slick-next.slick-arrow:hover {
    background: #00a0a6;
    border-radius: 8px;
    opacity: 1
}

.careers-heroes .slick-next:before {
    content: "\f054";
    font-family: "font awesome 5 free";
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    opacity: 1.5
}

.careers-hero-text {
    background-color: #4e5d6a;
    height: 450px;
    padding: 35px 17px;
    color: #c8c8c8
}

.careers-hero-text h3 {
    text-transform: uppercase;
    color: #fff;
    margin-top: 0;
    font-size: 30px;
    font-family: sfprodisplay-semibold
}

.careers-hero-text h4 {
    margin-bottom: 35px;
    font-size: 15px;
    font-family: sfprodisplay-regular
}

.careers-hero-text h4:after {
    content: "";
    position: absolute;
    width: 33px;
    height: 3px;
    border: 1px solid #FF7E00;
    display: block;
    background-color: #FF7E00;
    margin-top: 10px;
    left: 17px
}

.careers-hero-text p {
    line-height: 1.35;
    font-size: 16px
}

.careers-hero-image {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    height: 450px
}

#careers-julija {
    background-image: url(../images/careers/julija.jpg)
}

#careers-mariana {
    background-image: url(../images/careers/mariana.jpg)
}

#careers-yeta {
    background-image: url(../images/careers/yeta.png)
}

#careers-george {
    background-image: url(../images/careers/george.png)
}

.careers-why {
    background-color: #ededed;
    padding: 50px 0;
    border-bottom: 1px solid #8f8a87
}

.careers-why h2 {
    font-size: 57px;
    color: #4e5d6a;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 38px;
    padding-bottom: 7px;
    font-weight: 600;
    text-align: center
}

.careers-why h2:after {
    content: "";
    position: absolute;
    width: 75px;
    height: 5px;
    border: 1px solid #FF7E00;
    display: block;
    background-color: #FF7E00;
    margin-top: 10px;
    left: 50%;
    transform: translate(-50%)
}

.careers-why p {
    font-size: 25px;
    color: #34303e;
    text-align: center
}

.careers-features {
    background-color: #ededed;
    padding: 90px 0 70px;
    position: relative;
    color: #34303e;
    font-weight: 700
}

.careers-feature-wrap {
    padding-right: 17px
}

.careers-feature-img-wrap {
    margin-bottom: 30px
}

.careers-features h4 {
    font-size: 25px;
    margin-bottom: 22px;
    font-family: sfprodisplay-semibold
}

.careers-features p {
    font-size: 17px;
    line-height: 1.6;
    height: 180px;
    font-family: sfprodisplay-semibold
}

.careers-features .career-pro-circle {
    height: 107px;
    width: 107px
}

.careers-posts .post-list-box .img-wrap {
    max-height: none !important;
    min-height: 250px
}

.careers-posts .post-list-box .img-wrap img {
    object-fit: cover;
    min-height: 250px
}

.careers-posts .post-list-content .intro p {
    line-height: 1.6;
    padding: 0 30px;
    height: 45px;
    -webkit-line-clamp: 2
}

.careers-posts .post-list-wrapper {
    padding: 0
}

.careers-posts .slick-dotted.slick-slider {
    margin-bottom: 0
}

.careers-posts .slick-initialized .slick-slide {
    margin: 0 12px
}

.careers-posts .post-list-box {
    border: 1px solid #ccc
}

.careers-posts .post-list-content {
    padding-bottom: 25px;
    padding-left: 15px;
    padding-right: 15px;
    background: #f8f8f8
}

#careers-posts-header {
    font-size: 57px;
    color: #4e5d6a;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 38px;
    padding-bottom: 7px;
    font-weight: 600;
    text-align: center
}

#careers-posts-header:after {
    content: "";
    position: absolute;
    width: 75px;
    height: 5px;
    border: 1px solid #FF7E00;
    display: block;
    background-color: #FF7E00;
    margin-top: 10px;
    left: 50%;
    transform: translate(-50%)
}

.wishlist-wrapper {
    padding: 60px 0 30px
}

.franchise-available-wrap {
    display: inline-block;
    margin-right: 60px;
    margin-left: 60px;
    margin-top: 10px
}

.franchise-available-circle {
    width: 15px;
    height: 15px;
    display: inline-block;
    background: #5d6b78 0% 0% no-repeat;
    border-radius: 100%
}

.franchise-available-wrap span {
    color: #5d6b78;
    font-size: 15px;
    margin-left: 10px;
    line-height: 16px;
    vertical-align: top
}

.post-related .post-list-box .img-wrap {
    position: relative;
    overflow: hidden;
    height: 300px
}

.post-related .post-list-box .img-wrap img {
    height: 300px;
    object-fit: cover
}

.post-related .post-list-box .transparent-backround {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background-color: transparent;
    transition: all .7s ease;
    -webkit-transition: all .7s ease-in-out
}

.post-related .post-list-wrapper {
    padding-right: 40px
}

.post-related h3 {
    text-transform: uppercase;
    font-size: 22px;
    position: relative;
    font-weight: 600
}

.post-related h3:after {
    content: '';
    position: absolute;
    width: 52px;
    height: 3px;
    background-color: #FF7E00;
    border: 2px solid #FF7E00;
    top: 36px;
    left: 27px;
    transform: translate(-50%)
}

.register-wrapper .togglePassword {
    position: absolute;
    right: 16px;
    border-radius: 0
}

.account-img {
    position: relative
}

.account-img .triangle {
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 14px solid #ebebeb;
    position: absolute;
    top: 38px;
    left: 39px;
    z-index: 10;
    display: none
}

.account-img:hover .triangle {
    display: block
}

.orders-wrap {
    text-align: center
}

.orders-th {
    text-transform: uppercase;
    font-weight: 600
}

.orders-tr {
    padding: 10px 0;
    border-top: 1px solid #ccc
}

.orders-tr a {
    color: #333;
    transition: all ease .2s
}

.orders-tr a:hover {
    color: #00a0a6;
    text-decoration: none
}

.orders-tr img {
    min-height: 100px;
    object-fit: cover
}

.orders-tr button {
    background-color: #f05a3f;
    color: #fff;
    position: relative;
    border-radius: 0;
    -webkit-border-radius: 0;
    padding: 10px 15px;
    transition: all .25s ease-in-out;
    font-size: 14px;
    font-family: sfprodisplay-semibold;
    border: 1px solid #f05a3f;
    outline: 0
}

.orders-tr button:hover {
    background-color: transparent;
    color: #f05a3f;
    border: 1px solid #f05a3f
}

.orders-tr button i {
    margin-right: 7px
}

.course-section-recommended .course-slider-wrapper .box-content {
    border: 1px solid #dbd9d9
}

.heading-after {
    margin-bottom: 20px;
    position: relative
}

.heading-after:after {
    content: "";
    position: absolute;
    width: 75px;
    height: 3px;
    border: 1px solid #00a0a6;
    display: block;
    background-color: #00a0a6;
    margin-top: 10px;
    left: 0
}

.plans-banner {
    background-color: #514fa0;
    color: #fff;
    padding-top: 10px;
    position: relative;
    height: 588px;
    overflow: hidden
}

.plans-banner-arrow {
    position: absolute;
    left: 50%;
    margin-left: -90px;
    bottom: -24px;
    z-index: 1;
    font-size: 20px
}

.plans-banner-arrow i {
    position: absolute;
    left: 84px;
    color: #fff;
    top: 7px;
    -webkit-animation: moveUpDown 2s infinite;
    -moz-animation: moveUpDown 2s infinite;
    -o-animation: moveUpDown 2s infinite;
    animation: moveUpDown 2s infinite
}

.plans-banner-man {
    position: absolute;
    top: 53px;
    right: 0;
    z-index: 2
}

.plans-banner-grid {
    position: absolute;
    top: 134px;
    right: 182px;
    z-index: 1;
    -webkit-animation: moveLeftRight 4s infinite;
    animation: moveLeftRight 4s infinite
}

.plans-banner #in-house-breadcrumb a {
    color: #fff
}

.plans-banner #in-house-breadcrumb span {
    color: #fff
}

.plans-banner #in-house-breadcrumb li {
    color: #fff
}

.plans-banner h1 {
    font-size: 40px;
    font-family: sfprodisplay-semibold;
    margin-top: 50px;
    margin-bottom: 50px
}

.plans-banner h1:after {
    width: 52px;
    height: 5px;
    border: 1px solid #ffab2d;
    background-color: #ffab2d
}

.plans-banner h2 {
    font-size: 35px;
    line-height: 1.35;
    font-weight: 300;
    margin-bottom: 50px
}

.plans-button {
    width: 245px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-family: sfprodisplay-semibold;
    font-size: 20px;
    border: 2px solid #fff;
    padding: 8px 0;
    background-color: transparent;
    border-radius: 0;
    margin-right: 30px;
    transition: all ease-in-out .2s
}

.plans-button a {
    color: #fff
}

.plans-button a:hover {
    color: #514fa0;
    text-decoration: none
}

.plans-button:hover {
    background-color: #fff;
    color: #514fa0;
    border-color: #fff
}

#plans-button-view-more {
    background-color: #ff492d
}

#plans-button-view-more:hover {
    background-color: #fff;
    color: #514fa0;
    border-color: #fff
}

.load-more-btn {
    border-radius: 0;
    background-color: #00a0a6;
    border: 1px solid #00a0a6;
    color: #fff;
    transition: all ease-in-out .2s;
    padding: 10px 20px;
    font-family: sfprodisplay-regular
}

.load-more-btn:hover {
    background-color: transparent;
    color: #00a0a6;
    border: 1px solid #00a0a6
}

.plans-overview {
    background-image: url(../images/e-learning/back-distinct.png);
    background-position: center;
    background-repeat: repeat;
    padding: 100px 50px 100px 35px
}

.plans-overview .col-sm-8 {
    width: 64%
}

.plans-overview .col-sm-4 {
    width: 36%
}

.plans-overview-left {
    padding-right: 50px
}

.plans-overview-left h2 {
    color: #514fa0;
    font-size: 57px;
    font-weight: 600;
    margin-bottom: 50px;
    margin-top: 0
}

.plans-overview-left h2:after {
    width: 80px;
    height: 5px;
    border: 1px solid #ffab2d;
    background-color: #ffab2d
}

.plans-overview-left p {
    color: #34303e;
    font-size: 26px;
    line-height: 40px
}

.plans-manager {
    background: #514fa0;
    border-radius: 10px;
    box-shadow: 0 3px 20px #00000033;
    -webkit-box-shadow: 0 3px 20px #00000033;
    -moz-box-shadow: 0 3px 20px #00000033;
    text-align: center;
    position: relative;
    color: #fff;
    padding: 110px 34px 34px;
    margin-top: 25px
}

.plans-manager-img {
    position: absolute;
    top: -50px;
    left: 50%;
    margin-left: -68px
}

.plans-manager h4 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 8px
}

.plans-manager h3 {
    font-size: 25px;
    margin-top: 0;
    margin-bottom: 50px
}

.manager-line {
    position: relative;
    border-top: 1px solid #a2a2a2;
    width: 100%
}

.manager-icon-box {
    position: absolute;
    left: 50%;
    height: 44px;
    width: 44px;
    margin-left: -22px;
    border-radius: 100%;
    border: 1px solid #a2a2a2;
    top: -22px;
    background: #514fa0
}

.manager-icon-box-inner {
    position: absolute;
    left: 50%;
    height: 36px;
    width: 36px;
    margin-left: -18px;
    border-radius: 100%;
    top: -18px;
    background: #ff492d
}

.manager-line img {
    position: absolute;
    left: 50%;
    margin-left: -9px;
    top: -9px;
    background: #ff492d
}

.manager-line p {
    margin-top: 25px;
    margin-bottom: 30px;
    font-size: 19px;
    font-family: titillium web
}

.manager-line p a {
    color: #fff
}

.manager-line p a:hover {
    color: #ccc;
    text-decoration: none
}

.plans-manager button {
    border-radius: 10px;
    background-color: #ff492d;
    border: 1px solid #ff492d;
    color: #fff;
    transition: all ease-in-out .2s;
    padding: 15px;
    font-family: sfprodisplay-regular;
    text-transform: uppercase;
    width: 90%;
    margin: 0 auto;
    font-size: 19px
}

.plans-manager button img {
    margin-right: 7px
}

.plans-manager button:hover {
    background-color: transparent;
    color: #ffab2d;
    border: 1px solid #ffab2d
}

.plans-benefits {
    background-color: #ff492d;
    padding: 40px 50px 100px 35px;
    color: #fff
}

.plans-benefits h2 {
    color: #fff;
    font-size: 57px;
    font-weight: 600;
    margin-bottom: 40px;
    margin-top: 0
}

.plans-benefits h2:after {
    width: 80px;
    height: 5px;
    border: 1px solid #ffab2d;
    background-color: #ffab2d
}

.plans-benefits p {
    font-size: 25px;
    margin-bottom: 5px
}

.plans-benefits-right {
    position: relative
}

#plans-benefits-computer {
    position: absolute;
    top: 28px;
    left: 0;
    z-index: 2
}

#plans-benefits-grid {
    position: absolute;
    top: 55px;
    left: -43px;
    z-index: 1;
    -webkit-animation: moveLeftRight 3s infinite;
    animation: moveLeftRight 3s infinite
}

.plans-elearn-pros {
    position: relative
}

.plans-elearn-pros:before {
    content: '';
    width: 100%;
    height: 0;
    border-left: 1920px solid transparent;
    border-right: 11px solid #514fa0;
    border-bottom: 239px solid #514fa0;
    top: -238px;
    position: absolute
}

.plans-overview-left .br-laptop {
    display: none
}

.plans-banner-inner {
    width: 1400px;
    margin: 0 auto
}

.plans-elearn-pros .container-1400-clear {
    padding-left: 0;
    padding-right: 0
}

.menu-language a {
    top: 3px;
    transition: all .2s ease-in-out
}

.menu-language a:hover {
    font-size: 16px;
    top: 3px;
    color: #00a0a6
}

.footer-contact-text i {
    margin-right: 12px;
    width: 10px
}

.hse-banner h2 {
    font-size: 31px
}

#hse-overview .plans-overview-left p {
    font-size: 23px;
    line-height: 30px
}

#hse-grid {
    top: 79px;
    right: 296px
}

#hse-helmet {
    position: absolute;
    top: 105px;
    right: 0;
    z-index: 2;
    width: 727px
}

#hse-waves {
    position: absolute;
    right: -650px;
    top: -341px;
    overflow: hidden;
    z-index: 0;
    transform: scale(1.5);
    transform: matrix(-.42, -.91, .91, -.42, 0, 0);
    -webkit-animation: rotateCircle 100s infinite;
    animation: rotateCircle 100s infinite;
    animation-timing-function: linear;
    -webkit-animation-timing-function: linear
}

#industrial-engineer {
    top: 63px;
    right: 36px
}

#industrial-grid {
    top: 230px;
    right: 335px
}

#industrial-banner h2 {
    font-size: 33px;
    line-height: 40px
}

#industrial-overview .plans-overview-left p {
    font-size: 23px;
    line-height: 30px;
    margin-bottom: 0
}

.plans-elearn-pros .elearn-pro i {
    color: #ff492d
}

#project-man {
    top: 76px;
    right: -61px
}

#project-grid {
    top: 184px;
    right: 63px;
    opacity: .7
}

#project-banner:after {
    content: '';
    height: 0;
    border-left: 300px solid transparent;
    border-right: 147px solid #b9adb4;
    border-bottom: 588px solid #b9adb4;
    bottom: 0;
    right: 0;
    position: absolute;
    overflow: hidden
}

#project-banner h2 {
    font-size: 33px
}

#project-banner .br-laptop {
    display: none
}

.home-heading {
    color: #313944;
    font-size: 40px;
    margin-bottom: 20px;
    margin-top: 0;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600
}

.home-heading-bullet {
    width: 12px;
    height: 12px;
    background: #FF7E00;
    border-radius: 100%;
    display: inline-block;
    margin-top: 16px
}

.home-heading-left {
    text-align: right
}

.home-heading-right {
    text-align: left
}

.bilingual-header .col-sm-5 {
    width: 48%
}

.bilingual-header .col-sm-2 {
    width: 4%
}

.home-subheading {
    color: #313944;
    font-size: 18px;
    font-family: sfprodisplay-semibold;
    margin-bottom: 20px;
    margin-top: 0;
    text-align: center;
    letter-spacing: 5.4px
}

.home-subheading a {
    color: #313944
}

.home-subheading a:hover {
    text-decoration: none;
    color: #00a0a6
}

.home-services {
    padding: 50px 0;
    background-color: #f5f7fa;
    border-top: 1px solid #c9cdd4
}

.home-services-outer {
    position: relative
}

.home-services h2 {
    margin-bottom: 30px
}

.home-service-wrap {
    position: relative;
    height: 587px;
    overflow: hidden;
    background-color: #72cfe8;
    transition: .3s all ease-in-out;
    cursor: pointer;
    z-index: 2
}

#home-services-grid {
    position: absolute;
    left: -25px;
    top: -60px;
    z-index: 1;
    -webkit-animation: leftAndRight 5s infinite;
    -moz-animation: leftAndRight 5s infinite;
    -o-animation: leftAndRight 5s infinite;
    animation: leftAndRight 5s infinite
}

#home-services-grid-inner {
    position: absolute;
    left: 50%;
    margin-left: -150px;
    top: 50%;
    margin-top: -120px;
    z-index: 0;
    -webkit-animation: upAndDown 5s infinite;
    -moz-animation: upAndDown 5s infinite;
    -o-animation: upAndDown 5s infinite;
    animation: upAndDown 5s infinite
}

.home-service-text {
    padding: 30px 10px 10px 25px
}

.home-service-wrap h2 {
    text-transform: uppercase;
    font-size: 28px;
    color: #fff;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 0;
    transition: all .5s ease;
    font-family: SFProDisplay-Regular
}

.home-service-wrap h3 {
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    margin-top: 0;
    margin-bottom: 20px;
    font-family: sfprodisplay-regular;
    line-height: 16px
}

.home-service-button {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
    color: #313944;
    margin: 0;
    border: none;
    outline: none;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    padding: 0;
    background-color: transparent;
    display: none
}

.home-service-button:hover {
    color: #00a0a6
}

.home-service-wrap:hover .home-service-heading {
    letter-spacing: 2px
}

.home-service-wrap:hover .home-service-button {
    -webkit-animation: showUp .5s;
    -moz-animation: showUp .5s;
    -o-animation: showUp .5s;
    animation: showUp .5s
}

.home-service-inner-border {
    position: absolute;
    height: calc(100% - 20px);
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    border: 3px solid #fff;
    background: 0 0;
    opacity: .47;
    z-index: 1
}

.home-service-img {
    position: absolute;
    width: 100%;
    bottom: 0;
    transition: all .5s ease
}

.home-service-img img {
    width: 100%
}

.home-service-wrap:hover .home-service-img {
    transform: scale(1.1)
}

.home-service-wrap:hover .home-service-button {
    display: inline-block
}

.home-service-shorter {
    height: 283px
}

.home-service-shorter:first-child {
    margin-bottom: 21px
}

#home-services-in-house {
    background: linear-gradient(90deg, #72CFE8, #75CEE2, #77CEDE, #7ACEDC, #7CCED9, #7FCED8, #84CED9, #89CEDA, #8DCADA, #91C6DA, #95C3DA)
}

#home-services-coaching {
    background-image: linear-gradient(135deg, #83BFE2, #8DB4DF, #9EA1D1)
}

#home-services-consultancy {
    background-image: linear-gradient(135deg, #9ABCD8, #A2B5D9, #ABADD7, #B8A1CD)
}

#home-services-elearning {
    background-image: linear-gradient(135deg, #87ACD8, #9D9ECD, #A498C8, #A08CC2, #A585BD)
}

#home-services-coaching .home-service-img {
    width: 100%;
    right: 0
}

#home-services-consultancy .home-service-img {
    width: 85%;
    right: 0
}

#home-services-elearning .home-service-img {
    width: 100%;
    right: 0
}

.home-download-outer {
    padding-top: 50px;
    overflow: hidden
}

.home-download-wrap {
    background-color: #5d6b78;
    padding: 30px 0 15px 30px;
    position: relative;
    transition: .3s all ease-in-out
}

.home-download-wrap h1 {
    color: #fff;
    font-size: 40px;
    margin-top: 0;
    margin-bottom: 5px;
    text-transform: uppercase
}

.home-download-wrap h3 {
    font-weight: 400;
    font-size: 14px;
    color: #dbdbdb;
    margin-top: 0;
    margin-bottom: 20px;
    font-family: sfprodisplay-regular;
    line-height: 16px
}

.home-download-wrap img {
    position: absolute;
    right: -51px;
    bottom: 0;
    transition: .3s all ease-in-out
}

.home-download-text img {
    position: relative;
    right: 0;
    margin-right: 7px
}

#home-download-calendar:hover #home-download-calendar-img {
    transform: rotate(20deg)
}

#home-download-catalog-img {
    right: -54px;
    bottom: -39px
}

#home-download-catalog:hover #home-download-catalog-img {
    transform: rotate(-20deg)
}

.home-download-wrap .custom-button:hover {
    color: #fff
}

.home-locations {
    background-color: #f5f7fa;
    padding: 0 20px
}

.home-locations-outer {
    position: relative;
    padding: 0 5px
}

#home-locations-grid-right {
    position: absolute;
    right: -70px;
    top: -70px;
    -webkit-animation: leftAndRight 5s infinite;
    -moz-animation: leftAndRight 5s infinite;
    -o-animation: leftAndRight 5s infinite;
    animation: leftAndRight 5s infinite
}

.home-locations-outer .col-sm-2 {
    width: 20%;
    padding-right: 10px;
    padding-left: 10px
}

.home-location-wrap {
    background-color: #495865;
    width: 100%;
    border-radius: 2px;
    padding: 0;
    text-align: center;
    transition: all .15s ease;
    position: relative;
    -webkit-box-shadow: 2px 6px 5px 0 #b3b3b3;
    -moz-box-shadow: 2px 6px 5px 0 #b3b3b3;
    box-shadow: 2px 6px 5px 0 #b3b3b3;
    cursor: pointer
}

.home-location-img {
    transition: all 2s ease;
    padding: 10px 35px 0;
    width: 100%;
    position: relative;
    background: #495865;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat
}

.home-location-wrap:hover .home-location-img {
    /*background-position: center center;
    background-size: cover;
    background-repeat: no-repeat*/
}

.home-location-img img {
    transition: all .2s ease
}

.home-location-wrap h3 {
    text-transform: uppercase;
    color: #fff;
    font-size: 15px;
    font-family: sfprodisplay-regular;
    letter-spacing: .3px;
    font-weight: 400;
    margin-top: 10px;
    transition: all .5s ease
}

.home-location-wrap h4 {
    text-transform: uppercase;
    color: #FF7E00;
    font-size: 13px;
    font-family: sfprodisplay-regular;
    font-weight: 400;
    margin-bottom: 0;
    padding-bottom: 15px;
    letter-spacing: 1px;
    transition: all .5s ease
}

.home-location-text {
    text-align: center;
    position: relative;
    padding: 0 10px;
    transition: all .5s ease
}

.home-location-text p {
    color: #ccc;
    position: absolute;
    bottom: 14px;
    right: 10px;
    opacity: 0;
    margin-bottom: 0;
    font-size: 12px
}

.home-location-text img {
    position: absolute;
    bottom: 47px;
    right: 10px;
    opacity: 0;
    width: 45px;
    transition: all .25s ease
}
/*
.home-location-wrap:hover .home-location-text {
    text-align: left
}

.home-location-wrap:hover .home-location-img img {
    opacity: 0
}

.home-location-wrap:hover .home-location-text img {
    opacity: 1
}

.home-location-wrap:hover .home-location-text h3 {
    text-transform: capitalize
}

.home-location-wrap:hover .home-location-text p {
    opacity: 1
}*/

.slick-prev:before {
    content: "\f053";
    font-family: "font awesome 5 free";
    color: #00a0a6;
    font-size: 18px;
    font-weight: 700
}

.slick-dots li button:before {
    font-family: "font awesome 5 free";
    content: "\f111";
    font-size: 9px;
    font-weight: 400;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    text-align: center;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-dots li.slick-active button:before {
    font-family: "font awesome 5 free";
    content: "\f111";
    color: #000;
    font-weight: 700
}

.home-locations button.slick-prev.slick-arrow {
    width: 35px;
    height: 35px;
    display: block;
    z-index: 10;
    left: -55px
}

.home-locations .slick-prev:before {
    content: url(../img/home/chevron-left-big.svg)
}

.home-locations button.slick-next.slick-arrow {
    width: 35px;
    height: 35px;
    display: block;
    z-index: 10;
    right: -55px
}

.home-locations .slick-next:before {
    content: url(../img/home/chevron-right-big.svg)
}

.home-locations .slick-list.draggable {
    padding: 0
}

.home-locations-slick-outer {
    padding-top: 35px
}

.home-categories {
    background-color: #f5f7fa;
    padding: 100px 0 50px
}

.home-categories .home-heading {
    margin-bottom: 65px
}

.home-category-wrap {
    position: relative;
    background-color: #fff;
    height: 200px;
    width: 100%;
    padding: 41px 15px 0 24px;
    z-index: 1;
    margin-bottom: 25px;
    cursor: pointer;
    transition: .25s all ease
}

.home-category-wrap:hover {
    background-color: #f7f7f7
}

.home-category-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    background: 0 0;
    border: 1px solid #5c6b77;
    top: 5px;
    right: -5px;
    z-index: 1
}

.home-category-number {
    padding: 0;
    position: absolute;
    top: 10px;
    right: 10px;
    color: #dbdfe6;
    font-size: 15px;
    font-family: sfprodisplay-semibold
}

.home-category-wrap img {
    margin-bottom: 30px;
    height: 39px
}

.home-category-wrap h4 {
    padding: 0;
    margin: 0;
    font-size: 20px;
    color: #303841;
    font-family: sfprodisplay-semibold;
    transition: .25s all ease
}

.home-category-wrap:hover h4 {
    color: #FF7E00;
    letter-spacing: 1.3px
}

.home-categories-outer .col-sm-2 {
    padding-left: 0;
    padding-right: 20px;
    width: 20%
}

.home-category-outer {
    position: relative
}

.home-benefits {
    background-color: #f5f7fa;
    padding: 50px 0;
    text-align: center
}

.home-categories-outer {
    position: relative
}

#home-categories-grid-left {
    position: absolute;
    left: -68px;
    top: 58px;
    -webkit-animation: leftAndRight 5s infinite;
    -moz-animation: leftAndRight 5s infinite;
    -o-animation: leftAndRight 5s infinite;
    animation: leftAndRight 5s infinite
}

#home-categories-grid-right {
    position: absolute;
    right: -101px;
    top: -76px;
    -webkit-animation: leftAndRight 5s infinite;
    -moz-animation: leftAndRight 5s infinite;
    -o-animation: leftAndRight 5s infinite;
    animation: leftAndRight 5s infinite
}

.home-benefits-outer .col-sm-2 {
    width: 20%
}

.home-benefits .home-heading-right {
    margin-bottom: 70px
}

.home-benefits img {
    margin-bottom: 30px
}

.home-benefits h4 {
    color: #313944;
    font-size: 23px;
    font-family: sfprodisplay-semibold;
    margin-top: 0;
    height: 70px
}

.home-benefits p {
    color: #313944;
    font-size: 13px;
    margin-top: 0;
    margin-bottom: 30px;
    height: 55px;
    overflow: hidden
}

.read-more-btn {
    border: 0;
    outline: 0;
    font-size: 13px;
    color: #313944;
    background: 0 0;
    padding: 0
}

.read-more-btn i {
    margin-left: 7px;
    color: #FF7E00
}

.read-more-btn:hover {
    background: 0 0
}

.read-more-btn:hover .fa-chevron-right {
    -webkit-animation: moveLeftRight 1s infinite;
    -moz-animation: moveLeftRight 1s infinite;
    -o-animation: moveLeftRight 1s infinite;
    animation: moveLeftRight 1s infinite
}

#rtl-course-banner {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1)
}

#rtl-course-banner .container {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1)
}

#rtl-course-description .colapse-button-wrap i {
    left: -5px
}

#rtl-course-description .colapse-button-wrap:hover i {
    left: -5px
}

#rtl-course-section_03 {
    background-color: #514fa0
}

#rtl-course-section_05 .download-catalog .catalog-button {
    background-color: #7e7dbd
}

#rtl-course_outline .colapse-button-wrap i {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    left: -5px
}

#rtl-course_outline .colapse-button-wrap:hover i {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    left: -5px
}

#rtl-course-section_07 {
    background-color: #514fa0
}

#rtl-who-should-attend .colapse-button-wrap {
    right: 100px
}

#rtl-who-should-attend .colapse-button-wrap i {
    left: -5px
}

#rtl-who-should-attend .colapse-button-wrap:hover i {
    left: -5px
}

.home-testimonials {
    height: 591px;
    background: transparent radial-gradient(closest-side at 28% 50%, #F5F5F5 0%, #B9B9B9 100%) 0% 0% no-repeat padding-box
}

#home-testimonials-carousel {
    position: relative;
    height: 100%
}

#home-testimonials-carousel .carousel-inner {
    height: 100%
}

.home-testimonial-wrap {
    position: relative;
    height: 100%
}

.home-testimonial-wrap-image {
    position: absolute;
    left: 120px;
    bottom: 0
}

#testimonial-kfas {
    left: 165px
}

.home-testimonial-content {
    padding: 25px 40px 40px 50px;
    position: absolute;
    right: 300px;
    top: 78px;
    background-color: #fff;
    height: 435px;
    width: 450px
}

.home-testimonial-content h2 {
    font-size: 20px;
    color: #FF7E00;
    margin-top: 15px;
    font-family: sfprodisplay-semibold;
    text-transform: capitalize;
    height: 55px
}

.home-testimonial-main-content {
    height: 140px;
    overflow: hidden;
    margin-bottom: 30px
}

.home-testimonial-content p {
    font-size: 16px;
    color: #5d6b78;
    margin: 0;
    line-height: 1.3
}

.home-testimonial-content h4 {
    font-size: 19px;
    color: #FF7E00;
    margin-top: 0;
    margin-bottom: 0;
    font-family: sfprodisplay-semibold
}

.home-testimonial-content h4 span {
    font-size: 14px;
    color: #5d6b78;
    margin-top: 7px;
    display: block;
    font-family: SFProDisplay-Regular
}

.home-testimonial-content h3 {
    font-size: 23px;
    color: #313944;
    margin: 0;
    line-height: 45px;
    display: block;
    font-family: SFProDisplay-Semibold
}

.home-testimonial-author {
    border-right: 1px solid #313944
}

.home-testimonial-content img {
    height: 75px
}

.home-testimonial-content .carousel-control {
    width: 100%
}

.home-testimonial-content .carousel-control img {
    height: 27px;
    width: 25px
}

.home-testimonial-content .carousel-control.right {
    background: 0 0;
    margin-top: 10px
}

.home-testimonial-content .carousel-control.left {
    background: 0 0;
    margin-top: 10px
}

.bottom-menu {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #5d6b78;
    color: #fff;
    -webkit-transition: background-color .25s;
    transition: background-color .25s;
    z-index: 1000000000000000;
    text-align: center;
    padding: 10px 0
}

.bottom-menu-item {
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px
}

.bottom-menu-item:hover span {
    color: #FF7E00
}

.bottom-menu-item a {
    color: #fff
}

.bottom-menu-item a:hover {
    text-decoration: none;
    color: #FF7E00
}

.bottom-menu-item i {
    font-size: 20px
}

.bottom-menu-item img {
    margin-bottom: 3px;
    transition: all .25s ease
}

.bottom-menu-item img:first-child {
    display: inline-block
}

.bottom-menu-item img:nth-child(2) {
    display: none
}

.bottom-menu-item span {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    font-family: sfprodisplay-semibold;
    color: #d4d2d2
}

.bottom-menu-screen {
    height: 100vh;
    width: 100%;
    top: 60px;
    z-index: 10000;
    overflow-y: hidden;
    position: fixed
}

#bottom-menu-services {
    text-align: center;
    display: none;
    background: #FF7E00
}

.bottom-menu-services-links {
    position: absolute;
    left: 50%;
    margin-left: -100px;
    top: 50%;
    margin-top: -200px
}

#bottom-menu-services a {
    display: block;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-size: 30px
}

#bottom-menu-services a:hover {
    text-decoration: none;
    color: #d7d7d7
}

#bottom-menu-search {
    text-align: left;
    background-image: url(../images/bottom-search.jpg);
    background-size: cover;
    background-position: left;
    display: none
}

#home-download-left {
    padding-right: 12px
}

#home-download-right {
    padding-left: 12px
}

.home-locations .slick-slide {
    margin: 0 10px
}

.home-locations .slick-list {
    margin: 0 -10px
}

.home-categories-outer .row {
    margin-right: -5px;
    margin-left: 20px
}

.home-benefits .row {
    margin-right: -75px;
    margin-left: -75px
}

.home-subheading .hidden-tablet {
    display: inline-block
}

#top6-location:hover .home-location-img {
    background: url(../wp-content/uploads/City18.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat
}

#foundation-header {
    background-image: url(../images/foundation/foundation-header.jpg);
    height: 596px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 10px
}

#foundation-header #in-house-breadcrumb {
    margin-bottom: 15px
}

#foundation-header #in-house-breadcrumb a {
    color: #fff;
    font-weight: 400
}

#foundation-header #in-house-breadcrumb span {
    color: #fff
}

#foundation-header h1 {
    color: #fff;
    font-weight: 400;
    text-transform: initial;
    margin-bottom: 170px;
    font-size: 45px;
    line-height: 1.5;
    text-transform: capitalize
}

#foundation-header h2 {
    color: #fff;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 140px
}

#foundation-header .watch-leoron-video {
    color: #fff
}

#foundation-header .watch-leoron-video i {
    margin-left: 6px
}

.foundation-outer {
    padding: 30px;
    padding-left: 140px;
    padding-right: 140px
}

.foundation-inner {
    margin-bottom: 30px
}

.foundation-support-text {
    color: #111;
    padding: 31px 127px 31px 96px;
    background: #ededed;
    height: 810px
}

.foundation-support-above-headline {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 10px
}

.heading-underline {
    font-size: 40px;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 7px;
    font-weight: 600
}

.heading-underline:after {
    content: "";
    position: absolute;
    width: 75px;
    height: 5px;
    border: 1px solid #FF7E00;
    display: block;
    background-color: #FF7E00;
    margin-top: 10px
}

.foundation-support-headline {
    line-height: 1.2
}

.foundation-support-headline:hover {
    color: #00a0a6
}

.foundation-support-maintext {
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 30px
}

.foundation-support-image {
    background-image: url(../images/foundation/foundation-support.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 810px;
    width: 100%;
    background-position: center
}

.foundation-support-goal {
    position: relative;
    margin-bottom: 40px;
    padding-left: 20px
}

.foundation-support-goal p {
    font-size: 20px
}

.foundation-support-circle {
    background: #00a0a6 0% 0% no-repeat padding-box;
    opacity: .13;
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 69px;
    height: 69px;
    border-radius: 100%
}

.foundation-streams .foundation-support-text {
    padding: 31px 96px
}

#foundation-streams-image {
    background-image: url(../images/foundation/foundation-streams.jpg)
}

.foundation-stream-headline {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px
}

.foundation-stream-headline span {
    font-size: 60px;
    color: #00a0a6;
    font-weight: 400
}

.foundation-stream-maintext {
    font-size: 17px;
    margin-bottom: 20px;
    letter-spacing: 0
}

.foundation-stream-wrap {
    margin-bottom: 25px
}

.foundation-stream-wrap button {
    border-bottom: 2px solid #8f8a87;
    border-radius: 0
}

.foundation-stream-wrap button img {
    margin-left: 10px
}

.foundation-steps {
    background: #ededed;
    padding: 54px 17px 42px 42px;
    color: #111
}

.foundation-steps .careers-step-wrap {
    padding-right: 35px
}

.foundation-steps .careers-step-img-wrap {
    margin-left: 20px;
    margin-bottom: 25px
}

.foundation-steps .career-pro-circle {
    position: absolute;
    height: 69px;
    width: 69px;
    background: #00a0a6;
    border-radius: 100%;
    opacity: .13;
    left: -20px;
    bottom: -7px
}

.foundation-steps .careers-step-heading {
    font-size: 40px;
    font-weight: 600;
    text-transform: initial;
    margin-bottom: 20px
}

.foundation-steps .careers-step-heading:hover {
    color: #00a0a6
}

.foundation-steps .careers-step-text {
    height: auto;
    line-height: 1.5
}

.foundation-steps .careers-step-text span {
    color: #00a0a6
}

.foundation-activities {
    background: #ededed;
    padding: 68px 78px 0 99px;
    color: #111
}

.foundation-activities-maintext {
    font-size: 17px;
    margin-top: 30px;
    padding: 0;
    list-style-type: none
}

.foundation-activities-maintext li {
    margin-bottom: 7px
}

.foundation-activities-maintext span {
    color: #00a0a6
}

.foundation-activities-left {
    padding-right: 87px
}

.foundation-activities-right {
    padding-left: 87px
}

.foundation-hands {
    background-color: #ededed;
    background-image: url(../images/foundation/hands.png);
    background-size: cover;
    background-position: top;
    position: relative;
    height: 900px
}

#foundation-logo {
    position: absolute;
    bottom: 60px;
    right: 85px
}

#foundation-posts {
    padding: 55px 15px 55px 55px;
    border-bottom: 0
}

#foundation-posts #careers-posts-header {
    color: #111;
    font-size: 40px;
    font-weight: 600
}

.foundation-outer .careers-steps {
    padding: 0;
    border: 0
}

.foundation-outer .more-button:hover {
    background: 0 0;
    color: #8f8a87
}

.careers-steps .modal-header h4 {
    line-height: 1.1
}

#foundation-posts .post-related .post-list-box .img-wrap img {
    height: 190px
}

#foundation-posts .post-related .post-list-box .img-wrap {
    height: 190px
}

.course-section_11 .left-wrap {
    padding-top: 0
}

.mobileSearchDom {
    display: block;
    position: fixed;
    left: 0;
    top: 20%;
    bottom: 68px;
    width: 80%;
    text-align: right
}

.mobileSearchDom p {
    text-align: left;
    color: #fff;
    margin-left: 30px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-size: 28px
}

.mobileSearchDom p span {
    display: block;
    color: #cbcbcb;
    margin-top: 2px
}

.mobileSearchDom .form-control {
    padding: 15px 77px 15px 30px;
    height: 61px;
    border-radius: 0 35px 35px 0;
    font-size: 18px;
    position: relative
}

.mobileSearchDom i {
    position: absolute;
    right: 20px;
    top: 22px;
    color: #3b3b3b;
    cursor: pointer;
    font-size: 18px
}

.all-courses-recommended .post-wrapper {
    padding: 0
}

.lazyload, .lazyloading {
    opacity: 0
}

.lazyloaded {
    opacity: 1
}

img.lazyload:not([src]) {
    visibility: hidden
}

#all-courses-popular-loader {
    background: url(../images/loader-dots.gif) no-repeat #fafafa;
    height: 1600px;
    background-position: 50% 10%
}

.contact-header {
    height: 469px;
    background-image: url(../images/contact-us/contact-back2.jpg);
    background-size: cover;
    color: #5c6b77;
    text-align: left;
    position: relative;
    padding: 0
}

.contact-header nav {
    margin-bottom: 15px;
    font-size: 14px;
    margin-top: 20px
}

.contact-header nav span {
    font-size: 10px;
    margin-left: 5px;
    margin-right: 5px
}

.contact-header h1 {
    font-size: 33px;
    font-family: sfprodisplay-semibold;
    margin-bottom: 70px;
    margin-top: 0
}

.contact-header h2 {
    font-size: 80px;
    transition: all ease .35s;
    position: absolute;
    top: 140px;
    left: 0
}

.contact-header h2 span {
    font-size: 70px;
    color: #00a0a6;
    display: block
}

.contact-header h3 {
    font-size: 22px;
    font-family: sfprodisplay-regular;
    letter-spacing: 1.1px;
    position: absolute;
    top: 350px;
    left: 0
}

.contact-header img {
    position: absolute;
    right: 140px;
    bottom: 0
}

.contact-header-main:hover h2 {
    font-size: 110px;
    line-height: 1
}

.contact-header-main:hover h2 span {
    font-size: 70px
}

.contact-body {
    min-height: 469px;
    background-image: url(../images/contact-us/contact-back2.jpg);
    background-size: cover;
    color: #5c6b77;
    padding: 100px 0
}

.contact-card {
    background: rgba(255, 255, 255, .85);
    position: relative;
    transition: all ease .25s;
    margin-bottom: 80px
}

.contact-card-left {
    margin-right: 55px
}

.contact-card-right {
    margin-left: 55px
}

.contact-card-person {
    position: absolute;
    bottom: 0;
    left: -50px;
    z-index: 30
}

#contact-card-corporate-profile .contact-card-person {
    top: 40px;
    left: -35px
}

#contact-card-corporate-profile .contact-card-bottom img {
    margin-right: 10px;
    transition: all ease .25s
}

.contact-card-grid {
    position: absolute;
    top: 40px;
    left: 10px;
    -webkit-animation: moveLeftRight 7s infinite;
    animation: moveLeftRight 7s infinite;
    z-index: 20
}

.contact-card h2 {
    font-size: 21px;
    font-family: sfprodisplay-regular;
    color: #00a0a6;
    margin-bottom: 20px;
    position: relative
}

.contact-card h2 span {
    font-size: 40px;
    font-family: sfprodisplay-regular;
    color: #5c6b77;
    display: block;
    line-height: 1.1;
    margin-top: 5px;
    transition: all ease .25s
}

.contact-card h2 span:hover {
    color: #00a0a6
}

.contact-card h2:after {
    content: "";
    position: absolute;
    width: 67px;
    height: 2px;
    display: block;
    background: linear-gradient(to right, #91ABD9 20%, #70CDDE 100%);
    background: -moz-linear-gradient(to right, #91ABD9 20%, #70CDDE 100%);
    background: -webkit-linear-gradient(to right, #91ABD9 20%, #70CDDE 100%);
    background: -o-linear-gradient(to right, #91ABD9 20%, #70CDDE 100%);
    background: -ms-linear-gradient(to right, #91ABD9 20%, #70CDDE 100%);
    margin-top: 6px;
    left: 0
}

.contact-card h3 {
    font-size: 15px;
    font-family: sfprodisplay-regular;
    text-transform: uppercase;
    margin-bottom: 7px
}

.contact-card h3 span {
    color: #00a0a6
}

.contact-card h4 {
    font-size: 15px;
    font-family: sfprodisplay-regular;
    margin-bottom: 15px;
    line-height: 1.4;
    margin-top: 0;
    height: 39px
}

.contact-card p {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 0;
    height: 133px;
    padding-right: 20px;
    line-height: 1.2
}

.contact-channel {
    margin-bottom: 10px
}

.contact-channel a {
    color: #5c6b77;
    transition: all ease .25s
}

.contact-channel a:hover {
    color: #ccc;
    text-decoration: none
}

.contact-channel img {
    margin-right: 15px;
    transition: all ease .25s
}

.contact-channel a:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1)
}

.contact-card-bottom {
    height: 43px;
    background: #00a0a6;
    padding-top: 11px;
    margin-top: 10px;
    transition: all ease .25s;
    position: relative
}

.contact-card:hover .contact-card-bottom {
    background: linear-gradient(to right, #91abd9 20%, #ba96c5 60%, #70cdde 100%);
    background: -moz-linear-gradient(to right, #91abd9 20%, #ba96c5 60%, #70cdde 100%);
    background: -webkit-linear-gradient(to right, #91abd9 20%, #ba96c5 60%, #70cdde 100%);
    background: -o-linear-gradient(to right, #91abd9 20%, #ba96c5 60%, #70cdde 100%);
    background: -ms-linear-gradient(to right, #91abd9 20%, #ba96c5 60%, #70cdde 100%)
}

.contact-card-bottom a {
    color: #fff;
    font-size: 15px;
    transform: all ease .25s
}

.contact-card-bottom a:hover {
    color: #ccc;
    text-decoration: none
}

.contact-card-bottom img {
    margin-right: 15px;
    transition: all ease .25s
}

.contact-card-bottom a:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1)
}

.contact-card-linkedin {
    position: absolute;
    bottom: 10px;
    right: 0
}

.contact-channel {
    margin-bottom: 7px;
    font-size: 15px
}

#contact-card-yousef .contact-channel {
    margin-left: 20px
}

.course-slider-wrapper .slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: 0;
    margin-right: 0
}

#course-recommended .post-wrapper {
    width: 1155px
}

.relative {
    position: relative
}

.downloads-menu-second {
    display: none;
    position: absolute;
    left: -320px;
    top: -213px;
    list-style: none;
    background: #fafafa;
    padding-left: 10px;
    width: 320px;
    padding: 0
}

#ta3leem-elearning-li a {
    display: block
}

#ta3leem-elearning-li a:hover {
    text-decoration: none
}

.downloads-menu-second a {
    padding: 7px 15px;
    display: block
}

.show-block {
    display: block
}

.box-content a {
    color: inherit
}

#board-of-directors-wrap .expert-wrap {
    width: 25%
}

.egypt-banner-wrap {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom
}

.egypt-banner-content {
    position: absolute;
    top: 122px;
    left: 137px;
    color: #fff;
    z-index: 10
}

.egypt-banner-wrap h1 {
    font-size: 45px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 10px
}

.egypt-banner-wrap h1 span {
    font-weight: 400
}

.egypt-banner-wrap h2 {
    font-size: 45px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px
}

.egypt-banner-wrap h2 span {
    font-size: 80px;
    font-family: quentin;
    margin-left: 15px;
    font-weight: 400
}

.egypt-banner-wrap p {
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.6
}

.egypt-banner-button-wrap {
    position: relative;
    cursor: pointer
}

.egypt-banner-button {
    padding: 13px 20px 13px 43px;
    border: 1px solid #fff;
    text-transform: uppercase;
    background: 0 0;
    color: #fff;
    font-size: 16px;
    z-index: 100;
    letter-spacing: 1.4px;
    border-radius: 0;
    position: absolute;
    transition: all ease .25s
}

.egypt-banner-button-wrap:hover .egypt-banner-button {
    background: #fff;
    color: #4e5d6a
}

.egypt-banner-button-shaddow {
    width: 195px;
    height: 50px;
    position: absolute;
    left: 5px;
    bottom: -44px;
    z-index: 10;
    transition: all ease .35s;
    background: #000;
    border: 2px solid #000;
    opacity: .6
}

.egypt-banner-button-wrap:hover .egypt-banner-button-shaddow {
    background: 0 0;
    border: 2px solid #fff
}

.egypt-banner-image {
    position: absolute;
    right: 200px;
    bottom: 0;
    height: 507px;
    z-index: 15
}

.egypt-banner-waves {
    position: absolute;
    width: 100%;
    height: 140px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom
}

#dark-grey-egypt {
    background-image: url(../index.html);
    bottom: -18px;
    left: 0;
    z-index: 4
}

#light-grey-egypt {
    background-image: url(../index.html);
    bottom: -26px;
    left: 0;
    z-index: 3
}

#light-green-egypt {
    background-image: url(../index.html);
    bottom: -45px;
    left: 0;
    z-index: 1
}

#dark-green-egypt {
    bottom: -32px;
    left: 0;
    background-image: url(../index.html);
    z-index: 2
}

#egypt-banner-button-arrow {
    width: 42px;
    background-image: url(../index.html);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all ease .25s;
    position: absolute;
    left: -9px;
    bottom: -36px;
    height: 20px;
    border: 0;
    z-index: 100
}

.egypt-banner-button-wrap:hover #egypt-banner-button-arrow {
    background-image: url(../index.html)
}

#home-banner-social-franchise {
    z-index: 100;
    right: -84px;
    left: auto;
    bottom: 220px;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg)
}

#home-banner-social-franchise img {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg)
}

.arabic-font {
    font-family: almarai
}

.calendar-modal {
    top: 50%;
    margin-top: -240px
}

.modal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: .75
}

.calendar-modal .modal-lg {
    width: 792px
}

.calendar-modal .modal-content {
    outline: 3px solid rgb(255, 255, 255, .3);
    outline-offset: -15px;
    padding: 48px 170px 82px 70px;
    background-image: url(../images/home/calendar-modal.jpg);
    background-size: cover;
    background-position: right bottom
}

.calendar-modal .modal-body {
    padding: 0
}

.calendar-modal h1 {
    text-transform: uppercase;
    font-size: 40px;
    margin-bottom: 40px;
    color: #fff;
    letter-spacing: 2px;
    line-height: 48px;
    margin-top: 0;
    font-family: sfprodisplay-regular
}

.calendar-modal h1:after {
    width: 95px;
    height: 4px
}

.calendar-modal p {
    margin-bottom: 40px;
    color: #fff;
    font-size: 22px;
    letter-spacing: 1.76px
}

#calendar-modal-view-more {
    font-size: 20px;
    padding-left: 25px;
    padding-right: 25px;
    letter-spacing: 1.4px
}

.calendar-modal .close {
    position: absolute;
    top: -35px;
    right: 200px;
    opacity: 1
}

.calendar-modal .close img {
    transition: all ease .2s;
    height: 21px
}

.calendar-modal button img:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1)
}

#mdlCalendar, #mdlTraining, #mdlBrochure, #mdlCatalogue {
    top: 50%;
    margin-top: -288px
}

.contact-us-form-wrap {
    padding: 50px 40px 40px 52px;
    background-color: #00a0a6
}

.contact-us-form-wrap h2 {
    color: #fff;
    font-size: 40px;
    font-family: sfprodisplay-regular;
    margin-top: 0;
    font-weight: 400
}

.contact-us-form-wrap h2:after {
    border: 1px solid #ccc;
    background-color: #ccc;
    margin-top: 20px
}

.contact-us-form-wrap h2 span {
    display: block;
    line-height: 43px;
    margin-top: 15px
}

.contact-us-form-wrap h3 {
    color: #fff;
    font-size: 24px;
    line-height: 32px;
    text-transform: capitalize;
    font-family: sfprodisplay-regular;
    margin-top: 45px;
    font-weight: 400
}

.contact-us-form-input {
    width: 100%;
    padding: 10px 15px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 7px;
    margin-bottom: 12px;
    background: #5c6b77;
    font-size: 16px;
    transition: .25s all ease;
    opacity: .8
}

.contact-us-form-input:focus {
    border: 2px solid #fff;
    outline: none
}

.contact-us-form-wrap textarea {
    resize: none
}

.contact-us-form-input::placeholder {
    color: #ccc
}

.contact-us-form-input::-ms-input-placeholder {
    color: #ccc
}

.contact-us-form-input::placeholder {
    color: #ccc
}

#contact-us-form-submit {
    text-align: center;
    font-size: 24px;
    padding-top: 15px;
    padding-bottom: 15px;
    text-transform: uppercase;
    margin-bottom: 0;
    transition: all ease .25s;
    color: #5c6b77;
    background: #fff;
    margin-top: -4px;
    opacity: 1
}

#contact-us-form-submit:hover {
    color: #fff;
    background-color: transparent
}

.contact-us-form-left {
    padding-right: 30px
}

#card-enquire-international {
    padding: 0 18px 18px
}

#card-enquire-international img {
    left: 0
}

#card-enquire-international img.phone-image {
    top: auto;
    transform: inherit
}

.allcourses-banner-video-container {
    height: 300px;
    position: relative
}

.banner-video-back {
    background: #464242;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0
}

.allcourses-banner-video-container .banner-video-back {
    height: 400px
}

#allcourses-banner-video {
    z-index: -1;
    width: 100%;
    overflow: hidden
}

.banner-video-text {
    position: absolute
}

.allcourses-banner-video-container .banner-video-text {
    width: 100%;
    text-align: center;
    top: 100px;
    text-transform: uppercase;
    color: #fff
}

.allcourses-banner-video-container .banner-video-text h2 {
    font-size: 50px
}

.most-popular-cards {
    margin-top: 30px
}

.home-top-courses .container-1400-clear {
    max-width: 1430px
}

.home-top-courses .col-sm-3 {
    width: 20%;
    padding-left: 5px;
    padding-right: 5px
}

.home-banner video {
    width: 100%;
    position: absolute;
    top: -150px;
    z-index: 0
}

.home-banner .banner-video-back {
    background: linear-gradient(90deg, rgba(34, 38, 42, 1) 0%, rgba(34, 38, 42, 0) 46%, rgba(170, 166, 166, 0) 100%);
    height: 800px;
    z-index: 1;
    width: 100%
}

@media (max-width: 1600px) {
    #in-house-header-man {
        background-size: cover
    }

    .expert-wrap {
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 70px
    }

    .experts-related .expert-wrap {
        margin-bottom: 30px
    }

    #courses-list-wrapper {
        padding-left: 80px;
        padding-right: 70px;
        background-color: #fafafa;
        overflow: hidden;
        width: auto
    }

    .courses-list-body {
        width: 100%;
        position: relative
    }

    .post-wrapper {
        padding: 30px 108px 50px;
        width: auto
    }

    .cart-wrapper {
        padding: 30px 30px 100px;
        width: auto
    }

    .cart-sidebar {
        width: 45%
    }

    .all-directors-wrap {
        width: auto;
        padding: 70px 120px
    }

    .courses-list-body .radiation-text-01 {
        position: absolute;
        top: 150px;
        left: 2%;
        width: 25px
    }

    .expert-category h3 {
        font-size: 34px;
        font-weight: 700
    }

    .container-1400 {
        width: auto;
        padding: 70px 120px
    }

    .clients-slider .container-1400 {
        padding: 30px 120px 40px
    }

    #franchise-contact .container-1400 {
        padding: 45px 120px 0
    }

    .franchise-operating-sectors .container-1400 {
        padding-bottom: 45px
    }

    .checkout-wrapper {
        width: auto;
        padding-left: 120px;
        padding-right: 120px;
        max-width: none
    }

    .in-house-features {
        padding: 50px 108px 50px 58px
    }

    .in-house-features .container-1400 {
        padding: 0
    }

    .in-house-fully-alligned .container-1400 {
        padding: 0
    }

    .e-learning-packages .container-1400 {
        padding: 0
    }

    .in-house-pyramid .container-1400 {
        padding: 0
    }

    .coaching-features-section .container-1400 {
        padding: 0
    }

    .who-radiating {
        right: 80px
    }

    .courses-list-promo-box .col-sm-5 {
        width: 37%
    }

    .franchise-operating-sectors {
        padding-top: 0;
        padding-bottom: 0
    }

    .clients-slider {
        padding-top: 0;
        padding-bottom: 0
    }

    #why-franchise {
        padding-top: 0
    }

    #countries-franchising {
        padding-top: 0
    }

    #franchise-contact {
        padding-top: 0;
        padding-bottom: 0
    }

    #franchise-form-wrap {
        padding-top: 0;
        padding-bottom: 40px
    }

    .container-1400-clear {
        width: auto;
        padding: 0 120px;
        max-width: none
    }

    .contact-header h2 {
        left: 120px
    }

    .contact-header h3 {
        left: 120px
    }

    .container.custom {
        width: auto;
        padding: 0 120px
    }

    .elearn-plans .container-1400-clear {
        padding: 0 55px
    }

    .elearn-plan-button {
        font-size: 13px
    }

    .careers-hero-text p {
        line-height: 1.25;
        font-size: 14px
    }

    .careers-hero-text {
        padding: 25px 17px
    }

    div.welcomeUserLabel .dropdown-list #account-list-panel {
        width: 320px;
        left: 0
    }

    .wishlist-wrapper {
        padding-top: 60px
    }

    .plans-elearn-pros:before {
        border-left: 1600px solid transparent
    }

    .plans-banner-left {
        padding-left: 110px
    }

    .plans-overview {
        padding: 100px 50px 100px 120px
    }

    .plans-benefits {
        padding: 40px 50px 100px 120px
    }

    .plans-overview-left p {
        color: #34303e;
        font-size: 26px;
        line-height: 40px
    }

    .plans-banner-inner {
        width: auto;
        margin: 0 auto
    }

    .plans-elearn-pros .container-1400-clear {
        padding-left: 105px;
        padding-right: 105px
    }

    #project-banner h2 {
        font-size: 33px;
        line-height: 40px
    }

    #project-banner .br-laptop {
        display: block
    }

    #home-services-coaching .home-service-img {
        width: 100%;
        right: 0
    }

    #home-services-consultancy .home-service-img {
        width: 90%;
        right: 0
    }

    .home-testimonial-wrap-image {
        left: -24px;
        bottom: 0
    }

    .home-testimonial-content {
        right: 112px;
        top: 78px
    }

    #home-services-elearning .home-service-img {
        width: 130%;
        right: -30%
    }

    .foundation-outer {
        padding-left: 80px;
        padding-right: 80px
    }

    .foundation-hands {
        height: 817px
    }

    .contact-header img {
        right: 10px
    }

    .contact-card-left {
        margin-right: 30px
    }

    .contact-card-right {
        margin-left: 30px
    }

    #course-recommended .post-wrapper {
        padding: 0
    }

    #contact-card-yousef .contact-channel {
        margin-left: 50px
    }

    .home-top-courses .container-1400-clear {
        width: auto;
        padding: 0 95px;
        max-width: inherit
    }

    .home-banner video {
        width: 120%;
        top: -150px;
        height: auto
    }

    .footer-other-links {
        text-align: left
    }
}

@media (max-width: 1450px) {
    #home-services-consultancy .home-service-img {
        width: 100%;
        right: 0
    }

    #home-services-coaching .home-service-img {
        width: 120%;
        right: 0
    }

    #home-services-elearning .home-service-img {
        width: 150%;
        right: -40%
    }

    .foundation-outer {
        padding-left: 30px;
        padding-right: 30px
    }

    .contact-header img {
        right: -80px
    }

    .menu-left .nav.navbar-nav li a {
        padding: 15px
    }

    .egypt-banner-image {
        right: 70px
    }

    .calendar-modal .close {
        right: 100px
    }

    .home-banner video {
        top: -110px
    }
}

@media (max-width: 1340px) {
    .expert-category h3 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 5px
    }

    .who-top-quality {
        padding: 97px 120px
    }

    .who-radiating {
        right: 70px
    }

    .why-mission-left {
        padding: 30px 30px 0 88px
    }

    .checkout-wrapper {
        padding-left: 55px;
        padding-right: 55px
    }

    .courses-list-promo-box .col-sm-5 {
        width: 40%
    }

    .why-mission-left {
        padding: 30px 30px 0 88px
    }

    .franchise-why-video .col-sm-6 {
        width: 100%
    }

    .franchise-why-video p {
        margin-bottom: 40px
    }

    .franchise-video-laptop {
        position: absolute;
        width: 500px;
        left: 50%;
        margin-left: -250px
    }

    .franchise-video video {
        position: absolute;
        width: 377px;
        top: 30px;
        left: 50%;
        margin-left: -189px
    }

    .franchise-video .video-buttons {
        left: 50%;
        margin-left: -28px
    }

    .franchise-video-dots {
        display: none
    }

    .franchise-why-video h3 {
        margin-top: 0
    }

    .why-franchise-leoron-wrap {
        width: 33.33%;
        float: left;
        padding-left: 25px;
        padding-right: 25px
    }

    .post-social-share img {
        width: 25px
    }

    .expert-radiating img {
        margin-top: 3px;
        width: 100%
    }

    .elearn-plans .container-1400-clear {
        padding: 0 25px
    }

    .elearn-trial-content {
        padding: 50px 50px 0
    }

    .elearn-standing-man {
        top: 30px
    }

    .elearn-standing-man img {
        height: 520px
    }

    .elearn-libraries-single {
        padding-left: 0;
        padding-right: 0
    }

    .elearn-pro-headline {
        height: 85px
    }

    .elearn-plan-button {
        font-size: 13px
    }

    .elearn-plan-button {
        padding: 10px 20px;
        font-size: 13px
    }

    .careers-step-text {
        height: 180px
    }

    .careers-step-heading {
        font-size: 25px
    }

    .careers-step-heading span {
        font-size: 40px
    }

    .careers-submit-image {
        background-position: right top
    }

    .careers-submit-heading {
        margin-bottom: 10px;
        font-size: 36px
    }

    .careers-features p {
        height: 210px
    }

    .careers-features p {
        line-height: 1.4
    }

    div.welcomeUserLabel .dropdown-list #account-list-panel {
        width: 320px;
        left: -20%
    }

    .plans-banner-left {
        padding-left: 45px
    }

    .plans-banner-man {
        top: 163px;
        right: 0;
        width: 550px
    }

    .plans-banner-grid {
        position: absolute;
        top: 226px;
        right: 168px;
        width: 185px
    }

    .plans-overview {
        padding: 100px 50px 100px 55px
    }

    #plans-overview .plans-overview-left br {
        display: none
    }

    .plans-benefits {
        padding: 40px 50px 100px 55px
    }

    .plans-elearn-pros .container-1400-clear {
        padding-left: 45px;
        padding-right: 45px
    }

    .container-1400-clear {
        width: auto;
        padding: 0 55px
    }

    .contact-header h2 {
        left: 55px
    }

    .contact-header h3 {
        left: 55px
    }

    .all-directors-wrap {
        width: auto;
        padding: 70px 55px
    }

    .associations-wrapper {
        padding: 30px 55px 10px
    }

    .container-1400 {
        width: auto;
        padding: 70px 55px
    }

    .post-wrapper {
        padding: 30px 55px 50px;
        width: auto
    }

    .br-laptop {
        display: none
    }

    #hse-helmet {
        position: absolute;
        top: 213px;
        right: 0;
        z-index: 2;
        width: 563px
    }

    #project-man {
        top: 128px;
        right: -61px;
        width: 580px
    }

    #project-banner .br-laptop {
        display: none
    }

    .course-section-recommended .left-wrap {
        margin: 0 0 0;
        padding: 10px 0 30px
    }

    .home-benefits .row {
        margin-right: -15px;
        margin-left: -15px
    }

    .home-testimonial-content {
        right: 60px;
        top: 78px
    }

    #home-services-elearning .home-service-img {
        width: 140%;
        right: -40%
    }

    .foundation-support-text {
        padding: 30px
    }

    .foundation-streams .foundation-support-text {
        padding: 30px
    }

    .foundation-steps {
        padding: 30px
    }

    .foundation-activities-left {
        padding-right: 50px
    }

    .foundation-activities-right {
        padding-left: 50px
    }

    .foundation-activities {
        padding: 30px
    }

    #foundation-posts {
        padding: 30px 0 30px 35px
    }

    .section_07 .description {
        margin-bottom: 35px
    }

    #course-recommended .post-wrapper {
        padding-top: 50px
    }

    .menu-left .nav.navbar-nav li a {
        padding: 15px 10px
    }

    .menu-left .nav.navbar-nav {
        margin-left: 35px
    }

    .egypt-banner-image {
        display: none
    }

    .egypt-banner-content {
        left: 100px
    }

    .section_07 .header h2 {
        font-size: 35px
    }

    .home-top-courses .container-1400-clear {
        padding: 0 30px
    }

    .home-banner video {
        width: 140%;
        top: -110px
    }
}

@media (max-width: 1199px) {
    .slick-active + .slick-active + .slick-active + .slick-active .box:hover > .box-hover {
        left: -80px
    }

    .col-lg-3.courses-list-result {
        width: 50%
    }

    .section_04 .left-box {
        margin: 0
    }

    #footer-reviews {
        margin-top: 30px
    }

    #footer-downloads {
        margin-top: 30px
    }

    .left-card-holder {
        display: none
    }

    .left-card-holder-01 {
        display: none
    }

    .coaching-features-section {
        padding: 56px 30px
    }

    .expert-wrap {
        width: 33.33%;
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 70px
    }

    #board-of-directors-wrap .expert-wrap {
        width: 50%
    }

    .experts-related .expert-wrap {
        padding-left: 0;
        padding-right: 10px
    }

    .navbar.navbar-default input.form-control {
        width: 200px
    }

    .navbar.navbar-default input.form-control:focus {
        width: 220px
    }

    #courses-list-wrapper {
        padding-left: 40px;
        padding-right: 30px;
        background-color: #fafafa;
        overflow: hidden
    }

    .courses-filter .collapse-content {
        padding-top: 10px;
        padding-left: 5px
    }

    .post-wrapper {
        padding: 30px 30px 50px
    }

    .cart-wrapper {
        padding: 30px 50px 100px
    }

    .cart-sidebar {
        width: 40%
    }

    .gdpr {
        padding: 40px 100px
    }

    .courses-list-body .radiation-text-01 {
        display: none
    }

    .expert-category h3 {
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 10px
    }

    .why-mission span {
        margin-bottom: 10px
    }

    .why-mission p {
        font-size: 22px
    }

    #why-vision .why-mission-right {
        padding: 70px 100px 0 0;
        background: 0 0
    }

    #in-house-features-section {
        padding: 50px 78px 50px 38px
    }

    #in-house-features-section .in-house-feature-wrapper {
        height: 350px
    }

    .courses-list-promo-box .col-sm-5 {
        width: 45%
    }

    .courses-list-promo-box .col-sm-7 {
        width: 55%
    }

    .why-mission span {
        margin-bottom: 10px
    }

    .why-mission p {
        font-size: 22px
    }

    #why-vision .why-mission-right {
        padding: 70px 100px 0 0;
        background: 0 0
    }

    #why-franchise p {
        font-size: 24px;
        line-height: 1.2
    }

    .post-social-share img {
        margin-left: 5px
    }

    .elearn-plan {
        margin-bottom: 30px
    }

    .elearn-plan-features-wrap {
        height: 160px
    }

    .elearn-trial-headline {
        font-size: 36x
    }

    .elearn-trial-headline:after {
        display: none
    }

    .elearn-trial-headline {
        line-height: 1.2;
        height: auto
    }

    .elearn-libraries .container-1400-clear {
        padding: 0 80px
    }

    .elearn-pro-headline {
        height: auto
    }

    .elearn-pro {
        margin-bottom: 40px
    }

    .elearn-pros {
        padding: 40px 0 10px
    }

    .elearn-banner {
        height: 425px
    }

    .elearn-banner.lazyloaded {
        height: 425px
    }

    .elearn-plan-button {
        padding: 10px 30px;
        font-size: 15px
    }

    .careers-step-text {
        line-height: 1.4;
        height: 200px
    }

    .careers-step-wrap {
        padding-right: 10px
    }

    .careers-step-heading {
        font-size: 20px
    }

    .careers-step-heading span {
        font-size: 30px
    }

    .careers-submit-heading {
        font-size: 32px
    }

    .careers-features p {
        height: 250px
    }

    .careers-feature-wrap {
        height: 450px
    }

    .careers-steps .modal-body {
        padding: 0 70px 0 55px;
        text-align: justify
    }

    .home-banner-text p {
        display: none
    }

    .home-banner-wrap {
        padding-left: 0;
        padding-right: 0
    }

    .plans-button {
        width: 245px;
        margin-right: 20px
    }

    .plans-overview .col-sm-8 {
        width: 60%
    }

    .plans-overview .col-sm-4 {
        width: 40%
    }

    .container-1400-clear {
        width: auto;
        padding: 0 30px
    }

    .contact-header h2 {
        left: 30px
    }

    .contact-header h3 {
        left: 30px
    }

    .plans-banner-left {
        padding-left: 20px
    }

    .plans-overview {
        padding: 100px 35px
    }

    .plans-benefits {
        padding: 40px 50px 100px 35px
    }

    .all-directors-wrap {
        width: auto;
        padding: 70px 30px
    }

    .associations-wrapper {
        padding: 30px 30px 10px
    }

    .container-1400 {
        width: auto;
        padding: 70px 30px
    }

    .checkout-wrapper {
        padding-left: 30px;
        padding-right: 30px
    }

    .hse-banner h2 {
        font-size: 31px
    }

    #hse-helmet {
        position: absolute;
        top: 244px;
        right: 0;
        z-index: 2;
        width: 517px
    }

    #industrial-engineer {
        top: 111px;
        right: 9px;
        width: 500px
    }

    #industrial-grid {
        top: 230px;
        right: 271px
    }

    #industrial-banner h2 {
        font-size: 29px;
        line-height: 40px
    }

    #project-banner h2 {
        font-size: 29px;
        line-height: 40px
    }

    #project-man {
        top: 160px;
        right: -88px;
        width: 540px
    }

    .home-download-text img {
        display: inline-block
    }

    .home-testimonial-content {
        right: 20px
    }

    .home-testimonial-wrap-image {
        left: -74px;
        bottom: 0
    }

    .home-download-wrap h1 {
        font-size: 33px
    }

    .foundation-streams .foundation-support-headline {
        margin-bottom: 5px
    }

    .foundation-stream-headline {
        line-height: 1.2
    }

    .foundation-stream-wrap {
        margin-bottom: 5px
    }

    .foundation-activities-left {
        padding-right: 30px
    }

    .foundation-activities-right {
        padding-left: 30px
    }

    .navbar.navbar-default .navbar-form {
        margin-right: 0;
        padding-left: 0;
        padding-right: 0
    }

    .contact-header img {
        right: -60px;
        width: 450px
    }

    .contact-card-left {
        margin-right: 15px
    }

    .contact-card-right {
        margin-left: 15px
    }

    .contact-card-person-wide {
        left: -70px
    }

    #contact-card-corporate-profile .contact-card-person {
        left: -64px
    }

    #contact-card-oliver h4 br {
        display: none
    }

    .contact-card-corporate-left {
        width: 45%
    }

    .contact-card-corporate-right {
        width: 55%
    }

    #course-recommended .post-wrapper {
        width: 955px
    }

    .menu-left .nav.navbar-nav {
        margin-left: 35px
    }

    #contact-card-yousef h2 span {
        font-size: 38px
    }

    .egypt-banner-content {
        top: 130px
    }

    .calendar-modal .close {
        right: 50px
    }

    .calendar-modal .modal-content {
        padding: 48px 100px 82px 70px
    }

    .contact-us-form-left {
        padding-right: 0
    }

    .home-top-courses .col-sm-3 {
        width: 33.33%
    }

    .home-banner {
        height: 650px
    }

    .footer-other-links {
        padding-bottom: 40px
    }
}

@media (max-width: 991px) {
    .banner-text {
        margin-top: 20px
    }

    .slick-active + .slick-active + .slick-active .box:hover > .box-hover {
        left: -76px
    }

    #footer-reviews {
        margin-top: 30px
    }

    #footer-downloads {
        margin-top: 30px
    }

    .in-house-header .row:first-child {
        position: relative;
        transform: rotate(0deg);
        top: 0;
        left: 0;
        text-align: center
    }

    #in-house-header-coaching-men {
        background-size: cover
    }

    .course-section_03 .left-container .left-wrap {
        margin: 30px 0 0
    }

    #courses-list-wrapper {
        padding: 0 40px
    }

    .col-lg-3.courses-list-result {
        width: 50% !important
    }

    .coaching-step-text h4 {
        height: auto
    }

    .in-house-header h1 {
        font-size: 40px
    }

    .in-house-features-container {
        padding-right: 15px
    }

    .in-house-features .e-learning-benefits-box h3 {
        font-size: 33px;
        text-align: center;
        margin-top: 0
    }

    .in-house-features .e-learning-benefits-box-benefit {
        padding-top: 20px;
        padding-bottom: 20px;
        display: block;
        text-align: center
    }

    .in-house-features .e-learning-benefits-box p {
        padding-top: 10px !important;
        text-align: center
    }

    .video-buttons {
        display: none
    }

    .checkout-payment-button-wrapper {
        text-align: left
    }

    .section_02 .header h2 {
        text-align: left;
        font-size: 30px
    }

    .section_02 {
        padding-bottom: 65px
    }

    .section_02 .left-content {
        padding-bottom: 20px;
        padding-left: 10px;
        padding-right: 10px
    }

    .section_02 .left-content .img-wrap {
        padding-right: 0
    }

    .more-locations {
        text-align: center
    }

    .more-locations .btn.btn-default {
        border-radius: 0;
        -webkit-border-radius: 0;
        background-color: #FF7E00;
        color: #fff;
        transition: all .25s ease-in-out;
        margin-top: 20px;
        border: 1px solid #FF7E00
    }

    .more-locations .btn.btn-default:hover {
        border: 1px solid #FF7E00;
        background-color: transparent;
        color: #fff
    }

    .course-section_05 .header-text h2 {
        width: 100%
    }

    .section_02 .header h2 {
        text-transform: lowercase;
        font-size: 36px !important;
        padding-bottom: 10px !important;
        text-align: left !important
    }

    .section_02 .header.animation_element {
        margin: 40px 0
    }

    .section_05 h2 {
        text-transform: lowercase;
        font-size: 30px !important;
        padding-bottom: 10px !important;
        text-align: center
    }

    .slider-clients .slick-list.draggable {
        padding-top: 25px
    }

    .section_03 .header h2 {
        padding-bottom: 10px
    }

    .section_02 .header h2:after {
        content: '';
        position: absolute;
        width: 52px;
        height: 3px;
        background-color: #FF7E00;
        border: 2px solid #FF7E00;
        top: 100%;
        left: 27px;
        transform: translate(-50%)
    }

    .section_03 .header h2:after {
        content: '';
        position: absolute;
        width: 52px;
        height: 3px;
        background-color: #FF7E00;
        border: 2px solid #FF7E00;
        top: 100%;
        left: 27px;
        transform: translate(-50%)
    }

    .section_05 .slick-initialized .slick-slide {
        margin: 0 0
    }

    .section_05 .slider-clients .slick-list.draggable .slick-slide .img-wrap img {
        margin: initial
    }

    .show-tablet {
        display: block
    }

    .hidden-tablet {
        display: none
    }

    .all-directors-wrap {
        padding-left: 55px;
        padding-right: 55px
    }

    .container-1400 {
        padding-left: 55px;
        padding-right: 55px
    }

    .clients-slider .container-1400 {
        padding-left: 55px;
        padding-right: 55px
    }

    #franchise-contact .container-1400 {
        padding-left: 55px;
        padding-right: 55px
    }

    .coaching-features-section .container-1400 {
        padding: 0
    }

    .in-house-features .container-1400 {
        padding: 0
    }

    .in-house-fully-alligned .container-1400 {
        padding: 0
    }

    .in-house-pyramid .container-1400 {
        padding: 0
    }

    .expert-wrap {
        width: 50%;
        padding-left: 30px;
        padding-right: 30px
    }

    #board-of-directors-wrap .expert-wrap {
        width: 50%
    }

    .experts-related .expert-wrap {
        padding-left: 0;
        padding-right: 20px
    }

    .navbar.navbar-default input.form-control {
        width: 200px
    }

    .navbar.navbar-default input.form-control:focus {
        width: 200px
    }

    .navbar {
        display: none
    }

    .menu_second {
        display: none
    }

    .mobile-menu {
        display: block;
        width: 100%;
        position: fixed;
        top: 0;
        z-index: 100000000000000;
        color: #393f44
    }

    #mobile-menu-main {
        position: fixed;
        top: 40px;
        transition: top .3s
    }

    .mobile-menu-up {
        top: -100px;
        transition: top .3s
    }

    .mobile-menu-down {
        top: 0;
        transition: top .3s
    }

    .mobile-menu-content-down {
        top: 100px;
        transition: top .3s
    }

    .middle-content {
        margin-top: 60px;
        z-index: 1
    }

    .middle-content-darken {
        position: fixed;
        top: 0;
        background-size: fill;
        height: 100%;
        width: 100%;
        background-color: grey;
        z-index: 10;
        opacity: 0;
        display: none
    }

    .mobile-menu-above-header {
        height: 40px;
        width: 100%;
        text-align: center;
        background-color: #5c6b77;
        color: #464242;
        display: block
    }

    .mobile-menu-above-header a i {
        font-size: 20px;
        color: #fff;
        margin-right: 10px;
        line-height: 40px;
        vertical-align: middle
    }

    .mobile-menu-above-header a i:hover {
        color: #c7c7c7
    }

    .mobile-menu-header {
        display: block;
        height: 60px;
        padding: 5px 15px;
        background-color: #fff
    }

    .mobile-menu-header img {
        position: absolute;
        height: 50px;
        left: 50%;
        margin-left: -90px
    }

    .mobile-menu-header button {
        border: none;
        outline: none;
        background: 0 0;
        font-size: 20px;
        padding-left: 0
    }

    .mobile-menu-header .hamburger {
        padding: 9px 0 15px
    }

    @-webkit-keyframes showFromLeft {
        0% {
            opacity: 0;
            -webkit-transform: translateX(-1000px)
        }
        100% {
            -webkit-transform: translateX(0)
        }
    }@keyframes showFromLeft {
         0% {
             opacity: 0;
             -webkit-transform: translateX(-1000px)
         }
         100% {
             -webkit-transform: translateX(0)
         }
     }@-webkit-keyframes hideLeft {
          0% {
              -webkit-transform: translateX(0)
          }
          100% {
              -webkit-transform: translateX(-1000px)
          }
      }@keyframes hideLeft {
           0% {
               -webkit-transform: translateX(0)
           }
           100% {
               -webkit-transform: translateX(-1000px)
           }
       }.mobile-menu-main {
            width: 75%;
            background-color: rgba(250, 250, 250, .97);
            top: 60px;
            z-index: 100000;
            height: 100vh;
            overflow-y: scroll;
            padding-bottom: 150px;
            position: fixed
        }

    #mobile-menu-content {
        display: none
    }

    .mobile-menu-main::-webkit-scrollbar {
        width: 0
    }

    .mobile-menu-main input {
        width: 100%;
        padding: 25px 50px 25px 15px;
        border: none;
        border-bottom: 1px solid #dfdfdf;
        border-radius: 0;
        color: #fff;
        background-color: #a1a1a1
    }

    .mobile-menu-main input::placeholder {
        color: #e2e2e2
    }

    .mobile-menu-main input:-ms-input-placeholder {
        color: #e2e2e2
    }

    .mobile-menu-main input::-webkit-input-placeholder {
        color: #e2e2e2
    }

    .mobile-menu-main .form-group {
        position: relative;
        margin-bottom: 0;
        color: #fff
    }

    .mobile-menu-main .form-group i {
        color: #fff
    }

    .mobile-menu-first-level {
        padding: 15px;
        margin: 0;
        border-bottom: 1px solid #dfdfdf;
        width: 100%;
        text-transform: uppercase;
        font-weight: 700;
        position: relative
    }

    .mobile-menu-first-level a {
        margin: 0;
        padding: 0;
        text-decoration: none;
        color: #393f44
    }

    .mobile-menu-first-level:hover {
        color: #FF7E00
    }

    #mobile-menu-language:hover {
        color: #393f44
    }

    #mobile-menu-language a:hover {
        color: #FF7E00
    }

    .mobile-menu-first-level i {
        margin-right: 10px
    }

    .mobile-menu-first-level-arrow {
        position: absolute;
        right: 0;
        top: 0;
        color: #393f44;
        border-left: 1px solid #dfdfdf;
        padding: 15px;
        width: 43px;
        text-align: center;
        cursor: pointer
    }

    .mobile-menu-main .fa-chevron-down {
        transform: rotate(0deg);
        transition: transform .25s linear
    }

    .mobile-menu-main .fa-chevron-down.open {
        transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transition: transform .25s linear;
        color: #FF7E00
    }

    .mobile-menu-second-level {
        padding: 10px 15px;
        margin: 0;
        border-bottom: 1px solid #dfdfdf;
        width: 100%;
        text-transform: capitalize;
        font-weight: 400
    }

    .mobile-menu-second-level:hover {
        color: #FF7E00
    }

    .mobile-menu-second-level p {
        margin: 0;
        padding: 0
    }

    .mobile-menu-second-level a {
        margin: 0;
        padding: 0;
        text-decoration: none;
        color: #393f44
    }

    #courses-list-wrapper {
        padding: 0 15px
    }

    #courses-list-top-margin {
        margin-top: 10px;
        display: none
    }

    #courses-list-grid {
        text-align: left
    }

    #courses-list-grid-icons {
        display: none
    }

    .courses-list-header-text h2 {
        font-size: 40px
    }

    #courses-list-first-row {
        width: 100%
    }

    #courses-list-hamburger {
        display: block
    }

    #courses-list-hamburger button:focus {
        outline: none;
        color: #00a0a6
    }

    #courses-list-grid-custom-select {
        margin-top: 15px;
        display: block;
        text-align: right
    }

    .custom-select {
        margin-left: 0;
        margin-right: 0
    }

    .courses-filter:before {
        width: 100%
    }

    #courses-list-header {
        background-image: url(../images/courses-list/courses_list_header.png);
        height: 150px;
        border-bottom: 5px solid #00a0a6;
        position: relative;
        background-position: top center
    }

    .courses-list-header-text {
        position: absolute;
        top: 0;
        left: 0
    }

    .courses-list-header-text h2 {
        font-size: 30px
    }

    #courses-list-grid {
        padding: 0;
        padding-right: 0;
        text-align: right
    }

    #courses-list-grid-icons {
        display: none
    }

    .custom-select {
        position: relative;
        display: inline-block;
        margin-left: 30px
    }

    .custom-select select {
        display: none
    }

    #courses-list-grid-custom-select .select-selected {
        background-color: transparent;
        color: #5d6b78;
        text-align: left;
        border-bottom: 1px solid #757575;
        border-color: transparent transparent #757575 transparent
    }

    #courses-list-grid-custom-select .select-selected {
        width: 100%;
        font-size: 16px
    }

    .select-selected:after {
        position: absolute;
        content: "";
        top: 8px;
        right: 5px;
        width: 0;
        height: 0;
        border: 5px solid transparent;
        border-color: #757575 transparent transparent transparent
    }

    .select-selected.select-arrow-active:after {
        border-color: transparent transparent #757575 transparent;
        top: 3px
    }

    .select-items div, .select-selected {
        color: #5d6b78;
        padding: 0 25px 0 0;
        cursor: pointer;
        text-align: left
    }

    .select-items {
        position: absolute;
        background-color: #fff;
        color: #5d6b78;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 99
    }

    .select-hide {
        display: none
    }

    .select-items div:hover, .same-as-selected {
        background-color: rgba(0, 0, 0, .1);
        color: #5d6b78
    }

    .courses-filter {
        width: 75%;
        background-color: rgba(250, 250, 250, .97);
        top: 0;
        z-index: 100000;
        height: 100vh;
        overflow-y: scroll;
        position: fixed
    }

    #courses-filter-menu {
        display: none
    }

    .courses-filter:before {
        content: "";
        display: block;
        margin: 0 auto;
        width: 95%;
        border-top: 1px solid #757575
    }

    .courses-filter h3 {
        text-transform: uppercase;
        font-size: 16px;
        padding-left: 30px;
        font-weight: 700;
        margin-bottom: 30px
    }

    .filter-public-online {
        padding-left: 30px;
        margin-bottom: 30px
    }

    .filter-public-online-checkbox {
        margin-right: 40px;
        display: inline-block;
        position: relative;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none
    }

    .filter-public-online-checkbox .custom-label {
        margin-left: 25px
    }

    .filter-public-online-checkbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0
    }

    .filter-public-online-checkbox .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 17px;
        width: 17px;
        background-color: #fff;
        border-radius: 4px;
        border: 1px solid #00a0a6;
        margin-top: 2px
    }

    .filter-public-online-checkbox:hover input ~ .checkmark {
        background-color: #ccc
    }

    .checkmark:after {
        content: "";
        position: absolute;
        display: none
    }

    .filter-public-online-checkbox input:checked ~ .checkmark:after {
        display: block
    }

    .filter-public-online-checkbox .checkmark:after {
        left: 4px;
        top: 1px;
        width: 6px;
        height: 10px;
        border: solid #0c0c0c;
        border-width: 0 2px 2px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    .courses-list-results-wrapper {
        margin-top: 0;
        padding: 5px 10px
    }

    .courses-list-promo-box {
        display: none
    }

    .courses-list-result {
        padding: 0;
        margin-top: 0;
        margin-bottom: 25px;
        border: 0
    }

    #courses-list-hamburger {
        font-size: 16px
    }

    #courses-list-hamburger .hamburger {
        padding: 15px 5px
    }

    #courses-list-hamburger i {
        margin-right: 7px
    }

    .courses-filter-hiring-text {
        padding: 20px
    }

    .courses-filter-hiring-text h3 {
        padding-left: 0
    }

    .course-socil-links {
        display: none
    }

    .top-rated-courses-category h3 {
        padding-left: 0;
        margin-bottom: 0
    }

    .courses-filter-tags h3 {
        padding-left: 0;
        margin-bottom: 0
    }

    .second-panel .left-part {
        border-right: 0
    }

    .second-panel .right-part {
        margin: 20px 0 0
    }

    .footer-other-links {
        text-align: left
    }

    .courses-list-results-wrapper {
        width: 100%
    }

    .in-house-feature-wrapper {
        padding-left: 0;
        padding-right: 0
    }

    .in-house-features h2 {
        text-align: center
    }

    .in-house-features h4 {
        text-align: center
    }

    .in-house-feature-wrapper {
        height: auto
    }

    .banner-section {
        height: 360px
    }

    .banner-section.lazyloaded {
        background: url(../images/radiating-banner2.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 360px
    }

    .section_04.lazyloaded {
        background-image: url(../images/coaching-background-mobile.jpg)
    }

    .post-download-catalogue img {
        width: 50%
    }

    .post-recent-wrap-img {
        height: 120px
    }

    .cart-total-wrap {
        margin-top: 50px
    }

    .cart-sidebar {
        width: 45%
    }

    .why-top-quality-right {
        padding-left: 0;
        margin-top: 30px
    }

    .why-mission-left {
        padding: 50px
    }

    .why-mission p {
        font-size: 23px
    }

    #why-vision .why-mission-right {
        padding: 50px;
        height: auto
    }

    #in-house-features-section .in-house-feature-wrapper {
        height: 280px
    }

    #in-house-features-section .in-house-features {
        padding: 50px 78px
    }

    .in-house-time-venue {
        padding-left: 50px
    }

    .in-house-pyramid-left {
        padding-right: 0
    }

    .in-house-pyramid {
        padding: 50px 78px
    }

    .e-learning-packages {
        padding-left: 25px;
        padding-right: 50px
    }

    .in-house-time-venue {
        margin-top: 70px
    }

    #in-house-features-section {
        padding: 50px 78px
    }

    .in-house-fully-alligned {
        padding-left: 70px;
        padding-right: 70px
    }

    .in-house-pyramid-grey-box {
        padding: 25px 78px 45px
    }

    .coaching-features-left {
        padding-right: 0
    }

    .billing-details-wrap {
        margin-bottom: 30px
    }

    .billing-your-order-wrap {
        padding-left: 0
    }

    .why-mission-left {
        padding: 50px
    }

    .why-mission p {
        font-size: 23px
    }

    #why-vision .why-mission-right {
        padding: 50px;
        height: auto
    }

    .franchise-form {
        padding: 25px 30px 30px
    }

    .franchise-form p {
        margin-bottom: 20px
    }

    #franchise-contact img {
        display: none
    }

    .franchise-contact-right {
        padding-bottom: 55px;
        margin: 0 auto;
        width: fit-content
    }

    .why-franchise-leoron-wrap img {
        height: 100px
    }

    .post-left-panel {
        padding-right: 0
    }

    .container-1400-clear {
        width: auto;
        padding: 0 55px
    }

    .contact-header h2 {
        left: 55px
    }

    .contact-header h3 {
        left: 55px
    }

    .container.custom {
        width: auto;
        padding: 0 55px
    }

    .elearn-plan-features-wrap {
        height: 140px
    }

    .elearn-trial-content {
        padding: 30px 30px 0 40px
    }

    .digital-mockup {
        height: 500px
    }

    .digital-mockup.lazyloaded {
        height: 500px
    }

    .elearn-banner {
        height: 370px
    }

    .elearn-banner.lazyloaded {
        height: 370px
    }

    #collapse-top-rated-courses .top-rated-courses-text img {
        width: 12px
    }

    .careers-header-color {
        height: 500px
    }

    #careers-header {
        height: 500px
    }

    .careers-step-text {
        line-height: 1.5;
        font-size: 16px
    }

    .careers-step-heading {
        font-size: 20px;
        letter-spacing: -.5px
    }

    .career-pro-wrap {
        width: 150px
    }

    .careers-feature-wrap {
        height: 380px
    }

    #careers-header h1 {
        margin-bottom: 140px;
        font-size: 45px;
        line-height: 1.1
    }

    .careers-steps .modal-body {
        padding: 0 55px;
        text-align: justify
    }

    .home-banner-text {
        left: 50px;
        top: 60px
    }

    .home-banner-social {
        display: none
    }

    #home-engineer {
        right: -40px
    }

    .home-banner-wrap .footer-endline-1 {
        padding: 25px 0 25px 30px
    }

    .home-banner-wrap .footer-endline-links-img img {
        height: 25px
    }

    .home-banner-wrap .footer-endline-1 p {
        font-size: 14px;
        color: #5d6b78;
        padding: 0;
        padding-top: 0;
        margin: 0
    }

    .plans-banner-man {
        display: none
    }

    .plans-banner-grid {
        display: none
    }

    .plans-banner-left {
        padding: 10px 25px 50px
    }

    .plans-banner {
        height: auto
    }

    .plans-overview .col-sm-8 {
        width: 50%
    }

    .plans-overview .col-sm-4 {
        width: 50%
    }

    .plans-overview-left {
        padding-right: 10px
    }

    .plans-manager button {
        width: 100%
    }

    #plans-benefits-grid {
        top: 55px;
        left: 200px
    }

    #project-banner:after {
        border-bottom: none
    }

    #hse-waves {
        display: none
    }

    #industrial-banner h2 {
        font-size: 31px;
        line-height: 40px
    }

    #project-banner h2 {
        font-size: 31px;
        line-height: 40px
    }

    #industrial-overview .plans-overview-left p {
        margin-bottom: 0
    }

    .orders-tr button {
        width: 100%;
        margin-top: 7px
    }

    .order-mobile-course-date {
        margin-bottom: 10px
    }

    .order-mobile-course-date {
        margin-bottom: 10px
    }

    .order-mobile-participants {
        margin-bottom: 3px
    }

    .order-mobile-course-name {
        font-weight: 600
    }

    #home-services-left {
        padding-left: 15px !important;
        padding-right: 15px !important
    }

    #home-services-right {
        margin-top: 30px;
        padding-left: 15px !important;
        padding-right: 15px !important
    }

    .home-service-wrap {
        height: 650px
    }

    .home-service-shorter {
        height: 315px
    }

    #home-services-consultancy .home-service-img {
        width: 90%;
        right: 0
    }

    #home-services-elearning .home-service-img {
        width: 100%;
        right: 0;
        bottom: 0
    }

    #home-download-left {
        padding-left: 15px
    }

    #home-download-right {
        padding-right: 15px
    }

    .home-download-wrap h1 {
        font-size: 35px
    }

    .home-locations-outer .col-sm-2 {
        width: 33.33%;
        padding-right: 10px;
        padding-left: 10px;
        margin-bottom: 20px
    }

    .home-categories-outer .col-sm-2 {
        width: 33.33%
    }

    .home-benefits-outer .col-sm-2 {
        width: 33.33%;
        margin-bottom: 50px
    }

    .home-testimonial-wrap-image {
        left: -124px;
        bottom: 58px;
        width: 600px
    }

    .home-testimonials {
        padding-left: 0
    }

    .home-testimonial-content {
        right: 0;
        top: 78px
    }

    #home-locations-grid-right {
        display: none
    }

    .home-categories {
        padding: 70px 0 50px
    }

    .home-categories .home-heading {
        margin-bottom: 15px
    }

    .home-categories .home-heading-right {
        margin-bottom: 35px
    }

    .home-benefits {
        padding: 20px 0 50px
    }

    .footer {
        padding-bottom: 60px
    }

    .home-service-button {
        display: inline-block
    }

    .home-service-wrap:hover .home-service-button {
        -webkit-animation: 0;
        -moz-animation: 0;
        -o-animation: 0;
        animation: 0
    }

    .home-subheading .show-tablet {
        display: inline-block
    }

    .home-subheading .hidden-tablet {
        display: none
    }

    .home-download-wrap h3 {
        margin-top: 15px;
        margin-bottom: 0
    }

    .home-download-wrap {
        padding: 25px 0 10px 30px
    }

    .home-testimonial-wrap-image {
        bottom: 0
    }

    #testimonial-kfas {
        bottom: -120px;
        left: -60px
    }

    .home-services {
        border-top: 0;
        padding-top: 70px
    }

    .home-locations .slick-slide {
        opacity: 1
    }

    .home-download-wrap img {
        display: none
    }

    #home-services-coaching .home-service-img {
        width: 100%;
        right: 0
    }

    .section_01 {
        background-color: #fff
    }

    .most-popular-courses-slider .loader {
        background: url(../images/loader-dots.gif) no-repeat #fff;
        background-position: 50% 10%;
        position: absolute
    }

    #foundation-header {
        height: 500px
    }

    #foundation-header h2 {
        margin-bottom: 90px
    }

    #foundation-header h1 {
        margin-bottom: 130px
    }

    .foundation-outer .pl-0 {
        padding-left: 15px
    }

    .foundation-outer .pr-0 {
        padding-right: 15px
    }

    .foundation-support-text {
        height: auto
    }

    .foundation-support-image {
        height: 600px;
        background-position: center center
    }

    .foundation-streams .foundation-support-headline {
        margin-bottom: 25px
    }

    .foundation-stream-wrap {
        margin-bottom: 25px
    }

    .foundation-steps .careers-step-wrap {
        padding-right: 15px
    }

    .foundation-activities-left {
        padding-right: 15px
    }

    .foundation-activities-right {
        padding-left: 15px
    }

    .foundation-hands {
        height: 600px
    }

    #foundation-logo {
        bottom: 20px;
        right: 20px;
        width: 250px
    }

    .contact-header img {
        display: none
    }

    .contact-card-person {
        left: 10px
    }

    #contact-card-corporate-profile .contact-card-person {
        top: 40px;
        left: -15px
    }

    .contact-card-grid {
        left: 40px
    }

    .contact-card-left {
        margin-right: 0
    }

    .contact-card-right {
        margin-left: 0
    }

    #course-recommended .post-wrapper {
        width: 735px
    }

    #contact-card-yousef h2 span {
        font-size: 40px
    }

    .home-heading {
        font-size: 35px
    }

    .home-heading-bullet {
        display: none
    }

    .bilingual-header .col-sm-5 {
        width: 100%
    }

    .home-heading-left {
        text-align: center
    }

    .home-heading-right {
        text-align: center
    }

    .calendar-modal .modal-lg {
        width: 100%
    }

    .calendar-modal .close {
        top: 60px;
        z-index: 1000000
    }

    .contact-us-form-wrap h3 br {
        display: none
    }

    .home-banner {
        height: 450px
    }

    .footer-other-links {
        padding-bottom: 40px
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .courses-filter .collapse-content {
        padding-left: 5px
    }
}

@media (max-width: 767px) {
    .menu_second ul {
        float: none;
        text-align: center;
        padding: 0
    }

    .menu_second ul li {
        padding: 10px 5px
    }

    .box-hover {
        display: none
    }

    .slick-slide .box:hover > .box-hover {
        display: none
    }

    .all-courses {
        margin-top: 10px
    }

    .section_03 {
        padding: 50px 0 40px
    }

    .section_04 {
        padding: 70px 0
    }

    .footer .gradient-box {
        width: 200%;
        margin-left: -50%;
        overflow: hidden;
        height: 3px;
        margin-bottom: 25px
    }

    #footer-reviews {
        margin-top: 30px
    }

    #footer-downloads {
        margin-top: 25px
    }

    .footer-endline-1 p {
        margin-bottom: 15px
    }

    #footer-logo {
        margin-bottom: 20px;
        width: 50%;
        padding-left: 0
    }

    #footer-logo img {
        width: 80%
    }

    #footer-logo p {
        text-align: center;
        display: none
    }

    #footer-contact-us {
        width: 55%;
        text-align: left
    }

    #footer-explore {
        width: 45%;
        text-align: left;
        margin-top: 0
    }

    #footer-stay-connected {
        width: 100%;
        text-align: center;
        margin-top: 20px;
        display: none
    }

    #footer-downloads {
        text-align: left;
        padding-left: 0;
        padding-right: 0
    }

    #footer-button-download {
        padding: 15px 20px;
        border: 0;
        font-size: 14px;
        font-weight: 400
    }

    #footer-downloads h3 {
        display: none
    }

    #footer-language {
        display: none
    }

    #footer-language-mobile {
        display: block
    }

    #footer-reviews {
        display: block
    }

    #in-house-header-coaching-men {
        height: 350px
    }

    .in-house-header h1 {
        font-size: 42px;
        padding-left: 10px;
        padding-right: 10px
    }

    .in-house-header h2 {
        font-size: 26px
    }

    .coaching-features-section {
        padding: 35px 30px
    }

    .coaching-features-left {
        padding-right: 15px
    }

    #in-house-header-buttons button {
        margin-bottom: 20px
    }

    .why-in-house h1 {
        margin-top: 25px;
        font-size: 40px
    }

    .why-in-house h2 {
        font-size: 24px;
        line-height: 1.2
    }

    #moving-objects-right-center {
        display: none
    }

    #moving-objects-right-bottom {
        display: none
    }

    #moving-objects-left-bottom {
        display: none
    }

    #moving-objects-left-center {
        display: none
    }

    .in-house-features {
        padding: 50px 40px
    }

    .in-house-feature-wrapper {
        margin-bottom: 50px;
        height: auto
    }

    .in-house-pyramid {
        padding: 0 20px 20px
    }

    .in-house-pyramid-left {
        padding-right: 15px
    }

    .in-house-fully-alligned h1 {
        font-size: 44px;
        margin-bottom: 0
    }

    .in-house-fully-alligned h2 {
        font-size: 23px
    }

    .in-house-pyramid-right {
        padding: 0 15px
    }

    .in-house-pyramid-right p {
        margin-bottom: 45px
    }

    .in-house-fully-alligned {
        margin-bottom: 0
    }

    .banner-section2-wrapper {
        height: 300px;
        overflow: hidden;
        width: 100%;
        position: relative
    }

    .banner-section2 {
        height: 440px;
        overflow: hidden;
        width: 1920px;
        position: absolute;
        left: 50%;
        margin-left: -960px;
        display: none
    }

    .box .courses-list-result-image {
        height: 120px;
        width: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
        overflow: hidden
    }

    .box .courses-list-result-text h3 {
        color: #5d6b78;
        font-size: 18px;
        height: 44px;
        font-weight: 700;
        margin-top: 0;
        padding-top: 0;
        line-height: 1.2;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        font-family: Titillium Web;
        font-weight: 600;
        margin-bottom: 1px
    }

    .box .courses-list-result-text p {
        font-family: Titillium Web;
        font-size: 15px;
        color: #5d6b78;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 4px;
        height: 19px
    }

    .box .courses-list-result-text h3 p {
        color: #5d6b78;
        font-size: 18px;
        height: 44px;
        font-weight: 700;
        margin-top: 0;
        padding-top: 0;
        line-height: 1.2;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        font-family: Titillium Web;
        font-weight: 600;
        margin-bottom: 3px
    }

    .section_01 .section-header h2:after {
        height: 3px
    }

    .section_01 .courses-list-result-inner {
        margin-left: 0;
        margin-right: 0
    }

    #courses-list-hamburger {
        color: #5d6b78
    }

    .all-directors-wrap {
        padding-left: 30px;
        padding-right: 30px
    }

    .container-1400 {
        padding-left: 30px;
        padding-right: 30px
    }

    .clients-slider .container-1400 {
        padding-left: 30px;
        padding-right: 30px
    }

    #franchise-contact .container-1400 {
        padding-left: 30px;
        padding-right: 30px
    }

    .in-house-features .container-1400 {
        padding: 0
    }

    .in-house-fully-alligned .container-1400 {
        padding: 0
    }

    .in-house-pyramid .container-1400 {
        padding: 0
    }

    .coaching-features-section .container-1400 {
        padding: 0
    }

    .expert-wrap {
        width: 50%;
        padding-left: 30px;
        padding-right: 30px
    }

    .experts-related .expert-wrap {
        padding-left: 0;
        padding-right: 20px
    }

    .in-house-header .row:first-child {
        display: none
    }

    #in-house-header-man {
        height: 300px
    }

    #in-house-features-green-box-plane {
        top: 160px;
        right: -60px
    }

    #in-house-features-green-box-plane img {
        width: 150px
    }

    .in-house-pyramid {
        padding: 0 0 20px
    }

    .in-house-pyramid-left {
        padding-right: 0;
        padding-left: 0
    }

    .in-house-pyramid-right {
        padding: 0 70px 45px
    }

    .in-house-features h3 {
        font-size: 19px
    }

    .associations-wrapper {
        padding: 30px 50px 10px
    }

    .association-wrap {
        padding-left: 30px;
        padding-right: 15px;
        padding-bottom: 15px
    }

    .in-house-features-green-box {
        padding: 30px 40px 35px
    }

    .in-house-pyramid-right h3 {
        margin-bottom: 20px
    }

    .post-wrapper {
        padding: 30px 15px
    }

    .cart-tr-course p, .cart-tr-price p, .cart-tr-increment .form-group, .cart-tr-total {
        display: inline-block
    }

    .cart-th {
        display: none
    }

    .cart-tr-course {
        display: block
    }

    .cart-tr-course .dateAndLocationLabel {
        display: block;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        margin-bottom: 4px
    }

    .cart-tr-price, .cart-tr-increment, .cart-tr-total {
        display: table;
        height: 25px;
        text-align: right;
        width: 100%
    }

    .cart-tr {
        border-top: none
    }

    .show-xs {
        display: block
    }

    .cart-tr-course {
        font-weight: 700
    }

    .cart-tr-title-xs {
        font-weight: 400
    }

    .quantity-increment .form-control {
        height: 20px
    }

    .counter-down, .counter-up {
        padding: 2px 4px
    }

    .cart-tr-increment .form-group {
        vertical-align: 0
    }

    .cart-wrapper {
        padding: 30px 15px 100px
    }

    #cart-tr-participants-wrapper {
        width: 70%
    }

    #cart-tr-increment-wrapper {
        width: 30%
    }

    .post-header h1 {
        font-size: 44px
    }

    .cart-sidebar {
        width: 55%
    }

    .cart-sidebar-item-wrap p {
        margin-top: 5px;
        margin-bottom: 8px
    }

    .course-section_05 .catalog-images {
        width: 112%
    }

    .gdpr {
        padding: 40px 50px
    }

    .gdpr-button {
        margin-top: 20px
    }

    .banner-postlist h1 {
        font-size: 50px
    }

    .cart-sidebar-item-price {
        margin-top: -6px !important
    }

    .expert-category h3 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 10px
    }

    .who-top-quality {
        background-color: #e5eae9;
        padding: 60px 50px
    }

    .leoron-office {
        background-position: top center;
        height: 400px
    }

    .who-radiating {
        display: none
    }

    #in-house-features-section .in-house-feature-wrapper {
        height: 280px
    }

    .in-house-pyramid-man {
        margin-top: 60px
    }

    #in-house-features-section {
        padding: 50px 78px
    }

    .in-house-pyramid-grey-box {
        padding: 25px 78px 45px
    }

    .in-house-fully-alligned {
        margin-bottom: 0;
        padding-left: 78px;
        padding-right: 78px
    }

    .franchise-video-laptop {
        display: none
    }

    .franchise-video video {
        position: relative;
        width: 100%;
        top: 0;
        left: 0;
        margin-left: 0
    }

    .operating-sector {
        width: 33.33%
    }

    .franchise-operating-sectors h2 {
        font-size: 45px
    }

    .franchise-why-video h3 {
        font-size: 45px
    }

    .grey-container h2 {
        font-size: 45px
    }

    #why-franchise p {
        font-size: 22px;
        height: 120px
    }

    .why-franchise-leoron-wrap {
        padding-left: 10px;
        padding-right: 10px;
        width: 50%
    }

    .franchising-available-countries p {
        font-size: 25px
    }

    .grey-container {
        padding-left: 30px;
        padding-right: 30px
    }

    #franchise-form-wrap .container-1400 {
        padding-left: 0;
        padding-right: 0
    }

    .expert-radiating {
        display: none
    }

    .post-social-share img {
        width: 30px
    }

    .container-1400-clear {
        width: auto;
        padding: 0 30px
    }

    .contact-header h2 {
        left: 30px
    }

    .contact-header h3 {
        left: 30px
    }

    .container.custom {
        width: auto;
        padding: 0 30px
    }

    .elearn-trial-content {
        padding: 60px 30px
    }

    .elearn-trial-headline {
        margin-bottom: 0;
        height: auto;
        margin-bottom: 25px
    }

    .elearn-trial-content {
        height: auto
    }

    .elearn-usa {
        padding: 44px 0
    }

    .elearn-libraries .container-1400-clear {
        padding: 0 55px
    }

    .elearn-pros .container-1400-clear {
        padding-left: 30px;
        padding-right: 30px
    }

    .digital-mockup {
        height: 450px
    }

    .digital-mockup.lazyloaded {
        height: 450px
    }

    #elearn-header .row:first-child {
        display: block
    }

    .elearn-banner {
        height: 280px
    }

    .elearn-banner.lazyloaded {
        height: 280px
    }

    .cart-wrapper .productPrice {
        margin-top: 0 !important
    }

    .product-discount {
        display: inline-block;
        margin-top: 0
    }

    .product-original-price {
        margin-top: 0
    }

    .cart-tr-price {
        display: table !important
    }

    #cart-tr-participants-wrapper {
        width: 60%
    }

    #cart-tr-increment-wrapper {
        width: 40%
    }

    #cart-tr-price-row {
        padding-left: 0;
        padding-right: 15px
    }

    .braedcrumb-wrapper {
        padding-left: 15px;
        padding-right: 15px
    }

    #careers-header h1 {
        margin-bottom: 145px
    }

    .careers-step-wrap {
        text-align: center;
        margin-bottom: 70px
    }

    .careers-step-text {
        height: auto
    }

    .career-pro-circle {
        left: 50% !important;
        margin-left: -13px
    }

    .careers-steps .modal-dialog {
        width: 80%;
        margin: 0 auto;
        margin-top: 30px
    }

    .careers-steps {
        padding: 70px 0 0
    }

    .careers-submit .col-sm-5 {
        width: 100%
    }

    .careers-submit .col-sm-7 {
        display: none
    }

    .careers-submit-form {
        padding-right: 0
    }

    .careers-submit {
        padding: 45px 0
    }

    .career-pro-wrap {
        height: 360px
    }

    .careers-pros .career-pro-circle {
        margin-left: -86px
    }

    .careers-pros {
        padding: 100px 0 0
    }

    .careers-feature-wrap {
        height: auto;
        text-align: center;
        margin-bottom: 60px
    }

    .careers-features .career-pro-circle {
        left: 50% !important;
        margin-left: -56px;
        margin-top: 7px
    }

    .careers-features p {
        height: auto
    }

    .careers-steps .modal-body {
        text-align: justify
    }

    #careers-header h1 {
        margin-bottom: 70px
    }

    .careers-posts .all-courses .btn.btn-default {
        margin-top: 0
    }

    .careers-why p {
        font-size: 21px
    }

    #home-engineer {
        right: -40px;
        width: 375px
    }

    .home-banner-wrap .footer-endline-1 .col-sm-7 {
        width: 100%;
        padding-left: 0;
        margin-bottom: 15px
    }

    .home-banner-wrap .footer-endline-1 .col-sm-5 {
        width: 100%
    }

    .home-banner-wrap .footer-endline-1 {
        padding: 25px 15px
    }

    .plans-banner-left {
        padding: 0 30px 50px
    }

    .plans-overview .col-sm-4 {
        width: 100%
    }

    .plans-overview .col-sm-8 {
        width: 100%
    }

    .plans-overview-left {
        padding-right: 0;
        margin-bottom: 90px
    }

    .plans-overview {
        padding: 60px 45px 75px
    }

    #plans-benefits-computer {
        display: none
    }

    #plans-benefits-grid {
        display: none
    }

    .plans-benefits {
        padding: 40px 45px 100px
    }

    .plans-button {
        width: 100%;
        margin-bottom: 20px;
        margin-right: 0
    }

    .course-section-recommended .left-wrap .header-text h2 {
        font-size: 24px
    }

    .course-section-recommended .left-wrap .header-text h2 span {
        font-size: 18px
    }

    .home-service-wrap {
        height: 550px
    }

    .home-service-shorter {
        height: 265px
    }

    #home-download-left {
        margin-bottom: 50px
    }

    #home-download-right {
        padding-left: 15px;
        padding-right: 12px
    }

    .home-download-wrap img {
        display: block
    }

    .home-download-text img {
        display: inline-block
    }

    .home-locations-outer .col-sm-2 {
        width: 33.33%;
        padding-right: 10px;
        padding-left: 10px;
        margin-bottom: 20px
    }

    .home-category-wrap {
        padding: 41px 15px 0
    }

    .home-category-wrap h4 {
        font-size: 17px
    }

    .home-testimonial-wrap-image {
        display: none !important
    }

    .home-testimonial-content {
        display: block;
        width: 100%
    }

    .home-testimonials {
        padding-left: 15px
    }

    #home-services-grid {
        display: none
    }

    #home-services-grid-inner {
        display: none
    }

    #home-categories-grid-right {
        display: none
    }

    #home-categories-grid-left {
        display: none
    }

    .home-heading {
        font-size: 30px;
        margin-bottom: 10px
    }

    .home-testimonial-content {
        right: 0;
        top: 51px
    }

    .home-download-wrap h1 {
        font-size: 36px;
        margin-bottom: 10px
    }

    #home-download-catalog-img {
        transform: scale(.8);
        -webkit-transform: scale(.8)
    }

    #home-download-calendar-img {
        transform: scale(.8);
        -webkit-transform: scale(.8)
    }

    #home-download-calendar:hover #home-download-calendar-img {
        transform: rotate(20deg) scale(.8)
    }

    #home-download-catalog:hover #home-download-catalog-img {
        transform: rotate(-20deg) scale(.8)
    }

    .home-download-wrap img {
        right: -51px;
        bottom: -28px
    }

    .home-download-outer {
        padding-top: 0;
        overflow: visible;
        padding-left: 15px;
        padding-right: 15px
    }

    #home-download-left {
        padding-top: 50px;
        margin-bottom: 0;
        overflow: hidden;
        padding-left: 0;
        padding-right: 0
    }

    #home-download-right {
        padding-top: 60px;
        overflow: hidden;
        padding-left: 0;
        padding-right: 0
    }

    .home-download-text img {
        right: 0;
        bottom: 0
    }

    #home-services-elearning .home-service-img {
        width: 100%
    }

    .home-service-wrap h2 {
        font-weight: 400
    }

    .home-service-wrap h2 span {
        font-weight: 400
    }

    #foundation-header h2 {
        margin-bottom: 90px
    }

    #foundation-header h1 {
        margin-bottom: 90px
    }

    #foundation-header br {
        display: none
    }

    .foundation-steps .careers-step-wrap {
        margin-bottom: 40px
    }

    .foundation-activities-left {
        padding-right: 0;
        margin-bottom: 60px
    }

    .foundation-activities-right {
        padding-left: 0
    }

    .foundation-support-text {
        padding: 30px;
        padding-bottom: 10px
    }

    .foundation-steps .careers-step-img-wrap {
        margin-bottom: 10px
    }

    .foundation-steps {
        padding-bottom: 10px
    }

    .hidden-xs {
        display: none
    }

    .contact-header h2 {
        font-size: 70px
    }

    .contact-header h2 span {
        font-size: 50px
    }

    .contact-header-main:hover h2 {
        font-size: 90px;
        line-height: 1
    }

    .contact-header-main:hover h2 span {
        font-size: 50px
    }

    .contact-header h3 {
        font-size: 18px;
        letter-spacing: 1px
    }

    .contact-card-person {
        left: -50px
    }

    .contact-card-grid {
        left: 10px
    }

    #contact-card-sally .contact-card-person {
        left: -10px
    }

    #contact-card-corporate-profile .contact-card-person {
        top: 40px;
        left: -55px
    }

    #course-recommended .post-wrapper {
        width: auto;
        padding-left: 15px;
        padding-right: 15px
    }

    .egypt-banner-content {
        position: relative;
        padding: 120px 50px 0;
        top: 0;
        left: 0;
        color: #fff;
        z-index: 10
    }

    .calendar-modal .close {
        top: 35px;
        right: 35px
    }

    .calendar-modal .modal-content {
        padding: 48px 70px 82px 50px
    }

    .calendar-modal .modal-lg {
        margin: 0
    }

    .contact-us-form-wrap h3 {
        margin-bottom: 35px
    }

    .home-top-courses .col-sm-3 {
        width: 50%
    }

    .home-banner video {
        width: 130%;
        top: 0
    }

    .home-banner {
        height: 390px
    }

    .home-subheading {
        letter-spacing: 2.4px
    }
}

@media (max-width: 540px) {
    .col-lg-3.courses-list-result {
        width: 50% !important
    }

    .courses-list-result-image {
        height: 100px
    }

    .box .courses-list-result-image {
        height: 100px
    }

    .courses-list-result-text {
        padding: 6px 10px 2px
    }

    .courses-list-result-text h3 {
        font-size: 14px !important;
        height: 34px !important;
        text-overflow: ellipsis !important;
        margin-bottom: 1px
    }

    .courses-list-result-text h3 p {
        font-size: 14px !important;
        height: 34px !important;
        text-overflow: ellipsis !important
    }

    .courses-list-result-text h3 span {
        font-size: 14px
    }

    .courses-list-result-text p {
        font-size: 12px;
        height: 16px !important;
        margin-bottom: 0;
        text-overflow: ellipsis !important
    }

    .box .courses-list-result-text h3 * {
        font-size: 14px !important;
        -webkit-line-clamp: 2 !important;
        text-overflow: ellipsis !important;
        height: 34px !important;
        margin-bottom: 1px
    }

    .box .courses-list-result-text h3 * {
        font-size: 14px !important;
        -webkit-line-clamp: 2 !important;
        text-overflow: ellipsis !important;
        height: 34px !important;
        margin-bottom: 1px
    }

    .box .courses-list-result-text h3 p {
        font-size: 14px !important;
        height: 34px !important;
        -webkit-line-clamp: 2 !important;
        text-overflow: ellipsis !important
    }

    .box .courses-list-result-text h3 span {
        font-size: 14px
    }

    .box .courses-list-result-text p {
        font-size: 12px !important;
        height: 16px !important;
        -webkit-line-clamp: 1 !important;
        text-overflow: ellipsis !important;
        margin-bottom: 0
    }

    .courses-list-result-text img {
        height: 8px
    }

    .courses-list-result-text span {
        font-size: 9px
    }

    .courses-list-result-icons-wrapper a {
        font-size: 12px;
        color: #5d6b78
    }

    .courses-list-result-icons-wrapper p {
        padding: 5px 0 3px;
        margin: 0;
        font-family: sfprodisplay-regular;
        font-size: 10px
    }

    .courses-list-result-icons-wrapper span {
        font-size: 10px
    }

    .courses-list-result-icons-wrapper img {
        width: 12px;
        height: 12px
    }

    .courses-list-result-icon {
        padding-left: 0;
        padding-right: 0;
        text-align: center;
        height: 22px;
        padding-top: 0
    }

    #courses-list-path i {
        font-size: 11px
    }

    .show-mobile {
        display: block
    }

    .hidden-mobile {
        display: none
    }

    #footer-main {
        padding-bottom: 15px
    }

    .footer-endline-1 .col-sm-6 {
        padding-left: 0;
        padding-right: 0
    }

    #footer-endline-2 .col-sm-12 {
        padding-left: 0;
        padding-right: 0
    }

    #footer-mobile-social {
        margin-top: 60px;
        text-align: right
    }

    #footer-mobile-social img {
        margin-bottom: 25px
    }

    #footer-downloads img {
        width: 100%;
        margin-top: 30px
    }

    .footer-endline-links-img img {
        max-height: 25px;
        width: auto
    }

    .all-directors-wrap {
        padding-left: 15px;
        padding-right: 15px
    }

    .container-1400 {
        padding-left: 15px;
        padding-right: 15px
    }

    .clients-slider .container-1400 {
        padding-left: 15px;
        padding-right: 15px
    }

    #franchise-contact .container-1400 {
        padding-left: 15px
    }

    .in-house-features .container-1400 {
        padding: 0
    }

    .in-house-fully-alligned .container-1400 {
        padding: 0
    }

    .e-learning-packages .container-1400 {
        padding: 0
    }

    .in-house-pyramid .container-1400 {
        padding: 0
    }

    .coaching-features-section .container-1400 {
        padding: 0
    }

    .in-house-header h1 {
        font-size: 38px;
        padding-left: 10px;
        padding-right: 10px
    }

    .in-house-header h2 {
        font-size: 28px
    }

    .about-us-header h1 {
        font-size: 35px
    }

    .about-us-header h2 {
        font-size: 28px
    }

    #in-house-header-buttons button {
        margin-left: 15px;
        margin-right: 15px;
        width: auto;
        font-size: 15px;
        padding-left: 2px;
        text-align: left
    }

    #in-house-header-buttons {
        margin-top: 15px
    }

    #in-house-header-buttons button span {
        margin-left: 7px
    }

    #in-house-header-man {
        height: 230px
    }

    .in-house-header h1 {
        padding-left: 10px;
        padding-right: 10px
    }

    .in-house-feature-wrapper {
        height: 270px !important
    }

    .in-house-features-green-box {
        padding: 30px 40px 35px
    }

    .in-house-pyramid-right h3 {
        margin-bottom: 20px
    }

    .in-house-features p {
        font-size: 15px
    }

    #cart-tr-participants-wrapper {
        width: 60%
    }

    #cart-tr-increment-wrapper {
        width: 40%
    }

    .cart-sidebar {
        width: 70%
    }

    .cart-sidebar-bottom {
        bottom: 50px
    }

    #footer-endline-2 {
        padding: 15px
    }

    .gdpr {
        padding: 40px 25px
    }

    .tazleem-break-content {
        padding: 0 100px
    }

    .courses-list-result-icons-wrapper-text {
        padding-left: 5px
    }

    .associations-wrapper {
        padding: 30px 25px 10px
    }

    .expert-wrap {
        padding-left: 45px;
        padding-right: 45px;
        padding-bottom: 35px;
        margin-bottom: 25px;
        width: 100%
    }

    #board-of-directors-wrap .expert-wrap {
        width: 100%
    }

    .experts-related .expert-wrap {
        padding-left: 0;
        padding-right: 7px
    }

    .leoron-video-wrap video {
        width: 98%
    }

    .who-top-quality {
        background-color: #e5eae9;
        padding: 40px 30px
    }

    .leoron-office {
        height: 350px
    }

    .why-mission-left {
        padding: 30px
    }

    #why-vision .why-mission-right {
        padding: 30px
    }

    #in-house-features-section {
        padding: 50px 30px
    }

    #in-house-features-section .in-house-fully-alligned {
        padding-left: 30px;
        padding-right: 30px
    }

    .in-house-pyramid-grey-box {
        padding: 25px 50px 45px
    }

    .in-house-pyramid-right {
        padding: 0 50px 45px
    }

    .post-data-group {
        display: block;
        border: none;
        text-align: center;
        padding-left: 0;
        margin-bottom: 10px;
        padding-right: 0
    }

    .post-data-group a {
        color: #777
    }

    .post-data-group a:hover {
        text-decoration: none;
        color: #00a0a6
    }

    .why-mission-left {
        padding: 30px
    }

    #why-vision .why-mission-right {
        padding: 30px
    }

    .operating-sector {
        width: 50%
    }

    .grey-container {
        padding-left: 15px;
        padding-right: 15px
    }

    .franchise-form {
        padding: 0 15px 30px;
        border: none;
        border-radius: none;
        background-color: transparent
    }

    #why-franchise {
        padding-bottom: 0
    }

    #why-franchise .container-1400 {
        padding-top: 40px
    }

    #franchise-form-wrap {
        padding-bottom: 0
    }

    .franchise-video {
        min-height: 0
    }

    .franchise-operating-sectors .container-1400 {
        padding-bottom: 15px
    }

    .franchise-form p {
        font-size: 22px
    }

    #why-franchise p {
        font-size: 20px;
        margin-top: 10px
    }

    .operating-sector {
        width: 50%
    }

    .container-1400-clear {
        width: auto;
        padding: 0 15px
    }

    .contact-header h2 {
        left: 15px
    }

    .contact-header h3 {
        left: 15px
    }

    .container.custom {
        width: auto;
        padding: 0 15px
    }

    .elearn-trial-content {
        padding: 30px
    }

    .elearn-plans .container-1400-clear {
        padding: 0 30px
    }

    .elearn-accredited-by {
        padding: 13px 10px
    }

    .elearn-trial-back {
        height: 350px
    }

    .elearn-trial-back.lazyloaded {
        height: 350px
    }

    .elearn-usa {
        padding: 44px 15px
    }

    .elearn-libraries .container-1400-clear {
        padding: 0 30px 0 50px
    }

    .elearn-libraries-single {
        height: 250px
    }

    .elearn-libraries .container-1400-clear {
        padding: 0 30px
    }

    .elearn-pros .col-xs-6 {
        width: 100%
    }

    .elearn-pro-headline {
        margin-top: 5px
    }

    .elearn-pro-content {
        margin-bottom: 25px
    }

    .digital-mockup {
        height: 350px
    }

    .digital-mockup.lazyloaded {
        height: 350px
    }

    .elearn-banner {
        height: 200px
    }

    .elearn-banner.lazyloaded {
        height: 200px
    }

    .postListMenu span {
        padding: 5px 10px;
        margin-bottom: 0;
        display: block
    }

    .post-list-wrapper {
        padding: 10px 0 0
    }

    #careers-header h1 {
        margin-bottom: 80px;
        font-size: 40px
    }

    .careers-heroes .col-xs-6 {
        width: 100%
    }

    .careers-hero-text {
        padding: 35px
    }

    .careers-hero-text h4:after {
        left: 36px
    }

    .careers-hero-text p {
        line-height: 1.25;
        font-size: 16px
    }

    .careers-hero-text h4 {
        font-size: 17px;
        margin-bottom: 20px
    }

    .careers-steps .modal-dialog {
        width: 95%
    }

    .careers-heroes button.slick-prev.slick-arrow {
        top: 350px
    }

    .careers-heroes button.slick-next.slick-arrow {
        top: 350px
    }

    .careers-steps .modal-body {
        padding: 0 25px
    }

    .careers-steps .modal-header h4 {
        margin-left: 10px
    }

    .career-pro-img-wrap img {
        width: 85px
    }

    .careers-pros .career-pro-circle {
        position: absolute;
        height: 75px;
        width: 75px;
        background: #00a0a6;
        border-radius: 100%;
        opacity: .13
    }

    .careers-pros {
        padding-left: 30px
    }

    .home-banner-text h1 {
        font-size: 50px;
        margin-bottom: 10px
    }

    .home-banner-text span {
        font-size: 18px;
        margin-bottom: 7px
    }

    .home-banner-text button {
        margin-top: 60px
    }

    .home-banner {
        height: 360px
    }

    .home-banner-text {
        left: 45px;
        top: 25px
    }

    #home-engineer {
        right: -40px;
        width: 360px
    }

    .plans-banner-left {
        padding: 0 15px 50px
    }

    .plans-banner h2 {
        font-size: 30px
    }

    .plans-overview {
        padding: 60px 30px 75px
    }

    .plans-benefits {
        padding: 40px 30px 100px
    }

    #orders-details-course-image-col {
        width: 35%
    }

    #orders-details-course-col {
        width: 65%
    }

    .orders-tr button {
        margin-bottom: 15px
    }

    .bottom-menu {
        padding: 8px 0 3px
    }

    .home-service-wrap {
        height: 470px
    }

    .home-service-shorter {
        height: 225px
    }

    #home-services-right-left {
        padding-right: 5px !important
    }

    #home-services-right-right {
        padding-right: 5px !important
    }

    #home-services-elearning .home-service-img {
        width: 100%;
        right: 0;
        bottom: 0
    }

    .home-download-text img {
        display: inline-block
    }

    .home-locations-outer .col-sm-2 {
        width: 50%;
        padding-right: 5px;
        padding-left: 5px;
        margin-bottom: 20px
    }

    .home-locations {
        padding: 0
    }

    .home-locations .slick-slide {
        margin: 0 5px
    }

    .home-locations .slick-list {
        margin: 0 -5px
    }

    .home-locations-outer {
        padding: 0 10px
    }

    .home-categories .col-sm-2 {
        width: 50%
    }

    .home-categories-outer .row {
        margin-right: -10px;
        margin-left: 0
    }

    .home-categories .col-sm-2 {
        padding-right: 10px
    }

    .home-category-wrap {
        padding: 41px 15px 0 24px
    }

    .home-benefits-outer .col-sm-2 {
        width: 50%;
        margin-bottom: 50px
    }

    .home-testimonial-content .col-xs-10 {
        width: 60%
    }

    .home-testimonial-content .col-xs-1 {
        width: 20%;
        text-align: right
    }

    .home-testimonial-content {
        padding: 25px 20px 40px
    }

    .home-testimonial-content h3 {
        font-size: 18px
    }

    .home-testimonial-content h4 {
        font-size: 17px
    }

    .home-testimonial-content {
        right: 0;
        top: 57px
    }

    .footer {
        padding-bottom: 50px
    }

    #home-download-right {
        padding-top: 50px;
        overflow: hidden
    }

    #foundation-header h1 {
        font-size: 40px
    }

    .foundation-support-circle {
        display: none
    }

    .foundation-outer {
        padding: 0
    }

    .foundation-hands {
        height: 400px
    }

    #foundation-logo {
        bottom: 20px;
        right: 20px;
        width: 200px
    }

    .foundation-inner {
        margin-bottom: 0
    }

    #foundation-posts {
        border-top: 1px solid #d7d7d7
    }

    #foundation-posts #careers-posts-header {
        margin-left: -30px
    }

    .foundation-support-image {
        height: 300px
    }

    .contact-header {
        height: 400px
    }

    .contact-header h2 {
        top: 120px
    }

    .contact-header h3 {
        top: 290px
    }

    .contact-card-grid {
        display: none
    }

    .contact-card-person {
        display: none
    }

    .contact-card .col-xs-5 {
        width: 0
    }

    .contact-card .col-xs-7 {
        width: 100%
    }

    .contact-card h2, .contact-card h3, .contact-card h4, .contact-channel {
        padding-left: 15px
    }

    .contact-card h2:after {
        left: 15px
    }

    .contact-body {
        padding: 50px 0
    }

    .contact-card {
        margin-bottom: 50px
    }

    .contact-card-corporate-left {
        width: 0
    }

    .contact-card-corporate-right {
        width: 100%
    }

    .contact-card p {
        padding-left: 15px
    }

    #contact-card-oliver h4 br {
        display: block
    }

    .contact-form {
        margin: 30px 0 0
    }

    .courses-list-result-icon .share .share-tooltip {
        transform: translate(-70%);
        -webkit-transform: translate(-70%)
    }

    #contact-card-yousef .contact-channel {
        margin-left: 0
    }

    .courses-list-result-category {
        padding-left: 10px
    }

    .live-virtual-heading {
        margin-top: 25px
    }

    .live-virtual-heading.show-mobile {
        position: absolute;
        bottom: -21px;
        left: 0;
        width: 100%;
        background-color: #5f6c78;
        padding: 15px 0;
        border-top: 0;
        border-bottom: 0;
        color: #fff;
        z-index: 2
    }

    .under-banner-home .gradient-box {
        height: 0
    }

    .home-banner-radiating {
        font-size: 21px;
        transform: rotate(90deg);
        -webkit-transform: rotate(-90deg);
        position: absolute;
        top: 120px;
        right: -105px;
        color: #92adc2;
        letter-spacing: 3.15px;
        display: none
    }

    .live-virtual-heading-inner {
        width: 60%;
        margin: 0 auto;
        position: relative
    }

    #live-virtual-live {
        font-size: 60px
    }

    .virtual-training-block {
        top: 12px;
        right: 0
    }

    #live-virtual-play {
        position: absolute;
        left: 50%;
        margin-top: 1px;
        width: 60px;
        margin-left: -30px
    }

    .virtual-training-block span:first-child {
        letter-spacing: 6.36px;
        font-size: 16px;
        font-weight: 900
    }

    .virtual-training-block span {
        font-size: 14px;
        letter-spacing: 5.68px
    }

    #hide-text-01 {
        display: block
    }

    #read-more-takeaways {
        display: none
    }

    .egypt-banner-content {
        padding: 70px 30px 0
    }

    .egypt-banner-wrap p br {
        display: none
    }

    .egypt-banner-wrap p {
        margin-bottom: 20px
    }

    .calendar-modal .modal-content {
        padding: 48px 50px 82px 30px
    }

    .calendar-modal h1 {
        font-size: 30px;
        line-height: 38px
    }

    .calendar-modal p {
        font-size: 20px
    }

    .calendar-modal {
        top: 50%;
        margin-top: -270px
    }

    .contact-us-form-wrap {
        padding: 20px
    }

    .home-top-courses {
        padding-left: 0;
        padding-right: 0
    }

    .home-banner video {
        width: 100%;
        top: 0
    }

    #volumeIconMute, #volumeIcon {
        left: 17px;
        top: 10px
    }

    .home-banner .banner-video-back {
        background: 0 0
    }

    .section_03 .header h2 {
        font-size: 30px;
        line-height: .8
    }

    .section_07 .header h2 {
        font-size: 30px;
        margin-bottom: 10px
    }

    .section_07 .btn.btn-default.right-symbol i {
        font-size: 14px;
        top: 12px
    }
}

@media (max-width: 480px) {
    .box-active {
        height: auto
    }

    .slick-slide.slick-current.slick-active .box:hover > .box-hover {
        left: 0
    }

    .slick-slide .box:hover > .box-hover {
        transform: scale(1.1)
    }

    .box-hover {
        width: 100%
    }

    .courses-list-header-text {
        top: 0
    }

    .cart-sidebar {
        width: 85%
    }

    .courses-list-result-icons-wrapper .row {
        padding: 0
    }

    .courses-list-result-icons-wrapper p {
        font-size: 9px
    }

    .section_02 .course-location h3 {
        font-size: 14px !important
    }

    #franchise-contact span {
        font-size: 17px
    }

    #franchise-contact a {
        font-size: 17px
    }

    .franchise-contact-right {
        padding-bottom: 55px;
        margin: 0 auto;
        width: 100%
    }

    .elearn-plan-features-wrap {
        height: 160px
    }

    .elearn-libraries-single {
        height: 280px
    }

    .banner-postlist h1 {
        padding-left: 15px;
        padding-right: 15px
    }

    .careers-pro-heading {
        font-size: 35px
    }

    .careers-pro-subheading {
        font-size: 22px;
        color: #000;
        line-height: 1.1
    }

    .career-pro-wrap {
        height: 310px
    }

    .careers-hero-text {
        padding: 25px
    }

    .careers-hero-text h4:after {
        left: 26px
    }

    #careers-header {
        padding-left: 20px;
        padding-right: 20px
    }

    #careers-header h1 {
        font-size: 35px
    }

    .home-banner-text {
        left: 30px;
        top: 25px
    }

    .home-service-wrap {
        height: 450px
    }

    .home-service-shorter {
        height: 215px
    }

    .home-service-shorter {
        height: 400px
    }

    #home-services-right .col-xs-6 {
        width: 100%;
        padding-right: 15px !important
    }

    #home-services-elearning {
        margin-top: 20px
    }

    #home-services-elearning .home-service-img {
        width: 80%;
        right: 0;
        bottom: 0
    }

    .home-download-wrap {
        padding: 15px 0 8px 15px
    }

    .home-download-wrap h1 {
        font-size: 26px
    }

    .home-benefits h4 {
        font-size: 20px
    }

    .home-download-text img {
        display: inline-block
    }

    .home-download-wrap h1 {
        margin-bottom: 5px
    }

    .home-download-wrap h3 {
        margin-top: 5px;
        margin-bottom: 0
    }

    .home-download-wrap .custom-button {
        padding: 7px 15px 7px 13px
    }

    #home-download-calendar-img {
        height: 215px
    }

    #home-download-catalog-img {
        height: 215px;
        bottom: -26px;
        right: -53px
    }

    #home-services-elearning {
        height: 482px
    }

    .home-service-wrap h2 {
        font-size: 30px !important;
        font-weight: 400
    }

    #foundation-header h1 {
        font-size: 40px;
        margin-bottom: 70px
    }

    #foundation-header {
        padding-left: 15px;
        padding-right: 15px
    }

    .foundation-support-text {
        padding: 30px 15px 10px
    }

    .foundation-streams .foundation-support-text {
        padding: 30px 15px
    }

    .foundation-steps {
        padding: 30px 15px
    }

    .foundation-activities {
        padding: 30px 15px
    }

    .foundation-activities .foundation-support-headline {
        font-size: 30px
    }

    #foundation-logo {
        bottom: 20px;
        right: 20px;
        width: 150px
    }

    .foundation-support-image {
        background-position: left
    }

    .foundation-support-headline {
        font-size: 30px
    }

    .foundation-steps .careers-step-heading {
        font-size: 30px
    }

    #foundation-posts #careers-posts-header {
        font-size: 30px
    }

    #foundation-posts {
        padding: 30px 15px
    }

    #foundation-posts .post-related .post-list-wrapper {
        padding-right: 0
    }

    .foundation-support-goal p {
        font-size: 20px
    }

    .contact-header h2 {
        top: 80px
    }

    .contact-header h3 {
        top: 290px
    }

    .home-banner-text {
        width: 100%;
        left: 0;
        padding-left: 20px;
        padding-right: 20px
    }

    .home-banner {
        background-position: 70%
    }

    .live-virtual-heading-inner {
        width: 70%
    }

    .egypt-banner-wrap h1 {
        font-size: 40px
    }

    .egypt-banner-wrap h2 {
        font-size: 40px
    }

    .egypt-banner-wrap h2 span {
        font-size: 70px
    }

    #home-video-banner-wrap {
        height: 309px
    }
}

@media (max-width: 390px) {
    .plans-banner-left {
        padding: 0 15px 30px
    }

    .plans-manager button {
        font-size: 15px
    }

    .plans-manager {
        padding: 110px 20px 34px
    }

    .manager-line p {
        font-size: 17px
    }

    .plans-manager button img {
        width: 20px
    }

    .bottom-menu-item {
        margin-left: 5px;
        margin-right: 5px
    }

    .home-service-wrap {
        height: 400px
    }

    .home-service-shorter {
        height: 320px
    }

    .home-category-wrap {
        padding: 41px 15px 0;
        height: 165px
    }

    .home-testimonial-content h3 {
        font-size: 16px
    }

    .home-testimonial-content h4 {
        font-size: 13px
    }

    .home-testimonial-content .col-xs-6 {
        width: 100%
    }

    .home-testimonial-author {
        border-right: 0
    }

    .home-category-wrap img {
        margin-bottom: 15px
    }

    #home-services-in-house {
        height: 345px
    }

    #home-download-calendar-img {
        height: 190px;
        bottom: -19px
    }

    .home-service-wrap h2 {
        font-size: 31px !important;
        margin-bottom: 10px !important
    }

    .home-service-wrap h3 {
        margin-bottom: 10px;
        font-size: 12px
    }

    .home-service-text {
        padding: 25px 10px 10px 30px !important
    }

    #home-services-coaching {
        height: 263px
    }

    #home-services-consultancy {
        height: 263px
    }

    #home-services-consultancy .home-service-img {
        width: 80%;
        right: 0
    }

    #home-services-elearning .home-service-img {
        width: 90%;
        right: 0;
        bottom: 0
    }

    #foundation-header h1 {
        font-size: 35px;
        margin-bottom: 70px
    }

    .contact-header h2 {
        font-size: 55px
    }

    .contact-header h2 span {
        font-size: 45px
    }

    .contact-header-main:hover h2 {
        font-size: 55px;
        line-height: 1
    }

    .contact-header-main:hover h2 span {
        font-size: 45px
    }

    .live-virtual-heading-inner {
        width: 85%
    }

    .egypt-banner-wrap h2 {
        margin-bottom: 10px
    }

    .egypt-banner-wrap h2 span {
        font-size: 60px
    }

    #home-video-banner-wrap {
        height: 270px
    }

    .home-download-wrap h1 {
        font-size: 22px
    }
}

@media (max-width: 320px) {
    .bottom-menu-item {
        margin-left: 2px;
        margin-right: 2px
    }

    .bottom-menu-item span {
        font-size: 9px
    }

    #home-services-elearning .home-service-img {
        width: 100%
    }

    #foundation-header h1 {
        font-size: 35px;
        margin-bottom: 30px
    }

    .contact-header h3 {
        top: 280px
    }

    #contact-card-oliver h4 br {
        display: none
    }

    .live-virtual-heading-inner {
        width: 85%
    }

    .home-banner-radiating {
        font-size: 17px;
        top: 110px;
        right: -88px
    }
}

@media (max-width: 767px) {
    .courses-filter {
        border-top: 0;
        padding: 10px;
        margin-right: 10px;
        z-index: 1000000000000
    }

    .courses-filter:before {
        border-top: 0
    }

    #courses-list-grid-icons {
        display: none
    }
}

@media (min-width: 1367px) {
    .container.custom {
        max-width: 1400px;
        margin: 0 auto
    }

    .section_02 .right-content .img-wrap img {
        max-width: 100%
    }
}

@media (min-width: 1367px) {
    .container.custom {
        max-width: 1400px;
        margin: 0 auto
    }

    .section_02 .right-content .img-wrap img {
        max-width: 100%
    }
}