/**
all css in template diwan
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');
:root {
    --bar: #333;
    --info: #1091a6;
    --font-color: #2f4d5a;
    --font-hover: #004e99;
    --maincolor: #d8a241;
    --hover: #cddff0;
    --transition: all 0.3s ease-in-out;
}
body {
    color: var(--font-color);
    font-family: "Tajawal", sans-serif;
}
a {
    color: var(--font-color);
    font-weight: 500;
}

a:hover {
    color: var(--font-hover);
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {

}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    margin: auto;
    background: url(/assets/img/logoloader2.png) no-repeat center;
    width: 65px;
    height: 65px;

}
#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
    border: 6px solid var(--info);
    border-top-color: var(--font-gray);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}

.back-to-top .fa {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background: var(--info);
    color: #fff;
    transition: all 0.4s;
    animation: backto-top-bounce 4s infinite ease-in-out;
}

.back-to-top .fa:hover {
    background: var(--maincolor);
    color: var(--hover);
}
@keyframes backto-top-bounce {
    0% {
        transform: translateY(-5px);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-5px);
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: #fff;
}

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #2a2c39;
    padding: 10px 20px;
    font-weight: 600;
    outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
    color: #ef6603;
    text-decoration: none;
}

.mobile-nav .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down > a:after {
    content: "\eaa1";
}

.mobile-nav .drop-down > a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(20, 21, 28, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#main{
    margin-top: 40px;
}
#topbar {
    background: var(--bar);
    color: #fff;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.5s;
}

#topbar.topbar-scrolled {
    /*
    top: -40px;
    */
    top: 0;

}
#topbar a,#topbar .fa{
    color: var(--maincolor);
}
#topbar a:hover{
    color: var(--info);
}
#topbar .fa {
    padding-left: 10px;
}

/*======================================
//--//-->   BUTTON
======================================*/
.btn {
    transition: .5s ease;
}

.btn.btn-a, .btn.btn-b {
    border-radius: 0;
    padding: 1rem 3rem;
}

.btn.btn-a {
    background-color: var(--font-gray);
    color: #ffffff;
}

.btn.btn-a:hover {
    background-color: var(--font-gray);
    color: var(--font-gray);
}

.btn.btn-b {
    background-color: var(--font-gray);
    color: var(--font-gray);
}

.btn.btn-b:hover {
    background-color: var(--font-gray);
    color: #ffffff;
}

.btn.btn-b-n {
    color: #ffffff;
    border-radius: 0;
}

.btn.btn-b-n:hover {
    color: var(--font-gray);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    direction: ltr;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 9997;
    transition: all 0.5s;
    padding: 15px;
    overflow-y: auto;
}

@media (max-width: 992px) {
    #header {
        width: 300px;
        background: #fff;
        border-right: 1px solid #e6e9ec;
        left: -300px;
    }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
}

.nav-menu a {
    display: flex;
    align-items: center;
    color: var(--font-gray);
    padding: 10px 18px;
    margin-bottom: 8px;
    transition: 0.3s;
    font-size: 15px;
    border-radius: 5px;
    background: #f2f3f5;
    height: 50px;
    width: 100%;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid var(--font-color);
    box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
}

.nav-menu a i {
    font-size: 20px;
}

.nav-menu a span {
    padding: 0 5px 0 7px;
    color: var(--font-gray);
}


.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
    color: #fff3cd;
    background: var(--info);
    border: 1px solid #ccc;
    box-shadow: 1px 2px 15px rgba(100, 100, 100, 0.3);
}

.nav-menu a:hover span, .nav-menu .active > a span, .nav-menu li:hover > a span   {
    color: #fff3cd;
}

.nav-menu a:hover, .nav-menu li:hover > a {
    width: 100%;
    color: #fff3cd;
}

.nav-menu a:hover span, .nav-menu li:hover > a span {
    display: block;
}
@media (min-width: 992px) {
    .nav-menu a {
        width: 56px;
    }

    .nav-menu a span {
        display: none;
        color: #fff;
    }
}
/*--------------------------------------------------------------
# Navbar
--------------------------------------------------------------*/
.navbar-default {
    z-index: 997;
    top: 40px;
    transition: all .5s ease-in-out;
    background-color: #f6f9fc;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    box-shadow: 1px 2px 15px rgba(100, 100, 100, 0.3);
}

.navbar.header-scrolled {
    top: 40px;
}

.navbar-default .nav-search {
    color: var(--font-gray);
    font-size: 1.5rem;
}
.navbar-default .nav-dew-app {
    color: var(--font-gray);
    /*
    font-size: 1.5rem;
    */
}

.navbar-default.navbar-reduce {
    box-shadow: 1px 2px 15px rgba(100, 100, 100, 0.3);
}

.navbar-default.navbar-trans, .navbar-default.navbar-reduce {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.navbar-default.navbar-trans .nav-item, .navbar-default.navbar-reduce .nav-item {
    position: relative;
    padding-right: 10px;
    margin-left: 0;
}

@media (min-width: 768px) {
    .navbar-default.navbar-trans .nav-item, .navbar-default.navbar-reduce .nav-item {
        /* margin-left: 10px;*/
    }
}


.navbar-default.navbar-trans .nav-link, .navbar-default.navbar-reduce .nav-link {
    font-size: 1.11rem;
    color: var(--font-gray);
    font-weight: 600;
    transition: all 0.1s ease-in-out;
    position: relative;
 }

.navbar-default.navbar-trans .nav-link:before, .navbar-default.navbar-reduce .nav-link:before {
    content: '';
    position: absolute;
    right: 0;
    width: 100%;
    z-index: 0;
    transform-origin: right;
}

.navbar-default.navbar-trans .nav-link:hover, .navbar-default.navbar-reduce .nav-link:hover {
    color: var(--font-gray);
}

.navbar-default.navbar-trans .nav-link:hover:before, .navbar-default.navbar-reduce .nav-link:hover:before {
    transform: scaleX(1);
    transform-origin: right;
}

.navbar-default.navbar-trans .show > .nav-link:before,
.navbar-default.navbar-trans .active > .nav-link:before,
.navbar-default.navbar-trans .nav-link.show:before,
.navbar-default.navbar-trans .nav-link.active:before,
.navbar-default.navbar-reduce .show > .nav-link:before,
.navbar-default.navbar-reduce .active > .nav-link:before,
.navbar-default.navbar-reduce .nav-link.show:before,
.navbar-default.navbar-reduce .nav-link.active:before {
    transform: scaleX(1);
}

.navbar-default.navbar-trans .nav-link:before {
    background-color: var(--font-gray);
}


.navbar-default.navbar-trans .nav-link:hover,
.navbar-default.navbar-trans .show > .nav-link,
.navbar-default.navbar-trans .active > .nav-link,
.navbar-default.navbar-trans .nav-link.show,
.navbar-default.navbar-trans .nav-link.active {
    color: var(--font-gray);
}

.navbar-default.navbar-reduce {
    transition: all 0.5s;

}

.navbar-default.navbar-reduce .nav-link {
    color: var(--font-gray);
}

.navbar-default.navbar-reduce .nav-link:before {
    background-color: var(--font-gray);
}

.navbar-default.navbar-reduce .nav-link:hover {
    color: var(--font-gray);
}

.navbar-default.navbar-reduce .show > .nav-link,
.navbar-default.navbar-reduce .active > .nav-link,
.navbar-default.navbar-reduce .nav-link.show,
.navbar-default.navbar-reduce .nav-link.active {
    color: var(--font-gray);
}
.navbar-brand {
    color: var(--info);
}
.navbar-default.navbar-reduce .navbar-brand {
    color: var(--font-gray);
}

.navbar-default .dropdown .dropdown-menu {
    transform: translate3d(0px, 8px, 0px);
    opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.3, 0.65, 0.355, 1) 0s, opacity 0.31s ease 0s, height 0s linear 0.36s;
    margin: 0;
    border-radius: 0;
    background-color: var(--bar);
}

@media (min-width: 768px) {
    .navbar-default .dropdown .dropdown-menu {
        border: 0;
        transform: translate3d(0px, 0px, 0px);
        opacity: 0;
        filter: alpha(opacity=0);
        visibility: hidden;
        transition: all 0.5s cubic-bezier(0.3, 0.65, 0.355, 1) 0s, opacity 0.31s ease 0s, height 0s linear 0.36s;
        margin: 0;
        display: block;
        position: absolute;
        box-shadow: 0 2px rgba(17, 16, 15, 0.1), 0 2px 10px rgba(20, 19, 18, 0.1);
        background-color: var(--bar);
        right: 0;
        left: auto;
        border-radius: 0 0 8px 8px;
        top: 50px;

    }
}

.navbar-default .dropdown .dropdown-menu .dropdown-item {
    padding: 10px 15px;
    border-right: 5px solid transparent;
    transition: all 500ms ease;
    font-weight: 700;
    min-width: 220px;
    color: #fff;
}

.navbar-default .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #f5f5f5;
    color: var(--maincolor);
    border-right: 5px solid var(--maincolor);
    transition: all 500ms ease;

}

.navbar-default .dropdown .dropdown-menu .dropdown-item.active {
    background-color:#f5f5f5;
    color: var(--font-gray);
    border-right: 5px solid var(--maincolor);

}

.navbar-default .dropdown:hover .dropdown-menu {
    transform: translate3d(0px, 14px, 0px);
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=1);
}

@media (min-width: 992px) {
    .navbar-icon-top.navbar-expand-lg .navbar-nav .nav-link > .mdi {
        display: block;
        text-align: center;
    }
}


/*------/ dew Navbar /------*/
.navbar-toggler {
    position: relative;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    outline: 0;
}

.navbar-toggler span {
    display: block;
    background-color: var(--font-color);
    height: 3px;
    width: 25px;
    margin-top: 4px;
    margin-bottom: 4px;
    transform: rotate(0deg);
    left: 0;
    opacity: 1;
}

.navbar-toggler span:nth-child(1),
.navbar-toggler span:nth-child(3) {
    transition: transform .35s ease-in-out;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
    position: absolute;
    left: 12px;
    top: 10px;
    transform: rotate(135deg);
    opacity: 0.9;
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
    height: 12px;
    visibility: hidden;
    background-color: transparent;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
    position: absolute;
    left: 12px;
    top: 10px;
    transform: rotate(-135deg);
    opacity: 0.9;
}

.navbar .logo img {
    max-height: 60px;
}

.mobile_nav {
    background: linear-gradient(90deg, rgba(250, 250, 250, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(250, 250, 250, 1) 100%);
    border-top: 1px solid rgb(250, 250, 250);
    border-bottom: 1px solid rgb(250, 250, 250);
    border-image: linear-gradient(90deg, rgba(250, 250, 250, 1) 0%, rgba(221, 221, 221, 1) 50%, rgba(250, 250, 250, 1) 100%) 1 stretch;

}

.pc_nav {
    /*background: linear-gradient(180deg, rgba(250, 250, 250, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(250, 250, 250, 1) 100%);
    border-left: 1px solid rgb(250, 250, 250);
    border-right: 1px solid rgb(250, 250, 250);
    border-image: linear-gradient(180deg, rgba(250, 250, 250, 1) 0%, rgba(221, 221, 221, 1) 50%, rgba(250, 250, 250, 1) 100%) 1 stretch;
*/}


/*--------------------------------------------------------------
# dew serv button Menu
--------------------------------------------------------------*/
.dew-serv-btn {
    color: #fdfdfd;
    border-radius: 25px;
    margin: 0 10px 0 0;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s;
    position:relative;
    cursor:pointer;
    border: 1px solid #ddd;
}

.dew-serv-btn:hover {
    background: #fff;
    color: #fff;
}

@media (max-width: 992px) {
    .dew-serv-btn {
        margin: 0 15px 0 0;
        padding: 8px 20px;
     }
}

/*======================================
//--//-->   BOX COLAPSE
======================================*/
.box-collapse {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 1040;
    background-color: #f6f9fc;
    transform: translateX(100%);
    transition: all 0.6s ease;
}


@media (min-width: 768px) {
    .box-collapse {
        width: 50%;
    }
}

.box-collapse .title-box-d {
    top: 30px;
    left: 60px;
    opacity: 0;
    transition: all 1s ease;
    transition-delay: .3s;
}

@media (max-width: 575px) {
    .box-collapse .title-box-d {

    }
}

@media (max-width: 575px) {
    .box-collapse .title-box-d .title-d {
        font-size: 1.3rem;

    }
}

.box-collapse-wrap {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 6.5rem;
    bottom: 5rem;
    padding-left: 10%;
    padding-right: 10%;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    transform: translateY(3rem);
    transition: transform 0.5s 0.5s ease, opacity 0.5s 0.5s ease;
}

.box-collapse-open .click-closed {
    visibility: visible;
}

.box-collapse-open .box-collapse {
    transform: translateX(0);
    box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
    opacity: 1;
}

.box-collapse-open .box-collapse .title-box-d {
    transform: translate(0);
    opacity: 1;
    padding-top: 37px;
    padding-right: 65px;
    color: var(--font-gray);
    font-weight: 700;
}

.box-collapse-open .box-collapse-wrap {
    transform: translate(0);
    opacity: 1;
}

.box-collapse-closed .box-collapse {
    opacity: .7;
    transition-delay: 0s;
}

.box-collapse-closed .box-collapse .title-box-d {
    opacity: 0;
    transition-delay: 0s;
}

.box-collapse-closed .box-collapse .form-a {
    opacity: 0;
    transition-delay: 0s;
}

.click-closed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    z-index: 1035;
    background-color: var(--font-gray);
    opacity: .4;
}

.close-box-collapse {
    position: absolute;
    z-index: 1050;
    top: 2rem;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--font-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.right-boxed {
    right: 4.2857rem;
}

.left-boxed {
    left: 4.2857rem;
}

/*--------------------------------------------------------------
# dew-ads Section
--------------------------------------------------------------*/
#dew-ads {
    width: 100%;
    /*
    height: 65vh;
    */
    height: 500px;
    overflow: hidden;
    position: relative;
    padding: 0;
}

#dew-ads .carousel, #dew-ads .carousel-inner, #dew-ads .carousel-item, #dew-ads .carousel-item::before {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#dew-ads .carousel-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: absolute;
    bottom: 60px;
    top: 110px;
    left: 50px;
    right: 50px;
}

#dew-ads .carousel-content {
    background: rgba(28, 23, 21, 0.7);
    padding: 20px;
    color: #fff;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    border-top: 5px solid var(--maincolor);
}

#dew-ads .carousel-content h2 a {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

#dew-ads .btn-get-started {
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 5px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: 2px solid var(--info);
}

#dew-ads .btn-get-started:hover {
    background: var(--info);
    color: #fff;
    text-decoration: none;
}

#dew-ads .btn-watch-video {
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 5px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: 2px solid var(--info);
    position: relative;
}

#dew-ads .btn-watch-video i {
    margin:0 10px;
    font-size: 20px;
    position: absolute;
    right: 0;
    transition: 0.3s;
}

#dew-ads .btn-watch-video:hover {
    background: var(--info);
    color: #fff;
    text-decoration: none;
}



#dew-ads .carousel-inner .carousel-item {
    transition-property: opacity;
}

#dew-ads .carousel-inner .carousel-item,
#dew-ads .carousel-inner .active.carousel-item-left,
#dew-ads .carousel-inner .active.carousel-item-right {
    opacity: 0;
}

#dew-ads .carousel-inner .active,
#dew-ads .carousel-inner .carousel-item-next.carousel-item-left,
#dew-ads .carousel-inner .carousel-item-prev.carousel-item-right {
    opacity: 1;
    transition: 0.5s;
}

#dew-ads .carousel-inner .carousel-item-next,
#dew-ads .carousel-inner .carousel-item-prev,
#dew-ads .carousel-inner .active.carousel-item-left,
#dew-ads .carousel-inner .active.carousel-item-right {
    left: 0;
    transform: translate3d(0, 0, 0);
}
#dew-ads .carousel-control-next-icon, #dew-ads .carousel-control-prev-icon {
     font-size: 30px;
    line-height: 0;
    width: auto;
    height: auto;
     border-radius: 50px;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.5);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#dew-ads .carousel-control-prev, #dew-ads .carousel-control-next {
    width: 10%;
}


#dew-ads .carousel-indicators li {
    cursor: pointer;
     display: inline-block;
    background: var(--maincolor);

}
/*--------------------------------------------------------------
# dew-ads new slider Section
--------------------------------------------------------------*/



#dew-ads h2 span {
    color: var(--info);
}

#dew-ads h2 {
    color: #eee;
    margin-bottom: 10px;

}

#dew-ads .btns {
    margin-top: 30px;
}

#dew-ads .btn-menu, #dew-ads .btn-book {
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
    padding: 15px 25px;
    margin: 15px 5px;
    border-radius: 50px;
    transition: 0.3s;
    line-height: 1;
    color:var(--info);
    background: var(--hover);
    border: 2px solid var(--info);
}

#dew-ads .btn-menu:hover, #dew-ads .btn-book:hover {
    border: 2px solid var(--hover);
    background: var(--info);
    color: white;
}

#dew-ads .btn-book {
    margin-left: 15px;
}

#dew-ads .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--maincolor) 50%, rgba(205, 164, 94, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

#dew-ads .play-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#dew-ads .play-btn::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid var(--maincolor);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

#dew-ads .play-btn:hover::after {
    border-left: 15px solid var(--info);
    transform: scale(20);
}

#dew-ads .play-btn:hover::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
}

@media (max-width: 768px) {
    #dew-ads h1 {
        font-size: 28px;
        line-height: 36px;
    }
    #dew-ads h2 {
        font-size: 18px;
        line-height: 24px;
    }
}
@media (min-width: 1024px) {
    #dew-ads {
        background-attachment: fixed;
    }
    #dew-ads .carousel-content {
        width: 60%;
    }

    #dew-ads .carousel-control-prev, #dew-ads .carousel-control-next {
        width: 15%;
    }
}
@media (max-width: 992px) {

    #dew-ads {
        height: calc(20vh);
        /*
        height: calc(32vh);
        */
    }
    #dew-ads .carousel-container{

        bottom: 0px;
        right: 0px;
        left: 0px;
    }
    #dew-ads .carousel-indicators li {
        display: none;
    }
    #dew-ads .carousel-content{
        padding: 0px;
        border: 0px;
    }

    #dew-ads .carousel-content h2 a{
        margin-bottom: 15px;
        font-size: 18px;
        font-weight: 500;
    }

    #dew-ads .carousel-content p {
        font-size: 15px;
    }
    #dew-ads .play-btn{
        width: 50px;
        height: 50px;
    }
    #dew-ads .play-btn::before{
        width: 60px;
        height: 60px;
        top: -10%;
        left: -10%;
    }

    .navbar {
        top: 40px;
    }

    .navbar .logo img {
        max-height: 60px;
    }


}
@media (max-height: 500px) {
    #dew-ads {
        /*
        height: 120vh;
        */
        height: 500px;
    }
    #dew-ads .container {
        padding-top: 130px;
        padding-bottom: 60px;
    }
}

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    overflow: hidden;
    padding: 40px 0;

}

.section-bg {
    background-color: whitesmoke;
}
.section-title {
    text-align: center;
    padding-bottom: 20px;
}

.section-title h2 {
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 20px;
    position: relative;
    color: var(--maincolor);
}

.section-title h2::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: var(--maincolor);
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 20px 0;
    background-color: #ecf8f9;
    min-height: 40px;
    margin-top: 120px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 70px;
    }
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
}

@media (max-width: 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px 0;
    }
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
}

.featured-services .icon-box::before {
    content: '';
    position: absolute;
    background: #d9f1f2;
    right: 0;
    left: 0;
    bottom: 0;
    top: 100%;
    transition: all 0.3s;
    z-index: -1;
}

.featured-services .icon-box:hover::before {
    background: var(--info);
    top: 0;
    border-radius: 0px;
}

.featured-services .icon {
    margin-bottom: 15px;
}

.featured-services .icon.fa {
    font-size: 48px;
    line-height: 1;
    color: var(--font-gray);
    transition: all 0.3s ease-in-out;
}

.featured-services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.featured-services .title a {
    color: #111;
}

.featured-services .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
}

.featured-services .icon-box:hover .title a, .featured-services .icon-box:hover .description {
    color: #fff;
}

.featured-services .icon-box:hover .icon.fa {
    color: #fff;
}

/*--------------------------------------------------------------
# complaint
--------------------------------------------------------------*/
.complaint {
    background: var(--info);
     background: linear-gradient(rgba(17, 145 ,167, 0.8), rgba(17, 145 ,167, 0.9)), url(../img/jobshint-bg.jpg) fixed center center;
     color: #fff;
    background-size: cover;
    padding: 60px 0;
}

.complaint h3 {
    font-size: 28px;
    font-weight: 800;
}

.complaint .complaint-btn {

    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 25px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid #fff;
    color: #fff;
}

.complaint .complaint-btn:hover {
    background: var(--maincolor);
    color: #fff;
}
 

/*--------------------------------------------------------------
    # jobs Section
    --------------------------------------------------------------*/



.jobs h3 {
    font-size: 18px;
     margin-bottom: 10px;
    color: var(--maincolor);
    text-align: right;
}
.jobs h3 a {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--info);
}
.jobs h3 a:hover {
    color: var(--maincolor);
}


.jobs .redhint{
    color: red;

}



.jobs p {
     margin-bottom: 20px;
    color: var(--font-color);
    text-align: right;
}


/*--------------------------------------------------------------
# jobs
--------------------------------------------------------------*/

.jobs {

    background: url(../img/jobs-bg.jpg) fixed center center;
    background-size: cover;
    position: relative;
}

.jobs::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: 9;
}
.jobs .container {
    position: relative;
    z-index: 10;
}
.jobs .container-hint {
    box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
    border-radius: 5px;
    border: 1px dotted #ccc;
     padding: 35px 35px 0 15px;
    min-height: 165px;
}

.jobs .content {

    padding: 13px;
}


.jobs .content h3 {
    color: var(--info);
}

.jobs .content p {
    margin-bottom: 30px;
    color: var(--font-gray);
    text-align: justify;
}


.jobs .content .jobs-btn {
    display: inline-block;
    background: var(--info);
    padding: 6px 44px 8px 30px;
    color: #fff;
    border-radius: 50px;
    transition: 0.3s;
    position: relative;
}

.jobs .content .jobs-btn i {
    font-size: 18px;
    position: absolute;
    right: 18px;
    top: 9px;
}

.jobs .content .jobs-btn:hover {
    background: #7bbad7;
}

.jobs .icon-boxes .icon-box {
    margin-top: 30px;
}
/*.jobs .icon-boxes .icon-box:nth-child(-n + 2) {
    border-bottom:1px solid #ddd;
    padding: 15px 0;
}*/
.jobs .icon-boxes .icon-box i {
}

.jobs .icon-boxes .icon-box h4 a{
    font-size: 20px;
    margin: 0 0 10px 0;
    color: var(--info);

}
.jobs .icon-boxes .icon-box h4 a:hover{
    color: var(--maincolor);
}

.jobs .content h4 a{
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: var(--info);

}

.jobs .icon-boxes .icon-box a {
    color: var(--font-gray);
}


#jobs .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}
#jobs .carousel-container h4 a{
    color: var(--info);
    font-weight: 700;
}
#jobs .carousel-container h4 a span{
    color: var(--maincolor);
    font-weight: 700;
}


#jobs .jobsdesc {
    width: 80%;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    margin: 0 auto 50px auto;

}

#jobs .carousel-control-prev, #jobs .carousel-control-next {
    width: 10%;
}

#jobs .carousel-control-next-icon, #jobs .carousel-control-prev-icon {
    background: none;
    font-size: 20px;
    line-height: 1;
    width: auto;
    height: auto;
    color: var(--info);
}

#jobs .get-started-icon {
    font-size: 24px;
    background:var(--maincolor);
    padding: 14px;
    color: #fff;
    border-radius: 50px;
    position: relative;
    z-index: 5;
    box-shadow: 10px 2px 15px rgba(0, 0, 0, 0.1);
}

#jobs .btn-get-started {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    transition: 0.5s;
    margin-right: -10px;
    padding: 5px 26px;
    color: var(--info);
    border: 2px solid var(--maincolor);
    border-radius: 50px 0 0 50px;
    position: relative;
    z-index: 4;
}

#jobs .btn-get-started:hover {
    background: var(--maincolor);
    color: #fff;
}

.carousel-control-next, .carousel-control-prev {
    color: var(--font-gray);
}

.carousel-control-next:hover, .carousel-control-prev:hover {
    color: var(--font-gray);
}
#jobs .content ul {
    list-style: none;
    padding: 0;
}

#jobs .content ul li {
    padding-bottom: 10px;
}

#jobs .content ul i {
    padding-right: 4px;
    color: var(--font-gray);
}
#jobs .parent{
    width:40px;
    height:40px;
    background:var(--info);
    margin:0 10px;
    border-radius:100%;
    position:relative;
    cursor:pointer;
}
#jobs .content .adsserial {
    display: inline-block;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: var(--maincolor);
    margin: 0 3px 10px 3px;
    transition: all ease-in-out 0.3s;
    background: #fafafa;
    border: 1px dotted #dad8d4;
    border-radius: 50px;
}


#jobs .parent:before{
    content:"";
    position:absolute;
    top:-5px;
    left:-5px;
    z-index:2;
    width:50px;
    height:50px;
    background:var(--info);
    opacity:0.2;
    border-radius:100%;
    animation:breathe2 2s infinite;
}
#jobs .parent:after{
    content:"";
    position:absolute;
    top:-10px;
    left:-10px;
    z-index:3;
    width:60px;
    height:60px;
    background:var(--info);
    opacity:0.2;
    border-radius:100%;
    animation:breathe 2s infinite;
}
#jobs .parent > span{
    color:#fff;
    font-weight:bold;
    font-size:25px;
    position:absolute;
    z-index:4;
    top:6px;
    left:8px;
}


#jobsCarousel .carousel-indicators li {
    cursor: pointer;
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color:var(--maincolor) !important;
}

@media (min-width: 1024px) {
    #jobs .jobsdesc {
        width: 60%;
    }

    #jobs .carousel-control-prev, #jobs .carousel-control-next {
        width: 5%;
    }
}

@media (max-width: 768px) {
    #jobs {
        text-align: center;
    }

    #jobs h2 {
        font-size: 28px;
    }

}

@media (max-width: 1200px) {
    .jobs .content {
        padding-right: 0;
    }
}

@keyframes breathe{
    0%{transform:scale(1)}
    50%{transform:scale(0.5)}
    100%{transform:scale(1)}
}
@keyframes breathe2{
    0%{transform:scale(1)}
    50%{transform:scale(1.2)}
    100%{transform:scale(1)}
}
/*--------------------------------------------------------------
# eservices Section
--------------------------------------------------------------*/
#eservices{
    top: 50px;
}

.eservices #eservices-flters {
    padding: 0;
    margin: 0 auto 0 auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
}
.eservices #eservices-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 16px 10px 16px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    color: var(--font-gray);
    margin: 0 3px 10px 3px;
    transition: all ease-in-out 0.3s;
    background: #fff;
    border: 2px solid var(--info);
    border-radius: 50px;
}
.eservices #eservices-flters li:hover, .eservices #eservices-flters li.filter-active {
    color: #fff;
    background: var(--info);
}
.eservices #eservices-flters li:last-child {
    margin-right: 0;
}
.eservices .eservices-content {
    margin-top: 30px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    position: relative;
}
.eservices .eservices-content::after {
    content: "......................................................................" "...................................................................." "....................................................................";
    position: absolute;
    right: 0;
    top: -4px;
    z-index: 1;
    color: #dad8d4;
}
.eservices .eservices-content a {
    /* padding-right: 10px;*/
    background: #fff;
    position: relative;
    z-index: 3;
    color: var(--info);
    font-weight: 500;
}
.eservices .eservices-content span {
    background: #fff;
    position: relative;
    z-index: 3;
    padding: 0 10px;
    font-weight: 500;
}
.eservices .eservices-content .dewserial {
    cursor: pointer;
    display: inline-block;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 1;
    color: var(--maincolor);
    margin: 0 3px 10px 3px;
    transition: all ease-in-out 0.3s;
    background: #fafafa;
    border: 1px dotted #dad8d4;
    border-radius: 50px;
}
.eservices .eservices-ingredients {
    color: var(--font-gray);
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
    padding-bottom: 30px;
}

.counts .count-box {
    margin: 15px;
    padding: 25px;
    min-height: 160px;
    box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
    border-radius: 5px;
    border: 1px dotted #ccc;
}

.counts .count-box .fa,.counts .count-box .mdi {
    font-size: 22px;
    color: #fff;
    margin-bottom: 10px;
    background: var(--maincolor);
    box-shadow: 0px 0 25px rgb(0 0 0 / 10%);
    border-radius: 50%;
    transition: var(--transition);
    border: 2px dotted #f8f8f8;
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
     float: left;
}

.counts .count-box span {
    font-size: 42px;
    line-height: 24px;
    display: block;
    font-weight: 700;
    color: var(--info);
    margin-left: 50px;
}

.counts .count-box p {
    padding: 30px 0 0 0;
    margin: 0;
    color: var(--font-gray);
    font-size: 14px;
}

.counts .count-box a {
    font-weight: 700;
    display: block;
    margin-top: 20px;
    color: #7b7b7b;
    font-size: 15px;
    transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
    color: var(--font-gray);
}
@media (min-width: 1024px) {
    .counts .count-box {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0 10px 60px;
}

.features .icon-box.fa {
    font-size: 48px;
    float: left;
    color: var(--font-gray);
}

.features .icon-box p {
    font-size: 15px;
    color: var(--font-gray);
    margin-left: 60px;
}

.features .image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    margin-bottom: 20px;
    text-align: center;
}

.services .icon {
    display: flex;
    justify-content: center;
}

.services .icon.fa {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 50%;
    transition: 0.5s;
    color: var(--font-gray);
    font-size: 40px;
    overflow: hidden;
    padding-top: 20px;
    box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
}

.services .icon-box:hover .icon.fa {
    box-shadow: 0px 0 25px rgba(63, 187, 192, 0.3);
}

.services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
    position: relative;
    padding-bottom: 15px;
}

.services .title a {
    color: var(--font-gray);
    transition: 0.3s;
}

.services .title a:hover {
    color: var(--font-gray);
}

.services .title::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 2px;
    background: var(--info);
    bottom: 0;
    left: calc(50% - 25px);
}

.services .description {
    line-height: 24px;
    font-size: 14px;
}

/*--------------------------------------------------------------
# t-courses
--------------------------------------------------------------*/
.t-courses {
    background: #f6f9fc;
    padding: 0;
}

.t-courses .content {
    padding: 30px;
}

.t-courses .content h3 {
    font-weight: 400;
    font-size: 34px;
}

.t-courses .content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
}

.t-courses .content p {
    font-size: 15px;
    color: #959595;
}

.t-courses .video-box {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 400px;
    position: relative;
}

.t-courses .accordion-list {
    padding: 0 30px;
}

.t-courses .accordion-list ul {
    padding: 0;
    list-style: none;
}

.t-courses .accordion-list li + li {
    margin-top: 15px;
}

.t-courses .accordion-list li {
    padding: 20px;
    background: #fff;
    border-radius: 5px;
}

.t-courses .accordion-list a {
    display: block;
    position: relative;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    padding-left: 30px;
    outline: none;
}

.t-courses .accordion-list span {
    color: var(--maincolor);
    font-weight: 600;
    font-size: 18px;
    padding-right: 35px;
}
.t-courses .date-created {
    color: var(--font-gray);
    font-weight: 600;
    font-size: 18px;
    padding-right: 35px;
}

.t-courses .accordion-list i {
    position: absolute;
    left: 0;
    top: 0;
}

.t-courses .accordion-list p {
    margin-bottom: 0;
    
}

.t-courses .accordion-list .icon-show {
    display: none;
}

.t-courses .accordion-list a.collapsed {
    color: var(--info);
}

.t-courses .accordion-list a.collapsed:hover {
    color: var(--font-gray);
}

.t-courses .accordion-list a.collapsed .icon-show {
    display: inline-block;
}

.t-courses .accordion-list a.collapsed .icon-close {
    display: none;
}

.t-courses .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--info) 50%, rgba(245, 245, 245, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.t-courses .play-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.t-courses .play-btn::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid var(--maincolor);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.t-courses .play-btn:hover::after {
    border-left: 15px solid var(--info);
    transform: scale(20);
}

.t-courses .play-btn:hover::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
}

@media (max-width: 1024px) {
    .t-courses .content, .t-courses .accordion-list {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .t-courses .content {
        padding-top: 30px;
    }

    .t-courses .accordion-list {
        padding-bottom: 30px;
    }
}

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# m2-library
--------------------------------------------------------------*/
.m2-library{
    padding: 10px;
}
.m2-library .content {
    padding: 30px;
    background: var(--info);
    border-radius: 5px;
    color: #fff;
}

.m2-library .content h3 {
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 30px;
    text-align: center;
}

.m2-library .content p {
    margin-bottom: 30px;
}

.m2-library .content .more-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 30px 8px 30px;
    color: #fff;
    border-radius: 50px;
    border: 1px solid #fff;
    transition: all ease-in-out 0.4s;
}

.m2-library .content .more-btn .fa {
    font-size: 10px;
}

.m2-library .content .more-btn:hover {
    color: var(--font-gray);
    background: var(--maincolor);
}

.m2-library .icon-boxes .icon-box {
    text-align: center;
    background: #fff;

    padding: 40px 20px;
    width: 100%;
    border: 1px solid #eef0ef;
    border-radius: 5px;
    transition: var(--transition);
}




.m2-library .icon-boxes .icon-box .fa {
    font-size: 22px;
    padding: 18px;
    color: var(--info);
    margin-bottom: 30px;
    background: var(--hover);
    box-shadow: 0px 0 25px rgb(0 0 0 / 15%);
    border-radius: 50px;
    border: 2px dotted #fafafa;
    transition: var(--transition);
}

.m2-library .icon-boxes .icon-box h4 a {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 30px 0;
    color: var(--info);
}
.m2-library .icon-boxes .icon-box h6 a {

    font-weight: 500;
    color: var(--info);
}

.m2-library .icon-boxes .icon-box p {
    color: var(--font-color);
}
.m2-library .icon-boxes .icon-box:hover,.m1-library .icon-boxes .icon-box:hover {
    box-shadow: 0px 2px 20px rgb(1 41 112 / 30%);
    border: 1px solid var(--maincolor);
    transform: scale(1.05);
    background: #fff;

}
.m2-library .icon-boxes .icon-box:hover i,.m1-library .icon-boxes .icon-box:hover i {
    background: var(--maincolor);
    color: #fff;
}
.m2-library .icon-boxes .icon-box:hover h4,.m1-library .icon-boxes .icon-box:hover h6 {
    color: var(--maincolor);
}

/*--------------------------------------------------------------
# Appointments
--------------------------------------------------------------*/
.appointment .php-email-form {
    width: 100%;
}

.appointment .php-email-form .form-group {
    padding-bottom: 8px;
}

.appointment .php-email-form .validate {
    display: none;
    color:var(--info);
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.appointment .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: right;
    padding: 15px;
    font-weight: 700;
}

.appointment .php-email-form .error-message br + br {
    margin-top: 25px;
}

.appointment .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 700;
}

.appointment .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.appointment .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.appointment .php-email-form input, .appointment .php-email-form textarea, .appointment .php-email-form select {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    padding: 10px !important;
}

.appointment .php-email-form input:focus, .appointment .php-email-form textarea:focus, .appointment .php-email-form select:focus {
    border-color: var(--font-gray);
}

.appointment .php-email-form input, .appointment .php-email-form select {
    height: 44px;
}

.appointment .php-email-form textarea {
    padding: 10px 12px;
}

.appointment .php-email-form button[type="submit"] {
    background: var(--info);
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.appointment .php-email-form button[type="submit"]:hover {
    background: #52c2c6;
}


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
    position: relative;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 10px;
    background: #fff;
}

.team .member .pic {
    overflow: hidden;
    width: 180px;
    border-radius: 50%;
}

.team .member .pic img {
    transition: ease-in-out 0.3s;
}

.team .member:hover img {
    transform: scale(1.1);
}

.team .member .member-info {
    padding-right: 30px;
}

.team .member h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: var(--font-gray);
}

.team .member span {
    display: block;
    font-size: 15px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 800;
}

.team .member span::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #bfe0fd;
    bottom: 0;
    left: 0;
}

.team .member p {
    margin: 10px 0 0 0;
    font-size: 14px;
    color: var(--font-gray);
}

.team .member .social {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.team .member .social a {
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 32px;
    height: 32px;
    background: var(--hover);
}

.team .member .social a .fa {
    font-size: 16px;
    margin: 0 2px;
}

.team .member .social a:hover {
    background: var(--info);
    color: #fff;
}

.team .member .social a + a {
    margin-left: 8px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    margin: -40px 0 0 40px;
    position: relative;
    z-index: 2;
    border: 6px solid #fff;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 45px;
    color: #111;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
    color: #b2e4e6;
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 15px 0 15px;
    padding: 20px 20px 60px 20px;
    background: #f0fafa;
    position: relative;
    border-radius: 6px;
    position: relative;
    z-index: 1;
}

.testimonials .owl-nav, .testimonials .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.testimonials .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
}

.testimonials .owl-dot.active {
    background-color: var(--font-gray) !important;
}

@media (max-width: 767px) {
    .testimonials {
        margin: 30px 10px;
    }
}

/*--------------------------------------------------------------
# Doctors
--------------------------------------------------------------*/
.doctors .member {
    margin-bottom: 20px;
    overflow: hidden;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(63, 187, 192, 0.1);
}

.doctors .member .member-img {
    position: relative;
    overflow: hidden;
}

.doctors .member .social {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 40px;
    opacity: 0;
    transition: ease-in-out 0.3s;
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
}

.doctors .member .social a {
    transition: color 0.3s;
    color: var(--font-gray);
    margin: 0 10px;
    padding-top: 8px;
    display: inline-block;
}

.doctors .member .social a:hover {
    color: var(--font-gray);
}

.doctors .member .social .fa {
    font-size: 18px;
    margin: 0 2px;
}

.doctors .member .member-info {
    padding: 25px 15px;
}

.doctors .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
    color: var(--font-gray);
}

.doctors .member .member-info span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #aaaaaa;
}

.doctors .member .member-info p {
    font-style: italic;
    font-size: 14px;
    line-height: 26px;
    color: #777777;
}

.doctors .member:hover .social {
    opacity: 1;
}

/*--------------------------------------------------------------
# Courses
--------------------------------------------------------------*/
.courses .course-item {
    border-radius: 5px;
    border: 1px solid #eef0ef;
}

.courses .course-content {
    padding: 15px;
}

.courses .course-content h3 {
    font-weight: 700;
    font-size: 20px;
}

.courses .course-content h3 a {
    color: var(--font-gray);
    transition: 0.3s;
}

.courses .course-content h3 a:hover {
    color: var(--font-gray);
}

.courses .course-content p {
    font-size: 14px;
    color: #777777;
}

.courses .course-content h4 {
    font-size: 14px;
    background: var(--info);
    padding: 7px 14px;
    color: #fff;
    margin: 0;
}

.courses .course-content .price {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
    color: var(--font-gray);
}

.courses .trainer {
    padding-top: 15px;
    border-top: 1px solid #eef0ef;
}

.courses .trainer .trainer-profile img {
    max-width: 50px;
    border-radius: 50px;
}

.courses .trainer .trainer-profile span {
    padding-right: 10px;
    font-weight: 700;
    font-size: 16px;
    color: #5a6c60;
}

.courses .trainer .trainer-rank {
    font-size: 14px;
    color: #657a6d;
}

.details-rank {
    font-size: 14px;
    color: #aaaaaa;
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events {
    background: url(../img/events-bg.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
    direction: ltr;
}

.events::before {
    content: '';
    background-color: rgba(0, 0, 0, 0.75);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}


.events .container {
    position: relative;
}
.events .read-more {
    text-align: left;
    margin: 10px 0;
}

.events .read-more a {
    display: inline-block;
    background: transparent;
    padding: 6px 20px 8px 20px;
    transition: 0.3s;
    font-size: 14px;
    border-radius: 50px;
    border: 1px solid var(--maincolor);
}

.events .read-more a:hover {
    background: var(--maincolor);
    color: #fff;
}


.events .events-description {
    font-weight: 300;
}

.events .events-carousel {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
}

/*add carousel vidio*/
.events-carousel .video-box {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

.events-carousel .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--maincolor) 50%, rgba(245, 245, 245, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.events-carousel .play-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.events-carousel .play-btn::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid var(--maincolor);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.events-carousel .play-btn:hover::after {
    border-left: 15px solid var(--info);
    transform: scale(20);
}

.events-carousel .play-btn:hover::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
}

/*end carousel vidio*/


.events .event-item a {
    color: #fff;
}


.events .event-item h3 {
    font-weight: 700;
    font-size: 30px;
    color: var(--maincolor);
}

.events .event-item .price {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.events .event-item .price span {
    border-bottom: 2px solid var(--info);
}

.events .event-item ul {
    list-style: none;
    padding: 0;
}

.events .event-item ul li {
    padding-bottom: 10px;
}

.events .event-item ul .fa {
    font-size: 20px;
    padding-right: 4px;
    color: var(--font-gray);
}

.events .event-item p:last-child {
    margin-bottom: 0;
}

.events .event-item p {
    text-align: justify;
    line-height: 22px;
}

.events .owl-nav, .events .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.events .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
}

.events .owl-dot.active {
    background-color: var(--maincolor) !important;
}
.events .dewnews-img {
    position: relative;
    transition: .5s;
}

.events .dewnews-img img {
    max-width: 100%;
    position: relative;
}

.events .dewnews-img::before {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 60px;
    height: 60px;
    z-index: 1;
    content: '';
    border-left: 5px solid var(--maincolor);
    border-top: 5px solid var(--maincolor);
    transition: .5s;
}

.events .dewnews-img::after {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    z-index: 2;
    content: '';
    border-right: 5px solid var(--maincolor);
    border-bottom: 5px solid var(--maincolor);
    transition: .5s;
}

.events .dewnews-img:hover{
    transform: scale(1.03);
}

.events .dewnews-img:hover::before {
    left: 20px;
    top: 20px;
}

.events .dewnews-img:hover::after {
    right: 20px;
    bottom: 20px;
}
.events .event-rank{
    color: #fff;
    margin: 10px 0 15px 0;
}
.events .event-rank i{
    color: var(--info);
}
@media (min-width: 1024px) {
    .events {
        background-attachment: fixed;
    }
}
@media (min-width: 992px) {
    .events .testimonial-item p {
        width: 80%;
    }

}
@media (max-width: 992px) {
    .events .event-item h3 {
        font-weight: 500;
        font-size: 24px;

    }
}


/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
    overflow: hidden;

}

.gallery .owl-nav, .gallery .owl-dots {
    margin-top: 25px;
    text-align: center;
}

.gallery .owl-item {
    border-right: 2px solid #fff;
    border-right: 2px solid #fff;
}

.gallery .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color:  var(--hover) !important;
}

.gallery .owl-dot.active {
    background-color: var(--maincolor) !important;
}

.gallery .gallery-carousel .owl-stage-outer {
    overflow: visible;
}

.gallery .gallery-carousel .center {
    border: 6px solid var(--maincolor);
    margin: -10px;
    box-sizing: content-box;
    padding: 0px;
    background: #fff;
    z-index: 1;
}

.gallery .gallery-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
}
.gallery .gallery-wrap::before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}
.gallery .gallery-wrap .gallery-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.gallery .gallery-wrap .gallery-info::before {
    display: block;
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    top: 35px;
    left: 35px;
    border-top: 3px solid var(--maincolor);
    border-left: 3px solid var(--maincolor);
    transition: all 0.5s ease 0s;
    z-index: 9994;
}
.gallery .gallery-wrap .gallery-info::after {
    display: block;
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    bottom: 35px;
    right: 35px;
    border-bottom: 3px solid var(--maincolor);
    border-right: 3px solid var(--maincolor);
    transition: all 0.5s ease 0s;
    z-index: 9994;
}
.gallery .gallery-wrap .gallery-info h4 {
    font-size: 18px;
    color: #fff;
    margin: 0 10px 10px 10px;
}
.gallery .gallery-wrap .gallery-info p {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}
.gallery .gallery-wrap .gallery-links {
    text-align: center;
    z-index: 4;
}
.gallery .gallery-wrap .gallery-links a {
    color: #fff;
    margin: 0 10px;
    font-size: 20px;
    display: inline-block;
    transition: 0.3s;
}
.gallery .gallery-wrap .gallery-links a:hover {
    color: #63eda3;
}
.gallery .gallery-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}
.gallery .gallery-wrap:hover .gallery-info {
    opacity: 1;
    border: #000;
}
.gallery .gallery-wrap:hover .gallery-info::before {
    top: 15px;
    left: 15px;

}
.gallery .gallery-wrap:hover .gallery-info::after {
    bottom: 15px;
    right: 15px;
}

/*--------------------------------------------------------------
# gallery Details
--------------------------------------------------------------*/
.gallery-details {
    padding-top: 40px;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow-y: auto;
}
.gallery-details .container {
    padding-top: 20px;
    padding-bottom: 40px;
}
.gallery-details .gallery-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}
.gallery-details .gallery-info {
    padding-top: 45px;
}
.gallery-details .gallery-info h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
}
.gallery-details .gallery-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}
.gallery-details .gallery-info ul li + li {
    margin-top: 10px;
}
.gallery-details .gallery-info p {
    font-size: 15px;
    padding: 15px 0 0 0;
}
@media (max-width: 992px) {
    .gallery-details .gallery-info {
        padding-top: 20px;
    }
}

/*--------------------------------------------------------------
# m1-library
--------------------------------------------------------------*/
.m1-library .box {
    padding: 20px 0;
    background: #fff;
    text-align: center;
    border: 1px solid #eef0ef;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: 0.3s all ease-in-out;
}
.m1-library .small-boxes .row{
    margin: -5px !important;
}
.m1-library .small-boxes .column{
    padding: 5px !important;
}
.m1-library .small-boxes .column{
    padding: 5px !important;
}
.m1-library .box:hover {
   /* box-shadow: 0px 2px 20px rgb(1 41 112 / 30%);
    transform: scale(1.05);
    background: #f8f8f8;*/
}

.m1-library h3 {
    font-weight: 400;
    margin: -20px -20px 0px -20px;
    padding: 20px 15px;
    border-bottom: 1px dotted #ccc;
    font-size: 16px;
    font-weight: 700;
     background: #f8f8f8;
    color:var(--info);
}



.m1-library h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}

.m1-library h4 span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
}
.m1-library ul {
    padding: 0;
    list-style: none;
    color: var(--font-gray);
    text-align: center;
    line-height: 20px;
    min-height: 180px
}


.m1-library ul li {
    padding-bottom: 15px;
    border-bottom: 1px dotted #ccc;
    padding: 12px 15px;
    position: relative;
    border-right: 5px solid transparent;
 }
.m1-library ul li:last-child {
border: 0px;
}

.m1-library ul li:hover{
    border-right: 5px solid var(--maincolor);
    background:#f8f8f8
}


.m1-library ul li a {
    color: var(--font-color);
}
.m1-library ul li a:hover {
    color: var(--maincolor);
}

.m1-library ul .fa {
    color: var(--font-gray);
    font-size: 18px;
    padding-right: 4px;
}

.m1-library ul .na {
    color: #ccc;
    text-decoration: line-through;
}

.m1-library .btn-wrap {
    margin: 20px -20px -20px -20px;
    padding: 20px 15px;
    background: #f8f8f8;
    text-align: center;
}
.m1-library .more-btn {
    background: var(--info);
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 30px;
    color: #fff;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-weight: 600;
    transition: 0.3s;
}
.m1-library .more-btn:hover {
    background: var(--maincolor);
}








.m1-library .btn-wrap .fa {
    font-size: 10px
}

.m1-library .btn-buy {
    background: var(--info);
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 5px;
    color: #fff;
    transition: none;
    font-size: 14px;
    font-weight: 400;

    font-weight: 700;
    transition: 0.3s;
}

.m1-library .btn-buy:hover {
    background: #65c9cd;
}

.m1-library .featured h3 {
    color: #fff;
    background: var(--info);
}

.m1-library .advanced {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background: var(--maincolor);
    color: #fff;
}
.m1-library .icon-boxes .icon-box {

    text-align: center;
    padding: 15px;
    width: 100%;
    border: 1px solid #eef0ef;
    border-radius: 5px;
    transition: 0.3s all ease-in-out;
    background: #f8f8f8;

}


.m1-library .icon-boxes .icon-box .fa,.m1-library .icon-boxes .icon-box .mdi {
    font-size: 22px;
    color: #fff;
    margin-bottom: 10px;
    background: var(--info);
    box-shadow: 0px 0 25px rgb(0 0 0 / 10%);
    border-radius: 50%;
    transition: var(--transition);
    border: 2px dotted #f8f8f8;
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}


.m1-library .icon-boxes .icon-box h6 {
    font-size: 18px;
    color: var(--info);
    transition: var(--transition);
}


.m1-library .icon-boxes .icon-box p {
    color: var(--font-color);
}


@media (max-width: 575px) {
    .m1-library .box{
        margin-bottom: 10px;
    }
}
@media (max-width: 992px) {
    .m1-library .icon-boxes .icon-box {
        margin-bottom: 15px;
    }
}


/*--------------------------------------------------------------
# Frequently Asked Questioins
--------------------------------------------------------------*/
.faq {
    padding: 5px 0;
}

.faq .faq-list {
    padding: 0;
    list-style: none;
}

.faq .faq-list li {
    padding: 0 0 20px 25px;
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-size: 18px;
    font-weight: 700;
}

.faq .faq-list .fa {
    font-size: 18px;
    position: absolute;
    left: -25px;
    top: 6px;
}

.faq .faq-list p {
    margin-bottom: 20px;
    font-size: 15px;
}

.faq .faq-list a.collapse {
    color: var(--font-gray);
}

.faq .faq-list a.collapsed {
    color: #343a40;
}

.faq .faq-list a.collapsed:hover {
    color: var(--font-gray);
}

.faq .faq-list a.collapsed i::before {
    content: "\eab2" !important;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
    color: #313030;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px;
}

.contact .info-box i {
    font-size: 20px;
    color: #fff;
    float: right;
    width: 44px;
    height: 44px;
    background: var(--info);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    border: 2px dotted #ffded4;


}
.contact .info-box:hover i {
    background: var(--maincolor);
    color: #fff;
}

.contact .info-box h3 {
    font-size: 20px;
    color: #656262;
    font-weight: 700;
    margin: 10px 60px 0 0;
}

.contact .info-box p {
    direction: initial;
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin: 10px 60px 0 0;
}

.contact .php-email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px;
}

.contact .php-email-form .validate {
    display: none;
    color:var(--info);
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br + br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input::focus, .contact .php-email-form textarea::focus {
    background-color: #ff5821;
}

.contact .php-email-form input {
    padding: 20px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
    background: #ff5821;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #ff7e54;
}


@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# setting
--------------------------------------------------------------*/
.diwan-settings {
    position: fixed;
    top: 335px;
    right: -240px;
    z-index: 10100;
    padding-left: 40px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 280px;
}
.diwan-settings > .inner {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    width: 100%;
    text-align: right;
    padding: 15px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.diwan-settings > .inner > i.fa-cog {
    position: absolute;
    background-color: #fff;
    color: #333;
    font-size: 24px;
    line-height: 40px;
    width: 40px;
    text-align: center;
    left: 0px;
    top: 0px;
    cursor: pointer;
    border: 1px solid #e5e5e5;
    border-right-width: 0px;
}
.diwan-settings > .inner h3 {
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 100%;
    margin: 0px;
    padding: 0px;
    padding-bottom: 7px;
    margin-bottom: 15px;
    border: 0px solid #e5e5e5;
    border-bottom-width: 1px;
}
.diwan-settings > .inner ul, .diwan-settings > .inner ul li {
    display: inline-block;
    margin: 0px;
    padding: 0px;
}
.diwan-settings > .inner ul {
    display: inline-block;
}
.diwan-settings > .inner ul.skin li {
    width: 40px;
    height: 40px;
    display: inline-block;
    background-color: #e5e5e5;
    margin-bottom: 9px;
    margin-right: 9px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #ccc;
}
.diwan-settings > .inner ul.skin li span {
    width: 33.33333333333%;
    float: right;
    height: 100%;
}
/*
    Color #1
*/
.diwan-settings > .inner ul.skin li.s1 span.c1 {
    background-color: #e14d43;
}
.diwan-settings > .inner ul.skin li.s1 span.c2 {
    background-color: #fbf2f1;
}
.diwan-settings > .inner ul.skin li.s1 span.c3 {
    background-color: #363b3f;
}
/*
    Color #2
*/
.diwan-settings > .inner ul.skin li.s2 span.c1 {
    background-color: #5b3269;
}
.diwan-settings > .inner ul.skin li.s2 span.c2 {
    background-color: #ECF9F0;
}
.diwan-settings > .inner ul.skin li.s2 span.c3 {
    background-color: #444;
}
/*
    Color #3
*/
.diwan-settings > .inner ul.skin li.s3 span.c1 {
    background-color: #00C387;
}
.diwan-settings > .inner ul.skin li.s3 span.c2 {
    background-color: #ECF9F0;
}
.diwan-settings > .inner ul.skin li.s3 span.c3 {
    background-color: #202B5D;
}
/*
    Color #4
*/
.diwan-settings > .inner ul.skin li.s4 span.c1 {
    background-color: #926aa8;
}
.diwan-settings > .inner ul.skin li.s4 span.c2 {
    background-color: #faf8fb;
}
.diwan-settings > .inner ul.skin li.s4 span.c3 {
    background-color: #365067;
}
/*
    Color #5
*/
.diwan-settings > .inner ul.skin li.s5 span.c1 {
    background-color: #F65879;
}
.diwan-settings > .inner ul.skin li.s5 span.c2 {
    background-color: #FF93A7;
}
.diwan-settings > .inner ul.skin li.s5 span.c3 {
    background-color: #341910;
}
/*
    Color #6
*/
.diwan-settings > .inner ul.skin li.s6 span.c1 {
    background-color: #aaac8f;
}
.diwan-settings > .inner ul.skin li.s6 span.c2 {
    background-color: #edede7;
}
.diwan-settings > .inner ul.skin li.s6 span.c3 {
    background-color: #0b0b0b;
}
/*
    Color #7
*/
.diwan-settings > .inner ul.skin li.s7 span.c1 {
    background-color: #ddbc2d;
}
.diwan-settings > .inner ul.skin li.s7 span.c2 {
    background-color: #f3f0e5;
}
.diwan-settings > .inner ul.skin li.s7 span.c3 {
    background-color: #343838;
}
/*
    Color #8
*/
.diwan-settings > .inner ul.skin li.s8 span.c1 {
    background-color: #202124;
}
.diwan-settings > .inner ul.skin li.s8 span.c2 {
    background-color: #202124;
}
.diwan-settings > .inner ul.skin li.s8 span.c3 {
    background-color: #202124;
}
/*--------------------------------------------------------------
# follow
--------------------------------------------------------------*/
#follow {
    background: var(--info);
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 15px 0;
}

#follow p {
    font-size: 15px;
    padding: 0;
    margin: 0 0 10px 0;
}
/*--------------------------------------------------------------
# 404
--------------------------------------------------------------*/


.notfound .notfound-404 {
    position: relative;
    height: 220px;
}

.notfound .notfound-404 h1 {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 186px;
    font-weight: 200;
    margin: 0px;
    background: linear-gradient(130deg, #ffa34f, #ff6f68);
    color:transparent;
    -webkit-background-clip: text;
    background-clip: text;
    text-transform: uppercase;
}

.notfound h2 {
    font-size: 33px;
    font-weight: 200;
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 25px;
    letter-spacing: 3px;
    text-align: center;
}


.notfound p {
    font-size: 16px;
    font-weight: 200;
    margin-top: 0px;
    margin-bottom: 25px;
    text-align: center;
}


.notfound a {
    color: #ff6f68;
    font-weight: 200;
    text-decoration: none;
    border-bottom: 1px dashed #ff6f68;
    border-radius: 2px;
}
.notfound-social{
    text-align: center;
}

.notfound-social>a {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    width: 40px;
    font-size: 14px;
    color: #ff6f68;
    border: 1px solid #efefef;
    border-radius: 50%;
    margin: 3px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    text-align: center;
}
.notfound-social>a:hover {
    color: #fff;
    background-color: #ff6f68;
    border-color: #ff6f68;
}

@media only screen and (max-width: 480px) {
    .notfound .notfound-404 {
        position: relative;
        height: 168px;
    }

    .notfound .notfound-404 h1 {
        font-size: 142px;
    }

    .notfound h2 {
        font-size: 22px;
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: var(--bar);
    padding: 0 0 12px 0;
    color: #fff;
    font-size: 14px;
}


#footer .footer-top {

    /*
    background: url(../img/23232332.png) center center no-repeat;
    */
    background-size: cover;
    position: relative;
    padding: 60px 0 30px 0;
    box-shadow: 1px 2px 15px rgba(100, 100, 100, 0.3);
}
#footer .footer-top::before {
    content: '';
    background: var(--info);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}




#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
    color: var(--font-gray);
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;

}
#footer .footer-top .footer-info .navbar-brand {
    color: #fff;
}
#footer .footer-top .social-links a {
    font-size: 20px;
    display: inline-block;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 10px;
    border-radius: 5px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    color: var(--font-color);
}
#footer .footer-top h4 {
    color: var(--bar);
    font-size: 16px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}


#footer .footer-top .footer-links {
    margin-bottom: 30px;
}


#footer .footer-top .footer-links a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links a:hover {
    color: var(--font-color);
}

#footer .copyright {
    text-align: center;
    padding-top: 20px;
}
#footer .credits {
    padding-top: 5px;
    text-align: center;
    font-size: 13px;
}
#footer .app-badge .btn-download {
    padding: 8px 20px;
    font-size: 14px;
    background-color: var(--hover);
    display: flex;
    align-items: center;
    text-align: right;
    border: 1px solid var(--font-color);
}
#footer .app-badge .btn-download:hover {
    background-color: var(--font-gray);
    color: var(--hover);
    border: 1px solid var(--maincolor);
}
#footer .app-badge .btn-download i {
    font-size: 26px;
    margin-left: 10px;
}
[class^="ti-"], [class*=" ti-"] {
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
