@charset "UTF-8";

/*----------------------------------------------------
@File: Default Styles
@Author:
@URL:

This file contains the styling for the actual theme, this
is the file you need to edit to change the look of the
theme.
---------------------------------------------------- */
/*=====================================================================
@Template Name:
@Author:


=====================================================================*/
/*@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;500;600;700;800;900&amp;family=Roboto:wght@400;500;700;900&amp;display=swap");*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    font-family: "Roboto";
}

@keyframes fadeFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeFromRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeFromUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeFromUp {
    animation-name: fadeFromUp;
}

.fadeFromRight {
    animation-name: fadeFromRight;
}

.fadeFromLeft {
    animation-name: fadeFromLeft;
}

/* Button Style */
.btn-theme-primary {
    background-color: #ff5520;
    color: #ffffff;
    border-radius: 0;
    padding: 10px 15px;
    transition: 0.3s;
}

.btn-outline {
    background-color: transparent;
    color: #ff5520;
    border: 1px solid #ff5520;
}

.btn-theme-primary:hover {
    color: #ff5520;
    border: 1px solid #ff5520;
    background-color: #ffffff;
}

.btn-outline:hover {
    background-color: #ff5520;
    color: #ffffff;
}

.button-group {
    display: flex;
    align-items: center;
}

.zt-btn-style-1 {
    color: #fff;
    width: fit-content;
    padding: 10px 25px;
    display: block;
    overflow: hidden;
    font-weight: 700;
    border-radius: 40px;
    background-color: #ff5520;
    position: relative;
    z-index: 1;
    color: #ffffff;
    text-align: center;
}

.zt-btn-style-1:hover {
    color: #ffffff;
}

.zt-btn-style-1::after {
    top: 0;
    width: 0;
    left: -40%;
    content: "";
    z-index: -1;
    height: 100%;
    position: absolute;
    transform: skew(50deg);
    transition-duration: 0.6s;
    transform-origin: top left;
    background-color: #0000fe;
}

.zt-btn-style-1:hover::after {
    width: 100%;
    height: 150%;
}

.zt-btn-download {
    padding: 5px 10px;
    border: 1px solid #ff5520;
    color: #ff5520;
    display: flex;
    align-items: center;
}

.zt-btn-download:not(:last-child) {
    margin-right: 20px;
}

.zt-btn-download i {
    margin-right: 10px;
}

.zt-btn-download:hover {
    background-color: #ff5520;
    color: #ffffff;
}

/*global area*/
/*----------------------------------------------------*/
.zt-home {
    margin: 0;
    padding: 0;
    color: #555555;
    font-size: 16px;
    overflow-x: hidden;
    line-height: 1.625;
    font-family: "Roboto", sans-serif;
    -moz-osx-font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
}

.zt-home::selection {
    color: #ffffff;
    background-color: #6e3ebf;
}

.zt-home::-moz-selection {
    color: #ffffff;
    background-color: #6e3ebf;
}

.container {
    max-width: 1200px !important;
}

.ul-li ul {
    margin: 0;
    padding: 0;
}

.ul-li ul li {
    list-style: none;
    display: inline-block;
}

.ul-li-block ul {
    margin: 0;
    padding: 0;
}

.ul-li-block ul li {
    list-style: none;
    display: block;
}

div#zt-preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background-color: #fff;
    background: #fff url("../img/pre.svg") no-repeat center center;
}

[data-background] {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: none;
}

p {
    margin-bottom: 10px;
}

p a {
    color: #ff5520;
}

.text-primary {
    color: #ff5520 !important;
}

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

section {
    overflow: hidden;
}

button {
    cursor: pointer;
}
.p-10{
    padding:10px;
}

.form-control:focus,
button:visited,
button.active,
button:hover,
button:focus,
input:visited,
input.active,
input:hover,
input:focus,
textarea:hover,
textarea:focus,
a:hover,
a:focus,
a:visited,
a.active,
select,
select:hover,
select:focus,
select:visited {
    outline: none;
    box-shadow: none;
    text-decoration: none;
}

.form-control {
    box-shadow: none;
}

.relative-position {
    position: relative;
}

.pera-content p {
    margin-bottom: 0;
}

@keyframes zooming {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.05, 1.05);
    }

    100% {
        transform: scale(1, 1);
    }
}

.zooming {
    animation: zooming 18s infinite both;
}

.zt-headline h1,
.zt-headline h2,
.zt-headline h3,
.zt-headline h4,
.zt-headline h5,
.zt-headline h6 {
    margin: 0;
    font-family: "Fira Sans", sans-serif;
}

.zt-section-title span {
    font-size: 18px;
    font-weight: 700;
    color: #ff5520;
    padding: 0px 15px;
    position: relative;
}

.zt-section-title span:after,
.zt-section-title span:before {
    width: 8px;
    bottom: 3px;
    height: 2px;
    content: "";
    position: absolute;
    background-color: #ff5520;
}

.zt-section-title span:before {
    left: 0;
}

.zt-section-title span:after {
    right: 0;
}

.zt-section-title h2 {
    color: #000;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.125;
    padding: 15px 0px 20px;
}

.about-page-about-text .zt-section-title h2 {
    font-size: 24px;
    line-height: 34px;
}

.zt-section-title.zt-title-style-two {
    max-width: 590px;
    margin: 0 auto;
}

.zt-section-title.zt-title-style-two span {
    color: #ff5520;
}

.zt-section-title.zt-title-style-two span:after,
.zt-section-title.zt-title-style-two span:before {
    background-color: #ff5520;
}

.zt-section-title.zt-title-style-two .title-watermark {
    left: 0;
    right: 0;
    top: -60px;
    opacity: 0.04;
    color: #53536c;
    line-height: 1;
    font-size: 100px;
    font-weight: 900;
    margin-bottom: 0;
    text-align: center;
    position: absolute;
    display: none;
}

.scrollup {
    width: 45px;
    right: 15px;
    z-index: 5;
    height: 45px;
    bottom: 20px;
    display: none;
    position: fixed;
    line-height: 45px;
    background-color: #ff5520;
}

.scrollup i {
    color: #fff;
}

.zt-footer-widget .zt-footer-logo-widget .footer-logo-btn,
.zt-newslatter-content .zt-newslatter-form button,
.zt-registration-content-2 .registration-text-2 a,
.zt-registration-text-wrap a,
.zt-popular-course-section .zt-popular-course-btn,
.zt-course-more-btn,
.zt-department-section .zt-department-btn,
.banner-search-select button,
.zt-banner-text .zt-banner-btn a,
.slider-main-item .slider-main-text .slider-main-btn a {
    z-index: 1;
    overflow: hidden;
    position: relative;
}

.zt-footer-widget .zt-footer-logo-widget .footer-logo-btn:after,
.zt-newslatter-content .zt-newslatter-form button:after,
.zt-registration-content-2 .registration-text-2 a:after,
.zt-registration-text-wrap a:after,
.zt-popular-course-section .zt-popular-course-btn:after,
.zt-course-more-btn:after,
.zt-department-section .zt-department-btn:after,
.banner-search-select button:after,
.zt-banner-text .zt-banner-btn a:after,
.slider-main-item .slider-main-text .slider-main-btn a:after {
    top: 0;
    width: 0;
    left: -40%;
    content: "";
    z-index: -1;
    height: 100%;
    position: absolute;
    transform: skew(50deg);
    transition-duration: 0.6s;
    transform-origin: top left;
    background-color: #ff5520;
}

.zt-footer-widget .zt-footer-logo-widget .footer-logo-btn:hover:after,
.zt-newslatter-content .zt-newslatter-form button:hover:after,
.zt-registration-content-2 .registration-text-2 a:hover:after,
.zt-registration-text-wrap a:hover:after,
.zt-popular-course-section .zt-popular-course-btn:hover:after,
.zt-course-more-btn:hover:after,
.zt-department-section .zt-department-btn:hover:after,
.banner-search-select button:hover:after,
.zt-banner-text .zt-banner-btn a:hover:after,
.slider-main-item .slider-main-text .slider-main-btn a:hover:after {
    height: 100%;
    width: 150%;
}

@keyframes animationFramesTwo {
    0% {
        transform: translate(0px, 0px) rotate(0deg) scale(1);
    }

    20% {
        transform: translate(73px, -1px) rotate(36deg) scale(0.9);
    }

    40% {
        transform: translate(141px, 72px) rotate(72deg) scale(1);
    }

    60% {
        transform: translate(83px, 122px) rotate(108deg) scale(1.2);
    }

    80% {
        transform: translate(-40px, 72px) rotate(104deg) scale(1.1);
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg) scale(1);
    }
}

@keyframes animationFramesOne {
    0% {
        transform: translate(0px, 0px) rotate(0deg);
    }

    20% {
        transform: translate(73px, -1px) rotate(36deg);
    }

    40% {
        transform: translate(111px, 72px) rotate(72deg);
    }

    60% {
        transform: translate(93px, 122px) rotate(108deg);
    }

    80% {
        transform: translate(-70px, 72px) rotate(124deg);
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg);
    }
}

/*---------------------------------------------------- */
/*Header area*/
/*----------------------------------------------------*/
.zt-header-main {
    padding-top: 15px;
}

.zt-header-top {
    padding: 5px 0;
    border-bottom: 1px solid #555555;
}

.zt-header-top-social {
    display: flex;
    justify-content: center;
    align-items: center;
}

.zt-header-top-social a {
    padding: 0 5px;
    color: #f4511f
}

.zt-header-top-cta span {
    color: #ffffff;
}

.zt-header-main.header-style-two .zt-header-top-cta span {
    color: #000000;
}

.zt-header-top-cta>span {
    margin-right: 10px;
}

.zt-header-top-cta span i {
    color: #ff5520;
    margin-right: 5px;
}

.zt-header-top-cta span.divider {
    margin: 0 5px;
}

.zt-header-top-cta li {
    padding-left: 65px;
}

.zt-header-top-cta li {
    position: relative;
}

.zt-header-top-cta li:after {
    top: 15px;
    left: 30px;
    content: "";
    width: 1px;
    height: 33px;
    position: absolute;
    border: 1px dashed #dadada;
}

.zt-header-top-cta li:nth-child(1):after {
    display: none;
}

.header-top-cta-content .zt-top-cta-icon {
    top: 12px;
    margin-right: 10px;
    position: relative;
}

.header-top-cta-content .zt-top-cta-icon i {
    font-size: 34px;
    color: #ff5520;
}

.header-top-cta-content .zt-top-cta-text a {
    font-size: 13px;
}

.header-top-cta-content .zt-top-cta-text h3 {
    color: #000000;
    font-size: 19px;
    font-weight: 700;
}

.zt-header-three {
    padding: 10px 0;
}

.zt-header-menu-wrap {
    padding: 15px 0px 13px;
}

.zt-main-navigation {
    padding-top: 5px;
}

.zt-main-navigation .navbar-nav {
    display: inherit;
}

.zt-main-navigation li {
    margin-right: 55px;
}

.zt-main-navigation li a {
    color: #000000;
    font-weight: 700;
    padding-bottom: 30px;
    position: relative;
}

.zt-main-navigation li a:before {
    left: 0;
    right: 0;
    bottom: 4px;
    height: 4px;
    content: "";
    width: 0%;
    position: absolute;
    background-color: #ff5520;
    transition: 0.3s all ease-in-out;
}

.zt-main-navigation li:hover a:before {
    width: 100%;
}

.zt-main-navigation .dropdown {
    position: relative;
}

.zt-main-navigation .dropdown:after {
    top: -2px;
    color: #ff5520;
    right: -14px;
    content: "+";
    font-size: 18px;
    font-weight: 700;
    position: absolute;
    transition: 0.3s all ease-in-out;
}

.zt-main-navigation .dropdown .dropdown-menu {
    top: 65px;
    left: 0;
    opacity: 0;
    z-index: 10;
    margin: 0px;
    padding: 0px;
    height: auto;
    width: 200px;
    border: none;
    display: block;
    border-radius: 0;
    overflow: hidden;
    visibility: hidden;
    position: absolute;
    background-color: #fff;
    transition: all 0.4s ease-in-out;
    border-bottom: 2px solid #ff5520;
    box-shadow: 0 5px 10px 0 rgba(83, 82, 82, 0.1);
}

.zt-main-navigation .dropdown .dropdown-menu li {
    width: 100%;
    margin-left: 0;
    border-bottom: 1px solid #e5e5e5;
}

.zt-main-navigation .dropdown .dropdown-menu li a {
    width: 100%;
    color: #343434;
    display: block;
    font-size: 14px;
    padding: 10px 25px;
    position: relative;
    transition: 0.3s all ease-in-out;
}

.zt-main-navigation .dropdown .dropdown-menu li a:before {
    display: none;
}

.zt-main-navigation .dropdown .dropdown-menu li a:after {
    left: 10px;
    top: 16px;
    width: 8px;
    height: 8px;
    content: "";
    position: absolute;
    border-radius: 100%;
    transform: scale(0);
    background-color: #fff;
    transition: 0.3s all ease-in-out;
}

.zt-main-navigation .dropdown .dropdown-menu li a:hover {
    background-color: #ff5520;
    color: #fff;
}

.zt-main-navigation .dropdown .dropdown-menu li a:hover:after {
    transform: scale(1);
}

.zt-main-navigation .dropdown .dropdown-menu li:last-child {
    border-bottom: none;
}

.zt-main-navigation .dropdown:hover .dropdown-menu {
    top: 48px;
    opacity: 1;
    visibility: visible;
}

.zt-header-cart-login {
    padding-top: 5px;
}

.zt-header-cart-login .zt-top-cart-login {
    position: relative;
    display: inline-block;
}

.zt-header-cart-login .zt-top-cart-login:after {
    top: 3px;
    right: -3px;
    width: 2px;
    content: "";
    height: 18px;
    position: absolute;
    background-color: #d9d9d9;
}

.zt-header-cart-login .zt-top-cart-login:last-child:after {
    display: none;
}

.zt-header-cart-login .zt-top-cart-login a {
    padding: 0;
    border: none;
    color: #5a5a5a;
    margin: 0px 15px;
    background-color: transparent;
    transition: 0.3s all ease-in-out;
}

.zt-header-cart-login .zt-top-cart-login a:hover {
    color: #ff5520;
}

.yi-header-social {
    margin-left: 40px;
}

.yi-header-social li {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    transition: 0.3s all ease-in-out;
}

.yi-header-social li a {
    width: 100%;
    display: block;
}

.yi-header-social li:hover {
    color: #fff;
    background-color: #ff5520;
}

.header-style-two {
    top: 0;
    z-index: 10;
    width: 100%;
    padding: 0px;
    position: relative;
    background-color: #fff;
    box-shadow: 0px 20px 34px #0000000d;
}

.zt-header-two {
    padding: 10px 0;
}

.zt-brand-logo img {
    max-width: 100px;
}

.header-style-two .zt-brand-logo {
    margin-right: 115px;
}

.header-style-two .zt-main-navigation .dropdown:after {
    color: #ff5520;
}

.header-style-two .zt-main-navigation li a:before {
    display: none;
}

.header-style-two .zt-main-navigation li a:after {
    top: 26px;
    left: 25px;
    width: 0px;
    content: "";
    height: 5px;
    position: absolute;
    border-radius: 100%;
    background-color: #ff5520;
    transition: 0.3s all ease-in-out;
}

.header-style-two .zt-main-navigation li {
    position: relative;
}

.header-style-two .zt-main-navigation li:before {
    left: 0;
    top: 30px;
    width: 0px;
    height: 5px;
    content: "";
    position: absolute;
    border-radius: 30%;
    background-color: #ff5520;
    transition: 0.3s all ease-in-out;
}

.header-style-two .zt-main-navigation li:hover:before {
    width: 22px;
}

.header-style-two .zt-main-navigation li:hover a:after {
    width: 5px;
}

.header-style-two .zt-main-navigation .dropdown .dropdown-menu li:before {
    display: none;
}

.header-style-two .zt-main-navigation .dropdown .dropdown-menu li a:after {
    display: none;
}

.header-style-two .zt-main-navigation .dropdown .dropdown-menu li a:hover {
    background-color: #ff5520;
}

.header-style-two .zt-main-navigation .dropdown:hover .dropdown-menu {
    border-bottom: 2px solid #ff5520;
}

.zt-sticky-menu {
    top: -88px;
    width: 100%;
    z-index: 10;
    position: fixed;
    background: #fff;
    animation-duration: 0.7s;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-timing-function: ease;
    transition: 0.3s all ease-in-out;
    box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.1);
}

.header-style-two.zt-sticky-menu {
    top: 0;
}

.header-style-three {
    top: 0;
    width: 100%;
    z-index: 10;
    padding-top: 0;
    position: absolute;
}

/*.header-style-three .zt-main-navigation {
  padding-top: 15px;
}*/
.header-style-three .zt-main-navigation li a {
    color: #fff;
}

.zt-header-main.zt-sticky-menu .zt-header-top {
    display: none;
}

.header-style-three.zt-sticky-menu .zt-header-three {
    padding: 0;
}

.header-style-three.zt-sticky-menu .zt-main-navigation li a {
    color: #000000;
}

.header-style-three .zt-main-navigation li a:before {
    background-color: #ff5520;
}

.header-style-three .zt-main-navigation .dropdown:after {
    color: #ff5520;
}

.header-style-three .zt-main-navigation .dropdown .dropdown-menu {
    border-bottom: 2px solid #ff5520;
}

.header-style-three .zt-main-navigation .dropdown .dropdown-menu li a:hover {
    background-color: #ff5520;
}

/*.header-style-three .zt-header-cart-login {
  padding-top: 15px;
}*/
.header-style-three .zt-header-cart-login .zt-top-cart-login a {
    color: #fff;
}

.header-style-three.zt-sticky-menu .zt-header-cart-login .zt-top-cart-login a {
    color: #000000
}

.header-style-three .zt-header-cart-login .zt-top-cart-login a:hover {
    color: #ff5520;
}

.header-style-three.zt-sticky-menu {
    position: fixed;
    padding: 15px 0px;
    background-color: #fff;
}

.header-style-three.zt-sticky-menu .zt-main-navigation,
.header-style-three.zt-sticky-menu .zt-header-cart-login {
    padding-top: 10px;
}

.header-style-four {
    padding-top: 0;
}

.header-style-four .header-top {
    padding: 10px 0px;
    background-color: #07173a;
}

.header-style-four .header-top .header-top-cta span {
    color: #bcc4d7;
    font-size: 15px;
    margin-right: 45px;
}

.header-style-four .header-top .header-top-cta span i {
    color: #ff3614;
    margin-right: 10px;
}

.header-style-four .header-top-social a {
    color: #ffffff;
    font-size: 15px;
    margin-left: 12px;
    transition: 0.3s all ease-in-out;
}

.header-style-four .header-top-social a:hover {
    color: #ff3614;
}

.header-style-four .zt-header-menu-wrap {
    padding: 25px 0px;
}

.header-style-four .zt-main-navigation {
    padding-top: 15px;
}

.header-style-four .zt-main-navigation .dropdown {
    position: relative;
}

.header-style-four .zt-main-navigation .dropdown:after {
    top: -2px;
    right: -14px;
    content: "+";
    color: #ff3614;
    font-size: 18px;
    font-weight: 700;
    position: absolute;
    transition: 0.3s all ease-in-out;
}

.header-style-four .zt-main-navigation .dropdown .dropdown-menu {
    top: 65px;
    left: 0;
    opacity: 0;
    z-index: 2;
    margin: 0px;
    padding: 0px;
    height: auto;
    width: 200px;
    border: none;
    display: block;
    border-radius: 0;
    overflow: hidden;
    visibility: hidden;
    position: absolute;
    background-color: #fff;
    transition: all 0.4s ease-in-out;
    border-bottom: 2px solid #ff3614;
    box-shadow: 0 5px 10px 0 rgba(83, 82, 82, 0.1);
}

.header-style-four .zt-main-navigation .dropdown .dropdown-menu li {
    width: 100%;
    margin-left: 0;
    border-bottom: 1px solid #e5e5e5;
}

.header-style-four .zt-main-navigation .dropdown .dropdown-menu li a {
    width: 100%;
    color: #343434;
    display: block;
    font-size: 14px;
    padding: 10px 25px;
    position: relative;
    transition: 0.3s all ease-in-out;
}

.header-style-four .zt-main-navigation .dropdown .dropdown-menu li a:before {
    display: none;
}

.header-style-four .zt-main-navigation .dropdown .dropdown-menu li a:after {
    left: 10px;
    top: 16px;
    width: 8px;
    height: 8px;
    content: "";
    position: absolute;
    border-radius: 100%;
    transform: scale(0);
    background-color: #fff;
    transition: 0.3s all ease-in-out;
}

.header-style-four .zt-main-navigation .dropdown .dropdown-menu li a:hover {
    background-color: #ff3614;
    color: #fff;
}

.header-style-four .zt-main-navigation .dropdown .dropdown-menu li a:hover:after {
    transform: scale(1);
}

.header-style-four .zt-main-navigation .dropdown .dropdown-menu li:last-child {
    border-bottom: none;
}

.header-style-four .zt-main-navigation .dropdown:hover .dropdown-menu {
    top: 48px;
    opacity: 1;
    visibility: visible;
}

.header-style-four .zt-main-navigation .dropdown:hover::after {
    transform: rotate(130deg);
}

.header-style-four .zt-main-navigation .navbar-nav {
    display: inherit;
}

.header-style-four .zt-main-navigation li {
    margin-right: 0;
    margin-left: 55px;
}

.header-style-four .zt-main-navigation li a {
    color: #000000;
    font-weight: 700;
    padding-bottom: 30px;
}

.zt-header-search {
    margin-top: 15px;
}

.zt-header-search button {
    border: none;
    color: #ff3614;
    background-color: transparent;
}

.zt-header-login-signup {
    height: 50px;
    width: 160px;
    line-height: 45px;
    border-radius: 5px;
    overflow: hidden;
    margin-left: 65px;
}

.zt-header-login-signup button {
    padding: 0;
    width: 50%;
    color: #000;
    float: left;
    border: none;
    font-weight: 700;
    border: 2px solid #eaeaea;
    background-color: transparent;
    transition: 0.4s all ease-in-out;
}

.zt-header-login-signup button:hover {
    color: #fff;
    border: 2px solid #ff3614;
    background-color: #ff3614;
}

.zt-header-login-signup button:last-child {
    border-left: none;
}

/*Search popup Page*/
/*-------------------*/
.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -540px;
    transform: translateY(-100%);
    background-color: rgba(0, 0, 0, 0.9);
    transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.search-popup:before {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 560px;
    background-image: url(../img/waves-shape.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 0px;
    content: "";
}

.search-active .search-popup {
    transform: translateY(0%);
    margin-top: 0;
}

.search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    margin: 0 auto;
    margin-top: -200px;
    border-radius: 50%;
    text-align: center;
    background-color: #ff5520;
    width: 70px;
    height: 70px;
    cursor: pointer;
    border: none;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
}

.search-popup .close-search span {
    position: relative;
    display: block;
    height: 70px;
    font-size: 25px;
    line-height: 65px;
    color: #ffffff;
}

.search-active .search-popup .close-search {
    visibility: visible;
    opacity: 1;
    top: 50%;
    transition-delay: 1500ms;
}

.search-popup form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: -35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    background-color: #111111;
    transition: all 300ms ease;
}

.search-active .search-popup form {
    transform: scaleX(1);
    transition-delay: 1200ms;
}

.search-popup .form-group {
    position: relative;
    margin: 0px;
    overflow: hidden;
}

.search-popup .form-group input[type=text],
.search-popup .form-group input[type=search] {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 50px;
    color: #000000;
    height: 70px;
    width: 100%;
    padding: 10px 30px;
    background-color: #ffffff;
    transition: all 500ms ease;
    font-weight: 500;
    text-transform: capitalize;
}

.search-popup .form-group input[type=submit],
.search-popup .form-group button {
    position: absolute;
    right: 30px;
    top: 0px;
    height: 70px;
    line-height: 70px;
    background: transparent;
    text-align: center;
    font-size: 24px;
    color: #000000;
    padding: 0;
    cursor: pointer;
    border: none;
    transition: all 500ms ease;
}

.search-popup .form-group input[type=submit]:hover,
.search-popup .form-group button:hover {
    color: #000000;
}

.search-popup input::placeholder,
.search-popup textarea::placeholder {
    color: #000000;
}

.search-popup .close-search.style-two {
    position: absolute;
    right: 25px;
    left: auto;
    color: #ffffff;
    width: auto;
    height: auto;
    top: 25px;
    margin: 0px;
    border: none;
    background: none !important;
    box-shadow: none !important;
    transition: all 500ms ease;
}

.search-popup .close-search.style-two span {
    font-size: 20px;
    color: #ffffff;
}

/*Mobile Menu area*/
/*----------------------------------------------------*/
.zt-mobile_menu_content {
    top: 0px;
    bottom: 0;
    right: -350px;
    height: 100vh;
    z-index: 101;
    position: fixed;
    width: 310px;
    overflow-y: scroll;
    background-color: #000;
    padding: 50px 35px 35px 35px;
    box-shadow: 0px 3px 5px rgba(100, 100, 100, 0.19);
    transition: all 0.5s ease-in;
}

.zt-mobile_menu_content .zt-mobile-main-navigation {
    width: 100%;
}

.zt-mobile_menu_content .zt-mobile-main-navigation .navbar-nav {
    width: 100%;
}

.zt-mobile_menu_content .dropdown:after {
    display: none;
}

.zt-mobile_menu_content .navbar-nav .dropdown-menu {
    position: static !important;
    transform: none !important;
}

.zt-mobile_menu_content .zt-mobile-main-navigation .navbar-nav li {
    width: 100%;
    display: block;
    transition: 0.3s all ease-in-out;
}

.zt-mobile_menu_content .zt-mobile-main-navigation .navbar-nav li a {
    padding: 0;
    width: 100%;
    color: #fff;
    display: block;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 30px 10px 0;
    text-transform: capitalize;
    border-bottom: 1px solid rgba(78, 78, 78, 0.41);
}

.zt-mobile_menu_content .m-brand-logo {
    width: 160px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.zt-mobile_menu_wrap.mobile_menu_on .zt-mobile_menu_content {
    right: 0px;
    transition: all 0.7s ease-out;
}

.mobile_menu_overlay {
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 100;
    right: 0%;
    height: 120vh;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.9);
    transition: all 0.5s ease-in-out;
}

.mobile_menu_overlay_on {
    overflow: hidden;
}

.zt-mobile_menu_wrap.mobile_menu_on .mobile_menu_overlay {
    opacity: 1;
    visibility: visible;
}

.zt-mobile_menu_button {
    right: 0;
    top: 5px;
    z-index: 5;
    display: none;
    cursor: pointer;
    font-size: 30px;
    line-height: 40px;
    position: absolute;
    text-align: center;
    color: #ff5520;
}

.zt-mobile_menu .zt-mobile-main-navigation .navbar-nav li a:after {
    display: none;
}

.zt-mobile_menu .zt-mobile-main-navigation .dropdown>.dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.zt-mobile_menu .zt-mobile_menu_content .zt-mobile-main-navigation .navbar-nav .dropdown-menu {
    border: none;
    display: none;
    transition: none;
    box-shadow: none;
    padding: 5px 0px;
    width: 100%;
    background-color: transparent;
}

.zt-mobile_menu .zt-mobile_menu_content .zt-mobile-main-navigation .navbar-nav .dropdown-menu li {
    border: none;
    padding: 0 20px;
    line-height: 1;
}

.zt-mobile_menu .zt-mobile_menu_content .zt-mobile-main-navigation .navbar-nav .dropdown-menu li a:hover {
    color: #ff5520;
    background-color: transparent;
}

.zt-mobile_menu .dropdown {
    position: relative;
}

.zt-mobile_menu .dropdown .dropdown-btn {
    color: #9397a7;
    position: absolute;
    top: 3px;
    right: 0;
    height: 30px;
    padding: 5px 10px;
}

.zt-mobile_menu .dropdown .dropdown-btn.toggle-open {
    transform: rotate(90deg);
}

.zt-mobile_menu .zt-mobile_menu_close {
    color: #d60606;
    cursor: pointer;
    top: 15px;
    left: 15px;
    font-size: 20px;
    position: absolute;
}

.header-style-four.zt-sticky-menu {
    top: -46px;
}

@media screen and (max-width: 1024px) {
    .header-style-four .zt-main-navigation li {
        margin-left: 40px;
    }

    .zt-header-login-signup {
        margin-left: 30px;
    }
}

@media screen and (max-width: 991px) {
    .header-style-four .header-top {
        display: none;
    }

    .header-style-four .zt-main-navigation,
    .zt-header-option {
        display: none;
    }

    .zt-mobile_menu_button {
        display: block;
    }

    .header-style-four .zt-header-menu-wrap {
        padding: 5px 0px;
        display: block;
    }

    .header-style-four.zt-sticky-menu {
        top: 0;
    }
}

@media screen and (max-width: 680px) {
    .header-style-four .header-top {
        display: none;
    }
}

/*---------------------------------------------------- */
/*Slider area*/
/*----------------------------------------------------*/
.cd-headline.scale b {
    opacity: 0;
}

.cd-words-wrapper {
    position: relative;
}

.cd-words-wrapper b {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
    font-weight: 700;
}

.cd-words-wrapper b.is-visible {
    position: relative;
}

.no-js .cd-words-wrapper b {
    opacity: 0;
    font-weight: 700;
}

.no-js .cd-words-wrapper b.is-visible {
    opacity: 1;
}

.cd-headline.scale i {
    display: inline-block;
    opacity: 0;
    transform: scale(0);
    font-style: normal;
}

.is-visible .cd-headline.scale i {
    opacity: 1;
}

.cd-headline.scale i.in {
    animation: scale-up 0.6s forwards;
}

.cd-headline.scale i.out {
    animation: scale-down 0.6s forwards;
}

.no-csstransitions .cd-headline.scale i {
    transform: scale(1);
    opacity: 0;
}

.no-csstransitions .cd-headline.scale .is-visible i {
    opacity: 1;
}

@keyframes scale-up {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    60% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes scale-down {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    60% {
        transform: scale(0);
        opacity: 0;
    }
}

.slider-main-img,
.slider-overlay {
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    position: absolute;
}

.slider-main-item {
    z-index: 1;
}

.slider-main-item .slider-overlay {
    background-color: black;
    opacity: 0.051;
}

.slider-main-item .img-zooming {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform: scale(1);
}

.slider-main-item .slider-main-text {
    max-width: 620px;
    padding: 115px 0px 125px;
}

.slider-main-item .slider-main-text span {
    color: #000;
    display: block;
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 8px;
    opacity: 0;
    transform: translateY(50px);
}

.slider-main-item .slider-main-text h1 {
    color: #000;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    padding-bottom: 20px;
    opacity: 0;
    transform: translateY(50px);
}

.slider-main-item .slider-main-text p {
    opacity: 0;
    color: #4f4f4f;
    font-size: 18px;
    padding-bottom: 30px;
    transform: translateY(50px);
}

.slider-main-item .slider-main-text .slider-main-btn {
    opacity: 0;
    transform: translateY(50px);
}

.slider-main-item .slider-main-text .slider-main-btn a {
    color: #fff;
    height: 55px;
    width: 150px;
    float: left;
    font-weight: 700;
    line-height: 55px;
    text-align: center;
    margin-right: 20px;
    display: inline-block;
}

.slider-main-item .slider-main-text .slider-main-btn a i {
    margin-right: 8px;
}

.slider-main-item .slider-main-text .slider-main-btn a:nth-child(1) {
    background-color: #ff5520;
}

.slider-main-item .slider-main-text .slider-main-btn a:nth-child(2) {
    background-color: #000;
}

#zt-main-slider .owl-nav {
    display: none;
}

#zt-main-slider .owl-dots {
    left: 13%;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
}

#zt-main-slider .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: relative;
    border-radius: 100%;
    margin-bottom: 10px;
    border: 2px solid #eaeaea;
    transition: 0.3s all ease-in-out;
}

#zt-main-slider .owl-dots .owl-dot:before {
    top: 3px;
    left: 3px;
    width: 9px;
    height: 9px;
    content: "";
    position: absolute;
    border-radius: 100%;
    background-color: #000000;
    transition: 0.3s all ease-in-out;
}

#zt-main-slider .owl-dots .owl-dot.active {
    border: 2px solid #000;
}

#zt-main-slider .owl-dots .owl-dot.active:before {
    background-color: #ff5520;
}

#zt-main-slider .owl-item.active .img-zooming {
    transform: scale(1.15);
    transition: all 7000ms linear;
}

#zt-main-slider .owl-item.active .slider-main-text span {
    opacity: 1;
    transform: translateY(0);
    transition: all 1500ms ease;
    transition-delay: 900ms;
}

#zt-main-slider .owl-item.active .slider-main-text h1 {
    opacity: 1;
    transform: translateY(0);
    transition: all 1500ms ease;
    transition-delay: 1200ms;
}

#zt-main-slider .owl-item.active .slider-main-text p {
    opacity: 1;
    transform: translateY(0);
    transition: all 1500ms ease;
    transition-delay: 1500ms;
}

#zt-main-slider .owl-item.active .slider-main-text .slider-main-btn {
    opacity: 1;
    transform: translateY(0);
    transition: all 1500ms ease;
    transition-delay: 1800ms;
}

#zt-main-slider-2 .owl-stage {
    display: flex;
}

#zt-main-slider-2 .owl-nav .owl-next,
#zt-main-slider-2 .owl-nav .owl-prev {
    top: 50%;
    opacity: 0;
    width: 40px;
    color: #fff;
    height: 40px;
    cursor: pointer;
    line-height: 40px;
    position: absolute;
    text-align: center;
    visibility: hidden;
    background-color: #ff5520;
    transform: translateY(-50%);
    transition: 0.4s all ease-in-out;
}

#zt-main-slider-2 .owl-nav .owl-next {
    right: 0px;
}

#zt-main-slider-2 .owl-nav .owl-prev {
    left: 0px;
}

#zt-main-slider-2:hover .owl-next {
    opacity: 1;
    right: 30px;
    visibility: visible;
}

#zt-main-slider-2:hover .owl-prev {
    opacity: 1;
    left: 30px;
    visibility: visible;
}

.slider-main-item-2 {
    padding: 250px 0px;
    height: 100%;
}

.slider-main-item-2 .slider-overlay {
    background-color: rgba(0, 0, 0, 0.5);
}

.slider-main-item-2 .slider-main-text {
    color: #fff;
    margin: 0 auto;
    max-width: 760px;
}

.slider-main-item-2 .slider-main-text span {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 10px;
    display: inline-block;
    text-transform: uppercase;
    color: #ff5520;
}

.slider-main-item-2 .slider-main-text h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: capitalize;
    color: #ff5520;
}

.slider-main-item-2 .slider-main-text p {
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
}

.slider-main-item-2 .slider-main-text strong {
    color: #ff5520;
}

.slider-main-item-2 .slider-main-text a.slide-btn {
    /*height: 60px;
  width: 180px;
  line-height: 60px;*/
    border-radius: 5px;
    font-weight: 700;
    display: inline-block;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ff5520;
    line-height: 18px;
    padding: 10px 15px;
}

.slider-main-item-2 .slider-main-text a.slide-btn:hover {
    background-color: #ff5520;
}

.slider-main-item-2 .slider-main-text ul li {
    width: fit-content;
    text-align: center;
    display: block;
    margin: 0 auto;
    position: relative;
}

.slider-main-item-2 .slider-main-text ul {
    list-style-type: none;
    text-align: center;
}

.banner-water-mark {
    left: 0;
    bottom: -40px;
    opacity: 0.05;
    z-index: -1;
    line-height: 1;
    color: #00003d;
    font-weight: 700;
    font-size: 265px;
    position: absolute;
    font-family: "Fira Sans", sans-serif;
}

.zt-banner-section {
    padding-bottom: 132px;
}

.zt-banner-section .banner-dot-square {
    z-index: 1;
}

.zt-banner-section .dot-square1 {
    width: 7px;
    height: 7px;
    top: 200px;
    left: 150px;
    background-color: #00a4ff;
    box-shadow: 0px 6px 13px 0px rgba(0, 0, 254, 0.25);
    animation: animationFramesOne 12s infinite alternate;
}

.zt-banner-section .dot-square2 {
    top: 150px;
    left: 25%;
    width: 10px;
    height: 10px;
    background-color: #000;
    box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.25);
    animation: animationFramesTwo 18s infinite alternate;
}

.zt-banner-section .dot-square3 {
    bottom: 150px;
    left: 150px;
    width: 10px;
    height: 10px;
    background-color: #ff5520;
    box-shadow: 0px 6px 13px 0px rgba(255, 85, 32, 0.25);
    animation: animationFramesOne 12s infinite alternate;
}

.zt-banner-section .dot-square4 {
    width: 10px;
    height: 10px;
    right: 50%;
    bottom: 200px;
    background-color: #ff5520;
    box-shadow: 0px 6px 13px 0px rgba(0, 0, 254, 0.25);
    animation: animationFramesTwo 18s infinite alternate;
}

.zt-banner-content {
    background-color: #f7f7f7;
}

.zt-banner-content .zt-banner-img {
    top: 90px;
    right: -30px;
    position: absolute;
}

.zt-banner-content .b-deco-shape {
    bottom: -74px;
}

.zt-banner-text {
    z-index: 1;
    max-width: 690px;
    overflow: hidden;
    padding: 230px 0px 180px;
}

.zt-banner-text .zt-banner-tag {
    padding-right: 30px;
    border-radius: 40px;
    display: inline-block;
    margin-bottom: 45px;
    background-color: #efeff0;
}

.zt-banner-text .zt-banner-tag span {
    color: #fff;
    font-weight: 500;
    padding: 12px 30px;
    margin-right: 10px;
    border-radius: 40px;
    display: inline-block;
    background-color: #ff5520;
}

.zt-banner-text .zt-banner-tag p {
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 0;
    display: inline-block;
}

.zt-banner-text h1 {
    color: #000;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.2;
    padding-bottom: 35px;
}

.zt-banner-text h1 span {
    color: #ff5520;
}

.zt-banner-text p {
    color: #4f4f4f;
    font-size: 20px;
    line-height: 1.6;
    padding-bottom: 40px;
}

.zt-banner-text .zt-banner-btn {
    float: left;
    margin-right: 35px;
}

.zt-banner-text .zt-banner-btn a {
    color: #fff;
    width: 160px;
    height: 55px;
    display: block;
    overflow: hidden;
    font-weight: 700;
    line-height: 55px;
    border-radius: 40px;
    background-color: #ff5520;
}

.zt-banner-text .zt-banner-btn a i {
    margin-left: 5px;
}

.zt-banner-text .zt-banner-play {
    float: left;
    width: 50px;
    height: 50px;
    margin-top: 5px;
    line-height: 50px;
    border-radius: 100%;
    transition: 0.3s all ease-in-out;
    background-color: #ff5520;
}

.zt-banner-text .zt-banner-play a {
    color: #fff;
    width: 100%;
    display: block;
}

.zt-banner-text .zt-banner-play:hover {
    background-color: #ff5520;
}

.zt-banner-text .zt-banner-play .video_btn_border {
    border: 2px solid rgba(0, 0, 0, 0.15);
}

.banner-search-select {
    top: -175px;
    z-index: 1;
    position: relative;
    margin-bottom: -175px;
}

.banner-search-select .banner-search-shape1 {
    top: -70px;
    left: -70px;
    z-index: -1;
}

.banner-search-select .banner-search-shape2 {
    bottom: -70px;
    right: -70px;
    z-index: -1;
}

.banner-search-select .banner-search-form {
    background-color: #fff;
    display: inline-block;
    border-radius: 10px;
    padding: 20px 20px 12px;
    box-shadow: 0px 6px 21px 0px rgba(0, 0, 0, 0.05);
}

.banner-search-select .zt-select-option-wrap {
    float: left;
    margin-top: 5px;
}

.banner-search-select .banner-select-option {
    width: 165px;
    display: inline-block;
}

.banner-search-select .banner-select-option .nice-select {
    color: #000;
    border: none;
    height: auto;
    font-size: 18px;
    font-weight: 700;
    line-height: auto;
    font-family: "Fira Sans", sans-serif;
}

.banner-search-select .banner-select-option .nice-select:after {
    top: 0px;
    right: 20px;
    height: auto;
    border: none;
    margin-top: 0;
    font-size: 12px;
    content: "";
    font-weight: 900;
    transform: rotate(0);
    font-family: "Font Awesome 5 Free";
}

.banner-search-select button {
    color: #fff;
    height: 45px;
    width: 160px;
    border: none;
    font-weight: 700;
    border-radius: 5px;
    overflow: hidden;
    background-color: #ff5520;
}

.banner-search-select button:after {
    background-color: #ff5520;
}

.banner-search-select button i {
    margin-right: 5px;
}

.select-apply-btn {
    margin-top: 20px;
}

.select-apply-btn p {
    color: #000;
    font-size: 15px;
}

.select-apply-btn p a {
    font-weight: 700;
    margin-left: 8px;
    color: #ff5520;
    text-decoration: underline;
}

@keyframes animateBubble {
    0% {
        margin-top: 20%;
    }

    100% {
        margin-top: -30%;
    }
}

@keyframes sideWays {
    0% {
        margin-left: 0;
    }

    100% {
        margin-left: 25px;
    }
}

.slider-main-item-3 {
    padding: 150px 0px 250px;
}

.slider-main-item-3 .slider-overlay {
    background-color: rgba(7, 23, 58, 0.65);
}

.slider-main-item-3 .slider-main-img,
.slider-main-item-3 .slider-overlay {
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    position: absolute;
}

.slider-main-item-3 .slider-main-text {
    margin: 0 auto;
    max-width: 810px;
}

.slider-main-item-3 .slider-main-text .shape-layer {
    top: 100px;
    right: 240px;
}

.slider-main-item-3 .slider-main-text span {
    color: #ff3614;
    font-size: 18px;
    font-weight: 700;
}

.slider-main-item-3 .slider-main-text h1 {
    color: #fff;
    font-weight: 700;
    font-size: 60px;
    padding: 10px 0px;
}

.slider-main-item-3 .slider-main-text p {
    color: #e5e5e5;
    margin: 0 auto;
    font-size: 18px;
    max-width: 450px;
    margin-bottom: 35px;
}

.slider-main-item-3 .slider-main-text a {
    color: #fff;
    height: 55px;
    width: 150px;
    font-weight: 700;
    line-height: 55px;
    border-radius: 5px;
    display: inline-block;
    background-color: #ff3614;
    border: 2px solid #ff3614;
    transition: 0.3s all ease-in-out;
}

.slider-main-item-3 .slider-main-text a:hover {
    border: 2px solid #ff3614;
    background-color: transparent;
}

#zt-main-slider-3 .owl-nav .owl-next,
#zt-main-slider-3 .owl-nav .owl-prev {
    top: 50%;
    opacity: 0;
    width: 40px;
    color: #fff;
    height: 40px;
    cursor: pointer;
    line-height: 40px;
    position: absolute;
    text-align: center;
    visibility: hidden;
    background-color: #ff5520;
    transform: translateY(-50%);
    transition: 0.4s all ease-in-out;
}

#zt-main-slider-3 .owl-nav .owl-next {
    right: 0px;
}

#zt-main-slider-3 .owl-nav .owl-prev {
    left: 0px;
}

#zt-main-slider-3:hover .owl-next {
    opacity: 1;
    right: 30px;
    visibility: visible;
}

#zt-main-slider-3:hover .owl-prev {
    opacity: 1;
    left: 30px;
    visibility: visible;
}

.slider-section-4 .bubble-dotted {
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 2;
    height: 100%;
    overflow: hidden;
    position: absolute;
    pointer-events: none;
}

.slider-section-4 .bubble-dotted .dotted {
    position: absolute;
    border-radius: 50%;
}

.slider-section-4 .bubble-dotted .dotted-1 {
    width: 11px;
    height: 11px;
    left: 100px;
    top: 50%;
    animation: animateBubble 15s linear infinite, sideWays 2s ease-in-out infinite alternate;
}

.slider-section-4 .bubble-dotted .dotted-2 {
    width: 7px;
    height: 7px;
    left: 240px;
    top: 40%;
    animation: animateBubble 10s linear infinite, sideWays 4s ease-in-out infinite alternate;
}

.slider-section-4 .bubble-dotted .dotted-3 {
    width: 11px;
    height: 11px;
    left: 460px;
    top: 30%;
    animation: animateBubble 18s linear infinite, sideWays 2s ease-in-out infinite alternate;
}

.slider-section-4 .bubble-dotted .dotted-4 {
    width: 16px;
    height: 16px;
    left: 430px;
    top: 90%;
    animation: animateBubble 12s linear infinite, sideWays 3s ease-in-out infinite alternate;
}

.slider-section-4 .bubble-dotted .dotted-5 {
    width: 6px;
    height: 6px;
    left: 50%;
    top: 50%;
    animation: animateBubble 19s linear infinite, sideWays 4s ease-in-out infinite alternate;
}

.slider-section-4 .bubble-dotted .dotted-6 {
    width: 9px;
    height: 9px;
    left: 70%;
    top: 230px;
    animation: animateBubble 11s linear infinite, sideWays 2s ease-in-out infinite alternate;
}

.slider-section-4 .bubble-dotted .dotted-7 {
    width: 6px;
    height: 6px;
    left: 65%;
    top: 30%;
    animation: animateBubble 10s linear infinite, sideWays 2s ease-in-out infinite alternate;
}

.slider-section-4 .bubble-dotted .dotted-8 {
    width: 6px;
    height: 6px;
    left: 85%;
    top: 35%;
    animation: animateBubble 12s linear infinite, sideWays 3s ease-in-out infinite alternate;
}

.slider-section-4 .bubble-dotted .dotted-9 {
    width: 13px;
    height: 13px;
    left: 90%;
    top: 40%;
    animation: animateBubble 19s linear infinite, sideWays 4s ease-in-out infinite alternate;
}

.slider-section-4 .bubble-dotted .dotted-10 {
    width: 12px;
    height: 12px;
    left: 80%;
    top: 70%;
    animation: animateBubble 16s linear infinite, sideWays 2s ease-in-out infinite alternate;
}

.slider-section-4 .bubble-dotted .dotted {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
}

.slider-section-4 .bubble-dotted .dotted-1 {
    width: 6px;
    height: 6px;
    left: 270px;
    top: 100px;
    background: #ff3614;
}

.slider-section-4 .bubble-dotted .dotted-2 {
    width: 6px;
    height: 6px;
    left: 190px;
    top: 210px;
}

.slider-section-4 .bubble-dotted .dotted-3 {
    width: 11px;
    height: 11px;
    left: 150px;
    top: 90%;
    background: #ff3614;
}

.slider-section-4 .bubble-dotted .dotted-4 {
    width: 11px;
    height: 11px;
    left: 25%;
    top: 100px;
}

.slider-section-4 .bubble-dotted .dotted-5 {
    width: 11px;
    height: 11px;
    left: 45%;
    top: 60px;
    background: #ff3614;
}

.slider-section-4 .bubble-dotted .dotted-6 {
    width: 6px;
    height: 6px;
    left: 50%;
    top: 370px;
}

.slider-section-4 .bubble-dotted .dotted-7 {
    width: 9px;
    height: 9px;
    left: 75%;
    top: 25px;
    background: #ff3614;
}

.slider-section-4 .bubble-dotted .dotted-8 {
    width: 8px;
    height: 8px;
    left: 77%;
    top: 170px;
}

.slider-section-4 .bubble-dotted .dotted-9 {
    width: 6px;
    height: 6px;
    left: 85%;
    top: 50%;
    background: #ff3614;
}

.slider-section-4 .bubble-dotted .dotted-10 {
    width: 6px;
    height: 6px;
    left: 90%;
    top: 80%;
}

@media screen and (max-width: 767px) {
    .slider-main-item-3 .slider-main-text h1 {
        font-size: 45px;
    }
}

@media screen and (max-width: 420px) {
    .slider-main-item-3 .slider-main-text h1 {
        font-size: 30px;
    }

    .slider-main-item-3 .slider-main-text p {
        font-size: 16px;
    }

    .slider-main-item-3 .slider-main-text a {
        height: 45px;
        line-height: 45px;
    }

    .slider-main-item-3 {
        padding: 100px 0px 150px;
    }
}

/*---------------------------------------------------- */
/*Promo area*/
/*----------------------------------------------------*/
.zt-promo-section {
    display: block;
    width: 100%;
    position: relative;
    margin-top: -80px;
    padding: 30px 0;
    background: transparent;
}

.zt-promo-carousel .owl-stage {
    display: flex !important;
}

.zt-promo-carousel .owl-stage .owl-item {
    margin-bottom: 10px;
}

.zt-promo-carousel .owl-nav .owl-prev,
.zt-promo-carousel .owl-nav .owl-next {
    top: 50%;
    opacity: 0;
    width: 30px;
    color: #fff;
    height: 30px;
    cursor: pointer;
    line-height: 30px;
    position: absolute;
    text-align: center;
    background-color: #ff5520;
    transform: translateY(-50%);
    transition: 0.3s all ease-in-out;
}

.zt-promo-carousel:hover .owl-nav .owl-prev,
.zt-promo-carousel:hover .owl-nav .owl-next {
    opacity: 1;
}

.zt-promo-carousel .owl-nav .owl-prev {
    left: 0;
}

.zt-promo-carousel .owl-nav .owl-next {
    right: 0;
}

.zt-promo-section .zt-promo-item,
.zt-promo-section .zt-promo-item a {
    display: block;
    width: 100%;
    position: relative;
    height: 100%;
    text-align: center;
    z-index: 1;
}

.zt-promo-item::before {
    position: absolute;
    bottom: -2.5px;
    left: 50%;
    content: "";
    z-index: 1;
    width: 70px;
    height: 5px;
    background-color: #ff5520;
    transform: translateX(-50%);
}

.zt-promo-item:hover::before {
    background-color: #ffffff;
}

.zt-promo-section .zt-promo-item::after {
    top: 0;
    left: 0;
    width: 0;
    z-index: -1;
    content: "";
    height: 100%;
    position: absolute;
    background-color: #ff5520;
    transition: all 500ms ease-in-out;
}

.zt-promo-item:hover::after {
    width: 100%;
}

.zt-promo-section .zt-promo-item a {
    padding: 10px;
    display: flex;
    align-items: center;
    width: 100%;
}

.zt-promo-section .zt-promo-item {
    background: #ffffff;
    transition: all 0.3s ease-in-out 0s;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 0px 15px 0px;
}

.zt-promo-section .zt-promo-item:hover {
    color: #ffffff;
}

.zt-promo-section .zt-promo-item .wrapper {
    display: block;
    width: 100%;
}

.zt-promo-section .zt-promo-item .wrapper h3 {
    color: #ff5520;
    font-size: 22px;
    line-height: 32px;
    display: block;
}

.zt-promo-section .zt-promo-item:hover .wrapper h3,
.zt-promo-section .zt-promo-item:hover a {
    color: #ffffff;
}

.zt-promo-section .zt-promo-item:hover .wrapper h3,
.zt-promo-section .zt-promo-item:hover a .txt-primary {
    color: #000000 !important;
}

/*---------------------------------------------------- */
/*Feature area*/
/*----------------------------------------------------*/
.zt-feature-section {
    padding: 30px 0px;
}

.zt-feature-innerbox {
    z-index: 1;
    padding: 35px 25px;
    transition: 0.3s all ease-in-out;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.zt-why-choose-us .zt-feature-innerbox {
    text-align: center;
}

.zt-feature-innerbox:after {
    top: 0;
    left: 0;
    width: 0;
    z-index: -1;
    content: "";
    height: 100%;
    position: absolute;
    background-color: #ff5520;
    transition: all 500ms ease-in-out;
}

.zt-feature-innerbox .zt-feature-icon {
    line-height: 1;
    margin-right: 15px;
}

.zt-why-choose-us .zt-feature-innerbox .zt-feature-icon {
    margin-right: unset;
    margin-bottom: 10px;
}

.zt-feature-innerbox .zt-feature-icon i {
    font-size: 45px;
    color: #ff5520;
    transition: 0.3s all ease-in-out;
}

.zt-why-choose-us .zt-feature-innerbox .zt-feature-icon i {
    font-size: 55px;
}

.zt-feature-innerbox .zt-feature-text {
    overflow: hidden;
}

.zt-feature-innerbox a.zt-feature-button {
    display: block;
    margin-top: 10px;
    color: #ff5520;
}

.zt-feature-innerbox a.zt-feature-button i {
    margin-left: 5px;
}

.zt-feature-innerbox:hover a.zt-feature-button {
    color: #ffffff;
}

.zt-feature-innerbox .zt-feature-text h3 {
    color: #000;
    font-size: 22px;
    font-weight: 700;
    padding-bottom: 10px;
    transition: 0.3s all ease-in-out;
}

.zt-why-choose-us .zt-feature-innerbox .zt-feature-text h3 {
    font-size: 26px;
    padding-bottom: 0;
}

.zt-why-choose-us .zt-feature-innerbox .zt-feature-text h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.zt-why-choose-us .zt-feature-innerbox:hover .zt-feature-text h4 {
    color: #000000;
}

.zt-feature-innerbox .zt-feature-text p {
    font-size: 15px;
    color: #555555;
    transition: 0.3s all ease-in-out;
}

.zt-feature-innerbox:hover {
    transform: translateY(-15px);
}

.zt-feature-innerbox:hover:after {
    width: 100%;
}

.zt-feature-innerbox:hover .zt-feature-icon i {
    color: #fff;
}

.zt-feature-innerbox:hover .zt-feature-text h3,
.zt-feature-innerbox:hover .zt-feature-text p {
    color: #fff;
}

/*---------------------------------------------------- */
/*About area*/
/*----------------------------------------------------*/
@keyframes border_animation {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    20% {
        transform: scale(1.24);
        opacity: 1;
    }

    100% {
        transform: scale(2.1);
        opacity: 0;
    }
}

.zt-about-section {
    padding-bottom: 100px;
}

.zt-about-text p {
    font-size: 17px;
    margin-bottom: 15px;
}

.zt-about-video-area {
    padding-top: 40px;
}

.zt-about-video-area .zt-about-video-tag {
    top: 0;
    left: 0;
    color: #fff;
    width: 140px;
    line-height: 1;
    padding: 13px 20px 10px;
    height: 140px;
    position: absolute;
    border: 15px solid #fff;
    background-color: #ff5520;
}

.zt-about-video-area .zt-about-video-tag h4 {
    font-size: 30px;
    font-weight: 700;
    margin-right: 10px;
    display: inline-block;
}

.zt-about-video-area .zt-about-video-tag i {
    font-size: 24px;
}

.zt-about-video-area .zt-about-video-tag span {
    margin-top: 5px;
    display: block;
    font-weight: 700;
    line-height: 1.2;
}

.zt-about-video-area .zt-video-play-btn {
    left: 0;
    top: 60%;
    right: 0;
    width: 85px;
    color: #000;
    height: 85px;
    margin: 0 auto;
    line-height: 85px;
    position: absolute;
    border-radius: 100%;
    background-color: #fff;
    transform: translateY(-50%);
}

.video_btn_border {
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    border-radius: 60px;
    position: absolute;
    animation-play-state: running;
    border: 2px solid rgba(255, 255, 255, 0.32);
    animation: border_animation 3.9s linear 0s infinite;
}

.video_btn_border.border_wrap-2 {
    animation-delay: 1.3s;
}

.video_btn_border.border_wrap-3 {
    animation-delay: 2.6s;
}

.zt-about-text-area-content {
    padding-top: 50px;
}

.zt-about-qoute {
    width: 100%;
    margin-top: 10px;
    display: inline-block;
    padding: 12px 0px 12px 25px;
    border-left: 4px solid #ff5520;
}

.zt-about-qoute span {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.zt-about-qoute .zt-quote-author {
    margin-top: 10px;
}

.zt-about-qoute .zt-quote-author h4 {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    padding-left: 15px;
    margin-right: 10px;
    display: inline-block;
}

.zt-about-qoute .zt-quote-author h4:before {
    left: 0;
    width: 6px;
    top: 10px;
    height: 2px;
    content: "";
    position: absolute;
    background-color: #000;
}

.zt-about-qoute .zt-quote-author span {
    color: #747474;
    font-size: 16px;
    font-weight: normal;
}

/*About Page area*/
/*-------------------------*/
.about-page-about-section {
    padding: 110px 0px;
}

.about-page-about-img {
    padding-left: 90px;
    position: relative;
}

.about-page-about-img a.video_box {
    z-index: 2;
    width: 50px;
    height: 50px;
    border: 0;
    transition: all 1s cubic-bezier(0, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
}

.about-page-about-img a.video_box i {
    color: #ff5520;
}

.about-page-about-img a.video_box::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 50%;
    border: 1.5px solid #ff5520;
    -webkit-animation: ripple 2s linear infinite;
    animation: ripple 2s linear infinite;
}

.about-page-about-img a.video_box::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 50%;
    border: 1.5px solid #ffffff;
    -webkit-animation: ripple 2s linear 1s infinite;
    animation: ripple 2s linear 1s infinite;
}

.about-page-about-text {
    padding-top: 15px;
}

.about-page-about-text .zt-section-title .title-watermark {
    text-align: left;
}

.about-page-about-text .about-page-about-text-wrap {
    max-width: 500px;
    line-height: 1.625;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e6e9f2;
}

.about-page-about-text .about-page-about-video .ab-page-video-area {
    width: 150px;
    height: 90px;
    overflow: hidden;
    border-radius: 5px;
    margin-right: 25px;
}

.about-page-about-text .about-page-about-video .ab-page-video-area a {
    top: 50%;
    left: 0;
    right: 0;
    width: 50px;
    height: 50px;
    color: #fff;
    margin: 0 auto;
    line-height: 42px;
    position: absolute;
    border-radius: 100%;
    background-color: #000;
    border: 4px solid #fff;
    transform: translateY(-50%);
}

.about-page-about-text .about-page-about-video .ab-page-video-text {
    padding-top: 8px;
    max-width: 280px;
    display: inline-block;
}

.about-page-about-text .about-page-about-video .ab-page-video-text h3 {
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 8px;
}

.about-page-about-text .about-page-about-video .ab-page-video-text p {
    font-size: 15px;
    line-height: 1.6;
}

.about-page-service-section {
    background-color: #e7e8e9;
    padding: 110px 0px;
}

.about-page-service-section .zt-section-title .title-watermark {
    color: #fff;
    opacity: 1;
}

.about-page-service-section .zt-feature-content {
    padding-top: 35px;
}

.about-page-service-section .zt-feature-innerbox {
    background-color: #fff;
}

.about-page-service-section .zt-feature-innerbox .zt-feature-icon i {
    color: #ff5520;
}

.about-page-service-section .zt-feature-innerbox:hover .zt-feature-icon i {
    color: #ff5520;
}

.zt-registration-section-3 {
    overflow: visible;
}

@media screen and (max-width: 991px) {
    .about-page-about-img {
        padding-left: 0;
        text-align: center;
        margin-bottom: 40px;
    }

    .about-page-about-text {
        margin: 0 auto;
        max-width: 570px;
    }
}

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

    .about-page-about-section,
    .about-page-service-section {
        padding: 60px 0px;
    }
}

/*---------------------------------------------------- */
/*Department area*/
/*----------------------------------------------------*/
.zt-department-section {
    padding: 95px 0px 100px;
    background-color: #f9f8f8;
}

.zt-department-section .zt-department-content {
    padding-top: 35px;
}

.zt-department-section .zt-department-btn {
    height: 50px;
    width: 170px;
    color: #fff;
    margin: 0 auto;
    margin-top: 40px;
    font-weight: 700;
    line-height: 50px;
    background-color: #ff5520;
}

.zt-department-section .zt-department-btn:hover i {
    margin-left: 5px;
}

.zt-department-section .zt-department-btn:after {
    background-color: #000;
}

.zt-department-section .zt-department-btn a {
    width: 100%;
    display: block;
}

.zt-department-section .zt-department-btn a i {
    transition: 0.3s all ease-in-out;
}

.zt-department-innerbox {
    z-index: 1;
    overflow: hidden;
    border: 15px solid #fff;
    transition: 0.3s all ease-in-out;
    box-shadow: 0px 0px 43px 0px rgba(12, 12, 12, 0.16);
}

.zt-department-innerbox:after {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    content: "";
    height: 100%;
    position: absolute;
    transition: 0.3s all ease-in-out;
    background: linear-gradient(to bottom, rgba(21, 37, 65, 0.23) 0%, rgba(0, 1, 4, 0.88) 75%);
}

.zt-department-innerbox:before {
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    content: "";
    height: 100%;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    background-color: #000;
    transition: 0.4s all ease-in-out;
}

.zt-department-innerbox .zt-department-text-icon {
    left: 45px;
    z-index: 3;
    opacity: 1;
    bottom: 45px;
    position: absolute;
    visibility: visible;
    transition: 0.3s all ease-in-out;
}

.zt-department-innerbox .zt-department-text-icon .zt-department-icon {
    line-height: 1;
    margin-right: 15px;
}

.zt-department-innerbox .zt-department-text-icon .zt-department-icon i {
    font-size: 50px;
    color: #ff5520;
}

.zt-department-innerbox .zt-department-text-icon .zt-department-text {
    overflow: hidden;
}

.zt-department-innerbox .zt-department-text-icon .zt-department-text h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.zt-department-innerbox .zt-department-text-icon .zt-department-text span {
    color: #fff;
}

.zt-department-innerbox .zt-department-hover-text {
    top: 40%;
    left: 0;
    right: 0;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    transform: translateY(-50%);
    transition: 0.4s all ease-in-out;
}

.zt-department-innerbox .zt-department-hover-text .zt-department-icon {
    line-height: 1;
    margin-bottom: 15px;
}

.zt-department-innerbox .zt-department-hover-text .zt-department-icon i {
    font-size: 50px;
    color: #ff5520;
}

.zt-department-innerbox .zt-department-hover-text .zt-department-text {
    overflow: hidden;
}

.zt-department-innerbox .zt-department-hover-text .zt-department-text h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    padding-bottom: 5px;
}

.zt-department-innerbox .zt-department-hover-text .zt-department-text span {
    color: #fff;
}

.zt-department-innerbox .zt-department-more-btn {
    right: 40px;
    z-index: 2;
    bottom: 0px;
    opacity: 0;
    line-height: 1;
    visibility: hidden;
    position: absolute;
    transition: 0.3s all ease-in-out;
}

.zt-department-innerbox .zt-department-more-btn a {
    color: #fff;
    font-size: 30px;
}

.zt-department-innerbox:hover {
    border: 15px solid #000;
    transform: translateY(-25px);
}

.zt-department-innerbox:hover:before {
    opacity: 1;
    visibility: visible;
}

.zt-department-innerbox:hover .zt-department-text-icon {
    left: 20px;
    opacity: 0;
    line-height: 1;
    visibility: hidden;
}

.zt-department-innerbox:hover .zt-department-hover-text {
    top: 50%;
    opacity: 1;
    visibility: visible;
}

.zt-department-innerbox:hover .zt-department-more-btn {
    right: 10px;
    opacity: 1;
    visibility: visible;
}

#zt-department-slider-id .owl-stage-outer {
    overflow: visible;
}

#zt-department-slider-id .owl-item {
    opacity: 0;
    transition: opacity 500ms;
}

#zt-department-slider-id .owl-item.active {
    opacity: 1;
}

#zt-department-slider-id .owl-nav {
    right: 0;
    top: -110px;
    position: absolute;
}

#zt-department-slider-id .owl-nav .owl-next,
#zt-department-slider-id .owl-nav .owl-prev {
    width: 60px;
    height: 60px;
    cursor: pointer;
    line-height: 60px;
    margin-left: 12px;
    text-align: center;
    border-radius: 100%;
    display: inline-block;
    border: 2px solid #ff5520;
    transition: 0.3s all ease-in-out;
}

#zt-department-slider-id .owl-nav .owl-next:hover,
#zt-department-slider-id .owl-nav .owl-prev:hover {
    color: #fff;
    background-color: #ff5520;
}

/*---------------------------------------------------- */
/*Testimonial area*/
/*----------------------------------------------------*/
.zt-testimonial-section {
    padding: 95px 0px 85px;
}

.zt-testimonial-section {
    background-position: right center;
}

.zt-testimonial-content {
    padding-top: 15px;
}

.zt-testimonial-item-wrap p {
    color: #353535;
    font-size: 17px;
    line-height: 1.647;
}

.zt-testimonial-item-wrap .zt-testimonial-author {
    margin-top: 20px;
    padding-left: 10px;
    padding-bottom: 10px;
}

.zt-testimonial-item-wrap .zt-testimonial-author .zt-testimonial-pic {
    width: 80px;
    height: 80px;
    overflow: hidden;
    margin-right: 15px;
    border-radius: 100%;
    box-shadow: 0px 7px 16px 0px rgba(0, 0, 0, 0.28);
    display: none;
}

.zt-testimonial-item-wrap .zt-testimonial-author .zt-testimonial-text {
    overflow: hidden;
    margin-top: 3px;
    display: inline-block;
}

.zt-testimonial-item-wrap .zt-testimonial-author .zt-testimonial-text .zt-testimonial-rate {
    margin-bottom: 3px;
    display: none;
}

.zt-testimonial-item-wrap .zt-testimonial-author .zt-testimonial-text .zt-testimonial-rate ul li {
    color: #ffc601;
    font-size: 13px;
    margin-right: 2px;
}

.zt-testimonial-item-wrap .zt-testimonial-author .zt-testimonial-text h4 {
    color: #000;
    font-size: 17px;
    font-weight: 700;
    padding-left: 10px;
    position: relative;
}

.zt-testimonial-item-wrap .zt-testimonial-author .zt-testimonial-text h4:after {
    top: 8px;
    left: 0;
    width: 5px;
    height: 2px;
    content: "";
    position: absolute;
    background-color: #000;
}

.zt-testimonial-item-wrap .zt-testimonial-author .zt-testimonial-text span {
    color: #6e6e6e;
    font-size: 17px;
}

#zt-testimonial-slide .owl-nav {
    display: none;
}

#zt-testimonial-slide .owl-dots {
    right: 0;
    bottom: 5px;
    position: absolute;
}

#zt-testimonial-slide .owl-dots .owl-dot,
.zt-client-logo-carousel .owl-dots .owl-dot {
    width: 18px;
    height: 18px;
    margin-bottom: 5px;
    border-radius: 100%;
    position: relative;
    cursor: pointer;
    background-color: #fff;
    border: 2px solid #fff;
    transition: 0.3s all ease-in-out;
}

#zt-testimonial-slide .owl-dots .owl-dot:before,
.zt-client-logo-carousel .owl-dots .owl-dot:before {
    top: 2px;
    left: 2px;
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 100%;
    position: absolute;
    background-color: #d4d4d4;
    transition: 0.4s all ease-in-out;
}

#zt-testimonial-slide .owl-dots .owl-dot.active,
.zt-client-logo-carousel .owl-dots .owl-dot.active {
    border: 2px solid #000;
}

#zt-testimonial-slide .owl-dots .owl-dot.active:before,
.zt-client-logo-carousel .owl-dots .owl-dot.active:before {
    background-color: #ff5520;
}

/*Testimonial Card 2*/
/*-----------------------------*/
.zt-testimonial-item {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.zt-testimonial-item .user-info {
    display: block;
    width: 100%;
    position: relative;
    text-align: center;
}

.zt-testimonial-item .user-info .name {
    color: #ff5520;
    font-size: 20px;
    line-height: 30px;
}

.zt-testimonial-item .user-info .designation {
    font-size: 16px;
    line-height: 22px;
}

.zt-testimonial-item .inner-content-wrapper {
    display: block;
    width: 100%;
    background-color: #ffffff;
    padding: 10px;
    transition: all 0.3s ease-in-out;
}

.zt-testimonial-item .user-review {
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.zt-testimonial-item .user-review p {
    line-height: 24px;
    margin-bottom: 10px;
}

.zt-testimonial-item span.button {
    display: flex;
    align-items: center;
    position: relative;
    color: #ff5520;
    cursor: pointer;
    text-transform: capitalize;
    transition: all 0.3s;
}

.zt-testimonial-item span.button i {
    margin-left: 5px;
}

.zt-testimonial-item span.button:hover {
    margin-left: 20px;
}

/*Testimonial section 2*/
/*-----------------------------*/
.zt-testimonial-section-2 {
    padding: 105px 0px 100px;
}

.zt-testimonial-img-text-2 {
    overflow: hidden;
    border-radius: 10px;
    background-color: #fff;
    padding: 40px 30px 25px;
    transition: 0.3s all ease-in-out;
    box-shadow: 0px 12px 35px 0px rgba(12, 12, 12, 0.06);
}

.zt-testimonial-img-text-2 .zt-testimonial-icon-2 {
    top: 15px;
    right: 15px;
    position: absolute;
}

.zt-testimonial-img-text-2 .zt-testimonial-icon-2 i {
    color: #efefef;
    line-height: 1;
    font-size: 30px;
    transition: 0.3s all ease-in-out;
}

.zt-testimonial-img-text-2 .zt-testimonial-text-2 h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ff5520;
    padding-bottom: 15px;
}

.zt-testimonial-img-text-2 .zt-testimonial-text-2 p {
    color: #666666;
}

.zt-testimonial-img-text-2 .zt-testimonial-author-2 {
    margin-top: 20px;
}

.zt-testimonial-img-text-2 .zt-testimonial-author-2 .zt-testi-author-img-2 {
    width: 65px;
    height: 65px;
    overflow: hidden;
    margin-right: 12px;
    border-radius: 100%;
}

.zt-testimonial-img-text-2 .zt-testimonial-author-2 .zt-testi-author-img-2:before {
    top: 0;
    left: 0;
    width: 65px;
    content: "";
    z-index: 1;
    height: 65px;
    border-radius: 100%;
    position: absolute;
    border: 3px solid #ff5520;
}

.zt-testimonial-img-text-2 .zt-testimonial-author-2 .zt-testi-author-img-2:after {
    top: 3px;
    left: 3px;
    width: 60px;
    content: "";
    height: 60px;
    position: absolute;
    border-radius: 100%;
    border: 5px solid #fff;
}

.zt-testimonial-img-text-2 .zt-testimonial-author-2 .zt-testi-author-text-2 {
    display: block;
    padding-top: 10px;
}

.zt-testimonial-img-text-2 .zt-testimonial-author-2 .zt-testi-author-text-2 h4 {
    color: #000;
    font-size: 14px;
    font-weight: 700;
}

.zt-testimonial-img-text-2 .zt-testimonial-author-2 .zt-testi-author-text-2 span {
    color: #888888;
    font-size: 14px;
}

.zt-testimonial-img-text-2:hover {
    transform: translateY(-25px);
    box-shadow: 0px 36px 35px 0px rgba(12, 12, 12, 0.1);
}

.zt-testimonial-img-text-2:hover .zt-testimonial-icon-2 i {
    color: #ff5520;
}

.zt-testimonial-wrap-2 {
    margin-top: 40px;
}

.zt-testimonial-wrap-2 .owl-nav {
    display: none;
}

.zt-testimonial-wrap-2 .owl-stage-outer {
    overflow: visible;
}

.zt-testimonial-wrap-2 .owl-item {
    opacity: 0;
    transition: opacity 500ms;
}

.zt-testimonial-wrap-2 .owl-item.active {
    opacity: 1;
}

.zt-testimonial-wrap-2 .owl-dots {
    margin-top: 35px;
    text-align: center;
}

.zt-testimonial-wrap-2 .owl-dots .owl-dot {
    width: 28px;
    height: 5px;
    margin: 0px 5px;
    cursor: pointer;
    border-radius: 30%;
    display: inline-block;
    background-color: #ececed;
    transition: 0.3s all ease-in-out;
}

.zt-testimonial-wrap-2 .owl-dots .owl-dot.active {
    width: 38px;
    background-color: #ff5520;
}

.zt-testimonial-section-3 {
    padding: 120px 0px;
    background-color: #f9f8f8;
}

.testimonial-slider-3 .owl-nav {
    display: none;
}

.testimonial-slider-3 .owl-stage-outer {
    overflow: visible;
}

.testimonial-slider-3 .owl-item {
    opacity: 0;
    transition: opacity 500ms;
}

.testimonial-slider-3 .owl-item.active {
    opacity: 1;
}

.testimonial-slider-3 .owl-dots {
    margin-top: 35px;
    text-align: center;
}

.testimonial-slider-3 .owl-dots .owl-dot {
    width: 165px;
    height: 15px;
    cursor: pointer;
    border-radius: 30px;
    display: inline-block;
    background-color: #ffffff;
    transition: 0.3s all ease-in-out;
    box-shadow: 0px 9px 21px 0px rgba(12, 12, 12, 0.05);
}

.testimonial-slider-3 .owl-dots .owl-dot.active {
    width: 165px;
    background-color: #ff3614;
}

@media screen and (max-width: 420px) {
    .zt-testimonial-section-3 {
        padding: 50px 0px;
    }

    .testimonial-slider-3 .owl-dots .owl-dot.active,
    .testimonial-slider-3 .owl-dots .owl-dot {
        width: 20px;
    }
}

.zt-corporate-training {
    padding: 30px 0;
}

.zt-corporate-training .zt-section-title h2 {
    font-size: 24px;
}

/*---------------------------------------------------- */
/*Client Logo*/
/*----------------------------------------------------*/
.zt-client-logo-carousel {
    position: relative;
}

.zt-client-logo-carousel .owl-dots {
    margin-top: 30px;
}

.zt-client-logo-carousel .owl-nav {
    display: none;
}

.zt-client-logo-carousel .owl-nav .owl-prev,
.zt-client-logo-carousel .owl-nav .owl-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 2px solid #ff5520;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    cursor: pointer;
    color: #555555;
}

.zt-client-logo-carousel .owl-nav .owl-prev:hover,
.zt-client-logo-carousel .owl-nav .owl-next:hover {
    background-color: #ff5520;
    color: #ffffff;
}

.zt-client-logo-carousel .owl-nav .owl-prev {
    left: 0;
}

.zt-client-logo-carousel .owl-nav .owl-next {
    right: 0;
}

.zt-client-logo-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.zt-client-logo-carousel .zt-client-logo-item {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    border: 1px solid #f7f7f7;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.06);
    padding: 5px;
}

.zt-client-logo-carousel .zt-client-logo-item img {
    display: block;
    margin: 0 auto;
    max-width: 150px;
}

/*---------------------------------------------------- */
/*Course area*/
/*----------------------------------------------------*/
@keyframes toBottomFromTop {
    49% {
        transform: translateY(100%);
    }

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

    51% {
        opacity: 1;
    }
}

@keyframes toTopFromBottom {
    49% {
        transform: translateY(-100%);
    }

    50% {
        opacity: 0;
        transform: translateY(100%);
    }

    51% {
        opacity: 1;
    }
}

@keyframes toBottomFromTop {
    49% {
        transform: translateY(100%);
    }

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

    51% {
        opacity: 1;
    }
}

@keyframes toLeftFromRight {
    49% {
        transform: translateX(-100%);
    }

    50% {
        opacity: 0;
        transform: translateX(100%);
    }

    51% {
        opacity: 1;
    }
}

.zt-course-section {
    padding: 95px 0px;
    background-color: #f9f8f8;
}

.zt-course-more-btn {
    color: #fff;
    height: 50px;
    width: 150px;
    margin: 0 auto;
    margin-top: 15px;
    font-weight: 700;
    line-height: 50px;
    background: #ff5520;
}

.zt-course-more-btn:after {
    background-color: #000;
}

.zt-course-more-btn i {
    margin-left: 5px;
}

.zt-course-more-btn a {
    width: 100%;
    display: block;
}

.zt-course-top {
    margin-bottom: 25px;
}

.zt-course-top .zt-section-title {
    padding-left: 60px;
}

.zt-course-top .zt-course-title-text {
    margin-top: 30px;
    padding-left: 40px;
}

.zt-course-top .zt-course-title-text span {
    color: #353535;
    font-size: 17px;
}

.zt-course-filter-wrap .filtr-container-area {
    margin: 0 -15px;
}

.zt-course-filter-wrap .zt-course-filter-btn {
    margin-bottom: 10px;
}

.zt-course-filter-wrap .zt-course-filter-btn button {
    color: #000;
    font-weight: 700;
    margin: 0px 10px;
    padding: 5px 15px;
    border: 1px solid #e7e6e6;
    background-color: transparent;
    transition: 0.3s all ease-in-out;
}

.zt-course-filter-wrap .zt-course-filter-btn button.is-checked {
    color: #fff;
    border: 1px solid #ff5520;
    background-color: #ff5520;
}

.zt-course-filter-wrap .grid-size-25 {
    width: 25%;
}

.zt-course-filter-wrap .grid-sizer {
    width: 25%;
}

.zt-course-filter-wrap .grid-item {
    float: left;
    padding: 15px;
    display: inline-block;
}

.zt-course-img-text {
    padding: 18px;
    margin-bottom: 5px;
    box-shadow: 0px 14px 29px 0px rgba(12, 12, 12, 0.08);
}

.zt-course-img-text .zt-course-img {
    overflow: hidden;
}

.zt-course-img-text .zt-course-img img {
    transition: 0.4s all ease-in-out;
}

.zt-course-img-text .zt-course-img:before {
    content: "";
    opacity: 0;
    width: 100%;
    z-index: 1;
    height: 100%;
    visibility: hidden;
    position: absolute;
    transform: scale(0.5);
    transition: 0.4s all ease-in-out;
    background-color: rgba(0, 0, 0, 0.8);
}

.zt-course-img-text .zt-course-img .c-price-tag {
    top: 10px;
    color: #fff;
    right: 10px;
    z-index: 1;
    font-weight: 700;
    padding: 2px 15px;
    position: absolute;
    border-radius: 20px;
    background-color: #ff5520;
}

.zt-course-img-text .zt-course-img .c-hover-icon {
    left: 0;
    top: 40%;
    right: 0;
    opacity: 0;
    z-index: 1;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    line-height: 40px;
    visibility: hidden;
    text-align: center;
    position: absolute;
    border-radius: 100%;
    display: inline-block;
    transform: translateY(-50%);
    transition: 0.3s all ease-in-out;
    background-color: rgba(255, 255, 255, 0.8);
}

.zt-course-img-text .zt-course-img .c-hover-icon i {
    font-size: 14px;
    transition: 0.3s all ease-in-out;
}

.zt-course-img-text .zt-course-img .c-hover-icon:hover i {
    transform: rotate(130deg);
}

.zt-course-img-text .zt-course-text {
    margin-top: 10px;
}

.zt-course-img-text .zt-course-text .zt-course-meta {
    margin-bottom: 12px;
}

.zt-course-img-text .zt-course-text .zt-course-meta a {
    font-size: 14px;
    margin-right: 35px;
}

.zt-course-img-text .zt-course-text .zt-course-meta a i {
    margin-right: 5px;
    color: #ff5520;
}

.zt-course-img-text .zt-course-text .zt-course-meta a:last-child {
    margin-right: 0;
}

.zt-course-img-text .zt-course-text .zt-course-tilte-head {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.zt-course-img-text .zt-course-text .zt-course-tilte-head h3 {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.556;
    transition: 0.3s all ease-in-out;
}

.zt-course-img-text .zt-course-text .zt-course-tilte-head h3:hover {
    color: #ff5520;
}

.zt-course-img-text .zt-course-text .zt-course-tilte-head ul {
    display: inline-block;
}

.zt-course-img-text .zt-course-text .zt-course-tilte-head ul li {
    color: #ffc601;
    font-size: 13px;
    margin-right: 2px;
}

.zt-course-img-text .zt-course-text .zt-course-tilte-head span {
    font-size: 14px;
}

.zt-course-img-text .zt-course-text .zt-c-mentor-text h4 {
    color: #000;
    font-size: 15px;
    font-weight: 700;
    display: inline-block;
}

.zt-course-img-text .zt-course-text .zt-c-mentor-text span {
    font-size: 14px;
    margin-left: 10px;
}

.zt-course-img-text .zt-course-text .zt-c-mentor-img {
    width: 35px;
    height: 35px;
    overflow: hidden;
    margin-right: 10px;
    border-radius: 100%;
}

.zt-course-img-text:hover .zt-course-img:before {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
}

.zt-course-img-text:hover .zt-course-img img {
    transform: scale(1.2);
}

.zt-course-img-text:hover .zt-course-img .c-hover-icon {
    top: 50%;
    opacity: 1;
    visibility: visible;
}

/*Popular course  area*/
/*-----------------------------*/
.zt-popular-course-section {
    padding: 105px 0px 50px;
    background-color: #f7f7f7;
}

.zt-popular-course-section .zt-popular-course-content {
    margin-top: 25px;
}

.zt-popular-course-section .zt-section-title .title-watermark {
    color: #fff;
    opacity: 0.7;
}

.zt-popular-course-section .zt-popular-course-btn {
    color: #fff;
    height: 50px;
    width: 170px;
    margin: 0 auto;
    font-size: 15px;
    font-weight: 700;
    line-height: 50px;
    overflow: hidden;
    border-radius: 40px;
    background-color: #ff5520;
}

.zt-popular-course-section .zt-popular-course-btn:after {
    background-color: #ff5520;
}

.zt-popular-course-section .zt-popular-course-btn i {
    margin-left: 5px;
}

.zt-popular-course-section .zt-popular-course-btn:hover i {
    animation: toBottomFromTop 0.3s forwards;
}

.zt-popular-course-img-text {
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
    background-color: #fff;
    transition: 0.3s all ease-in-out;
    box-shadow: 0px 6px 38px 0px rgba(0, 0, 0, 0.04);
}

.zt-popular-course-img-text .zt-popular-course-img {
    border-radius: 5px;
    overflow: hidden;
}

.zt-popular-course-img-text .zt-popular-course-img img {
    transition: 0.5s all ease-in-out;
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.zt-popular-course-img-text .popular-course-fee {
    margin: 10px 0px;
    display: none;
}

.zt-popular-course-img-text .popular-course-fee .course-fee-amount {
    float: right;
}

.zt-popular-course-img-text .popular-course-fee span {
    margin-top: 10px;
    display: inline-block;
}

.zt-popular-course-img-text .popular-course-fee span,
.zt-popular-course-img-text .popular-course-fee del {
    color: #555555;
    font-size: 18px;
    margin-right: 12px;
}

.zt-popular-course-img-text .popular-course-fee strong {
    color: #000;
    font-size: 24px;
    font-weight: 700;
}

.zt-popular-course-img-text .popular-course-fee strong i {
    font-size: 20px;
    margin-right: 3px;
}

.zt-popular-course-img-text .popular-course-fee del i {
    font-size: 15px;
    margin-right: 3px;
}

.zt-popular-course-img-text .popular-course-title {
    padding-bottom: 15px;
    padding-top: 15px;
    border-bottom: 2px solid #e9e9e9;
}

.zt-popular-course-img-text .popular-course-title h3 {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.444;
    padding-bottom: 8px;
    transition: 0.3s all ease-in-out;
}

.zt-popular-course-img-text .popular-course-title .zt-course-meta a {
    font-size: 14px;
    margin-right: 30px;
}

.zt-popular-course-img-text .popular-course-title .zt-course-meta a:last-child {
    margin-right: 0;
    float: right;
}

.zt-popular-course-img-text .popular-course-title .zt-course-meta a i {
    margin-right: 5px;
    color: #ff5520;
}

.zt-popular-course-img-text .popular-course-rate ul {
    margin-right: 5px;
    display: inline-block;
}

.zt-popular-course-img-text .popular-course-rate ul li {
    color: #ffc601;
    font-size: 13px;
}

.zt-popular-course-img-text .popular-course-rate span {
    font-size: 14px;
}

.zt-popular-course-img-text .popular-course-rate .p-rate-vote {
    margin-top: 3px;
}

.zt-popular-course-img-text .popular-course-rate .p-rate-vote a {
    font-size: 14px;
}

.zt-popular-course-img-text .popular-course-rate .p-rate-vote a i {
    color: #ff5520;
    margin-right: 5px;
}

.zt-popular-course-img-text .popular-course-rate .p-course-btn {
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 100%;
    background-color: #ff5520;
    transition: 0.3s all ease-in-out;
}

.zt-popular-course-img-text .popular-course-rate .p-course-btn a {
    color: #fff;
    width: 100%;
    display: block;
    font-size: 14px;
}

.zt-popular-course-img-text:hover {
    box-shadow: -3.285px 20.741px 51px 0px rgba(0, 0, 47, 0.2);
}

.zt-popular-course-img-text:hover .popular-course-title h3 {
    color: #ff5520;
}

.zt-popular-course-img-text:hover .p-course-btn {
    background-color: #ff5520;
}

.zt-popular-course-img-text:hover .p-course-btn i {
    animation: toBottomFromTop 0.3s forwards;
}

.zt-popular-course-img-text:hover .zt-popular-course-img img {
    transform: scale(1.1);
}

/*Upcoming Batch Page Course Grid Style 2  area*/
/*-----------------------------*/
.upcoming-batch-page-section {
    padding: 50px 0;
    background-color: #ffffff;
}

.upcoming-batch-card,
.zt-course-card {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 15px;
    background-color: #ffffff;
    transition: 0.3s all ease-in-out;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.06);
}

.upcoming-batch-card .upcoming-batch-top,
.zt-course-card .zt-course-card-top {
    display: block;
    width: 100%;
    position: relative;
}

.upcoming-batch-card .course-title,
.zt-course-card .course-title {
    font-size: 20px;
    color: #ff5520;
    line-height: 30px;
}

.upcoming-batch-card ul.course-tags,
.zt-course-card ul.course-tags {
    list-style-type: none;
    padding: 0;
    display: inline-block;
    margin-bottom: 5px;
}

.upcoming-batch-card ul.course-tags li,
.zt-course-card ul.course-tags li {
    display: inline-block;
    padding: 5px;
    margin-bottom: 5px;
    border: 1px solid #ff5520;
    border-radius: 50px;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
}

.upcoming-batch-card .batch-date,
.upcoming-batch-grid-list .upcoming-batch-card .batch-time {
    display: flex;
    width: 100%;
    position: relative;
    align-items: center;
}

.upcoming-batch-card .batch-date {
    margin-bottom: 5px;
}

.upcoming-batch-card .batch-date sup {
    margin-right: 5px;
}

.upcoming-batch-card .batch-date i,
.upcoming-batch-card .batch-time i {
    color: #ff5520;
    margin-right: 5px;
}

.upcoming-batch-card .upcoming-batch-bottom,
.zt-course-card .zt-course-card-bottom {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid #e9e9e9;
}

.upcoming-batch-card p.batch-duration,
.zt-course-card p.course-duration {
    margin: 0;
    font-weight: 500;
}

.upcoming-batch-card a.btn-batch-details,
.zt-course-card a.btn-course-details {
    display: flex;
    color: #ff5520;
    align-items: center;
    transition: 0.3s all ease-in-out;
}

.upcoming-batch-card a.btn-batch-details i,
.zt-course-card a.btn-course-details i {
    margin-left: 5px;
    transition: 0.3s all ease-in-out;
}

.upcoming-batch-card a.btn-batch-details:hover i,
.zt-course-card a.btn-course-details:hover i {
    margin-left: 10px;
    margin-right: 10px;
}

.upcoming-batch-carousel .upcoming-batch-card {
    margin: 10px 0;
}

.upcoming-batch-carousel {
    position: relative;
}

.upcoming-batch-carousel .owl-nav .owl-prev,
.upcoming-batch-carousel .owl-nav .owl-next {
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: #ff5520;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s all ease-in-out;
}

.upcoming-batch-carousel:hover .owl-nav .owl-prev,
.upcoming-batch-carousel:hover .owl-nav .owl-next {
    opacity: 1;
}

.upcoming-batch-carousel .owl-nav .owl-prev {
    left: 0;
}

.upcoming-batch-carousel .owl-nav .owl-next {
    right: 0;
}

/*Project Item  area*/
/*-----------------------------*/
.project-item,
.project-item a,
.project-item .project-item-content {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.project-item {
    background-color: #ffffff;
    border-radius: 8px;
    transition: 0.4s all ease-in-out;
    box-shadow: 0px 6px 38px 0px rgba(0, 0, 0, 0.04);
}

.project-item .project-item-img {
    border-radius: 8px;
    overflow: hidden;
}

.project-item .project-item-img img {
    display: block;
    margin: 0 auto;
    transition: 0.5s all ease-in-out;
    border-radius: 8px;
}

.project-item:hover .project-item-img img {
    transform: scale(1.2);
}

.project-item .project-item-content {
    padding: 10px;
    text-align: center;
}

.project-item .project-item-content .project-item-title {
    margin-bottom: 0;
    color: #ff5520;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
}

/*Course Page  area*/
/*-----------------------------*/
.course-page-course-section {
    padding: 50px 0px 120px 0;
    background-color: #f2f2f4;
    margin-bottom: -65px;
}

.course-page-course-content-top {
    margin-bottom: 70px;
}

.course-page-course-content-top .course-grid-top-bar {
    height: 60px;
    line-height: 60px;
    border-radius: 3px;
    padding-left: 40px;
    background-color: #fff;
    box-shadow: 0px 0px 35px 0px rgba(12, 12, 12, 0.08);
}

.course-page-course-content-top .course-grid-top-bar .course-grid-showing-result .zt-course-grid-list {
    margin-right: 40px;
}

.course-page-course-content-top .course-grid-top-bar .course-grid-showing-result .zt-course-grid-list a {
    color: #010101;
    font-size: 17px;
    position: relative;
    padding-right: 45px;
    transition: 0.3s all ease-in-out;
}

.course-page-course-content-top .course-grid-top-bar .course-grid-showing-result .zt-course-grid-list a:hover {
    color: #ff5520;
}

.course-page-course-content-top .course-grid-top-bar .course-grid-showing-result .zt-course-grid-list a:after {
    top: 0px;
    right: 20px;
    content: "";
    width: 2px;
    height: 20px;
    position: absolute;
    background-color: #d7d8da;
}

.course-page-course-content-top .course-grid-top-bar .course-grid-showing-result .zt-course-grid-list a:last-child {
    padding-right: 0;
}

.course-page-course-content-top .course-grid-top-bar .course-grid-showing-result .zt-course-grid-list a:last-child:after {
    display: none;
}

.course-page-course-content-top .course-grid-top-bar .course-grid-showing-result .show-result-text {
    font-size: 17px;
}

.course-page-course-content-top .course-grid-top-bar .zt-course-search input {
    width: 100%;
    height: 100%;
    border: none;
}

.course-page-course-content-top .course-grid-top-bar .zt-course-search button {
    top: 0;
    right: 0;
    color: #fff;
    border: none;
    height: 100%;
    width: 160px;
    font-weight: 700;
    position: absolute;
    background-color: #f4511f;
}

.course-page-courses-item .zt-popular-course-img-text .zt-popular-course-text h3 {
    font-size: 22px;
}

.zt-course-pagination {
    margin-top: 15px;
}

.zt-course-pagination ul li a {
    color: #000;
    width: 45px;
    height: 45px;
    font-size: 18px;
    font-weight: 700;
    margin: 0px 5px;
    line-height: 45px;
    display: inline-block;
    font-family: "Fira Sans", sans-serif;
    background-color: #ffffff;
    transition: 0.4s all ease-in-out;
}

.zt-course-pagination ul li a:hover {
    color: #fff;
    background-color: #ff5520;
}

@media screen and (max-width: 767px) {
    .course-page-courses-item .zt-popular-course-img-text {
        max-width: 370px;
    }

    .course-page-course-content-top {
        margin-bottom: 20px;
    }

    .course-page-course-content-top .course-grid-top-bar {
        margin-bottom: 30px;
        padding-left: 20px;
    }
}

@media screen and (max-width: 480px) {
    .course-page-course-content-top .course-grid-top-bar .zt-course-search button {
        width: 120px;
    }

    .course-page-course-content-top .course-grid-top-bar .course-grid-showing-result .zt-course-grid-list {
        margin-right: 20px;
    }

    .course-page-course-section {
        padding: 50px 0px;
    }
}

/*Course Details Page  area*/
/*-----------------------------*/
.course-details-section {
    padding: 50px 0px;
    background-color: #f2f2f4;
    overflow: unset;
}

.zt-inner-onepage-navigation {
    border-radius: 500px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
    padding: 7px;
    margin-top: 30px;
}

.zt-inner-onepage-navigation.sticky-top {
    top: 65px;
    z-index: 9;
}

.zt-inner-onepage-navigation .mainmenu-nav .mainmenu {
    display: flex;
    padding: 0;
    justify-content: space-between;
    margin: -3px;
    flex-wrap: wrap;
}

.zt-inner-onepage-navigation .mainmenu-nav .mainmenu li {
    position: relative;
    margin: 3px;
    flex-grow: 1;
    text-align: center;
    list-style-type: none;
}

.zt-inner-onepage-navigation .mainmenu-nav .mainmenu li a {
    margin: 0;
    position: relative;
    display: block;
    color: #192335;
    z-index: 2;
    padding: 10px 25px;
    border-radius: 500px;
}

.zt-inner-onepage-navigation .mainmenu-nav .mainmenu li.current a,
.zt-inner-onepage-navigation .mainmenu-nav .mainmenu li:hover a {
    color: #ffffff;
}

.zt-inner-onepage-navigation .mainmenu-nav .mainmenu li a::after {
    position: absolute;
    content: "";
    left: 0;
    background: rgba(0, 0, 0, 0.04);
    width: 100%;
    height: 100%;
    bottom: 0;
    opacity: 1;
    transition: 0.4s;
    z-index: -1;
    border-radius: 500px;
}

.zt-inner-onepage-navigation .mainmenu-nav .mainmenu li.current a::after,
.zt-inner-onepage-navigation .mainmenu-nav .mainmenu li:hover a::after {
    width: 100%;
    opacity: 1;
    background: #ff5520;
}

.course-details-content-wrapper .zt-course-feature-box {
    display: block;
    width: 100%;
    position: relative;
    border-radius: 6px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
    padding: 30px;
    margin-top: 30px;
}

.course-details-content-wrapper .zt-course-feature-box p {
    text-align: justify;
}

.zt-course-feature-box .section-title h4,
.zt-course-feature-box .section-title.title-btn-section {
    margin-bottom: 24px;
    font-size: 22px;
    color: #000000;
    padding-bottom: 20px;
    border-bottom: 2px solid #e6e3f14f;
}

.zt-course-feature-box .section-title.title-btn-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.zt-course-feature-box .section-title.title-btn-section h4 {
    border: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.zt-course-feature-box .section-title.title-btn-section a {
    font-size: 16px;
}

.course-details-content-wrapper .zt-course-feature-box .voucher-promo {
    margin-bottom: 20px;
}

.course-details-content-wrapper .zt-course-feature-box .voucher-promo h4 {
    font-size: 20px;
    margin: 0;
}

.course-details-content-wrapper .zt-course-feature-box .voucher-promo h4 .txt-primary {
    color: #ff5520;
}

.course-details-content-wrapper .zt-course-feature-box .voucher-promo h4 img {
    margin-bottom: 10px;
}

.zt-course-feature-box .zt-cd-cur-accordion-body h4 {
    font-size: 20px;
    margin: 10px 0;
}

.zt-course-feature-box ul {
    padding-left: 25px;
}

.zt-course-feature-box .btn-section {
    display: block;
    width: 100%;
    margin: 10px auto;
}

.zt-course-feature-box .btn-section a {
    display: inline-block;
    width: fit-content;
}

.course-details-tab-area {
    background-color: #fff;
}

.course-details-tab-wrapper {
    padding: 40px 40px;
}

.course-details-tab-btn {
    margin-bottom: 30px;
    background-color: #ffffff;
}

.course-details-tab-btn.sticky-top {
    top: 80px;
    z-index: 9;
}

.course-details-tab-btn .nav-tabs .nav-item.show .nav-link,
.course-details-tab-btn .nav-tabs .nav-link.active,
.course-details-tab-btn .nav-tabs,
.course-details-tab-btn .nav-tabs .nav-link {
    border: none;
    border-radius: 0;
}

.course-details-tab-btn .nav-tabs .nav-item {
    margin: 3px;
}

.course-details-tab-btn .nav-tabs .nav-link {
    padding: 10px 25px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.04);
    transition: 0.4s;
    border-radius: 500px;
}

.course-details-tab-btn .nav-tabs .nav-link.active,
.course-details-tab-btn .nav-tabs .nav-link:hover {
    background: #ff5520;
    color: #fff;
    transition: 0.4s;
    border-radius: 500px;
}

.course-details-tab-btn ul li a {
    color: #000000;
    font-size: 18px;
    font-weight: 700;
}

.course-details-tab-content-wrap .tab-content ul {
    padding-left: 25px;
}

.certification-partner {
    display: block;
    width: 100%;
    position: relative;
}

.certification-partner img {
    margin-bottom: 15px;
    margin-right: 10px;
}

.certification-partner span.txt {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: #ff5520;
}

.c-overview-title {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 10px;
}

.overview-feature-list {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
}

.course-details-overview-feature {
    margin-top: 40px;
}

.overview-feature-icon-text {
    width: 50%;
    float: left;
    margin-bottom: 50px;
}

.overview-feature-icon-text .overview-feature-icon-title {
    margin-bottom: 10px;
}

.overview-feature-icon-text .overview-feature-icon-title h3 {
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    display: inline-block;
}

.overview-feature-icon-text .overview-feature-icon-title img,
.overview-feature-icon-text .overview-feature-icon-title i {
    margin-right: 10px;
}

.overview-feature-icon-text .overview-feature-text {
    overflow: hidden;
}

.overview-feature-icon-text .overview-feature-text p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 330px;
}

.overview-feature-icon-text .overview-feature-text a {
    color: #000;
    font-weight: 700;
    text-decoration: underline;
}

.cd-curriculam-time-lesson span {
    font-weight: 500;
    margin-left: 30px;
}

.zt-cd-cur-accordion {
    margin-bottom: 10px;
}

.zt-cd-cur-accordion .zt-cd-cur-accordion-header button {
    width: 100%;
    border: none;
    position: relative;
    padding: 10px 10px 10px 50px;
    background-color: #f2f2f4;
    text-align: left;
}

.zt-cd-cur-accordion .zt-cd-cur-accordion-header button h3 {
    color: #000;
    float: left;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
}

.zt-cd-cur-accordion .zt-cd-cur-accordion-header button:after {
    top: 50%;
    left: 15px;
    color: #000;
    font-size: 30px;
    content: "+";
    position: absolute;
    transform: translateY(-50%);
}

.zt-cd-cur-accordion .zt-cd-cur-accordion-header button.collapsed:after {
    top: 50%;
    content: "-";
    font-size: 30px;
}

.zt-cd-cur-accordion .zt-cd-cur-accordion-body,
.accordion-item.zt-cd-cur-accordion .zt-cd-cur-accordion-body {
    padding: 20px 30px;
    border: 1px solid #f2f2f4;
}

.zt-cd-cur-accordion .zt-cd-cur-accordion-body li {
    width: 100%;
    border-bottom: 1px solid #dadada;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.zt-cd-cur-accordion .zt-cd-cur-accordion-body li i {
    font-size: 13px;
    margin-right: 10px;
}

.zt-cd-cur-accordion .zt-cd-cur-accordion-body li span {
    float: right;
}

.zt-cd-cur-accordion .zt-cd-cur-accordion-body li .acc-title {
    color: #ff5520;
    margin-right: 10px;
}

.zt-cd-cur-accordion .zt-cd-cur-accordion-body li:last-child {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.zt-cd-accordion-style2 .zt-cd-cur-accordion .zt-cd-cur-accordion-body li {
    border: 0;
    padding: 0;
    margin-bottom: 5px;
}

.cd-ins-btn {
    height: 48px;
    width: 150px;
    line-height: 44px;
    border-radius: 30px;
    border: 2px solid #ff5520;
}

.cd-ins-btn a {
    color: #000;
    width: 100%;
    display: block;
    font-weight: 700;
}

.cd-course-instructor-img-text {
    margin-top: 20px;
}

.cd-course-instructor-img-text .cd-course-instructor-img {
    width: 120px;
    height: 120px;
    overflow: hidden;
    margin-right: 25px;
    border-radius: 100%;
}

.cd-course-instructor-img-text .cd-course-instructor-text {
    padding-top: 15px;
}

.cd-course-instructor-img-text .cd-course-instructor-text h3 {
    color: #000;
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 10px;
}

.cd-course-instructor-img-text .cd-course-instructor-text .cd-course-instructor-rate {
    margin-bottom: 10px;
}

.cd-course-instructor-img-text .cd-course-instructor-text .cd-course-instructor-rate ul {
    margin-right: 10px;
}

.cd-course-instructor-img-text .cd-course-instructor-text .cd-course-instructor-rate ul li {
    color: #ebc90a;
}

.cd-course-instructor-img-text .cd-course-instructor-text .cd-course-instructor-rate ul li.unchecked {
    color: #d3d3d3;
}

.cd-course-instructor-img-text .cd-course-instructor-text .cd-course-instructor-rate .cd-ins-review-rate {
    color: #000;
    font-weight: 500;
    margin-right: 10px;
}

.cd-course-instructor-img-text .cd-course-instructor-text .cd-course-instructor-rate .cd-ins-total-review {
    font-size: 14px;
}

.cd-course-instructor-img-text .cd-course-instructor-text .cd-ins-course-student span {
    margin-right: 20px;
}

.cd-course-instructor-img-text .cd-course-instructor-text .cd-ins-course-student span i {
    color: #ff5520;
    margin-right: 6px;
}

.cd-ins-details {
    margin-top: 25px;
}

.cd-ins-details p {
    margin-bottom: 30px;
}

.cd-course-user-comment {
    margin-top: 15px;
}

.cd-course-review-comment {
    margin-bottom: 40px;
}

.cd-course-review-comment .cd-course-review-img {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 8px;
    margin-right: 20px;
}

.cd-course-review-comment .cd-course-review-text {
    overflow: hidden;
}

.cd-course-review-comment .cd-course-review-author-rattting .cd-course-review-author {
    margin-bottom: 15px;
}

.cd-course-review-comment .cd-course-review-author-rattting .cd-course-review-author h3 {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 5px;
}

.cd-course-review-comment .cd-course-review-author-rattting .cd-course-review-author span {
    font-size: 14px;
}

.cd-course-review-comment .cd-course-review-author-rattting .cd-course-review-rate ul {
    margin-right: 10px;
}

.cd-course-review-comment .cd-course-review-author-rattting .cd-course-review-rate ul li {
    color: #ebc90a;
}

.cd-course-review-comment .cd-course-review-author-rattting .cd-course-review-rate ul li.unchecked {
    color: #d3d3d3;
}

.cd-course-review-comment .cd-course-review-author-rattting .cd-course-review-rate .cd-ins-review-rate {
    color: #000;
    font-weight: 500;
    margin-right: 10px;
}

.cd-course-review-comment .cd-course-review-author-rattting .cd-course-review-rate .cd-ins-total-review {
    font-size: 14px;
}

.cd-course-review-comment p {
    margin-bottom: 25px;
}

.cd-course-review-comment .cd-reply-btn {
    color: #fff;
    height: 40px;
    width: 100px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 30px;
    line-height: 40px;
    display: inline-block;
    background-color: #ff5520;
}

.cd-review-form {
    padding-top: 100px;
    position: relative;
}

.cd-review-form:before {
    top: 0;
    left: -45px;
    height: 40px;
    width: 111%;
    content: "";
    position: absolute;
    background-color: #f2f2f4;
}

.cd-review-form .cd-comment-input {
    flex-wrap: wrap;
    margin: 0px -7px;
}

.cd-review-form .cd-comment-input-field {
    padding: 0px 7px;
}

.cd-review-form input {
    width: 254px;
    height: 45px;
    border: none;
    padding-left: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    background-color: #efeff0;
}

.cd-review-form textarea {
    width: 100%;
    border: none;
    height: 165px;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    background-color: #efeff0;
}

.cd-review-form button {
    color: #fff;
    width: 170px;
    height: 50px;
    border: none;
    font-weight: 700;
    border-radius: 40px;
    background-color: #ff5520;
}

.cd-review-form button i {
    margin-left: 5px;
}

.study-material-list,
.study-material-item,
.study-material-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.study-material-item {
    background-color: #ffffff;
    padding: 5px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.study-material-item img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

.study-material-item .study-material-content {
    display: block;
    padding: 5px 0;
    background-color: #ffffff;
    width: 100%;
}

.study-material-item .study-material-content h3 {
    font-size: 17px;
    margin-bottom: 0;
    text-align: center;
}

.notice-bar {
    padding: 10px;
    display: block;
    width: 100%;
    position: relative;
    border-left: 2px solid #ff5520;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.04);
}

.notice-bar p {
    font-size: 14px;
    margin-bottom: 0;
}

.notice-bar a,
.notice-bar .txt-danger {
    color: #ff5520;
}

.txt-danger,
.txt-primary {
    color: #ff5520 !important;
}

.notice-bar ul li {
    font-size: 14px;
}

.cd-offline-wrap .offline-download-btn {
    color: #fff;
    font-weight: 700;
    margin-top: 30px;
    padding: 15px 30px;
    border-radius: 40px;
    display: inline-block;
    background-color: #ff5520;
}

.course-details-widget.course-sidebar {
    margin-top: -500px;
    z-index: 9;
    top: 60px;
    box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
}

@media(max-width:991px) {
    .course-details-widget.course-sidebar {
        margin-top: 0;
        top: unset;
    }
}

.course-details-widget.style-two.course-sidebar {
    border-radius: 6px;
    background: linear-gradient(-145deg, #fc6404, #0464c8) !important;
    box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
    padding: 30px;
}

.course-details-widget.style-two.course-sidebar::before {
    content: "";
    z-index: -1;
    top: 3px;
    left: 3px;
    position: absolute;
    background: #fff;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border-radius: 6px;
}

.course-details-widget.style-two.course-sidebar .cd-video-widget::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 85%;
    display: block;
    z-index: 1;
    content: "";
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), black 100%);
    transition: opacity 0.65s cubic-bezier(0.05, 0.2, 0.1, 1);
    cursor: pointer;
    border-radius: 6px;
}

.course-details-widget.style-two.course-sidebar .cd-video-widget a {
    z-index: 2;
    width: 80px;
    height: 80px;
    border: 0;
    transition: all 1s cubic-bezier(0, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-details-widget.style-two.course-sidebar .cd-video-widget a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 50%;
    border: 1.5px solid #ffffff;
    -webkit-animation: ripple 2s linear infinite;
    animation: ripple 2s linear infinite;
}

.course-details-widget.style-two.course-sidebar .cd-video-widget a::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 50%;
    border: 1.5px solid #ffffff;
    -webkit-animation: ripple 2s linear 1s infinite;
    animation: ripple 2s linear 1s infinite;
}

@keyframes ripple {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 1;
    }

    75% {
        -webkit-transform: scale(1.9);
        transform: scale(1.9);
        opacity: 0.50;
    }

    100% {
        -webkit-transform: scale(2.3);
        transform: scale(2.3);
        opacity: 0;
    }
}

.style-two.course-sidebar .cd-video-widget .play-view-text {
    position: absolute;
    bottom: 20px;
    text-align: center;
    width: 100%;
    z-index: 2;
    color: #ffffff;
    text-transform: capitalize;
}

.course-details-widget.style-two.course-sidebar .cd-course-table-widget {
    padding: 15px 0;
    padding-bottom: 0;
}

.course-details-widget.style-two.course-sidebar .cd-course-table-widget .cd-course-price a {
    width: auto;
    height: auto;
}

.course-widget-wrap {
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 40px;
    background-color: #fff;
}

.course-details-widget.course-sidebar .course-widget-wrap {
    margin-bottom: 0;
}

.course-widget-wrap .cd-video-widget img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.course-widget-wrap .cd-widget-title {
    color: #000;
    font-size: 20px;
    font-weight: 700;
}

.course-widget-wrap .cd-video-widget a {
    top: 50%;
    left: 0;
    right: 0;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    color: #ff5520;
    position: absolute;
    line-height: 50px;
    border-radius: 100%;
    background-color: #fff;
    transform: translateY(-50%);
}

.course-widget-wrap .cd-course-table-widget {
    padding: 35px 30px;
}

.course-widget-wrap .cd-course-table-widget .course-table-item {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eef1fe;
}

.course-widget-wrap .cd-course-table-widget .course-table-item:last-child {
    border-bottom: none;
}

.course-widget-wrap .cd-course-table-widget .course-table-item .cd-table-title,
.course-widget-wrap .cd-course-table-widget .course-table-item .cd-table-valur {
    color: #000;
}

.course-widget-wrap .cd-course-table-widget .course-table-item .cd-table-title i,
.course-widget-wrap .cd-course-table-widget .course-table-item .cd-table-valur i {
    color: #ff5520;
    margin-right: 7px;
}

.course-widget-wrap .cd-course-table-widget .cd-course-price span {
    float: left;
    color: #000;
    font-size: 24px;
    font-weight: 700;
}

.course-widget-wrap .cd-course-table-widget .cd-course-price span strong {
    color: #ff5520;
}

.course-widget-wrap .cd-course-table-widget .cd-course-price a {
    color: #fff;
    width: auto;
    height: 30px;
    float: right;
    font-size: 15px;
    margin-top: 5px;
    font-weight: 700;
    line-height: 20px;
    padding: 5px 10px;
    margin-left: 20px;
    text-align: center;
    display: inline-block;
    background-color: #ff5520;
}

.course-widget-wrap .cd-course-table-widget .cd-course-price .ecsp {
    float: right;
    min-width: unset !important;
    max-width: none !important;
}

.course-widget-wrap .cd-course-table-widget .cd-course-price .ecsp form div {
    margin: 0 !important;
}

.course-widget-wrap .cd-course-table-widget .cd-course-price button.ecwid-btn {
    color: #fff !important;
    min-width: unset !important;
    width: fit-content !important;
    height: 30px !important;
    float: right !important;
    font-size: 15px !important;
    margin-top: 5px !important;
    font-weight: 700 !important;
    line-height: 20px !important;
    padding: 5px 10px !important;
    margin-left: 20px !important;
    text-align: center !important;
    display: inline-block !important;
    background-color: #ff5520 !important;
    border-radius: 0 !important;
    margin: 0 !important;
}

.course-widget-wrap .cd-course-table-widget .cd-course-price button.ecwid-btn:focus {
    border: 0 !important;
}

.course-widget-wrap .cd-course-table-widget .cd-course-price button.ecwid-btn span {
    color: #fff !important;
    font-size: 15px !important;
    text-transform: uppercase;
}

.course-widget-wrap .cd-course-table-widget .cd-course-price .ecsp {
    padding-bottom: 0 !important;
}

.course-widget-wrap .cd-course-table-widget .cd-course-price div[customprop='addtobag'] {
    margin-bottom: 0 !important;
}

.course-widget-wrap .cd-course-table-widget .note-box p {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    text-align: justify;
    margin-top: 10px;
}

.course-widget-wrap .cd-course-table-widget .note-box p:not(:last-child) {
    margin-bottom: 5px;
}

.course-widget-wrap .cd-course-news-widget {
    padding: 35px 30px;
}

.course-widget-wrap .cd-course-news-item {
    margin-top: 28px;
}

.cd-course-news-img-text {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eef1fe;
}

.cd-course-news-img-text:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cd-course-news-img-text .cd-course-news-img {
    width: 65px;
    height: 65px;
    overflow: hidden;
    margin-right: 15px;
    border-radius: 100%;
}

.cd-course-news-img-text .cd-course-news-text {
    padding-top: 3px;
    overflow: hidden;
}

.cd-course-news-img-text .cd-course-news-text a {
    color: #000;
    display: block;
    font-weight: 700;
    line-height: 1.375;
    padding-bottom: 3px;
}

.cd-course-news-img-text .cd-course-news-text span {
    display: block;
    color: #ff5520;
    font-size: 14px;
    font-weight: 700;
}

@media screen and (max-width: 1180px) {
    .course-details-tab-wrapper {
        padding: 40px 15px;
    }

    .course-details-tab-btn .nav-tabs .nav-link {
        padding: 5px 10px;
    }

    .course-widget-wrap .cd-course-table-widget,
    .course-widget-wrap .cd-course-news-widget {
        padding: 35px 15px;
    }
}

@media screen and (max-width: 1024px) {
    .course-widget-wrap .cd-course-table-widget .cd-course-price span {
        font-size: 20px;
    }
}

@media screen and (max-width: 991px) {
    .cd-video-widget {
        margin: 0 auto;
    }
}

@media screen and (max-width: 680px) {
    .overview-feature-icon-text {
        width: 100%;
    }

    .zt-cd-cur-accordion .zt-cd-cur-accordion-header button h3 {
        font-size: 16px;
    }

    .cd-curriculam-time-lesson span {
        margin-left: 10px;
    }

    .zt-cd-cur-accordion .zt-cd-cur-accordion-header button:after {
        display: none;
    }

    .zt-cd-cur-accordion .zt-cd-cur-accordion-header button {
        padding: 10px 10px 10px 10px;
    }

    .cd-review-form .cd-comment-input {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 480px) {
    .zt-cd-cur-accordion .zt-cd-cur-accordion-header button {
        text-align: left;
    }

    .cd-curriculam-time-lesson {
        float: none !important;
        display: inline-block;
    }

    .zt-cd-cur-accordion .zt-cd-cur-accordion-header button h3 {
        float: none;
    }

    .cd-curriculam-time-lesson span {
        margin-left: 0px;
        margin-right: 5px;
    }

    .zt-cd-cur-accordion .zt-cd-cur-accordion-body li span {
        float: none;
        display: block;
    }

    .cd-ins-btn {
        display: none;
    }

    .cd-course-instructor-img-text .cd-course-instructor-text .cd-course-instructor-rate {
        flex-wrap: wrap;
    }

    .cd-course-instructor-img-text .cd-course-instructor-text {
        overflow: hidden;
    }

    .cd-course-review-rate {
        float: left !important;
        margin-bottom: 15px;
    }

    .cd-course-review-comment .cd-course-review-author-rattting .cd-course-review-author {
        margin-bottom: 5px;
    }

    .cd-review-form input,
    .cd-review-form .cd-comment-input-field {
        width: 100%;
    }

    .course-details-tab-btn .nav-tabs .nav-link {
        padding: 10px 15px;
        font-size: 14px;
    }

    .cd-course-instructor-img-text .cd-course-instructor-img {
        width: 90px;
        height: 90px;
    }

    .zt-cd-cur-accordion .zt-cd-cur-accordion-body {
        padding: 15px;
    }
}

.zt-course-section-3 {
    padding: 50px 0px 30px;
    background-color: #f2f2f4;
}

.zt-course-content-3 {
    margin-top: 40px;
}

.course-schedule-wrapper {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    border-top: 3px solid #ff5520;
    background-color: #ffffff;
    border-radius: 4px 4px 0 0;
    box-shadow: 0 2px 10px rgb(0 0 0 / 10%);
}

.course-schedule-wrapper .course-schedule-wrapper-heading {
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    padding: 15px 20px;
    margin-bottom: 0;
    border-bottom: 1px solid #e0e0e0;
    color: #000;
    display: none;
}

.course-schedule-wrapper .course-batch {
    position: relative;
    width: 100%;
    height: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    border-top: 3px solid rgba(0, 74, 147, 255);
    background-color: #ffffff;
}

.course-schedule-wrapper .course-batch p {
    text-align: center;
}

.course-schedule-wrapper .course-batch>div {
    padding: 0 10px;
}

.course-schedule-wrapper .course-batch div:not(:last-child) {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.course-schedule-wrapper .course-batch div:not(:first-child) {
    margin-top: 10px;
}

.course-schedule-wrapper .course-batch div:first-child {
    border-bottom: 1px solid rgba(0, 74, 147, 255);
    padding-top: 10px;
}

.course-schedule-wrapper .course-batch div:last-child {
    padding-bottom: 10px;
}

.course-schedule-wrapper .course-batch div {
    text-align: center;
}

.course-schedule-wrapper .course-batch div.course-batch-date {
    background-color: #ff5520;
}

.course-schedule-wrapper .course-batch div.course-batch-date p {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.course-schedule-wrapper .course-batch div i {
    color: #ff5520;
    display: none;
}

.course-schedule-wrapper .course-batch div p {
    margin-bottom: 0;
    line-height: 24px;
    color: #192335;
    text-align:center;
}

.course-schedule-wrapper .course-batch div p.hrs {
    font-weight: 500;
}

.course-schedule-wrapper .course-fee {
    text-align: center;
}

.course-schedule-wrapper .course-fee .origonal-price {
    font-size: 20px;
    text-decoration: line-through;
}

.course-schedule-wrapper .course-fee .discounted-price {
    font-size: 30px;
}

.course-schedule-wrapper .btn-enroll {
    display: block;
    width: fit-content;
    margin: 20px auto;
}

.related-courses {
    padding-top: 30px;
}

.related-courses h3.title {
    margin-bottom: 0;
}

.related-courses .zt-course-content-3 {
    margin-top: 20px;
}

.related-courses #zt-department-slider-id .owl-nav {
    top: -60px;
}

.related-courses #zt-department-slider-id .owl-nav .owl-next,
.related-courses #zt-department-slider-id .owl-nav .owl-prev {
    width: 40px;
    height: 40px;
    line-height: 40px;
}

/*---------------------------------------------------- */
/*Registration area*/
/*----------------------------------------------------*/
.zt-registration-section {
    z-index: 1;
    padding: 95px 0px 85px;
    background-color: #ff5520;
}

.zt-registration-section:before {
    top: 0;
    left: 0;
    width: 50%;
    content: "";
    height: 100%;
    opacity: 0.1;
    position: absolute;
    background-repeat: no-repeat;
    background-image: url(../img/cd-bg.jpg);
}

.zt-registration-section:after {
    top: 0;
    right: -30px;
    width: 54%;
    content: "";
    height: 100%;
    z-index: -1;
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../img/cd-bg2.png);
}

.zt-registration-countdown {
    max-width: 500px;
}

.zt-registration-countdown .zt-section-title span {
    color: #fff;
}

.zt-registration-countdown .zt-section-title span:before,
.zt-registration-countdown .zt-section-title span:after {
    background-color: #fff;
}

.zt-registration-countdown .zt-section-title h2 {
    color: #fff;
}

.zt-registration-countdown-wrap {
    margin-top: 25px;
}

.zt-registration-countdown-wrap ul li {
    margin-right: 15px;
}

.zt-registration-countdown-wrap ul li span {
    display: block;
    text-align: center;
}

.zt-registration-countdown-wrap ul li .arch-count-down-number {
    width: 100px;
    height: 100px;
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    line-height: 100px;
    border-radius: 100%;
    margin-bottom: 10px;
    font-family: "Fira Sans", sans-serif;
    background-color: #830017;
}

.zt-registration-countdown-wrap ul li .count-unit {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.zt-registration-text-wrap {
    padding-top: 10px;
    padding-left: 100px;
}

.zt-registration-text-wrap h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    padding-bottom: 20px;
    line-height: 1.333;
}

.zt-registration-text-wrap p {
    color: #cecece;
    padding-bottom: 40px;
}

.zt-registration-text-wrap a {
    color: #fff;
    height: 50px;
    width: 150px;
    display: block;
    font-weight: 700;
    line-height: 50px;
    text-align: center;
    background-color: #ff5520;
    transition: 0.3s all ease-in-out;
}

.zt-registration-text-wrap a:after {
    background-color: #fff;
}

.zt-registration-text-wrap a:hover {
    color: #000;
}

/*Registration section 2*/
/*-----------------------------*/
.zt-registration-section-2 {
    padding-top: 60px;
}

.zt-registration-section-2:before {
    top: 0;
    left: 0;
    width: 100%;
    content: "";
    height: 210px;
    position: absolute;
    background-color: #f7f7f7;
}

.zt-registration-content-2 {
    z-index: 1;
    padding: 45px;
    background-color: #fff;
    box-shadow: -3.285px 20.741px 51px 0px rgba(0, 0, 47, 0.05);
}

.zt-registration-content-2:before {
    top: 0;
    left: 0;
    width: 70%;
    z-index: -1;
    content: "";
    height: 100%;
    position: absolute;
    background-repeat: no-repeat;
    background-image: url(../img/r-bg.png);
}

.zt-registration-content-2 .registration-side-img {
    right: 0;
    bottom: 0;
}

.zt-registration-content-2 .registration-text-2 {
    max-width: 450px;
}

.zt-registration-content-2 .registration-text-2 h3 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.167;
    padding-bottom: 20px;
}

.zt-registration-content-2 .registration-text-2 h3 span {
    color: #ff5520;
}

.zt-registration-content-2 .registration-text-2 p {
    color: #c6c6c6;
    padding-bottom: 25px;
}

.zt-registration-content-2 .registration-text-2 a {
    height: 45px;
    width: 140px;
    color: #fff;
    display: block;
    font-size: 15px;
    line-height: 45px;
    overflow: hidden;
    font-weight: 700;
    text-align: center;
    border-radius: 40px;
    background-color: #00a4ff;
}

.zt-registration-content-2 .registration-text-2 a:after {
    background-color: #ff5520;
}

/*---------------------------------------------------- */
/*Blog area*/
/*----------------------------------------------------*/
.zt-blog-section {
    padding: 100px 0px;
}

.zt-blog-section .zt-blog-slide-wrap {
    margin-top: 35px;
}

.zt-blog-img-text {
    padding: 25px;
    background-color: #fff;
    transition: 0.3s all ease-in-out;
    box-shadow: 0px 14px 29px 0px rgba(12, 12, 12, 0.08);
}

.zt-blog-img-text .zt-blog-img {
    overflow: hidden;
    position: relative;
}

.zt-blog-img-text .zt-blog-img img {
    transition: 0.5s all ease-in-out;
}

.zt-blog-img-text .zt-blog-img:before {
    top: 0;
    left: 0;
    height: 0%;
    width: 100%;
    content: "";
    z-index: 1;
    position: absolute;
    transition: 0.3s all ease-in-out;
    background-color: rgba(0, 0, 0, 0.6);
}

.zt-blog-img-text .zt-blog-date {
    color: #fff;
    right: 20px;
    bottom: 15px;
    z-index: 2;
    font-size: 14px;
    padding: 5px 10px;
    position: absolute;
    background-color: #ff5520;
}

.zt-blog-img-text .zt-blog-text {
    margin-top: 22px;
}

.zt-blog-img-text .zt-blog-text .zt-blog-meta {
    margin-bottom: 10px;
}

.zt-blog-img-text .zt-blog-text .zt-blog-meta a {
    font-weight: 500;
    margin-right: 16px;
    font-family: "Fira Sans", sans-serif;
}

.zt-blog-img-text .zt-blog-text .zt-blog-meta a i {
    color: #777777;
    color: #ff5520;
}

.zt-blog-img-text .zt-blog-title h3 {
    color: #000;
    font-size: 22px;
    font-weight: 700;
    padding-bottom: 12px;
    transition: 0.3s all ease-in-out;
}

.zt-blog-img-text .zt-blog-title p {
    color: #353535;
    padding-bottom: 20px;
}

.zt-blog-img-text:hover {
    transform: translateY(-20px);
    box-shadow: 0px 29px 29px 0px rgba(12, 12, 12, 0.26);
}

.zt-blog-img-text:hover h3 {
    color: #ff5520;
}

.zt-blog-img-text:hover .zt-blog-img img {
    transform: scale(1.2);
}

.zt-blog-img-text:hover .zt-blog-img:before {
    height: 100%;
}

#zt-blog-slider-id .owl-stage-outer {
    overflow: visible;
}

#zt-blog-slider-id .owl-item {
    opacity: 0;
    transition: opacity 500ms;
}

#zt-blog-slider-id .owl-item.active {
    opacity: 1;
}

#zt-blog-slider-id .owl-nav {
    right: 0;
    top: -110px;
    position: absolute;
}

#zt-blog-slider-id .owl-nav .owl-next,
#zt-blog-slider-id .owl-nav .owl-prev {
    width: 60px;
    height: 60px;
    cursor: pointer;
    line-height: 60px;
    margin-left: 12px;
    text-align: center;
    border-radius: 100%;
    display: inline-block;
    border: 2px solid #ff5520;
    transition: 0.3s all ease-in-out;
}

#zt-blog-slider-id .owl-nav .owl-next:hover,
#zt-blog-slider-id .owl-nav .owl-prev:hover {
    color: #fff;
    background-color: #ff5520;
}

/*Blog section 2*/
/*-----------------------------*/
.zt-blog-section-2 {
    padding: 105px 0px 60px;
    background-color: #f7f7f7;
}

.zt-blog-section-2 .zt-section-title .title-watermark {
    color: #fff;
    opacity: 0.75;
}

.zt-blog-section-2 .zt-blog-content-2 {
    margin-top: 25px;
}

.zt-blog-img-text-2 {
    margin: 0 auto;
    max-width: 370px;
    margin-bottom: 40px;
    background-color: #fff;
    transition: 0.3s all ease-in-out;
}

.zt-blog-img-text-2 .zt-blog-img-2 .zt-blog-img-warap-2 {
    overflow: hidden;
}

.zt-blog-img-text-2 .zt-blog-img-2 .zt-blog-img-warap-2 img {
    transition: 0.4s all ease-in-out;
}

.zt-blog-img-text-2 .zt-blog-img-2 .zt-blog-img-warap-2:after {
    top: 0;
    left: 0;
    width: 100%;
    content: "";
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.25);
}

.zt-blog-img-text-2 .zt-blog-img-2 .zt-blog-date-2 {
    left: 25px;
    width: 80px;
    height: 80px;
    bottom: -30px;
    padding-top: 13px;
    border-radius: 3px;
    position: absolute;
    background-color: #000;
}

.zt-blog-img-text-2 .zt-blog-img-2 .zt-blog-date-2 a {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    display: inline-block;
    font-family: "Fira Sans", sans-serif;
}

.zt-blog-img-text-2 .zt-blog-img-2 .zt-blog-date-2 a span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
}

.zt-blog-img-text-2 .zt-blog-text-2 {
    padding: 45px 25px;
    box-shadow: 0px 12px 35px 0px rgba(12, 12, 12, 0.06);
}

.zt-blog-img-text-2 .zt-blog-title-text-2 h3 {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding: 10px 0px 15px;
    border-bottom: 2px solid #eaeaea;
    transition: 0.3s all ease-in-out;
}

.zt-blog-img-text-2 .zt-blog-title-text-2 h3:before {
    left: 0;
    bottom: -1px;
    height: 3px;
    content: "";
    width: 37px;
    position: absolute;
    background-color: #ff5520;
}

.zt-blog-img-text-2 .zt-blog-title-text-2 h3:hover {
    color: #ff5520;
}

.zt-blog-img-text-2 .zt-blog-title-text-2 p {
    padding-bottom: 14px;
}

.zt-blog-img-text-2 .zt-blog-title-text-2 .zt-blog-more {
    color: #000;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s all ease-in-out;
    position: relative;
}

.zt-blog-img-text-2 .zt-blog-title-text-2 .zt-blog-more:after {
    left: 0;
    bottom: 0;
    content: "";
    width: 0;
    height: 1px;
    position: absolute;
    transition: 0.3s all ease-in-out;
    background-color: #ff5520;
}

.zt-blog-img-text-2 .zt-blog-title-text-2 .zt-blog-more:hover {
    color: #ff5520;
}

.zt-blog-img-text-2 .zt-blog-title-text-2 .zt-blog-more:hover:after {
    width: 100%;
}

.zt-blog-img-text-2:hover {
    box-shadow: 0px 43px 35px 0px rgba(12, 12, 12, 0.1);
}

.zt-blog-img-text-2:hover .zt-blog-img-warap-2 img {
    transform: scale(1.2) rotate(5deg);
}

.zt-blog-meta-2 a {
    font-size: 13px;
    font-weight: 700;
    margin-right: 25px;
    position: relative;
    color: #ff5520;
    font-family: "Fira Sans", sans-serif;
}

.zt-blog-meta-2 a:after {
    top: -3px;
    width: 2px;
    content: "";
    right: -15px;
    height: 20px;
    position: absolute;
    background-color: #ff5520;
}

.zt-blog-meta-2 a:last-child:after {
    display: none;
}

#zt-blog-slider-2 .owl-nav {
    display: none;
}

#zt-blog-slider-2 .owl-stage-outer {
    overflow: visible;
}

#zt-blog-slider-2 .owl-item {
    opacity: 0;
    transition: opacity 500ms;
}

#zt-blog-slider-2 .owl-item.active {
    opacity: 1;
}

#zt-blog-slider-2 .owl-dots {
    margin-top: 35px;
    text-align: center;
}

#zt-blog-slider-2 .owl-dots .owl-dot {
    width: 28px;
    height: 5px;
    margin: 0px 5px;
    cursor: pointer;
    border-radius: 30%;
    display: inline-block;
    background-color: #ececed;
    transition: 0.3s all ease-in-out;
}

#zt-blog-slider-2 .owl-dots .owl-dot.active {
    width: 38px;
    background-color: #ff5520;
}

.zt-blog-feed-section,
.blog-feed-list-section {
    padding: 100px 0px;
    background-color: #f2f2f4;
}

.blog-feed-list-img-text .zt-blog-img-text-2 .zt-blog-img-2 .zt-blog-img-warap-2 {
    border-radius: 5px;
}

.blog-feed-list-img-text .zt-blog-img-text-2 .zt-blog-img-2 .zt-blog-date-2 {
    left: 40px;
}

.blog-feed-list-img-text .zt-blog-img-text-2 {
    max-width: 100%;
}

.blog-feed-list-img-text .zt-blog-img-text-2 .zt-blog-title-text-2 h3 {
    border: none;
    font-size: 40px;
    margin-bottom: 8px;
}

.blog-feed-list-img-text .zt-blog-img-text-2 .zt-blog-title-text-2 h3:before {
    display: none;
}

.blog-feed-list-img-text .zt-blog-img-text-2 .zt-blog-title-text-2 p {
    padding-bottom: 30px;
}

.blog-feed-list-img-text .zt-blog-img-text-2 .zt-blog-text-2 {
    padding: 48px 40px 40px;
}

.blog-feed-list-img-text .zt-blog-img-text-2 .zt-blog-more {
    border-radius: 4px;
    padding: 14px 28px 12px;
    border: 2px solid #ff5520;
}

.blog-feed-list-img-text .zt-blog-img-text-2 .zt-blog-more:after {
    display: none;
}

.blog-feed-list-img-text .zt-blog-img-text-2 .zt-blog-more:hover {
    color: #fff;
    background-color: #ff5520;
}

.zt-blog-list-share {
    padding-top: 10px;
}

.zt-blog-list-share .blog-share-slug {
    color: #000;
    font-weight: 700;
    margin-right: 10px;
}

.zt-blog-list-share a {
    width: 42px;
    color: #fff;
    height: 42px;
    line-height: 42px;
    margin-left: 8px;
    text-align: center;
    border-radius: 100%;
    display: inline-block;
    transition: 0.3s all ease-in-out;
}

.zt-blog-list-share a:hover {
    transform: scale(1.1);
}

.zt-blog-list-share a:nth-child(2) {
    background-color: #3b5998;
}

.zt-blog-list-share a:nth-child(3) {
    background-color: #1da1f2;
}

.zt-blog-list-share a:nth-child(4) {
    background-color: #0077b5;
}

.zt-blog-widget-wrap {
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 40px;
    background-color: #fff;
}

.zt-blog-widget-wrap .widget-title {
    color: #000000;
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 14px;
    font-family: "Roboto", sans-serif;
}

.zt-blog-widget-wrap .zt-search-widget input {
    width: 100%;
    height: 48px;
    border: none;
    padding-left: 15px;
    border-radius: 4px;
    background-color: #fff;
}

.zt-blog-widget-wrap .zt-search-widget button {
    top: 0;
    right: 0;
    width: 48px;
    color: #fff;
    border: none;
    height: 48px;
    position: absolute;
    border-radius: 4px;
    background-color: #ff5520;
}

.zt-blog-widget-wrap .zt-category-widget {
    padding: 35px 30px;
}

.zt-blog-widget-wrap .zt-category-widget li {
    margin-bottom: 5px;
}

.zt-blog-widget-wrap .zt-category-widget li a {
    color: #000;
    font-weight: 700;
    padding-left: 15px;
    position: relative;
    transition: 0.4s all ease-in-out;
}

.zt-blog-widget-wrap .zt-category-widget li a:after {
    left: 0;
    top: -1px;
    color: #ff5520;
    font-size: 14px;
    content: "";
    position: absolute;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
}

.zt-blog-widget-wrap .zt-category-widget li a:hover {
    margin-left: 15px;
}

.zt-blog-widget-wrap .zt-category-widget li:last-child {
    margin-bottom: 0;
}

.zt-blog-widget-wrap .zt-recent-blog-widget {
    padding: 35px 30px;
}

.zt-blog-widget-wrap .zt-recent-blog-widget .zt-recent-blog-img-text {
    width: 100%;
    margin-bottom: 14px;
    padding-bottom: 14px;
    display: inline-block;
    border: 1px solid #eef1fe;
}

.zt-blog-widget-wrap .zt-recent-blog-widget .zt-recent-blog-img-text:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.zt-blog-widget-wrap .zt-recent-blog-widget .zt-recent-blog-img-text .zt-recent-blog-img {
    width: 65px;
    height: 65px;
    overflow: hidden;
    margin-right: 10px;
    border-radius: 4px;
}

.zt-blog-widget-wrap .zt-recent-blog-widget .zt-recent-blog-img-text .zt-recent-blog-text {
    overflow: hidden;
}

.zt-blog-widget-wrap .zt-recent-blog-widget .zt-recent-blog-img-text .zt-recent-blog-text span {
    color: #888888;
    font-size: 14px;
}

.zt-blog-widget-wrap .zt-recent-blog-widget .zt-recent-blog-img-text .zt-recent-blog-text h3 {
    color: #000;
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 700;
}

.zt-blog-widget-wrap .zt-blog-category-widget {
    padding: 35px 30px;
}

.zt-blog-widget-wrap .zt-blog-category-widget .zt-blog-category-tag a {
    margin-right: 5px;
    margin-bottom: 5px;
    padding: 10px 12px;
    border-radius: 30px;
    display: inline-block;
    border: 1px solid #e5e5e5;
}

@media screen and (max-width: 991px) {
    .zt-blog-sidebar {
        margin-top: 40px;
    }
}

@media screen and (max-width: 480px) {
    .blog-feed-list-img-text .zt-blog-img-text-2 .zt-blog-title-text-2 h3 {
        font-size: 30px;
    }

    .blog-feed-list-img-text .zt-blog-img-text-2 .zt-blog-text-2 {
        padding: 48px 20px 40px;
    }

    .zt-blog-list-share,
    .zt-blog-more {
        float: none !important;
    }

    .zt-blog-more {
        margin-bottom: 15px;
    }
}

.zt-blog-details-section {
    padding: 100px 0px;
    background-color: #f2f2f4;
}

.zt-blog-details-section .zt-blog-details-wrap {
    background-color: #fff;
}

.zt-blog-details-section .zt-blog-details-wrap .zt-blog-details-thumb {
    overflow: hidden;
    border-radius: 6px;
}

.zt-blog-details-section .zt-blog-details-wrap .zt-blog-meta-2 {
    margin-bottom: 45px;
}

.zt-blog-details-section .zt-blog-details-wrap .zt-blog-details-text {
    padding: 40px;
}

.zt-blog-details-section .zt-blog-details-wrap article {
    margin-bottom: 30px;
}

.zt-blog-details-section .zt-blog-details-wrap blockquote {
    color: 3888888;
    font-size: 21px;
    font-style: italic;
    margin-bottom: 35px;
    padding: 20px 0px 20px 60px;
    border-left: 4px solid #ff5520;
}

.zt-blog-details-section .zt-blog-details-wrap blockquote .blockquote-author {
    font-style: normal;
    padding-left: 45px;
    position: relative;
}

.zt-blog-details-section .zt-blog-details-wrap blockquote .blockquote-author:before {
    left: 0;
    top: 18px;
    height: 1px;
    width: 38px;
    content: "";
    position: absolute;
    background-color: #000;
}

.zt-blog-details-section .zt-blog-details-wrap blockquote .blockquote-author strong {
    color: #000;
    font-size: 16px;
    margin-right: 5px;
}

.zt-blog-details-section .zt-blog-details-wrap blockquote .blockquote-author span {
    font-size: 14px;
}

.zt-blog-details-section .zt-blog-details-wrap .zt-post-cat-wrap a {
    margin-right: 5px;
    padding: 10px 12px;
    border-radius: 30px;
    display: inline-block;
    border: 1px solid #e5e5e5;
}

.zt-blog-details-section .zt-blog-details-next-prev-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-top: 35px;
    background-color: #fff;
}

.zt-blog-details-section .zt-blog-details-next-prev-wrap .zt-blog-details-next-prev-item {
    padding: 40px;
    width: 50%;
    border-right: 2px solid #e5e5e5;
}

.zt-blog-details-section .zt-blog-details-next-prev-wrap .zt-blog-details-next-prev-item:last-child {
    border: none;
}

.zt-blog-details-section .zt-blog-details-next-prev-wrap .zt-blog-details-next-prev-item .zt-blog-next-prev-title {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ff5520;
}

.zt-blog-details-section .zt-blog-details-next-prev-wrap .zt-blog-details-next-prev-item .zt-blog-next-prev-title a {
    color: #000;
    font-weight: 700;
    font-size: 15px;
}

.zt-blog-details-section .zt-blog-details-next-prev-wrap .zt-blog-details-next-prev-item .zt-blog-next-prev-title a i {
    font-size: 14px;
    color: #ff5520;
}

.zt-blog-details-section .zt-blog-details-next-prev-wrap .zt-blog-details-next-prev-item h3 {
    color: #000;
    font-size: 18px;
    font-weight: 700;
}

.zt-blog-details-section .zt-blog-details-comment-area {
    padding: 35px;
    margin-top: 40px;
    background-color: #fff;
}

.zt-blog-details-section .zt-blog-details-comment-area h3 {
    color: #000;
    font-size: 24px;
    font-weight: 700;
}

.zt-blog-details-section .zt-blog-details-comment-area .zt-comment-discuss {
    margin-top: 20px;
}

.zt-blog-details-section .zt-blog-details-comment-area .zt-comment-innerbox {
    margin-bottom: 35px;
}

.zt-blog-details-section .zt-blog-details-comment-area .zt-comment-innerbox .zt-comment-img {
    width: 100px;
    height: 100px;
    overflow: hidden;
    margin-right: 20px;
    border-radius: 100%;
}

.zt-blog-details-section .zt-blog-details-comment-area .zt-comment-innerbox .zt-comment-text {
    overflow: hidden;
}

.zt-blog-details-section .zt-blog-details-comment-area .zt-comment-innerbox .zt-comment-text h4 {
    color: #000;
    font-weight: 700;
    font-size: 20px;
}

.zt-blog-details-section .zt-blog-details-comment-area .zt-comment-innerbox .zt-comment-text span {
    color: #7f7f7f;
    font-size: 14px;
}

.zt-blog-details-section .zt-blog-details-comment-area .zt-comment-innerbox .zt-comment-text p {
    margin-top: 15px;
}

.zt-blog-details-section .zt-blog-details-comment-area .zt-comment-innerbox .zt-comment-text .zt-comment-reply-btn {
    top: 0;
    right: 0;
    color: #fff;
    height: 42px;
    width: 100px;
    font-weight: 700;
    position: absolute;
    line-height: 42px;
    border-radius: 30px;
    background-color: #ff5520;
}

.zt-blog-details-section .zt-blog-details-comment-area .zt-comment-innerbox.zt-reply-comment {
    margin-left: 100px;
}

.zt-blog-details-thumb-2 {
    margin-bottom: 50px;
}

.zt-blog-details-title {
    color: #000;
    font-size: 40px;
    font-weight: 700;
    padding-bottom: 25px;
}

@media screen and (max-width: 570px) {
    .zt-blog-details-section .zt-blog-details-comment-area .zt-comment-innerbox .zt-comment-text .zt-comment-reply-btn {
        position: relative;
        display: inline-block;
        margin-top: 15px;
    }

    .zt-blog-details-section .zt-blog-details-comment-area .zt-comment-innerbox.zt-reply-comment {
        margin-left: 30px;
    }
}

@media screen and (max-width: 480px) {
    .zt-blog-details-section .zt-blog-details-next-prev-wrap .zt-blog-details-next-prev-item {
        width: 100%;
        border: none;
    }

    .zt-blog-details-section .zt-blog-details-comment-area .zt-comment-innerbox .zt-comment-img {
        height: 50px;
        width: 50px;
    }

    .zt-blog-details-title {
        font-size: 26px;
    }
}

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

    .zt-blog-details-section .zt-blog-details-wrap .zt-blog-details-text,
    .zt-blog-details-section .zt-blog-details-comment-area {
        padding: 40px 15px;
    }
}

.zt-blog-section-4 {
    padding: 110px 0px;
}

.blog-btn-4 {
    margin-top: 40px;
}

.blog-btn-4 a {
    color: #fff;
    height: 50px;
    width: 150px;
    font-size: 15px;
    font-weight: 700;
    line-height: 50px;
    border-radius: 5px;
    display: inline-block;
    background-color: #ff3614;
}

/*---------------------------------------------------- */
/*Newslatter area*/
/*----------------------------------------------------*/
.zt-newslatter-section {
    padding: 35px 0px;
    background-color: #000;
}

.zt-newslatter-content {
    padding: 0px 40px;
}

.zt-newslatter-content .zt-newslatter-text-icon .zt-newslatter-icon {
    line-height: 1;
    margin-right: 20px;
    display: none;
}

.zt-newslatter-content .zt-newslatter-text-icon .zt-newslatter-icon i {
    color: #424242;
    font-size: 60px;
}

.zt-newslatter-content .zt-newslatter-text-icon .zt-newslatter-text h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.zt-newslatter-content .zt-newslatter-text-icon .zt-newslatter-text span {
    color: #fff;
}

.zt-newslatter-content .zt-newslatter-text-icon .zt-newslatter-text span img {
    margin-top: -5px;
    padding-left: 5px;
}

.zt-newslatter-content .zt-newslatter-form {
    padding-left: 55px;
}

.zt-newslatter-content .zt-newslatter-form input {
    height: 48px;
    width: 100%;
    border: none;
    max-width: 320px;
    padding-left: 20px;
    background-color: transparent;
    border: 1px solid #dddddd;
    color: #ffffff
}

.zt-newslatter-content .zt-newslatter-form input::placeholder {
    color: #fff;
}

.zt-newslatter-content .zt-newslatter-form button {
    top: 0;
    right: 0;
    padding: 0;
    color: #fff;
    border: none;
    width: 145px;
    height: 45px;
    font-size: 14px;
    font-weight: 700;
    position: absolute;
    background-color: #ff5520;
    transition: 0.3s all ease-in-out;
}

.zt-newslatter-content .zt-newslatter-form button:after {
    background-color: #fff;
}

.zt-newslatter-content .zt-newslatter-form button i {
    margin-left: 5px;
    transition: 0.3s all ease-in-out;
}

.zt-newslatter-content .zt-newslatter-form button:hover {
    color: #000;
}

.zt-newslatter-content .zt-newslatter-form button:hover i {
    animation: toLeftFromRight 0.3s forwards;
}

/*Newslatter section 2*/
/*--------------------------*/
.zt-newslatter-section-2 {
    z-index: 1;
    background-color: #f7f7f7;
}

.zt-newslatter-section-2.zt-newslatter-style-2 {
    background-color: transparent;
}

.zt-newslatter-section-2:before {
    left: 0;
    bottom: 0;
    z-index: -1;
    content: "";
    width: 100%;
    height: 70px;
    position: absolute;
    /*background-color: #000a1f;*/
    background-color: #ffffff;
}

.zt-newslatter-section-2 .zt-newslatter-content {
    border-radius: 5px;
    padding: 35px 40px;
    background-color: #000;
}

.zt-newslatter-section-2 .zt-newslatter-content .zt-newslatter-form button {
    background-color: #ff5520;
}

/*---------------------------------------------------- */
/*Category area*/
/*----------------------------------------------------*/
.zt-category-section {
    padding: 95px 0px 100px;
}

.zt-category-img-text {
    border-radius: 10px;
    background-color: #000;
    padding: 25px 40px 0px;
    margin-bottom: 35px;
}

.zt-category-img-text .zt-category-img img {
    transition: 0.3s all ease-in-out;
}

.zt-category-img-text .zt-category-text-icon {
    margin-bottom: 15px;
}

.zt-category-img-text .zt-category-text-icon .zt-category-icon {
    line-height: 1;
    margin-right: 15px;
    transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
}

.zt-category-img-text .zt-category-text-icon .zt-category-icon i {
    font-size: 45px;
    color: #ff5520;
}

.zt-category-img-text .zt-category-text h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.zt-category-img-text .zt-category-text span {
    color: #ababab;
}

.zt-category-img-text .zt-category-hover-icon {
    width: 60px;
    left: 0;
    right: 0;
    height: 60px;
    bottom: 0px;
    margin: 0 auto;
    opacity: 0;
    visibility: hidden;
    line-height: 60px;
    position: absolute;
    border-radius: 100%;
    background-color: #ff5520;
    transition: 0.3s all ease-in-out;
}

.zt-category-img-text .zt-category-hover-icon i {
    color: #fff;
    transition: 0.3s all ease-in-out;
}

.zt-category-img-text .zt-category-hover-icon:hover i {
    transform: rotate(130deg);
}

.zt-category-img-text:hover .zt-category-hover-icon {
    opacity: 1;
    bottom: -30px;
    visibility: visible;
}

.zt-category-img-text:hover .zt-category-img img {
    filter: grayscale(1);
}

.zt-category-img-text:hover .zt-category-icon {
    transform: rotateY(360deg);
}

.zt-category-slide-content {
    margin-top: 40px;
}

.zt-category-slide-content .owl-nav {
    display: none;
}

.zt-category-slide-content .owl-dots {
    margin-top: 15px;
    text-align: center;
}

.zt-category-slide-content .owl-dots .owl-dot {
    width: 28px;
    height: 5px;
    margin: 0px 5px;
    cursor: pointer;
    border-radius: 30%;
    display: inline-block;
    background-color: #ececed;
    transition: 0.3s all ease-in-out;
}

.zt-category-slide-content .owl-dots .owl-dot.active {
    width: 38px;
    background-color: #ff5520;
}

.zt-category-section-2 {
    padding: 110px 0px 90px;
}

.zt-category-content-2 {
    margin-top: 40px;
}

.zt-category-innerbox-2 {
    padding: 35px;
    border-radius: 10px;
    margin-bottom: 30px;
    background-color: #fff;
    box-shadow: 0px 14px 29px 0px rgba(12, 12, 12, 0.08);
}

.zt-category-innerbox-2 .zt-category-icon {
    transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
}

.zt-category-innerbox-2 .zt-category-icon i {
    color: #ff5520;
    font-size: 60px;
}

.zt-category-innerbox-2 .zt-category-text h3 {
    color: #000;
    font-size: 20px;
    font-weight: 700;
}

.zt-category-innerbox-2:hover .zt-category-icon {
    transform: rotateY(360deg);
}

.zt-top-category-section-4 {
    z-index: 3;
    overflow: visible;
    position: relative;
    margin-bottom: -100px;
    background-color: #f9f8f8;
}

.zt-top-category-content {
    top: -100px;
    position: relative;
    padding: 100px 60px 0px;
}

.zt-top-category-content .zt-section-title {
    margin-bottom: 25px;
}

.zt-top-category-content .zt-section-title span {
    color: #ff3614;
}

.zt-top-category-content .zt-section-title span:before,
.zt-top-category-content .zt-section-title span:after {
    background-color: #ff3614;
}

.zt-top-category-content .zt-section-title h2 {
    color: #fff;
}

.zt-top-category-slide-item {
    height: 220px;
    padding-top: 38px;
    background-color: #1a2847;
    transition: 0.4s all ease-in-out;
}

.zt-top-category-slide-item .zt-top-category-slide-icon {
    line-height: 1;
    margin-bottom: 20px;
    transition: all 0.35s cubic-bezier(0.38, 3, 0.57, 1.6);
    transform: translate3d(0px, 0, 0);
}

.zt-top-category-slide-item .zt-top-category-slide-icon i {
    color: #ff3614;
    font-size: 50px;
    transition: 0.3s all ease-in-out;
}

.zt-top-category-slide-item .zt-top-category-slide-text h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 5px;
}

.zt-top-category-slide-item .zt-top-category-slide-text span {
    color: #fff;
    transition: 0.3s all ease-in-out;
}

.zt-top-category-slide-item .zt-top-category-slide-text .top-cat-more-icon {
    left: 0;
    right: 0px;
    opacity: 0;
    bottom: 40px;
    color: #fff;
    font-size: 18px;
    position: absolute;
    visibility: hidden;
    transition: 0.3s all ease-in-out;
}

.zt-top-category-slide-item:hover {
    background-color: #ff3614;
}

.zt-top-category-slide-item:hover .zt-top-category-slide-icon i {
    color: #fff;
}

.zt-top-category-slide-item:hover span {
    opacity: 0;
    margin-right: 20px;
    visibility: hidden;
}

.zt-top-category-slide-item:hover .top-cat-more-icon {
    opacity: 1;
    visibility: visible;
}

.zt-top-category-slide-item:hover .zt-top-category-slide-icon {
    transition: all 0.35s cubic-bezier(0.38, 3, 0.57, 1.6);
    transform: translate3d(0px, -6px, 0);
}

.zt-top-category-slider .owl-nav .owl-next,
.zt-top-category-slider .owl-nav .owl-prev {
    top: 50%;
    width: 50px;
    color: #fff;
    height: 50px;
    cursor: pointer;
    line-height: 50px;
    position: absolute;
    text-align: center;
    border-radius: 100%;
    background-color: #1a2847;
    transform: translateY(-50%);
    transition: 0.3s all ease-in-out;
}

.zt-top-category-slider .owl-nav .owl-next:hover,
.zt-top-category-slider .owl-nav .owl-prev:hover {
    background-color: #ff3614;
}

.zt-top-category-slider .owl-nav .owl-next {
    right: -80px;
}

.zt-top-category-slider .owl-nav .owl-prev {
    left: -80px;
}

@media screen and (max-width: 420px) {
    .zt-section-title h2 {
        font-size: 26px;
    }

    .zt-top-category-content {
        top: 0;
        padding: 50px 20px;
    }

    .zt-top-category-section-4 {
        margin-bottom: 0;
    }

    .zt-top-category-slider .owl-nav {
        text-align: center;
        margin: 30px 0px;
    }

    .zt-top-category-slider .owl-nav .owl-next,
    .zt-top-category-slider .owl-nav .owl-prev {
        position: static;
        display: inline-block;
        transform: translateY(0);
    }
}

/*----------------------------- Breadcrumd Page List -------------------------------*/

/*----------------------------- Breadcrumb Style Three ------------------------------*/
.zt-breadcrumb-style-3 .page-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.zt-breadcrumb-style-3 .page-list li {
    display: inline-block;
    font-size: 14px;
    color: #ffffff;
    margin: 0;
}

.zt-breadcrumb-style-3 .page-list li i {
    display: inline-block;
    position: relative;
    top: 2px;
}

.zt-breadcrumb-style-3 .page-list li.active {
    color: #ffffff;
    opacity: 0.6;
}

.zt-breadcrumb-style-3 .page-list li a {
    color: #ff5520;
    transition: 0.5s;
}

.zt-breadcrumb-style-3 .page-list li a:hover {
    color: #ff5520;
}

.zt-breadcrumb-style-3 .page-list li .icon-right i {
    color: #ff5520;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zt-breadcrumb-default .title {
    color: #ffffff;
    margin-bottom: 5px;
    font-size: 30px;
}

.zt-breadcrumb-default.zt-breadcrumb-style-3 {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: auto;
}

.zt-breadcrumb-default.zt-breadcrumb-style-3 .breadcrumb-inner {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 490px;
    padding: 80px 0;
}

.zt-breadcrumb-default.zt-breadcrumb-style-3 .breadcrumb-inner::before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.4);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .zt-breadcrumb-default.zt-breadcrumb-style-3 .breadcrumb-inner {
        height: auto;
        padding: 120px 0;
    }

}

@media only screen and (max-width: 767px) {
    .zt-breadcrumb-default.zt-breadcrumb-style-3 .breadcrumb-inner {
        height: auto;
        padding: 60px 0;
    }
}

.zt-breadcrumb-default.zt-breadcrumb-style-3 .breadcrumb-inner .container {
    position: relative;
    z-index: 3;
}

.zt-breadcrumb-default.zt-breadcrumb-style-3 .breadcrumb-inner>img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.zt-breadcrumb-default.zt-breadcrumb-style-3 .content {
    position: relative;
    z-index: 4;
    padding-right: 10%;
}

.zt-breadcrumb-style-3 .title {
    margin-bottom: 20px;
}

.zt-breadcrumb-style-3 .title img {
    margin-right: 5px;
    padding-bottom: 10px;
    max-width: 120px;
}

.zt-breadcrumb-style-3 .description {
    color: #ffffff;
    text-align: justify;
}

@media only screen and (max-width: 767px) {
    .zt-breadcrumb-style-3 .description {
        margin-bottom: 20px;
    }
}

.zt-breadcrumb-style-3 .page-list {
    margin-bottom: 20px;
}

.zt-breadcrumb-style-3 .zt-badge-2 {
    display: flex;
    align-items: center;
    background: rgba(226, 213, 252, 0.8);
    box-shadow: 0 12px 22px 0 rgba(214, 191, 242, 0.28);
    padding: 0 20px;
    border: 1px solid #fff;
    border-radius: 500px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.5px;
    justify-content: center;
    color: #192335;
    width: max-content;
}

.zt-breadcrumb-style-3 .zt-badge-2 .image {
    margin: 0;
    margin-right: 10px;
}

.zt-breadcrumb-style-3 .zt-badge-2 img {
    max-height: 30px;
    border-radius: 100%;
}

.zt-breadcrumb-style-3 .rating {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.zt-breadcrumb-style-3 .rating a {
    display: inline-block;
}

.zt-breadcrumb-style-3 .rating i {
    font-size: 13px;
    color: #ff5520;
    transition: 0.3s;
}

.zt-breadcrumb-style-3 .zt-badge-4 {
    display: inline-block;
    height: auto;
    line-height: initial;
    padding: 6px 10px;
    background: #ffffff21;
    font-size: 14px;
    letter-spacing: 0.3px;
    border-radius: 6px;
    color: #ffffff;
    position: relative;
}

.zt-breadcrumb-style-3 .total-student {
    font-size: 14px;
    font-weight: 500;
}

.zt-breadcrumb-style-3 .total-student span {
    color: #ffffff;
}

.zt-breadcrumb-style-3 .zt-author-meta {
    display: flex;
    align-items: center;
}

.zt-breadcrumb-style-3 .zt-author-meta .rbt-avater {
    margin-right: 10px;
}

.zt-breadcrumb-style-3 .zt-author-meta .zt-avater a {
    display: block;
}

.zt-breadcrumb-style-3 .zt-author-meta .zt-avater img {
    width: 40px;
    max-width: 40px;
    height: 40px;
    border-radius: 100%;
    object-fit: cover;
    border: 2px solid #2f57ef21;
    padding: 2px;
}

.zt-breadcrumb-style-3 .zt-author-meta .zt-author-info {
    font-size: 14px;
    color: #ffffff;
}

.zt-breadcrumb-style-3 .zt-author-meta .zt-author-info a {
    color: #ff5520;
    font-weight: 500;
}

.zt-breadcrumb-style-3 .zt-meta {
    margin: -7px;
    padding: 0;
}

.zt-breadcrumb-style-3 .zt-meta li {
    color: #ffffff;
    font-size: 14px;
    line-height: 15px;
    display: inline-block;
    margin: 7px
}

.zt-breadcrumb-style-3 .zt-meta li i {
    margin-right: 5px;
    color: #ff5520;
}

.zt-breadcrumb-style-3 .zt-course-details-feature {
    margin: -5px;
}

.zt-breadcrumb-style-3 .zt-course-details-feature .feature-sin {
    margin: 5px;
}

/*---------------------------------------------------- */
/*breadcrumb area*/
/*----------------------------------------------------*/
.zt-breadcrumb-section {
    padding: 195px 0px 110px;
}

.zt-breadcrumb-section .breadcrumb-overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background-color: #030014;
}

.zt-breadcrumb-content {
    z-index: 1;
    position: relative;
}

.zt-breadcrumb-content h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    padding-bottom: 10px;
}

.zt-breadcrumb-content .zt-breadcrumb-item .breadcrumb {
    justify-content: center;
    background-color: transparent;
}

.zt-breadcrumb-content .zt-breadcrumb-item .breadcrumb li {
    color: #fff;
    font-weight: 700;
}

.zt-breadcrumb-content .zt-breadcrumb-item .breadcrumb .breadcrumb-item.active {
    font-weight: 500;
}

.zt-breadcrumb-content .zt-breadcrumb-item .breadcrumb-item+.breadcrumb-item::before {
    content: "";
    font-weight: 900;
    color: #ff5520;
    font-family: "Font Awesome 5 Free";
}

@media screen and (max-width: 680px) {
    .zt-breadcrumb-content h2 {
        font-size: 30px;
    }
}

/*---------------------------------------------------- */
/*Event area*/
/*----------------------------------------------------*/
.event-area-section {
    padding: 95px 0px;
    background-color: #f2f2f4;
}

.zt-ucourse-schedule-innerbox {
    border-radius: 8px;
    margin-bottom: 30px;
    background-color: #fff;
    transition: 0.4s all ease-in-out;
    box-shadow: 0px 6px 38px 0px rgba(0, 0, 0, 0.04);
}

.zt-ucourse-schedule-innerbox .zt-ucourse-schedule-img {
    border-radius: 8px;
    overflow: hidden;
}

.zt-ucourse-schedule-innerbox .zt-ucourse-schedule-img img {
    transition: 0.5s all ease-in-out;
}

.zt-ucourse-schedule-innerbox .zt-ucourse-schedule-text {
    padding: 35px 25px;
}

.zt-ucourse-schedule-innerbox .zt-ucourse-schedule-text .event-date {
    top: -55px;
    left: 35px;
    color: #fff;
    width: 75px;
    height: 75px;
    line-height: 1;
    font-weight: 700;
    font-size: 30px;
    padding-top: 13px;
    position: absolute;
    border-radius: 100%;
    font-family: "Fira Sans", sans-serif;
    background-color: #ff5520;
}

.zt-ucourse-schedule-innerbox .zt-ucourse-schedule-text .event-date span {
    display: block;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}

.zt-ucourse-schedule-innerbox .zt-ucourse-schedule-text h3 {
    color: #000000;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.273;
    transition: 0.3s all ease-in-out;
}

.zt-ucourse-schedule-innerbox .zt-ucourse-schedule-text h3:hover {
    color: #ff5520;
}

.zt-ucourse-schedule-innerbox .zt-ucourse-schedule-text .zt-ucourse-schedule-meta {
    padding-top: 20px;
    margin-top: 15px;
    border-top: 1px solid #e9e9e9;
}

.zt-ucourse-schedule-innerbox .zt-ucourse-schedule-text .zt-ucourse-schedule-meta a {
    color: #555555;
    font-size: 14px;
    margin-right: 20px;
}

.zt-ucourse-schedule-innerbox .zt-ucourse-schedule-text .zt-ucourse-schedule-meta a i {
    margin-right: 5px;
    color: #ff5520;
}

.zt-ucourse-schedule-innerbox .zt-ucourse-schedule-text .zt-ucourse-schedule-meta a:last-child {
    margin-right: 0;
}

.zt-ucourse-schedule-innerbox:hover {
    box-shadow: 0px 10px 51px 0px rgba(0, 0, 47, 0.12);
}

.zt-ucourse-schedule-innerbox:hover .zt-ucourse-schedule-img img {
    transform: scale(1.2);
}

.zt-event-btn {
    height: 50px;
    width: 135px;
    margin: 0 auto;
    margin-top: 10px;
    line-height: 46px;
    border-radius: 40px;
    border: 2px solid #ff5520;
    transition: 0.3s all ease-in-out;
}

.zt-event-btn a {
    color: #000;
    width: 100%;
    display: block;
    font-weight: 700;
    transition: 0.3s all ease-in-out;
}

.zt-event-btn:hover {
    background-color: #ff5520;
}

.zt-event-btn:hover a {
    color: #fff;
}

@media screen and (max-width: 991px) {
    .zt-ucourse-schedule-innerbox {
        max-width: 370px;
        margin: 0 auto;
        margin-bottom: 30px;
    }
}

.event-details-section {
    padding: 120px 0px 70px;
    background-color: #f2f2f4;
}

.event-details-text-wrap {
    background-color: #fff;
    margin-bottom: 60px;
}

.event-details-text-wrap .event-details-text {
    padding: 40px 40px 10px 40px;
}

.event-details-text-wrap .event-details-text h3 {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 15px;
}

.event-details-text-wrap .event-details-text p {
    padding-bottom: 30px;
}

.ed-more-event h3 {
    color: #000;
    font-size: 36px;
    font-weight: 700;
    padding-bottom: 25px;
}

.zt-event-widget {
    padding: 35px;
    border-radius: 5px;
    margin-bottom: 40px;
    background-color: #fff;
}

.zt-event-widget .widget-title {
    color: #000000;
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 20px;
}

.zt-event-widget .ed-inner-widget {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eef1fe;
}

.zt-event-widget .ed-inner-widget .ed-inner-title {
    color: #000;
    font-size: 16px;
    font-weight: 700;
}

.zt-event-widget .ed-inner-widget .ed-inner-title i {
    color: #ff5520;
    margin-right: 8px;
}

.zt-event-widget .ed-inner-widget span {
    color: #000;
    padding-left: 25px;
    display: inline-block;
}

.zt-event-widget .ed-inner-widget b {
    color: #ff5520;
    font-size: 24px;
    line-height: 1;
    padding-left: 25px;
}

.zt-event-widget .ed-inner-widget:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.zt-event-widget .ed-book-btn {
    width: 100%;
    color: #fff;
    height: 45px;
    margin-top: 20px;
    font-weight: 700;
    line-height: 45px;
    border-radius: 4px;
    display: inline-block;
    background-color: #ff5520;
}

.zt-ucourse-schedule-wrap-section {
    padding: 110px 0px 90px;
}

.zt-ucourse-schedule-content-wrap {
    margin-top: 40px;
}

/*---------------------------------------------------- */
/*Instructor area*/
/*----------------------------------------------------*/
.zt-instructor-section {
    padding: 100px 0px;
    background-color: #f1f1f3;
}

.zt-instructor-img-text .zt-instructor-img {
    width: 160px;
    z-index: 3;
    height: 160px;
    bottom: -50px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 100%;
    box-shadow: 0px 6px 42px 0px rgba(4, 4, 97, 0.12);
}

.zt-instructor-img-text .zt-instructor-text {
    border-radius: 6px;
    padding: 70px 15px 30px;
    background-color: #fff;
    z-index: 2;
    box-shadow: 0px 6px 38px 0px rgba(0, 0, 0, 0.04);
    transition: 0.4s all ease-in-out;
}

.zt-instructor-img-text .zt-instructor-text:after {
    left: 0;
    right: 0;
    width: 90%;
    content: "";
    height: 10px;
    z-index: -1;
    bottom: -8px;
    margin: 0 auto;
    position: absolute;
    border-radius: 6px;
    background-color: #fbfbff;
    transition: 0.4s all ease-in-out;
}

.zt-instructor-img-text .zt-instructor-text h3 {
    color: #000000;
    font-size: 20px;
    font-weight: 700;
    transition: 0.4s all ease-in-out;
}

.zt-instructor-img-text .zt-instructor-text span {
    display: block;
    font-size: 14px;
    transition: 0.4s all ease-in-out;
}

.zt-instructor-img-text .zt-instructor-text .zt-ins-degi {
    color: #000000;
    font-weight: 700;
    padding: 5px 0px;
    font-family: "Fira Sans", sans-serif;
}

.zt-instructor-img-text .zt-instructor-text .zt-ins-course-no {
    color: #888888;
}

.zt-instructor-img-text:hover .zt-instructor-text {
    background-color: #ff5520;
}

.zt-instructor-img-text:hover .zt-instructor-text:after {
    background-color: #f7815d;
}

.zt-instructor-img-text:hover h3,
.zt-instructor-img-text:hover .zt-ins-degi,
.zt-instructor-img-text:hover .zt-ins-course-no {
    color: #fff;
}

.instructor-details-section {
    padding: 100px 0px;
    background-color: #f2f2f4;
}

.instructor-details-content {
    padding: 35px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 6px 38px 0px rgba(0, 0, 0, 0.04);
}

.instructor-details-content:after {
    left: 0;
    right: 0;
    width: 97%;
    content: "";
    height: 15px;
    bottom: -15px;
    margin: 0 auto;
    position: absolute;
    border-radius: 10px;
    background-color: #f6f6fa;
}

.instructor-details-img {
    width: 370px;
    height: 370px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 100%;
    box-shadow: 0px 6px 42px 0px rgba(4, 4, 97, 0.12);
}

.instructor-details-text {
    padding-top: 10px;
}

.instructor-details-name-social h3 {
    color: #000000;
    font-size: 30px;
    font-weight: 700;
    padding-bottom: 5px;
}

.instructor-details-name-social span {
    font-size: 18px;
    font-weight: 700;
    font-family: "Fira Sans", sans-serif;
}

.instructor-details-name-social .instructor-details-social {
    margin-top: 10px;
}

.instructor-details-name-social .instructor-details-social a {
    font-size: 18px;
    margin-right: 15px;
}

.instructor-details-name-social .instructor-details-social a:nth-child(1) {
    color: #3b5998;
}

.instructor-details-name-social .instructor-details-social a:nth-child(2) {
    color: #1da1f2;
}

.instructor-details-name-social .instructor-details-social a:nth-child(3) {
    color: #0077b5;
}

.instructor-details-name-social .instructor-details-social a:nth-child(4) {
    color: #5973e9;
}

.instructor-details-profile {
    width: 270px;
    padding: 18px;
    border-radius: 3px;
    border: 2px solid #d1d1d3;
}

.instructor-details-profile span {
    display: block;
    margin-bottom: 5px;
}

.instructor-details-profile span b {
    color: #000;
}

.instructor-details-profile span:last-child {
    margin-bottom: 0;
}

.instructor-details-profile span i {
    margin-right: 10px;
    color: #ff5520;
}

.instructor-details-content-text {
    margin-top: 35px;
}

.instructor-details-content-text p {
    margin-bottom: 30px;
}

.instructor-details-content-text .instructor-details-btn {
    color: #000;
    height: 45px;
    width: 150px;
    font-size: 15px;
    font-weight: 700;
    line-height: 40px;
    border-radius: 30px;
    border: 2px solid #ff5520;
    transition: 0.3s all ease-in-out;
}

.instructor-details-content-text .instructor-details-btn i {
    font-size: 14px;
}

.instructor-details-content-text .instructor-details-btn a {
    width: 100%;
    display: block;
}

.instructor-details-content-text .instructor-details-btn:hover {
    color: #fff;
    background-color: #ff5520;
}

.instructor-popular-section {
    background-color: #f2f2f4;
    padding-bottom: 100px;
}

.instructor-popular-content h2 {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 30px;
}

@media screen and (max-width: 991px) {
    .instructor-details-text {
        margin: 0 auto;
        max-width: 670px;
        margin-top: 40px;
    }
}

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

    .instructor-details-profile,
    .instructor-details-name-social {
        width: 100%;
        float: none !important;
    }

    .instructor-details-name-social {
        margin-bottom: 30px;
    }

    .instructor-details-img {
        width: 100%;
        height: 100%;
    }
}

.zt-instructor-section-wrap {
    padding: 120px 0px;
    background-color: #f1f1f3;
}

.zt-instructor-section-wrap .zt-section-title h2 {
    padding-bottom: 0;
}

.zt-instructor-section-wrap .zt-section-title span {
    color: #ff5520;
}

.zt-instructor-section-wrap .zt-section-title span:after,
.zt-instructor-section-wrap .zt-section-title span:before {
    background-color: #ff5520;
}

#zt-instructor-slider .owl-stage-outer {
    overflow: visible;
}

#zt-instructor-slider .owl-item {
    opacity: 0;
    transition: opacity 500ms;
}

#zt-instructor-slider .owl-item.active {
    opacity: 1;
}

#zt-instructor-slider .owl-nav {
    right: 0;
    top: -60px;
    cursor: pointer;
    position: absolute;
}

#zt-instructor-slider .owl-nav .owl-next,
#zt-instructor-slider .owl-nav .owl-prev {
    width: 60px;
    height: 60px;
    font-size: 18px;
    line-height: 60px;
    margin-left: 25px;
    text-align: center;
    border-radius: 100%;
    display: inline-block;
    border: 2px solid #ff5520;
    transition: 0.3s all ease-in-out;
}

#zt-instructor-slider .owl-nav .owl-next:hover,
#zt-instructor-slider .owl-nav .owl-prev:hover {
    color: #fff;
    background-color: #ff5520;
}

/*---------------------------------------------------- */
/*FAQ area*/
/*----------------------------------------------------*/
.faq-accordion .accordion-item .accordion-header {
    background-color: transparent;
    border: 1px solid #ff5520;
    position: relative;
}

.faq-main-section {
    padding: 120px 0px;
}

.zt-faq-tab-btn {
    text-align: center;
    padding-bottom: 45px;
}

.zt-faq-tab-btn .nav {
    display: inherit;
}

.zt-faq-tab-btn .nav-tabs .nav-item {
    margin: 0;
}

.zt-faq-tab-btn .nav-tabs .nav-item.show .nav-link,
.zt-faq-tab-btn .nav-tabs .nav-link.active,
.zt-faq-tab-btn .nav-tabs,
.zt-faq-tab-btn .nav-tabs .nav-link {
    border: none;
}

.zt-faq-tab-btn .nav-tabs .nav-link {
    border-radius: 0;
}

.zt-faq-tab-btn .nav-tabs .nav-link.active {
    color: #fff;
    background-color: #ff5520;
}

.zt-faq-tab-btn .faq-tab-btn-area {
    overflow: hidden;
    border-radius: 30px;
    display: inline-block;
    border: 1px solid #e5e5e5;
}

.zt-faq-tab-btn li {
    float: left;
}

.zt-faq-tab-btn li a {
    color: #000;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 40px;
    position: relative;
}

.zt-faq-tab-btn li a:after {
    top: 0;
    right: 0;
    width: 1px;
    content: "";
    height: 100%;
    position: absolute;
    background-color: #e5e5e5;
}

.zt-faq-tab-btn li:last-child a:after {
    display: none;
}

.zt-faq-que-ans-content {
    max-width: 530px;
    margin-bottom: 30px;
}

.zt-faq-que-ans-content h3 {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 16px;
}

.zt-faq-que-ans-content p {
    color: #555555;
}

@media screen and (max-width: 767px) {
    .faq-main-section {
        padding: 60px 0px;
    }

    .zt-faq-tab-btn li a {
        font-size: 14px;
        padding: 5px 15px;
    }
}

@media screen and (max-width: 480px) {
    .zt-faq-tab-btn .faq-tab-btn-area {
        border-radius: 0px;
    }
}

/*---------------------------------------------------- */
/*masonry grid and grid item card style*/
/*----------------------------------------------------*/
.image-text-card,
.image-text-card .img,
.image-text-card .img a,
.image-text-card .img img,
.image-text-card .content {
    display: block;
    width: 100%;
    position: relative;
}

.image-text-card .img::before {
    content: "";
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    width: 0%;
    height: 100%;
    transition: 0.4s all ease-in-out;
    background-color: rgba(255, 83, 31, 0.75);
    z-index: 3;
}

.image-text-card:hover .img::before {
    right: 0;
    left: auto;
    width: 100%;
}

.image-text-card .img a::before {
    content: "\f002";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s all ease-in-out;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #fff;
    font-size: 30px;
    visibility: hidden;
    z-index: 4;
}

.image-text-card:hover .img a::before {
    visibility: visible;
}

/*.image-text-card .img a::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 4px;
  height: 0px;
  margin: 0 auto;
  border-radius: 30px;
  background-color: #fff;
  transform: translateY(-50%);
  transition: 0.3s all ease-in-out;
  z-index: 4;
}
.image-text-card:hover .img a::before{
  height: 40px;
}
.image-text-card .img a::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 0px;
  height: 4px;
  margin: 0 auto;
  border-radius: 30px;
  background-color: #fff;
  transform: translateY(-50%);
  transition: 0.3s all ease-in-out;
  z-index: 4;
}
.image-text-card:hover .img a::after{
  width: 40px;
}*/
.image-text-card .img a img {
    z-index: 1;
}

.image-text-card {
    background: #ffffff;
    padding: 10px;
    box-shadow: 2px 2px 4px 0 #ccc;
}

.image-text-card .content {
    padding-top: 5px;
}

.image-text-card .content p {
    margin: 0;
    text-align: center;
    line-height: 20px;
}

.masonry-grid {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
    -webkit-column-gap: 1em;
    -moz-column-gap: 1em;
    column-gap: 1em;
    margin: 1.5em;
    padding: 0;
}

.masonry-grid .grid-item {
    display: inline-block;
    margin: 0 0 1.5em;
    -webkit-transition: 1s ease all;
    -moz-transition: 1s ease all;
    transition: 1s ease all;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media only screen and (max-width: 320px) {
    .masonry-grid {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
}

@media only screen and (min-width: 321px) and (max-width: 768px) {
    .masonry-grid {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1200px) {
    .masonry-grid {
        -moz-column-count: 3;
        -webkit-column-count: 3;
        column-count: 3;
    }
}

@media only screen and (min-width: 1201px) {
    .masonry-grid {
        -moz-column-count: 4;
        -webkit-column-count: 4;
        column-count: 4;
    }
}

/*---------------------------------------------------- */
/*icon text card*/
/*----------------------------------------------------*/
.zt-icon-text-overlay-card {
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px;
    text-align: center;
    background: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: relative;
}

.zt-icon-text-overlay-card .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.zt-icon-text-overlay-card .icon img {
    display: block;
    margin: 0 auto;
}

.zt-icon-text-overlay-card .overlay-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    padding: 10px;
    background: rgba(255, 85, 32, 0.7);
    transition: 0.3s all ease-in-out;
    opacity: 0;
}

.zt-icon-text-overlay-card:hover .overlay-content {
    width: 100%;
    left: 0;
    opacity: 1;
    transition: 0.3s all ease-in-out;
}

.zt-icon-text-overlay-card .overlay-content a {
    display: block;
    color: #fff;
    line-height: 20px;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

/*---------------------------------------------------- */
/*gallery area*/
/*----------------------------------------------------*/
.zt-photo-gallery-section {
    padding: 120px 0px;
}

.zt-photo-filter-btn {
    margin-bottom: 45px;
}

.zt-photo-filter-btn button {
    padding: 0;
    color: #000;
    border: none;
    margin: 0px 22px;
    font-weight: 700;
    font-style: 18px;
    background-color: transparent;
}

.zt-photo-filter-btn button.is-checked {
    color: #ff5520;
}

.grid-size-33 {
    width: 33.33%;
}

.zt-photo-gallery-area {
    margin-bottom: 50px;
}

.zt-photo-gallery-area .grid-sizer {
    width: 33.33%;
}

.zt-photo-gallery-area .filtr-container-area {
    margin: 0px -5px;
}

.photo-gallery-innerbox {
    padding: 5px;
}

.photo-gallery-innerbox .photo-gallery-img-item {
    overflow: hidden;
    border-radius: 10px;
}

.photo-gallery-innerbox .photo-gallery-img-item:before {
    top: 0;
    left: auto;
    right: 0;
    width: 0%;
    content: "";
    height: 100%;
    position: absolute;
    transition: 0.4s all ease-in-out;
    background-color: rgba(255, 83, 31, 0.75);
}

.photo-gallery-innerbox .zt-photo-popup {
    height: 100%;
    width: 100%;
    position: absolute;
}

.photo-gallery-innerbox .zt-photo-popup:before,
.photo-gallery-innerbox .zt-photo-popup:after {
    top: 50%;
    left: 0;
    right: 0;
    z-index: 2;
    width: 4px;
    content: "";
    height: 0px;
    margin: 0 auto;
    border-radius: 30px;
    position: absolute;
    background-color: #fff;
    transform: translateY(-50%);
    transition: 0.3s all ease-in-out;
}

.photo-gallery-innerbox .zt-photo-popup:after {
    width: 0px;
    height: 4px;
}

.photo-gallery-innerbox:hover .zt-photo-popup:after {
    width: 60px;
}

.photo-gallery-innerbox:hover .zt-photo-popup:before {
    height: 60px;
}

.photo-gallery-innerbox:hover .photo-gallery-img-item:before {
    right: 0;
    left: auto;
    width: 100%;
}

@media screen and (max-width: 540px) {
    .grid-size-33 {
        width: 100%;
    }
}

.not-found-section {
    padding: 120px 0px;
}

.not-found-content {
    margin: 0 auto;
    max-width: 520px;
}

.not-found-content span {
    color: #000;
    font-size: 36px;
    display: block;
    font-weight: 700;
    line-height: 1.333;
    margin-bottom: 20px;
}

.not-found-content a {
    color: #000;
    font-weight: 700;
}

.not-found-content a i {
    color: #f76652;
    margin-left: 5px;
}

.not-found-content .error-img {
    margin-top: 60px;
}

.zt-login-modal .modal-content {
    border: none;
    overflow: hidden;
    border-radius: 0.5rem;
}

.zt-login-modal .modal-dialog {
    max-width: 570px;
    -webkit-transform: translate(0, 20dvh);
    transform: translate(0, 20dvh) !important;
}

.zt-login-modal .modal-body {
    padding: 3rem;
}

.zt-modal-header {
    z-index: 1;
    padding: 30px 0px;
}

.zt-modal-header:after {
    top: 0;
    z-index: -1;
    width: 100%;
    content: "";
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 255, 0.7);
}

.zt-modal-header p {
    color: #fff;
    font-size: 15px;
    padding-top: 15px;
}

.zt-modal-header .zt-login-head {
    margin: 0 auto;
    max-width: 310px;
}

.zt-modal-signup-login-tab .zt-faq-tab-btn {
    padding-bottom: 30px;
}

.zt-modal-signup-login-tab p {
    color: #555555;
}

.zt-modal-signup-login-tab p a {
    color: #000;
    font-weight: 700;
}

.zt-login-content,
.zt-sign-up-content {
    max-width: 370px;
    margin: 0 auto;
}

.zt-login-content input,
.zt-sign-up-content input {
    width: 100%;
    height: 50px;
    border: none;
    padding-left: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: #efeff0;
}

.zt-login-content input:placeholder,
.zt-sign-up-content input:placeholder {
    color: #555555;
}

.zt-login-content .zt-login-label,
.zt-sign-up-content .zt-login-label {
    text-align: left;
}

.zt-login-content .zt-login-label span,
.zt-sign-up-content .zt-login-label span {
    float: left;
    color: #555555;
}

.zt-login-content .zt-login-label a,
.zt-sign-up-content .zt-login-label a {
    color: #000;
    float: right;
    font-weight: 700;
}

.zt-login-content .zt-login-label input,
.zt-sign-up-content .zt-login-label input {
    width: 15px;
    height: 15px;
    margin-right: 12px;
}

.zt-login-content button,
.zt-sign-up-content button {
    color: #fff;
    width: 100%;
    height: 50px;
    border: none;
    font-weight: 700;
    border-radius: 10px;
    margin-bottom: 15px;
    background-color: #ff5520;
}

.zt-sign-up-content {
    max-width: 470px;
}

.zt-sign-up-content input {
    width: 45%;
    float: left;
    margin: 0px 10px 20px;
}

.zt-sign-up-content button {
    width: 90%;
    margin-top: 20px;
}

.zt-sign-up-content .zt-login-label input {
    margin: 5px 10px 0px 10px;
}

/*---------------------------------------------------- */
/*contact area*/
/*----------------------------------------------------*/
#yl_map {
    height: 410px;
}

.zt-googlemap {
    padding: 100px 0px 0px;
    background-color: #f2f2f4;
}

.contact-content-section {
    padding: 100px 0px;
    background-color: #f2f2f4;
}

.zt-contact-content-wrap {
    margin-top: 40px;
}

.zt-contact-content-inner {
    padding: 50px;
    border-radius: 10px;
    background-color: #fff;
}

.zt-contact-content-inner .zt-contact-content-icon {
    margin-bottom: 28px;
}

.zt-contact-content-inner .zt-contact-content-text h3 {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 10px;
}

.zt-contact-content-inner .zt-contact-content-text span {
    display: block;
    font-size: 18px;
}

.zt-contact-form-wrap {
    margin-top: 90px;
}

.zt-contact-form-wrap h3 {
    color: #000;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 35px;
}

.zt-contact-form-area {
    padding: 40px;
    background-color: #fff;
}

.zt-contact-form-area .zt-contact-form-input {
    flex-wrap: wrap;
    margin: 0px -15px;
}

.zt-contact-form-area .zt-contact-form-input input {
    height: 50px;
    width: 340px;
    border: none;
    margin: 0px 15px;
    padding-left: 20px;
    border-radius: 8px;
    background-color: #efeff0;
}

.zt-contact-form-area textarea {
    width: 100%;
    border: none;
    height: 170px;
    padding: 20px;
    margin-top: 30px;
    border-radius: 8px;
    background-color: #efeff0;
}

.zt-contact-form-area button {
    color: #fff;
    width: 100%;
    border: none;
    height: 50px;
    margin-top: 20px;
    border-radius: 8px;
    font-weight: 700;
    background-color: #ff5520;
}

.zt-contact-form-area button i {
    margin-left: 10px;
}

@media screen and (max-width: 991px) {
    .zt-contact-form-area .zt-contact-form-input input {
        margin-bottom: 10px;
    }

    .zt-contact-content-inner {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 800px) {
    .zt-contact-form-area .zt-contact-form-input input {
        width: 100%;
    }
}

@media screen and (max-width: 570px) {
    .zt-googlemap {
        padding: 50px 0px 0px;
    }

    .zt-contact-form-wrap {
        margin-top: 20px;
    }

    .zt-contact-form-wrap h3 {
        font-size: 30px;
    }

    .zt-contact-form-area {
        padding: 40px 15px;
    }
}

/*---------------------------------------------------- */
/*Search Course area*/
/*----------------------------------------------------*/
.zt-course-search-section-3 {
    padding: 110px 0px;
}

.search-form-wrap {
    margin: 0 auto;
    max-width: 750px;
    margin-top: 30px;
}

.search-form-wrap input {
    width: 100%;
    height: 60px;
    border: none;
    padding-left: 30px;
    border-radius: 7px;
    box-shadow: 0px 6px 38px 0px rgba(0, 0, 0, 0.07);
}

.search-form-wrap button {
    top: 0;
    right: 0;
    color: #fff;
    border: none;
    height: 60px;
    width: 150px;
    font-weight: 700;
    position: absolute;
    border-radius: 7px;
    background-color: #ff5520;
}

.zt-fun-fact-wrapper {
    padding-top: 60px;
}

.zt-fun-fact-inner .zt-fun-fact-icon {
    line-height: 1;
    margin-right: 20px;
    padding-right: 20px;
}

.zt-fun-fact-inner .zt-fun-fact-icon i {
    color: #ff5520;
    font-size: 50px;
}

.zt-fun-fact-inner .zt-fun-fact-icon:after {
    top: 5px;
    right: 0;
    height: 40px;
    width: 2px;
    content: "";
    position: absolute;
    background-color: #f2f2f4;
}

.zt-fun-fact-inner .zt-fun-fact-text span,
.zt-fun-fact-inner .zt-fun-fact-text strong {
    line-height: 1;
    font-size: 25px;
    font-weight: 700;
    font-family: "Fira Sans", sans-serif;
}

.zt-fun-fact-inner .zt-fun-fact-text strong {
    top: 2px;
    position: relative;
}

/*---------------------------------------------------- */
/*Shop area*/
/*----------------------------------------------------*/
.zt-product-wrap {
    margin: 0 auto;
    max-width: 370px;
    margin-bottom: 30px;
}

.zt-product-wrap .zt-product-img {
    overflow: hidden;
    background-color: #f1f1f3;
}

.zt-product-wrap .zt-product-img .zt-product-cart {
    top: 20px;
    right: 20px;
    width: 40px;
    color: #fff;
    height: 40px;
    line-height: 40px;
    transform: scale(0);
    position: absolute;
    text-align: center;
    border-radius: 100%;
    background-color: #ff5520;
    transition: 0.4s all ease-in-out;
}

.zt-product-wrap .zt-product-img:before {
    content: "";
    opacity: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    transition: 0.4s all ease-in-out;
}

.zt-product-wrap .zt-product-text {
    margin-top: 20px;
}

.zt-product-wrap .zt-product-text h3 {
    color: #000;
    float: left;
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 5px;
}

.zt-product-wrap .zt-product-text .zt-product-price {
    float: right;
}

.zt-product-wrap .zt-product-text .zt-product-price span {
    line-height: 1;
    font-size: 20px;
    font-weight: 700;
    color: #ff5520;
    font-family: "Fira Sans", sans-serif;
}

.zt-product-wrap .zt-product-text .zt-product-price span del {
    color: #53536c;
    font-size: 16px;
}

.zt-product-wrap:hover .zt-product-cart {
    transform: scale(1);
}

.zt-product-wrap:hover .zt-product-img:before {
    opacity: 1;
    visibility: visible;
}

.zt-shop-wrap-section {
    padding-bottom: 100px;
}

.zt-product-content {
    margin-top: 40px;
}

.zt-shop-btn {
    color: #fff;
    width: 150px;
    height: 50px;
    margin: 0 auto;
    margin-top: 40px;
    font-weight: 700;
    line-height: 50px;
    border-radius: 5px;
    background-color: #ff5520;
}

.zt-shop-btn a {
    width: 100%;
    display: block;
}

/*---------------------------------------------------- */
/*counter area*/
/*----------------------------------------------------*/
.zt-counter-section {
    padding: 100px 0px;
    background: fixed;
}

.zt-counter-section .bg-overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(2, 16, 46, 0.85);
}

.zt-counter-icon-text .zt-counter-icon {
    padding-top: 5px;
    margin-right: 15px;
}

.zt-counter-icon-text .zt-counter-text {
    overflow: hidden;
}

.zt-counter-icon-text .zt-counter-text span {
    color: #fff;
    line-height: 1;
    font-size: 36px;
    font-weight: 700;
}

.zt-counter-icon-text .zt-counter-text strong {
    font-size: 24px;
    color: #ff3614;
}

.zt-counter-icon-text .zt-counter-text p {
    color: #98a5c2;
}

@media screen and (max-width: 991px) {
    .zt-counter-icon-text {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 420px) {
    .zt-counter-section {
        padding: 50px 0px;
    }
}

/*---------------------------------------------------- */
/*CTA area*/
/*----------------------------------------------------*/
.zt-cta-section-4 {
    overflow: visible;
}

.zt-cta-content-4 {
    margin: 0 auto;
    max-width: 975px;
}

.zt-cta-contact-4 {
    width: 50%;
    padding: 40px;
    background-color: #eaecf0;
}

.zt-cta-contact-4 .zt-cta-img-4 {
    bottom: 0;
    left: 10px;
    position: absolute;
}

.zt-cta-contact-4 .zt-cta-contact-text {
    float: right;
    max-width: 260px;
}

.study-material .zt-cta-contact-4 .zt-cta-contact-text {
    float: none;
    max-width: 100%;
    text-align: center;
}

.zt-cta-section-4.study-material {
    padding: 40px 0 40px 0;
}

.zt-cta-section-4.study-material .zt-feature-innerbox {
    background-color: #fff;
}

.zt-cta-contact-4 .zt-cta-contact-text h3 {
    color: #07173a;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.364;
}

.zt-cta-contact-4 .zt-cta-contact-text a {
    color: #fff;
    width: 130px;
    height: 45px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    line-height: 45px;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
    background-color: #07173a;
}

.zt-cta-register-4 {
    width: 50%;
}

.zt-cta-register-4 .zt-cta-register-text {
    margin: 0 auto;
    max-width: 325px;
    padding-top: 65px;
}

.zt-cta-register-4 .zt-cta-register-text h3 {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.385;
    padding-bottom: 20px;
}

.zt-cta-register-4 .zt-cta-register-text a {
    font-weight: 700;
    color: #ff3614;
    font-size: 15px;
}

@media screen and (max-width: 767px) {
    .zt-cta-contact-4 .zt-cta-img-4 {
        display: none;
    }
}

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

    .zt-cta-contact-4,
    .zt-cta-register-4 {
        width: 100%;
    }

    .zt-cta-contact-4 .zt-cta-contact-text {
        max-width: 100%;
        text-align: center;
    }

    .zt-cta-content-4 {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 680px) {
    .zt-cta-register-4 .zt-cta-register-text {
        padding: 40px;
    }
}

/*---------------------------------------------------- */
/*Footer area*/
/*----------------------------------------------------*/
.zt-footer-section {
    padding-top: 80px;
}

.zt-footer-copyright {
    padding: 10px 0px;
}

.zt-footer-copyright span {
    font-size: 15px;
    color: #000000;
}

.zt-footer-section-2.footer-style-2 .zt-footer-copyright span {
    color: #ffffff;
}

.zt-footer-copyright span a {
    color: #ff5520;
}

.zt-footer-content-wrap {
    padding-bottom: 30px;
    border-bottom: 2px solid #f7f7f7;
}

.zt-footer-section-2.footer-style-2 .zt-footer-content-wrap {
    border-bottom: 1px solid #555;
}

.zt-footer-widget .widget-title {
    color: #444;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    margin-bottom: 25px;
}

.zt-footer-section-2.footer-style-2 .zt-footer-widget .widget-title {
    color: #ffffff;
}

.zt-footer-widget .widget-title:before {
    left: 0;
    height: 3px;
    width: 30px;
    content: "";
    bottom: -12px;
    position: absolute;
    background-color: #ff5520;
}

.zt-footer-widget .zt-footer-logo-widget .zt-footer-logo {
    padding-bottom: 18px;
}

.zt-footer-widget .zt-footer-logo-widget p {
    color: #444;
    padding-bottom: 35px;
}

.zt-footer-section-2.footer-style-2 .zt-footer-widget .zt-footer-logo-widget p {
    color: #ffffff;
}

.zt-footer-widget .zt-footer-logo-widget .footer-logo-btn {
    color: #fff;
    height: 35px;
    width: 100px;
    font-size: 14px;
    font-weight: 700;
    line-height: 35px;
    overflow: hidden;
    display: inline-block;
    background-color: #ff5520;
    transition: 0.3s all ease-in-out;
}

.zt-footer-widget .zt-footer-logo-widget .footer-logo-btn:after {
    background-color: #fff;
}

.zt-footer-widget .zt-footer-logo-widget .footer-logo-btn:hover {
    color: #000;
}

.zt-footer-widget .zt-footer-newslatter-widget p {
    color: #9d9d9d;
}

.zt-footer-widget .zt-footer-newslatter-widget form {
    margin-top: 30px;
    position: relative;
}

.zt-footer-widget .zt-footer-newslatter-widget input {
    height: 45px;
    width: 100%;
    padding-left: 20px;
    border: 2px solid #313131;
    background-color: transparent;
}

.zt-footer-widget .zt-footer-newslatter-widget input::placeholder {
    color: #fff;
    font-size: 14px;
}

.zt-footer-widget .zt-footer-newslatter-widget button {
    top: 0;
    right: 0;
    width: 60px;
    padding: 0;
    color: #fff;
    height: 45px;
    border: none;
    position: absolute;
    background-color: #ff5520;
    transition: 0.3s all ease-in-out;
}

.zt-footer-widget .zt-footer-newslatter-widget button:hover {
    background-color: #fff;
    color: #000;
}

.zt-footer-widget .zt-footer-newslatter-widget .zt-footer-social {
    margin-top: 22px;
}

.zt-footer-widget .zt-footer-newslatter-widget .zt-footer-social li {
    margin-right: 15px;
}

.zt-footer-widget .zt-footer-newslatter-widget .zt-footer-social li a {
    color: #494949;
    transition: 0.3s all ease-in-out;
}

.zt-footer-widget .zt-footer-newslatter-widget .zt-footer-social li a:hover {
    color: #ff5520;
}

.zt-footer-logo-widget .zt-footer-social a {
    color: #ff5520;
    padding: 0 5px;
}

.zt-footer-widget .zt-footer-info-widget {
    padding-left: 20px;
}

.zt-footer-widget .zt-footer-info-widget ul {
    padding-top: 15px;
}

.zt-footer-widget .zt-footer-info-widget i {
    float: left;
    font-size: 14px;
    margin-top: 5px;
    color: #ff5520;
    margin-right: 10px;
}

.zt-footer-widget .zt-footer-info-widget a {
    color: #444;
    display: inline-block;
    font-size: 14px;
    overflow: hidden;
    max-width: 170px;
}

.zt-footer-section-2.footer-style-2 .zt-footer-widget .zt-footer-info-widget a {
    color: #ffffff;
}

.zt-footer-widget .zt-footer-info-widget ul li.phone-icon-text a:not(:last-child) {
    position: relative;
}

.zt-footer-widget .zt-footer-info-widget ul li.phone-icon-text a:not(:last-child)::after {
    content: "/";
    color: #444;
    font-size: 14px;
    font-weight: 600;
    padding: 0 5px;
    right: 0;
    top: 0;
}

.zt-footer-widget .zt-footer-info-widget ul li.phone-icon-text a .zt-footer-widget .zt-footer-info-widget .office-open-hour {
    margin-top: 10px;
}

.zt-footer-widget .zt-footer-info-widget .office-open-hour span {
    color: #fff;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    text-decoration: underline;
}

.zt-footer-widget .zt-footer-info-widget .office-open-hour p {
    font-size: 14px;
    color: #9d9d9d;
    max-width: 180px;
}

.zt-footer-widget .zt-footer-links-widget ul {
    padding-left: 15px;
    color: #444;
}

.zt-footer-widget .zt-footer-links-widget ul li a {
    color: #444;
}

.zt-footer-section-2.footer-style-2 .zt-footer-widget .zt-footer-links-widget ul li a {
    color: #ffffff;
}

.zt-footer-widget .zt-footer-links-widget ul li a:hover {
    color: #ff5520;
}

.zt-footer-section-2.footer-style-2 .zt-footer-widget .zt-footer-links-widget ul li a:hover,
.zt-footer-section-2.footer-style-2 .zt-footer-widget .zt-footer-links-widget ul li::marker {
    color: #ff5520;
}

.zt-footer-widget .zt-footer-instagram-widget .insta-feed {
    padding-top: 10px;
}

.zt-footer-widget .zt-footer-instagram-widget .insta-feed li {
    float: left;
    width: 75px;
    height: 75px;
    margin-right: 10px;
    margin-bottom: 7px;
    position: relative;
    background-color: #000;
    transition: 0.3s all ease-in-out;
}

.zt-footer-widget .zt-footer-instagram-widget .insta-feed li:before {
    top: 0;
    opacity: 0;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #000;
    transition: 0.3s all ease-in-out;
}

.zt-footer-widget .zt-footer-instagram-widget .insta-feed li i {
    left: 0;
    top: 50%;
    right: 0;
    opacity: 0;
    color: #fff;
    position: absolute;
    text-align: center;
    transform: translateY(-50%);
    transition: 0.3s all ease-in-out;
}

.zt-footer-widget .zt-footer-instagram-widget .insta-feed li:hover:before {
    opacity: 0.7;
}

.zt-footer-widget .zt-footer-instagram-widget .insta-feed li:hover i {
    opacity: 1;
}

/*Footer section 2*/
/*--------------------------*/
.zt-footer-section-2 .zt-footer-content-wrap {
    padding-top: 50px;
}

.zt-footer-section-2 .zt-footer-widget .zt-footer-logo-widget .footer-logo-btn {
    border-radius: 30px;
    background-color: #ff5520;
}

.zt-footer-section-2 .zt-footer-widget .widget-title:before,
.zt-footer-section-2 .zt-footer-widget .zt-footer-newslatter-widget button {
    background-color: #ff5520;
}

.zt-footer-section-2 .zt-footer-widget .zt-footer-newslatter-widget .zt-footer-social li a:hover,
.zt-footer-section-2 .zt-footer-widget .zt-footer-info-widget i {
    color: #ff5520;
}

.zt-footer-social li:not(:last-child) {
    margin-right: 5px;
}

.zt-footer-section-2.footer-style-2 {
    /*background: linear-gradient(90deg, rgba(0,102,204,255) 0%, rgba(0,74,147,255) 35%, rgba(0,74,147,255) 103%);*/
    /*background-image: linear-gradient(to top, #044a8c 0%, #005bea 100%);*/
    background: #1f1f1f;
}

.zt-newslatter-section-2.zt-newslatter-style-2::before {
    background-color: #1f1f1f;
}

/*--------- Bottom Stikcy Contact Section ------------- */
.sticky-bottom-contact-section {
    display: block;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #1f1f1f;
    padding: 5px;
    z-index: 99;
    box-shadow: inset 0px 7px 8px -10px #CCC;
}

.sticky-bottom-contact-section ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.sticky-bottom-contact-section ul li {
    padding: 0 5px;
    color: #ffffff;
}

.sticky-bottom-contact-section ul li i {
    color: #f4511f;
    padding-right: 5px;
}

.sticky-bottom-contact-section ul li i.fa-phone {
    transform: rotate(120deg);
}

@media(max-width:737px) {
    /*.sticky-bottom-contact-section {*/
    /*    display: none;*/
    /*}*/
    
        .sticky-bottom-contact-section ul {
        flex-wrap: wrap;
    }

    .course-details-widget .course-widget-wrap .cd-course-price {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 5px 20px;
    }

    .zt-footer-copyright {
        padding-bottom: 40px;
    }
}

@media(min-width:738px) {
    .zt-footer-copyright {
        margin-bottom: 33px;
    }
}

/*---------------------------------------------------- */
/*Inner Page area*/
/*----------------------------------------------------*/
.zt-inner-page-wrapper {
    display: block;
    width: 100%;
    position: relative;
    padding: 50px 0;
    background-color: #f2f2f4;
}

.zt-inner-page-wrapper .content-wrapper,
.zt-inner-page-wrapper .sidebar-wrapper .sidbar-widget {
    display: block;
    width: 100%;
    position: relative;
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
}

.zt-inner-page-wrapper .sidebar-wrapper .sidbar-widget {
    padding: 10px;
    border-radius: 6px;
}

.sidbar-widget .widget-title {
    display: block;
    margin-bottom: 10px;
    border-bottom: 2px solid #ff5520;
}

.sidbar-widget .widget-title h3 {
    font-size: 20px;
    display: block;
}

.course-list-widget.sidbar-widget ul {
    margin: 0;
    padding: 0;
}

.course-list-widget.sidbar-widget ul li {
    list-style-type: none;
    display: block;
    margin-bottom: 5px;
}

.course-list-widget.sidbar-widget ul li:not(:last-child) {
    padding-bottom: 5px;
    border-bottom: 1px solid #e9e9e9;
}

.course-list-widget.sidbar-widget ul li a {
    color: #000;
    font-weight: 400;
    padding-left: 15px;
    position: relative;
    transition: 0.4s all ease-in-out;
    display: flex;
}

.course-list-widget.sidbar-widget ul li a:hover {
    margin-left: 10px;
}

.course-list-widget.sidbar-widget ul li a::after {
    top: 2px;
    left: 0;
    color: #ff5520;
    font-size: 14px;
    content: "";
    position: absolute;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
}

.zt-courses-offered-section {
    display: block;
    width: 100%;
    position: relative;
    background-color: #f2f2f4;
    padding: 30px 0;
}

.zt-courses-offered-slider .owl-nav .owl-prev,
.zt-courses-offered-slider .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: #ff3614;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
}

.zt-courses-offered-slider .owl-nav .owl-prev {
    left: 0;
}

.zt-courses-offered-slider .owl-nav .owl-next {
    right: 0;
}

.above-footer-sec {
    padding-bottom: 110px;
    margin-bottom: -65px;
}

/*---------------------------------------------------- */
/*Contact Box Style*/
/*----------------------------------------------------*/
.zt-contact-box {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 10px;
    background-color: #ffffff;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    border: 1px solid #ff5520;
}

.zt-contact-box .tag {
    display: block;
    width: fit-content;
    background: #fff;
    font-weight: 500;
    border: 1px solid #ff5520;
    margin: -30px auto 0 auto;
    padding: 5px;
    border-radius: 50px
}

.zt-contact-box .map {
    display: block;
    width: 100%;
    position: relative;
    border: 5px solid #f2f2f4;
}

.zt-contact-box .contact-info {
    display: block;
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.zt-contact-box .contact-info h3.city {
    display: block;
    position: relative;
    width: fit-content;
    margin: 0 auto 10px auto;
    font-size: 20px;
    text-align: center;
    padding-bottom: 5px;
    text-transform: uppercase;
}

.zt-contact-box .contact-info h3.city::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background-color: #ff5520;
}

.zt-contact-box .contact-info p.address {
    text-align: center;
}

.zt-contact-box .contact-info ul {
    padding: 0;
    margin: 0;
}

.zt-contact-box .contact-info ul li {
    list-style: none;
    display: flex;
}

.zt-contact-box .contact-info ul li:not(:last-child) {
    margin-bottom: 5px;
}

.zt-contact-box .contact-info ul li i {
    color: #ff5520;
    width: 16px;
    text-align: center;
    margin-top: 5px;
}

.zt-contact-box .contact-info ul li span.text {
    margin-left: 5px;
}

.zt-contact-box .contact-info ul li span.divider {
    padding: 0 5px;
}

.zt-contact-box .contact-info ul li a:hover {
    color: #ff5520;
}

/*---------------------------------------------------- */
/*Responsive area*/
/*----------------------------------------------------*/
@media screen and (max-width: 5120px) {
    .zt-registration-section:after {
        width: 50%;
    }
}

@media screen and (max-width: 2000px) {
    .zt-registration-section:after {
        width: 54%;
    }
}

@media screen and (max-width: 1800px) {
    .zt-banner-content .zt-banner-img {
        right: -140px;
    }
}

@media screen and (max-width: 1520px) {
    .zt-banner-content .zt-banner-img {
        right: -200px;
    }
}

@media screen and (max-width: 1440px) {
    #zt-main-slider .owl-dots {
        left: 20px;
    }

    .zt-banner-content .zt-banner-img {
        width: 50%;
        right: 0;
    }

    .zt-banner-text {
        max-width: 540px;
    }
}

@media screen and (max-width: 1199px) {
    #zt-main-slider .owl-dots {
        left: 0;
        right: 0;
        top: auto;
        bottom: 30px;
        text-align: center;
        transform: translateY(0);
    }

    #zt-main-slider .owl-dots .owl-dot {
        display: inline-block;
        margin: 0px 3px;
    }

    .zt-main-navigation li {
        margin-right: 45px;
    }

    .banner-search-select {
        text-align: center;
    }
}

@media screen and (max-width: 1024px) {
    .zt-header-top-cta li {
        padding-left: 50px;
    }

    .zt-main-navigation li {
        margin-right: 45px;
    }

    .zt-section-title h2 {
        font-size: 35px;
    }

    .zt-blog-img-text .zt-blog-title h3 {
        font-size: 20px;
    }

    .zt-banner-content .zt-banner-img {
        width: 45%;
        top: 240px;
    }

    .zt-category-img-text .zt-category-text h3 {
        font-size: 20px;
    }

    .zt-popular-course-img-text {
        padding: 25px 15px;
    }

    .zt-popular-course-img-text .popular-course-fee strong {
        font-size: 20px;
    }

    .zt-popular-course-img-text .popular-course-fee span,
    .zt-popular-course-img-text .popular-course-fee del {
        font-size: 16px;
    }

    .zt-popular-course-img-text .popular-course-title .zt-course-meta a {
        margin-right: 5px;
    }

    .zt-popular-course-img-text .popular-course-rate .p-course-btn {
        display: none;
    }

    .zt-banner-content .zt-banner-img {
        right: -60px;
    }
}

@media screen and (max-width: 991px) {
    .zt-header-menu-wrap {
        display: none;
    }

    .header-style-two .zt-main-navigation {
        display: none;
    }

    .zt-mobile_menu_button {
        display: block;
    }

    .zt-header-top {
        padding-bottom: 0;
    }

    .zt-sticky-menu {
        top: 0;
    }

    .zt-promo-section {
        margin-top: -65px;
    }

    .zt-inner-onepage-navigation.sticky-top {
        top: 60px;
    }

    .zt-feature-innerbox {
        margin-bottom: 30px;
    }

    .zt-about-video-area {
        margin: 0 auto;
        max-width: 570px;
    }

    #zt-department-slider-id .owl-nav,
    #zt-blog-slider-id .owl-nav {
        position: static;
        margin-top: 30px;
        text-align: center;
    }

    #zt-department-slider-id .owl-nav .owl-next,
    #zt-department-slider-id .owl-nav .owl-prev,
    #zt-blog-slider-id .owl-nav .owl-next,
    #zt-blog-slider-id .owl-nav .owl-prev {
        height: 45px;
        width: 45px;
        line-height: 45px;
    }

    .zt-course-filter-wrap .grid-size-25,
    .zt-course-filter-wrap .grid-sizer {
        width: 33.33%;
    }

    .zt-registration-section:after {
        display: none;
    }

    .zt-registration-text-wrap {
        padding-left: 0;
    }

    .zt-registration-text-wrap a {
        background-color: #000;
    }

    .zt-newslatter-content {
        padding: 0;
    }

    .zt-footer-widget {
        margin-bottom: 30px;
    }

    .zt-footer-widget .zt-footer-info-widget {
        padding-left: 0;
    }

    .zt-newslatter-content .zt-newslatter-form button {
        width: 100px;
    }

    .zt-newslatter-content .zt-newslatter-form {
        padding-left: 0;
    }

    .zt-banner-content .zt-banner-img {
        display: none;
    }

    .zt-banner-text {
        min-width: 100%;
    }

    .header-style-two .zt-header-cart-login {
        padding-right: 2.5rem;
        padding-top: 0.6rem;
    }

    .zt-registration-content-2 .registration-side-img {
        display: none;
    }

    .zt-registration-content-2:before {
        width: 100%;
    }

    .zt-popular-course-img-text .popular-course-rate .p-course-btn {
        display: block;
    }

    .header-style-three .zt-main-navigation {
        display: none;
    }

    .header-style-three .zt-header-cart-login {
        margin-right: 35px;
        padding-top: 12px;
    }

    .zt-fun-fact-inner {
        margin-bottom: 20px;
    }

    .zt-footer-widget .zt-footer-info-widget.ul-li ul li {
        display: block;
    }
}

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

    .banner-search-select .banner-search-shape2,
    .banner-search-select .banner-search-shape1 {
        display: none;
    }
}

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

    .zt-course-filter-wrap .grid-size-25,
    .zt-course-filter-wrap .grid-sizer {
        width: 50%;
    }

    .zt-course-img-text {
        margin: 0 auto;
    }

    .zt-popular-course-img-text {
        margin: 0 auto;
        margin-bottom: 30px;
    }

    .banner-search-select .banner-select-option {
        width: inherit;
    }

    .banner-search-select .zt-select-option-wrap {
        float: none;
    }

    .banner-search-select button {
        width: 120px;
    }
}

@media screen and (max-width: 680px) {
    .zt-header-top {
        display: none;
    }

    .slider-main-item .slider-main-text h1 {
        font-size: 50px;
    }

    .slider-main-item .slider-main-text {
        padding-bottom: 150px;
    }

    .zt-newslatter-content .zt-newslatter-form {
        padding-left: 0;
    }

    .zt-newslatter-content .zt-newslatter-form input {
        max-width: 100%;
    }

    .slider-main-item-2 .slider-main-text h1 {
        font-size: 45px;
    }

    .slider-main-item-2 {
        padding: 170px 0px;
    }

    .slider-main-item-2 .slider-main-text a {
        height: 45px;
        width: 145px;
        line-height: 45px;
    }
}

@media screen and (max-width: 480px) {
    .slider-main-item .slider-main-text h1 {
        font-size: 36px;
    }

    .slider-main-item .slider-main-text .slider-main-btn a {
        height: 45px;
        line-height: 45px;
        width: 140px;
    }

    .zt-feature-section {
        padding: 30px 0px 20px;
    }

    .zt-section-title h2 {
        font-size: 26px;
    }

    .zt-about-qoute span {
        font-size: 20px;
    }

    .zt-about-section {
        padding-bottom: 50px;
    }

    .zt-department-section {
        padding: 50px 0px;
    }

    .zt-department-section .zt-department-btn {
        height: 45px;
        font-size: 14px;
        line-height: 45px;
    }

    .zt-course-top .zt-section-title {
        padding-left: 0;
    }

    .zt-course-top .zt-course-title-text {
        padding-left: 0;
    }

    .zt-course-filter-wrap .grid-size-25,
    .zt-course-filter-wrap .grid-sizer {
        width: 100%;
    }

    .zt-course-filter-wrap .zt-course-filter-btn button {
        margin: 5px;
    }

    .zt-course-top .zt-course-title-text {
        margin-top: 0;
    }

    .zt-course-section {
        padding: 50px 0px 35px;
    }

    .zt-registration-countdown-wrap ul li .arch-count-down-number {
        height: 60px;
        width: 60px;
        font-size: 24px;
        line-height: 60px;
    }

    .zt-registration-countdown-wrap ul li .count-unit {
        font-size: 16px;
    }

    .zt-registration-countdown-wrap ul li {
        margin-right: 10px;
    }

    .zt-registration-countdown-wrap {
        margin: 20px 0px;
    }

    .zt-registration-section {
        padding: 50px 0px;
    }

    .zt-blog-section {
        padding: 50px 0px;
    }

    .zt-blog-section .zt-blog-slide-wrap {
        margin-top: 15px;
    }

    .zt-newslatter-content .zt-newslatter-text-icon .zt-newslatter-text h3 {
        font-size: 20px;
    }

    .zt-testimonial-section {
        padding: 50px 0px;
    }

    .banner-search-wrap .banner-search-shape1,
    .banner-search-wrap .banner-search-shape2 {
        display: none;
    }

    .zt-banner-text {
        text-align: center;
        padding: 170px 0px 60px;
    }

    .banner-search-select .banner-select-option {
        width: 120px;
    }

    .banner-search-select {
        padding: 0;
    }

    .banner-search-select .banner-select-option .nice-select {
        font-size: 15px;
        font-weight: normal;
    }

    .banner-search-select button {
        height: 40px;
        width: 110px;
        line-height: 40px;
        margin: 5px 0px 10px;
    }

    .banner-search-wrap {
        position: static;
        text-align: center;
    }

    .zt-banner-text h1 {
        font-size: 36px;
        padding-bottom: 20px;
    }

    .zt-banner-text .zt-banner-tag span {
        padding: 5px 10px;
    }

    .zt-banner-text .zt-banner-tag {
        margin-bottom: 20px;
        background-color: transparent;
    }

    .zt-banner-text p {
        font-size: 18px;
    }

    .zt-banner-text .zt-banner-btn {
        margin-right: 15px;
    }

    .zt-banner-text .zt-banner-btn a {
        height: 45px;
        width: 140px;
        line-height: 45px;
    }

    .zt-banner-text .zt-banner-btn a i {
        display: none;
    }

    .zt-banner-text .zt-banner-play {
        width: 45px;
        height: 45px;
        line-height: 45px;
    }

    .zt-banner-btn-wrap {
        display: flex;
        justify-content: center;
    }

    .zt-banner-section {
        padding-bottom: 20px;
    }

    .zt-category-section {
        padding: 50px 0px;
    }

    .zt-section-title.zt-title-style-two .title-watermark {
        font-size: 60px;
        top: -30px;
    }

    .zt-popular-course-section,
    .zt-testimonial-section-2 {
        padding: 50px 0px;
    }

    .zt-registration-content-2 {
        padding: 20px;
    }

    .zt-registration-content-2 .registration-text-2 h3 {
        font-size: 24px;
    }

    .zt-registration-section-2 {
        padding-top: 30px;
    }

    .zt-category-img-text .zt-category-text h3,
    .zt-blog-img-text-2 .zt-blog-title-text-2 h3 {
        font-size: 20px;
    }

    .zt-newslatter-content .zt-newslatter-form input {
        padding-left: 10px;
    }

    .zt-newslatter-content .zt-newslatter-form input::placeholder {
        font-size: 14px;
    }

    .zt-newslatter-section-2 .zt-newslatter-content {
        padding: 20px;
    }

    .zt-newslatter-content .zt-newslatter-text-icon .zt-newslatter-text span img {
        display: none;
    }

    .zt-banner-text .zt-banner-tag span {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .zt-banner-text .zt-banner-tag {
        padding-right: 0;
    }

    .banner-search-select {
        top: 0;
        margin-bottom: 0;
    }

    .slider-main-item-2 .slider-main-text h1 {
        font-size: 40px;
        padding-bottom: 20px;
    }

    #zt-main-slider-2 .owl-nav .owl-next,
    #zt-main-slider-2 .owl-nav .owl-prev {
        display: none;
    }

    .zt-category-section-2 {
        padding: 50px 0px 30px;
    }

    .zt-course-section-3 {
        padding: 50px 0px 30px;
    }

    .search-form-wrap {
        text-align: center;
    }

    .search-form-wrap button {
        width: 130px;
        height: 45px;
        margin-top: 20px;
        position: static;
    }

    .zt-course-search-section-3 {
        padding: 50px 0px;
    }

    #zt-instructor-slider .owl-nav {
        top: 0;
        position: static;
        margin-top: 60px;
        text-align: center;
    }

    #zt-instructor-slider .owl-nav .owl-next,
    #zt-instructor-slider .owl-nav .owl-prev {
        width: 40px;
        height: 40px;
        line-height: 40px;
        display: inline-block;
    }

    .zt-instructor-section-wrap {
        padding: 50px 0px;
    }

    .zt-ucourse-schedule-wrap-section {
        padding: 50px 0px 20px;
    }
}

@media screen and (max-width: 380px) {
    .slider-main-item .slider-main-text h1 {
        font-size: 30px;
    }

    .zt-section-title h2 {
        font-size: 22px;
    }

    .zt-about-qoute span {
        font-size: 18px;
    }

    .zt-about-qoute .zt-quote-author h4 {
        font-size: 16px;
    }

    .zt-registration-text-wrap h3 {
        font-size: 24px;
    }

    .zt-banner-section .banner-dot-square {
        display: none;
    }
}

@media screen and (max-width: 380px) {
    .zt-newslatter-content .zt-newslatter-text-icon .zt-newslatter-icon i {
        font-size: 45px;
    }

    .zt-registration-countdown-wrap ul li .arch-count-down-number {
        height: 50px;
        width: 50px;
        font-size: 20px;
        line-height: 50px;
    }
}

/*---------------------------------------------------- */
.accordion .accordion-item {
    margin-bottom: 10px;
}

.accordion-header {
    cursor: pointer;
    width: 100%;
    border: none;
    position: relative;
    padding: 10px 15px 10px 25px;
    background-color: #f2f2f4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px !important;
}

.accordion-item .accordion-header::before {
    content: '+';
    position: absolute;
    left: 5px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    ;
    font-size: 24px;
    font-weight: 600;
    color: #ff5520;
}

.accordion-item .accordion-header.active::before {
    content: '-';
    opacity: 1;
}

.accordion-header h3 {
    color: #000;
    float: left;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.accordion-header .cd-curriculam-time-lesson span {
    font-weight: 500;
    margin-left: 10px;
}

.accordion-header .cd-curriculam-time-lesson span a i {
    color: #ff5520;
}

.accordion .accordion-item .accordion-content {
    display: none;
    padding: 20px;
    border: 1px solid #f2f2f4;
}

.accordion .accordion-item .accordion-content .accordion .accordion-item .accordion-content {
    padding: 10px;
}

.accordion .accordion-item .accordion-content ul li {
    margin-bottom: 5px;
}

/*-------- Blogs ---------------*/
.sidebar--two {
    margin-left: 0;
    margin-right: 35px;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
@media (max-width: 991px) {
    .sidebar {
        margin-top: 50px;
    }

    .sidebar--two {
        margin-top: 0;
        margin-bottom: 50px;
    }

}

.sidebar__single+.sidebar__single {
    margin-top: 40px;
}

.sidebar {
    position: relative;
    display: block;
    margin-left: 35px;
}

.sidebar__title-box {
    position: relative;
    display: block;
    margin-bottom: 21px;
}

.sidebar__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
}

.sidebar__search {
    position: relative;
    display: block;
    padding: 30px 30px 30px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.08);
}

.sidebar__search-form {
    position: relative;
    display: block;
}

.sidebar__search-form input[type="search"] {
    display: block;
    outline: none;
    background-color: var(--bixola-primary);
    font-size: 14px;
    font-weight: 400;
    padding-left: 20px;
    height: 48px;
    width: 100%;
    padding-right: 20px;
    border: 1px solid #EAECF0;
    color: #667085;
    border-radius: 6px;
}

.sidebar__search-form button[type="submit"] {
    color: #ffffff;
    font-size: 19px;
    position: absolute;
    top: 0;
    right: -5px;
    max-width: 48px;
    width: 100%;
    bottom: 0;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 6px;
    background-color: var(--bixola-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar__search-form button[type="submit"]:hover {
    background-color: var(--bixola-black);
}

.sidebar__category {
    position: relative;
    display: block;
    padding: 30px 30px 30px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.08);
}

.sidebar__category-list {
    position: relative;
    display: block;
}

.sidebar__category-list li {
    position: relative;
    display: block;
}

.sidebar__category-list li+li {
    margin-top: 10px;
}

.sidebar__category-list li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F8F9FA;
    color: var(--bixola-gray);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 400;
    padding: 6px 17px 7px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar__category-list li a:hover {
    color: #ff5520;
    background-color: rgba(255, 85, 32, 0.10);
}

.sidebar__post {
    position: relative;
    display: block;
    padding: 30px 30px 30px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.08);
}

.sidebar__post .sidebar__title-box {
    margin-bottom: 17px;
}

.sidebar__post-list {
    position: relative;
    display: block;
}

.sidebar__post-list li {
    position: relative;
    display: flex;
    align-items: center;
}

.sidebar__post-list li+li {
    margin-top: 13px;
}

.sidebar__post-image {
    position: relative;
    display: block;
    max-width: 75px;
    width: 100%;
}

.sidebar__post-image img {
    width: 100%;
    border-radius: 4px;
}

.sidebar__post-content {
    position: relative;
    display: block;
    margin-left: 20px;
}

.sidebar__post-title {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    font-family: var(--bixola-font);
}

.sidebar__post-title a {
    color: var(--bixola-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar__post-title a:hover {
    color: var(--bixola-base);
}

.sidebar__post-date {
    font-size: 14px;
    margin-top: 6px;
}

.sidebar__post-date span {
    position: relative;
    margin-right: 10px;
    font-weight: 900;
}

.sidebar__tag {
    position: relative;
    display: block;
    padding: 30px 30px 30px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.08);
}

.sidebar__tag .sidebar__title-box {
    margin-bottom: 11px;
}

.sidebar__tag-list a {
    font-size: 14px;
    color: var(--bixola-gray);
    background-color: #F2F4F7;
    display: inline-block;
    padding: 4px 16px 2px;
    margin-left: 7px;
    letter-spacing: 0.056em;
    line-height: 30px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-radius: 4px;
}

.sidebar__tag-list a+a {
    margin-left: 6px;
    margin-top: 10px;
}

.sidebar__tag-list a:hover {
    background-color: var(--bixola-base);
    color: #ffffff;
}

.sidebar__gallery {
    position: relative;
    display: block;
    padding: 30px 30px 20px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.08);
}


.sidebar__gallery-list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}

.sidebar__gallery-list li {
    position: relative;
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
}

.sidebar__gallery-img {
    position: relative;
    display: block;
    overflow: hidden;
    width: 98px;
    border-radius: 5px;
    z-index: 1;
}

.sidebar__gallery-img:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    border-radius: 5px;
    background-color: rgba(var(--bixola-black-rgb), .30);
    transition: all 700ms ease;
    transform: translateY(-100%);
    z-index: 1;
}

.sidebar__gallery-list li:hover .sidebar__gallery-img:before {
    transform: translateY(0%);
}

.sidebar__gallery-img img {
    width: 100%;
    border-radius: 5px;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

.sidebar__gallery-list li:hover .sidebar__gallery-img img {
    transform: scale(1.1) rotate(2deg);
}

.sidebar__gallery-img a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #ffffff;
    transform: translateY(100px);
    opacity: 0;
    transition: all 700ms ease;
    z-index: 2;
}

.sidebar__gallery-list li:hover .sidebar__gallery-img a {
    transform: translateY(0px);
    opacity: 1;
    transition-delay: 0.3s;
}

.sidebar__gallery-list li .sidebar__gallery-img a:hover {
    color: var(--bixola-base);
}

/*--------------------------------------------------------------
# News One
--------------------------------------------------------------*/
.news-one {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
}

.news-one__shape-1 {
    position: absolute;
    left: 0;
    bottom: 150px;
    z-index: -1;
}

.news-one__shape-1 img {
    width: auto;
}

.news-one__shape-2 {
    position: absolute;
    right: 0;
    top: 40px;
    z-index: -1;
}

.news-one__shape-2 img {
    width: auto;
}

.news-one__shape-3 {
    position: absolute;
    right: 0;
    bottom: 9px;
    z-index: -1;
}

.news-one__shape-3 img {
    width: auto;
}

.news-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
    border-radius: var(--bixola-bdr-radius);
    z-index: 1;
}

.news-one__single::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--bixola-bdr-radius);
    background-color: var(--bixola-white);
    box-shadow: 0px 20px 30px 0px rgba(16, 24, 40, 0.08);
    background-position: center top;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: -1;
}

.news-one__single:hover::before {
    transform: scaleY(1.0);
}

.news-one__img-box {
    position: relative;
    display: block;
}

.news-one__img {
    position: relative;
    display: block;
    border-top-left-radius: var(--bixola-bdr-radius);
    border-top-right-radius: var(--bixola-bdr-radius);
    overflow: hidden;
    z-index: 1;
}

.news-one__img:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background-color: rgba(var(--bixola-black-rgb), .30);
    transition: all 500ms ease;
    transform: translate3d(0px, -100%, 0px);
    z-index: 1;
}

.news-one__single:hover .news-one__img:before {
    transform: translate3d(0px, 0, 0px);
}

.news-one__img img {
    width: 100%;
    border-top-left-radius: var(--bixola-bdr-radius);
    border-top-right-radius: var(--bixola-bdr-radius);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.news-one__single:hover .news-one__img img {
    transform: scale(1.05);
}

.news-one__content {
    position: relative;
    display: block;
    background-color: var(--bixola-white);
    border: 1px solid #EAECF0;
    border-top: 0;
    border-bottom-left-radius: var(--bixola-bdr-radius);
    border-bottom-right-radius: var(--bixola-bdr-radius);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.news-one__single:hover .news-one__content {
    border: 1px solid transparent;
    border-top: 0;
}

.news-one__content-top {
    position: relative;
    display: block;
    padding: 15px;
    border-bottom: 1px solid #EAECF0;
}

.news-one__sub-title {
    color: var(--bixola-base);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.news-one__title {
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    margin-top: 6px;
    margin-bottom: 16px;
}

.news-one__title a {
    color: var(--bixola-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.news-one__title a:hover {
    color: var(--bixola-base);
}

.news-one__person-and-date {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 15px;
}

.news-one__person {
    position: relative;
    display: flex;
    align-items: center;
}

.news-one__person-img {
    position: relative;
    display: block;
}

.news-one__person-img img {
    width: auto;
    border-radius: 50%;
}

.news-one__person-text {
    margin-left: 10px;
}

.news-one__person-text p {
    color: #414651;
    font-size: 14px;
}

.news-one__date {
    position: relative;
    display: flex;
    align-items: center;
}

.news-one__date p {
    color: #ff5520;
    font-size: 14px;
    position: relative;
    margin:0;
}

.news-one__date p span {
    position: relative;
    margin-right: 10px;
    font-size: 16px;
    top: 1px;
}

/*--------------------------------------------------------------
# News Details
--------------------------------------------------------------*/
.news-details {
    position: relative;
    display: block;
    background-color: #F7F9FA;
    padding: 50px 0;
}

.news-details__left {
    position: relative;
    display: block;
    padding: 40px 40px 30px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.08);
    margin-bottom: 60px;
}

.news-details__img {
    position: relative;
    display: block;
}

.news-details__img img {
    width: 100%;
}

.news-details__author-and-meta {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 16px;
}

.news-details__author {
    position: relative;
    display: flex;
    align-items: center;
}

.news-details__author-img {
    position: relative;
    display: block;
    max-width: 36px;
    width: 100%;
}

.news-details__author-img img {
    width: 100%;
    border-radius: 50%;
}

.news-details__author-name {
    margin-left: 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--bixola-black);
}

.news-details__meta {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.news-details__meta p {
    font-size: 16px;
    color: #636466;
    position: relative;
    display: flex;
    align-items: center;
}

.news-details__meta p+p {
    margin-left: 20px;
}

.news-details__meta p span {
    position: relative;
    margin-right: 10px;
}

.news-details__title-1 {
    font-size: 25px;
    font-weight: 700;
    line-height: 35px;
}

.news-details__text-1 {
    color: #4D4E50;
    margin-top: 29px;
    margin-bottom: 22px;
}

.news-details__text-3 {
    margin-top: 22px;
    margin-bottom: 39px;
}

.news-details__text-box {
    position: relative;
    display: block;
    border-radius: 4px;
    background-color: #F7F9FA;
    padding: 50px 50px 44px;
}

.news-details__text-box p {
    font-size: 20px;
    font-style: italic;
    line-height: 34px;
}

.news-details__text-box>span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    padding-left: 47px;
    margin-top: 24px;
}

.news-details__text-box>span::before {
    content: "";
    position: absolute;
    bottom: 16px;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--bixola-base);
}

.news-details__quote {
    position: absolute;
    left: 50px;
    top: 44px;
}

.news-details__quote>span {
    position: relative;
    display: inline-block;
    font-size: 65px;
    color: rgba(var(--bixola-base-rgb), .2);
}

.news-details__title-2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
    margin-top: 42px;
    margin-bottom: 23px;
}

.news-details__text-5 {
    margin-top: 22px;
    margin-bottom: 22px;
}

.news-details__img-2 {
    position: relative;
    display: block;
    margin-top: 39px;
    margin-bottom: 44px;
}

.news-details__img-2 img {
    width: 100%;
}

.news-details__title-3 {
    font-size: 32px;
    font-weight: 700;
    color: #212833;
}

.news-details__text-7 {
    color: #4D4E50;
    margin-top: 31px;
    margin-bottom: 22px;
}

.news-details__text-8 {
    color: #4D4E50;
}

.news-details__text-9 {
    color: #4D4E50;
    margin-top: 22px;
    margin-bottom: 22px;
}

.news-details__text-10 {
    color: #4D4E50;
}

.news-details__tag-and-social {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 37px;
    padding-top: 30px;
}

.news-details__tag-and-social::before {
    content: "";
    position: absolute;
    top: 0;
    left: -40px;
    right: -40px;
    height: 1px;
    background-color: #EAECF0;
}

.news-details__tag {
    position: relative;
    display: flex;
    align-items: center;
}

.news-details__tag>span {
    font-size: 16px;
    color: #4D4E50;
    position: relative;
    margin-right: 10px;
}

.news-details__tag a {
    font-size: 16px;
    color: #4D4E50;
    line-height: 26px;
    letter-spacing: 0.064em;
    background-color: #F7F2F2;
    border-radius: 4px;
    padding: 2px 17px 2px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.news-details__tag a:hover {
    background-color: var(--bixola-base);
    color: var(--bixola-white);
}

.news-details__tag a+a {
    margin-left: 10px;
}

.news-details__social {
    position: relative;
    display: flex;
    align-items: center;
}

.news-details__social>span {
    font-size: 14px;
    color: var(--bixola-gray);
    position: relative;
    margin-right: 10px;
}

.news-details__social>a {
    position: relative;
    font-size: 16px;
    color: #667185;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.news-details__social>a:hover {
    color: var(--bixola-base);
}

.news-details__social>a+a {
    margin-left: 10px;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.news-details__bottom {
    position: relative;
    display: block;
    border-radius: var(--bixola-bdr-radius);
    background-color: var(--bixola-white);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.08);
    padding: 42px 40px 40px;
}

.blog-details__comment-and-form {
    position: relative;
    display: block;
    margin-top: 44px;
}

.comment-one__title,
.comment-form__title {
    margin: 0;
    color: #202124;
    font-size: 24px;
    font-weight: 600;
    border-bottom: 1px solid #E9E9E9;
    padding-bottom: 28px;
    margin-bottom: 40px;
}

.comment-one__single {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
    padding-bottom: 23px;
}

.comment-one__single::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 70px;
    right: 0;
    height: 1px;
    background-color: #E9E9E9;
}

.comment-one__single-2::before {
    left: 0px;
}

.comment-one__single-2 {
    margin-left: 70px;
}

.comment-one__content {
    position: relative;
    margin-left: 20px;
    margin-top: 3px;
}

.comment-one__content h3 {
    font-size: 16px;
    color: var(--bixola-black);
    font-weight: 500;
    font-family: var(--bixola-font);
}

.comment-one__content span {
    color: rgba(var(--bixola-black-rgb), .70);
    font-size: 14px;
    font-weight: 400;
    color: #667085;
}

.comment-one__content p {
    color: #4D4E50;
    margin-top: 11px;
    font-size: 16px;
    line-height: 28px;
}

.comment-one__btn {
    position: absolute;
    top: -1px;
    right: 0;
    font-size: 16px;
    line-height: 23px;
    color: var(--bixola-black);
    font-weight: 500;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: flex;
    align-items: center;
}

.comment-one__btn:hover {
    color: var(--bixola-base);
}

.comment-one__btn>span {
    position: relative;
    font-weight: 900;
    margin-left: 5px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.comment-one__btn:hover span {
    color: var(--bixola-base);
}

.comment-one__image {
    position: relative;
    display: block;
    border-radius: 50%;
}

.comment-one__image img {
    width: auto;
    border-radius: 50%;
}

.comment-form {
    position: relative;
    display: block;
    padding-top: 30px;
}

.comment-form .comment-form__title {
    margin-bottom: 11px;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    border-bottom: none;
    padding-bottom: 0;
}

.comment-form__text {
    font-size: 14px;
    color: #4D4E50;
    line-height: 24px;
    margin-bottom: 43px;
}

.comment-form__input-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
    height: 56px;
    width: 100%;
    outline: none;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
    font-weight: 400;
    color: #667085;
    background-color: transparent;
    display: block;
    border: 1px solid #EAECF0;
    border-radius: 6px;
    font-family: var(--bixola-font-two);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.comment-form__input-box input[type="text"]:focus,
.comment-form__input-box input[type="email"]:focus {
    border: 1px solid #363739;
}

.comment-form__input-box textarea {
    font-size: 14px;
    font-weight: 400;
    color: #667085;
    height: 150px;
    width: 100%;
    padding: 15px 20px 30px;
    outline: none;
    margin-bottom: 0px;
    border: 1px solid #EAECF0;
    background-color: transparent;
    border-radius: 6px;
    font-family: var(--bixola-font-two);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.comment-form__input-box textarea:focus {
    border: 1px solid #363739;
}

.comment-form__input-box-name {
    position: absolute;
    left: 15px;
    top: -6px;
    background-color: var(--bixola-white);
    opacity: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.comment-form__input-box-name p {
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
    color: var(--bixola-black);
    font-family: var(--bixola-font-two);
    padding: 0 7px 0;
}

.comment-form__input-box:hover .comment-form__input-box-name {
    opacity: 1;
}

.comment-form__btn {
    border: none;
    font-size: 16px;
    color: var(--bixola-white);
    background-color: var(--bixola-base);
    border-radius: 5px;
    padding: 8px 32px;
    font-weight: 500;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.comment-form__btn:hover {
    background-color: var(--bixola-black);
    color: var(--bixola-white);
}

.comment-form__input-box.text-message-box {
    height: 150px;
    margin-bottom: 0;
}

.comment-form .checked-box {
    position: relative;
    display: block;
    margin-top: 9px;
    margin-bottom: 24px;
}

.comment-form .checked-box label {
    position: relative;
    display: inline-block;
    padding-left: 25px;
    margin-right: 0px;
    margin-bottom: 0;
    color: #4D4E50;
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    cursor: pointer;
    min-height: 25px;
}

.comment-form .checked-box input[type="checkbox"] {
    display: none;
}

.comment-form .checked-box input[type="checkbox"]+label span {
    position: absolute;
    top: 5px;
    left: 0;
    width: 14px;
    height: 14px;
    vertical-align: middle;
    border: 1px solid #4D4E50;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.comment-form .checked-box label span:before {
    position: absolute;
    top: 1px;
    left: 2px;
    display: block;
    border-bottom: 2px solid #4D4E50;
    border-right: 2px solid #4D4E50;
    content: '';
    width: 5px;
    height: 8px;
    pointer-events: none;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    opacity: 0;
}

.comment-form.checked-box input[type="checkbox"]:checked+label span {
    border-color: #4D4E50;
    ;
}

.comment-form .checked-box input[type="checkbox"]:checked+label span:before {
    opacity: 1;
}

.news-details__title-4 {
    font-size: 36px;
    font-weight: 700;
    line-height: 46px;
    margin-bottom: 60px;
    padding-top: 120px;
}

.overflow-hidden {
    overflow: hidden;
}

.logout-text {
    color: white;

}

.logout-text:hover {
    color: #fd5222;

}

.logout-text-dark {
    color: black;
}

.logout-text-dark:hover {
    color: #fd5222;
}

.zt-sticky-menu .logout-text {
    color: black;

}

.news-one__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2em;
    max-height: 2.4em;
}

.news-one__text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2em;
    max-height: 2.4em;
}

.payment-button {
    float: right;
    display: inline;
}

.payment-button button {
    text-transform: uppercase;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    padding: 0.3rem 1rem;
    text-align: center;
    background-color: #ff5520;
    border: none;
}

.response-section .response-card {
    width: 20rem;
    margin: auto;
}

.response-section .response-card .card {
    border-radius: 1rem;
}

.response-section .response-card .card.alert-danger a {
    border-radius: 0.5rem;
    background-color: #f7d7da;
    color: #711b23;
    font-weight: 500;
    border: 0.1rem solid #711b23;
    transition: all .3s ease-in;
}

.response-section .response-card .card.alert-danger a:hover {
    background-color: #711b23;
    color: white;
    font-weight: 400;
    transition: all .3s ease-in;
}

.response-section .response-card .card.alert-success a {
    border-radius: 0.5rem;
    background-color: #d5eddb;
    color: #195728;
    font-weight: 500;
    border: 0.1rem solid #195728;
    transition: all .3s ease-in;
}

.response-section .response-card .card.alert-success a:hover {
    background-color: #195728;
    color: white;
    font-weight: 400;
    transition: all .3s ease-in;
}

.my-account .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 140px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    left: -7rem;
}

.my-account .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.my-account .dropdown-content a:hover {
    background-color: #ddd;
    color: #fd5222;
}

.my-account:hover .dropdown-content {
    display: block;
}

.my-account .dropbtn i {
    color: white;
}

.my-account {
    position: relative;
}

.header-style-three.zt-sticky-menu .home-icon-user {
    color: #000000 !important;
}

.map iframe {
    height: 250px;
    width: 100%;
}

#checkoutpopup .text {
    margin-top: 0.25rem;
    font-size: 0.9rem;
}

#checkoutpopup .text-heading {
    font-size: 1.2rem;
}

.payment-method .row {
    padding: 0 2rem 1rem 2rem;
}

.payment-method p {
    padding-top: 1rem;
}

.payment-method .row input {
    accent-color: black;
    height: 1rem !important;
    aspect-ratio: 1;
}

.payu-input input {
    margin-top: 42px;
}

.payu-input label {
    margin-left: 10px;
}

.payu-input label img {
    width: 60px;
    margin-top: 18px;
}

.paypal-input input {
    margin-top: 38px;
}

.paypal-input label {
    margin-left: 8px;
}

.stripe-input input {
    margin-top: 40px;
}

.stripe-input label {
    margin-left: 6px;
}

.stripe-input label img {
    width: 80px;
    margin-top: 8px;
}

.list-style-none {
    list-style: none;
}

.login-dropdown {
    left: -110px;
}

.modal-content {
    position: relative;
}

.model-cross {
    color: #fd5222;
    position: absolute;
    top: 1.3rem;
    right: 1.5rem;
    font-size: 1.3rem;
    z-index: 1;
    opacity: 1;
}

.model-cross:hover {
    color: #cf3d14;
    opacity: 1;
}

.btn-orange {
    background-color: #fd5222;
    color: white;
}

.btn-orange:hover {
    background-color: #cf3d14;
    color: white;
}

.btn-blue {
    background-color: #005dba !important;
    border-color: #005dba !important;
    color: white;
}

.btn-blue:hover {
    background-color: #004d9a !important;
}

.batch-label {
    font-weight: 500 !important;
}

.batch-select,
.billing-fields {
    border-radius: 0.5rem;
    border-color: #d6bdb6;
    border-width: 2px;
}

.batch-select:focus,
.batch-select:focus-within,
.billing-fields:focus,
.billing-fields:focus-within {
    border-color: #fd5222;
    border-width: 2px;
}

/* .checkout-section {
    background-color: #f6f6f6;
} */

.bg-orange {
    background-color: #f6f6f6;
}

.text-orange {
    color: #fd5222;
    font-family: 'Roboto';
    font-weight: 700;
}

.payment-select {
    accent-color: #fd5222;
    width: 1rem;
    aspect-ratio: 1;
}

.border-radius-md {
    border-radius: 0.5rem;
    overflow: hidden;
}

.border-rounded {
    border-radius: 0.5rem;
}

.paynow-btn {
    margin: auto;
    width: 0;
    padding: 0.75rem 6rem 0.75rem 2.5rem;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* Ensure it is above other content */
    visibility: visible;
    /* Make sure it is initially visible */
}

/* Styling the email card inside the popup */
.email-card {
    background-color: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.email-card title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.content {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
}

.close-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
}

/* Hover effect for close button */
.close-btn:hover {
    background-color: #0056b3;
}

.loader {
    border: 3px solid #f3f3f3;
    border-top: 3px solid transparent;
    border-radius: 50%;
    width: 1.5rem;
    aspect-ratio: 1;
    animation: spin 2s linear infinite;
    display: inline-block;
    margin-right: 10px;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .text-balance{
    text-wrap: balance;
  }

  .testimonial-content{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2em;
  }
  
  @media (max-width: 735.54px) {
    .course-details-widget .course-widget-wrap .cd-course-price {
        bottom: 62px;
    }
}
.logo-title-card a{
    border:1px solid #ddd;
}
.logo-title-card .title h5{
    font-size:14px;
    line-height:18px;
    font-weight:400;
}
.zt-project-wrapper .section-title h2{
    color:#f4511f;
    font-size:24px;
    line-height:30px;
}
.zt-project-item{
    padding: 10px;
    border: 1px solid #ddd;
}
.zt-project-item h3{
    font-size: 20px;
    line-height:30px;
    color: #f4511f;
}
.zt-project-item h4{
    font-size:18px;
    line-height:28px;
}
.zt-project-item-wrapper .zt-project-item:nth-child(even){
    background-color:#f2f2f4;
}
@media(max-width:767px){
    .zt-project-item-wrapper .zt-project-item .flex-sm-col-reverse{
        flex-direction: column-reverse;
    }
    .zt-project-item-wrapper .zt-project-item img{
        display:block;
        max-width:100%;
        margin:0 auto 10px auto;
    }
    .zsiq-float{
        bottom:60px !important;
    }
}
/*.cheerio-wa-btn{*/
/*    bottom:110px !important;*/
/*}*/