*,
* button:focus {
    outline: 0
}

body {
    font-family: 'Tajawal', sans-serif;
    text-decoration: none;
    font-size: .9em;
    overflow-x: hidden;
    position: relative;
}

body p {
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Tajawal', sans-serif;
}

body a:hover {
    text-decoration: none
}

body a:focus {
    outline: 0
}

body ul {
    list-style-type: none
}

.no-mar {
    margin: 0 !important;
}

.no-pad {
    padding: 0 !important;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
    -webkit-appearance: none
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    transition: all .6s ease;
    outline: 0
}

.items-gray {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
}

.container {
    position: relative;
    z-index: 20;
}


/* ==================== global style ============================== */

a,
span,
img {
    display: inline-block;
    transition: all 0.3s ease;
    color: inherit;
}

a:hover {
    color: #111;
}

ul {
    padding: 0;
}

img {
    max-width: 100%;
    max-height: 100%;
}

p {
    font-size: 14px;
    color: #252525;
    line-height: 1.733;
}

.text {
    font-size: 16px;
    color: #888;
    margin: 15px 0;
    line-height: 2;
}

.valign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.section-padding {
    padding: 80px 0;
}

.light {
    color: #fff;
}

button {
    border: 0;
}

.butn {
    padding: 12px 40px;
    text-align: center;
    position: relative;
    border-radius: 15px;
    background: #222;
    font-size: 14px;
    border: solid 1px #222;
    font-weight: 600;
}

.butn span {
    color: #fff;
    position: relative;
    z-index: 5;
}

.butn .icon {
    max-width: 20px;
    margin-right: 10px;
}


/* .butn span i {
    position: relative;
    top: 3px;
    left: 5px;
} */

.butn:hover {
    background-color: #fff;
    border: solid 1px #9994;
}

.butn:hover span {
    color: #222;
}

.butn.small {
    padding: 5px 35px 10px;
    font-size: 13px;
}

.butn.light {
    background-color: #fff;
    border: 1px solid #fff;
}

.butn.light span {
    color: #222;
}

.butn.light:hover {
    background-color: #222;
    border: 1px solid #222;
}

.butn.light:hover span {
    color: #222;
}

.butn.color {
    background-color: #52C1B0;
    border-color: #52C1B0;
}


/* ------------- */

.section-head {
    margin-bottom: 20px;
    overflow: hidden;
}

.section-head h6 {
    color: #52C1B0;
}

.section-head h2 {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    padding: 10px 0;
    position: relative;
    margin: 0;
    display: inline-block;
    text-align: center;
    border-bottom: 2px solid #fff1;
}

.section-head h3 {
    font-weight: 600;
}

.section-head p {
    color: #b7b7b7;
    font-size: 20px;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-control {
    border: 1px solid #9993;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    font-size: 12px;
    min-height: 45px;
    border-radius: 5px;
}

.form-control:focus {
    border-color: #52C1B0;
}

.form-control::placeholder {
    color: #999;
}

select.form-control {
    height: 45px;
}

.form-control:focus {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.custom-control-input:checked~.custom-control-label::before {
    border-color: #222;
    background-color: #222;
}


/* ---------------- burger button ------------------ */

.brger-btn {
    width: 35px;
    cursor: pointer;
}

.brger-btn span {
    display: block;
    width: 100%;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    height: 3px;
    background: #fff;
    transition: all .3s;
    position: relative;
}

.brger-btn span+span {
    margin-top: 8px;
}

.brger-btn.active span:nth-child(1) {
    animation: ease .7s top forwards;
}

.brger-btn.not-active span:nth-child(1) {
    animation: ease .7s top-2 forwards;
}

.brger-btn.active span:nth-child(2) {
    animation: ease .7s scaled forwards;
}

.brger-btn.not-active span:nth-child(2) {
    animation: ease .7s scaled-2 forwards;
}

.brger-btn.active span:nth-child(3) {
    animation: ease .7s bottom forwards;
}

.brger-btn.not-active span:nth-child(3) {
    animation: ease .7s bottom-2 forwards;
}

@keyframes top {
    0% {
        top: 0;
        transform: rotate(0);
    }
    50% {
        top: 7px;
        transform: rotate(0);
    }
    100% {
        top: 7px;
        transform: rotate(45deg);
    }
}

@keyframes top-2 {
    0% {
        top: 7px;
        transform: rotate(45deg);
    }
    50% {
        top: 7px;
        transform: rotate(0deg);
    }
    100% {
        top: 0;
        transform: rotate(0deg);
    }
}

@keyframes bottom {
    0% {
        bottom: 0;
        transform: rotate(0);
    }
    50% {
        bottom: 15px;
        transform: rotate(0);
    }
    100% {
        bottom: 15px;
        transform: rotate(135deg);
    }
}

@keyframes bottom-2 {
    0% {
        bottom: 15px;
        transform: rotate(135deg);
    }
    50% {
        bottom: 15px;
        transform: rotate(0);
    }
    100% {
        bottom: 0;
        transform: rotate(0);
    }
}

@keyframes scaled {
    50% {
        transform: scale(0);
    }
    100% {
        transform: scale(0);
    }
}

@keyframes scaled-2 {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}


/* ----------------------- fullwidth-menu ---------------------- */

.fullwidth-menu {
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    background-color: #000;
    width: 100%;
    height: 100vh;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
}

.fullwidth-menu.show {
    transform: scaleX(1);
    opacity: 1;
}

.fullwidth-menu .content {
    transform: scaleY(0.5) translateY(100px);
    transition: all 1s ease-in-out;
    transform-origin: bottom;
    overflow: hidden;
    padding-top: 100px;
}

.fullwidth-menu .content.show {
    transform: scaleY(1) translateY(0);
    transition: all 1.5s ease-in-out;
}

.fullwidth-menu .section-head {
    margin-bottom: 20px;
}

.fullwidth-menu .section-head h2 {
    font-size: 28px;
}

.fullwidth-menu .section-head img {
    width: 180px;
}

.fullwidth-menu .menu-links a {
    color: #acacac;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
}

.fullwidth-menu .menu-links a:hover {
    color: #fff;
}

.fullwidth-menu .menu-info .items {
    border-bottom: 2px dashed #9994;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.fullwidth-menu .menu-info .items:last-of-type {
    border: 0;
}

.fullwidth-menu .menu-info h6,
.fullwidth-menu .menu-info p {
    color: #fff;
    line-height: 2;
}

.menu-bottom {
    height: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #222222;
    z-index: 1000;
    transition: all 0.5s ease-in-out;
}

.menu-bottom.show {
    height: 0;
    transition-delay: 0.3s;
}


/* ==================== navbar style ============================== */

.navbar {
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 35;
    background-color: #fff;
}

.navbar .container-fluid {
    padding: 0 1vw;
}

.navbar .custom-navbar.fixed {
    position: fixed;
    top: -100px;
    left: 0;
    background-color: #fff;
    transform: translateY(100px);
    transition: all 0.5s ease;
}

.navbar .nav-toggle {
    display: none;
}

.nav-toggle span {
    width: 35px;
    background-color: #fff;
    height: 4px;
    display: block;
    margin: 7px 0;
    transition: all 0.6s ease;
}

.nav-toggle.active span:first-of-type {
    transform: rotate(45deg) translateX(15px);
}

.nav-toggle.active span:nth-of-type(2) {
    opacity: 0;
}

.nav-toggle.active span:last-of-type {
    transform: rotate(-45deg) translateX(15px);
}

.navbar .custom-navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    padding: 10px;
}

.navbar .custom-navbar .nav-list {
    text-align: center;
    z-index: 100;
    margin-bottom: 0;
    padding: 0;
    position: static;
}

.navbar .custom-navbar .nav-list .nav-items {
    display: inline-block;
    padding: 35px 0;
}

.navbar .custom-navbar li:last-of-type .nav-links {
    border: 0;
}

.navbar .custom-navbar .nav-links {
    padding: 5px 18px;
    position: relative;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Tajawal', sans-serif;
}

.navbar .custom-navbar .nav-links i {
    display: block;
    margin-bottom: 5px;
    font-size: 21px;
}

.navbar .custom-navbar .l-side .nav-links {
    font-size: 13px;
    text-transform: capitalize;
}

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

.navbar .custom-navbar .nav-list li:last-of-type .nav-links::before {
    display: none;
}

.navbar .custom-navbar .nav-list .nav-links.active:after,
.navbar .custom-navbar .nav-list .nav-links:hover:after {
    opacity: 1;
    width: 100%;
}

.navbar .custom-navbar .l-side .nav-links.active,
.navbar .custom-navbar .l-side .nav-links:hover {
    font-size: 13px;
}

.l-side {
    color: #fff;
}

.l-side a {
    color: #fff;
    margin: 0 10px;
    font-size: 13px;
}


/* .navbar .custom-navbar .drop-nav {
    position: relative;
} */


/* .navbar .custom-navbar .drop-nav .nav-links::before {
    position: absolute;
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    right: 7px;
    top: 17px;
    font-size: 10px;
} */

.navbar .custom-navbar .nav-list .mob-logo {
    display: none;
}

.navbar-brand img {
    width: 140px;
    /* padding: 10px 15px; */
}

.navbar .search-nav {
    padding-top: 35px;
}

.navbar .search-nav .form-control {
    background-color: #0001;
    padding-left: 40px;
    box-shadow: none;
    border-radius: 30px;
    color: #fff;
    min-width: 250px;
}

.navbar .search-nav .form-control::placeholder {
    color: #fff;
}

.navbar .search-nav button {
    position: absolute;
    left: 25px;
    top: 18px;
    color: #fff;
    border: 0;
    background: transparent;
}

.navbar .lang {
    padding: 0 !important;
    text-align: center;
}

.navbar .lang img {
    filter: invert(45%) sepia(47%) saturate(568%) hue-rotate(177deg) brightness(90%) contrast(95%);
    width: 25px;
    margin-left: 10px;
}

.navbar .lang span {
    color: #1A7252;
    font-size: 12px;
    margin-top: 5px;
}

.navbar .nav-search {
    padding-top: 30px;
    margin-right: 30px;
}

.navbar .nav-search input {
    min-height: 45px;
    background-color: #fff1;
    border-radius: 50px;
    color: #fff;
    font-size: 12px;
    padding-right: 50px;
    border: 0;
    min-width: 250px;
}

.navbar .nav-search button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #52C1B0;
    color: #fff;
}

.menu-nav {
    color: #fff;
    width: 125px;
    padding: 12px 0;
    /* border: 1px solid #fff3; */
    border-radius: 10px;
    position: relative;
    z-index: 1000;
    padding-top: 35px;
}

.menu-nav>span {
    font-size: 18px;
    font-weight: bold;
}

.inner-nav,
.inner-nav .custom-navbar {
    position: relative;
    background-color: #111;
}

.inner-nav .custom-navbar::before {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 90px;
    height: 100%;
    background-color: #52C1B0;
    z-index: 3;
}


/* -------------- header --------------- */

header {
    position: relative;
}

header .green-bar {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 90px;
    height: 100%;
    background-color: #52C1B0;
    z-index: 3;
    transition: all 0.6s ease-out;
    transition-delay: 0.4s;
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 50%, 0 0);
}

header .green-bar.full {
    width: 100%;
    z-index: 100;
    transition: all 0.7s ease-out;
    transition-delay: 0s;
    /* border-top-left-radius: 100px; */
    /* border-bottom-left-radius: 100px; */
    clip-path: polygon(100% 0, 100% 100%, 15% 100%, 0 50%, 15% 0);
    position: fixed;
    height: 100vh;
}

header .green-bar .cls {
    position: absolute;
    left: 40px;
    top: calc(50% - 25px);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}

header .green-bar .cls.show {
    opacity: 1;
    visibility: visible;
    transition: all 0.8s ease-in-out;
}

header .green-bar .cls i {
    color: #fff;
    width: 50px;
    height: 50px;
    font-size: 15px;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    border: 1px solid #fff5;
    z-index: 105;
    transition: all 0.3s ease-in-out;
}

header .green-bar .cls:hover i {
    background-color: #fff;
    color: #52C1B0;
}

header .green-content {
    position: absolute;
    width: 50%;
    right: 50%;
    top: 50%;
    z-index: 120;
    opacity: 0;
    visibility: hidden;
    height: 0;
    transform: translate(60%, -50%);
    transition: all 0.3s ease-in-out;
    border: 1px solid #fff4;
    padding: 15px 30px;
    border-radius: 20px;
}

header .green-content .info h4,
header .green-content .info p {
    color: #fff;
    line-height: 2.2;
}

header .green-content .form-control {
    background-color: #0001;
    color: #fff;
    border-color: #fff5;
}

header .green-content .form-control::placeholder {
    color: #f1f1f1;
}

header .green-content.show {
    opacity: 1;
    visibility: visible;
    height: 515px;
    transition: all 0.5s ease-in-out;
    transition-delay: 0.5s;
    min-height: max-content;
    position: fixed;
}

header .items {
    min-height: 100vh;
    height: 550px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

header .items:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.6;
}

header .items .content {
    position: relative;
    z-index: 10;
}

header .items .content>span {
    font-weight: 200;
    color: #ffffff;
    font-size: calc(2vw + 15px);
}

header .items .content h1 {
    font-weight: 500;
    font-size: 60px;
    color: #fff;
    position: relative;
}

header .items .content h1 img {
    margin-left: -25px;
    width: 25px;
    position: relative;
    bottom: 5px;
}

header .items .content h1 .shape {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #52C1B0;
    right: -20px;
    top: 0;
    z-index: -1;
}

header .items .content h6 {
    font-size: 30px;
    line-height: 2.2;
    color: #ffffff;
}

header .items .content p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: #e7e6e6;
}

header .head-social li {
    margin: 15px 0;
}

header .head-social li a {
    color: #fff;
    font-size: 16px;
    transition: all 1s ease-in-out;
    transform: scale(1.5);
    filter: blur(10px);
    opacity: 0;
    transition-delay: 1.5s;
}

.swiper-head .swiper-slide.swiper-slide-active .head-social li a {
    transform: scale(1);
    filter: blur(0);
    opacity: 1;
}

.swiper-head {
    position: relative;
    overflow: hidden;
}

.swiper-head .swiper-slide .items .content>span,
.swiper-head .swiper-slide .items .content h1,
.swiper-head .swiper-slide .items .content h6,
.swiper-head .swiper-slide .items .content p {
    opacity: 0;
    filter: blur(10px);
    transform: scale(1.5) translateY(-20px);
    transition: all 0.4s linear;
}

.swiper-head .swiper-slide .items .content .butn {
    opacity: 0;
    filter: blur(10px);
    transition: all 0.4s linear;
    transform: translateY(50px);
    border: 1px solid #fff9;
    border-radius: 50px;
    background: transparent;
    padding: 8px 15px 8px 40px;
}

.swiper-head .swiper-slide .items .content .butn i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    background-color: #fff;
    color: #52C1B0;
    font-size: 12px;
    margin-left: 15px;
}

.swiper-head .swiper-slide .items .content .butn:hover span {
    color: #52C1B0;
}

.swiper-head .swiper-slide .items .content>span {
    transition-delay: 1s;
}

.swiper-head .swiper-slide .items .content h1 {
    transition-delay: 1.2s;
}

.swiper-head .swiper-slide .items .content h6 {
    transition-delay: 1.4s;
}

.swiper-head .swiper-slide .items .content p {
    transition-delay: 1.6s;
}

.swiper-head .swiper-slide .items .content .butn {
    transition-delay: 1.8s;
}

.swiper-head .swiper-slide.swiper-slide-active .items .content>span,
.swiper-head .swiper-slide.swiper-slide-active .items .content h1,
.swiper-head .swiper-slide.swiper-slide-active .items .content h6,
.swiper-head .swiper-slide.swiper-slide-active .items .content p {
    opacity: 1;
    filter: blur(0);
    transform: scale(1) translateY(0);
}

.swiper-head .swiper-slide.swiper-slide-active .items .content .butn {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.swiper-head .swiper-next {
    position: absolute;
    bottom: 50px;
    color: #fff;
    z-index: 5;
    left: 220px;
    font-size: 20px;
}

.swiper-head .swiper-prev {
    position: absolute;
    bottom: 50px;
    color: #fff;
    z-index: 5;
    left: 50px;
    font-size: 20px;
}

.swiper-head .swiper-numbers {
    position: absolute;
    bottom: 60px;
    color: #fff;
    z-index: 5;
    left: 95%;
    font-size: 20px;
    display: inline-block;
    width: auto;
    transform: rotate(-90deg);
}

.swiper-head .swiper-numbers span {
    font-size: 30px;
    font-weight: bold;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: #fff;
    color: transparent;
    padding: 0 5px;
}

.swiper-head .swiper-notification {
    position: absolute;
}


/* -------------- about --------------- */

.about {
    position: relative;
    padding: 200px 0;
    overflow: hidden;
}

.about .info p {
    font-size: 16px;
    line-height: 40px;
    text-align: right;
    color: #272a29;
}

.about .info .butn,
.banner .content .butn {
    padding: 15px 0 15px 40px;
    border: 0;
}

.about .info .butn i,
.banner .content .butn i {
    background-color: #fff;
    padding: 6px 8px;
    margin-left: 20px;
    color: #52C1B0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.about .about-img {
    position: absolute;
    left: 0;
    width: 50%;
    top: 100px;
    object-fit: contain;
    object-position: left;
}

.about .about-shap {
    position: absolute;
    right: -80px;
    top: 35%;
    -webkit-animation: rotate-center 20s linear infinite both;
    animation: rotate-center 20s linear infinite both;
}

@-webkit-keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* -------------- services --------------- */

.services .items {
    border-radius: 60px;
    background: #fff;
    padding: 60px 40px;
    transition: all 0.3s ease-in-out;
}

.services .items:hover {
    box-shadow: 8px 20px 10px rgba(82, 193, 176, 0.09);
}

.services .items .img img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.services .items h6 {
    font-weight: 600;
    margin: 30px 0 15px;
}

.services .items p {
    font-size: 13px;
    line-height: 2;
}


/* -------------- bunner --------------- */

.banner .content {
    position: relative;
    padding: 50px 30px;
}

.banner .content p {
    color: #fff;
    line-height: 2;
}

.banner .content .r-side h2 {
    color: #fff;
    font-size: 50px;
}

.banner .content .r-side {
    padding-top: 30px;
}

.banner .content .r-side,
.banner .content .l-side {
    position: relative;
    z-index: 10;
}

.banner .content .l-side h2 {
    font-size: 45px;
    font-weight: 700;
}

.banner .content .l-side h2 span {
    color: #52C1B0;
    font-style: italic;
}

.banner .content .banner-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}


/* -------------- programs --------------- */

.programs {
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

.programs .items {
    border-radius: 15px;
    background: #fff;
    box-shadow: 0px 32px 64px rgba(35, 25, 0, 0.08);
    padding-right: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}

.programs .items .img {
    position: relative;
}

.programs .items .img>img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-bottom-right-radius: 15px;
}

.programs .items .img .icon {
    position: absolute;
    right: 15px;
    bottom: 15px;
}

.programs .items .info {
    padding: 20px 0 20px 20px;
}

.programs .items .info h6 {
    font-weight: 600;
    margin-bottom: 12px;
}

.programs .items .auther {
    display: flex;
    margin-top: 20px;
}

.programs .items .auther img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 10px;
}

.programs .items .auther small {
    margin-top: 10px;
}

.programs .prog-lt {
    position: absolute;
    left: -150px;
    top: 100px;
}

.programs .prog-lb {
    position: absolute;
    left: -80px;
    top: 50%;
}

.programs .prog-r {
    position: absolute;
    right: 0;
    top: 100px;
}


/* -------------- subscribe --------------- */

.subscribe {
    padding-bottom: 80px;
}

.subscribe .content {
    background-color: #52C1B0;
    border-radius: 20px;
    overflow: hidden;
    padding: 80px 15px;
}

.subscribe .content .info h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

.subscribe .content .info h5,
.subscribe .content .info p {
    color: #fff;
}

.subscribe .content .form-group {
    padding-top: 20px;
}

.subscribe .content .form-group .butn {
    border-radius: 5px;
    margin-left: 5px;
}


/* -------------- footer --------------- */

footer {
    padding-top: 100px;
    background-color: #151313;
}

footer .items h4 {
    font-size: 20px;
    color: #52C1B0;
    padding: 15px 0;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}


/* footer .items h4:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 15px;
    border-radius: 0;
    background-image: url(../images/section-head.png);
    background-size: contain;
    background-repeat: no-repeat;
} */

footer .items p {
    color: #acacac;
    line-height: 2.5;
    font-size: 14px;
}

footer .items.info p {
    padding-left: 3vw;
}

footer .items a,
footer .items.subscribe p {
    line-height: 2.5;
    color: #acacac;
    font-size: 14px;
}

footer .items a:hover {
    color: #fff;
}

footer .items.subscribe .form-group {
    position: relative;
}

footer .items.subscribe .form-group input {
    width: 100%;
    border-radius: 0;
    border: solid 1px #acacac;
    background-color: #ffffff;
    height: 50px;
    padding: 0 15px;
}

footer .items.subscribe .form-group input::placeholder {
    color: #acacac;
}

footer .items.subscribe .form-group .butn {
    position: absolute;
    top: 4px;
    right: 4px;
    bottom: 4px;
    font-size: 18px;
    line-height: 1.5;
    padding: 5px 25px;
}

footer .foot-logo img {
    width: 100px;
    margin-bottom: 15px;
}

footer .foot-social a {
    margin-left: 10px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: #fff;
    color: #222;
    border-radius: 50%;
}

footer .foot-social a:hover {
    color: #52C1B0;
}

footer .foot {
    padding: 30px;
    margin-top: 50px;
    position: relative;
    border-top: 1px solid #fff2;
}

footer .foot a {
    color: #fff;
    font-size: 14px;
    padding: 0 15px;
    line-height: 1.5;
}

footer .foot .items a:nth-of-type(2) {
    border-left: 1px solid #fff;
}

footer .foot a:hover {
    color: #fff;
}

footer .foot p {
    color: #fff;
    font-size: 16px;
}

footer .foot p a {
    color: #52C1B0;
    font-size: 16px;
    padding: 0 5px;
}


/* -------------------- inner pages  ------------------------- */

.pages-links {
    padding: 50px 0;
    margin-bottom: 30px;
}

.pages-links a,
.pages-links span {
    font-size: 16px;
    margin: 0 5px;
    font-weight: 500;
}

.pages-links span {
    color: #52C1B0;
}

/******************** Start edit page program ********************/
.program{
    position: relative;
    overflow: hidden;
    padding: 0px 0px 30px 0px;
}
.program .prog-lt {
    position: absolute;
    left: -150px;
    top: 0px;
}
.program .prog-lb {
    position: absolute;
    left: -80px;
    top: 290px;
}
.program .prog-r {
    position: absolute;
    right: 0;
    top: 0px;
}
.program .video-container{
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 25px;
}
.program .video-container video{
    width: 100%; 
    height: auto;
    border-radius: 15px;
}
.program-details .prog-info{
    width: 100%;
    padding: 1.375rem 0rem;
    border-bottom: 1px solid #ddd;
}
.program-details .prog-info p{
    font-size: 15px;
}
.program-details .prog-price{
    padding: 1.375rem 0rem;
}
.program-details .prog-price p{
    color: #52C1B0;
    font-size: 15px;
}
.program-details .prog-price p b{
    font-size: 25px
}
.program-details .timetable{
    width: 100%;
}
.program-details .timetable .nav{
    width: fit-content;
    margin: auto;
}
.program-details .timetable .nav .nav-link{
    padding: .55rem 3.375rem;
    border: 1px solid #333333;
    color: #333333;
    margin: 0px 3px;
}
.program-details .timetable .nav .nav-link.active{
    background-color: #333333;
    color: #ffff;
}
.program-details .timetable .responsive-table{
    border-top: 1px solid #eee;
    padding: 10px 0px;
    border-bottom: 1px solid #eee;
    overflow-Y: hidden;
}
.program-details .timetable table{
    border: none;
    width: fit-content;
    margin: 15px auto;

}
.program-details .timetable table tr{
    margin-bottom: 10px;
}
.program-details .timetable table td{
    padding: 1.375rem;
    text-align: center;
    border-radius: 10px;
}
.program-details .timetable table .holiday{
    background-color: #52C1B0;
    color: #fff;
}
.program-details .reserve-btn{
    width: 150px;
    height: 40px;
    line-height: 40px;
    display: block;
    text-align: center;
    background-color: #52C1B0;
    color: #fff;
    border-radius: 5px;
    margin: 15px auto;
}
/******************** Start edit page day of program ********************/
.day{
    position: relative;
    overflow: hidden;
    padding: 0px 0px 50px 0px;
}
.day .day-info .trainer{
    width: 100%;
    display: inline-flex;
    justify-content: center;
    padding: 1rem 0px 1.375rem 0rem;
    border-bottom: 1px solid #ddd;
}
.day .day-info .trainer img{
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}
.day .day-info .trainer p{
    margin-bottom: 0;
    line-height: 50px;
    margin-right: 15px;
}
.day .day-info .text{
    padding: 20px 50px;
    margin-bottom: 50px;
}
.day .video-container{
    width: 100%;
    height: auto;
    border-radius: 15px;
    position: relative;
    margin: 15px 0px; 
}
.day .video-container video{
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 1px solid #999;
}
.day .video-container .number{
    position: absolute;
    top: 3px;
    right: 3px;
    width: 70px;
    height: 70px;
    border-radius: 0px 15px 0px 0px;
    background-color: #fff;
}
.day .video-container .number span{
    color: #52C1B0;
    display: block;
    position: relative;
    top: 10px;
    font-weight: bold;
}
/******************** Start edit page cooking program ********************/
.cooking-wrapper .nav .nav-link{
    padding: .55rem 1.375rem;
    border: 1px solid #333333;
    color: #333333;
    margin: 0px 3px;
}
.cooking-wrapper .nav .nav-link.active{
    background-color: #333333;
    color: #ffff;
}
.cooking-wrapper .meals .card{
    border: none;
    border-radius: 20px;
    box-shadow: 0px 3px 4px 0px #eee; 
    margin: 15px 0px;
}
.cooking-wrapper .meals .card:hover h6{
    color: #52C1B0;
}
.cooking-wrapper .meals .card img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px 20px 0px 0px;
}
.cooking-wrapper .meals .card p{
    margin-bottom: .5rem;
}
.cooking-wrapper .meals .card i{
    margin-left: 5px;
    font-size: 18px;
}
/******************** Start edit page meal ********************/
.meal-details .info{
    box-shadow: 0px 3px 4px #f1f1f1;
    padding: 40px 20px;
    border-radius: 25px;
    margin-bottom: 25px;
}
.meal-details .info .inner{
    display: inline-flex;
}
.meal-details .info .inner img{
    width: 40px;
    height: 40px;
    position: relative;
    top: 11px;
    object-fit: contain;
}
.meal-details .info .inner p {
    margin-right: 10px;
    font-size: 17px;
}
.meal-details .info .inner p b{
    color: #52C1B0;
}
.meal-details .description{
    box-shadow: 0px 3px 4px #f1f1f1;
    padding: 40px 20px;
    border-radius: 25px;
    margin-bottom: 25px;
}
.meal-details .description .heading{
    display: inline-flex;
}
.meal-details .description .heading img{
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-left: 10px;
}
.meal-details .description .heading h6{
    line-height: 40px;
    color: #52C1B0;
}
.meal-details .description .text p{
    line-height: 2rem;
    color: #888;
}
.meal-details .steps{
    box-shadow: 0px 3px 4px #f1f1f1;
    padding: 40px 20px;
    border-radius: 25px;
}
/*start timeline*/
.meal-details .steps .timeline-centered {
    position: relative;
    margin-bottom: 30px;
}

.meal-details .steps .timeline-centered:before, 
.meal-details .steps .timeline-centered:after {
    content: " ";
    display: table;
}

.meal-details .steps .timeline-centered:after {
    clear: both;
}
.meal-details .steps .timeline-centered:before {
    content: '';
    position: absolute;
    display: block;
    width: 1px;
    background: #52C1B0;
    top: 20px;
    bottom: 20px;
    margin-right: 50px;
}

.meal-details .steps .timeline-centered .timeline-entry {
    position: relative;
    margin-top: 5px;
    margin-right: 30px;
    margin-bottom: 10px;
    clear: both;
}

.meal-details .steps .timeline-centered .timeline-entry .timeline-entry-inner {
    position: relative;
    margin-left: -20px;
}

.meal-details .steps .timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon {
    display: block;
    width: 40px;
    height: 40px;
    background: #52C1B0;
    border-radius: 50%;
    text-align: center;
    -webkit-box-shadow: 0 0 0 5px #52C1B0;
    box-shadow: 0 0 0 5px #52C1B0;
    line-height: 40px;
    float: right;
}
.meal-details .steps .timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon  {
    color: #fff;
    font-weight: bold;
}
.meal-details .steps .timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.color-none {
    background: #52C1B0;
    -webkit-box-shadow: 0 0 0 5px #f1f1f1;
            box-shadow: 0 0 0 5px #f1f1f1;
    width: 20px;
    height: 20px;
    position: relative;
    right: 9px;
}
.meal-details .steps .timeline-centered .timeline-entry .timeline-entry-inner .timeline-label {
    position: relative;
    background: #fff;
    padding: .5em 1.5em 3em 1.5em;
    margin-right: 60px;
    background-clip: padding-box;
}
.meal-details .steps .timeline-centered .timeline-entry p{
    line-height: 2rem;
    color: #888;
}
/******************** Start edit page Profile program ********************/
.profile{
    padding-bottom: 50px;
}
.profile .profile-info .profile-pic{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}
.profile .profile-data .heading{
    display: inline-flex;
    margin: 20px 0px;
    width: 100%;
    justify-content: space-between;
}
.profile .profile-data .heading h5{
    margin-bottom: 0;
    line-height: 50px;
}
.profile .profile-data .heading .butn{
    padding: 15px 0 15px 40px;
    border: 0;
}
.profile .profile-data .heading .butn i{
    background-color: #fff;
    padding: 6px 8px;
    margin-left: 20px;
    color: #52C1B0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.profile .profile-data .single-data{
    border-radius: 25px;
    border: 1px solid #D8D8D8;
    padding: 1.75rem 1.75rem;
    margin-bottom: 35px;
}
.profile .profile-data .single-data span{
    background-color: #fff;
    padding: 0 7px;
    color: #52C1B0;
    position: absolute;
    top: -10px;
    right: 40px;
}
.profile .profile-data .single-data p{
    font-size: 15px;
}
/******************** Start edit page contact program ********************/
.contact{
    padding-bottom: 50px;
}
.contact .form-control{
    height: 80px;
    border-radius: 25px;
    font-size: 13px;
    margin-bottom: 35px;

}
.contact textarea{
    height: 150px !important;
    padding: 25px 15px;
}
.contact .form-group span{
    background-color: #fff;
    padding: 0 7px;
    color: #52C1B0;
    position: absolute;
    top: -10px;
    right: 30px;
}
.contact .form-group .butn{
    border: 0;
    color: #fff;
    margin: auto;
    width: 180px;
    height: 55px;
    position: relative;
    right: 50%;
    transform: translateX(50%);
    transition: .3s;
}
.contact .form-group .butn:hover{
    color: #333;
}
.contact .form-group .butn  i{
    background-color: #fff;
    padding: 6px 8px;
    color: #52C1B0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    position: absolute;
    right: 0;
}

.contact .contact-img{
    position: relative;
    height: 700px;
    object-fit: cover;
}
/* -------------------- responsive style ------------------------- */
@media screen and (max-width: 991px) {
    .navbar .custom-navbar .nav-list .nav-items {
        display: block;
        border-bottom: 1px solid #9991;
        padding: 0;
    }
    .navbar .custom-navbar {
        /* padding-top: 50px; */
    }
    .navbar .custom-navbar .nav-list {
        position: fixed;
        right: -100%;
        top: 0;
        transition: all 0.5s ease;
        background: #fff;
        border-right: 1px solid #ffffff70;
        background-size: cover;
        background-position: center;
        width: 275px;
        height: 100vh;
        opacity: 0;
        text-align: right;
        padding: 0;
    }
    .navbar .custom-navbar .nav-list .mob-logo {
        padding: 15px;
        display: inherit;
        text-align: left;
        border-bottom: 1px solid #9995;
    }
    .navbar .custom-navbar .nav-list .mob-logo img {
        max-width: 100px;
    }
    .navbar .custom-navbar .nav-links {
        line-height: 3.5;
        margin: 0 !important;
        padding: 0 15px;
    }
    .navbar .custom-navbar .nav-toggle {
        float: left;
        cursor: pointer;
        margin-top: 20px;
        display: inherit;
    }
    .navbar .fixed {
        padding: 5px 0;
    }
    .navbar .custom-navbar.fixed .logo {
        display: none;
    }
    .navbar .custom-navbar .nav-list.show {
        right: 0;
        opacity: 1;
        overflow: auto;
        min-height: 101vh;
        /* box-shadow: 0 0 15px rgba(0,0,0,0.2); */
    }
    /* ---------------- */
    .navbar .custom-navbar .drop-nav:hover>.drop-down {
        width: 100%;
        position: relative;
        border-radius: 0;
    }
    .navbar .custom-navbar .drop-nav .drop-down {
        width: 100%;
    }
    .navbar .custom-navbar .nav-links {
        color: #777 !important;
        width: 100%;
    }
    /* -------------- navbar overlay --------------- */
    .navbar .custom-navbar .overlay {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        background-color: #000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    .navbar .custom-navbar .overlay.show {
        opacity: 0.8;
        visibility: visible;
    }
    .navbar,
    .navbar .custom-navbar {
        /* position: relative; */
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    .navbar .custom-navbar .nav-list .nav-items.drop-nav {
        position: relative;
    }
    .navbar .custom-navbar .nav-list .nav-items.drop-nav:hover .fullwidth-menu {
        position: relative;
    }
    .navbar .custom-navbar .drop-nav .nav-links:before {
        right: 94%;
        top: 10px;
    }
    .navbar .custom-navbar .nav-list .nav-links:after,
    header .head-content .social-head .scroll-down,
    .menu-nav,
    header .green-bar {
        display: none;
    }
    header .items .content h1 {
        font-size: 30px;
    }
    header .items .content h6 {
        font-size: 16px;
    }
    header .items .content h1 .shape {
        width: 40px;
        height: 40px;
        right: -10px;
        top: -5px;
    }
    header .items .content h1 img {
        width: 20px;
    }
    header .items .content {
        /* padding-top: 300px; */
    }
    .custom-navbar .col-lg-4.d-flex.w-100 {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .custom-navbar .col-lg-4.d-flex.w-100 .logo {
        width: 100%;
    }
    .navbar-brand img {
        width: 80px;
    }
    .navbar .nav-search {
        padding-top: 15px;
    }
    .navbar .l-side {
        width: 100%;
        text-align: center;
    }
    header .items {
        height: max-content;
        padding-top: 250px;
    }
    .swiper-head .swiper-numbers {
        left: 30px;
        width: 150px;
        bottom: 15px;
        transform: rotate(0);
        text-align: left;
    }
    header .head-social li {
        margin: 15px;
        display: inline-block;
    }
    .head-social {
        text-align: right !important;
        margin-top: 20px;
    }
    .banner .content .banner-img {
        object-fit: cover;
    }
    footer .foot {
        text-align: center;
        line-height: 2.2;
    }
}
/* ======== */

@media screen and (max-width: 787px) {
    .navbar-brand {
        width: 50%;
    }
    .navbar-brand img {
        padding: 0;
    }
    section {
        overflow: hidden;
    }
    .navbar {
        overflow: visible;
    }
    /* -------- navbar ltr ---------- */
    .navbar .custom-navbar .nav-list {
        right: unset;
        left: -100%;
        text-align: left;
    }
    .navbar .custom-navbar .nav-list.show {
        right: unset;
        left: 0;
    }
    .navbar .custom-navbar .nav-toggle {
        float: right;
    }
    .navbar .custom-navbar .navbar-brand {
        float: left;
        text-align: left;
    }
    .navbar .custom-navbar .drop-nav .drop-down {
        right: unset;
        left: 0;
        text-align: left;
    }
    .menu-nav {
        position: fixed;
        top: 0;
        right: 0;
        border-radius: 0;
        background-color: #000;
        width: 45%;
    }
    .download .info a img {
        margin-bottom: 10px;
    }
    .fullwidth-menu .content {
        overflow: auto;
        height: 100% !important;
        padding-top: 100px;
    }
    .fullwidth-menu .menu-links a {
        font-size: 17px;
        margin-bottom: 20px;
    }
    .about .info .items {
        height: fit-content;
    }
    .about .info .items span {
        top: 35px;
    }
    .program-details .timetable .nav .nav-link {
        padding: .55rem 2.375rem;
    }
}
/* ======= */

@media screen and (max-width: 480px) {}