@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

* {
    scrollbar-width: auto;
    scrollbar-color: #002b2e #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 5px;
}

*::-webkit-scrollbar-track {
    background: #ffffff;
}

*::-webkit-scrollbar-thumb {
    background-color: #002b2e;
    border-radius: 10px;
    border: 3px solid #002b2e;
}


body {
    scroll-behavior: smooth;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
    padding:0px;
}

@media (max-width:576px){
    .w-75{
        width: 100%!important;
    }
}

/*Top header start*/

.topHeader {
    background-color: #fff;
    z-index: 10000;
}

.topHeader .socialIcon {
    display: flex;
    align-items: center;
    padding: 4px;
    justify-content: center;
}

.topHeader .socialIcon a {
    color: #002b2e;
    text-decoration: none;
    font-weight: normal;
}

.topHeader .socialIcon a:hover {
    color: #00b0ab;
}

.topHeader .socialIcon a.instagram-icon,
.topHeader .socialIcon a.facebook-icon,
.topHeader .socialIcon a.twitter-icon,
.topHeader .socialIcon a.linkedin-icon,
.topHeader .socialIcon a.youtube-icon {
    display: flex;
    color: #002b2e;
    border: 1px solid #002b2e;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 4px;
    text-decoration: none;
    height: 25px;
    width: 25px;
    margin-left: 5px;
    transition: all ease-in-out 1s;
}

.topHeader .socialIcon a.instagram-icon:hover {
    color: #fff;
    background: #f700d7;
    border: 1px solid #f700d7;
}

.topHeader .socialIcon a.facebook-icon:hover {
    background: #1877f2;
    color: #fff;
    border: 1px solid #1877f2;
}

.topHeader .socialIcon a.twitter-icon:hover {
    background: #1da1f2;
    color: #fff;
    border: 1px solid #1da1f2;
}

.topHeader .socialIcon a.linkedin-icon:hover {
    background: #0a66c2;
    color: #fff;
    border: 1px solid #0a66c2;
}

.topHeader .socialIcon a.youtube-icon:hover {
    background: #ff0000;
    color: #fff;
    border: 1px solid #ff0000;
}

.sticky {
    position: fixed !important;
    top: 0;
    width: 100%;
    z-index: 10000;
    animation: stickymenu 1s ease-in-out;
}

.sticky.primary-header {
    background: linear-gradient(to left,#168482,#3da19d);
}

.sticky .primary-navigation a {
    color: #002b2e;
}

.sticky .primary-navigation a:hover {
    /*color: #002b2e;*/
    color: #fff;
}

@keyframes stickymenu {
    from {
        top: -100px;
    }

    to {
        top: 0px;
    }
}

.logo {
    height: 80px;
    width: 100px;
}

.logo img {
    height: 80px;
    width: 100%;
    object-fit: cover;
    font-family:Dungeon;

}

.primary-header {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    z-index: 10000;
}

/* -------------------------------  */
.primary-navigation {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;

}

.primary-navigation a {
    padding: 10px 20px;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    color: #002b2e;
    position: relative;
}

.primary-navigation a:hover {
    color: #00b0ab;
}

.primary-navigation a:after {
    content: '';
    width: 0%;
    transition: all 0.3s ease;
    left: 50%;
}

.primary-navigation a:before {
    content: '';
    width: 0%;
    transition: all 0.3s ease;
    left: 50%;
}

.primary-navigation a:hover::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    background: #00b0ab;
    height: 3px;
    width: 50%;
    font-weight: 600
}

.primary-navigation a:hover::before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: #00b0ab;
    height: 3px;
    width: 50%;
    font-weight: 600;
}

.sticky .primary-navigation a:hover::after,
.sticky .primary-navigation a:hover::before {
    background: #fff;
}

.mobile-nav-toggle {
    display: none;
}

@media(max-width:1024px) {
    .primary-navigation {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0 0 0 60%;
        background: #002b2e;
        z-index: 9998;
        /*justify-content: space-between;*/
        padding: min(100vh, 5rem) 0rem;
        transform: translateX(100%);
        transition: 350ms ease-out;
        overflow: auto;
    }

    .primary-navigation li {
        padding: 10px 0px;
        margin:0px 25px;
        border-bottom: 1.2px dashed #fff;

    }

    .sticky .primary-navigation a {
        color: #fff;
    }

    .primary-navigation a {
        color: #fff;
        padding:10px 0px;
    }

    .primary-navigation a:hover {
        color: #00b0ab;
    }


    .primary-navigation a:after {
        content: '';
        display: none;
    }

    .primary-navigation a:before {
        display: none;
    }

    .primary-navigation a:hover::after {
        content: '';
        display: none;
    }

    .primary-navigation a:hover::before {
        content: '';
        display: none;
    }

    .mobile-nav-toggle {
        border: 0;
        display: block;
        position: absolute;
        background: transparent;
        z-index: 9998;
        background-repeat: no-repeat;
        width: 25px;
        line-height: 25px;
        margin: auto;
        aspect-ratio: 1;
        top: 35%;
        right: 10%;
    }

    .primary-navigation[data-visible="true"] {
        transform: translateX(0%);
    }

    .mobile-nav-toggle[aria-expanded="true"] {
        background-image: url(/assets/img/times-solid.svg);
        z-index: 10000;
        position: fixed;
        top: 6%;
        right: 35%;
        width: 25px;
        height: 30px;
        transition: all ease 1s;

    }

    .mobile-nav-toggle[aria-expanded="false"] {
        background-image: url(/assets/img/bars-solid.svg);
    }
}

@media(max-width:768px) {
    .mobile-nav-toggle {
        top: 30%;
        right: 3%;
    }

    .mobile-nav-toggle[aria-expanded="true"] {
        top: 4%;
    }
}

@media(max-width:676px) {
    .primary-navigation {
        inset: 0 0 0 40%;
    }

    .mobile-nav-toggle {
        top: 35%;
        right: 3%;
    }

    .mobile-nav-toggle[aria-expanded="true"] {
        right: 52%;
    }

}

@media(max-width:500px) {
    .primary-navigation {
        inset: 0 0 0 20%;
    }

    .mobile-nav-toggle {
        top: 35%;
        right: 3%;
    }

    .mobile-nav-toggle[aria-expanded="true"] {
        right: 67%;
    }
}

/* ---------------------------------- */

/* start index page */
.techsima-content {
    position: relative;
    background-color: rgba(255, 255, 255, 0.8);
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding:0rem 2rem ;
}

.techsima-content .techsima-des {
    color: #002b2e;
    font-weight: 500;
    font-size: 1.1rem;
    z-index: 1;

}

.techsima-content .inner-image img {
    width: 70px;
    animation: bubble 7s linear infinite;
    opacity: 0;
}

@keyframes bubble {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(-80vh);
    }
}

.techsima-content .inner-image img:nth-child(1) {
    animation-delay: 3s;
    width: 40px;
}

.techsima-content .inner-image img:nth-child(2) {
    animation-delay: 4s;
    width: 35px;
}

.techsima-content .inner-image img:nth-child(3) {
    animation-delay: 5.5s;
}

.techsima-content .inner-image img:nth-child(4) {
    animation-delay: 1s;
    width: 60px;
}

.techsima-content .inner-image img:nth-child(5) {
    animation-delay: 3s;
    width: 30px;

}

.techsima-content .inner-image {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: 0;
}

@media(max-width:576px) {
    .techsima-content .inner-image {
        width: 80%;
    }
}

/*Start slider section*/
.background-slider {
    background-image: url(/assets/img/PngItem_5213581.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-blend-mode: hard-light;
    background-size: cover;
    min-height: 600px;
    z-index: 1000;
}

.slider {
    min-height: 200px;
    padding: 0;
}

.slider.banner-home img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.slider img {
    height: 100%;
    width: 100%;
    object-fit: contain;

}

@media(max-width:776px){
    .slider {
    min-height: 100px;
    padding: 0;
}
}

/*End slider section*/

/*Course section start*/
.course-card-main .card{
    position: relative;
    z-index: 1;
    height:250px;
    padding: 30px;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 10%);
    background-color: #fff;
    border-radius: 10px;
    border-top-right-radius: 50px;
    transition: all .3s;
}

.course-card-main .card-body{
    padding:0px;
}

.service-body:hover{
    color:#000;
}

.course-card-main .card-logo {
    display: flex;
    justify-content: center;
    height: 100px;
    width: 100px;
    border: 5px solid #fff;
    border-radius: 50%;
    position: absolute;
    box-shadow: 0px 0px 20px rgb(0 0 0 / 20%);
    background: #f7f7f7;
    top: -50px;
    left: 35%;
    transition: all 0.5s cubic-bezier(0, 0.25, 0.25, 1)
}

.course-card-main:hover .card-logo {
    transform: rotateY(360deg);
    border: 5px solid rgb(0, 176, 171);

}

.card-logo img {
    height: 60px;
    width: 60px;
    overflow: hidden;
    display: block;
    margin: auto;
}

.btn {
    display: block;
    position: relative;
    min-width: 180px;
    max-width: 180px;
    color: #fff;
    margin: 4rem auto;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    background: linear-gradient(#002b2e,#00b0ab);
    border-radius: 0;
    border:0;
    padding:0;
}

.btn::before, .btn::after {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    transition: all 0.2s linear;
    background: #00b0ab;
}

.btn span {
    display: block;
    padding: 10px 0px;
}

.btn:hover {
    color: #00b0ab;
    background: transparent;
}

.btn span::before, .btn span::after {
    content: "";
    width: 2px;
    height: 0;
    position: absolute;
    transition: all 0.2s linear;
    background: #00b0ab;
}

.btn:hover::before, .btn:hover::after {
    width: 100%;
}

.btn:hover span::before, .btn:hover span::after {
    height: 100%;
}

.btn::before, .btn::after {
    transition-delay: 0s;
}

.btn span::before, .btn span::after {
    transition-delay: 0.2s;
}

.btn::before {
    right: 0;
    top: 0;
}

.btn::after {
    left: 0;
    bottom: 0;
}

.btn span::before {
    left: 0;
    top: 0;
}

.btn span::after {
    right: 0;
    bottom: 0;
}

.btn:hover::before, .btn:hover::after {
    transition-delay: 0.2s;
}

.btn:hover .btn span::before, .btn:hover .btn span::after {
    transition-delay: 0s;
}

@media (max-width:1024px) {
    .card-main .card {
        margin-top: 4rem;
    }

    a.btn {
        width: 70%;
    }

    .course-card-main .card {
        margin-bottom: 80px;
    }
}

@media (max-width:768px) {
    .course-card-main .card{
        padding:10px;
    }
}

.sidebar-courses, .course-details-accordion{
    padding:3rem 0;
}


/*Course section end*/

/* Training section End */
.training-logo {
    height: 100px;
    width: 100px;
}

.training-logo img {
    width: 100%;
    object-fit: cover;

}

.training-section .card {
    position: relative;
    z-index: 1;
    padding: 30px;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 10%);
    background-color: #fff;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    transition: all 2s;
    min-height: 250px;
    max-height: 300px;
}

.training-section .card-body{
    padding:0px;
}

.training-section .card:hover {
    background:linear-gradient('#00b0ab',#002b2e);
    color: #fff;
}

.training-section-bottom {
    padding-top: 20px;
}

@media (max-width:1024px) {
    .training-section .card {
        margin-bottom: 25px;
    }

    .training-section-bottom {
        padding-top: 0px;
    }
}

.taining-des,.services-des {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width:576px){
   .taining-des,.services-des {
    -webkit-line-clamp: 4;
    } 
}

/* Training section End */

/* Services section start */
.services-logo {
    height: 60px;
    width: 60px;
}

.services-logo img {
    width: 100%;
    object-fit: cover;

}

.service-card .card {
    position: relative;
    z-index: 1;
    box-shadow: rgb(0 0 0 / 10%) 0px 0px 15px;
    background-color: rgb(255, 255, 255);
    min-height: 250px;
    padding: 30px;
    transition: all 0.3s ease 0s;
}

.service-card .card-body{
   padding:0px; 
}

.service-card-down {
    padding-top: 20px;
}

span.service-more {
    color: #00b0ab;
    font-weight: bold;
}

/* Services section End*/

/*Review Section Start*/

.dvayzM {
    background: #fff;
}

.fHhYpu{
    background-color: rgb(20 213 228 / 5%) !important;
}


.eapps-widget:hover .eapps-widget-toolbar {
    display: none;
}
@media (max-width:400px){
    .swiper-slide.swiper-slide-prev{
      width:100%;  
    }
}
/* Review Section Start*/

/* Newsletter start */
.newsletter {
    font-size: 32px;
    font-weight: bold;
    color: #3a3d45;
}

button.btn-submit.position-absolute.rounded-pill {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 30px;
    background: #002b2e;
    color: #fff;
}

@media (max-width:425px){
    button.btn-submit.position-absolute.rounded-pill {
    padding: 5px 10px;
    font-size:12px;
    letter-spacing:0px;
    top:1px;
   }
   
   input.form-control.rounded-pill {
    padding: 2px 10px !important;
    border: 2px solid #002b2e;
    }
}

input.form-control.rounded-pill {
    padding: 10px;
    border: 2px solid #002b2e;
}


/* Newsletter end */
/* Enquery form start */
.enquery-image {
    min-height: 400px;
    position: relative;
}

.enquery-image img {
    height: 100%;
    width: 100%;
}

.enquery-form .form-control,
.registration .form-control {
    appearance: none;
    background-clip: padding-box;
    background-color: transparent;
    border: none;
    border-bottom: 1.5px solid #002b2e;
    color: #212529;
    border-radius: 0;
    display: block;
    font-size: .9rem;
    font-weight: 400;
    line-height: 1.6;
    padding: 1rem 0rem 0rem 0rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    width: 100%;
}

.enquery-form .form-control:focus ,
.registration .form-control:focus {
    outline: none;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    border-bottom: 1.5px solid #002b2e;

}

.enquery-form .form-control::placeholder {
    transition: all ease .5s;
    color: #00b0ab;
}

.enquery-form .form-control:hover::placeholder {
    transform: translateY(-20px);
    z-index: 1;
}

/* Enquery form end */
/* index page end*/
/* footer section start */

.footer {
    background: #003e40;
    padding: 20px;
    position:relative;
}

.qr-image.qr-code {
    position: absolute;
    bottom:80px;
    right: 10px;
}

.qr-image.qr-code svg {
    width: 80px;
    height: 80px;
    border: 2px solid #002f32;
}

@media (max-width:1024px){
   .qr-image.qr-code {
    bottom: 25px;
    } 
}

@media (max-width:768px){
    .qr-image.qr-code {
    bottom: 90px;
    right:10px;
    } 
}
@media (max-width:576px){
    .qr-image.qr-code svg {
        width: 60px;
        height: 60px;
  }
  .qr-image.qr-code {
    position: absolute;
    bottom:105px;
    right: 10px;
}
}

.header-logo {
    height: 130px;
    width: 170px;
}

.header-logo .img-fluid {
    height: auto;
    width: 100%;
}

.footer hr {
    opacity: 0.75;
}

.footer .footerLogo h2,
.footer .connectWith h2,
.footer .quickLink h2,
.footer .findUs h2 {
    color: #00b0ab;
    font-size: 20px;
    font-weight: bold;
}

.footer .connectWith h2.widget-title::before,
.footer .quickLink h2.widget-title::before,
.footer .findUs h2.widget-title::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 80px;
    top: 110%;
    left: 0;
    background-color: rgb(241, 244, 247);
}

.footer .connectWith h2.widget-title::after,
.footer .quickLink h2.widget-title::after,
.footer .findUs h2.widget-title::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 80px;
    top: 125%;
    left: 30px;
    background-color: #00b0ab;
}

.footer .connectWith ul.icon,
.footer .quickLink ul.quick,
.footer .findUs ul.info {
    position: relative;
    display: flex;
    flex-direction: column;
    list-style-type: none;
    padding-left: 0rem;
}

.footer .connectWith ul.icon li,
.footer .findUs ul.info li,
.footer .quickLink ul.quick li {
    list-style: none;
    padding-top: 10px;
    color: #fff;
}

.footer .connectWith ul.icon li,
.footer .findUs ul.info li i {
    list-style: none;
    color: #fff;
}

.footer .quickLink ul.quick li a,
.footer .findUs ul.info li a,
.footer .connectWith ul.icon li a {
    list-style: none;
    text-decoration: none;
    color: #fff;
}

.footer .connectWith ul.icon li a i,
.footer .findUs ul.info li a i,
.footer .quickLink ul.quick li a i {
    width: 25px;
}

.copyright {
    color: #fff
}

/* footer section end */
/* loader start */

#preloader {
    position: fixed;
    z-index: 100000;
    height: 100vh;
    width: 100%;
    background: #fff;
}

#preloader .center {
    display: flex;
    min-height: 100vh;
    text-align: center;
    justify-content: center;
    align-items: center;
}

#preloader .center .ring {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    animation: ring 1s infinite;
}

@keyframes ring {
    0% {
        transform: rotate(0deg);
        box-shadow: 1px 5px 2px #b4183f;
    }

    50% {
        transform: rotate(180deg);
        box-shadow: 1px 5px 2px #d0f30b;
    }

    100% {
        transform: rotate(360deg);
        box-shadow: 1px 5px 2px rgb(20, 20, 51);
    }
}

#preloader .center .ring:before {
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

#preloader .center span {
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 150px;
    animation: text 1s ease-in-out infinite;
}

@keyframes text {
    0% {
        color: #002b2e;
    }

    50% {
        color: #b4183f;
    }

    100% {
        color: rgb(4, 2, 26);
    }
}


/* loader End */


/* About Us Page Start */
.about-image {
    min-height: 400px;
    position: relative;
    padding: 1rem;
}

.about-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.about-main-title {
    position: relative;
    padding-top: 2rem;
}

.about-main-title::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 80px;
    top: 125%;
    left: 30px;
    background-color: #00b0ab;
}

.about-main-title::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 80px;
    top: 110%;
    left: 0;
    background-color: #002b2e;
}

.about-section-main .about-content:nth-child(odd) {
    padding-left: 2rem;
}

@media(max-width:768px) {
    .about-section-main:nth-child(even) .row {
        flex-direction: column-reverse;
    }

    .about-content {
        padding-left: 0rem !important;
    }
    .about-image {
    min-height: 300px;
    }
}

@media(max-width:425px) {
    .about-content {
        padding-left: 1rem !important;
    }
    .about-image {
    min-height: 250px;
    }
}

/* About Us Page End*/

/* Course  Page Start*/

.ti_feature_section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.ti_padding_top_60,
.about-section-main {
    padding: 60px 10px;
}

@media (max-width:767px){
    .about-section-main {
    padding: 20px 10px;
}
}

.ti_heading_wrapper {
    position: relative;
    z-index: 1;
}

.ti_heading_wrapper>h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #3a3d45;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    z-index: 1;
}


.ti_heading_wrapper>h2>span {
    position: absolute;
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
    left: -45px;
    animation: contactdiv 2s infinite;
    animation-direction: alternate-reverse;
}

@keyframes contactdiv {
    from {
        left: -10%;
    }

    to {
        left: 60%;
    }
}

.demo .block {
    visibility: hidden;
}

.ti_feature_box {
    margin-bottom: 50px;
}

.ti_feature_box:hover .ti_feature_icon {
    transform: rotateY(360deg);
}

.ti_feature_box .ti_feature_icon {
    width: 170px;
    height: 170px;
    display: flex;
    overflow: hidden;
    background-color: #fff;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 100%;
    box-shadow: 0 0 50px rgb(0 0 0 / 9%);
    margin-bottom: 30px;
    transition: all 2s cubic-bezier(0, 0.25, 0.25, 1);
}

 .ti_feature_box .ti_feature_icon img {
    padding: 1.5rem;
}

.ti_feature_box .ti_subheading {
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: bold;
    color: #002b2e;
    transition: all 2s cubic-bezier(0, 0.25, 0.25, 1);
}

.course-heading {
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: bold;
    color: #002b2e;
    padding: 4rem 0rem;
    position: relative;
}

.course-heading::before {
    content: "";
    position: absolute;
    top: 95px;
    left: 0;
    width: 260px;
    height: 3px;
    background: #00b0ab;
}

.course-heading::after {
    content: "";
    position: absolute;
    top: 94px;
    left: 70px;
    width: 100px;
    height: 5px;
    background: #002b2e;
}

.courseBtn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.courseBtn a {
    display: flex;
    justify-content: center;
    background-color: transparent;
    min-width: 300px;
    max-width: 400px;
    padding: 10px 0px;
    color: #00b0ab;
    text-decoration: none;
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 40px;
    border: 2px solid #002b2e;
}


/*course page End*/
/*Contact page start*/

.ContactUs {
    /* min-height: 650px; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.ContactUs .container {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    z-index: 1;
    overflow: hidden;
}

.ContactUs .container .contactinfo {
    position: absolute;
    top: 40px;
    width: 350px;
    height: calc(100% - 80px);
    background: #002b2e;
    background:linear-gradient(to right,#002b2e,#00a5a0);
    z-index: 1;
    padding: 40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 15px rgba(0, 0, 0, 0.15);
}

.ContactUs .container .contactinfo h2 {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.ContactUs .container .contactinfo ul.info {
    padding-left: 0px;
}

.ContactUs .container .contactinfo ul.info li {
    position: relative;
    list-style: none;
    display: flex;
    margin: 20px 0px;
    cursor: pointer;
    align-items: flex-start;
}

.ContactUs .container .contactinfo ul.info li span:nth-child(1) i {
    filter: invert(50%);
}

.ContactUs .container .contactinfo ul.info li span:nth-child(2) {
    color: #fff;
    margin-left: 20px;
    font-size: 16px;
}

@media (max-width:576px){
    .ContactUs .container .contactinfo ul.info li span:nth-child(2) {
        margin-left: 10px;
        font-size: 12px;
    }
}

.ContactUs .container .contactinfo ul.info li a {
    color: #fff;
    text-decoration: none;
}

.ContactUs .container .contactinfo ul.icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 1.6rem;
}

.ContactUs .container .contactinfo ul.icon li {
    list-style: none;
    margin-right: 15px;
}

.ContactUs .container .contactinfo ul.icon li a {
    text-decoration: none;
    color: #fff;
}

.ContactUs .container .contactform {
    position: absolute;
    padding: 50px 50px;
    padding-left: 250px;
    margin-left: 150px;
    width: calc(100% - 150px);
    min-height: 100%;
    background: #fff;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.ContactUs .container .contactform h2 {
    font-size: 24px;
    color: #002b2e;
    font-weight: bold;
}

.ContactUs .container .contactform .FormBox {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 30px;
}

.ContactUs .container .contactform .FormBox .inputbox {
    position: relative;
    margin-bottom: 35px;
}

.ContactUs .container .contactform .FormBox .inputbox.w50 {
    width: 47%;
}

.ContactUs .container .contactform .FormBox .inputbox.w100{
    width: 100%;
}

.ContactUs .container .contactform .FormBox .inputbox input,
.ContactUs .container .contactform .FormBox .inputbox textarea {
    width: 100%;
    resize: none;
    padding: 5px 0px;
    font-size: 18px;
    font-weight: 300;
    color: #333;
    border: none;
    outline: none;
    border-bottom: 1px solid #777;
}

.ContactUs .container .contactform .FormBox .inputbox textarea {
    height: 120px;
}

.ContactUs .container .contactform .FormBox .inputbox span {
    position: absolute;
    left: 0;
    padding: 5px 0px;
    pointer-events: none;
    font-size: 15px;
    font-weight: 300;
    transition: 0.3s;
}

.ContactUs .container .contactform .FormBox .inputbox input:focus ~ span,
.ContactUs .container .contactform .FormBox .inputbox input:valid ~ span,
.ContactUs .container .contactform .FormBox .inputbox textarea:focus ~ span,
.ContactUs .container .contactform .FormBox .inputbox textarea:valid ~ span{
    transform: translateY(-20px);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #00b0ab;
    font-weight: 500;
}

.ContactUs .container .contactform .FormBox .inputbox input[type="submit"] {
    position: relative;
    cursor: pointer;
    background: #00b0ab;
    color: #fff;
    border: none;
    max-width: 150px;
    padding: 10px;
}

.ContactUs .container .contactform .FormBox .inputbox input[type="submit"]:hover {
    background: #002b2e;
}

@media(max-width:1100px) {
    .ContactUs .container {
        width: 100%;
        min-width: auto;
        margin: 20px;
        box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.2);
    }

    .ContactUs .container .contactinfo {
        top: 0;
        height: 550px;
        position: relative;
        box-shadow: none;
    }

    .ContactUs .container .contactform {
        position: relative;
        width: calc(100% - 350px);
        padding-left: 0;
        margin-left: 0;
        padding: 40px;
        height: 550px;
        box-shadow: none;
    }
}

@media(max-width:991px) {
    .ContactUs {
        background: #00b0ab;
      
    }

    .ContactUs:before {
        display: none;
    }

    .ContactUs .container {
        display: flex;
        flex-direction: column;
    }

    .ContactUs .container .contactform {
        width: 100%;
        height: auto;
    }

    .ContactUs .container .contactinfo {
        width: 100%;
        height: auto;
    }

    .ContactUs .container .contactinfo ul.icon {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media(max-width:767px) {
    .ContactUs .container .contactform {
        padding: 25px;
    }

    .ContactUs .container .contactinfo {
        padding: 25px;
        flex-direction: column;
        align-items: flex-start;
    }

    .ContactUs .container .contactinfo ul.icon {
        margin-top: 40px;
    }

    .ContactUs .container .contactform .FormBox .inputbox.w50 {
        width: 100%;
    }
}

/* Map section start */

.map {
    padding: 0px;
}

/* Map section end */

/*Contact page End*/

/* Registration page start */

.registerUs {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #fff;
}

.registration {
    background-color: #fff;
    border-radius: 3px;
    padding:3rem;
    box-shadow: 2px 0px 5px rgb(0 0 0 / 25%);
    overflow: hidden;
    transition: transform 0.4s ease-in-out;
}

.btn-submit {
    display: inline-block;
    text-align: center;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 40px;
    border: 0;

}

h1.form-title,
h2.form-title {
    text-align: center;
    padding-bottom: 2rem;
    text-transform: uppercase;
    font-size: 2rem;
    color: #002b2e;
    font-weight: bold;
}

.form-label {
    margin-bottom: 0.5rem;
    color: #00b0ab;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}

.rc-anchor-light.rc-anchor-normal {
    border: 1px solid #00b0ab !important;
}
.rc-anchor-light {
    background: #d3f7f6 !important;
    color: #002b2e !important;
}
.recaptcha-checkbox-border {
    border: 2px solid C !important;
}

/*@media (max-width:425px){
    .g-recaptcha iframe {
         width: 275px;
    }
    
    .g-recaptcha .rc-anchor-logo-portrait {
        margin: 10px 0 0 -4px !important;
        width: 50px;

        }
}*/

/* Registration page End */

/*Login page start*/



.login {
    background-color:#fff;
    padding:3rem;
}

#loginModal.modal {
    display: none;
    height: 100%;
    left: 0;
    outline: 0;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    top: 20%;
    width: 100%;
    z-index: 100;
}

@media (max-width:576px){
    .login,
    .registration{
        padding:10px;
    }
}

.login-bg{
    background:linear-gradient(270deg,#00b0ab,#002b2e,#00b0ab);
}

/*Login page End*/
/* Forget Password Page Start */
.forget-pwd-section {
    margin: 3rem auto;
    box-shadow: 0px 0px 10px 2px #ccc;
    padding: 3rem 3rem;
}

/* Forget Password Page End */

.testimonials h2 {
    color: #00b0ab;
    font-size: 24px;
}

.blockquote-name {
    color: #00b0ab;
}

/* Faq Page Start */
.faq-section .accordion-item {
    margin-top: 10px;
    border-bottom: 2px solid #002b2e;
}

.faq-section .accordion-button:focus {
    border-color: #fff;
    box-shadow: none;
    outline: 0;
    z-index: 3;
}

.faq-section .accordion-button {
    align-items: center;
    background-color: rgb(232 251 250);
    border: 0;
    border-radius: 0;
    color: #002b2e;
    font-weight: 600;
    display: flex;
    font-size: 16px;
    overflow-anchor: none;
    padding: 1.25rem;
    position: relative;
    text-align: left;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
    width: 100%;
}

.faq-section .accordion-body {
    padding: 1.25rem;
    background-color: rgb(232 251 250);
    border-top: 2px solid #002b2e;
}

/* Faq Page End */
/* Gallery Page Start */
.card {
     border:none !important;
}

.gallery-image {
    min-height: 200px;
    max-height: 250px;
}
.card b{
    padding-top:5px;
}

.gallery-image img{
    height:250px;
    width:100%;
    padding:5px;
    object-fit:cover;
    box-shadow: 1px 1px 3px 2px #000 ;
}

.gallery-titles {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 60px;
    text-align: center;
    line-height: 70px;
    background: rgba(0, 43, 46, .9);
}

.gallery-titles p {
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
    color: #fff;
}


.button-section {
    padding-bottom: 3rem;
    text-align:center;
}

.button-section .btn-g {
    border: 2px solid #002b2e;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding:5px;
    margin:5px 10px;
}

.button-section .btn-g:active,
.button-section .btn-g:hover
{
    background: linear-gradient(#002b2e,#00b0ab);
    color: #fff;
    border: 2px solid ;
}

.modal {
    top: 15%;
}

/* Gallery Page End */

/* Training Page Start */

.btn-training {
    display: inline-block;
    background-color: transparent;
    text-align: center;
    padding: 10px 0px;
    max-width: 220px;
    min-width: 180px;
    color: #00b0ab;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    margin-left: .5rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 40px;
    border: 2px solid #00b0ab;
    transition:all ease 2s;
}

.btn-training:hover{
    color: #002b2e;
    border: 2px solid #002b2e;
}

.login-link a{
    color:#00b0ab; 
    font-weight:500;
}

@media (max-width:430px) {
    .btn-training {
        min-width: 100px;
        margin-left: 0rem;
        padding:5px 10px;
        font-size:12px;
    }
}

.training-outer {
    background: linear-gradient(-60deg, #181e1a, #1b4f4b, #05201f, #091716);
    padding: 20px;
    border-radius: 20px;
    height:230px;
    margin-bottom:2rem;
}

.training-main-section .training-inner {
    color: #fff;
}

.training-short-des{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.training-inner .card-title {
    color:#00b0ab;
    text-transform:uppercase;
}
.training-inner a {
    color: #00b0ab;
}

@media (max-width:425px){
    .rc-anchor-normal {
    width: 276px !important;
    }
    .rc-anchor-normal .rc-anchor-content {
    width: 200px;
    }
}

/* Training Page End */
/* 404 Error Page Start */
.error-page-inner {
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(240deg, #181e1a, #1b4f4b, #05201f, #091716);
    background-size: 400% 400%;
    animation: animatePrivacy 5s ease infinite;
    animation-delay: 3s;
}

.error-page-inner h1 {
    font-size: 8rem;
    color: #fff;
    font-weight: bolder;
    text-transform: uppercase;
}

.error-page-inner h2{
    font-size: 3rem;
    color: #fff;
    font-weight: bolder;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.error-page-inner .btn-error {
    border: 2px solid #fff;
    margin-top: 3rem;
    border-radius: 40px;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
}

/* 404 Error Page End */

/* Services Details Page Start */
.service-details-banner {
    background-image: url(/assets/img/services-details.jpg);
    min-height: 300px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.service-details-banner .service-details-banner-inner {
    background: rgba(0,0,0, .3);
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-details {
    padding: 2rem;
}

.service-details-page .heading {
    padding-bottom: 1rem;
    text-transform: uppercase;
}

.service-details-page .sub-heading {
    padding: 1rem 0rem;
}

.service-plan h2 {
    padding: 1rem 0rem;
}

ul.service-list {
    list-style-type: none;
    padding-left: 1rem;
}

ul.service-list li {
    padding: .6rem 0rem;
}

.service-list .img-fluid {
    height: 20px;
    width: 20px;
}

.service-list span {
    padding-left: 1rem;
}

/* Services Details page End */

/* Scroll top start */


/* Scroll top start */

/* thank you page start  */
.thankyou-page h1 {
    font-size: 4em;
    color: #fff;
    font-weight: bolder;
    text-transform: uppercase;
}

.thankyou-page h2 {
    font-size: 1.5em;
    color: #fff;
    font-weight: bolder;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width:576px){
   .thankyou-page h1{
    font-size: 2em;
    text-align:center;
    }
    
    .thankyou-page h2 {
        font-size: 1em;
        text-align:center;
    } 
}
/* thank you page end */

/* privacy page start */

.privacy-main,
.sitemap-main,
.training-details-bg{
    background-image: linear-gradient(45deg, #1e7678 15%, #437674 50%, #071b22 100%);
    background-size: 400% 400%;
    color: #fff;
    animation: animatePrivacy 8s ease infinite;
    animation-delay: 3s;
    padding: 3rem 0rem;
}

@keyframes animatePrivacy {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%;
        
    }

    100% {
        background-position: 0% 50%
    }
}

@media (max-width:776px){
    .privacy-main{
        padding:2rem .5rem;
    }
}

/* privacy page end */
/* sitemap start page */
.sitemap-main .siteMap {
    display: flex;
    flex-direction: column;
    font-size: 1rem;
}

.sitemap-main .siteMap a {
    color: #fff;
    text-decoration: none;
}

/* sitemap end page */

/*Traning Details Page Start*/

.training-details-bg h1{
   color:#00b0ab; 
   
}

.training-details-bg h2{
   color:#00b0ab;
   font-weight:bold;
}

.training-details-bg p{
    font-size:16px;
}


.training-details-bg th{
   color:#00b0ab;
   font-weight:bold; 
   font-size:18px;
   line-height:20px;
}

.training-details-bg td{
   color:#fff; 
}

.training-details-bg tr{
   border:2px solid #fff;
}

/*Traning Details Page End*/

/*Course Details Page Start*/


/*transpage section start-----------------------------------------*/
.course-section {
    height: 406px;
    width:100%;
    position: relative;
    
}
.course-section .image-fluid{
    height:100%;
    width:100%;
    object-fit:cover;
}

/*transpage section end-----------------------------------------*/
.inner-content{
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    
    
    
}
.inner-content h1{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 351px;
    font-size: 50px;
    font-weight: 600;
    color: #fff;
}

.inner-content .inner-list{
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding-right: 80px;
}
.inner-content .inner-list li a{
    font-size: 20px;
    color: #fff;
}
.inner-content .inner-list li a:hover{
    color: pink;
}
.inner-content .inner-list li {
    font-size: 20px;
    color: #fff;
}


/*--------------------blog section start---------------------*/
.blog-area .head-list{
    padding-top: 20px;
    font-size: 25px;
    font-weight: 600;
}
.blog-area .head-list::after{
    content: "";
    display: block;
    width: 120px;
    height: 3px;
    background-color: #00b0ab;
    margin-top: 5px;
} 
.blog-area .navbar-nav{

    padding-top: px;
    padding-left: 90px;
}
.blog-area .nav-item{
    margin-top: 13px;

}  
.blog-area .nav-item a img{
    width: 25px;
    display: inline-block;
    margin-right: 10px;
    transition: .5s;
}
.blog-area .nav-item a{
    color: #343434;
    font-size: 16px;
    transition: all 0.2s ease-in-out;
    display: block;
    

}
.blog-area .nav-item a:hover{
    transform: scale(1.01);
    transition: all ease 0.5s ;
    color: #00b0ab;
   
   
}

/*---------------------blog section end--------------------*/


.course-details-accordion .accordion{
    padding-top: 70px;
    padding-left: 30px;
    color: #00b0ab;
}

.course-details-accordion .accordion .accordion-button {
    transition: all 0.2s ease-in-out;
    background-color: rgb(213, 243, 241);
    margin-bottom: 10px;
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
}
.course-details-accordion .accordion .accordion-button :hover{
    transition: all 0.2s ease-in-out;
    color: #00b0ab;
    border-color: none;
} 

.course-details-accordion .accordion .accordion-button.accordian-click:not(.collapsed) {
    background-color: rgb(213, 243, 241);
    box-shadow: none;
    color: #000;
    

}
.course-details-accordion .accordion .accordion-button:focus {
    z-index: 1;
    border-color: none;
    outline: 0;
    box-shadow: none
}
.course-details-accordion .accordion .accordion-body{
    border-bottom: 1px solid #00b0ab;
    margin-bottom:10px;
   
}

.course-details-accordion .accordion-flush .accordion-item {
    border: 0;
}

.course-details-accordion .accordion .fa-check-circle{
   
    color: #00b0ab;
}
.course-details-accordion .accordion .accordion-flush .accordion-item{
    border:0;
}

ul.acordian-list{
    padding-left:0px;
}
ul.acordian-list li span {
    color:#030505 ;
    margin-left:5px;
}

.page-item:first-child .page-link {
    padding: 10px 20px;
}

.page-item.disabled .page-link {
    background-color: #f8fafc;
    border-color: #00b0ab;
    color: #00b0ab;
}


.page-link {
    border: 1px solid #00b0ab;
    color: #00b0ab;
    padding: 10px 30px;
}
.page-link:focus, .page-link:hover {
    background-color:transparent;
    color: #00b0ab;
    border-color:#00b0ab;
}


/* media quyery-------*/

@media (max-width:992px) {
    .categery-item  li a{
        display: block;
        color: #000;
        font-size: 12px;
        font-weight: 500;
        padding-left: 10px
    }
}

@media (max-width:576px) {
    .page-link{
         padding: 5px 10px;
    }
    .page-item:first-child .page-link {
        padding: 5px 10px;
    }
}
@media (max-width:840px){
    .blog-area .navbar-nav {
        padding-left: 20px;
    }
}
/*Course Details Page End*/

/*scroll to start */
    #myBtn {
      display: none;
      position: fixed;
      bottom: 20px;
      right: 30px;
      height:55px;
      width:55px;
      z-index: 9999;
      font-size: 2rem;
      font-weight:bold;
      border: none;
      outline: none;
      background:linear-gradient(#002b2e,#00b0ab);
      color: #fff;
      cursor: pointer;
      border-radius: 50%;
      transition: all ease 2s;
    }
    
/*scroll to end */

/*button start */


.student-login {
    position: fixed;
    left: 0px;
    top: 50%;
    padding: 5px 15px;
    transform: rotate(90deg) translate(0, -15px);
    transform-origin: left;
    background: linear-gradient(#002b2e,#00b0ab);
    z-index: 9999;
    color:#fff;
    cursor:pointer;
    text-transform:uppercase;
}

.student-login a{
    color:#fff;
}

/*button end */

/* Payment Getway Page start */
.payment{
    padding:3rem 0;
}
.payment .payment-heading{
    font-size:2em;
    text-align:center;
    padding-bottom:3rem;
    font-weight:bold;
}

.payment .payment-qr-image {
    height:200px;
    width:200px;
}

.payment .payment-qr-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.payment .sub-heading{
   font-size:1.4em;
   font-weight:bold;
   padding:1rem 0;
   position:relative;
}

.payment .sub-heading::after{
    content:'';
    position :absolute;
    top:44px;
    left:0px;
    height:3px;
    width:100px;
    background:#389d99;
}
.payment-btn-outer{
   width:0%;
   margin:0px auto;
   background:#fff;
   padding:2rem 0px;
}

.payment-btn-outer a.payment-btn {
    text-align: center;
    padding: 5px 20px;
    min-width: 100px;
    font-size:1em;
    font-weight:bold;
    max-width: 150px;
    background: #fff;
    color: #359c98;
    border: 2px solid #359c98;
    border-radius: 5px;
}
 @media (max-width:576px){
     .payment .payment-qr-image {
    margin: 0px auto;
}
 }
/* Payment Getway Page end */

