@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css");
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Oswald:wght@200;300;400;500;600;700&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
    display: block;
    height: auto;
    max-width: 100%;
    width: 100%;
    vertical-align: middle;
}

summary {
    display: list-item;
}

body,
html {
    height: 100%;
}

html {
    font-size: 100%;
}

body {
    line-height: 1.4;
}

p {
    font-size: 15px;
    color: #2a2a2a;
    line-height: 1.55;
    margin-bottom: 1rem;
    font-weight: 500;
}

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

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
}

.sec_padding {
    padding: 40px 0;
}

.sec_title {
    margin-bottom: 30px;
}

.sec_title .main_heading {
    position: relative;
    font-size: 3rem;
    color: #000;
    font-family: 'Oswald', sans-serif;
}
.sec_title .main_heading span {  font-family: 'Oswald', sans-serif;}
.btn-transparent {
    position: relative;
    border-radius: 50px;
    border: 1px solid #ffffff;
    color: #fff;
    font-size: 14px;
    padding: 8px 35px;
    letter-spacing: .5px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    overflow: hidden;
    z-index: 1;
}

.btn-transparent::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background-color: #fff;
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    opacity: 0;
    z-index: -1;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.btn-transparent:hover::before {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.btn-transparent-dark {
    position: relative;
    border-radius: 50px;
    border: 1px solid #000000;
    color: rgb(0, 0, 0);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 35px;
    letter-spacing: .5px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    overflow: hidden;
    z-index: 1;
}

.btn-transparent-dark::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background-color: #000;
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    opacity: 0;
    z-index: -1;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.btn-transparent-dark:hover::before {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.btn-transparent-dark:hover{color:#fff;}
.btn-theme {
    position: relative;
    border-radius: 50px;
    color: #fff;
    border: 1px solid #eb2931;
    background-color: #eb2931;
    font-size: 14px;
    padding: 8px 35px;
    letter-spacing: .5px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    overflow: hidden;
    z-index: 1;
}

.btn-theme::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background-color: #fff;
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    opacity: 0;
    z-index: -1;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.btn-theme:hover::before {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}


/* Header Area Start */
.main_header {
    position: relative;
}

.main_header::before {
    content: '';
    position: relative;
    width: 100%;
    height: 7px;
    display: block;
    background-image: -webkit-gradient(linear, right top, left top, from(#9c27b0), color-stop(#009688), color-stop(#ffc107), color-stop(#03a9f4), to(#4caf50));
    background-image: -o-linear-gradient(right, #9c27b0 0%, #009688, #ffc107, #03a9f4, #4caf50);
    background-image: linear-gradient(to left, #9c27b0 0%, #009688, #ffc107, #03a9f4, #4caf50);
}

.top_header {
    position: relative;
    background-color: #ffffff;
    padding: 20px 0;
}

.top_header .top_contact a {
    font-size: 15px;
    color: #404040;
    border-right: 1px solid #ddd;
    padding-right: 15px;
    font-weight: 400;
    margin-right: 15px;
    font-family: 'Oswald', sans-serif;
}

.top_header .top_contact a i {
    color: #f44336;
}

.top_header .top_contact a:last-child {
    border-right: none
}

.top_social a {
    position: relative;
    font-size: 15px;
    color: #404040;
    margin-left: 15px;
}
.top_social {margin-top: 20px;}

.bottom_header {
    margin-bottom: -5px;
    z-index: 11;
    position: relative;
}
/*.navbar-brand img{max-width: 118px;  margin-top: 12px;}*/
.navbar-brands {
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    margin: 0;
    font-size: inherit;
    text-decoration: none;
    white-space: unset;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main_header.sticky .bottom_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
background-color: #eb2931;
    -webkit-box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 33%);
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 33%);
    -webkit-animation: smoothScroll 1s forwards;
    animation: smoothScroll 1s forwards;
    z-index: 999;
}

.main_header.sticky .bottom_header .row {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.main_header.sticky .bottom_header .navbar-brands {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
    display: block;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;

}

@-webkit-keyframes smoothScroll {
    0% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes smoothScroll {
    0% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

.bookclass{background: #fcee36; padding: 8px; color: #000!important; border-radius: 4px; font-weight: 500;}
.main_header.sticky .bottom_header .stellarnav li > a {
    color: #fff;
}

/* Main Slider */
.slider_sec {
    position: relative;
    background-image: -webkit-gradient(linear, right top, left top, color-stop(30%, #ffffff), color-stop(15%, #eb2931));
    background-image: -o-linear-gradient(right, #ffffff 30%, #eb2931 15%);
    background-image: linear-gradient(to left, #ffffff 30%, #eb2931 15%);
    padding: 40px 0;
}

.slider_sec::before {
    content: '';
    position: absolute;
    display: block;
    width: 70%;
    height: 85%;
    right: 0;
    bottom: 0;
    background-color: #faed36;
}

.shape-1 {
    position: absolute;
    left: 25px;
    top: 25px;
    width: 200px;
    height: 200px;
    background: url(../images/shape/shape-1.png);
    -webkit-filter: invert(1);
    filter: invert(1);
    background-size: contain;
    -webkit-animation: spin 10s linear infinite;
    -moz-animation: spin 10s linear infinite;
    animation: spin 10s linear infinite;
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

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

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

.shape-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 235px;
    height: 237px;
    background: url(../images/shape/shape-2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}


.slider-area2 {
    position: relative;
}

.slider-area2 .nivo-controlNav .nivo-control {
    font-size: 0;
    height: 10px;
    width: 10px;
    font-weight: 600;
    background-color: #767676;
    display: block;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    position: relative;
}

.slider-area2 .nivo-controlNav .nivo-control:after {
    content: "";
    height: 26px;
    width: 26px;
    background-color: #ffffff;
    position: absolute;
    top: -8px;
    left: -8px;
    border-radius: 50%;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.slider-area2 .nivo-controlNav .nivo-control:last-child {
    margin-bottom: 0;
}

.slider-area2 .nivo-controlNav .nivo-control.active {
    background-color: #812425;
}

.slider-area2 .nivo-controlNav .nivo-control.active:after {
    visibility: visible;
    opacity: 1;
}



.slider-layout2 .slider-content .caption_title {
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
    text-transform: capitalize;
    -webkit-animation: fadeInUp 1400ms ease-in-out;
    animation: fadeInUp 1400ms ease-in-out;
}

@media (max-width:1400px) {
    .slider-layout2 .slider-content .caption_title {
        font-size: 25px;
    }
}


.slider-layout2 .slider-content .btn-theme {
    -webkit-animation: fadeInUp 1800ms ease-in-out;
    animation: fadeInUp 1800ms ease-in-out;
}

.slider-layout1 .nivo-caption {
    top: -45px;
}

@media only screen and (max-width: 1370px) {
    .slider-layout1 .nivo-caption {
        top: 0;
    }
}

.slider-layout1 .slider-content .caption_title {
    -webkit-animation: fadeInUp 1400ms ease-in-out;
    animation: fadeInUp 1400ms ease-in-out;
}

.slider-layout1 .slider-content .btn-theme {
    -webkit-animation: fadeInUp 1800ms ease-in-out;
    animation: fadeInUp 1800ms ease-in-out;
}

.sliderCaptionWrap {
    border: 1px solid #ffffff;
    width: 70%;
    padding: 50px;
    position: relative;
}

.nivo-directionNav {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 9;
}

.nivo-prevNav,
.nivo-nextNav {
    position: relative !important;
    display: block;
    top: auto !important;
    margin: 10px 0 0;
    background-color: #ffffff;
    width: 50px;
    height: 50px;
    font-size: 35px;
    cursor: pointer;
    text-align: center;
    line-height: 50px;
    color: #f7373b;
    z-index: 9999 !important;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.nivo-prevNav:hover,
.nivo-nextNav:hover {
    background-color: #f7373b;
    color: #fff;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}


.innerbanner_sec{
    position: relative;
    height: 400px;
    background: url(../images/bg/2.png) #faed36;
    background-position: center;
    background-repeat: repeat-x;
    background-size: contain;
    overflow: hidden;
    z-index: 1;
}
.innerbanner_sec::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 240px;
    height: 200px;
    background: url(../images/bg/3.png);
    background-size: contain;
    background-repeat: no-repeat;
    }
.innerbanner-shape.waves {
    position: absolute;
    bottom: 0;
    left: 0;
}
.innerbanner-shape.waves .wave {
    background: url(../images/shape/wave.svg) repeat-x;
    position: absolute;
    top: -198px;
    width: 6400px;
    height: 198px;
    animation: wave 7s cubic-bezier( 0.36, 0.45, 0.63, 0.53) infinite;
    transform: translate3d(0, 0, 0);
}
.innerbanner-shape.waves .wave:nth-of-type(2) {
    top: -175px;
    animation: wave 7s cubic-bezier( 0.36, 0.45, 0.63, 0.53) -.125s infinite, swell 7s ease -1.25s infinite;
    opacity: 1;
}
@-webkit-keyframes wave {
    0% {
      margin-left: 0;
    }
    100% {
      margin-left: -1600px;
    }
  }
  
  @keyframes wave {
    0% {
      margin-left: 0;
    }
    100% {
      margin-left: -1600px;
    }
  }
  
  @-webkit-keyframes swell {
    0%, 100% {
      -webkit-transform: translate3d(0,-25px,0);
              transform: translate3d(0,-25px,0);
    }
    50% {
      -webkit-transform: translate3d(0,5px,0);
              transform: translate3d(0,5px,0);
    }
  }
  
  @keyframes swell {
    0%, 100% {
      -webkit-transform: translate3d(0,-25px,0);
              transform: translate3d(0,-25px,0);
    }
    50% {
      -webkit-transform: translate3d(0,5px,0);
              transform: translate3d(0,5px,0);
    }
  }
.banner_caption {padding-top: 50px;}
.banner_caption .banner_title{
    font-weight: 700;
    font-size: 3.5rem;
    color: #222222;
    letter-spacing: .5px;
    font-family: 'Oswald', sans-serif;
}

.breadcrumb-item a{
    font-weight: 600;
    color: #000;
}
.breadcrumb-item.active{
    font-weight: 600;
    color: #eb2931;
}

/* Inner Page Wraper */
.innerpage_wraper{position: relative;z-index: 1;}

.innerpage_wraper::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/shape/shape-6.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-attachment: fixed;
    opacity: .5;
    z-index: -1;
}

/* About Us Area */
.about_sec {
    position: relative;
    margin: 10px 0;
}

.about_sec::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 530px;
    height: 560px;
    background: url(../images/shape/shape-6.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.about_sec::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #009688;
    z-index: -1;
}

.aboutusLeft {
    background: url(../images/bg/1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 47px;
    position: relative;
    height: 100%;
}

.aboutleft_box:nth-child(2) {
    border-top: 1px dashed #ddd;
    border-bottom: 1px dashed #ddd;
    padding: 20px 0;
}

.aboutleft_box .icon_box {
    margin-bottom: 12px;
    font-size: 65px;
    color: #fff;
    text-align: center;
}
.aboutleft_box .icon_box img{ width: auto; display: inline-block; border-radius: 4px;}

.aboutleft_box h4 {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    text-align: center;
}

.about_usWraper {
    position: relative;
    background-color: #009688;
    padding: 40px;
    height: 100%;
    padding-right: 0;
}

.about_usWraper .sec_title .main_heading {
    font-size: 4rem;
}

.about_usWraper p {
    color: #fff;
    text-align: justify;
}

/* Contact Inner Section */
.contactInnerform{
    background-color: #fff;
    padding: 0px 15px;
    position: relative;
}
.contactInnerform form{}
.contactInnerform form .form-label{
    font-size: 15px;
    font-weight: 500;
    font-style: italic;
}
.contactInnerform form .form-control{    border-radius: 50px;}

.contactInnertitle{
    margin-bottom: 0;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    width: 600px;
    -webkit-transform-origin: bottom center;
    -ms-transform-origin: bottom center;
            transform-origin: bottom center;
    margin-top: 110px;
    text-align: center;
}
.contactInnertitle h2{ 
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    font-size: 60px;
}
.contact_ingfo_bg{
    width: 100%;
    height: 100%;
    background: url(../images/home/contact-1.jpg), #212121;
    background-position: top right;
    background-repeat: no-repeat;
}
.contactInnerinfo {
    position: absolute;
    bottom: 0;
    width: 50%;
    left: 0;
    padding: 40px 100px;
    height: 100%;
    background-color: #212121;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
            justify-content: center;
}
.contactInnerinfo h3{
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    margin-bottom: 40px;
}
.contactInnerinfo-item h6{
    color: #fff;
    margin-bottom: 5px;
    font-size: 18px;
}
.contactInnerinfo-item p, .contactInnerinfo-item p a{ 
    font-size: 14px;
    margin-bottom: 15px;
    color: #919155;
}
.contactInnerinfo-item p a{        
margin: 0;
}
.contact_smd {
    display: flex;
    align-items: center;
    margin: 0;
}
.contact_smd li+li {
    margin-left: 20px;
}
.contactInnerinfo-item .contact_smd a {
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
            justify-content: center;
    border-radius: 50%;
    color: #fff;
    background-color: rgba(255,255,255,.1);
}

.contactInnerinfo-item .contact_smd a:hover {
    background-color: #faed36;
    color: #000;
}
/* Placement Area */
/*********************** Demo - 8 *******************/
.placement_sec {
    position: relative;
    background: #faed36 url(../images/shape/shape-3.png);
    background-position: right top;
    background-repeat: no-repeat;
    background-size: contain;
    /* background-image: -webkit-gradient(linear, right top, left top, color-stop(20%, #ffffff), color-stop(20%, #eb2931));
    background-image: -o-linear-gradient(right, #ffffff 20%, #eb2931 20%);
    background-image: linear-gradient(to left, #ffffff 20%, #eb2931 20%); */
}

/* .placement_sec::after{
    content: '';
    position: absolute;
    right: 17px;
    top: 0;
    width: 491px;
    height: 100%;
    background: url(../images/shape/shape-3.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
} */
.placement_carousel .owl-nav {
    position: absolute;
    right: -80px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.placement_carousel .owl-nav .owl-prev,
.placement_carousel .owl-nav .owl-next {
    display: block;
    margin: 17px 0;
    /* -webkit-filter: invert(1);
    filter: invert(1); */
}

.placement_carousel .owl-nav .owl-prev:focus,
.placement_carousel .owl-nav .owl-next:focus {
    outline: none;
}

.placement_box .icon,
.placement_box .title {
    margin: 0;
    position: absolute
}

.placement_box {
    -webkit-box-shadow: 0 0 3px 0px rgb(0 0 0 / 30%);
    box-shadow: 0 0 3px 0px rgb(0 0 0 / 30%);
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.placement_box img {
    width: 100%;
    height: auto
}

.placement_box .box-content {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transform: perspective(400px) rotateX(-90deg);
    transform-origin: center top 0;
    transition: all .5s ease 0s
}

.placement_box .icon li a,
.placement_box .title {
    background: #eb2931;
    font-size: 17px;
    color: #fff
}

.placement_box:hover .box-content {
    opacity: 1;
    transform: perspective(400px) rotateX(0)
}

.placement_box .title {
    padding: 5px 7px;
    border-radius: 0;
    bottom: 5px;
    left: 5px;
    letter-spacing: 1px;
    font-weight: 500;
    font-family: 'Oswald', sans-serif;
    transition: all .9s ease 0s;
}

.placement_box .icon li a {
    transition: all .35s ease 0s
}

.placement_box:hover .title {
    bottom: -40px
}

.placement_box .icon {
    list-style: none;
    position: absolute;
    padding: 0;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    right: 0;
}

.placement_box .icon li a {
    display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 7px;
}

.placement_box .icon {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 22px;
}

.placement_box .icon li a:hover {
    background: #fff;
    color: #000
}

@media only screen and (max-width:990px) {
    .box8 {
        margin-bottom: 20px
    }
}


/* Courses Area */

.courses_sec {
    position: relative;
    overflow: hidden;
    z-index: 1;
    /* background: url(../images/shape/shape-4.png);
    background-size: contain;
    background-position: center;
    background-attachment: fixed; */

}

.courses_sec::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/shape/shape-5.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    -webkit-animation: myAnim 5s ease 0s infinite normal forwards;
    animation: myAnim 5s ease 0s infinite normal forwards;
    z-index: -1;
}

@-webkit-keyframes myAnim {
    0% {
        -webkit-transform: skewY(0deg);
        transform: skewY(0deg);

    }

    100% {
        -webkit-transform: skewY(190deg);
        transform: skewY(190deg);
    }
}

@keyframes myAnim {
    0% {
        -webkit-transform: skewY(0deg);
        transform: skewY(0deg);

    }

    100% {
        -webkit-transform: skewY(190deg);
        transform: skewY(190deg);
    }
}

.course_slider .item {
    margin: 10px 0;
}

.courses_wraper .courses_figure {
    position: relative;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.courses_wraper .courses_figure::before,
.courses_wraper .courses_figure::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgb(144 0 6 / 82%);
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.courses_wraper .courses_figure::after {
    top: auto;
    bottom: 0;
}

.courses_wraper:hover .courses_figure::before,
.courses_wraper:hover .courses_figure::after {
    opacity: .6;
    height: 100%;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.courses_wraper .courses_figure .coursemore {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 11;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-filter: invert(1);
    filter: invert(1);
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.courses_wraper:hover .courses_figure .coursemore {
    opacity: 1;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.courses_wraper .courses_figure .coursemore img {
    width: auto;
}

.courses_txt {
    background-color: #fff;
    position: relative;
    margin: -50px auto 0;
    width: 90%;
    padding: 13px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 8px 0px rgb(0 0 0 / 30%);
    box-shadow: 0px 0px 8px 0px rgb(0 0 0 / 30%);
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.courses_wraper:hover .courses_txt {
    -webkit-animation: myAnimshake 2s ease 0s infinite normal forwards;
    animation: myAnimshake 2s ease 0s infinite normal forwards;
}

@-webkit-keyframes myAnimshake {

    0%,
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    20%,
    40%,
    60% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    80% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }

    90% {
        -webkit-transform: translateX(-8px);
        transform: translateX(-8px);
    }
}

@keyframes myAnimshake {

    0%,
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    20%,
    40%,
    60% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    80% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }

    90% {
        -webkit-transform: translateX(-8px);
        transform: translateX(-8px);
    }
}

.courses_txt h3 {
    font-weight: 500;
    height: 42px;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    vertical-align: middle;
    -webkit-box-align: center;
    -ms-flex-align: center;
            align-items: center;
            color: #ff6600;
}

.courses_txt p {
    margin: 0;
    line-break: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}


/* Footer Area Start */

.main_footer {
    position: relative;
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgb(0 0 0 / 37%)), to(rgb(0 0 0 / 37%))), url(../images/bg/1.jpg);
    background-image: -o-linear-gradient(bottom, rgb(0 0 0 / 37%), rgb(0 0 0 / 37%)), url(../images/bg/1.jpg);
    background-image: linear-gradient(0deg, rgb(0 0 0 / 37%), rgb(0 0 0 / 37%)), url(../images/bg/1.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: inline-block;
    width: 100%;
    padding: 50px 0 0;
}

.main_footer::before {
    content: '';
    top: 0;
    position: absolute;
    width: 100%;
    height: 10px;
    display: block;
    background-image: -webkit-gradient(linear, right top, left top, from(#9c27b0), color-stop(#009688), color-stop(#ffc107), color-stop(#03a9f4), to(#4caf50));
    background-image: -o-linear-gradient(right, #9c27b0 0%, #009688, #ffc107, #03a9f4, #4caf50);
    background-image: linear-gradient(to left, #9c27b0 0%, #009688, #ffc107, #03a9f4, #4caf50);
}

.footer_info ul {
     margin: auto;
    text-align: left;
    padding: 0px;
}

.footer_info ul li {
    list-style: none;
    position: relative;
    color: #aaa;
    margin: 4px 5px;
    padding-left: 25px;
    display: inline-block;
}

.footer_info ul li:nth-child(1) {
    display: block;
}

.footer_info ul li:nth-child(2) {
    border-right: 1px solid #aaa;
    padding-right: 10px;
}

.footer_info ul li i {
    position: absolute;
    margin-left: -25px;
    top: 0;
}

.footer_info ul li a,
.footer_links ul li a,
.footer_subscribe p {
    color: #fff;
    font-size: 15px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer_info ul li a:hover,
.footer_links ul li a:hover {
    color: #faed36;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer_title {
    font-size: 1.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #ffffff;
    display: inline-block;
    text-transform: capitalize;
}

.footer_links ul {
    display: block;
    padding-left: 15px;
  column-count: 2;}

.footer_links ul.columns-2 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}

.footer_links ul li {
    list-style: disc;
    color: #fff;
    padding-bottom: 5px;
}


.footer_subscribe form .form-control {
    color: #fff;
    background-color: transparent;
    border-color: #64656a;
    font-size: 15px;
    padding: 10px;
    border-radius: 50px;
}

/* .footer_subscribe form .btn {
    color: #ffffff;
    margin-top: 10px;
    padding: 8px 25px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    background-color: #eb2931;
    text-transform: uppercase;
    font-size: 15px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
} */

.footer_subscribe form .btn:hover {
    background-color: #a92829;
}

.footer_bottom {
    padding: 10px 0;
    border-top: 1px dashed #3a3a3a;
    margin-top: 10px;
}

.footer_bottom .copyright_text p {
    text-align: center;
    color: #aaa;
    font-size: 15px;
    margin-bottom: 0;
}

.footer_bottom .copyright_text p a {
    color: #fff;
}

.enquiry_form {
    position: fixed;
    right: 280px;
    width: 280px;
    transform: translateX(100%);
    bottom: 42%;
    background-color: #fff;
    padding: 30px 20px;
    border: 1px solid #ddd;
    border-bottom-width: 5px;
    border-bottom-color: #faee34;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 99;
}

.enquiry_form.open {
    transform: translateX(0%);
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.enquiry_form .close {
    display: none;
    border: none;
    position: absolute;
    left: -10px;
    top: -10px;
    box-shadow: none;
    background: no-repeat;
    font-size: 20px;
    color: #009688;
    background-color: #fff;
    border-radius: 100%;
    line-height: 20px;
}

.enquiry_form.open .close {
    display: block;
}
.enquiry_form.open .close:focus{outline: none;}
.form_btn {
    font-family: 'Oswald', sans-serif;
    position: absolute;
    left: 0px;
    top: -45px;
    background-color: #faed36;
    border: 1px solid #000;
    color: #000;
    padding: 13px 4px;
    font-weight: 500;
    font-size: 18px;
    /*-webkit-writing-mode: tb-rl;*/
    /*-ms-writing-mode: tb-rl;*/
    /*writing-mode: tb-rl;*/
    letter-spacing: 1px;
}

.enquiry_form form label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.enquiry_form form .form-control {
    border-radius: 0;
    padding: 5px 5px;
    font-size: 14px;
    color: #000;
    box-shadow: none;
    background-color: #fff;
}

/* =Scroll To Top= */

.scrollToTop {
    position: fixed;
    right: 0;
    bottom: 20px;
    width: 38px;
    height: 45px;
    border-radius: 0;
    font-size: 25px;
    text-align: center;
    border: 1px solid #fff;
    color: #ffffff;
    background-color: #000000;
    text-decoration: none;
    line-height: 45px;
    display: none;
}

.scrollToTop:hover {
    text-decoration: none;
    background-color: #a92829;
    color: #fff;
}

.Social_infoFixed {
    position: fixed;
    right: 5px;
    bottom: 10%;
    text-align: center;
    z-index: 999;
}

.Social_infoFixed a {
    display: block;
    margin: 0;
    -webkit-transform: translateX(80%);
    -ms-transform: translateX(80%);
    transform: translateX(80%);
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    ;
}

.Social_infoFixed li {
    list-style: none;
}

.Social_infoFixed a i {
    float: left;
    display: inline-block;
    text-align: center;
    width: 37px;
    height: 37px;
    line-height: 37px;
    font-size: 20px;
    color: #fff;
}

.Social_infoFixed li:nth-child(1) a {
    background-color: #4267B2;
}

.Social_infoFixed li:nth-child(2) a {
    background-color: #1DA1F2;
}
/*.Social_infoFixed li:nth-child(3) a {background-color: #0A66C2;}*/

.Social_infoFixed li:nth-child(3) a {
    background: -ms-linear-gradient(261deg, #405DE6, #5B51D8, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
    background: -moz-linear-gradient(261deg, #405DE6, #5B51D8, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
    background: -o-linear-gradient(261deg, #405DE6, #5B51D8, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
    background: -webkit-linear-gradient(261deg, #405DE6, #5B51D8, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
    background: linear-gradient(189deg, #405DE6, #5B51D8, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
}
.Social_infoFixed li:nth-child(4) a {background-color: #ff0000;}



.Social_infoFixed a span {
    display: inline-block;
    transition: all 500ms ease;
    width: 130px;
    line-height: 37px;
    text-align: center;
    color: #fff;
}

.Social_infoFixed li:hover a {
    transform: translateX(10%);
    transition: all 500ms ease;
}

.infra_section h2{ text-align: left;}
.infra_section p{ text-align: justify;}
.map iframe{ min-height: 450px; margin-top: 30px;}
.float_whatsapp {
    transform: scale3d(1, 1, 1);
    color: #fff;
    font-size: 28px;
    line-height: 26px;
    bottom: 300px;
    right: 10px;
    position: fixed;
    z-index: 9999;
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #25D367;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0px 0px 7px 2px rgb(136 136 136 / 50%);
    transition: transform .3s ease-in-out;
    transform-origin: 100% 100%;
    margin: 0px;
    box-sizing: border-box;
}


/*---Career Form---*/

.career_data h3 {
    color: rgb(235 41 49);
    font-weight: 700;
    margin-bottom: 15px;
}
.career_data h5 {
    color: #000;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    margin-top: 0px;
    margin-bottom: 15px;
}
.career_data p {
    color: #444;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 24px;
}
.career_list h5 {
    margin-bottom: 5px;
}
.career_list li {
      position: relative;
    list-style: none;
    font-size: 14px;
    padding-left: 20px;
    margin: 8px 0;
}
.career_list {
     padding-left: 0;
    margin: 10px 0;
}

.career_list li::before{
    content: '\F280';
    font-family: bootstrap-icons !important;
    color: #eb2931;
    font-size: 12px;
    position: absolute;
    left: 0;
    top: 3px;
}
.career_data p strong {
    color: #222;
    display: inline-block;
    position: static;
    width: auto;
    height: auto;
    visibility: inherit;
    background: transparent;
    padding-right: 3px;
}
.career_list li i {
    color: #faa61a;
    padding-right: 5px;
    float: left;
    margin: 5px 0 6px 0;
}
.career_box h3 {
    color: rgb(235 41 49);
    font-weight: 700;
    margin-bottom: 15px;
}

.career_data {
    display: inline-block;
    width: 100%;
    text-align: left;
}
.career_box {
   padding: 30px 20px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgb(255 255 255 / 78%)), to(rgb(255 255 255))), url(../images/shape/shape-6.png);
    background: -o-linear-gradient(bottom, rgb(255 255 255 / 78%), rgb(255 255 255)), url(../images/shape/shape-6.png);
    background: linear-gradient(0deg, rgb(255 255 255 / 78%), rgb(255 255 255)), url(../images/shape/shape-6.png);
    background-repeat: no-repeat;
    background-position: right center;
    border: 1px solid #ddd;
}
.career_accordian .accordion-body{
        background-color: #fff;
    border: 1px solid #ddd;
    border-top: 0;
}

 

.career_accordian .accordion-button{
    background-color: #faed36;
    margin: 5px 0;
    color: #000;
    font-size: 17px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
}


.career_accordian .accordion-button.collapsed{
     color: #fff;
    background-color: #eb2931;
}


.career_accordian .accordion-button::after{  -webkit-filter: invert(1);   filter: invert(1);}
.career_accordian .accordion-button:not(.collapsed)::after {
   -webkit-filter: brightness(0.5);   filter: brightness(0.5);
}

.career_form{
      background-color: #f3f3f3;
    padding: 30px;
    border: 1px solid #f3f3f3;
}


.career_form form .form-control, .career_form form .form-select{
    border-radius: 0;
    padding: 8px 10px;
    color: #000;
    background-color: #fff;
    border-color: #e7e7e7;
    box-shadow: none;
    font-size: 14px;
}
.career_form form label{
    color: #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 5px;
    display: inline-block;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
}
.career_form form input[type="submit"]{
    
}
.career_form form input[type="submit"]:hover{
    color: #000;
    border: 1px solid #faed36;
    background-color: #faed36;
}
/* table css */
.row-top-red{
    background-color: #de2147;
}
.custome-yellow{
    background-color: #fff5d1;
}
.custome-pink{
    background-color: #ff496e;
}
.digital-advertising .tittle-heading h2{
    background-color: #520086;
    color: #fff;
    padding: 8px 10px;
    display: inline-block;
    
}
.course{
    height: 58px;
    width: 400px;
    clip-path: polygon(100% 0, 90% 50%, 100% 100%, 0 100%, 9% 50%, 0 0);
    background: #520086;
    border: 2px solid #fff;
}
/* motion graphic */
.heading-yellow{
    background-color: #e9ac1e;
}
.light-yellow{
    background-color: #fdc137;
}
.text-yello{
    color: #f9c230;
}
.ui-ux .tittle-heading h2{
    background-color: #de2147;
    color: #fff;
    padding: 8px 10px;
    display: inline-block;
    margin: 0 auto;
}
.course{
    height: 58px;
    width: 400px;
    clip-path: polygon(100% 0, 90% 50%, 100% 100%, 0 100%, 9% 50%, 0 0);
    background: #520086;
    border: 2px solid #fff;
}

.thankyou-heading{
    text-align: center;
    font-weight: 500;
    font-size: 22px;
}

.thankyou_wraper{
     border: 1px solid #c3c3c3;
    padding: 13px 0px;
}

.thankyou_wraper img{    width: 30%;
    text-align: center;
    margin: 0 auto; }
    
    
.captcha_box{display: flex;}
.captcha_box .form-group{display: flex;}
.capinput{border-radius: 0px !important;}
