:root {
    --title-font: 'Raleway', sans-serif;
    --primary-color: #05AFF2;
    --secondary-color: #EB9623;
    --levendar-color: #6C63FF;
    --fontawesome: "Font Awesome 5 Free";
    --light-bg: #f9f9f9;
    --banner-bg: #E9F8FA;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Fira Sans', sans-serif;
    font-size: 16px;
}

a:focus {
    text-decoration: none;
    outline: none;
}

nav.navbar {
    background-color: var(--primary-color);
    transition: all .3s;
}

.navbar .navbar-brand {
    padding: 0;
}

.navbar .navbar-brand img {
    width: 190px;
}

.navbar .navbar-brand img:first-child,
.navbar.ft-nav .navbar-brand img:last-child {
    display: none;
}

.navbar .navbar-brand img:last-child,
.navbar.ft-nav .navbar-brand img:first-child {
    display: block;
}
.navbar.ft-nav .navbar-brand img{
    width: 140px;
}

.navbar .nav-item .nav-link {
    position: relative;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding: 15px;
}

.navbar .nav-item .nav-link.active,
.ft-nav .nav-item .nav-link:hover {
    color: var(--primary-color);
}

.navbar .nav-item .nav-link.nav-link.active::before {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    position: absolute;
    top: -20px;
    left: 0;
}

.navbar .nav-item .nav-link.btn {
    background-color: #fff;
    border-color: #fff;
    color: var(--primary-color);
    padding: 10px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 400;
}

.navbar .nav-item .nav-link.btn.active::after {
    display: none;
}

.navbar .nav-item .nav-link.btn:hover {
    background-color: transparent;
    color: #fff;
}

.dropdown-toggle::after {
    vertical-align: middle;
}

.navbar .dropdown-menu {
    padding: 16px;
    border: none;
    box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    width: 100%;
}

.navbar .dropdown-menu::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-bottom: 10px solid #fff;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    position: absolute;
    top: -9px;
    left: 15px;
}

.navbar .dropdown-menu .dropdown-item {
    color: #000;
    padding: 6px 0;
    font-size: 16px;
    font-weight: 400;
    position: relative;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item.active {
    color: var(--primary-color);
    background-color: #fff;
}

.navbar .dropdown-menu .nav-link {
    color: #000;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 400;
    position: relative;
}

.navbar .dropdown-menu .nav-link::before {
    display: none !important;
}

.navbar .dropdown-menu .nav-link::after {
    content: '\f054';
    font-family: var(--fontawesome);
    font-weight: 900;
    font-size: 12px;
    position: absolute;
    right: -10px;
    color: #fff;
}

.navbar .dropdown-menu .nav-link.active {
    background-color: #fff;
    color: var(--primary-color);
}

.navbar .dropdown-menu .nav-link.active::after {
    color: var(--primary-color);
}

.navbar .dropdown-menu .tab-title {
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 12px;
    background: rgb(5, 175, 242);
    background: -moz-linear-gradient(top, rgba(5, 175, 242, 1) 0%, rgba(99, 237, 248, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(5, 175, 242, 1) 0%, rgba(99, 237, 248, 1) 100%);
    background: linear-gradient(to bottom, rgba(5, 175, 242, 1) 0%, rgba(99, 237, 248, 1) 100%);
    margin: 0 0 16px;
}

.navbar .dropdown-menu .card {
    border-radius: 4px;
    margin-bottom: 6px;
    border: 1px solid #ddd;
}

.navbar .dropdown-menu .card .btn {
    text-align: left;
    padding: 6px 30px 6px 16px;
    color: #222;
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
}

.navbar .dropdown-menu .card .btn a {
    color: #222;
}

.navbar .dropdown-menu .card .btn:hover,
.navbar .dropdown-menu .card .btn a:hover {
    color: var(--primary-color) !important;
}

.navbar .dropdown-menu .card .btn::after {
    content: '\f078';
    font-family: var(--fontawesome);
    font-weight: 900;
    font-size: 12px;
    position: absolute;
    right: 15px;
    top: 14px;
    color: #888;
    transition: all ease-in-out .3s;
}

.navbar .dropdown-menu .card .btn[aria-expanded='true']::after {
    transform: rotate(-180deg);
}

.navbar .dropdown-menu .card .card-body {
    padding: 0 16px;
}

.navbar .dropdown-menu .card .card-body ul {
    padding-left: 16px;
    margin-bottom: 16px;
}

.navbar .dropdown-menu .card .card-body ul li a {
    display: block;
    color: #555;
    text-decoration: none;
    padding: 5px 0;
    font-size: 16px;
}

.navbar .dropdown-menu .card .card-body ul li a:hover {
    color: var(--primary-color);
}

nav.navbar.ft-nav {
    background-color: #fff;
    box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.1);
}

.ft-nav .nav-item .nav-link {
    color: #000;
}

nav.navbar.ft-nav .nav-item .nav-link.btn {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.mascot{
    position: fixed;
    border-radius: 50%;
    /* background-color: #fff; */
    /* box-shadow: -5px 0 10px 1px rgba(0, 0, 0, .1); */
    right: -6px;
    top: 45%;
    z-index: 999;
}
.mascot img{
    width: 100px;
}

.banner {
    position: relative;
    height: 700px;
    background-color: var(--primary-color);
    background-size: cover;
    background-position: top center;
    padding-top: 100px;
    margin-bottom: 100px;
}

.banner::after {
    content: '';
    display: block;
    width: 100%;
    min-height: 130px;
    background-image: url(../images/banner-waves.png);
    background-size: 100%;
    background-color: var(--light-bg);
    background-repeat: no-repeat;
    position: absolute;
    bottom: -100px;
    z-index: -1;
}

.bn-container {
    /* height: calc(700px - 118px); */
    height: 670px;
}

.banner h1 {
    font-size: 38px;
    font-weight: 500;
    color: #fff;
    padding: 0;
    margin: 0 0 16px;
    font-family: var(--title-font);
}

.banner p {
    font-size: 20px;
    color: #fff;
    font-weight: 300;
    margin: 0 0 30px;
}

.banner img.w-100 {
    max-width: 586px;
}

.banner .new-ribbon {
    position: absolute;
    left: -32px;
    top: 45%;
    width: 160px;
}

.banner .banner-links {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: underline;
}

.banner .mouse-ic {
    display: inline-block;
    width: 34px;
    position: absolute;
    left: calc(50% - 17px);
    top: auto;
    bottom: 0;
    cursor: pointer;
    animation-name: bounce;
    animation-timing-function: linear;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
    
    100% {
        transform: translateY(0);
    }
}

#Path_25626 {
    -webkit-animation: outerFlame .5s infinite linear;
    -moz-animation: outerFlame .5s infinite linear;
    animation: outerFlame .5s infinite linear;
}

@-webkit-keyframes outerFlame {
    0% {
        fill: red
    }

    33% {
        fill: orange
    }

    66% {
        fill: yellow
    }

    75% {
        fill: orange
    }

    100% {
        fill: red
    }
}

@-moz-keyframes outerFlame {
    0% {
        fill: red
    }

    33% {
        fill: orange
    }

    66% {
        fill: yellow
    }

    75% {
        fill: orange
    }

    100% {
        fill: red
    }
}

@keyframes outerFlame {
    0% {
        fill: red
    }

    33% {
        fill: orange
    }

    66% {
        fill: yellow
    }

    75% {
        fill: orange
    }

    100% {
        fill: red
    }
}

#Path_25625 {
    -webkit-animation: innerFlame .5s infinite linear;
    -moz-animation: innerFlame .5s infinite linear;
    -ms-animation: innerFlame .5s infinite linear;
    animation: innerFlame .5s infinite linear;
}

@-webkit-keyframes innerFlame {
    0% {
        fill: orange
    }

    33% {
        fill: yellow
    }

    66% {
        fill: orange
    }

    100% {
        fill: red
    }
}

@-moz-keyframes innerFlame {
    0% {
        fill: orange
    }

    33% {
        fill: yellow
    }

    66% {
        fill: orange
    }

    100% {
        fill: red
    }
}

@keyframes innerFlame {
    0% {
        fill: orange
    }

    33% {
        fill: yellow
    }

    66% {
        fill: orange
    }

    100% {
        fill: red
    }
}

.w-90 {
    width: 90% !important;
}

.text-secondary-color {
    color: var(--secondary-color);
}

.text-primary-color {
    color: var(--primary-color) !important;
}

.text-levendar-color {
    color: var(--levendar-color) !important;
}

.bg-transparent {
    background-color: transparent !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

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

.bg-cyan {
    background-color: #00E0FE;
}

.bg-light-blue {
    background-color: #00e0fe15;
}

.bg-light-orange {
    background-color: #EB962315;
}

.bg-light-levendor {
    background-color: #6C63FF15;
}

.btn-white {
    font-size: 14px;
    font-weight: 400;
    background-color: #fff;
    border-color: #fff;
    color: var(--primary-color);
    padding: 10px 30px;
    text-transform: uppercase;
    border-radius: 30px;
}

.btn-white:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-white-o {
    font-size: 14px;
    font-weight: 400;
    background-color: var(--primary-color);
    border-color: #fff;
    color: #fff;
    padding: 10px 30px;
    text-transform: uppercase;
    border-radius: 30px;
}

.btn-white-o:hover {
    background-color: #fff;
    color: var(--primary-color);
    color: var(--primary-color);
}

.btn-blue {
    font-size: 14px;
    font-weight: 400;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    padding: 10px 30px;
    text-transform: uppercase;
    border-radius: 30px;
}

.btn-blue:hover {
    color: var(--primary-color);
    background-color: #fff;
}

.btn-blue-o {
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: #fff;
    padding: 10px 30px;
    text-transform: uppercase;
    border-radius: 30px;
}

.btn-blue-o:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
}

.btn-link:hover,
.btn-link:focus {
    text-decoration: none;
}

.btn-wap {
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    border-color: #25D366;
    background-color: #25D366;
    padding: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-transform: uppercase;
    border-radius: 30px;
    position: absolute;
    right: 20px;
    top: 10px;
}

.btn-wap:hover,
.btn-wap:focus {
    background-color: #25D366;
    color: #fff;
    outline: none;
    box-shadow: none;
}

@media only screen and (min-width: 1024px) {
    .banner .pt-md-5 {
        padding-top: 120px !important;
    }
}

section {
    padding: 60px 0;
}
.whWeDo{
    background-color: var(--light-bg);
}
.whWeDo .wh-list{
    position: relative;
    padding-left: 30px;
}
.whWeDo .wh-list::before{
    content: '';
    display: block;
    width: 1px;
    height: calc(100% - 75px);
    position:absolute;
    top: 16px;
    left: 10px;
    background-color: rgba(5, 175, 242, 0.5);
}
.whWeDo .wh-list .wh-list{
    position: relative;
    font-size: 24px;
    font-weight: 400;
    font-family: var(--title-font);
}
.whWeDo .wh-list .list-item{
    position: relative;
    margin: 0 0 30px;
}
.whWeDo .wh-list .list-item:hover{
    color: var(--primary-color);
}
.whWeDo .wh-list .list-item:last-child{
    margin: 0;
}
.whWeDo .wh-list .list-item::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    background-color: #fff;
    position: absolute;
    left: -26px;
    top: 4px;
}
.whWeDo .wh-list .list-item:hover::before{
    width: 20px;
    height: 20px;
    border: 0;
    background-color: var(--primary-color);
    left: -30px;
}
.whWeDo .wh-list h3{
    font-size: 24px;
    color: var(--primary-color);
    padding: 0;
    margin: 0;
}
.whWeDo svg{
    width: 100%;
}
.popover{
    font-family: 'Fira Sans', sans-serif;
    font-size: 14px;
    border: 1px solid var(--primary-color);
}
.popover .popover-header{
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
}
.piller .piller-img{
    transform: translateY(100px);
}
.piller .owl-carousel .owl-item{
    padding: 10px;
}
.piller .owl-carousel .owl-item .item{
    font-family: var(--title-font);
    position: relative;
    background-color: #fff;
    padding: 40px 30px 30px;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, .1);
    align-items: center;
    border-radius: 6px;
}
.piller .owl-carousel .owl-item img{
    width: 80px;
    margin-right: 16px;
}
.piller .owl-carousel .owl-item div{
    font-size: 18px;
    font-weight: 400;
    color: #000;
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}
.piller .owl-carousel .owl-item span{
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 48px;
    border-radius: 50%;
    font-weight: 600;
    text-align: center;
    font-size: 24px;
    border: 1px solid #ddd;
    position: absolute;
    right: 6px;
    top: 6px;
}
.piller .owl-theme .owl-dots .owl-dot span::before{
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    line-height: 30px;
    font-size: 16px;
    color: #fff;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}
.piller .owl-dots .owl-dot:first-child span::before {
    content: '1';
    background-color: var(--primary-color);
}
.piller .owl-dots .owl-dot:nth-child(2) span::before {
    content: '2';
    background-color: var(--levendar-color);
}
.piller .owl-dots .owl-dot:nth-child(3) span::before {
    content: '3';
    background-color: var(--secondary-color);
}
.piller .owl-dots .owl-dot:nth-child(4) span::before {
    content: '4';
    background-color: var(--primary-color);
}
.piller .owl-dots .owl-dot:nth-child(5) span::before {
    content: '5';
    background-color: var(--levendar-color);
}
.piller .owl-dots .owl-dot:nth-child(6) span::before {
    content: '6';
    background-color: var(--secondary-color);
}
.piller .owl-dots .owl-dot:nth-child(7) span::before {
    content: '7';
    background-color: var(--primary-color);
}
.piller .owl-theme .owl-dots .owl-dot span{
    position: relative;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: 0;
    color: #fff;
    opacity: 0.5;
}
.piller .owl-theme .owl-dots .owl-dot.active span{
    opacity: 1;
}
.test {
    padding: 30px 0;
    background-color: var(--light-bg);
}

.test .strip {
    box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.1);
    background: rgb(5, 175, 242);
    /* background: -moz-linear-gradient(left, rgba(5, 175, 242, 1) 0%, rgba(99, 237, 248, 1) 100%);
    background: -webkit-linear-gradient(left, rgba(5, 175, 242, 1) 0%, rgba(99, 237, 248, 1) 100%);
    background: linear-gradient(to right, rgba(5, 175, 242, 1) 0%, rgba(99, 237, 248, 1) 100%); */
    padding: 30px 60px;
    border-radius: 150px
}

.test .strip h2 {
    font-size: 30px;
    font-family: var(--title-font);
    color: #fff;
    padding: 0;
    margin: 0;
    font-weight: 500;
}

.test .strip p {
    color: #fff;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

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

.ft .card {
    border: none;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 16px;
    transition: all ease-in .3s;
    height: 100%;
}

.ft .card .img {
    display: block;
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background-color: #fff;
    text-align: center;
    line-height: 100px;
    flex: 0 0 auto;
}

.ft .card .img img {
    width: 80px;
}

.ft .card h3 {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    padding: 0;
    margin: 0 0 16px;
    text-align: center;
    flex: 0 0 auto;
}

.ft .card p {
    text-align: center;
    font-size: 16px;
    color: #333;
    margin: 0 0 30px;
    line-height: 20px;
    flex: 1 0 auto;
}

.ft .card a {
    display: inline-block;
    padding: 0px 22px;
    line-height: 30px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 12px;
    transition: all .4s;
}

.ft .card a .fa {
    display: none;
    transition: all .4s;
    color: #fff;
}

.ft .card:hover {
    transform: translateY(-30px);
    background-color: var(--primary-color);
    box-shadow: 0px 0px 10px 1px rgba(5, 175, 242, 0.5);
}

.ft .card:hover a {
    color: #fff;
}

.ft .card:hover a .fa {
    transition: all .4s;
    display: inline-block;
}

.ft .card:hover h3,
.ft .card:hover p {
    color: #fff;
}

.title {
    font-size: 40px;
    font-weight: 400;
    color: #000;
    font-family: var(--title-font);
    padding: 0;
    margin: 0 0 30px;
}

.title small {
    font-size: 22px;
    color: #222;
    display: block;
    font-family: 'Fira Sans', sans-serif;
    margin: 10px 0 0;
}

p {
    font-size: 16px;
    color: #333;
    margin: 0 0 30px;
}

.why {
    padding: 30px 0;
    background-color: var(--light-bg);
    position: relative;
}
.steps {
    background-image: url(../images/path.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 40%;
    background-position-x: 40%;
}

.steps .title {
    margin-bottom: 80px;
    text-align: center;
}

.steps h3 {
    font-size: 30px;
    font-family: var(--title-font);
    padding: 0;
    margin: 0 0 16px
}

.steps .row {
    margin-bottom: 80px;
}

.steps .st {
    position: absolute;
    font-size: 16px;
    color: #868E96;
    text-align: center;
}

.steps .st div {
    background-color: #fff;
}

.steps .st .cir {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    font-size: 20px;
    margin-bottom: 6px;
    color: #fff;
    background: var(--primary-color);
}

.steps .st-1 {
    left: 36%;
    bottom: -66%;
}

.steps .st.st-2 {
    left: -21%;
    top: 25%;
}

.steps .st.st-3 {
    left: -12%;
    top: 20%;
}

.steps .st.st-4 {
    top: -50%;
}

#tree_2 {
    visibility: hidden;
}

.Rcs {
    padding-bottom: 0;
    position: relative;
    margin: 12px 0 0;
    background: var(--primary-color);
}

.Rcs:before {
    content: '';
    height: 100px;
    width: 100%;
    position: absolute;
    top: -100px;
    background-image: url(../images/courses-bg-top.svg);
    background-size: 105%;
    background-repeat: no-repeat;
    background-position: bottom center;
    left: 0;
    right: 0;
}

.Rcs .title {
    color: #fff;
    margin: 0;
}

.Rcs .nav-tabs {
    border: none;
}

.Rcs .nav-tabs .nav-item {
    padding: 0 16px;
}

.Rcs .nav-tabs .nav-item .nav-link {
    font-size: 18px;
    color: #126e92;
    border: none;
    text-align: center;
    padding: 0;
    position: relative;
}

.Rcs .nav-tabs .nav-item .nav-link.active {
    background-color: transparent;
    color: #fff;
}

.Rcs .nav-tabs .nav-item .nav-link.active:after {
    content: '\f30b';
    display: inline-block;
    font-size: 16px;
    font-family: var(--fontawesome);
    font-weight: 900;
    color: #fff;
    position: absolute;
    left: 0;
    top: calc(50% - 12px);
}

.Rcs .tab-content .tab-pane {
    padding: 15px;
}

.Rcs .tab-content .tab-pane h3 {
    font-size: 30px;
    font-family: var(--title-font);
    font-weight: 400;
    padding: 0;
    margin: 0 0 16px;
    color: #fff;
}

.Rcs .tab-content .tab-pane p {
    color: #fff;
}

.Rcs .tab-content .tab-pane ul {
    padding-left: 30px;
    list-style: none;
    margin-bottom: 30px;
}

.Rcs .tab-content .tab-pane li {
    font-size: 16px;
    color: #fff;
    margin-bottom: 16px;
}

.Rcs .tab-content .tab-pane li:before {
    content: '\f00c';
    display: inline-block;
    font-family: var(--fontawesome);
    font-weight: 900;
    position: absolute;
    left: 16px;
    color: #fff;
    font-size: 16px;
}

.crs {
    position: relative;
    background-color: var(--light-bg);
    padding-top: 260px;
    z-index: 0;
}

.crs::before {
    content: '';
    height: 120px;
    width: 100%;
    left: 0;
    right: 0;
    position: absolute;
    top: -1px;
    background-image: url(../images/courses-bg-bottom.svg);
    background-size: 105%;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: 100;
}

.crs h2 {
    font-size: 30px;
    font-family: var(--title-font);
    color: #000;
    padding: 0;
    margin: 0;
    font-weight: 400;
}

.crs img {
    max-width: 110px;
    border-radius: 60px;
}

.crs .card {
    display: block;
    padding: 1.5rem;
    border: none;
    border-radius: 12px;
    background: var(--primary-color)
}

.crs .card h2,
.crs .card p {
    color: #fff;
}

.crs .borders {
    position: relative;
}

.crs .borders::after {
    content: '';
    display: block;
    width: 1px;
    height: 80%;
    position: absolute;
    right: 0;
    top: 10%;
    background-color: #7070701c;
}

.crs .borders::before {
    content: '';
    display: block;
    width: 80%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 10%;
    background-color: #7070701c;
}

.vid {
    position: relative;
    padding: 0;
}

.vid .caption {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.vid .caption a img {
    width: 90px;
}

.vid .caption h2 {
    font-size: 36px;
    font-family: var(--title-font);
    color: #fff;
    padding: 0;
    margin: 30px 0 0;
    text-align: center;
}

.vid .modal-body {
    padding: 0;
}

.vid .modal-body iframe {
    width: 100%;
    height: 500px;
    margin: 0;
}

.vid .close {
    position: absolute;
    background-color: #000;
    color: #fff;
    opacity: 1;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    z-index: 1200;
    right: -23px;
    top: -12px;
    padding: 0;
}

@media only screen and (min-width: 1024px) {
    .vid .modal-dialog {
        max-width: 900px;
    }
}

.ne .card {
    border: none;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.ne .card h3 {
    position: relative;
    font-size: 20px;
    font-family: var(--title-font);
    margin: 15px 0;
    padding: 0 30px;
    color: #000;
}

.ne .card .dt {
    position: absolute;
    top: -53px;
    left: 30px;
    padding: 10px 16px;
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
}

.ne .card p {
    padding: 0 30px;
    margin: 0 0 30px;
}

footer {
    font-size: 15px;
    color: #fff;
    padding: 100px 0 0;
    position: relative;
    margin: 12px 0 0;
    background: var(--primary-color);
}

footer:before {
    content: '';
    height: 100px;
    width: 100%;
    position: absolute;
    top: -80px;
    background: url(../images/wave.png);
    background-size: 1600px 100px;
    left: 0;
    right: 0;
    animation: wave 3s linear infinite;
}

@keyframes wave {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: 1600px;
    }
}

footer img.lg {
    display: block;
    width: 180px;
}

footer a {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
}

footer a:hover {
    color: #000;
    text-decoration: none;
}

footer h2 {
    font-size: 20px;
    color: #fff;
    font-family: var(--title-font);
    padding: 0;
    margin: 0 0 16px;
    font-weight: 600;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer li {
    margin-bottom: 6px;
}

footer li a {
    display: block;
}

footer li a::before {
    content: '\f30b';
    display: inline-block;
    font-family: var(--fontawesome);
    font-weight: 900;
    color: #000;
    width: 0px;
    overflow: hidden;
    vertical-align: middle;
    transition: all .3s;
}

footer li a:hover::before {
    width: 20px;
}

footer p {
    font-size: 15px;
    color: #fff;
    margin: 0;
}

#map {
    width: 100%;
    height: 200px;
    border: none;
    margin-top: 16px;
}

.copy {
    border-top: 1px solid #ffffff41;
    margin-top: 16px;
}

.copy a {
    font-size: 24px;
    text-decoration: none;
    margin: 0 5px;
}

.copy p {
    margin: 16px 0 0;
}

.testi .gallery-container {
    align-items: center;
    display: flex;
    min-height: 200px;
    margin: 0 auto;
    position: relative;
}

.testi .gallery-item {
    height: 150px;
    position: absolute;
    transition: all 0.3s ease-in-out;
    width: 150px;
    border-radius: 50%;
    z-index: 0;
}

.testi .gallery-item::after {
    content: '';
    display: block;
    width: 150px;
    height: 150px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .6;
    transition: all .4s;
    border-radius: 50%;
    background: #fff;
}

.testi .gallery-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}

.testi .gallery-item.gallery-item-selected {
    height: 150px;
    opacity: 1;
    left: 50%;
    transform: translateX(-50%) scale(1.3);
    width: 150px;
    z-index: 2;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.1);
}

.testi .gallery-item.gallery-item-selected::after {
    display: none;
}

.testi .gallery-item.gallery-item-previous,
.testi .gallery-item.gallery-item-next {
    height: 150px;
    width: 150px;
    z-index: 1;
}

.testi .gallery-item.gallery-item-previous {
    left: 30%;
    transform: translateX(-50%);
}

.testi .gallery-item.gallery-item-next {
    left: 70%;
    transform: translateX(-50%);
}

.testi .gallery-item.gallery-item-first {
    left: 15%;
    transform: translateX(-50%);
}

.testi .gallery-item.gallery-item-last {
    left: 85%;
    transform: translateX(-50%);
}

.testi .gallery-controls {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.testi .gallery-controls button {
    border: 0;
    cursor: pointer;
    text-transform: capitalize;
    background-color: var(--primary-color);
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    border-radius: 50%;
    color: #fff;
    font-weight: 900;
    padding: 0;
    margin: 0 5px;
}

.testi .gallery-controls button:focus {
    outline: none;
}

.testi .gallery-controls-previous {
    position: relative;
}

.gallery-controls-next {
    position: relative;
}

/* .testi p {
    display: none;
}

.testi p.active {
    display: block;
} */
.testi .owl-carousel .owl-item .item
{
    padding: 30px 60px;
}
.testi .owl-carousel .owl-item .item::after{
    content: '';
    display: block;
    width: 60px;
    height: 100%;
    position: absolute;
    right: 0px;
    bottom: 30px;
    background-image: url(../images/testimonial-flower-bg.svg);
    background-size: 60px;
    background-position: bottom right;
    background-repeat: no-repeat;
    z-index: 0;
}
.testi .owl-carousel .owl-item .item .card
{
    position: relative;
    background-color: #e0fbfd;
    border: 0;
    padding: 16px 30px;
    border-radius: 0;
    z-index: 10;
}
.testi .owl-carousel .owl-item .item .card:before {
    content: '';
    display: block;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    position: absolute;
    left: -15px;
    top: -15px;
    border: 15px solid #05AFF2;
    box-shadow: inset 0 0 8px 1px rgb(0 0 0 / 30%);
}
.testi .owl-carousel .owl-item .item .card::after {
    content: '';
    display: block;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    position: absolute;
    left: -20px;
    top: -20px;
    background-image: url(../images/frame-clip-top.svg), url(../images/frame-clip-bottom.svg);
    background-position: top right, bottom left;
    background-repeat: no-repeat;
    background-size: 100px;
}
.testi .owl-carousel .owl-item .item .card p {
    font-size: 16px;
    color: #000;
    font-style: italic;
    margin: 12px 0 0;
    min-height: 170px;
}
.testi .owl-carousel .owl-item .item .card .fa-quote-left {
    font-size: 24px;
    color: var(--primary-color);
}
.testi .owl-carousel .owl-item .item .card .test-ft
{
    border-top: 1px solid #ddd;
    padding: 16px;
    margin: 16px 0 0;
}
.testi .owl-carousel .owl-item .item .card .test-ft img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.testi .owl-theme .owl-dots .owl-dot.active span {
   background: var(--primary-color);
}
.testi .owl-carousel .owl-dots{
    margin: 30px 0 0;
} 
.testi .owl-carousel .owl-nav 
{
    position: absolute;
    top: 38%;
    left: -50px;
    right: -50px;
    display: flex;
    justify-content: space-between;
}
.testi .owl-carousel .owl-nav button{
    width: 30px;
    height: 30px;
    line-height: 30px!important;
    border-radius: 50%;
    margin: 0;
    text-align: center;
    background: rgba(5, 175, 242, 0.1)!important;
    color: var(--primary-color)!important;
    font-size: 30px;
}
.testi .owl-carousel .owl-nav button:hover,
.testi .owl-carousel .owl-nav button:focus{
    outline: none;
    color: var(--primary-color);
}

.pg-banner {
    padding: 30px 0 0;
    background-color: var(--banner-bg);
    margin: 82px 0 0;
}

.pg-banner h1 {
    font-family: var(--title-font);
    font-size: 40px;
    font-weight: 600;
    color: #000;
    padding: 0;
    margin: 0 0 15px;
}

.pg-banner .btn-blue-o {
    background-color: transparent;
}

.pg-banner .btn-blue-o:hover {
    background-color: var(--primary-color) !important;
}

.ib-reg {
    padding-bottom: 130px;
}

.ib-reg .card {
    padding: 0;
    border: none;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.ib-reg .card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 16px;
    padding: 24px 16px;
    background-color: var(--primary-color);
}

.ib-reg .card .nav-link {
    position: relative;
    display: block;
    padding: 16px 30px 16px 10px;
    color: #000;
    font-size: 15px;
}

.ib-reg .card .nav-link.active {
    border-radius: 0;
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.ib-reg .card .nav-link.active::after {
    content: '\f054';
    font-family: var(--fontawesome);
    font-weight: 900;
    font-size: 12px;
    position: absolute;
    right: 10px;
    top: 16px;
    color: var(--primary-color);
}

.ib-reg .tab-content {
    background-color: var(--light-bg);
    padding: 2rem;
}

.ib-reg .tab-content h3 {
    position: relative;
    font-family: var(--title-font);
    font-size: 30px;
    color: #000;
    padding: 0;
    margin: 0 0 30px;
    font-weight: 400;
}

.ib-reg .tab-content h3 span {
    position: relative;
    display: inline-block;
    background-color: var(--light-bg);
    padding-right: 10px;
    z-index: 100;
}

.ib-reg .tab-content h3::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    position: absolute;
    background-color: var(--primary-color);
    bottom: 3px;
    left: 0;
    z-index: 0;
}

.ib-reg .tab-content h4 {
    font-size: 20px;
    color: #222;
    font-weight: 500;
    padding: 0;
    margin: 0 0 6px;
}

.ib-reg .tab-content p {
    margin-bottom: 30px;
}

.ib-reg li {
    color: #333;
    font-size: 16px;
    margin-bottom: 8px;
}

.course-strip {
    background-color: var(--primary-color);
}

.course-strip img {
    display: block;
    width: 80px;
    margin: 0 auto 16px;
}

.course-strip label {
    display: block;
    text-align: center;
    margin: 0;
    font-weight: 400;
    color: #fff;
    font-size: 16px;
}

.course-strip h4 {
    font-size: 36px;
    font-family: var(--title-font);
    color: #fff;
    padding: 0;
    margin: 0;
}

.course-strip p {
    font-size: 16px;
    color: #fff;
    margin: 0;
}

.other-course {
    padding-bottom: 130px;
}

.other-course .card {
    padding: 0;
    border: 0;
    box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.other-course .card h3 {
    font-size: 20px;
    color: #000;
    padding: 30px 16px 8px;
    margin: 0;
}

.other-course .card p {
    font-size: 16px;
    color: #333;
    margin: 0 16px 30px;
}

.other-course .card .btn {
    border-radius: 0;
    padding: 16px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.all-ib .card {
    background-color: #fff;
    border: none;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.all-ib .card .card-body {
    flex-direction: column;
}

.all-ib .card h4 {
    font-size: 20px;
    color: #000;
    padding: 0;
    margin: 0 0 8px;
    flex: 0 0 auto;
}

.all-ib .card p {
    font-size: 16px;
    color: #333;
    margin: 0 0 30px;
    flex: 1 0 auto;
}

.res h3 {
    font-size: 18px;
    color: #000;
    padding: 0;
    margin: 0 0 8px;
}

.res .media {
    margin-bottom: 30px;
}

.res .media img {
    width: 80px;
}

.res .cls-res {
    background-color: var(--primary-color);
    padding: 60px 0;
}

.res .cls-res img {
    position: relative;
    display: block;
    width: 100px;
    margin: 0 auto 12px;
    z-index: 100;
}

.res .cls-res p {
    color: #fff;
    margin: 0;
    text-align: center;
}

.res .cls-res .col-md {
    position: relative;
}

.res .cls-res .col-md::after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 26%;
    left: 50%;
    z-index: 0;
}

.res .cls-res .col-md:last-child::after {
    display: none;
}

.res .plc-res {
    padding: 60px 0 100px;
}

.res .plc-res .card {
    padding: 2rem 1em;
    border: none;
}

.res .plc-res h4 {
    font-size: 20px;
    color: #000;
    padding: 0;
    margin: 0 0 8px;
    font-weight: 600;
}

.res .sm-papers {
    padding-bottom: 60px;
}

.res .sm-papers .card {
    border: none;
    box-shadow: 0px 0px 6px 1px #05aff21a;
    padding: 30px 16px;
    border-radius: 12px;
    border-top: 6px solid var(--primary-color);
}

.res .sm-papers .card h4 {
    font-size: 20px;
    text-align: center;
    color: var(--primary-color);
    padding: 0;
    margin: 0 0 8px;
}

.res .sm-papers .card p {
    font-size: 16px;
    color: #333;
    text-align: center;
    margin: 0 0 30px;
}

.res .kw-bk {
    padding: 60px 0;
}

.res .kw-bk img {
    width: 80px;
}

.res .kw-bk h3 {
    margin: 16px 0 8px;
}

.test-res .card {
    padding: 2rem 1rem;
    border-radius: 6px;
    box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.1);
    border: none;
    text-align: center;
    height: 100%;
    justify-content: space-between;
}

.test-res .card h3 {
    font-size: 18px;
    color: #000;
    padding: 0;
    margin: 0 0 30px;
    font-weight: 600;
}

.test-res .card h3 small {
    display: block;
    width: 100%;
    margin-top: 4px;
}

@media only screen and (min-width: 768px) {
    .h-md-100 {
        height: 100%;
    }
}

.result .container-card {
    border: none;
    padding: 2rem!important;
    box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.1);
}

.result .container-card .title {
    font-size: 30px;
}

.result .container-card .nav-tabs {
    border: none;
}

.result .container-card .nav-tabs .nav-link {
    /* font-weight: 400; */
    font-size: 16px;
    color: #000000d0;
    border: none;
    padding: 1rem 1rem;
}

.result .container-card .nav-tabs .nav-link .fa-long-arrow-alt-right {
    opacity: 0;
    color: var(--primary-color);
}

.result .container-card .nav-tabs .nav-link.active .fa-long-arrow-alt-right {
    opacity: 1;
}

.result .container-card .nav-tabs .nav-link.active {
    font-weight: 600;
    color: #000;
}

.result .card {
    padding: 0;
    height: 100%;
    align-items: center;
    border-radius: 6px;
    overflow: hidden;
    justify-content: flex-end;
}

.result .card h3 {
    font-size: 20px;
    color: #000;
    padding: 0 16px;
    margin: 0px 0 30px;
}

.result .card h4 {
    font-size: 16px;
    color: #000;
    padding: 0 16px;
    text-align: center;
    margin: 16px 0;
}
.result .card h4 small {
    display: block;
    color: #444;
    margin: 4px 0 0;
}

.result .card img {
    display: block;
    width: 100px;
    height: 100px;
    margin: 16px auto 0;
    border-radius: 50%;
    object-fit: cover;
}

.result .card:not(.container-card) label {
    display: block;
    width: 100%;
    font-size: 15px;
    padding: 8px;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 400;
    text-align: center;
    margin: 0;
    min-height: 38px;
}

.abt-stp {
    position: relative;
    background-color: var(--light-bg);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.abt-stp .container {
    position: relative;
    z-index: 100;
}

.abt-stp::before {
    content: '';
    display: block;
    width: calc(70% - 15px);
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
}

.abt-stp::after {
    content: '';
    display: block;
    width: 84px;
    height: calc(100% + 8px);
    position: absolute;
    left: calc(70% - 30px);
    top: -4px;
    bottom: 0;
    background-image: url(../images/why-wave.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

@media only screen and (min-width: 1900px) {
    .abt-stp::before {
        width: calc(65% - 15px);
    }

    .abt-stp::after {
        left: calc(65% - 30px);
    }
}

.abt-stp img {
    width: 80px;
    margin: 0 0 16px;
}

.abt-stp span {
    display: block;
    width: 100%;
    font-size: 40px;
    font-weight: 400;
}

.abt-stp p {
    margin: 0;
    padding: 0 6px;
    color: #000;
}

.abt-stp .abt-blue p {
    color: #fff;
}

.about {
    padding-bottom: 100px;
}

.about .btn-link span {
    display: inline-block;
}

.about .btn-link[aria-expanded="false"] span:last-child,
.about .btn-link[aria-expanded="true"] span:first-child {
    display: none;
}

.about .btn-link[aria-expanded="false"] span:first-child,
.about .btn-link[aria-expanded="true"] span:last-child {
    display: block;
}

.about .mvc {
    margin: 60px 0;
}

.about .mvc .card {
    display: block;
    border: none;
    padding: 2rem 1rem;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.about .mvc .card img {
    display: block;
    width: 60px;
    margin: 0 auto 30px;
}

.about .mvc .card h4 {
    font-size: 18px;
    color: #000;
    padding: 0;
    margin: 0 0 8px;
    text-align: center;
}

.about .mvc .card p {
    text-align: center;
    margin: 0;
}

.about .abt-tm {
    position: relative;
    padding: 80px 0;
    background-color: var(--primary-color);
    background-image: url(../images/about-strip-bg.png);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: top right;
}

.about .abt-tm h3 {
    font-size: 30px;
    color: #fff;
    font-family: var(--title-font);
    padding: 0;
    margin: 0 0 16px;
}

.about .abt-tm p {
    color: #fff;
    margin: 0;
}

.about .abt-tm .container {
    position: relative;
    z-index: 100;
}

.about .abt-tm h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    padding: 0;
    margin: 16px 0;
}

.about .abt-tm h4 small {
    display: block;
    margin: 4px 0 0;
    font-weight: 400;
}

.about .team-img {
    position: relative;
    padding: 30px;
    margin: 0 0 60px;
}

.about .team-img::after {
    content: '';
    display: block;
    width: 100px;
    height: 100px;
    border-bottom: 1px solid var(--primary-color);
    border-left: 1px solid var(--primary-color);
    position: absolute;
    bottom: 0;
    left: 0;
}

.about .team-img::before {
    content: '';
    display: block;
    width: 100px;
    height: 100px;
    border-top: 1px solid var(--primary-color);
    border-right: 1px solid var(--primary-color);
    position: absolute;
    top: 0;
    right: 0;
}

.about h4 {
    font-size: 24px;
    color: #000;
    padding: 0;
    margin: 0 0 16px;
}

.about h4 span {
    display: inline-block;
    padding: 0 16px 6px 0;
    border-bottom: 1px solid var(--primary-color);
}

.about p strong,
.about li strong {
    display: block;
    width: 100%;
    font-weight: 600;
    margin: 0 0 6px;
}

.about li {
    margin-bottom: 8px;
}

.wy {
    padding-bottom: 100px;
}

.wy .cut-title {
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
}

.wy .why-ft img {
    display: block;
    width: 90px;
    margin: 0 auto 30px;
}

.wy .why-ft h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    padding: 0;
    margin: 0 0 8px;
    text-align: center;
}

.wy .why-ft p {
    margin: 0;
}

.wy .wy-tm h3 {
    font-size: 18px;
    padding: 0;
    margin: 0 0 8px;
    color: var(--primary-color);
}

.con {
    padding: 120px 0 100px;
}

.con .card {
    border: none;
    border-radius: 12px;
    box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.con .card .card-blue {
    padding: 2rem;
    border-radius: 12px;
    background-color: var(--primary-color);
    box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 1140px) {
    .con .card .card-blue {
        transform: translateX(-100px) translateY(-100px);
        padding: 5rem 3rem;
    }
}

.con .card .card-blue h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    margin: 0 0 10px;
    padding: 0;
}

.con .card .card-blue p {
    color: #fff;
    margin: 0 0 30px;
}

.con form {
    display: block;
    width: 100%;
    padding: 30px 60px 30px 0;
}

.form-group {
    margin-bottom: 16px;
}

.form-group .form-control,
.form-group .custom-select {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0px;
    font-size: 16px;
    color: #000;
}

.form-group .form-control:focus,
.form-group .custom-select:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--primary-color);
}

.form-group input.form-control,
.form-group .custom-select {
    height: 40px;
}

.form-group label {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    color: #444;
    margin-bottom: 6px;
}

.form-group .custom-file-label {
    border: none;
    border-radius: 0;
    font-size: 16px;
    color: #000;
    border-bottom: 1px solid #ddd;
}

.form-group .custom-file-input:focus~.custom-file-label {
    outline: none;
    box-shadow: none;
}

label.error {
    font-size: 14px !important;
    color: #fc4949 !important;
    text-transform: initial !important;
    background-color: transparent !important;
    text-align: left !important;
    border: none !important;
    padding: 0 !important;
}

.enroll {
    padding: 130px 0;
}

.enroll .card-blue {
    background-color: var(--primary-color);
    padding: 6rem 3rem;
    border-radius: 12px;
    box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.1);
    width: calc(100% + 60px);
    z-index: 1;
    height: 100%;
}

.enroll .card-blue .nav {
    position: relative;
}

.enroll .card-blue .nav::after {
    content: '';
    display: block;
    width: 6px;
    height: calc(100% - 40px);
    background-color: #fff;
    position: absolute;
    right: -6px;
    top: 20px;
    bottom: 20px;
    box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.1);
    z-index: 90;
}

.enroll .card-blue .nav .prg {
    content: '';
    display: block;
    width: 6px;
    height: 0;
    background-color: var(--secondary-color);
    position: absolute;
    right: -6px;
    top: 20px;
    bottom: 20px;
    z-index: 98;
}

.enroll .pr-cr {
    display: none;
}

.enroll .card-blue .nav .nav-link {
    position: relative;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    padding: 20px 0;
    min-height: 88px;
    display: flex;
    align-items: center;
    cursor: default;
}

.enroll .card-blue .nav .nav-link div {
    width: 50px;
    height: 50px;
    line-height: 44px;
    border-radius: 50%;
    background-color: #fff;
    text-align: center;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    position: absolute;
    right: calc(0px - 25px);
    top: calc(50% - 25px);
    z-index: 100;
    box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.1);
    border: 3px solid #fff;
}

.enroll .card-blue .nav .nav-link.active div {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.enroll .card-blue .nav .nav-link div.check::after {
    content: "\f00c";
    font-family: var(--fontawesome);
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    color: #fff;
    background-color: var(--secondary-color);
    position: absolute;
    top: -3px;
    left: -3px;
}

.enroll .card-blue .nav .nav-link.active {
    background-color: transparent;
}

.enroll .card-blue .nav .nav-link.active::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #fff;
    position: absolute;
    left: -48px;
    top: calc(50% - 15px);
}

.enroll .tab-content {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.1);
    z-index: 10;
    padding: 2rem 4rem;
    height: 100%;
}

.enroll .tab-content h3 {
    font-size: 20px;
    color: #000;
    padding: 0;
    margin: 0 0 30px;
    font-weight: 400;
}

.enroll .tab-content h4 {
    font-size: 18px;
    color: #222;
    padding: 0;
    margin: 0 0 12px;
    font-weight: 400;
}

.enroll .tab-content ul,
.enroll .tab-content p {
    font-size: 16px;
    color: #444;
}

.enroll .tab-content li {
    margin-bottom: 6px;
}

.enroll .tab-content .user-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.enroll .tab-content .file-pic {
    width: 100%;
}

.enroll .tab-content .file-pic input {
    cursor: pointer;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.enroll .tab-content .file-pic .userPicLabel {
    display: inline-block;
    width: 100%;
    background-color: #fff;
    border: 1px solid var(--primary-color);
    text-align: center;
    border-radius: 30px;
    cursor: pointer;
    margin: 0;
    padding: 6px;
    font-size: 14px;
}

.enroll .tab-content .table th {
    border: none;
    border-bottom: 1px solid #333;
}

.enroll .tab-content .table td {
    border-top: 1px dashed #ddd;
}

.custom-control-label {
    cursor: pointer;
}

.custom-control-label::before {
    border-color: var(--primary-color);
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.custom-control-input:focus~.custom-control-label::before {
    outline: none;
    box-shadow: none;
}

.gallery a {
    position: relative;
    display: block;
    border-radius: 4px;
    overflow: hidden;
}

.gallery a::after {
    content: '\f00e';
    font-family: var(--fontawesome);
    font-weight: 900;
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #05aff2b7;
    color: #000;
    top: 0;
    bottom: 0;
    font-size: 20px;
    transform: scale(0);
    border-radius: 4px;
    transition: all .4s;
}

.gallery a:hover::after {
    transform: scale(1);
}

#Group_5882 {
    -webkit-animation-name: rotate;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotate;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    animation-name: rotate;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    transform-origin: 8% 7.2%;

}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.wwu .card {
    padding: 2rem;
}

.wwu form {
    padding: 0;
}

.program .ft-hr h3 {
    font-size: 18px;
    font-weight: 600;
    font-family: var(--title-font);
    color: #000;
    padding: 0;
    margin: 22px 0 16px;
}

.program .ft-hr p a {
    color: var(--primary-color);
    text-decoration: underline;
}

.program .ft-vh h3 {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--title-font);
    color: #000;
    padding: 0;
    margin: 22px 0 16px;
}

.program .ft-vh p a {
    color: var(--primary-color);
    text-decoration: underline;
}

.program .owl-theme .owl-dots .owl-dot span {
    background-color: #eaeaea;
}

.program .owl-theme .owl-dots .owl-dot:focus {
    outline: none;
    box-shadow: none;
}

.program .owl-theme .owl-dots .owl-dot.active span {
    background-color: var(--primary-color);
}

.program .course-benefit {
    background-color: var(--primary-color)
}

.program .course-benefit .title {
    color: #fff;
}

.program .course-benefit p {
    color: #fff;
    text-align: center;
    margin: 0;
}

.program .course-benefit img {
    display: block;
    width: 130px;
    margin: 0 auto 16px;
}

.program .fa-ul {
    margin-left: 1.5em;
}

.program .fa-li {
    top: 0;
    color: var(--primary-color);
}
.policy h4{
    font-size: 20px;
    color: #000;
    padding: 0;
    margin: 0 0 1.5rem;
    font-weight: 400;
}
.policy b{
    font-weight: 600;
}
.policy li {
    font-size: 16px;
    color: #333;
    margin: 0 0 16px;
}
/* media */
@media only screen and (max-width: 767px) {
    .navbar-brand {
        margin: 0;
    }

    .banner .new-ribbon{
        top: 50%;
    }

    .banner,
    .bn-container {
        height: auto;
    }

    .navbar-toggler {
        color: #fff;
    }

    .ft-nav .navbar-toggler {
        color: #444;
    }

    .banner::after {
        bottom: -130px;
        z-index: -1;
    }

    .banner h1 {
        margin-top: 60px;
    }

    .pg-banner h1 {
        font-size: 26px;
    }
    .piller .piller-img {
        transform: translateY(50px);
    }

    .test .container {
        padding: 0;
    }

    .test .strip {
        padding: 30px 16px;
        border-radius: 0px;
        text-align: center;
    }

    .test .strip p {
        margin: 20px 0 30px;
    }

    .why svg {
        max-width: 100%;
        height: auto;
    }

    .ft .card {
        margin-bottom: 1rem;
    }

    .Rcs:before {
        top: -98px;
    }

    .steps {
        background: none;
        text-align: center;
    }

    .steps .st {
        position: relative;
        left: 0 !important;
        right: 0;
        width: 100%;
        margin-bottom: 30px;
    }

    .steps h3,
    .steps p {
        text-align: center;
    }

    .vid img.w-100 {
        height: 500px;
        object-fit: cover;
    }

    .ne .card {
        margin-bottom: 30px;
    }

    .crs {
        padding: 50px 0 0;
    }

    .crs .card {
        border-radius: 0;
    }

    .crs::before {
        top: -1px;
    }

    /* .testi .gallery-item,
    .testi .gallery-item img,
    .testi .gallery-item::after,
    .testi .gallery-item.gallery-item-selected
    {
        height: 100px;
        width: 100px;
    } */
    .Rcs .title {
        margin-bottom: 60px;
    }

    .Rcs .nav-tabs .nav-item {
        padding: 0 6px;
    }

    .res .cls-res .col-md {
        padding: 30px 16px;
    }

    .res .cls-res .col-md::after {
        content: '';
        width: 2px;
        height: 30%;
        background-color: #fff;
        position: absolute;
        top: 90%;
        left: 50%;
        z-index: 0;
    }

    .Rcs .nav-tabs .nav-item .nav-link.active:after {
        content: '\f309';
        position: absolute;
        top: -30px;
        left: 48%;
    }

    .crs .borders::before,
    .crs .borders::after {
        display: none;
    }

    .title {
        font-size: 34px;
    }

    .plc-res img {
        margin-bottom: 16px;
    }

    .about .mvc .card {
        margin-bottom: 30px;
    }

    .about .abt-tm {
        padding-bottom: 0;
    }

    .con form {
        padding: 30px 16px;
    }

    .con .card .card-blue {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .enroll .tab-content {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .enroll .card-blue {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .enroll .tab-content,
    .enroll .card-blue {
        padding: 30px 16px;
        width: 100%;
    }

    .enroll .tab-content .file-pic {
        margin-bottom: 30px;
    }

    .enroll .card-blue .nav .nav-link.active::after {
        left: -17px;
    }

    .ib-reg .tab-content h3::after {
        bottom: -10px;
    }

    .abt-stp::before {
        height: 55%;
        width: 100%;
    }

    .abt-stp::after {
        background-image: url(../images/why-wave-mob.png);
        width: calc(100% + 13px);
        height: 100px;
        top: 55%;
        left: -3px;
        background-size: cover;
    }
    .mascot{
        top: 70%;
    }
    .mascot img{
        width: 70px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .banner {
        padding-bottom: 60px;
    }

    .banner,
    .bn-container {
        height: auto;
    }

    .banner::after {
        bottom: -130px;
    }
    .banner .new-ribbon{
        top: 78%;
    }
    .test .strip {
        flex-wrap: wrap;
    }

    .test .strip h2 {
        width: 100%;
        max-width: 100%;
        flex: 1 0 auto;
    }

    .test .container {
        padding: 0;
    }

    .test .btn-white {
        white-space: nowrap;
    }

    .ft .card {
        margin-bottom: 30px;
    }

    .why svg {
        max-width: 100%;
    }

    .Rcs .title {
        margin-bottom: 30px;
    }

    .Rcs:before {
        top: -98px;
    }

    .vid {
        height: 300px;
    }

    .vid img.w-100 {
        height: 300px;
        object-fit: cover;
    }

    .pg-banner {
        padding: 30px 0;
    }

    .con .card-blue {
        height: 100%;
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

    .steps {
        background-image: url(../images/path-tab.png);
        background-size: 87%;
        background-position-x: -33%;
    }

    .steps .st.st-3 {
        left: 1%;
        top: -52%;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        width: 700px;
    }

    .steps {
        background-size: 64%;
        background-position-x: 8%
    }

    .steps .st.st-3 {
        left: 31%;
        top: -48%;
    }

    .steps .st.st-4 {
        top: -34%;
        left: -12%;
    }
}

@media (min-width: 1025px) {
    .banner img.w-100 {
        max-width: 530px;
    }

    .banner::after {
        bottom: -128px;
    }

    .why svg {
        max-width: 100%;
    }

    .steps {
        background-image: url(../images/path.png);
        background-size: 65%;
        background-position-x: 27%;
    }

    .Rcs:before {
        top: -98px;
    }

    .crs::before {
        top: -2px;
    }

    .steps .st.st-4 {
        top: -50%;
        left: 0;
    }
}

@media (min-width: 1300px) {
    .steps {
        background-size: 57%;
        background-position-x: 30%;
    }
}

@media (min-width: 1400px) {
    .steps {
        background-size: 54%;
        background-position-x: 34%;
    }
}

@media (min-width: 1500px) {
    .steps {
        background-size: 50%;
        background-position-x: 36%;
    }
}

@media (min-width: 1600px) {
    .steps {
        background-size: 49%;
        background-position-x: 36%;
    }

    .banner img.w-100 {
        max-width: 586px;
    }

    .banner::after {
        bottom: -100px;
    }
}

@media (min-width: 1900px) {
    .steps {
        background-size: 41%;
        background-position-x: 40%;
    }
}