/*==========Fonts CSS Start==========*/
@font-face {
    font-family: 'FontAwesome';
    src: url('../fonts/fontawesome-webfont.eot?v=4.3.0');
    src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'),
        url('../fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'),
        url('../fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'),
        url('../fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'),
        url('../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*==========Fonts CSS End==========*/

/*==========Common CSS Start==========*/
body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden !important;
    font-size: 15px;
    line-height: 24px;
    color: #007cbc;
}

/*==Scrollbar==*/

::-webkit-scrollbar {
    width: 5px;
}

::-moz-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: #bfbfbf;
}

::-moz-scrollbar-track {
    background-color: #bfbfbf;
}

::-webkit-scrollbar-thumb {
    background: #ed7900;
    border-radius: 10px;
}

::-moz-scrollbar-thumb {
    background: #ed7900;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #007cbc;
}

::-moz-scrollbar-thumb:hover {
    background: #007cbc;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

input,
input:focus,
input:hover,
button,
button:hover,
button:focus {
    outline: none;
}

section {
    overflow: hidden;
}

img {
    width: auto;
    max-width: 100%;
}

p {
    font-size: 16px;
    line-height: 24px;
    color: #000;
    font-weight: normal;
    margin-bottom: 12px;
}

.h1-title {
    font-family: 'Jost', sans-serif;
    font-size: 80px;
    color: #007cbc;
    font-weight: 900;
    line-height: 90px;
}

.h2-title {
    font-family: 'Jost', sans-serif;
    font-size: 65px;
    color: #007cbc;
    line-height: 80px;
    font-weight: 800;
    padding-bottom: 25px;
    padding-top: 12px;
}

.h3-title {
    font-family: 'Jost', sans-serif;
    font-size: 25px;
    color: #007cbc;
    line-height: 35px;
    font-weight: 700;
}

.h2-subtitle {
    position: relative;
    font-family: 'Jost', sans-serif;
    font-size: 22px;
    color: #007cbc;
    line-height: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
    display: inline-block;
}

.container {
    position: relative;
    z-index: 5;
}

.sec-btn {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff !important;
    height: 50px;
    background-color: #ed7900;
    display: inline-block;
    padding: 11px 25px;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    position: relative;
    z-index: 1;
}

.sec-btn:hover {
    box-shadow: 0px 10px 24px 0px rgb(5, 13, 54, 0.2)
}

.sec-btn::before {
    content: "";
    position: absolute;
    height: 40px;
    width: 40px;
    border-radius: 8px;
    background-color: #007cbc;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    z-index: -1;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.sec-btn:hover::before {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    right: 0px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.slick-dots li.slick-active button:before,
.slick-dots li button:before,
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    display: none;
}

.slick-dots {
    bottom: -50px;
    font-size: 0;
    line-height: 1;
}

.slick-dots li {
    width: auto;
    height: auto;
    margin: 0 6px;
}

.slick-dots li button {
    width: 8px;
    height: 8px;
    background: #d7d7d7;
    border-radius: 100%;
    transition: 0.3s;
}

.slick-dots li button:hover,
.slick-dots li.slick-active button {
    background: #ed7900;
}

.form-box {
    display: block;
    position: relative;
    font-size: 0;
    line-height: 1;
    margin-bottom: 20px;
}

/*Changes by Satya*/
.form-box .error{
    margin-top:10px;
    color:red;
    font-size: 14px;
}
/*Changes by Satya */

.form-input {
    width: 100%;
    height: 45px;
    background: #ffffff;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    line-height: 28px;
    color: #131830;
    border: none;
    outline: none;
    padding: 12px 30px;
    border-radius: 8px;
    box-shadow: none;
}

.toggle-button {
    position: fixed;
    top: 5px;
    right: 30px;
    width: 60px;
    height: 60px;
    padding: 0 15px;
    background-color: #ed7900;
    border-radius: 8px;
    text-align: center;
    border: none;
    outline: none;
    display: none;
    z-index: 110;
}

.toggle-button span {
    width: 30px;
    height: 3px;
    background: #ffffff;
    display: block;
    margin: 0 auto 6px auto;
    position: relative;
    top: 0;
    opacity: 1;
    float: right;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.toggle-button .toggle-width {
    width: 25px;
}

.toggle-button span:last-child {
    margin-bottom: 0;
}

.toggle-menu .toggle-button {
    background-color: #007cbc;
}

.toggle-menu .toggle-button span {
    background-color: #ffffff;
}

.toggle-menu .toggle-button span:nth-child(1) {
    transform: rotate(45deg);
    position: relative;
    top: 9px;
}

.toggle-menu .toggle-button span:nth-child(2) {
    opacity: 0;
}

.toggle-menu .toggle-button span:nth-child(3) {
    transform: rotate(-45deg);
    position: relative;
    top: -9px;
}

.black-shadow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000000;
    opacity: 0.5;
    z-index: 90;
    display: none;
}

.main-banner-in {
    position: relative;
    background-color: #fbfaff;
    padding-top: 262px;
    padding-bottom: 154px;
    text-align: center;
}

.main-banner-in::before {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    border-radius: 100%;
    top: -110px;
    left: -370px;
    opacity: 0.5;
    background: radial-gradient(ellipse at center, rgba(0, 95, 252, 0.6) 0%, rgba(0, 95, 252, 0.6) 0%, rgba(0, 95, 252, 0) 68%, rgba(0, 95, 252, 0) 100%);
    -webkit-background: radial-gradient(ellipse at center, rgba(0, 95, 252, 0.6) 0%, rgba(0, 95, 252, 0.6) 0%, rgba(0, 95, 252, 0) 68%, rgba(0, 95, 252, 0) 100%);
    z-index: 0;
}

.main-banner-in::after {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    border-radius: 100%;
    top: 37px;
    right: -390px;
    opacity: 0.5;
    background: radial-gradient(ellipse at center, rgba(255, 82, 25, 0.6) 0%, rgba(255, 82, 25, 0.6) 0%, rgba(255, 82, 25, 0) 68%, rgba(255, 82, 25, 0) 100%);
    -webkit-background: radial-gradient(ellipse at center, rgba(255, 82, 25, 0.6) 0%, rgba(255, 82, 25, 0.6) 0%, rgba(255, 82, 25, 0) 68%, rgba(255, 82, 25, 0) 100%);
    z-index: 0;
}

.main-banner-in .shape-2 {
    position: absolute;
    top: 380px;
    left: 325px;
}

.main-banner-in .shape-4 {
    position: absolute;
    top: 430px;
    right: 516px;
}

.main-banner-in .h1-title {
    text-align: center;
}

.main-banner-breadcrum {
    text-align: center;
    margin-top: -30px;
}

.banner-breadcrum {
    background-color: #007cbc;
    display: inline-block;
    text-align: center;
    padding: 15px 30px;
    border-radius: 8px;
    justify-content: center;
}

.banner-breadcrum ul {
    text-decoration: none;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-breadcrum ul li {
    color: #ffffff;
    margin-left: 10px;
}

.banner-breadcrum ul li a {
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 500;
}

.banner-breadcrum ul li i {
    font-size: 18px;
}

.banner-breadcrum ul li:first-child {
    margin-left: 0;
}

/*==========Common CSS End==========*/


/*==========Loader CSS Start==========*/
.loader-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #007cbc;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.loader,
.loader__figure {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.loader {
    overflow: visible;
    padding-top: 20px;
    height: 0;
    width: 50px;
}

.loader__figure {
    height: 0;
    width: 0;
    box-sizing: border-box;
    border: 0 solid #ed7900;
    border-radius: 50%;
    -webkit-animation: loader-figure 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-animation: loader-figure 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: loader-figure 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.loader__label {
    position: absolute;
    left: 50%;
    bottom: -50px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 18px;
    font-family: 'Jost', sans-serif;
    line-height: 18px;
    font-weight: 500;
    margin-bottom: 0;
    letter-spacing: 0.1em;
    color: #ffffff;
    white-space: nowrap;
    -webkit-animation: loader-label 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-animation: loader-label 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: loader-label 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes loader-figure {
    0% {
        height: 0;
        width: 0;
        background-color: #ed7900;
    }

    29% {
        background-color: #ed7900;
    }

    30% {
        height: 50px;
        width: 50px;
        background-color: transparent;
        border-width: 1em;
        opacity: 1;
    }

    100% {
        height: 50px;
        width: 50px;
        border-width: 0;
        opacity: 0;
        background-color: transparent;
    }
}

@-moz-keyframes loader-figure {
    0% {
        height: 0;
        width: 0;
        background-color: #ed7900;
    }

    29% {
        background-color: #ed7900;
    }

    30% {
        height: 50px;
        width: 50px;
        background-color: transparent;
        border-width: 1em;
        opacity: 1;
    }

    100% {
        height: 50px;
        width: 50px;
        border-width: 0;
        opacity: 0;
        background-color: transparent;
    }
}

@keyframes loader-figure {
    0% {
        height: 0;
        width: 0;
        background-color: #ed7900;
    }

    29% {
        background-color: #ed7900;
    }

    30% {
        height: 50px;
        width: 50px;
        background-color: transparent;
        border-width: 1em;
        opacity: 1;
    }

    100% {
        height: 50px;
        width: 50px;
        border-width: 0;
        opacity: 0;
        background-color: transparent;
    }
}

@-webkit-keyframes loader-label {
    0% {
        opacity: 0.25;
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0.25;
    }
}

@-moz-keyframes loader-label {
    0% {
        opacity: 0.25;
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0.25;
    }
}

@keyframes loader-label {
    0% {
        opacity: 0.25;
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0.25;
    }
}

/*==========Loader CSS End==========*/

/*==========Header CSS Start==========*/
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: 0.3s;
}

.header-top {
    width: 100%;
    height: 45px;
    background: #007cbc;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.top-contact {
    display: flex;
    align-items: center;
}

.top-location {
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.top-mail {
    display: flex;
    align-items: center;
}

.top-location-icon {
    font-size: 18px;
    color: #ed7900;
    margin-right: 15px;
}

.top-mail-icon {
    font-size: 18px;
    color: #ed7900;
    margin-right: 15px;
}

.top-location-content p {
    margin-bottom: 0;
    color: #ffffff;
}

.top-mail-content p {
    margin-bottom: 0;
    color: #ffffff;
}

.Social-midea a {
    color: #fff;
    margin-left: 12px;
    transition: 0.3s;

}

.header-top .Social-midea {
    text-align: right;
}

.Social-midea a:hover {
    color: #ed7900;

}

.header-bottom {
    width: 100%;
    padding: 20px 0;
    transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    background-color: transparent;
}

.site-branding a {
    display: inline-block;
    position: relative;
}

.site-branding a img {
    width: 100%;
}

.header-menu {
    position: relative;
    text-align: right;
}

.main-navigation {
    display: inline-block;
}

.main-navigation ul {
    list-style: none;
    font-size: 0;
    line-height: 1;
    margin-bottom: 0;
    padding: 0;
}

.main-navigation ul li:first-child {
    margin-left: 0;
    padding-left: 0;
}

.main-navigation ul li {
    font-size: 16px;
    line-height: 24px;
    display: inline-block;
    margin-left: 13px;
    padding-left: 13px;
    position: relative;
}

.main-navigation ul li a {
    font-size: 16px;
    line-height: 24px;
    color: #007cbc;
    font-weight: 600;
    transition: 0.3s;
    font-family: 'Jost', sans-serif;
}

.header-btn {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    margin-left: 30px;
    text-transform: uppercase;
}

.header-btn .sec-btn:hover.sec-btn::after {
    background-color: #ed7900;
}

.main-navigation ul li.sub-items:hover>a,
.main-navigation ul li a:hover,
.main-navigation ul li.active>a {
    color: #ed7900;
}

.main-navigation ul li.sub-items>a:before {
    content: "\f107";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    font-family: 'FontAwesome';
    font-size: 16px;
    transition: 0.3s;
}

.site-header.sticky-header .main-navigation ul li a,
.site-header.sticky-header .search-icon a,
.site-header.sticky-header .main-navigation ul li.sub-items>a:before {
    color: #010f2e;
}

.main-navigation ul li.sub-items>a {
    padding-right: 15px;
    position: relative;
}

.main-navigation ul li.sub-items:hover>a:before,
.main-navigation ul li a:hover:before {
    transform: translate(0, -50%) rotate(-180deg);
    transition: 0.3s;
}

.main-navigation ul li:first-child {
    margin-left: 0;
    padding: 0;
}

.main-navigation ul li ul.sub-menu {
    position: absolute;
    top: 100%;
    left: -15px;
    width: 200px;
    height: auto;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 1px 1px 60px rgba(0, 0, 0, 0.1);
    display: none;
    transition: 0.3s;
    z-index: 150;
}

.main-navigation ul li:hover ul.sub-menu {
    display: block;
    animation: swip_up 0.3s linear 1;
}

@keyframes swip_up {
    from {
        transform: translate(0, 20px);
        opacity: 0;
    }

    to {
        transform: translate(0, 0);
        opacity: 1;
    }
}

.main-navigation ul li ul.sub-menu li {
    display: block;
    text-align: left;
    margin: 0;
    border-bottom: 1px solid #ebebeb;
}

.main-navigation ul li ul.sub-menu li:first-child {
    padding-left: 24px;
}

.main-navigation ul li ul.sub-menu li:last-child {
    border-bottom: none;
}

.main-navigation ul li ul.sub-menu li a {
    display: block;
    padding: 10px 7px;
}

.main-navigation ul li ul.sub-menu li a {
    display: block;
    color: #007cbc;
    padding: 5px 15px;
    transition: 0.3s;
}

.main-navigation ul li ul.sub-menu li a:hover {
    color: #ed7900;
    transition: 0.3s;
}

.main-navigation ul li.sub-items:hover>a,
.main-navigation ul li a:hover,
.main-navigation ul li.active>a {
    color: #ed7900;
}

.site-header.sticky-header .main-navigation ul li.sub-items:hover>a,
.site-header.sticky-header .main-navigation ul li a:hover,
.site-header.sticky-header .main-navigation ul li.active>a,
.site-header.sticky-header .main-navigation ul li.sub-items:hover>a:before,
.site-header.sticky-header .main-navigation ul li a:hover:before,
.site-header.sticky-header .main-navigation ul li.active>a:before,
.site-header.sticky-header .main-navigation ul li ul.sub-menu li a:hover {
    color: #ed7900;
}

/*==Sticky Header Start==*/
.sticky-header .header-top {
    margin-top: -45px;
    transition: 0.3s;
}

.site-header.sticky-header {
    background-color: rgb(255, 255, 255, 0.8);
    box-shadow: 6px 6px 60px 0px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    -moz-backdrop-filter: blur(20px);
    -ms-backdrop-filter: blur(20px);
    transition: 0.3s
}

.sticky-header .header-bottom {
    padding: 20px 0px;
    animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
    transition: 0.3s;
}

@keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }

    100% {
        margin-top: 0;
    }
}

.sticky-header .main-navigation ul li a {
    color: #051136;
    transition: 0.3s;
}

.site-branding a img.sticky-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    z-index: 1;
}

.site-header.sticky-header .site-branding a img.sticky-logo {
    opacity: 1;
    transition: 0.3s;
}

/*==Sticky Header End==*/
/*==========Header CSS End==========*/

/*==========Banner CSS Start==========*/
.main-banner {
    position: relative;
    padding-top: 233px;
}

.main-banner::before {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    border-radius: 100%;
    top: -110px;
    left: -370px;
    opacity: 0.5;
    background: radial-gradient(ellipse at center, rgba(0, 95, 252, 0.6) 0%, rgba(0, 95, 252, 0.6) 0%, rgba(0, 95, 252, 0) 68%, rgba(0, 95, 252, 0) 100%);
    -webkit-background: radial-gradient(ellipse at center, rgba(0, 95, 252, 0.6) 0%, rgba(0, 95, 252, 0.6) 0%, rgba(0, 95, 252, 0) 68%, rgba(0, 95, 252, 0) 100%);
    z-index: -5;
}

.main-banner::after {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    border-radius: 100%;
    top: 37px;
    right: -390px;
    opacity: 0.5;
    background: radial-gradient(ellipse at center, rgba(255, 82, 25, 0.6) 0%, rgba(255, 82, 25, 0.6) 0%, rgba(255, 82, 25, 0) 68%, rgba(255, 82, 25, 0) 100%);
    -webkit-background: radial-gradient(ellipse at center, rgba(255, 82, 25, 0.6) 0%, rgba(255, 82, 25, 0.6) 0%, rgba(255, 82, 25, 0) 68%, rgba(255, 82, 25, 0) 100%);
    z-index: -5;
}

.shape-1 {
    position: absolute;
    top: 230px;
    left: 170px;
}

.shape-2 {
    position: absolute;
    top: 700px;
    left: 155px;
}

.shape-3 {
    position: absolute;
    top: 308px;
    right: 0;
}

.shape-4 {
    position: absolute;
    top: 700px;
    right: 176px;
}

.banner-content {
    overflow: visible;
}

.banner-content .h1-title span {
    position: relative;
}

.banner-content .h1-title span img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    animation: section-animation 3s infinite;
    -webkit-animation: section-animation 3s infinite;
}

@keyframes section-animation {
    0% {
        width: 0;
    }

    15% {
        width: 100%;
    }

    85% {
        opacity: 1;
    }

    90% {
        width: 100%;
        opacity: 0;
    }

    to {
        width: 0;
        opacity: 0;
    }
}

.banner-content .h2-subtitle {
    margin-bottom: 26px;
}

.banner-content p {
    color: #777777;
    font-size: 18px;
    line-height: 28px;
}

.banner-content .h1-title {
    margin-bottom: 44px;
}

.banner-btn {
    display: flex;
    align-items: center;
    margin-top: 32px;
}

.sec-btn.btn-2 {
    background-color: #007cbc;
    margin-left: 30px;
}

.sec-btn.btn-2:hover {
    box-shadow: 0px 10px 24px 0px rgb(255, 82, 25, 0.3);
}

.sec-btn.btn-2:hover::before {
    background-color: #ed7900;
}

.sec-btn.btn-2::before {
    background-color: #ed7900;
}

.banner-img {
    position: relative;
}

.banner-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/banner-img-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.banner-img-box {
    position: relative;
}

.aliment-1 {
    position: absolute;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0px 30px 60px 0px rgb(0, 0, 0, 0.2);
    top: 237px;
    left: 0;
    display: flex;
    align-items: center;
    z-index: 1;
    animation: movedelement 5s linear infinite;
}

@keyframes movedelement {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    25% {
        -webkit-transform: translate(10px, 10px);
        transform: translate(10px, 10px);
    }

    50% {
        -webkit-transform: translate(5px, 5px);
        transform: translate(5px, 5px);
    }

    75% {
        -webkit-transform: translate(10px, -5px);
        transform: translate(10px, -5px);
    }

    to {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

.aliment-2 {
    position: absolute;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0px 30px 60px 0px rgb(0, 0, 0, 0.2);
    top: 365px;
    right: 0;
    display: flex;
    align-items: center;
    z-index: 1;
    animation: movedelement2 5s linear infinite;
}

@keyframes movedelement2 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    25% {
        -webkit-transform: translate(-10px, -10px);
        transform: translate(-10px, -10px);
    }

    50% {
        -webkit-transform: translate(-5px, -5px);
        transform: translate(-5px, -5px);
    }

    75% {
        -webkit-transform: translate(-10px, 5px);
        transform: translate(-10px, 5px);
    }

    to {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

.aliment-3 {
    position: absolute;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0px 30px 60px 0px rgb(0, 0, 0, 0.2);
    top: 457px;
    left: 0;
    display: flex;
    align-items: center;
    z-index: 1;
    animation: movedelement3 5s linear infinite;
}

@keyframes movedelement3 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    25% {
        -webkit-transform: translate(-8px, -8px);
        transform: translate(-8px, -8px);
    }

    50% {
        -webkit-transform: translate(-15px, -15px);
        transform: translate(-15px, -15px);
    }

    75% {
        -webkit-transform: translate(-8px, 8px);
        transform: translate(-8px, 8px);
    }

    to {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

.aliment-4 {
    width: 60px;
    height: 60px;
    position: absolute;
    background-color: #ff5e78;
    border-radius: 100%;
    box-shadow: 0px 8px 30px 0px rgb(255, 94, 120, 0.5);
    top: 163px;
    right: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    animation-duration: 2.5s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
    animation-name: hero-bounce;
}

@keyframes hero-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

.aliment-icon-red {
    width: 40px;
    height: 40px;
    background-color: #ff0003;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aliment-icon-purple {
    width: 40px;
    height: 40px;
    background-color: #6213ce;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aliment-icon-green {
    width: 40px;
    height: 40px;
    background-color: #13c24d;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aliment-content {
    margin-left: 15px;
}

.aliment-content .h3-title {
    font-size: 15px;
    line-height: 15px;
    font-weight: 700;
    margin-bottom: 5px;
}

.aliment-content p {
    margin-bottom: 0;
}

/*==========Banner CSS End==========*/

/*==========Course Category CSS Start==========*/
.main-course-category {
    padding-top: 120px;
    padding-bottom: 90px;
}

.course-category-title {
    text-align: center;
}

.course-category-box {
    border: solid 1px #acacac;
    border-radius: 8px;
    background-color: #ffffff;
    padding: 30px;
    display: flex;
    margin-bottom: 30px;
    align-items: center;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.dis-yes {
    display: block;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.dis-no {
    display: none;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-category-box:hover .dis-yes {
    display: none;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-category-box:hover .dis-no {
    display: block;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-category-box:hover {
    background-color: #ed7900;
    border: solid 1px #ed7900;
    box-shadow: 0px 20px 30px 0px rgb(255, 82, 25, 0.3);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-category-icon {
    margin-right: 20px;
}

.course-category-content {
    text-align: left;
    width: calc(100%);
}

.course-category-content p {
    margin-bottom: 0;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-category-content .h3-title {
    line-height: 25px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-category-box:hover .course-category-content .h3-title {
    color: #ffffff;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-category-box:hover .course-category-content p {
    color: #ffffff;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

/*==========Course Category CSS End==========*/

/*==========About Us CSS Start==========*/
.main-about-us {
    background-color: #f3f4f8;
    padding-top: 120px;
    padding-bottom: 185px;
}

.about-img-box {
    position: relative;
}

.about-img-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/about-img-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.about-img-box .aliment-1 {
    top: 200px;
    right: 0;
    left: auto;
}

.about-img-box .aliment-3 {
    top: 350px;
    right: 0;
    left: auto;
}


.academics-content {
    padding-left: 40px;
}

.about-us-content {
    padding-left: 40px;
}

.about-us-content ul {
    list-style: none;
    text-decoration: none;
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 20px;
}

.about-us-content ul li {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.about-us-content ul li:last-child {
    margin-bottom: 0;
}

.about-us-content ul li i {
    font-size: 30px;
    color: #ed7900;
    margin-right: 15px;
}

.about-us-content ul li p {
    font-weight: 500;
    color: #007cbc;
    margin-bottom: 0;
}

.about-us-content .sec-btn {
    margin-top: 40px;
}

.analysis {
    background-color: #ff9221;
    padding: 10px 15px;
    border-radius: 10px;
}

.analysis h3 {
    text-align: center;
    color: #fff;
}

.highlights-title h4 {
    font-size: 20px;
    background-color: #ed7900;
    color: #fff;
    padding: 10px;
    display: inline-block;
    border-radius: 0px 10px 10px 0px;
    border-left: #422403 solid 9px;
}

.why-apex {
    padding-left: 40px;
}

.why-apex ul {
    list-style: none;
    text-decoration: none;
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 20px;
}

.why-apex ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.why-apex ul li:last-child {
    margin-bottom: 0;
}

.why-apex ul li i {
    font-size: 20px;
    color: #fff;
    margin-right: 15px;
}

.why-apex ul li p {
    font-weight: 500;
    color: #fff;
    margin-bottom: 0;
}



.why-academics {
    padding-left: 40px;
}

.why-academics ul {
    list-style: none;
    text-decoration: none;
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 20px;
}

.why-academics ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.why-academics ul li:last-child {
    margin-bottom: 0;
}

.why-academics ul li i {
    font-size: 20px;
    color: #000;
    margin-right: 15px;
}

.why-academics ul li p {
    font-weight: 500;
    color: #000;
    margin-bottom: 0;
}

/*==========About Us CSS End==========*/

/*==========Partner Logo CSS Start==========*/
.main-partner-logo {
    padding-top: 10px;
    padding-bottom: 60px;
    margin-top: 10px;
}

.partner-bg {
    position: relative;
    background-color: #efebe0;
    border-radius: 8px;
    box-shadow: 0px 30px 60px 0px rgb(0, 0, 0, 0.1);
}

.partner-bg::after {
    content: "";
    position: absolute;
    width: 90%;
    height: 100%;
    border-radius: 8px;
    background-color: #ed7900;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.partner-slider {
    padding: 50px;
}

.partners-box {
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.partners-box img {
    width: 100px !important;
}

.partners-box:hover {
    opacity: 0.7;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

/*==========Partner Logo CSS End==========*/

/*==========Online Courses CSS Start==========*/
.main-online-courses {
    padding-top: 60px;
    padding-bottom: 90px;
}

.online-courses-title-btn {
    float: right;
}

.course-box {
    background-color: #ffffff;
    box-shadow: 0px 30px 60px 0px rgb(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 30px;
}

.course-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.course-img>img {
    width: 100%;
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-box:hover .course-img>img {
    transform: scale(1.05);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-img ul {
    list-style: none;
    text-decoration: none;
    margin-bottom: 0;
    padding-left: 0;
    position: absolute;
    bottom: 26px;
    left: 30px;
    display: flex;
    align-items: center;
}

.course-img ul li {
    margin-left: 20px;
}

.course-img ul li:first-child {
    margin-left: 0;
}

.course-img ul li a {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 15px;
    padding: 8px 20px;
    color: #ffffff;
    border-radius: 4px;
}

.course-tag-orange {
    background-color: #ed7900;
}

.course-tag-blue {
    background-color: #007cbc;
}

.course-content {
    padding: 30px 30px 15px 30px;
}

.course-content .h3-title {
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-box:hover .course-content .h3-title {
    color: #ed7900;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-instructor-review {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.course-instructor-box {
    display: flex;
    align-items: center;
}

.course-instructor-img {
    border: solid 3px #ffffff;
    box-shadow: 0px 5px 20px 0px rgb(0, 0, 0, 0.15);
    border-radius: 100%;
}

.course-instructor-box a {
    font-family: 'Roboto', sans-serif;
    color: #777777;
    margin-left: 10px;
    font-size: 15px;
    line-height: 15px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-instructor-box a:hover {
    color: #007cbc;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-review-box {
    display: flex;
    align-items: center;
}

.course-review-box i {
    font-size: 20px;
    color: #ffc107;
}

.course-review-box p {
    margin-bottom: 0;
    margin-left: 10px;
    line-height: 15px;
}

.course-line {
    background-color: #cccccc;
    width: 100%;
    height: 1px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.course-price-student-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.course-price-box span {
    font-family: 'Jost', sans-serif;
    font-size: 20px;
    line-height: 20px;
    color: #ed7900;
    font-weight: 700;
}

.course-student-box {
    display: flex;
    align-items: center;
}

.course-student-icon {
    width: 30px;
    height: 30px;
    background-color: #dcf6e4;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-student-box p {
    margin-bottom: 0;
    margin-left: 10px;
    line-height: 15px;
}

/*==========Online Courses CSS End==========*/

/*==========Event CSS Start==========*/
.main-event {
    background-color: #f3f4f8;
    padding-top: 40px;
    padding-bottom: 40px;
}

.event-img-box {
    position: relative;
}

.event-img img {
    border-radius: 8px;
}

.event-video-play-box {
    position: absolute;
    background-color: #ed7900;
    padding: 22px 19px;
    border-radius: 8px;
    box-shadow: 0px 30px 60px 0px rgba(255, 82, 25, 0.4);
    bottom: 30px;
    right: 0;
    display: flex;
    align-items: center;
    animation: movedelement 5s linear infinite;
}

.event-play-btn {
    transform: translate(0);
}

.event-play-icon {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    background-size: 200% 100%;
    background-position: left center;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    color: #ed7900;
    padding-left: 5px;
    transition: 0.3s;
    z-index: 1;
}

.event-play-icon:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 50%;
    pointer-events: none;
    animation: waveBtn 2.5s infinite;
    z-index: -1;
}

.event-play-btn a:hover {
    color: #ed7900;
}

@keyframes waveBtn {
    0% {
        box-shadow: 0 0 0 0 rgba(225, 225, 225, 1)
    }

    50% {
        box-shadow: 0 0 0 15px transparent;
    }

    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}

.event-video-content .h3-title {
    color: #ffffff;
    line-height: 25px;
    margin-left: 20px;
    margin-bottom: 0;
}

.event-content-box {
    padding-left: 30px;
}

.event-box {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.1);
    padding: 30px;
    display: flex;
    align-items: center;
    border-right: solid 5px #ffffff;
    margin-bottom: 20px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.event-date-day {
    display: inline-block;
}

.event-date p {
    font-family: 'Jost', sans-serif;
    font-size: 40px;
    line-height: 40px;
    color: #007cbc;
    font-weight: 700;
    margin-bottom: 0;
    text-align: center;
    margin-bottom: 5px;
}

.event-day p {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    color: #007cbc;
    font-weight: 500;
    margin-bottom: 0;
    text-align: center;
}

.event-content-text {
    margin-left: 15px;
}

.event-text-line {
    width: 1px;
    height: 60px;
    background-color: #cccccc;
    margin-left: 15px;
}

.event-time-place {
    display: flex;
    align-items: center;
}

.event-time p {
    margin-bottom: 0;
    line-height: 15px;
}

.event-time-place .event-text-line {
    width: 1px;
    height: 11px;
    margin-left: 20px;
    margin-right: 20px;
}

.event-place p {
    margin-bottom: 0;
    line-height: 15px;
}

.event-content-text .h3-title {
    margin-bottom: 0;
    line-height: 25px;
    margin-top: 10px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.event-box:hover .event-content-text .h3-title {
    color: #ed7900;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.event-box:hover {
    border-right: solid 5px #ed7900;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

/*==========Event CSS End==========*/

/*==========Pricing CSS Start==========*/
.main-pricing {
    padding-top: 40px;
    padding-bottom: 40px;
}

.pricing-title {
    text-align: center;
}

.pricing-box {
    position: relative;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.pricing-box .h3-title {
    margin-bottom: 0;
    line-height: 25px;
}

.pricing-box p {
    margin-bottom: 0;
    margin-top: 20px;
}

.pricing-box .h2-title {
    font-size: 40px;
    color: #ed7900;
    line-height: 40px;
    font-weight: 700;
    margin-top: 20px;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.pricing-box .h2-title span {
    font-size: 15px;
    line-height: 15px;
    color: #007cbc;
}

.pricing-box-line {
    width: 100%;
    height: 1px;
    background-color: #d7d7d7;
    margin-top: 30px;
    margin-bottom: 30px;
}

.pricing-box ul {
    list-style: none;
    text-decoration: none;
    margin-bottom: 0;
    padding-left: 0;
}

.pricing-box ul li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.pricing-box ul li:last-child {
    margin-bottom: 0;
}

.pricing-box ul li i {
    width: 30px;
    height: 30px;
    background-color: #e5efff;
    border-radius: 100%;
    color: #007cbc;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-box ul li p {
    margin-bottom: 0;
    line-height: 15px;
    margin-left: 15px;
    margin-top: 0;
}

.pricing-box .sec-btn {
    margin-top: 30px;
}

.pricing-popular-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #007cbc;
    padding: 10px 15px;
    border-radius: 4px;
}

.pricing-popular-tag p {
    margin-bottom: 0;
    margin-top: 0;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 500;
}

/*==========Pricing CSS End==========*/

/*==========Core Feature CSS Start==========*/
.main-core-features {
    background-color: #04293c;
    position: relative;
}

.core-features-content {
    padding-top: 120px;
    padding-bottom: 120px;
    padding-right: 40px;
}

.core-features-title .h2-title {
    color: #ffffff;
}

.core-feature-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.core-feature-icon img {
    transform: rotateY(0deg);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.core-features-box {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.feature-blue {
    background-color: #2d69f0;
}

.feature-pink {
    background-color: #dd246e;
}

.feature-purple {
    background-color: #8007e6;
}

.core-feature-text {
    width: calc(100% - 85px);
    margin-left: 20px;
}

.core-feature-text .h3-title {
    padding-left: 0;
    color: #ffffff;
    line-height: 25px;
}

.core-feature-text p {
    margin-bottom: 0;
    color: #dee3ff;
}

.core-features-img {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.core-features-img1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.core-features-box:hover .core-feature-icon img {
    transform: rotateY(360deg);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

/*==========Core Feature CSS End==========*/

/*==========Instructor CSS Start==========*/
.main-instructor {
    padding-top: 40px;
    padding-bottom: 40px;
}

.instructor-title {
    text-align: center;
}

.instructor-box {
    background-color: #f5f6fa;
    border-radius: 8px;
    text-align: center;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 30px;
    margin-left: 15px;
    margin-right: 15px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.instructor-box:hover {
    background-color: #ffffff;
    box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.instructor-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.instructor-img>img {
    width: 100%;
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.instructor-box:hover .instructor-img>img {
    transform: scale(1.05);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.instructor-img ul {
    position: absolute;
    bottom: -36px;
    left: 50%;
    transform: translate(-50%);
    list-style: none;
    text-decoration: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.instructor-box:hover .instructor-img ul {
    bottom: 20px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.instructor-img ul li {
    margin-left: 20px;
}

.instructor-img ul li:first-child {
    margin-left: 0;
}

.instructor-img ul li a i {
    width: 35px;
    height: 35px;
    background-color: #007cbc;
    border-radius: 4px;
    color: #ffffff;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.instructor-img ul li a i:hover {
    background-color: #ed7900;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.instructor-box .h3-title {
    padding-bottom: 0;
    line-height: 25px;
    margin-top: 30px;
    margin-bottom: 0;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.instructor-box:hover .h3-title {
    color: #ed7900;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.instructor-box p {
    font-family: 'Roboto', sans-serif;
    line-height: 15px;
    color: #007cbc;
    margin-bottom: 0;
    margin-top: 15px;
}

.instructor-slider .slick-list {
    overflow: visible;
}


.instructor-slider .slick-slide {
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.instructor-slider .slick-slide.slick-active {
    opacity: 1;
    pointer-events: unset;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

/*==========Instructor CSS End==========*/

/*==========Testimonial CSS Start==========*/
.main-testimonial {
    background-color: #f3f4f8;
    padding-top: 40px;
    padding-bottom: 120px;
}

.testimonial-title {
    padding-right: 40px;
}

.testimonial-title p {
    margin-bottom: 0;
}

.testimonial-box {
    position: relative;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 40px;
    margin-left: 15px;
    margin-right: 15px;
    box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.1);
}

.testimonial-client {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-client-img-box {
    background-color: #ffffff;
    border: solid 2px #ed7900;
    border-radius: 8px;
    padding: 10px;
    margin-right: 20px;
}

.testimonial-client-name {
    width: calc(100% - 114px);
}

.testimonial-img img {
    border-radius: 8px;
}

.testimonial-client-name .h3-title {
    margin-bottom: 5px;
    line-height: 25px;
}

.testimonial-client-name span {
    font-family: 'Roboto', sans-serif;
    color: #ed7900;
    line-height: 15px;
}

.testimonial-quote {
    position: absolute;
    bottom: 40px;
    right: 40px;
}

.testimonial-slider .slick-list {
    overflow: visible;
}

.testimonial-slider .slick-slide {
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.testimonial-slider .slick-slide.slick-active {
    opacity: 1;
    pointer-events: unset;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

/*==========Testimonial CSS End==========*/

/*==========Blog CSS Start==========*/
.main-blog {
    padding-top: 120px;
    padding-bottom: 90px;
}

.blog-title {
    text-align: center;
}

.blog-box {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.1);
}

.blog-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.blog-img>img {
    width: 100%;
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-box:hover .blog-img>img {
    transform: scale(1.05);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-content {
    padding-top: 30px;
    padding-bottom: 15px;
    padding-left: 30px;
    padding-right: 30px;
}

.blog-box .h3-title {
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-box:hover .h3-title {
    color: #ed7900;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-box-line {
    width: 100%;
    height: 1px;
    background-color: #d7d7d7;
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-date-comment {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-date {
    display: flex;
    align-items: center;
}

.blog-date-icon {
    margin-right: 10px;
}

.blog-date a p {
    margin-bottom: 0;
    line-height: 15px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-date a p:hover {
    color: #007cbc;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-date-comment .blog-box-line {
    width: 1px;
    height: 15px;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 0;
    margin-bottom: 0;
}

.blog-comment {
    display: flex;
    align-items: center;
}

.blog-comment-icon {
    margin-right: 10px;
}

.blog-comment a p {
    margin-bottom: 0;
    line-height: 15px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-comment a p:hover {
    color: #007cbc;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

/*==========Blog CSS End==========*/

/*==========Cta CSS Start==========*/
.main-cta {
    padding-top: 30px;
    padding-bottom: 60px;
    margin-bottom: -175px;
}

.cta-bg {
    position: relative;
    background-color: #007cbc;
    border-radius: 8px;
    padding: 50px 60px;
    overflow: hidden;
    box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.1);
}

.cta-bg-img {
    position: absolute;
    top: 0;
    left: -12px;
}

.cta-title .h2-title {
    position: relative;
    font-size: 50px;
    line-height: 60px;
    color: #ffffff;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    z-index: 1;
}

.cta-btn {
    text-align: right;
}

/*==========Cta CSS End==========*/

/*==========Footer CSS Start==========*/
.main-footer {
    background-color: #007cbc;
    padding-top: 35px;
}

.footer-logo-content {
    text-align: left;
}

.footer-logo-content p {
    color: #fff;
    margin-top: 24px;
    margin-bottom: 34px;
}

.footer-logo-content ul {
    list-style: none;
    text-decoration: none;
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
    align-items: center;
}

.footer-logo-content ul li {
    margin-left: 20px;
}

.footer-logo-content ul li:first-child {
    margin-left: 0;
}

.footer-logo-content ul li a i {
    width: 45px;
    height: 45px;
    background-color: rgb(255, 255, 255, 0.1);
    border-radius: 4px;
    line-height: 18px;
    font-size: 18px;
    padding-top: 4px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.footer-logo-content ul li a i:hover {
    background-color: rgb(255, 82, 25, 1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.footer-our-link {
    text-align: left;
    padding: 0 100px;
}

.footer-our-link .h3-title {
    color: #ffffff;
    margin-bottom: 24px;
    padding-bottom: 0;
}

.footer-our-link ul {
    list-style: none;
    text-decoration: none;
    margin-bottom: 0;
    padding-left: 0;
}

.footer-our-link ul li {
    margin-bottom: 10px;
}

.footer-our-link ul li:last-child {
    margin-bottom: 0;
}

.footer-our-link ul li a {
    font-family: 'Roboto', sans-serif;
    line-height: 15px;
    color: #fff;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.footer-our-link ul li a:hover {
    padding-left: 10px;
    color: #ed7900;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.footer-other-link {
    text-align: left;
    padding: 0 85px;
}

.footer-other-link .h3-title {
    color: #ffffff;
    margin-bottom: 24px;
    padding-bottom: 0;
}

.footer-other-link ul {
    list-style: none;
    text-decoration: none;
    margin-bottom: 0;
    padding-left: 0;
}

.footer-other-link ul li {
    margin-bottom: 10px;
}

.footer-other-link ul li:last-child {
    margin-bottom: 0;
}

.footer-other-link ul li a {
    font-family: 'Roboto', sans-serif;
    line-height: 15px;
    color: #fff;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.footer-other-link ul li a:hover {
    padding-left: 10px;
    color: #ed7900;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.footer-subscribe .h3-title {
    color: #ffffff;
    margin-bottom: 24px;
    padding-bottom: 0;
}

.footer-subscribe p {
    color: #ffffff;
}

.footer-subscribe-form {
    position: relative;
}

.footer-subscribe-form .sec-btn {
    border: 0;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 0 8px 8px 0;
    padding: 0;
    font-size: 20px;
    width: 60px;
    height: 60px;
}

.footer-subscribe-form .sec-btn:hover {
    background-color: #007cbc;
    box-shadow: none;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.footer-subscribe-form .sec-btn::before {
    position: relative;
}

.footer-copyright-bg {
    background-color: #020828;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: 120px;
}

.copyright-text {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 15px;
    color: #d1d8fe;
}

.copyright-text a {
    color: #ed7900;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.copyright-text a:hover {
    color: #007cbc;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

/*==========Footer CSS End==========*/

/*==========About Us Page CSS Start==========*/
.main-about-us-in {
    padding-top: 40px;
    padding-bottom: 40px;
}

.main-partner-logo-in {
    padding-top: 20px;
    padding-bottom: 90px;
    margin-bottom: -155px;
}

.main-academics-programs {
    background-color: #f9f9f9;
    padding-top: 40px;
    padding-bottom: 40px;
}


.academics-programs-title {
    text-align: center;
}

.academic-img-box {
    background-color: transparent;
    border: solid 2px #f3f4f8;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.academic-box:hover .academic-img-box {
    border: solid 2px #ed7900;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.academic-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.academic-img>img {
    width: 100%;
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.academic-box:hover .academic-img>img {
    transform: scale(1.05);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.academic-content {
    text-align: center;
    padding-top: 10px;
}

.link-btn {
    color: #007cbc;
    line-height: 15px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.link-btn i {
    padding-left: 10px;
    font-size: 18px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.academic-box:hover .link-btn {
    color: #ed7900;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.main-event-in {
    padding-top: 40px;
    padding-bottom: 40px;
}

/*==========About Us Page CSS Start==========*/

/*==========Courses Page CSS Start==========*/
.main-courses-in {
    padding-top: 120px;
    padding-bottom: 90px;
}

.courses-search-form .form-box {
    margin-bottom: 0;
}

.courses-search-form input {
    position: relative;
    width: 100%;
    height: 60px;
    border: none;
    outline: none;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 10px 10px 38px 0px rgba(0, 0, 0, 0.11);
    color: #777777;
    font-size: 15px;
    padding: 10px 60px 10px 30px;
}

.courses-search-form .sec-btn {
    border: 0;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 0 8px 8px 0;
    padding: 0;
    font-size: 20px;
    width: 60px;
    height: 60px;
}

.courses-search-form .sec-btn:hover {
    background-color: #007cbc;
    box-shadow: none;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.courses-search-form .sec-btn::before {
    position: relative;
}

.courses-sidebar-categories {
    background-color: #f3f4f8;
    border-radius: 8px;
    padding: 40px;
    text-align: left;
    margin-top: 50px;
}

.courses-sidebar-title {
    display: flex;
    align-items: center;
    justify-content: left;
    margin-bottom: 20px;
}

.sidebar-title-line {
    width: 4px;
    height: 20px;
    background-color: #ed7900;
    margin-right: 10px;
}

.courses-sidebar-title .h3-title {
    margin-bottom: 0;
}

.courses-sidebar-categories ul {
    list-style: none;
    text-decoration: none;
    margin-bottom: 0;
    padding-left: 0;
}

.courses-sidebar-categories ul li {
    margin-bottom: 12px;
}

.courses-sidebar-categories ul li:last-child {
    margin-bottom: 0;
}

.courses-sidebar-categories ul .form-check-label {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #777777;
    cursor: pointer;
    line-height: 28px;
}

.courses-sidebar-categories ul .form-check .form-check-input {
    float: left;
    margin-right: 10px;
}

.courses-sidebar-categories ul li .form-check-input {
    width: 20px;
    height: 20px;
    border: 1px solid #777777;
    cursor: pointer;
    transition: all 0.1s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.courses-sidebar-categories ul li .form-check-input:checked {
    background-color: #007cbc;
    border-color: #007cbc;
    transition: all 0.1s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.courses-sidebar-categories ul li .form-check-input:focus {
    box-shadow: none;
}

.courses-sidebar-categories ul li .form-check-input[type=checkbox] {
    border-radius: 4px;
}

.courses-sidebar-price {
    background-color: #f3f4f8;
    border-radius: 8px;
    padding: 40px;
    text-align: left;
    margin-top: 50px;
}

.courses-sidebar-price ul {
    list-style: none;
    text-decoration: none;
    margin-bottom: 0;
    padding-left: 0;
}

.courses-sidebar-price ul li {
    margin-bottom: 12px;
}

.courses-sidebar-price ul li:last-child {
    margin-bottom: 0;
}

.courses-sidebar-price ul .form-check-label {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #777777;
    cursor: pointer;
    line-height: 28px;
}

.courses-sidebar-price ul .form-check .form-check-input {
    float: left;
    margin-right: 10px;
}

.courses-sidebar-price ul li .form-check-input {
    width: 20px;
    height: 20px;
    border: 1px solid #777777;
    cursor: pointer;
    transition: all 0.1s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.courses-sidebar-price ul li .form-check-input:checked {
    background-color: #007cbc;
    border-color: #007cbc;
    transition: all 0.1s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.courses-sidebar-price ul li .form-check-input:focus {
    box-shadow: none;
}

.courses-sidebar-price ul li .form-check-input[type=checkbox] {
    border-radius: 4px;
}

.courses-sidebar-skill {
    background-color: #f3f4f8;
    border-radius: 8px;
    padding: 40px;
    text-align: left;
    margin-top: 50px;
}

.courses-sidebar-skill ul {
    list-style: none;
    text-decoration: none;
    margin-bottom: 0;
    padding-left: 0;
}

.courses-sidebar-skill ul li {
    margin-bottom: 12px;
}

.courses-sidebar-skill ul li:last-child {
    margin-bottom: 0;
}

.courses-sidebar-skill ul .form-check-label {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #777777;
    cursor: pointer;
    line-height: 28px;
}

.courses-sidebar-skill ul .form-check .form-check-input {
    float: left;
    margin-right: 10px;
}

.courses-sidebar-skill ul li .form-check-input {
    width: 20px;
    height: 20px;
    border: 1px solid #777777;
    cursor: pointer;
    transition: all 0.1s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.courses-sidebar-skill ul li .form-check-input:checked {
    background-color: #007cbc;
    border-color: #007cbc;
    transition: all 0.1s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.courses-sidebar-skill ul li .form-check-input:focus {
    box-shadow: none;
}

.courses-sidebar-skill ul li .form-check-input[type=checkbox] {
    border-radius: 4px;
}

.courses-sidebar-rating {
    background-color: #f3f4f8;
    border-radius: 8px;
    padding: 40px;
    text-align: left;
    margin-top: 50px;
}

.courses-sidebar-rating ul {
    list-style: none;
    text-decoration: none;
    margin-bottom: 0;
    padding-left: 0;
}

.courses-sidebar-rating ul li {
    margin-bottom: 12px;
}

.courses-sidebar-rating ul li:last-child {
    margin-bottom: 0;
}

.courses-sidebar-rating ul .form-check-label {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #777777;
    cursor: pointer;
    line-height: 28px;
}

.courses-sidebar-rating ul .form-check .form-check-input {
    float: left;
    margin-right: 10px;
}

.courses-sidebar-rating ul li .form-check-input {
    width: 20px;
    height: 20px;
    border: 1px solid #777777;
    cursor: pointer;
    transition: all 0.1s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.courses-sidebar-rating ul li .form-check-input:checked {
    background-color: #007cbc;
    border-color: #007cbc;
    transition: all 0.1s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.courses-sidebar-rating ul li .form-check-input:focus {
    box-shadow: none;
}

.courses-sidebar-rating ul li .form-check-input[type=checkbox] {
    border-radius: 4px;
}

.courses-sidebar-rating ul li .form-check-label.star-edit i {
    margin-left: 8px;
    font-size: 20px;
    color: #ffc107;
}

.courses-sidebar-rating ul li .form-check-label.star-edit i:first-child {
    margin-left: 0;
}

.main-courses-list-box {
    padding-left: 20px;
}

.courses-list-style-box {
    background-color: #f3f4f8;
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.courses-list-show-box a {
    display: flex;
    align-items: center;
}

.courses-list-show-box a i {
    font-size: 20px;
    color: #007cbc;
    transition: all 0.1s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    margin-right: 10px;
}

.courses-list-show-box:hover a i {
    color: #007cbc;
    transition: all 0.1s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.courses-list-show-box a span {
    font-weight: 500;
    color: #777777;
}

.courses-list-dropdown-box .form-select {
    width: auto;
    padding: 7px 54px 7px 20px;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    color: #777777;
    border: 1px solid #777777;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.1s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.courses-list-dropdown-box .form-select:focus {
    box-shadow: none;
}

.courses-list-dropdown-box option {
    font-weight: 500;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    color: #777777;
}

.courses-list-box {
    margin-top: 30px;
}

.courses-pagination {
    display: block;
    text-align: center;
    margin-top: 40px;
}

.pagination-arrow {
    color: #ed7900;
    font-size: 35px;
    display: inline-block;
    margin: 0 18px;
    vertical-align: middle;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.pagination-arrow:hover {
    color: #007cbc;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.courses-pagination ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
}

.courses-pagination ul li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: #ebebeb;
    border-radius: 50px;
    color: #777777;
    font-weight: 500;
    font-size: 18px;
    margin: 0 7px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.courses-pagination ul li.active,
.courses-pagination ul li.active:hover {
    background: #ed7900;
    color: #ffffff;
    cursor: default;
}

.courses-pagination ul li:hover {
    background-color: #ed7900;
    color: #ffffff;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

/*==========Courses Page CSS End==========*/

/*==========Course Detail Page CSS Start==========*/
.main-course-detail-in {
    padding-top: 120px;
    padding-bottom: 90px;
}

.course-detail-box {
    padding-right: 20px;
}

.course-detail-box .h2-title {
    padding-top: 0;
}

.course-detail-instructor-date-box {
    display: flex;
    align-items: center;
}

.course-detail-instructor {
    display: flex;
    align-items: center;
}

.course-detail-instructor-img {
    border: solid 3px #ffffff;
    box-shadow: 0px 5px 20px 0px rgb(0, 0, 0, 0.15);
    border-radius: 100%;
}

.course-detail-instructor-text {
    margin-left: 15px;
}

.course-detail-instructor-text a p {
    font-weight: 500;
    margin-bottom: 0;
    color: #007cbc;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-detail-instructor-text a p:hover {
    color: #ed7900;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-detail-instructor-text span {
    color: #777777;
}

.course-detail-date {
    margin-left: 50px;
}

.course-detail-date a p {
    font-weight: 500;
    margin-bottom: 0;
    color: #007cbc;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-detail-date a p:hover {
    color: #ed7900;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-detail-date span {
    color: #777777;
}

.course-detail-rating-tag-box {
    display: flex;
    align-items: center;
}

.course-detail-rating-star {
    display: flex;
    align-items: center;
}

.course-detail-rating-star i {
    font-size: 18px;
    color: #ffc107;
    margin-left: 8px;
}

.course-detail-rating-star i:first-child {
    margin-left: 0;
}

.course-detail-rating-star p {
    margin-bottom: 0;
    color: #007cbc;
    font-weight: 500;
    margin-left: 8px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-detail-rating-box a:hover p {
    color: #ed7900;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-detail-rating-box span {
    color: #777777;
}

.course-detail-tag-box {
    margin-left: 65px;
}

.course-detail-tag-box ul {
    list-style: none;
    text-decoration: none;
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
    align-items: center;
}

.course-detail-tag-box ul li {
    margin-left: 20px;
}

.course-detail-tag-box ul li:first-child {
    margin-left: 0;
}

.course-detail-tag-box ul li a {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 15px;
    padding: 8px 20px;
    color: #ffffff;
    border-radius: 4px;
}

.course-detail-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.course-detail-img>img {
    width: 100%;
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-detail-img:hover>img {
    transform: scale(1.05);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-detail-point {
    margin-top: 30px;
}

.course-detail-point ul {
    list-style: none;
    text-decoration: none;
    padding-left: 0;
    margin-bottom: 0;
}

.course-detail-point ul li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.course-detail-point ul li:last-child {
    margin-bottom: 0;
}

.course-detail-point ul li i {
    font-size: 30px;
    color: #ed7900;
    margin-right: 15px;
}

.course-detail-point ul li p {
    font-weight: 500;
    color: #007cbc;
    margin-bottom: 0;
}

.course-detail-share ul {
    list-style: none;
    text-decoration: none;
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
    align-items: center;
}

.course-detail-share ul li {
    margin-left: 20px;
}

.course-detail-share ul li:first-child {
    margin-left: 0;
}

.course-detail-share ul li a i {
    width: 45px;
    height: 45px;
    border: solid 1px #007cbc;
    border-radius: 4px;
    line-height: 18px;
    font-size: 18px;
    padding-top: 4px;
    color: #007cbc;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-detail-share ul li a i:hover {
    border: solid 1px #ed7900;
    background-color: #ed7900;
    color: #ffffff;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.course-detail-share {
    margin-top: 30px;
}

.get-the-course {
    background-color: #f3f4f8;
    border-radius: 8px;
    padding: 40px;
    text-align: left;
}

.get-the-course ul {
    margin-bottom: 0;
    padding-left: 0;
    text-decoration: none;
    list-style: none;
}

.get-the-course ul li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.get-the-course ul li:last-child {
    margin-bottom: 0;
}

.get-the-course ul li p {
    color: #007cbc;
    font-weight: 500;
    margin-bottom: 0;
}

.get-the-course ul li p span {
    color: #777777;
}

.get-course-icon {
    width: 35px;
    height: 35px;
    margin-right: 15px;
    background-color: #007cbc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.get-course-line {
    width: 100%;
    height: 1px;
    background-color: #d7d7d7;
    margin-top: 30px;
    margin-bottom: 30px;
}

.get-course-dropdown .form-select {
    width: 100%;
    padding: 7px 54px 7px 20px;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    color: #777777;
    border: 1px solid #777777;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.1s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.get-course-dropdown .form-select:focus {
    box-shadow: none;
}

.get-course-dropdown option {
    font-weight: 500;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    color: #777777;
}

.get-course-price {
    display: flex;
    align-items: center;
    margin-top: 24px;
    margin-bottom: 24px;
}

.get-course-price .h3-title {
    margin-bottom: 0;
}

.get-course-price span {
    font-family: 'Jost', sans-serif;
    color: #777777;
    text-decoration: line-through;
    font-size: 15px;
    font-weight: 500;
    margin-left: 10px;
}

.get-course-price p {
    background-color: rgb(7, 149, 97, 0.1);
    width: 72px;
    height: 28px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0;
    color: #079561;
    margin-left: 30px;
}

.recent-course-box {
    background-color: #f3f4f8;
    border-radius: 8px;
    padding: 40px;
    text-align: left;
    margin-top: 50px;
}

.recent-course-box ul {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    text-transform: none;
}

.recent-course-box ul li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.recent-course-box ul li:last-child {
    margin-bottom: 0;
}

.recent-course-text {
    width: calc(100% - 115px);
}

.recent-course-text a p {
    font-weight: 500;
    margin-bottom: 0;
    transition: all 0.1s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.recent-course-box ul li:hover p {
    color: #007cbc;
    transition: all 0.1s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.recent-course-text span {
    color: #ed7900;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
}

.recent-course-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    margin-right: 15px;
}

.recent-course-img>img {
    width: 100%;
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.recent-course-box ul li:hover>.recent-course-img img {
    transform: scale(1.05);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

/*==========Course Detail Page CSS End==========*/

/*==========Event Detail Page CSS Start==========*/
.main-event-detail-in {
    padding-top: 120px;
    padding-bottom: 70px;
}

.event-detail-box {
    padding-right: 20px;
}

.event-detail-instructor-date-box {
    display: flex;
    align-items: center;
}

.event-detail-instructor {
    display: flex;
    align-items: center;
}

.event-detail-instructor-img {
    border: solid 3px #ffffff;
    box-shadow: 0px 5px 20px 0px rgb(0, 0, 0, 0.15);
    border-radius: 100%;
}

.event-detail-instructor-text {
    margin-left: 15px;
}

.event-detail-instructor-text a p {
    font-weight: 500;
    margin-bottom: 0;
    color: #007cbc;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.event-detail-instructor-text a p:hover {
    color: #ed7900;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.event-detail-instructor-text span {
    color: #777777;
}

.event-detail-date {
    margin-left: 50px;
}

.event-detail-date a p {
    font-weight: 500;
    margin-bottom: 0;
    color: #007cbc;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.event-detail-date a p:hover {
    color: #ed7900;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.event-detail-date span {
    color: #777777;
}

.event-detail-location-time {
    display: flex;
    align-items: center;
}

.event-detail-location {
    margin-left: 5px;
}

.event-detail-location a p {
    font-weight: 500;
    margin-bottom: 0;
    color: #007cbc;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.event-detail-location a p:hover {
    color: #ed7900;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.event-detail-location span {
    color: #777777;
}

.event-detail-time {
    margin-left: 50px;
}

.event-detail-time a p {
    font-weight: 500;
    margin-bottom: 0;
    color: #007cbc;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.event-detail-time a p:hover {
    color: #ed7900;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.event-detail-time span {
    color: #777777;
}

.event-detail-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.event-detail-img>img {
    width: 100%;
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.event-detail-img:hover>img {
    transform: scale(1.05);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.event-detail-price-box {
    background-color: #f3f4f8;
    padding: 40px;
    border-radius: 8px;
}

.event-detail-price-box .get-course-price {
    margin-top: 0;
}

.event-detail-related-event-box {
    background-color: #f3f4f8;
    padding: 40px;
    border-radius: 8px;
    margin-top: 50px;
}

.event-detail-related-event-box ul {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    text-transform: none;
}

.event-detail-related-event-box ul li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.event-detail-related-event-box ul li:last-child {
    margin-bottom: 0;
}

.related-event-text {
    width: calc(100% - 115px);
}

.related-event-text a p {
    font-weight: 500;
    margin-bottom: 0;
    transition: all 0.1s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.event-detail-related-event-box ul li:hover p {
    color: #007cbc;
    transition: all 0.1s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.related-event-text span {
    color: #ed7900;
}

.related-event-text span:last-child {
    margin-left: 15px;
}

.related-event-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    margin-right: 15px;
}

.related-event-img>img {
    width: 100%;
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.event-detail-related-event-box ul li:hover>.related-event-img img {
    transform: scale(1.05);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

/*==========Event Detail Page CSS End==========*/

/*==========Instructor Page CSS Start==========*/
.main-instructor-detail-in {
    padding-top: 120px;
    padding-bottom: 120px;
}

.instructor-detail-img-box {
    padding-right: 70px;
    position: relative;
}

.instructor-detail-img {
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.instructor-detail-img>img {
    width: 100%;
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.instructor-detail-img:hover>img {
    transform: scale(1.05);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.instructor-detail-box {
    position: relative;
    width: 375px;
    background-color: #ed7900;
    box-shadow: 0px 20px 30px 0px rgb(255, 82, 25, 0.3);
    padding: 68px 50px;
    border-radius: 8px;
    text-align: left;
    display: block;
    float: right;
    margin-top: -306px;
}

.instructor-detail-box .h3-title {
    font-size: 36px;
    line-height: 48px;
    color: #ffffff;
    margin-bottom: 20px;
}

.instructor-detail-box p {
    margin-bottom: 0;
    font-size: 18px;
    color: #ffffff;
    line-height: 28px;
}

.main-instructor-page-in {
    padding-bottom: 60px;
}

.main-instructor-page-in .instructor-box {
    margin-bottom: 30px;
    margin-left: 0;
    margin-right: 0;
}

/*==========Instructor Page CSS End==========*/

/*==========Instructor Detail Page CSS Start==========*/
.main-instructor-detail-page-in {
    padding-top: 120px;
    padding-bottom: 60px;
}

.instructor-detail-info-img-box {
    padding: 20px;
    position: relative;
}

.instructor-detail-info-img-box::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    background-color: #ed7900;
    border-radius: 8px;
    top: 0;
    left: 0;
    z-index: -1;
}

.instructor-detail-info-img-box::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    background-color: #007cbc;
    border-radius: 8px;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.instructor-detail-page-img {
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.instructor-detail-page-img>img {
    width: 100%;
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.instructor-detail-info-img-box:hover>.instructor-detail-page-img img {
    transform: scale(1.05);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.instructor-detail-info-box {
    padding-left: 20px;
}

.instructor-detail-info-user-box {
    display: flex;
    align-items: center;
}

.instructor-detail-info-name-rating {
    display: flex;
    align-items: center;
}

.instructor-detail-info-name .h2-title {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 50px;
    line-height: 60px;
}

.instructor-detail-info-name span {
    color: #777777;
}

.instructor-detail-info-name-rating .course-detail-rating-box {
    margin-left: 50px;
}

.instructor-detail-info-follow ul {
    list-style: none;
    text-decoration: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.instructor-detail-info-follow ul li {
    margin-left: 15px;
}

.instructor-detail-info-follow ul li:first-child {
    margin-left: 0;
}

.instructor-detail-info-follow ul li a i {
    color: #007cbc;
    font-size: 18px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.instructor-detail-info-follow ul li a i:hover {
    color: #ed7900;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.instructor-detail-info-follow span {
    color: #777777;
}

.instructor-detail-info-follow {
    margin-left: 50px;
}

.instructor-detail-info-line {
    width: 100%;
    height: 1px;
    background-color: #d7d7d7;
    margin-top: 40px;
    margin-bottom: 40px;
}

.instructor-detail-info-courses .h2-title {
    font-size: 50px;
    line-height: 60px;
    text-align: left;
    padding-top: 0;
    margin-bottom: 0;
}

/*==========Instructor Detail Page CSS End==========*/

/*==========FAQ Page CSS Start==========*/
.main-faq-in {
    padding-top: 120px;
    padding-bottom: 120px;
}

.faq-title {
    text-align: center;
}

.accordion-item.faq-bg {
    background-color: #ffffff;
    border: none;
    margin-bottom: 20px;
    border-radius: 0;
    border-radius: 8px;
}

.accordion-item.faq-bg:first-of-type {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

.accordion-button.faq-btn {
    min-height: 60px;
    display: flex;
    align-items: center;
    line-height: 28px;
    margin-bottom: 0;
    padding: 5px 90px 5px 30px;
    position: relative;
    background: #ffffff;
    border-radius: 8px;
    color: #007cbc;
    cursor: pointer;
    box-shadow: 0px 30px 60px 0px rgb(0, 0, 0, 0.1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.accordion-button.faq-btn:not(.collapsed) {
    color: #007cbc;
    background-color: #ffffff;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.accordion-button {
    background-color: #ffffff;
}

.accordion-button:not(.collapsed) {
    box-shadow: 1px 1px 60px 0px rgba(0, 0, 0, 0.1);
}

.accordion-button.faq-btn:focus {
    z-index: 0;
    border-color: #fff;
    outline: 0;
    box-shadow: 0px 30px 60px 0px rgb(0, 0, 0, 0.1);
}

.accordion-button.faq-btn:after {
    display: none;
}

.accordion-header.h3-title {
    padding-top: 0;
}

.accordion.faq-box .accordion-item.faq-bg .accordion-header.h3-title .icon {
    position: absolute;
    color: #fff;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    background: #ed7900;
    border-radius: 0 8px 8px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}

.accordion.faq-box .accordion-item.faq-bg .accordion-header.h3-title>span {
    position: relative;
    z-index: 1;
}

.accordion.faq-box .accordion-item.faq-bg .accordion-header.h3-title .accordion-button.faq-btn.collapsed .icon i {
    position: relative;
    color: #fff;
    transform: rotate(0deg);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    z-index: 1;
}

.accordion.faq-box .accordion-item.faq-bg .accordion-header.h3-title .icon i {
    position: relative;
    color: #fff;
    transform: rotate(-90deg);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    z-index: 1;
}

.accordion-item:first-of-type .accordion-button {
    border-radius: 8px;
}

.accordion-collapse.collapse.show {
    box-shadow: 0px 30px 60px 0px rgb(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.accordion-button:hover {
    z-index: 0;
}

.accordion.part-1 {
    padding-right: 15px;
}

.accordion.part-2 {
    padding-left: 15px;
}

.main-submit-ticket-in {
    padding-top: 120px;
    padding-bottom: 90px;
}

.submit-ticket-img-box {
    position: relative;
}

.submit-ticket-form-content {
    padding-left: 20px;
}

.submit-ticket-img-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 355px;
    border-radius: 50px;
    background-color: #007cbc;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.submit-ticket-form .form-input {
    border: solid 1px #777777;
}

.submit-ticket-form textarea {
    height: 160px;
}

.submit-ticket-form .sec-btn {
    border: none;
    margin-top: 10px;
}

/*==========FAQ Page CSS End==========*/

/*==========Pricing Page CSS Start==========*/
.main-pricing-in {
    padding-top: 120px;
    padding-bottom: 120px;
}

/*==========Pricing Page CSS End==========*/

/*==========Blog List Page CSS Start==========*/
.main-blog-list-in {
    padding-top: 120px;
    padding-bottom: 90px;
}

.main-blog-list-box {
    padding-right: 20px;
}

.blog-list-box {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 30px 60px 0px rgb(0, 0, 0, 0.1);
    margin-bottom: 50px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-big-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.blog-big-img>img {
    width: 100%;
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-list-box:hover .blog-big-img>img {
    transform: scale(1.05);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-big-content {
    padding: 30px;
}

.blog-big-user-box {
    display: flex;
    align-items: center;
}

.blog-big-user {
    display: flex;
    align-items: center;
}

.blog-big-user-icon {
    margin-right: 10px;
}

.blog-big-user a p {
    margin-bottom: 0;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-big-user a p:hover {
    color: #007cbc;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-big-user-line {
    width: 1px;
    height: 15px;
    background-color: #d7d7d7;
    margin-right: 20px;
    margin-left: 20px;
}

.blog-big-content .h3-title {
    margin-top: 15px;
    margin-bottom: 20px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-list-box:hover .h3-title {
    color: #ed7900;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-big-content .sec-btn {
    margin-top: 20px;
}

.main-blog-list-in .courses-pagination {
    padding-right: 20px;
    display: block;
    text-align: center;
    margin-top: 70px;
}

.blog-list-sidebar-categories-box {
    background-color: #f3f4f8;
    border-radius: 8px;
    padding: 40px;
    text-align: left;
    margin-top: 50px;
}

.blog-list-sidebar-categories-box ul {
    list-style: none;
    text-decoration: none;
    margin-bottom: 0;
    padding-left: 0;
}

.blog-list-sidebar-categories-box ul li {
    margin-bottom: 15px;
}

.blog-list-sidebar-categories-box ul li:last-child {
    margin-bottom: 0;
}

.blog-list-sidebar-categories-box ul li a {
    display: flex;
    align-items: center;
}

.blog-list-sidebar-categories-box ul li a i {
    font-size: 20px;
    color: #777777;
    margin-right: 10px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-list-sidebar-categories-box ul li:hover a i {
    color: #ed7900;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-list-sidebar-categories-box ul li:hover a p {
    color: #ed7900;
    margin-left: 10px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-list-sidebar-categories-box ul li a p {
    margin-bottom: 0;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-list-sidebar-recent-post {
    background-color: #f3f4f8;
    border-radius: 8px;
    padding: 40px;
    text-align: left;
    margin-top: 50px;
}

.blog-list-sidebar-recent-post ul {
    list-style: none;
    text-decoration: none;
    padding-left: 0;
    margin-bottom: 0;
}

.blog-list-sidebar-recent-post ul li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.blog-list-recent-post-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    margin-right: 15px;
}

.blog-list-recent-post-img>img {
    width: 100%;
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-list-sidebar-recent-post ul li:hover .blog-list-recent-post-img>img {
    transform: scale(1.05);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-list-recent-post-content {
    width: calc(100% - 115px);
}

.blog-list-recent-post-content p {
    font-weight: 500;
    margin-bottom: 0;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-list-sidebar-recent-post ul li:hover p {
    color: #007cbc;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-list-recent-post-content .blog-date a p {
    font-weight: 400;
    color: #ed7900;
}

.blog-list-sidebar-recent-post ul li:hover .blog-list-recent-post-content .blog-date a p {
    color: #ed7900;
}

.blog-list-sidebar-tag-box {
    background-color: #f3f4f8;
    border-radius: 8px;
    padding: 40px;
    text-align: left;
    margin-top: 50px;
}

.blog-list-sidebar-tag-box ul {
    list-style: none;
    text-decoration: none;
    margin-bottom: 0;
    padding-left: 0;
}

.blog-list-sidebar-tag-box ul li {
    margin-right: 15px;
    margin-bottom: 15px;
    display: inline-block;
    align-items: center;
}

.blog-list-sidebar-tag-box ul li a {

    padding: 10px 25px;
    border: solid 1px #777777;
    color: #777777;
    font-weight: 500;
    display: inline-block;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-list-sidebar-tag-box ul li a:hover {
    background-color: #ed7900;
    border: solid 1px #ed7900;
    color: #ffffff;
    box-shadow: 0px 10px 20px 0px rgb(255, 82, 25, 0.4);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

/*==========Blog List Page CSS End==========*/

/*==========Blog Detail Page CSS Start==========*/
.main-blog-detail-in {
    padding-top: 120px;
    padding-bottom: 90px;
}

.blog-detail-info-box {
    padding-right: 20px;
}

.blog-detail-info-img-1 {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 30px;
}

.blog-detail-info-img-1>img {
    width: 100%;
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-detail-info-img-1:hover>img {
    transform: scale(1.05);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-detail-info-box .blog-big-user-box {
    margin-bottom: 20px;
}

.blog-detail-point {
    margin-top: 20px;
}

.blog-detail-point ul {
    list-style: none;
    text-decoration: none;
    padding-left: 0;
    margin-bottom: 20px;
    margin-top: 20px;
}

.blog-detail-point ul li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.blog-detail-point ul li:last-child {
    margin-bottom: 0;
}

.blog-detail-point ul li i {
    font-size: 30px;
    color: #ed7900;
    margin-right: 15px;
}

.blog-detail-point ul li p {
    font-weight: 500;
    color: #000;
    margin-bottom: 0;
}

.blog-detail-text-box {
    background-color: #ffffff;
    border-radius: 8px;
    border-left: solid 5px #ed7900;
    box-shadow: 0px 30px 60px 0px rgb(0, 0, 0, 0.1);
    padding: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.text-box-author {
    display: flex;
    align-items: center;
}

.text-box-line {
    width: 40px;
    height: 1px;
    background-color: #007cbc;
    margin-right: 15px;
}

.text-box-author .h3-title {
    color: #007cbc;
    margin-bottom: 0;
}

.blog-detail-line {
    width: 100%;
    height: 1px;
    background-color: #d7d7d7;
    margin-top: 40px;
    margin-bottom: 15px;
}

.blog-detail-tag-share-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-detail-tag {
    display: flex;
    align-items: center;
}

.blog-detail-tag span {
    font-weight: 500;
    color: #007cbc;
    margin-right: 15px;
}

.blog-detail-tag ul {
    list-style: none;
    text-decoration: none;
    margin-bottom: 0;
    padding-left: 0;
}

.blog-detail-tag ul li {
    margin-right: 15px;
    display: inline-block;
    align-items: center;
}

.blog-detail-tag ul li a {

    padding: 10px 25px;
    border: solid 1px #777777;
    color: #777777;
    font-weight: 500;
    display: inline-block;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-detail-tag ul li a:hover {
    background-color: #ed7900;
    border: solid 1px #ed7900;
    color: #ffffff;
    box-shadow: 0px 10px 20px 0px rgb(255, 82, 25, 0.4);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-detail-share ul {
    list-style: none;
    text-decoration: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.blog-detail-share ul li {
    margin-left: 15px;
}

.blog-detail-share ul li:first-child {
    margin-left: 0;
}

.blog-detail-share ul li a i {
    color: #007cbc;
    font-size: 18px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-detail-share ul li a i:hover {
    color: #ed7900;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-detail-related-blog-box {
    margin-top: 120px;
}

.blog-detail-comment-box {
    margin-top: 120px;
}

.client-comment-box {
    display: flex;
    align-items: center;
}

.client-comment-img {
    margin-right: 20px;
}

.client-comment-img img {
    border-radius: 8px;
}

.client-comment-content {
    width: calc(100% - 190px);
}

.client-comment-content .h3-title {
    margin-bottom: 10px;
    line-height: 20px;
}

.client-comment-content span {
    color: #007cbc;
}

.client-comment-content p {
    margin-top: 5px;
    margin-bottom: 20px;
}

.reply-btn {
    background-color: #ed7900;
    color: #ffffff;
    border-radius: 4px;
    padding: 10px 15px;
    margin-top: 10px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.reply-btn i {
    margin-right: 10px;
    font-size: 16px;
    color: #ffffff;
}

.reply-btn:hover {
    background-color: #007cbc;
    color: #ffffff;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-detail-comment-box .blog-detail-line {
    margin-top: 50px;
    margin-bottom: 50px;
}

.blog-detail-leave-reply-box {
    margin-top: 70px;
}

.leave-reply-form .form-input {
    border: solid 1px #777777;
}

.leave-reply-form textarea {
    height: 120px;
}

.leave-reply-form .sec-btn {
    border: none;
    margin-top: 10px;
}

/*==========Blog Detail Page CSS End==========*/

/*==========Contact Us Page CSS Start==========*/
.main-contact-page-in {
    padding-top: 120px;
    padding-bottom: 120px;
}

.contact-detail-box {
    background-color: #007cbc;
    border-radius: 8px;
    padding: 60px 50px;
    box-shadow: 0px 30px 60px 0px rgb(0, 96, 255, 0.4);
}

.contact-detail-box .h3-title {
    color: #ffffff;
    font-size: 36px;
    line-height: 46px;
}

.contact-detail-box p {
    color: #ffffff;
}

.contact-detail-box ul {
    list-style: none;
    text-decoration: none;
    margin-bottom: 0;
    padding-left: 0;
    margin-top: 50px;
}

.contact-detail-box ul li {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-detail-box ul li:last-child {
    margin-bottom: 0;
}

.contact-detail-content p {
    color: #ffffff;
    text-transform: uppercase;
}

.contact-text {
    color: #ffffff;
    font-size: 22px;
    line-height: 32px;
    font-weight: 500;
}

.contact-detail-content {
    width: calc(100% - 50px);
}

.contact-detail-icon {
    margin-right: 20px;
}

.get-touch-box {
    padding-left: 20px;
}

.get-touch-form .form-input {
    border: solid 1px #777777;
}

.get-touch-form .sec-btn {
    margin-top: 10px;
    border: none;
}

.get-touch-form textarea {
    height: 160px;
}

.main-contact-map-in {
    width: 100%;
    height: 500px;
    margin-bottom: -135px;
}

.main-contact-map-in iframe {
    width: 100%;
    height: 100%;
}

/*==========Contact Us Page CSS End==========*/

/*==========Scroll To Top CSS Start==========*/
.scroll-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background-color: #ed7900;
    border-radius: 100%;
    font-size: 25px;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    overflow: hidden;
    z-index: 50;
    display: none;
}

.scroll-top:hover {
    box-shadow: 1px 1px 60px rgb(0 0 0 / 15%);
    transition: 0.3s;
    color: #ffffff;
}

.scroll-top:before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #007cbc;
    transition: 0.3s;
    z-index: 0;
}

.scroll-top:hover:before {
    top: 0;
}

.scroll-top i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 10px;
    z-index: 1;
}

.scroll-top:hover i {
    animation: swipe 0.6s linear infinite alternate;
}

@keyframes swipe {
    from {
        margin-top: -3px;
    }

    to {
        margin-top: 3px;
    }
}

/*==========Scroll To Top CSS End==========*/

/*==========Bubbles Animation CSS Start==========*/
.bubbles_wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    overflow: hidden;
    pointer-events: none;
}

@-webkit-keyframes animateBubble {
    0% {
        margin-top: 20%
    }

    to {
        margin-top: -30%
    }
}

@-moz-keyframes animateBubble {
    0% {
        margin-top: 20%
    }

    to {
        margin-top: -30%
    }
}

@keyframes animateBubble {
    0% {
        margin-top: 20%
    }

    to {
        margin-top: -30%
    }
}

@-webkit-keyframes sideWays {
    0% {
        margin-left: 0
    }

    to {
        margin-left: 25px
    }
}

@-moz-keyframes sideWays {
    0% {
        margin-left: 0
    }

    to {
        margin-left: 25px
    }
}

@keyframes sideWays {
    0% {
        margin-left: 0
    }

    to {
        margin-left: 25px
    }
}

.x1 {
    -webkit-animation: animateBubble 15s linear infinite, sideWays 2s ease-in-out infinite alternate;
    animation: animateBubble 15s linear infinite, sideWays 2s ease-in-out infinite alternate;
    left: 6%;
    top: 45%;
    background: #ed7900;
}

.x2 {
    -webkit-animation: animateBubble 10s linear infinite, sideWays 4s ease-in-out infinite alternate;
    animation: animateBubble 10s linear infinite, sideWays 4s ease-in-out infinite alternate;
    left: 5%;
    top: 80%;
    background: #007cbc;
}

.x3 {
    -webkit-animation: animateBubble 18s linear infinite, sideWays 2s ease-in-out infinite alternate;
    animation: animateBubble 18s linear infinite, sideWays 2s ease-in-out infinite alternate;
    left: 10%;
    top: 40%;
    background: #ed7900;
}

.x4 {
    -webkit-animation: animateBubble 12s linear infinite, sideWays 3s ease-in-out infinite alternate;
    animation: animateBubble 12s linear infinite, sideWays 3s ease-in-out infinite alternate;
    left: 20%;
    top: 0;
    background: #007cbc;
}

.x5 {
    -webkit-animation: animateBubble 19s linear infinite, sideWays 4s ease-in-out infinite alternate;
    animation: animateBubble 19s linear infinite, sideWays 4s ease-in-out infinite alternate;
    left: 30%;
    top: 50%;
    background: #ed7900;
}

.x6 {
    -webkit-animation: animateBubble 11s linear infinite, sideWays 2s ease-in-out infinite alternate;
    animation: animateBubble 11s linear infinite, sideWays 2s ease-in-out infinite alternate;
    left: 50%;
    top: 0;
    background: #007cbc;
}

.x7 {
    -webkit-animation: animateBubble 10s linear infinite, sideWays 2s ease-in-out infinite alternate;
    animation: animateBubble 10s linear infinite, sideWays 2s ease-in-out infinite alternate;
    left: 65%;
    top: 70%;
    background: #ed7900;
}

.x8 {
    -webkit-animation: animateBubble 12s linear infinite, sideWays 3s ease-in-out infinite alternate;
    animation: animateBubble 12s linear infinite, sideWays 3s ease-in-out infinite alternate;
    left: 80%;
    top: 10%;
    background: #007cbc;
}

.x9 {
    -webkit-animation: animateBubble 19s linear infinite, sideWays 4s ease-in-out infinite alternate;
    animation: animateBubble 19s linear infinite, sideWays 4s ease-in-out infinite alternate;
    left: 90%;
    top: 50%;
    background: #ed7900;
}

.x10 {
    -webkit-animation: animateBubble 16s linear infinite, sideWays 2s ease-in-out infinite alternate;
    animation: animateBubble 16s linear infinite, sideWays 2s ease-in-out infinite alternate;
    left: 80%;
    top: 80%;
    background: #007cbc;
}

.bubble {
    position: absolute;
    border-radius: 2px;
    box-shadow: none;
    width: 5px;
    height: 5px;
}

/*==========Bubbles Animation CSS End==========*/

/*==========Responsive CSS Start==========*/
@media screen and (max-width: 1399px) {

    .h1-title {
        font-size: 70px;
        line-height: 80px;
    }

    .h2-title {
        font-size: 55px;
        line-height: 70px;
    }

    .shape-1 {
        width: 90px;
        top: 210px;
        left: 30px;
    }

    .shape-2 {
        width: 55px;
        top: 670px;
        left: 35px;
    }

    .shape-3 {
        width: 263px;
    }

    .shape-4 {
        top: 650px;
        right: 116px;
        width: 30px;
    }

    .main-banner {
        padding-top: 200px;
    }

    .banner-content .h1-title {
        margin-bottom: 38px;
    }

    .about-img-box {
        width: 660px;
        float: right;
        left: 30px;
    }

    .cta-title .h2-title {
        font-size: 45px;
        line-height: 55px;
    }

    .footer-our-link {
        padding: 0 70px;
    }

    .footer-other-link {
        padding: 0 65px;
    }

    .get-course-price .h3-title {
        font-size: 22px;
    }

    .course-detail-rating-tag-box {
        margin-top: 30px;
    }

    .course-detail-date {
        margin-left: 88px;
    }

    .course-detail-rating-box {
        margin-left: 30px;
    }

    .instructor-detail-info-follow {
        margin-left: 30px;
    }

}

@media screen and (max-width: 1199px) {

    .h1-title {
        font-size: 60px;
        line-height: 70px;
    }

    .h2-subtitle {
        font-size: 20px;
        line-height: 20px;
    }

    .h2-title {
        font-size: 50px;
        line-height: 65px;
    }

    .h3-title {
        font-size: 22px;
        line-height: 30px;
    }

    .main-navigation ul li {
        font-size: 15px;
        margin-left: 0;
        padding-left: 22px;
    }

    .header-btn {
        margin-left: 26px;
    }

    .banner-content p {
        color: #777777;
        font-size: 15px;
        line-height: 24px;
    }

    .aliment-2 {
        right: 60px;
    }

    .banner-img-box {
        max-width: unset;
        width: 570px;
    }

    .event-date p {
        font-size: 30px;
        line-height: 30px;
    }

    .event-date p {
        margin-bottom: 2px;
    }

    .blog-date-comment .blog-box-line {
        margin-left: 6px;
        margin-right: 6px;
    }

    .cta-title .h2-title {
        font-size: 37px;
        line-height: 47px;
    }

    .cta-bg {
        padding: 40px 50px;
    }

    .footer-our-link {
        padding: 0 60px;
    }

    .footer-other-link {
        padding: 0 45px;
    }

    .main-banner-in {
        padding-top: 232px;
        padding-bottom: 124px;
    }

    .main-banner-in .shape-2 {
        position: absolute;
        top: 320px;
        left: 245px;
    }

    .main-banner-in .shape-3 {
        top: 188px;
    }

    .main-banner-in .shape-4 {
        width: 50px;
        top: 340px;
        right: 336px;
    }

    .academic-img-box {
        padding: 15px;
    }

    .event-detail-location-time {
        margin-top: 30px;
    }

    .event-detail-time {
        margin-left: 80px;
    }

    .instructor-detail-box .h3-title {
        font-size: 32px;
        line-height: 44px;
    }

    .instructor-detail-info-name .h2-title {
        font-size: 37px;
        line-height: 47px;
    }

    .instructor-detail-info-courses .h2-title {
        font-size: 37px;
        line-height: 47px;
    }

    .accordion-button.faq-btn {
        line-height: 26px;
        font-size: 16px;
    }

    .accordion.part-1 {
        padding-right: 10px;
    }

    .accordion.part-2 {
        padding-left: 10px;
    }

    .submit-ticket-form-content {
        padding-left: 10px;
    }

    .blog-detail-tag ul li:first-child {
        margin-bottom: 15px;
    }

    .blog-detail-related-blog-box .blog-box {
        margin-bottom: 30px;
    }

    .blog-detail-comment-box {
        margin-top: 90px;
    }

    .contact-detail-box {
        padding: 50px 40px;
    }

}

@media screen and (max-width: 991px) {

    .site-header,
    .site-header.sticky-header {
        background: rgb(255, 255, 255, 0.8);
        height: 70px;
        padding: 0;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        -moz-backdrop-filter: blur(20px);
        -ms-backdrop-filter: blur(20px);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }

    .header-bottom {
        background-color: transparent;
        box-shadow: none;
    }

    .site-branding a img {
        width: auto;
    }

    .sticky-header .header-bottom {
        padding: 23px 0px;
        animation: none;
        transition: 0.3s;
    }

    .site-header .container {
        max-width: 100%;
        padding: 0 30px;
    }

    .toggle-button {
        display: block;
    }

    .site-branding {
        position: fixed;
        top: 0;
        left: 30px;
        width: 200px;
        height: 70px;
        display: flex;
        align-items: center;
    }

    .site-branding a {
        width: 90%;
    }

    .main-navigation ul {
        position: fixed;
        top: 0;
        right: -400px;
        width: 320px;
        height: 100vh;
        max-height: 100vh;
        overflow: auto;
        background: #007cbc;
        text-align: center;
        padding: 100px 0 30px;
        box-shadow: -30px 0 30px rgba(0, 0, 0, 0.1);
        transition: 0.5s;
        opacity: 0;
        z-index: 100;
    }

    .main-navigation ul::before {
        content: "";
        position: absolute;
        width: 800px;
        height: 800px;
        opacity: 0.5;
        background: radial-gradient(ellipse at center, rgba(0, 96, 255, 0.6) 0%, rgba(0, 96, 255, 0.6) 0%, rgba(0, 96, 255, 0) 68%, rgba(0, 96, 255, 0) 100%);
        -webkit-background: radial-gradient(ellipse at center, rgba(0, 96, 255, 0.6) 0%, rgba(0, 96, 255, 0.6) 0%, rgba(0, 96, 255, 0) 68%, rgba(0, 96, 255, 0) 100%);
        top: -430px;
        right: -310px;
        z-index: -1;
    }

    .main-navigation ul li ul::before {
        content: "";
        position: relative;
    }

    .main-navigation ul::after {
        content: "";
        position: absolute;
        width: 655px;
        height: 655px;
        opacity: 0.4;
        background: radial-gradient(ellipse at center, rgba(255, 82, 25, 0.6) 0%, rgba(255, 82, 25, 0.6) 0%, rgba(255, 82, 25, 0) 68%, rgba(255, 82, 25, 0) 100%);
        -webkit-background: radial-gradient(ellipse at center, rgba(255, 82, 25, 0.6) 0%, rgba(255, 82, 25, 0.6) 0%, rgba(255, 82, 25, 0) 68%, rgba(255, 82, 25, 0) 100%);
        bottom: -110px;
        left: -330px;
        z-index: -1;
    }

    .main-navigation ul li ul::after {
        content: "";
        position: relative;
    }

    .main-navigation.toggle-menu ul {
        right: 0;
        opacity: 1;
        z-index: 100;
    }

    .main-navigation>ul::-webkit-scrollbar-thumb {
        width: 0;
        background: transparent;
    }

    .main-navigation>ul::-webkit-scrollbar {
        width: 0;
    }

    .main-navigation>ul::-webkit-scrollbar-track {
        width: 0;
        background: transparent;
    }

    .main-navigation ul li {
        display: block;
        margin: -50px 0 10px 0;
        padding: 10px 40px 20px 40px;
        opacity: 0;
        transition: 0.5s;
    }

    .main-navigation ul li:first-child {
        padding: 10px 40px 20px 40px;
    }

    .main-navigation.toggle-menu ul li {
        text-align: left;
        border-bottom: solid 1px rgb(225, 225, 225, 0.2);
        margin-top: 0;
        opacity: 1;
        transition: 0.5s;
        transition-delay: 0.4s;
    }

    .main-navigation ul li:last-child {
        border-bottom: none;
    }

    .main-navigation ul li:last-child a {
        display: inline-block;
        margin: 0 auto;
    }

    .site-header.sticky-header .main-navigation ul li a,
    .site-header.sticky-header .search-icon a,
    .site-header.sticky-header .main-navigation ul li.sub-items>a:before {
        color: #ffffff;
    }

    .main-navigation ul li a {
        font-size: 18px;
        line-height: 28px;
        color: #ffffff;
    }

    .main-navigation ul li.sub-items>a:before {
        color: #ffffff;
    }

    .main-navigation ul li.sub-items.active>a:before {
        color: #ed7900;
    }

    .main-navigation ul li ul.sub-menu,
    .main-navigation ul li:hover ul.sub-menu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        display: block;
        animation: none;
        padding: 0;
        margin-top: 10px;
        transition: 0s;
        display: none;
    }

    .main-navigation ul li ul.sub-menu li {
        text-align: left;
        border: none;
        padding: 0 16px;
        margin-bottom: 10px;
    }

    .main-navigation ul li ul.sub-menu li:first-child {
        padding-left: 16px;
    }

    .main-navigation ul li ul.sub-menu li:last-child {
        margin-bottom: 0;
    }

    .main-navigation ul li ul.sub-menu li a {
        color: #ffffff;
        padding: 0;
        font-size: 15px;
        line-height: 24px;
    }

    .main-navigation ul li.sub-items:hover>a:before,
    .main-navigation ul li a:hover:before {
        transform: translate(0, -50%) rotate(0deg);
        color: #ed7900;
    }

    .main-navigation ul li.sub-items.active-sub-menu>a:before {
        transform: translate(0, -50%) rotate(-180deg);
        color: #ed7900;
    }

    .header-top {
        display: none;
    }

    .Social-midea {
        display: none;
    }

    .header-contact {
        display: none;
    }

    .header-btn {
        display: none;
    }

    .toggle-button {
        display: block;
    }

    .main-banner {
        padding-top: 147px;
    }

    .banner-content {
        text-align: center;
    }

    .banner-btn {
        justify-content: center;
    }

    .banner-content p {
        color: #777777;
        font-size: 15px;
        line-height: 24px;
        padding: 0 100px;
    }

    .banner-img-box {
        max-width: none;
        width: auto;
        margin-top: 60px;
    }

    .main-course-category {
        padding-top: 76px;
        padding-bottom: 50px;
    }

    .about-img-box {
        width: auto;
        float: none;
        left: 0;
    }

    .about-us-content {
        padding-left: 0;
        margin-top: 50px;
    }

    .main-about-us {
        padding-top: 80px;
        padding-bottom: 145px;
    }

    .main-online-courses {
        padding-top: 27px;
        padding-bottom: 200px;
    }

    .courses-slider .slick-list {
        overflow: visible;
    }

    .courses-slider .slick-slide {
        opacity: 0;
        pointer-events: none;
        transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    }

    .courses-slider .slick-slide.slick-active {
        opacity: 1;
        pointer-events: unset;
        transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    }

    .course-box {
        margin-bottom: 0;
        margin-left: 15px;
        margin-right: 15px;
    }

    .online-courses-title-btn {
        position: absolute;
        bottom: -150px;
        left: 50%;
        transform: translate(-50%);
        float: right;
    }

    .main-event {
        padding-top: 30px;
        padding-bottom: 20px;
    }

    .event-content-box {
        padding-left: 0;
        margin-top: 50px;
    }

    .pricing-slider .slick-list {
        overflow: visible;
    }

    .pricing-slider .slick-slide {
        opacity: 0;
        pointer-events: none;
        transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    }

    .pricing-slider .slick-slide.slick-active {
        opacity: 1;
        pointer-events: unset;
        transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    }

    .pricing-box {
        margin-left: 15px;
        margin-right: 15px;
    }

    .main-pricing {
        padding-top: 26px;
        padding-bottom: 30px;
    }

    .core-features-content {
        padding-top: 80px;
        padding-bottom: 80px;
        padding-right: 0;
    }

    .core-features-content1 {
        padding-left: 20px;
        padding-top: 80px;
        padding-bottom: 80px;
        padding-right: 0;
    }

    .core-features-img {
        position: relative;
        width: 100%;
        height: 500px;
    }

    .main-instructor {
        padding-top: 26px;
        padding-bottom: 40px;
    }

    .main-testimonial {
        padding-top: 16px;
        padding-bottom: 100px;
    }

    .testimonial-title {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .main-blog {
        padding-top: 76px;
        padding-bottom: 80px;
    }

    .blog-slider .slick-list {
        overflow: visible;
    }

    .blog-slider .slick-slide {
        opacity: 0;
        pointer-events: none;
        transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    }

    .blog-slider .slick-slide.slick-active {
        opacity: 1;
        pointer-events: unset;
        transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    }

    .blog-box {
        margin-left: 15px;
        margin-right: 15px;
    }

    .blog-date-comment .blog-box-line {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-title {
        text-align: center;
    }

    .cta-btn {
        margin-top: 30px;
        text-align: center;
    }

    .main-footer {
        padding-top: 35px;
    }

    .footer-our-link {
        padding: 0;
        margin-bottom: 50px;
    }

    .footer-other-link {
        padding: 0;
    }

    .footer-copyright-bg {
        margin-top: 70px;
    }

    .main-banner-in {
        padding-top: 192px;
    }

    .main-banner-in .shape-1 {
        width: 100px;
        top: 140px;
    }

    .main-banner-in .shape-2 {
        top: 260px;
        left: 155px;
    }

    .main-banner-in .shape-3 {
        top: 117px;
    }

    .main-banner-in .shape-4 {
        top: 260px;
        right: 226px;
    }

    .main-about-us-in {
        padding-top: 80px;
        padding-bottom: 20px;
    }

    .main-academics-programs {
        padding-top: 153px;
        padding-bottom: 100px;
    }

    .academic-slider .slick-list {
        overflow: visible;
    }

    .academic-slider .slick-slide {
        opacity: 0;
        pointer-events: none;
        transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    }

    .academic-slider .slick-slide.slick-active {
        opacity: 1;
        pointer-events: unset;
        transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    }

    .academic-box {
        margin-left: 15px;
        margin-right: 15px;
    }

    .academic-content p {
        padding: 0 15px;
    }

    .main-event-in {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .main-courses-in {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .main-courses-list-box {
        padding-left: 0;
        margin-top: 80px;
    }

    .main-courses-list-box .course-box {
        margin-bottom: 30px;
        margin-left: 0;
        margin-right: 0;
    }

    .main-course-detail-in {
        padding-top: 68px;
        padding-bottom: 50px;
    }

    .course-detail-box {
        padding-right: 0;
    }

    .main-event-detail-in {
        padding-top: 54px;
        padding-bottom: 50px;
    }

    .event-detail-box {
        padding-right: 0;
    }

    .event-detail-sidebar {
        margin-top: 60px;
    }

    .course-detail-sidebar {
        margin-top: 80px;
    }

    .event-detail-location-time {
        margin-top: 0;
    }

    .event-detail-time {
        margin-left: 40px;
    }

    .main-instructor-detail-in {
        padding-top: 80px;
        padding-bottom: 76px;
    }

    .instructor-detail-box {
        width: auto;
        padding: 48px 50px;
        margin-top: -86px;
    }

    .main-instructor-page-in {
        padding-bottom: 20px;
    }

    .instructor-detail-info-img-box {
        width: 370px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 50px;
    }

    .course-detail-rating-box {
        margin-left: 40px;
    }

    .instructor-detail-info-follow {
        margin-left: 40px;
    }

    .instructor-detail-info-courses .course-box {
        margin-bottom: 30px;
        margin-left: 0;
        margin-right: 0;
    }

    .main-instructor-detail-page-in {
        padding-top: 80px;
        padding-bottom: 20px;
    }

    .instructor-detail-info-box {
        padding-left: 0;
    }

    .accordion.part-1 {
        padding-right: 0;
    }

    .accordion.part-2 {
        padding-left: 0;
    }

    .main-faq-in {
        padding-top: 77px;
        padding-bottom: 60px;
    }

    .main-submit-ticket-in {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .submit-ticket-form-content {
        padding-left: 0;
        margin-top: 50px;
    }

    .main-pricing-in {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .main-pricing-in .pricing-box {
        width: 370px;
        margin-bottom: 30px;
        margin-right: auto;
        margin-left: auto;
    }

    .main-blog-list-box {
        padding-right: 0;
    }

    .main-blog-list-in {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .blog-list-sidebar {
        margin-top: 80px;
    }

    .blog-detail-related-blog-box .blog-box {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }

    .main-blog-detail-in {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .blog-detail-related-blog-box {
        margin-top: 62px;
    }

    .blog-detail-comment-box {
        margin-top: 77px;
    }

    .blog-detail-leave-reply-box {
        margin-top: 26px;
    }

    .blog-detail-info-box {
        padding-right: 0;
    }

    .main-contact-page-in {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .contact-detail-box {
        margin-bottom: 80px;
    }

    .main-contact-map-in {
        margin-bottom: -180px;
    }

    .get-touch-box {
        padding-left: 0;
    }

    .main-blog-list-in .courses-pagination {
        padding-right: 0;
    }

}

@media screen and (max-width: 767px) {

    .h1-title {
        font-size: 48px;
        line-height: 58px;
    }

    .h2-title {
        font-size: 45px;
        line-height: 60px;
    }

    .h2-subtitle {
        font-size: 18px;
        line-height: 18px;
    }

    .banner-content p {
        padding: 0;
    }

    .footer-logo-content {
        margin-bottom: 50px;
    }

    .footer-other-link {
        margin-bottom: 50px;
    }

    .event-detail-location-time {
        margin-top: 30px;
    }

    .event-detail-time {
        margin-left: 80px;
    }

    .instructor-detail-box .h3-title {
        font-size: 30px;
        line-height: 32px;
    }

    .instructor-detail-box p {
        font-size: 16px;
        line-height: 26px;
    }

    .instructor-detail-box {
        width: auto;
        padding: 28px 30px;
        margin-top: 30px;
    }

    .instructor-detail-img-box {
        padding-right: 0;
    }

    .instructor-detail-info-user-box {
        display: block;
    }

    .instructor-detail-info-follow {
        margin-left: 0;
        margin-top: 30px;
    }

    .blog-detail-related-blog-box .blog-box {
        margin-bottom: 30px;
    }

    .blog-detail-comment-box {
        margin-top: 47px;
    }

}

@media screen and (max-width: 575px) {

    .container {
        padding: 0 30px;
    }

    .h1-title {
        font-size: 50px;
        line-height: 60px;
    }

    .main-banner-in .shape-2 {
        top: 260px;
        left: 75px;
    }

    .main-banner-in .shape-4 {
        top: 260px;
        right: 96px;
    }

    .course-detail-date {
        margin-left: 48px;
    }

    .course-detail-tag-box {
        margin-left: 25px;
    }

    .main-instructor-page-in .instructor-box {
        width: 370px;
        margin-left: auto;
        margin-right: auto;
    }

    .instructor-detail-box {
        width: 100%;
    }

    .instructor-detail-box .h3-title {
        font-size: 25px;
        line-height: 28px;
    }

    .client-comment-box {
        display: block;
        align-items: center;
    }

    .client-comment-img {
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 30px;
        width: 120px;
        height: 120px;
    }

    .client-comment-content {
        width: auto;
        text-align: center;
    }

}

@media screen and (max-width: 546px) {

    .instructor-detail-info-name-rating {
        display: block;

    }

    .course-detail-rating-box {
        margin-left: 0;
        margin-top: 30px;
    }

    .instructor-detail-info-name-rating .course-detail-rating-box {
        margin-left: 0;
    }

}

@media screen and (max-width: 530px) {

    .blog-big-user-line {
        margin-right: 10px;
        margin-left: 10px;
    }

}

@media screen and (max-width: 516px) {
    .courses-list-style-box {
        display: block;
    }

    .courses-list-dropdown-box .form-select {
        margin-top: 15px;
    }

}

@media screen and (max-width: 496px) {

    .banner-btn {
        display: block;
    }

    .shape-1 {
        width: 70px;
        top: 110px;
        left: 30px;
    }

    .shape-3 {
        width: 113px;
    }

    .aliment-1 {
        padding: 10px;
        top: 187px;
    }

    .aliment-2 {
        padding: 10px;
        top: 275px;
    }

    .aliment-3 {
        padding: 10px;
        top: 367px;
    }

    .sec-btn.btn-2 {
        background-color: #007cbc;
        margin-left: 0;
        margin-top: 30px;
    }

    .about-img-box .aliment-1 {
        top: 130px;
    }

    .about-img-box .aliment-3 {
        top: 250px;
    }

    .event-box {
        text-align: center;
        display: block;
    }

    .event-text-line {
        width: 100%;
        height: 1px;
        margin-left: 0;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .event-time-place {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .event-content-text .h3-title {
        margin-top: 5px;
    }

    .testimonial-quote {
        position: absolute;
        bottom: 20px;
        right: 20px;
    }

    .cta-title .h2-title {
        font-size: 30px;
        line-height: 40px;
    }

    .cta-bg {
        padding: 30px 10px;
    }

    .course-detail-rating-tag-box {
        display: block;
    }

    .course-detail-tag-box {
        margin-left: 0;
        margin-top: 30px;
    }

    .course-detail-date {
        margin-left: 40px;
    }

    .related-event-text span:last-child {
        margin-left: 10px;
    }

    .instructor-detail-box .h3-title {
        font-size: 22px;
        line-height: 24px;
    }

    .instructor-detail-box p {
        font-size: 15px;
        line-height: 24px;
    }

    .main-instructor-page-in .instructor-box {
        width: auto;
    }

    .blog-big-user-line {
        display: none;
    }

    .blog-big-user {
        margin-right: 10px;
    }

    .blog-big-content {
        padding: 20px;
    }

    .contact-detail-box .h3-title {
        color: #ffffff;
        font-size: 32px;
        line-height: 42px;
    }

    .contact-text {
        font-size: 18px;
        line-height: 28px;
    }

    .pagination-arrow {
        margin: 0 10px;
    }

}

@media screen and (max-width: 471px) {

    .blog-detail-tag ul li {
        margin-bottom: 15px;
    }

    .blog-detail-tag ul li:last-child {
        margin-bottom: 0;
    }

}

@media screen and (max-width: 458px) {

    .blog-big-user-box {
        display: block;
        align-items: center;
    }

    .blog-big-user {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .main-pricing-in .pricing-box {
        width: auto;
    }

}

@media screen and (max-width: 410px) {

    .get-course-price .h3-title {
        font-size: 20px;
    }

    .instructor-detail-info-img-box {
        width: 100%;
    }

}

@media screen and (max-width: 375px) {

    .container {
        padding: 0 15px;
    }

    .h1-title {
        font-size: 38px;
        line-height: 48px;
    }

    .h2-subtitle {
        font-size: 16px;
        line-height: 26px;
    }

    .h2-title {
        font-size: 35px;
        line-height: 50px;
    }

    .aliment-1 {
        padding: 10px;
        top: 197px;
    }

    .aliment-2 {
        display: none;
    }

    .aliment-3 {
        display: none;
    }

    .aliment-4 {
        width: 50px;
        height: 50px;
        top: 83px;
        right: 30px;
    }

    .event-video-play-box {
        padding: 27px 32px;
    }

    .online-courses-title-btn {
        left: 32%;
        transform: translate(-22%);
    }

    .main-banner-in .shape-2 {
        width: 50px;
        top: 260px;
        left: 65px;
    }

    .main-banner-in .shape-4 {
        width: 40px;
        top: 260px;
        right: 46px;
    }

    .event-detail-time {
        margin-left: 60px;
    }

    .event-detail-date {
        margin-left: 30px;
    }

    .instructor-detail-info-name .h2-title {
        font-size: 30px;
        line-height: 40px;
    }

    .instructor-detail-info-courses .h2-title {
        font-size: 30px;
        line-height: 40px;
    }

    .banner-breadcrum {
        display: block;
        padding: 15px 10px;
    }

    .contact-text {
        font-size: 16px;
        line-height: 25px;
    }

    .contact-detail-box {
        padding: 45px 35px;
    }

}

@media screen and (max-width: 356px) {

    .course-detail-instructor-date-box {
        display: block;
    }

    .course-detail-date {
        margin-left: 0;
        margin-top: 30px;
    }

    .get-course-price .h3-title {
        font-size: 16px;
    }

    .get-the-course {
        padding: 20px;
    }

    .recent-course-box {
        padding: 20px;
    }

    .event-detail-price-box {
        padding: 20px;
    }

    .event-detail-price-box .sec-btn {
        padding: 18px 38px;
    }

    .event-detail-related-event-box {
        padding: 20px;
    }

    .blog-list-sidebar-categories-box {
        padding: 20px;
    }

    .blog-list-sidebar-recent-post {
        padding: 20px;
    }

    .blog-list-sidebar-tag-box {
        padding: 20px;
    }

    .pagination-arrow {
        margin: 0 5px;
    }

}

/*==========Responsive CSS End==========*/


.nav-tabs {
    border-bottom: 0px solid #dee2e6;
}

.nav-tabs .nav-link {
    margin-bottom: -1px;
    background: 0 0;
    border-radius: 40%;
    margin: 1em;
    border: 1px solid transparent;
    color: #fff;
    font-weight: 600;
    /* border-top-left-radius: .25rem; */
    /* border-top-right-radius: .25rem; */
}



article {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.ac-list {
    display: flex;
    top: 0px;
    z-index: 10;
    padding-bottom: 14px;
}

.ac-list li {
    list-style: none;
    flex: 1;
}

.ac-list li:last-child {
    border-right: 1px solid #DDD;
}

.ac-button {
    width: 100% !important;
    border: 1px solid #DDD;
    border-right: 0;
    border-top: 0;
    padding: 10px;
    background: #FFF;
    font-size: 14px;
    font-weight: bold;
    height: 60px;
    color: #999
}

.ac-list li.active button {
    background: #F5F5F5;
    color: #000;
}

.ac-table {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
}

.ac-table th {
    background: #FFF;
    display: none;
}

.ac-table td,
.ac-table th {
    height: 53px
}

.ac-table td,
.ac-table th {
    border: 1px solid #DDD;
    padding: 10px;
    empty-cells: show;
}

.ac-table td,
.ac-table th {
    text-align: left;
}

.ac-table td+td,
.ac-table th+th {
    text-align: center;
    display: none;
}

.ac-table td.default {
    display: table-cell;
}

.bg-grey {
    border-top: 3px solid #5E6A71;
    border-bottom: 1px solid #fff;
    background-color: #e2cee3;
}

.bg-ltpurple {
    border-top: 3px solid #ed7900;
    border-bottom: 1px solid #f4eef6;
    background-color: #f4eef6
}

.bg-purple {
    border-top: 3px solid #ab5700;
    border-bottom: 1px solid #e2cee3;
    background-color: #FFF;
}

.bg-membership {
    Height: 10px !important;
    border-top: 3px solid #0097CF;
}

.sep {
    background: #b079b1;
    font-weight: bold;
    color: white;
    font-size: 16px;
    border-top: 1px solid #b079b1;
}

.ac-table td.short {
    height: 20px !important;
    border-bottom: 1px solid #fff;
    background-color: #fff;
}

.ac-table td.shortltpurple {
    height: 20px !important;
    border-bottom: 1px solid #f4eef6;
    background-color: #f4eef6;
}

.ac-table td.shortpurple {
    height: 20px !important;
    border-bottom: 1px solid #e2cee3;
    background-color: #e2cee3;
    display: table-cell;
}

.ac-table td.price {
    height: 20px !important;
    border-top: 0px;
    border-bottom: 0px;
    text-align: center;
}

.ac-table td.priceltpurple {
    height: 20px !important;
    border-top: 0px;
    border-bottom: 0px;
    text-align: center;
    background-color: #f4eef6;
}

.ac-table td.pricepurple {
    height: 20px !important;
    border-top: 0px;
    border-bottom: 0px;
    text-align: center;
    background-color: #e2cee3;
    display: table-cell;
}

.ac-table td.priceheader {
    height: 20px !important;
    border: 0;
    font-size: 25px;
    font-weight: bold;
}

.ac-table td.description {
    height: 20px !important;
    border-top: 0px;
    text-align: center;
    border-bottom: 0px;
}

.ac-table td.descriptionltpurple {
    height: 20px !important;
    border-top: 0px;
    text-align: center;
    background-color: #f4eef6;
    border-bottom: 0px;
}

.ac-table td.descriptionpurple {
    height: 20px !important;
    border-top: 0px;
    text-align: center;
    border-bottom: 0px;
    display: table-cell;
}

.ac-table td.grey {
    background-color: #fff;
    color: #000;
    font-weight: 600;
    background-color: #e2cee3;
}

.ac-table td.ltpurple {
    background-color: #f4eef6;
    display: table-cell;
    color: #000;
    font-weight: 600;
}

.ac-table td.purple {
    background-color: #e2cee3;
    color: #000;
    font-weight: 600;
    background-color: #FFF;
}

.txt-l {
    font-size: 28px;
    font-weight: bold;
}

/*--.txt-top { position:relative; top:-9px; left:-15px; }--*/
.txt-top {
    position: relative;
    top: 15px;
}

.tick {
    font-size: 18px;
    color: #5e6a71;
}

.tickltpurple {
    font-size: 18px;
    color: #b079b1;
}

.tickltpurplesmallfont {
    font-size: 16px;
    color: #b079b1;
}

.tickpurple {
    font-size: 18px;
    color: #8e258d;
}

.donotshow {
    border: 0;
    background: none;
}

.hidetop {
    border-top: 1px solid #ddd;
    border-bottom: 0px;
    background: none;
}

@media (min-width: 640px) {
    .ac-list {
        display: none;
    }

    .ac-table td,
    .ac-table th {
        display: table-cell !important;
    }

    .ac-table td,
    .ac-table th {
        width: 280px;

    }

    .ac-table td+td,
    .ac-table th+th {
        width: auto;
    }
}

.aboutus-programs {
    text-align: center;
}

.aboutus-programs h3 {
    font-size: 18px;
    font-weight: 500;
    color: #ed7900;
    text-align: left;
    margin: 15px 0px;
}

.aboutus-programs p {
    font-size: 16px;
    text-align: left;
    color: #000;
    margin-bottom: 10px;
}

.whites h4,
.whites p {
    color: #fff;
}

.learning-list {
    color: #fff;
}

.learning-list li {
    margin-bottom: 30px;
}

.get-touch-form {
    margin-top: 30px;
    background-color: #f9f9f9;
    padding: 20px 47px;
    border-radius: 20px;
    box-shadow: #bfbfbf 0px 0px 5px 2px;
    border: #cfcfcf solid 1px;
}

.get-touch-form h4 {
    color: #000;
    text-align: center;
    padding: 14px 0px;
    border-bottom: #ed7900 solid 2px;
    margin-bottom: 20px;
}

.reveal {
    position: relative;
    transform: translateY(250px);
    transition: all 3s ease-in-out;
}