* {
    margin: 0;
    padding: 0;
    overflow: x-hidden;
}
body {
    margin: 0;
    padding: 0;
}
html {
    overflow-x: hidden;
}
p {
    color: #525254;
}
.bg {
    background: #eaeff0;
}
.bg1 {
    background: #3b26fd;
}
.bg2 {
    background: #fff;
}
.input {
    height: 35px;
    width: 280px;
}
.fa1 {
    color: #fff;
    background: linear-gradient(to left, #09f 0, #9cf 100%);
    padding: 9px;
    padding-right: 25px;
    padding-left: 25px;
}
.navbar {
    width: 100%;
    background-color: #f9f9f9;
    border: thin solid #ededed;
    height: 65px;
}

.navbar .logo {
    float: left;
}

#hamburger {
    width: 30px;
    position: relative;
    margin: auto;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

#hamburger span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #333;
    border-radius: 9px;
    opacity: 1;
    left: 7px;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

#hamburger span:nth-child(1) {
    top: 0;
}

#hamburger span:nth-child(2) {
    top: 11px;
}

#hamburger span:nth-child(3) {
    top: 22px;
}

#hamburger.open span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

#hamburger.open span:nth-child(2) {
    opacity: 0;
    left: -30px;
}

#hamburger.open span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.sitenavigation ul {
    margin: 0;
    padding: 0;
    float: right;
}

.sitenavigation li {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    margin-left: -4px;
    line-height: 20px;
}

.sitenavigation li a {
    color: #000000;
    text-decoration: none;
    display: block;
    padding: 11px 14px;
    font-size: 0.9375em;
    -webkit-tap-highlight-color: transparent;
}

.sitenavigation li a.linkclicked,
.sitenavigation li a.nav-path-selected {
    color: #fff;
    background-color: #ececec;
}

.sitenavigation li a.nav-selected {
    background-color: #777;
    color: #000;
}

.sitenavigation li a:hover {
    background-color: #ccc !important;
    color: #000;
}

.sitenavigation li.clicked>ul {
    display: block;
}

.sitenavigation li ul {
    display: none;
    position: absolute;
    min-width: 200px;
    max-width: 300px;
    padding: 0;
    margin: 0;
}

.sitenavigation li ul a {
    background-color: #dfdfdf;
    font-size: 0.8125em;
}

.sitenavigation li ul li {
    float: none;
    display: block;
    margin: 0;
}

.sitenavigation li ul ul {
    left: 100%;
    margin-top: -40px;
}

.sitenavigation li ul ul a {
    background-color: #d3d3d3;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.no-js .sitenavigation li:hover>ul {
    display: block !important;
}

.menu-icon {
    display: none;
}

@media (max-width: 991px) {
    .navbar {
        width: 100%;
        background-color: #f9f9f9;
        border: thin solid #ededed;
        height: 70px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        max-width: 100%;
        z-index: 1;
    }

    .navbar .logo {
        float: right;
        font-weight: 800;
    }

    .navbar .menu-icon {
        width: 30px;
        height: 25px;
        padding-top: 0;
        margin-top: 7px;
        display: block;
        -webkit-tap-highlight-color: transparent;
        padding: 5px;
        padding-top: 1px;
        padding-bottom: 12px;
        margin-bottom: 10px;
        cursor: pointer;
    }

    .navbar .sitenavigation ul {
        display: none;
        max-width: none !important;
    }

    .navbar .sitenavigation li {
        float: none;
        display: block;
        margin: 0;
        padding: 0;
    }

    .navbar .sitenavigation.is-tapped>ul {
        display: block;
        position: absolute;
        margin: 0;
        background-color: #fff;
        right: 0;
        left: 0;
        z-index: 100;
        padding: 0;
    }

    .navbar .sitenavigation.is-tapped>ul a {
        width: 100%;
        margin: 0;
        background-color: #ececec;
        display: block;
        font-size: 1.1875em;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 20px;
        padding-right: 20px;
        height: auto;
        color: #758283;
        float: none;
        border: none !important;
        -webkit-font-smoothing: antialiased;
        -webkit-tap-highlight-color: transparent;
    }

    .navbar .sitenavigation.is-tapped>ul a:hover {
        background-color: #dfdfdf;
    }

    .navbar .sitenavigation.is-tapped>ul li {
        width: 100%;
        background-color: #f7f7f7;
        border-bottom: solid 1px #b9b9b9;
        -webkit-tap-highlight-color: transparent;
    }

    .navbar .sitenavigation.is-tapped>ul li li {
        background-color: #fff;
    }

    .navbar .sitenavigation.is-tapped>ul ul {
        display: none;
        width: 100%;
        z-index: 200;
        border: none;
        margin-left: 0;
        padding: 0;
        position: relative !important;
    }

    .navbar .sitenavigation.is-tapped>ul ul ul {
        clear: both;
        left: 0;
        margin-top: 0;
    }

    .navbar .sitenavigation.is-tapped>ul ul li {
        border-bottom: solid 1px #f9f9f9;
    }

    .navbar .sitenavigation.is-tapped>ul ul li li a {
        background-color: #f9f9f9;
        padding-left: 30px;
    }

    .navbar .sitenavigation.is-tapped>ul ul a {
        background-color: #dfdfdf;
        font-size: 1em;
        padding-left: 20px;
    }

    .navbar .sitenavigation.is-tapped>ul ul a:before {
        content: "- ";
        display: inline-block;
        margin-right: 8px;
        color: #000;
    }

    .navbar .sitenavigation.is-tapped>ul li.nav-dropdown {
        cursor: pointer;
    }

    .navbar .sitenavigation.is-tapped>ul li.nav-dropdown>a {
        width: 80%;
    }

    .navbar .sitenavigation.is-tapped>ul li.nav-dropdown:after {
        content: "\f107";
        font-family: FontAwesome;
        position: absolute;
        color: #000;
        padding: 0;
        display: block;
        width: 20%;
        right: 0;
        margin-top: -40px;
        text-align: center;
        font-size: 16px;
        font-weight: 700;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .navbar .sitenavigation.is-tapped>ul li.expanded:after {
        display: none;
    }

    .navbar .sitenavigation.is-tapped>ul li.expanded li:first-child:before {
        content: "\f106";
        font-family: FontAwesome;
        position: absolute;
        color: #000;
        padding: 0;
        display: block;
        width: 20%;
        right: 0;
        margin-top: -40px;
        text-align: center;
        font-size: 16px;
        font-weight: 700;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.navbar .logo {
    height: 50px;
    padding: 5px;
    width: 200px;
}

.navbar-fixed {
    top: 0;
    z-index: 100;
    position: fixed;
    width: 100%;
}

.logo {
    height: 40px;
    width: 120px;
}

.en {
    background: #278b01;
}

.en1 {
    background: linear-gradient(to right, #8e0e00, #1f1c18);
}

.jumbotron {
    height: 360px;
}

.breadcrumb {
    background: #1276ea;
}

ol.breadcrumb li+li:before {
    padding: 2px;
    content: ">";
}

ol.breadcrumb li a {
    color: #fff;
}

.git {
    color: #d5d8da;
}

.link {
    font-size: 16px;
}

.mb {
    margin-bottom: -50px;
    margin-top: -50px;
}

.img {
    height: 50px;
    width: 120px;
}

@media screen and (max-width: 600px) {
    .img {
        height: 50px;
        width: 120px;
        margin-left: 170px;
        margin-top: 10px;
    }

    .jumbotron {
        margin-top: 4%;
        height: 500px;
    }
}

.star {
    margin-left: 20%;
}

.card-img2 {
    height: 220px;
    margin-left: 80px;
    margin-top: -30px;
}

@media screen and (max-width: 600px) {
    .ml {
        font-size: 25px;
    }
}

@media screen and (max-width: 600px) {
    .se {
        height: 400px;
        width: 300px;
        margin-top: 15%;
    }
}

@media screen and (max-width: 600px) {
    .card-img {
        height: 550px;
        width: 150px;
        margin-top: -30px;
    }
}

.bg3 {
    background: #050505;
    padding: 3px 0;
    text-align: center;
}

@media only screen and (max-width: 746px) {
    .bg3 {
        display: none;
    }

    .se {
        height: 150px;
        width: 200px;
    }

    .card-img {
        height: 140px;
        width: 190px;
        margin-left: 80px;
        margin-top: -30px;
    }
}

.t2 {
    color: #fff;
}

@media only screen and (max-width: 700px) {
    .t2 {
        font-size: 10px;
    }
}

.card3 {
    width: 350px;
    height: 220px;
    background-color: #fff;
    background: linear-gradient(#f8f8f8, #fff);
    box-shadow: 0 8px 16px -8px rgba(0, 0, 0, 0.4);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    margin: 1rem;
}

.card3 h5 {
    text-align: center;
}

.card3 .additional {
    position: absolute;
    width: 100px;
    height: 100%;
    background: #3498db;
    transition: width 0.4s;
    overflow: hidden;
    z-index: 2;
}

.card3.green .additional {
    background: linear-gradient(#92bca6, #a2ccb6);
}

.card3:hover .additional {
    width: 100%;
    border-radius: 0 5px 5px 0;
}

.card3 .additional .user-card {
    width: 150px;
    height: 100%;
    position: relative;
    float: left;
}

.card3 .additional .user-card::after {
    content: "";
    display: block;
    position: absolute;
    top: 10%;
    right: -2px;
    height: 80%;
    border-left: 2px solid rgba(0, 0, 0, 0.025);
}

.card3 .additional .user-card .level,
.card3 .additional .user-card .points {
    top: 15%;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.65em;
    background: rgba(0, 0, 0, 0.15);
    padding: 0.125rem 0.75rem;
    border-radius: 100px;
    white-space: nowrap;
}

.card3 .additional .user-card .points {
    top: 85%;
}

.card3 .additional .user-card svg {
    top: 50%;
}

.card3 .additional .more-info {
    width: 200px;
    float: center;
    position: absolute;
    left: 150px;
    height: 100%;
}

.card3 .additional .more-info h5 {
    color: #fff;
    margin-bottom: 0;
}

.card3.green .additional .more-info h5 {
    color: #224c36;
}

.card3 .additional .coords {
    margin-top: 1rem;
    text-align: center;
    color: #fff;
}

.card3.green .additional .coords {
    color: #325c46;
}

.card3 .additional .stats {
    display: flex;
    position: absolute;
    top: auto;
    color: #fff;
    margin-left: 25%;
}

.card3 .general {
    width: 210px;
    height: 100%;
    position: absolute;
    top: 5%;
    right: 0;
    z-index: 1;
    box-sizing: border-box;
    padding-top: 0;
}

.card3 .general p {
    font-size: 14px;
}

.card3 .general .more {
    width: 200px;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

.im {
    height: 90px;
    width: 90px;
    padding-top: 20%;
}

.blueBg {
    background-color: #1b13f6 !important;
    background-image: #5b9afa;
}

.intro-banner-vdo-play-btn {
    height: 60px;
    width: 60px;
    position: absolute;
    top: 110px;
    left: 50%;
    text-align: center;
    margin: -30px 0 0 -30px;
    border-radius: 100px;
    z-index: 1;
}

.intro-banner-vdo-play-btn i {
    line-height: 56px;
    font-size: 30px;
}

.intro-banner-vdo-play-btn .ripple {
    position: absolute;
    width: 160px;
    height: 160px;
    z-index: -1;
    left: 50%;
    top: 50%;
    opacity: 0;
    margin: -80px 0 0 -80px;
    border-radius: 100px;
    -webkit-animation: ripple 1.8s infinite;
    animation: ripple 1.8s infinite;
}

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

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

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

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

.intro-banner-vdo-play-btn .ripple:nth-child(2) {
    animation-delay: 0.3s;
    -webkit-animation-delay: 0.3s;
}

.intro-banner-vdo-play-btn .ripple:nth-child(3) {
    animation-delay: 0.6s;
    -webkit-animation-delay: 0.6s;
}

.fa-play-circle {
    font-size: 22px;
    color: #fdfdfd;
}

.wat {
    margin-top: -80%;
}

@media screen and (max-width: 600px) {
    .wat {
        text-align: center;
        margin-top: 50px;
    }
}

.close {
    position: absolute;
    right: -150px;
    top: -30px;
    z-index: 999;
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    opacity: 1;
}

.modal-dialog {
    max-width: 800px;
    margin: 30px auto;
}

.mt {
    margin-top: 200px;
}

.card1 {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 12px 2px;
    background-color: #4c495d;
    height: 100px;
    width: 900px;
    color: #fff;
    border-radius: 25px;
    margin-top: -190px;
    margin-left: 200px;
}

@media screen and (max-width: 600px) {
    .card1 {
        display: none;
    }
}

.col {
    width: 20%;
}

.fa-laptop {
    font-weight: 700;
    font-size: 16px;
}

.p {
    font-size: 14px;
    color: #fff;
}

.p1 {
    font-size: 14px;
    margin: 10px;
}

.p2 {
    font-size: 15px;
    margin-right: 2%;
    margin-left: 3%;
}

.topnav2 {
    background: #fff;
    padding: 13px;
    margin-top: -5%;
    box-shadow: 0 1px 7px #ddd;
}

@media screen and (max-width: 600px) {
    .topnav2 {
        display: none;
    }

    .card8 {
        height: 200%;
    }
}

.topnav1 {
    margin: 15px;
    color: #2a2b2b;
}

.card2 {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 12px 2px;
    color: #000;
    height: 150px;
    width: 350px;
}

.card8 {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 12px 2px;
    color: #000;
    height: 380px;
}

.card5 {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    background-color: #fff;
    color: #000;
    height: 413px;
    width: 260px;
}

.mt1 {
    padding-top: 15px;
}

#price {
    text-align: center;
}

.plan {
    display: inline-block;
    margin: 10px 1%;
}

.plan-inner {
    background: #fff;
    margin: 0 auto;
    min-width: 270px;
    max-width: 100%;
    position: relative;
}

.entry-title {
    background: #1276ea;
    height: 140px;
    position: relative;
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
}

.entry-title>h5 {
    background: #642b92;
    font-size: 20px;
    padding: 5px 0;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
}

.entry-title .price {
    position: absolute;
    bottom: -25px;
    background: #20bada;
    height: 100px;
    width: 100px;
    margin: 0 auto;
    left: 0;
    right: 0;
    overflow: hidden;
    border-radius: 50px;
    border: 5px solid #fff;
    line-height: 80px;
}

.entry-content {
    color: #323232;
}

.entry-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.entry-content li {
    border-bottom: 1px solid #e5e5e5;
    padding: 10px 0;
}

.entry-content li:last-child {
    border: none;
}

.card4 {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 12px 2px;
    color: #000;
    height: 90px;
    width: 350px;
}

.card5 {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 12px 2px;
    color: #000;
    height: 390px;
    width: 350px;
}

.br1 {
    border-right: 2px dotted #e2e1e1;
    position: absolute;
    left: 25%;
    height: 58px;
    top: 24px;
}

.queryr2 {
    font-size: 18px;
    font-weight: 700;
    position: absolute;
    top: 50px;
    left: 30%;
    color: #5091bf;
}

.queryr3 {
    position: absolute;
    top: 20px;
    left: 30%;
}

.login1 {
    height: 35px;
    width: 140px;
    margin-left: 100px;
}

.login2 {
    height: 35px;
    width: 140px;
    margin-left: 0;
}

form {
    margin-left: 12px;
    margin-right: 12px;
}

.card-header {
    margin-top: 3px;
    cursor: pointer;
}

.accordion .card-header a {
    padding: 1% 0;
}

.accordion .card-header:after {
    font-family: FontAwesome;
    content: "\f068";
    float: right;
    color: #1276ea;
}

.accordion .card-header.collapsed:after {
    content: "\f067";
}

.ul {
    margin-left: 30px;
}

figure.snip {
    position: relative;
    overflow: hidden;
    margin: 10px;
    min-width: 230px;
    max-width: 315px;
    height: 500px;
    width: 100%;
    color: #000;
    text-align: center;
    font-size: 12px;
    padding: 20px;
    background-color: #5b91fc;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

figure.snip *,
figure.snip :after,
figure.snip :before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

figure.snip figcaption {
    width: 100%;
}

figure.snip blockquote {
    font-size: 1em;
    padding: 45px 20px 40px 50px;
    margin-top: 30px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: inset -1.4px -1.4px 2px rgba(0, 0, 0, 0.3);
    text-align: left;
    position: relative;
}

figure.snip blockquote:before {
    font-family: FontAwesome;
    content: "\201C";
    position: absolute;
    font-size: 70px;
    opacity: 0.25;
    font-style: normal;
    top: 0;
    left: 20px;
}

figure.snip .profile {
    width: 100px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 10px;
    border: solid 5px #a6a57a;
}

.t {
    color: #fff;
}

.card6 {
    width: 335px;
    height: 525px;
}

.img {
    height: 224px;
    width: 365px;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    border-radius: 50%;
    border: 1px solid #000;
}

.card7 {
    background-color: #fff;
    width: 330px;
    height: 225px;
}

.button {
    border-radius: 4px;
    background: linear-gradient(to bottom, #3cf 0, #06f 100%);
    border: none;
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 5px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 3px;
}

.viewbtn {
    border-radius: 4px;
    background: linear-gradient(to bottom, #3cf 0, #06f 100%);
    border: none;
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 5px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 3px;
}

@media screen and (max-width: 600px) {
    .client {
        margin-left: 5%;
    }
}

@media screen and (max-width: 360px) {
    .client {
        margin-left: -8%;
    }
}

.view {
    margin-bottom: 40px;
    color: #fff;
    background: linear-gradient(to right, #1a2980, #26d0ce);
    cursor: pointer;
    margin-left: 40%;
}

.img5:hover {
    box-shadow: 0 0 20px #000;
    z-index: 2;
    -webkit-transition: all 0.1s ease-in;
    -webkit-transform: scale(1.1);
    -ms-transition: all 0.1s ease-in;
    -ms-transform: scale(1.5);
    -moz-transition: all 0.1s ease-in;
    -moz-transform: scale(1.1);
    transition: all 0.1s ease-in;
    transform: scale(1.1);
}

@media screen and (max-width: 360px) {
    .img5 {
        margin-left: 1%;
    }
}

.img5 {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    margin: 3%;
}
/* ----footer starts---------------- */
.footer-section {
    background: #252d31;
    position: relative;
}

.footer-cta {
    border-bottom: 2px solid #fff;
}

.single-cta i {
    color: #10a0df;
    font-size: 30px;
    float: left;
    margin-top: 8px;
}

.cta-text {
    padding-left: 15px;
    display: inline-block;
}

.cta-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}

.cta-text span {
    color: #fff;
    font-size: 15px;
}

.footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 200px;
}

.footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: #fff;
    line-height: 28px;
}

.footer-social-icon span {
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-social-icon a {
    color: #fff;
    font-size: 16px;
    margin-right: 15px;
}

.footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
}

.facebook-bg {
    background: #10a0df;
}

.t3 {
    color: #fff;
}

.twitter-bg {
    background: #10a0df;
}

.google-bg {
    background: #10a0df;
}

.footer-widget-heading h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

.footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: #10a0df;
}

.footer-widget ul li {
    display: inline-block;
    float: left;
    width: 50%;
    margin-bottom: 12px;
}

.footer-widget ul li a:hover {
    color: #fff;
}

.footer-widget ul li a {
    color: #fff;
    text-transform: capitalize;
}

.subscribe-form {
    position: relative;
    overflow: hidden;
}

.subscribe-form input {
    width: 100%;
    padding: 14px 28px;
    background: #fff;
    border: 1px solid #2e2e2e;
    color: #fff;
}

.subscribe-form button {
    position: absolute;
    right: 0;
    background: #10a0df;
    padding: 13px 20px;
    border: 1px solid #fff;
    top: 0;
}

.subscribe-form button i {
    color: #fff;
    font-size: 22px;
    transform: rotate(-6deg);
}

.copyright-area {
    background: #202020;
    padding: 25px 0;
}

@media screen and (max-width: 600px) {
    .copyright-area {
        padding-bottom: 40px;
    }
}

.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #878787;
}

.copyright-text p a {
    color: #ff5e14;
}

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}

.foot1 {
    padding-left: 22%;
}

@media screen and (max-width: 600px) {
    .foot1 {
        padding-left: 0;
    }
}

.footer-menu li:hover a {
    color: #ff5e14;
}

.footer-menu li a {
    font-size: 14px;
    color: #878787;
}

.img7 {
    height: 40px;
    width: 120px;
}

@media screen and (max-width: 600px) {
    .img7 {
        height: 30px;
        width: 70px;
    }
}
/*------- footer ends-------- */
hr.new1 {
    border-top: 1px solid #fff;
    margin-right: 100px;
}

.col {
    height: 110px;
}

#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#cssmenu ul li.header {
    background: #222;
    color: #fff;
    font-size: 120%;
    padding: 5px;
}

#expander {
    position: fixed;
    top: 160px;
    left: -31px;
    transform: rotate(90deg);
    transition: 0.2s background ease;
}

#expander:hover {
    background: #222;
    color: #fff;
}

#cssmenu,
#expander {
    z-index: 1029;
}

#unexpander>a {
    background: #d3d3d3 !important;
    color: #000 !important;
}

#unexpander>li>a {
    background: #d3d3d3 !important;
    color: #000 !important;
}

#cssmenu {
    width: 250px;
    color: #fff;
    position: fixed;
    left: -250px;
    top: 120px;
    z-index: 10000;
    background: #5968fa;
}

@media screen and (max-width: 600px) {
    #expander {
        top: 160px;
    }

    #cssmenu.expanded {
        width: 100%;
    }
}

#cssmenu ul ul {
    display: none;
}

.align-right {
    float: right;
}

#cssmenu>ul>li>a {
    padding: 15px 20px;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    border-top: 1px solid #000;
    cursor: pointer;
    z-index: 2;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
    text-overflow: ellipsis;
    background: #444;
    transition: 0.1s all;
}

#cssmenu>ul>li>a:hover {
    color: #eee;
    background: #696969;
}

#cssmenu>ul>li.active>a,
#cssmenu>ul>li.open>a {
    background: #000;
}

#cssmenu>ul>li.last>a,
#cssmenu>ul>li:last-child>a {
    border-bottom: 1px solid #000;
}

#about-details {
    width: 100%;
    margin: auto;
}

#about-details .card-header {
    margin: 0;
    padding: 3px;
}

#about-details .card-body {
    margin: 0;
    padding: 0;
}

#about-details p {
    font-size: 18px;
}


#about-details .single-accordion {
    height: 35px;
    overflow: hidden;
    background: #157cf7;
    margin-bottom: 5px;
    padding: 0 10px;
    -webkit-transition: all 1s;
}

#about-details .single-accordion:hover {
    height: 200px;
    border-radius: 10px;
    -webkit-transition: all 1s;
}

#about-details .single-accordion h2:hover {
    cursor: pointer;
}

#about-details .single-accordion h2 {
    color: #fff;
    font-size: 30px;
    font-variant: small-caps;
    line-height: 35px;
}

#about-details .single-accordion li {
    color: #fff;
    font-size: 16px;
    line-height: 25px;
}

#about-details .single-accordion p {
    color: #fff;
    text-align: justify;
}

.tl-wrapper {
    margin: 8px 0;
    float: left;
    width: 100%;
    padding: 0;
    border-radius: 1px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
    box-shadow: 0 1px 3px 0 #b5b5b5;
    -moz-box-shadow: 0 1px 3px 0 #b5b5b5;
    -webkit-box-shadow: 0 1px 3px 0 #b5b5b5;
    border: 1px solid #ddd;
    background-color: #fff;
    overflow: hidden;
}

.tl-wrapper ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.tl-tr-price {
    float: right;
    height: 48px;
    padding: 15px 0 0 0;
    width: 140px;
}

.tl-tr-price h2 {
    color: #7eb808;
    font-weight: 700;
}

.tl-tr-price h3 {
    color: #888;
    text-decoration: line-through;
}

.tl-datewrapper {
    width: 70px;
    height: 80px;
    margin: 10px 0 0 10px;
    float: left;
    background: url(https://d8fajseshwsed.cloudfront.net/images/calendar-bg.png) no-repeat;
}

.tl-day {
    font-size: 8pt;
    margin-top: -5px;
    text-align: center;
    color: #222;
}

.tl-d {
    font-size: 24pt;
    text-align: center;
    color: #444;
}

.tl-m {
    font-size: 13pt;
    text-align: center;
    color: #fff;
}

.tl-tr-enroll-button {
    background: url(https://d8fajseshwsed.cloudfront.net/images/enroll-btn.png) no-repeat !important;
    border: solid 0 transparent !important;
    height: 40px !important;
    width: 100px !important;
    padding: 0 !important;
    margin: 10px 10px 0 0 !important;
    float: right;
}

.tl-title {
    display: block;
    font-size: 15px;
    color: #064e6d;
    background-color: #f1f1f1;
    padding: 0 20px;
    text-transform: uppercase;
    float: left;
    width: 95%;
}

.tl-title-name {
    float: left;
    padding: 10px;
}

.tl-title .mode {
    float: right;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    font-size: 9px;
    padding: 10px;
    font-weight: 700;
}

.tl-title .cla {
    background: url(https://d8fajseshwsed.cloudfront.net/images/classroom.jpg) no-repeat 5px 5px;
    background-color: #bfe9fc;
    background-size: 20px 20px;
    padding-left: 30px;
    margin: 8px 10px 10px 0;
}

.training-time {
    background: url(https://d8fajseshwsed.cloudfront.net/images/time-icon.png) no-repeat 3px 2px;
}

.trng {
    display: block;
    padding: 2px 0 5px 30px;
    line-height: 15px;
    height: 17px;
    width: 80%;
    color: #222333;
    float: left;
}

.training-time {
    background: url(https://d8fajseshwsed.cloudfront.net/images/time-icon.png) no-repeat 3px 2px;
}

.tl-location {
    background: url(https://d8fajseshwsed.cloudfront.net/images/location-icon-bg.png) no-repeat;
}

.certify {
    background: url(https://d8fajseshwsed.cloudfront.net/images/certify-icon.png) no-repeat 3px 2px;
}

.book {
    background: url(https://d8fajseshwsed.cloudfront.net/images/book-icon.png) no-repeat 3px 2px;
}

tl {
    padding: 4px 0 15px 7px;
    overflow: hidden;
    background: url(https://d8fajseshwsed.cloudfront.net/images/li-bg2.png) no-repeat 50% 50%;
}

.tl .tl-hdg {
    padding: 5px 0 5px 0;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
}

.tl ul {
    float: left;
    list-style: none outside none;
    margin: 0;
    padding: 0 0 0 11px !important;
    width: 310px;
}

.tl li:first-child {
    padding-top: 0;
    background: 0;
}

.tl li {
    background: url(https://d8fajseshwsed.cloudfront.net/images/li-bg3.png) no-repeat 50% 0;
    overflow: hidden;
    padding: 19px 0 12px 3px;
}

.tl .whyicons {
    float: left;
    width: 60px;
    height: 70px;
}

.tl .blended-learning {
    background: url(https://d8fajseshwsed.cloudfront.net/images/sk_sprite.png) no-repeat;
    background-position: 0 -90px;
    height: 60px;
}

.tl .accredit-icon {
    background: url(https://d8fajseshwsed.cloudfront.net/images/sk_sprite.png) no-repeat;
    background-position: 0 0;
}

.tl .cust-care {
    background: url(https://d8fajseshwsed.cloudfront.net/images/sk_sprite.png) no-repeat;
    background-position: 0 -264px;
}

.tl .moneyback {
    background: url(https://d8fajseshwsed.cloudfront.net/images/sk_sprite.png) no-repeat;
    background-position: 0 -513px;
}

.tl .quality-trainers {
    background: url(https://d8fajseshwsed.cloudfront.net/images/sk_sprite.png) no-repeat;
    background-position: 0 -618px;
}

.tl .practical-methods {
    background: url(https://d8fajseshwsed.cloudfront.net/images/sk_sprite.png) no-repeat;
    background-position: 0 -767px;
}

.tl .descp {
    float: left;
    width: 220px;
    line-height: 18px;
    overflow: inherit !important;
    padding: 2px 13px;
}

.enr {
    font-size: 18px;
    font-weight: 700;
    padding: 5%;
}

.test1 {
    content: "";
    clear: both;
    display: table;
    margin-left: 10px;
}

hr.new5 {
    border: 10px solid green;
    border-radius: 5px;
}

h5 {
    letter-spacing: 1px;
}

.h4 {
    font-weight: 700;
}

#more {
    display: none;
    cursor: pointer;
}

#more1 {
    display: none;
    cursor: pointer;
    position: relative;
}

#more2 {
    display: none;
    cursor: pointer;
    position: relative;
}

.view {
    margin-bottom: 40px;
    color: #fff;
    background: linear-gradient(to right, #1a2980, #26d0ce);
    cursor: pointer;
    margin-left: 40%;
}

.menu2 {
    margin-top: -3%;
    padding: 2px 0;
    background: #595961;
    box-shadow: 0 4px 8px #659bf6;
}

@media screen and (max-width: 800px) {
    .navfix {
        position: fixed;
    }

    .menu2 {
        display: none;
    }
}

.nav-link {
    color: #fff;
}

.nav-link:hover {
    color: #d6d2d2;
}

.logo {
    height: 40px;
    width: 120px;
}

.jumbotron {
    height: 400px;
}

.breadcrumb {
    background: #1276ea;
}

ol.breadcrumb li+li:before {
    padding: 2px;
    content: ">";
}

ol.breadcrumb li a {
    color: #fff;
}

.git {
    color: #d5d8da;
}

.link {
    font-size: 16px;
}

.mb {
    margin-bottom: -50px;
    margin-top: -60px;
    margin-left: -3%;
}

.card5 {
    background: #fff;
    height: 100px;
    width: 380px;
    margin-top: 3%;
}

.card8 {
    box-shadow: 0 4px 8px #659bf6;
    background: #fff;
    height: 100px;
    width: 350px;
    margin-top: 3%;
    border-radius: 15px;
}

#boxarrow {
    height: 60px;
    width: 60px;
    left: 92px;
    top: 70px;
    position: absolute;
    background-color: #da2a0e;
    border-radius: 10px;
    transform: rotate(45deg);
}

#boxarrow1 {
    height: 60px;
    width: 60px;
    left: 97px;
    top: 70px;
    position: absolute;
    background-color: #fc2135;
    border-radius: 10px;
    transform: rotate(45deg);
}

#boxarrow2 {
    height: 60px;
    width: 60px;
    left: 85px;
    top: 70px;
    position: absolute;
    background-color: #2f80fb;
    border-radius: 10px;
    transform: rotate(45deg);
}

.fast {
    color: #fff;
    width: 20%;
    padding: 1%;
    font-size: 12px;
}

.fap {
    margin-top: -3%;
    font-size: 13px;
}

.fa-google {
    font-size: 45px !important;
    padding: 3% 15% 10%;
    color: #fff;
}

.youtube1 {
    font-size: 45px !important;
    padding: 3% 15% 10%;
    color: #fff;
}

.facebook1 {
    font-size: 45px !important;
    padding: 3% 15% 10%;
    color: #fff;
}

.st1 {
    margin-top: -82px;
    margin-left: 40%;
    color: #59595c;
}

@media screen and (max-width: 600px) {
    .st1 {
        margin-top: -50px;
        margin-left: 40%;
        color: #59595c;
    }
}

.st {
    margin-top: 10px;
    margin-left: 40%;
    color: #fff;
}

.img {
    height: 50px;
    width: 120px;
}

@media screen and (max-width: 600px) {
    .img {
        height: 50px;
        width: 120px;
        margin-left: 170px;
        margin-top: 10px;
    }

    .jumbotron {
        margin-top: 4%;
        height: 500px;
    }
}

.star {
    margin-left: 7.8vw;
}

.star1 {
    margin-left: 6.7vw;
    margin-top: -1vw;
}

@media screen and (max-width: 800px) {
    .star1 {
        display: none;
    }

    .hid {
        display: none;
    }
}

.linev {
    border-right: 1px solid #a4a5ad;
    height: 3vw;
}

.linev1 {
    border-right: 1px solid #a4a5ad;
    height: 4vw;
    margin-top: -1vw;
}

@media screen and (max-width: 600px) {
    .ml {
        font-size: 25px;
    }
}

@media screen and (max-width: 600px) {
    .se {
        height: 400px;
        width: 300px;
        margin-top: 15%;
    }
}

@media screen and (max-width: 600px) {
    .card-img {
        height: 550px;
        width: 150px;
        margin-top: -30px;
    }
}

.p {
    font-size: 12px;
    color: #fff;
}

.p1 {
    font-size: 14px;
    margin: 10px;
}

.p2 {
    font-size: 15px;
    margin-right: 2%;
    margin-left: 3%;
}

@media only screen and (max-width: 746px) {
    .bg3 {
        display: none;
    }

    .se {
        height: 150px;
        width: 200px;
    }

    .card-img {
        height: 140px;
        width: 190px;
        margin-left: 80px;
        margin-top: -30px;
    }
}

@media only screen and (max-width: 400px) {
    .se {
        height: 90px;
        width: 250px;
    }

    .card-img {
        height: 150px;
        width: 250px;
        margin-left: 17%;
        margin-top: -30px;
    }
}

.top1 li {
    display: inline-block;
}

.tab1 {
    width: 100%;
}

.tab1 .tr.th {
    width: 100%;
    text-align: center;
}

table,
td,
th {
    border: 1px solid #000;
    padding-top: 2%;
}

.blueBg {
    background-color: #1b13f6 !important;
    background-image: #5b9afa;
}

.intro-banner-vdo-play-btn {
    height: 60px;
    width: 60px;
    position: absolute;
    top: 80px;
    left: 50%;
    text-align: center;
    margin: 0px 0 0 -30px;
    border-radius: 100px;
    z-index: 1;
}

.intro-banner-vdo-play-btn i {
    line-height: 56px;
    font-size: 30px;
}

.intro-banner-vdo-play-btn .ripple {
    position: absolute;
    width: 160px;
    height: 160px;
    z-index: -1;
    left: 50%;
    top: 50%;
    opacity: 0;
    margin: -85px 0 0 -82px;
    border-radius: 100px;
    -webkit-animation: ripple 1.8s infinite;
    animation: ripple 1.8s infinite;
}

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

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

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

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

.intro-banner-vdo-play-btn .ripple:nth-child(2) {
    animation-delay: 0.3s;
    -webkit-animation-delay: 0.3s;
}

.intro-banner-vdo-play-btn .ripple:nth-child(3) {
    animation-delay: 0.6s;
    -webkit-animation-delay: 0.6s;
}

.fa-play-circle {
    font-size: 22px;
    color: #fdfdfd;
}

.wat {
    margin-top: -80%;
}

@media screen and (max-width: 600px) {
    .wat {
        text-align: center;
        margin-top: 50px;
    }
}

.close {
    position: absolute;
    right: -150px;
    top: -30px;
    z-index: 999;
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    opacity: 1;
}

.modal-dialog {
    max-width: 800px;
    margin: 30px auto;
}

.mt {
    margin-top: 200px;
}

form {
    margin-left: 12px;
    margin-right: 12px;
}

.card-header {
    margin-top: 3px;
    font-size: 17px;
    cursor: pointer;
    color: #474a4f;
    background: #dcdefc;
    font-weight: 700;
}

.accordion .card-header:after {
    font-family: FontAwesome;
    content: "\f068";
    float: right;
    color: #1276ea;
    font-weight: 700;
}

.accordion .card-header.collapsed:after {
    content: "\f067";
}

.ul {
    margin-left: 30px;
}

.img1 {
    height: 10vw;
    width: 63vw;
}

.img2 {
    height: 20vw;
    width: 31vw;
}

.about-img {
    width: 400px;
    height: 350px;
}

/* .img3 { */
/* height: 1000px; */
/* width: 200px; */
/* } */


.img {
    height: 224px;
    width: 365px;
}

.fa-check {
    color: green;
    font-size: 2vw !important;
}

.fa_icon {
    color: white;
    font-size: 4vw !important;
    margin-top: 45px;
}

.fa-times {
    color: red;
    font-size: 2vw !important;
}

.footer-section {
    background: #252d31;
    position: relative;
}

.footer-cta {
    border-bottom: 2px solid #fff;
}

.single-cta i {
    color: #10a0df;
    font-size: 30px;
    float: left;
    margin-top: 8px;
}

.cta-text {
    padding-left: 15px;
    display: inline-block;
}

.cta-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}

.cta-text span {
    color: #fff;
    font-size: 15px;
}

.footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 200px;
}

.footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: #fff;
    line-height: 28px;
}

.footer-social-icon span {
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-social-icon a {
    color: #fff;
    font-size: 16px;
    margin-right: 15px;
}

.footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
}

.facebook-bg {
    background: #10a0df;
}

.t3 {
    color: #fff;
}

.twitter-bg {
    background: #10a0df;
}

.google-bg {
    background: #10a0df;
}

.footer-widget-heading h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

.footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: #10a0df;
}

.footer-widget ul li {
    display: inline-block;
    float: left;
    width: 50%;
    margin-bottom: 12px;
}

.footer-widget ul li a:hover {
    color: #fff;
}

.footer-widget ul li a {
    color: #fff;
    text-transform: capitalize;
}

.subscribe-form {
    position: relative;
    overflow: hidden;
}

.subscribe-form input {
    width: 100%;
    padding: 14px 28px;
    background: #fff;
    border: 1px solid #2e2e2e;
    color: #fff;
}

.subscribe-form button {
    position: absolute;
    right: 0;
    background: #10a0df;
    padding: 13px 20px;
    border: 1px solid #fff;
    top: 0;
}

.subscribe-form button i {
    color: #fff;
    font-size: 22px;
    transform: rotate(-6deg);
}

.copyright-area {
    background: #202020;
    padding: 25px 0;
}

@media screen and (max-width: 600px) {
    .copyright-area {
        padding-bottom: 40px;
    }
}

.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #878787;
}

.copyright-text p a {
    color: #ff5e14;
}

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}

.foot1 {
    padding-left: 22%;
}

@media screen and (max-width: 600px) {
    .foot1 {
        padding-left: 0;
    }
}

.footer-menu li:hover a {
    color: #ff5e14;
}

.footer-menu li a {
    font-size: 14px;
    color: #878787;
}

.img7 {
    height: 3vw;
    width: 6vw;
}

.fixed1 {
    background-color: #030303;
    position: bottom;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40px;
    font-size: 18px;
    text-align: center;
}

@media screen and (max-width: 600px) {
    .fixed1 {
        display: none;
    }
}

hr.new1 {
    border-top: 1px solid #fff;
    margin-right: 100px;
}

hr.new2 {
    border-top: 1px solid #a4a5ad;
}

hr.new3 {
    border-top: 3px solid red;
    width: 4vw;
    margin: -1px;
}

.col {
    height: 110px;
}

.t5 {
    color: #fff;
}

@media screen and (max-width: 600px) {
    .fixed1 {
        display: none;
    }
}

.foot1 {
    padding-left: 22%;
}

@media screen and (max-width: 600px) {
    .foot1 {
        padding-left: 0;
    }
}

.img3 {
    height: 7vw;
    width: 14vw;
}

.card-img-top {
    background: linear-gradient(to right, #00c6ff, #0072ff);
    height: 100px;
    width: 100%;
    padding: 5%;
    color: #fff;
}

.gotopbtn {
    position: fixed;
    width: 50px;
    height: 50px;
    background: #27ae60;
    bottom: 40px;
    right: 3px;
    text-decoration: none;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(10, 10, 10, 0.35);
}

.gotopbtn .fa-arrow-up {
    color: #fff;
}

#gallery {
    padding-top: 40px;
}

@media screen and (min-width: 991px) {
    #gallery {
        padding: 60px 30px 0 30px;
    }
}

.img-wrapper {
    position: relative;
    margin-top: 15px;
}

.img-wrapper img {
    width: 100%;
}

.img-overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.img-overlay i {
    color: #fff;
    font-size: 3em;
}

#overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#overlay img {
    margin: 0;
    width: 80%;
    height: auto;
    object-fit: contain;
    padding: 5%;
}

@media screen and (min-width: 768px) {
    #overlay img {
        width: 60%;
    }
}

@media screen and (min-width: 1200px) {
    #overlay img {
        width: 50%;
    }
}

#nextButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
}

#nextButton:hover {
    opacity: 0.7;
}

@media screen and (min-width: 768px) {
    #nextButton {
        font-size: 3em;
    }
}

#prevButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
}

#prevButton:hover {
    opacity: 0.7;
}

@media screen and (min-width: 768px) {
    #prevButton {
        font-size: 3em;
    }
}

#exitButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
    position: absolute;
    top: 15px;
    right: 15px;
}

#exitButton:hover {
    opacity: 0.7;
}

@media screen and (min-width: 768px) {
    #exitButton {
        font-size: 3em;
    }
}

.cardA {
    width: 340px;
    height: 315px;
    border-radius: 2%;
    text-align: center;
}

.dev {
    padding: 2%;
    border-radius: 3%;
    margin-top: 2%;
}

.card-header2 {
    font-size: 14px;
    cursor: pointer;
    padding: 5px;
    margin: 3px;
    background: #cccccf;
}

.accordion .card-header2:after {
    font-family: FontAwesome;
    content: "\f106";
    float: right;
    color: #00f;
    font-weight: 700;
}

.accordion .card-header2.collapsed:after {
    content: "\f107";
}

.selfcard {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 308px;
    border-bottom: 4px solid red;
    word-wrap: break-word;
    background-clip: border-box;
    box-shadow: 0 2px 4px #659bf6;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.selfcard:hover {
    transition: all 0.2s ease-out;
    box-shadow: 0 4px 20px rgba(38, 38, 38, 0.2);
    top: 0.9s;
    border: 1px solid #ccc;
    background-color: #fff;
}

.image-flip.hover .backside,
.image-flip:hover .backside {
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
    -o-transform: rotateY(0);
    -ms-transform: rotateY(0);
    transform: rotateY(0);
    border-radius: 0.25rem;
}

.image-flip.hover .frontside,
.image-flip:hover .frontside {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.mainflip {
    -webkit-transition: 1s;
    -webkit-transform-style: preserve-3d;
    -ms-transition: 1s;
    -moz-transition: 1s;
    -moz-transform: perspective(1000px);
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transition: 1s;
    transform-style: preserve-3d;
    position: relative;
}

.frontside {
    position: relative;
    -webkit-transform: rotateY(0);
    -ms-transform: rotateY(0);
    z-index: 2;
    margin-bottom: 30px;
}

.backside {
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    text-align: left;
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-box-shadow: 5px 7px 9px -4px #9e9e9e;
    -moz-box-shadow: 5px 7px 9px -4px #9e9e9e;
    box-shadow: 5px 7px 9px -4px #9e9e9e;
}

.backside,
.frontside {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 1s;
    -webkit-transform-style: preserve-3d;
    -moz-transition: 1s;
    -moz-transform-style: preserve-3d;
    -o-transition: 1s;
    -o-transform-style: preserve-3d;
    -ms-transition: 1s;
    -ms-transform-style: preserve-3d;
    transition: 1s;
    transform-style: preserve-3d;
}

.c-t {
    color: #000;
    margin-left: 30px;
}

.backside .card,
.frontside .card {
    min-height: 312px;
}

.backside .card a {
    font-size: 18px;
    color: #007b5e !important;
}

.backside .card .card-title,
.frontside .card .card-title {
    color: #007b5e !important;
}

.frontside .card .card-body img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}

hr.new-1 {
    width: 35%;
    border: 1px solid red;
    margin-left: 32%;
}

.tx {
    color: #fff;
}

a:hover,
li,
ul {
    color: #575555;
}

button {
    cursor: pointer;
}





/* my new css */

/*-----------------   New Productes    ------------------*/

.new-producetes {
    background: #0e1138 url(../images/new-products.jpg);
    float: left;
    width: 100%;
    padding: 50px 0px 40px 0px;
    margin: 0;
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

.new-producetes h4 {
    font-size: 35px;
    text-align: center;
    margin: 0 auto;
    font-weight: bold;
    color: #fff;
    margin: 0px;
    padding: 0px 0px 5px 0px;
}

.new-producetes .hr-line {
    background: #fff;
    height: 4px;
    width: 15%;
    margin: 0 auto;
    margin-bottom: 50px;
}


/*---------------------  New-product slider  Start  ----------*/



.new-producetes h5 {
    font-size: 18px;
    text-align: left;
    margin: 0 auto;
    font-weight: bold;
    color: #056ba3;
    margin: 0px;
    padding: 10px 0px 10px 0px;
    border-bottom: currentColor;
    text-decoration: underline;
}

.hr-line-curser {
    height: 2px;
    background: #056ba3;
    width: 70%;
    text-align: left;
    padding: 0;
    margin-bottom: 15px;
}

.carousel-inner {
    margin-bottom: 30px !important;

}

.carousel-indicators {
    position: relative !important;
    left: 0% !important;
    z-index: 15 !important;
    padding-left: 0 !important;
    margin-left: 0% !important;
    text-align: center !important;
    list-style: none !important;
    float: left !important;
    width: 100% !important;
}

.carousel-indicators li {
    display: inline-block !important;
    width: 15px !important;
    height: 15px !important;
    margin: 1px !important;
    text-indent: -999px !important;
    cursor: pointer !important;
    background-color: rgb(131, 129, 129) !important;
    border-radius: 10px !important;
    border: none !important;
    opacity: 0.6;
    margin-right: 5px !important;
    margin-top: 20px !important;
}

.carousel-indicators .active {
    width: 15px !important;
    height: 15px !important;
    margin: 0 !important;
    background-color: rgb(255, 255, 255) !important;
    border: none !important;
    opacity: 1;
    margin-top: 1px !important;
    margin-right: 10px !important;
    transition: 0.3s all;
    transition-timing-function: ease-in;
    margin-top: 20px !important;
}

.btn-floating {
    width: 45px;
    height: 45px;
    background: #24222252;
    float: left;
    border-radius: 50%;
    margin: 0 auto;
    text-align: center;
    line-height: 48px;
    font-size: 30px;
    color: #ffffff29;
}

.next {
    position: absolute;
    top: 40%;
    z-index: 999;
    right: -4%;
    padding-left: 4px;
    color: #ffffff;
}

.prev {
    position: absolute;
    top: 40%;
    z-index: 999;
    left: -5%;
    padding-right: 5px;
    color: #ffffff;
}


.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

/*---------------------  New-product slider End  ----------*/

/* --------------------------------------------------New----------------------------------------------------- */

/* Meet Our Mentors & Regents star */
body {
    color: #333;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
}

.column {
    margin: 15px 15px 0;
    padding: 0;
}

.column:last-child {
    padding-bottom: 0px;
}

.column::after {
    content: '';
    clear: both;
    display: block;
}

.column div {
    position: relative;
    float: left;
    width: 250px;
    height: 310px !important;
    margin: 0 0 0 34px;
    padding: 0;
}

.column div:first-child {
    margin-left: 0;
}

.column div span {
    position: absolute;
    bottom: -20px;
    left: 0;
    z-index: -1;
    display: block;
    width: 300px;
    margin: 0;
    padding: 0;
    color: #444;
    font-size: 18px;
    text-decoration: none;
    text-align: center;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    opacity: 0;
}

figure {
    width: 250px;
    height: 200px;
    margin: 0;
    padding: 0;
    background: #fff;
    overflow: hidden;
}

figure:hover+span {
    bottom: -36px;
    opacity: 1;
}

/* Meet Our Mentors & Regents end */



/* Zoom In #1 */
.hover01 figure img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover01 figure:hover img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

/* Zoom In #2 */
.hover02 figure img {
    width: 300px;
    height: auto;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover02 figure:hover img {
    width: 350px;
}

/*=======================================================================
[11] Progress Area Style
=========================================================================*/
.progress-box {
    margin-bottom: 3rem;
    text-align: center;
}

.progress-box .counting-text {
    font-size: 3rem;
    line-height: 1.3;
}

.progress-box p {
    font-size: 17px;
    margin-bottom: 0;
}

.process-layout1 {
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.process-layout1 .item-icon-wrap {
    padding: 3px;
    border: 2px solid #e9e9e9;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    height: 142px;
    width: 142px;
    margin: 0 auto 22px;
    position: relative;
}


.process-layout1 .item-icon {
    background-color: #fe9000;
    height: 100%;
    width: 100%;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}


.process-layout1:hover .item-icon-wrap .item-icon {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
}


.title-bold {
    text-transform: capitalize;
    font-weight: 600;
}



.progress-box .counting-text {
    font-size: 4rem;
    line-height: 1.3;
}





/* rigister-list */
.training-list li {
    display: block;
    padding: 10px 0 5px 25px;
    position: relative;
    font-size: 14px;
}

.training-list li:before {
    display: block;
    position: absolute;
    left: 0px;
    top: 5px;
    font-family: 'fontAwesome';
    content: "\f058";
    font-size: 20px;
    color: #0fc50f;
}


ul.certification-listing li {
    display: block;
    padding: 3px 0px 10px 25px;
    position: relative;
    font-size: 18px;
}



.certification-listing {
    padding-left: 20px;
}

.certification-listing li:before {
    display: block;
    position: absolute;
    right: 10px;
    left: 0px;
    top: 4px;
    font-family: 'fontAwesome';
    content: "\f058";
    font-size: 18px;
    color: #fa8e01 !important;
}

.button1 {
    background-color: rgb(18, 95, 8);
    color: rgb(252, 252, 252);
    border: 2px solid #008CBA;
    padding: 10px;
    border-radius: 10px;
    font-size: 12px;

}

.button1:hover {
    background-color: #008CBA;
    color: white;
}

.button2 {
    background-color: white;
    color: black;
    border: 2px solid #008CBA;
    padding: 5px;
    margin: 7px 4px;
    border-radius: 8px;
    font-size: 15px;
}

.button2:hover {
    background-color: #008CBA;
    color: white;
}

.intro-banner-vdo-play-btn3 {
    height: 60px;
    width: 60px;
    position: absolute;
    top: 110px;
    left: 50%;
    text-align: center;
    margin: 30px 0 0 -35px;
    border-radius: 100px;
    z-index: 1;
}

.intro-banner-vdo-play-btn3 .ripple {
    position: absolute;
    width: 160px;
    height: 160px;
    z-index: -1;
    left: 50%;
    top: 50%;
    opacity: 0;
    margin: -85px 0 0 -82px;
    border-radius: 100px;
    -webkit-animation: ripple 1.8s infinite;
    animation: ripple 1.8s infinite;
}

.icon2 {
    font-size: 22px;
    color: #fdfdfd;
    margin-top: 18px;
}

 
 /* CSS Multiple Whatsapp Chat */
 .whatsapp-name {
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 0;
    margin-bottom: 0;
    line-height: 0.5;
    color: white;
  }
  .typing{
    color: white;
  }
  
  #whatsapp-chat {
    box-sizing: border-box !important;
  
    outline: none !important;
    position: fixed;
    width: 350px;
    border-radius: 10px;
    box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
    bottom: 50px;
    right: 3px;
    overflow: hidden;
    z-index: 100;
    animation-name: showchat;
    animation-duration: 1s;
    transform: scale(1);
    
  }
  a.blantershow-chat {
    /*   background: #009688; */
    background: #fff;
    color: #404040;
    position: fixed;
    display: flex;
    font-weight: 400;
    justify-content: space-between;
    z-index: 100;
    bottom: 5px;
    right: 30px;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
  }
  a.blantershow-chat svg {
    transform: scale(1.2);
    margin: 0 10px 0 0;
  }
  .header-chat {
    /*   background: linear-gradient(to right top, #6f96f3, #164ed2); */
    background: #009688;
    background: #095e54;
    color: #fff;
    padding: 20px;
  }
  .header-chat h3 {
    margin: 0 0 10px;
  }
  .header-chat p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
  }
  .info-avatar {
    position: relative;
  }
  .info-avatar img {
    border-radius: 100%;
    width: 50px;
    float: left;
    margin: 0 10px 0 0;
  }
  
  a.informasi {
    padding: 20px;
    display: block;
    overflow: hidden;
    animation-name: showhide;
    animation-duration: 0.5s;
  }
  a.informasi:hover {
    background: #f1f1f1;
  }
  .info-chat span {
    display: block;
  }
  #get-label,
  span.chat-label {
    font-size: 12px;
    color: #888;
  }
  #get-nama,
  span.chat-nama {
    margin: 5px 0 0;
    font-size: 15px;
    font-weight: 700;
    color: #222;
  }
  #get-label,
  #get-nama {
    color: #fff;
  }
  span.my-number {
    display: none;
  }
  /* .blanter-msg {
    color: #444;
    padding: 20px;
    font-size: 12.5px;
    text-align: center;
    border-top: 1px solid #ddd;
  } */
  textarea#chat-input {
      border: none;
      font-family: "Arial", sans-serif;
      width: 100%;
      height: 40px;
      outline: none;
      resize: none;
      padding: 10px;
      font-size: 12px;
  }
  
  a#send-it {
    width: 40px;
    font-weight: 800;
    padding: 8px 8px 0;
    background:#eee;
    /* border-radius: 5px; */
    
    svg {
      fill:#a6a6a6;
      height: 24px;
      width: 24px;
    }
  }
  
  .first-msg {
    background: transparent;
    padding: 30px;
    text-align: center;
    & span {
      background: #e2e2e2;
      color: #333;
      font-size: 14.2px;
      line-height: 1.7;
      border-radius: 10px;
      padding: 15px 20px;
      display: inline-block;
    }
  }
  
  .start-chat .blanter-msg {
    display: flex;
  }
  #get-number {
    display: none;
  }
  a.close-chat {
    position: absolute;
    top: 5px;
    right: 15px;
    color: #fff;
    font-size: 30px;
  
  }
  
  @keyframes ZpjSY{
    0% {
      background-color: rgb(182, 181, 186);
    }
    15% {
      background-color: rgb(17, 17, 17);
    }
    25% {
      background-color: rgb(182, 181, 186);
    }
  }
  
  @keyframes hPhMsj {
    15% {
      background-color: rgb(182, 181, 186);
    }
    25% {
      background-color: rgb(17, 17, 17);
    }
    35% {
      background-color: rgb(182, 181, 186);
    }
  }
  
  @keyframes iUMejp {
    25% {
      background-color: rgb(182, 181, 186);
    }
    35% {
      background-color: rgb(17, 17, 17);
    }
    45% {
      background-color: rgb(182, 181, 186);
    }
  }
  
  
  @keyframes showhide {
    from {
      transform: scale(0.5);
      opacity: 0;
    }
  }
  @keyframes showchat {
    from {
      transform: scale(0);
      opacity: 0;
    }
  }
  @media screen and (max-width: 480px) {
    #whatsapp-chat {
      width: auto;
      left: 5%;
      right: 5%;
      font-size: 80%;
    }
  }
  .hide {
    display: none;
    animation-name: showhide;
    animation-duration: 0.5s;
    transform: scale(1);
    opacity: 1;
  }
  .show {
    display: block;
    animation-name: showhide;
    animation-duration: 0.5s;
    transform: scale(1);
    opacity: 1;
  }
  
  .whatsapp-message-container {
    display: flex;
    z-index: 1;
  }
  
  .whatsapp-message {
    padding: 7px 14px 6px;
    background-color: rgb(255, 255, 255);
    border-radius: 0px 8px 8px;
    position: relative;
    transition: all 0.3s ease 0s;
    opacity: 0;
    transform-origin: center top 0px;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
    margin-top: 4px;
    margin-left: -54px;
    max-width: calc(100% - 66px);
  }
  
  .whatsapp-chat-body {
    padding: 20px 20px 20px 10px;
    background-color: rgb(230, 221, 212);
    position: relative;
    &::before {
      display: block;
      position: absolute;
      content: "";
      left: 0px;
      top: 0px;
      height: 100%;
      width: 100%;
      z-index: 1000;
      opacity: 0.08;
      background-image: url("https://elfsight.com/assets/chats/patterns/whatsapp.png");
      // background-image: url(https://res.cloudinary.com/eventbree/image/upload/v1575782560/Widgets/whatsappbg_opt.jpg);
    }
  }
  
  .dAbFpq {
    display: flex;
    z-index: 10000;
  }
  
  .eJJEeC {
    background-color: rgb(255, 255, 255);
    width: 52.5px;
    height: 32px;
    border-radius: 16px;
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
    -moz-box-align: center;
    align-items: center;
    margin-left: 10px;
    opacity: 0;
    transition: all 0.1s ease 0s;
    z-index: 1000;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
  }
  
  .hFENyl {
      position: relative;
      display: flex;
  }
  
  .ixsrax {
      height: 5px;
      width: 5px;
      margin: 0px 2px;
      border-radius: 50%;
      display: inline-block;
      position: relative;
      animation-duration: 1.2s;
      animation-iteration-count: infinite;
      animation-timing-function: linear;
      top: 0px;
      background-color: rgb(158, 157, 162);
      animation-name: ZpjSY;
  }
  
  .dRvxoz {
  
      height: 5px;
      width: 5px;
      margin: 0px 2px;
      background-color: rgb(182, 181, 186);
      border-radius: 50%;
      display: inline-block;
      position: relative;
      animation-duration: 1.2s;
      animation-iteration-count: infinite;
      animation-timing-function: linear;
      top: 0px;
      animation-name: hPhMsj;
  }
  
  .kAZgZq {
      padding: 7px 14px 6px;
      background-color: rgb(255, 255, 255);
      border-radius: 0px 8px 8px;
      position: relative;
      transition: all 0.3s ease 0s;
      opacity: 0;
      transform-origin: center top 0px;
      z-index: 1000;
      box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
      margin-top: 4px;
      margin-left: -54px;
      max-width: calc(100% - 66px);
      &::before {
      position: absolute;
      background-image: url("../assets/assets1/images/devopsschool-whatsapp-click-to-chat-1.png");
      background-position: 50% 50%;
      background-repeat: no-repeat;
      background-size: contain;
      content: "";
      top: 0px;
      left: -12px;
      width: 12px;
      height: 19px;
  }
  }
  
  .bMIBDo {
      font-size: 13px;
      font-weight: 700;
      line-height: 18px;
      color: rgba(0, 0, 0, 0.4);
  }
  
  .iSpIQi {
      font-size: 14px;
      line-height: 19px;
      margin-top: 4px;
      color: rgb(17, 17, 17);
  }
  
  .iSpIQi {
      font-size: 14px;
      line-height: 19px;
      margin-top: 4px;
      color: rgb(17, 17, 17);
  }
  
  .cqCDVm {
      text-align: right;
      margin-top: 4px;
      font-size: 12px;
      line-height: 16px;
      color: 
      rgba(17, 17, 17, 0.5);
      margin-right: -8px;
      margin-bottom: -4px;
  }
  /* whatsapp ends */
 