/*---------------------------------------
  1. TYPOGRAPHY                
-----------------------------------------*/
/* FONTS */
@import url("https://fonts.googleapis.com/css?family=Basic|Kreon|Roboto");

/* --------------------------------------
  2. GLOBAL STYLES
-----------------------------------------*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    box-sizing: border-box;
    font-size: 62.5%;
}

/*------ width < 75em ------*/
@media only screen and (max-width: 75em) {
    html {
        font-size: 56.25%;
    }
}

/*------ width < 61.94em ------*/
@media only screen and (max-width: 61.94em) {
    html {
        font-size: 53.13%;
    }
}

/*------ width < 48em ------*/
@media only screen and (max-width: 48em) {
    html {
        font-size: 50%;
    }
}

body {
    font-family: 'Roboto', sans-serif;
    color: #353434;
    font-size: 1.6rem;
    background-color: #fff;
    line-height: 1.6;
    letter-spacing: .08rem;
    font-weight: 400;
}

.heading-primary {
    font-size: 4.8rem;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    color: #9E6F21;
}

h2 {
    font-size: 36px !important;
    font-weight:600;
    color:#040922;
    letter-spacing:0px;
    line-height:38px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

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

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
    color: #353434;
}

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

.padding {
    padding-top: 50px;
    position: relative;
}

/*------------ PRELOADER --------*/
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    overflow: hidden;
}

.no-js #loader-wrapper {
    display: none;
}

#loader {
    position: relative;
    top: 50%;
    margin: 0 auto;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    z-index: 1000;
}

#loader:after {
    content: "";
    position: absolute;
    top: .6rem;
    left: .6rem;
    right: .6rem;
    bottom: .6rem;
    border-radius: 50%;
    border: 10px solid rgba(0, 0, 0);
    border-top-color: #dd0707;
    border-left-color: #20243a;
    border-bottom-color: #dd0707;
    border-right-color: #20243a;
    animation: spin 800ms linear infinite;
}

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

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 999;
}

#loader-wrapper .loader-section.section-left {
    left: 0;
}

#loader-wrapper .loader-section.section-right {
    right: 0;
}

/* Loaded styles */
.loaded #loader-wrapper .loader-section.section-left {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.3s 1s ease-out;
    -o-transition: all 0.3s 1s ease-out;
    transition: all 0.3s 1s ease-out;
}

/* navbar */
.navbar-brand img {
    width: 250px;
}

/* button style */
.button-style {
    cursor: pointer;
    position: relative;
    /* padding: 2.5rem 7.5rem; */
    border-radius: 3.75rem;
    line-height: 2.5rem;
    /* font-size: 2rem; */
    font-weight: 600;
    border: 1px solid #012880;
    /*background-image: linear-gradient(-180deg, #dd0707 0%, #444f6d 100%);*/
    background-image: linear-gradient(180deg, rgba(4, 9, 34, 0.94) 4%, rgba(221, 7, 7, 0.8) 100%);
    color:#fff;
    
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    /*background-color: #dd0707;*/
}
.button-style:before {
    content: "";
    display: block;
    height: 0.25rem;
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 7.5rem);
    background: #fff;
    border-radius: 100%;
    opacity: 0.7;
    background-image: linear-gradient(-270deg, rgba(255,255,255,0.00) 0%, #FFFFFF 20%, #FFFFFF 80%, rgba(255,255,255,0.00) 100%);
}
.button-style:after {
    content: "";
    display: block;
    height: 0.25rem;
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 7.5rem);
    background: #fff;
    border-radius: 100%;
    filter: blur(1px);
    opacity: 0.05;
    background-image: linear-gradient(-270deg, rgba(255,255,255,0.00) 0%, #FFFFFF 20%, #FFFFFF 80%, rgba(255,255,255,0.00) 100%);
}
.button-style a {
    color: #fff;
}

/* .button-style::after {
    border: 3px solid #e21102;
    position: absolute;
    content: "";
    width: 150px;
    height: 44px;
    right: 4px;
    top: 19px;
    z-index: -1;
} */

@media only screen and (max-width: 1200px) {
    .button-style::after {
        display: none;
    }
}


/* main-banner */
.main-banner {
    background-image: url(../images/info-6.jpg);
    /* height: 500px; */
    padding: 80px 0px 130px 0px !important;
}

.main-banner h1 {
    color: #fff;
    font-size: 42px !important;
    font-weight: 600;
    letter-spacing: 0px !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.main-banner .lists ul li {
    color: #fff;
    font-size: 16px;
    padding-top: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.main-banner .lists ul li i {
    padding-right: 10px;
}

.main-banner h3 {
    color: #fff !important;
    font-size: 37px !important;
    font-weight: 600;
    letter-spacing: 0px !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.batch-heading {
    background: linear-gradient(180deg, rgba(4, 9, 34, 0.94) 4%, rgba(221, 7, 7, 0.8) 100%);
    color: #fff;
    padding: 30px;
    margin-top: 15px;
    border-radius: 10px;
}

.batch-heading h4 {
    padding-bottom: 15px;
    font-weight: 700;
    font-size: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.batch-heading p {
    margin-bottom: 0px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
}


/* free-course */
.free-course {
    padding: 50px 0px;
    background-color: #f4f4f6;
}

.free-course h3 span {
    font-weight: 600;
    background-color: #dd0707;
    padding: 15px;
    font-size: 37px;
    color: #fff;
    text-align: center;
}
.free-course h3
{
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0px;
}
h3 span:after {
    border: 3px solid #e21102;
    position: absolute;
    content: "";
    width: 66%;
    height: 19%;
    top: 4px;
    z-index: -1;
    left: 23px;
}

.free-course .lists ul li {
    color: #000;
    font-size: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding-top: 10px;
}

.free-course .lists ul li i {
    padding-right: 10px;
}

.submit-form {
    background-color: #222223;
    padding: 40px;
    border-radius: 12px;
}

/** Chrome, Safari, and also the Edge Browser and Firefox */

@media screen and (-webkit-min-device-pixel-ratio:0)and (min-resolution:.001dpcm) {
select.styling {
    background-color:#fff !important;
    box-sizing: border-box;
    border-radius: 2px;
    color: #333;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    display: block;
    float: none;
    margin-bottom:7px;
    font-size: 16px;
    border: 1px solid #ccc;
    padding: 6px 10px;
    height: 38px;
    width: 100%;
    line-height: 1.3;
}
}


/*select#age {*/
/*    height: 38px;*/
/*    margin-bottom:7px;*/
/*    width: 100%;*/
/*    font-size: 16px;*/
/*}*/
/*select#profession {*/
/*    margin-bottom:7px !important;*/
/*    font-size: 16px !important;*/
/*    height: 38px !important;*/
/*    width: 100% !important;*/
/*}*/
/*select#time-to-calls {*/
/*    height: 38px !important;*/
/*    width: 100% !important;*/
/*    margin-bottom:7px !important;*/
/*    font-size: 16px !important;*/
/*}*/
/*select#ages {*/
/*    height: 38px !important;*/
/*    margin-bottom:7px !important;*/
/*    width: 100% !important;*/
/*    font-size: 16px !important;*/
/*}*/
/*select#professions{*/
/*    margin-bottom:7px !important;*/
/*    font-size: 16px !important;*/
/*    height: 38px !important;*/
/*    width: 100% !important;*/
/*}*/

::placeholder {
    color: black !important;
    /* opacity: 1;  */
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px !important;
}

/* tabs */



.sticky-nav-tabs,
.spa-slide {
    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-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* height: 100vh; */
    position: relative;
    /* background: #eee; */
    /* text-align: center; */
    /* padding: 0 2em; */
}

/* .sticky-nav-tabs h1,
.spa-slide h1 {
    font-size: 2rem;
    margin: 0;
    letter-spacing: 1rem;
} */

.sticky-nav-tabs h3,
/*.spa-slide h3 {*/
/*    font-size: 1rem;*/
/*    letter-spacing: 0.3rem;*/
/*    opacity: 0.6;*/
/*}*/

.sticky-nav-tabs-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 75px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background: #fafafa;
    z-index: 1;
    -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.sticky-nav-tabs-container--top-first {
    position: fixed;
    top: 0px;
    z-index: 99;
    -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.sticky-nav-tabs-container--top-second {
    position: fixed;
    top: 0;
}

.sticky-nav-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #000;
  letter-spacing: 0.1rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 16px;
}
.sticky-nav-tab:hover {
  color: white;
  background: #485172;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}


.sticky-nav-tab-slider {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 6px;
  background: #243b4a;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
}

@media (max-width: 800px) {

    .sticky-nav-tabs h1,
    .spa-slide h1 {
        font-size: 3rem;
    }

    .sticky-nav-tabs h3,
    .spa-slide h3 {
        font-size: 1rem;
    }

    .sticky-nav-tab {
       font-size: 10px;
    text-align: center;
    }
}

/* testimonials */
.contain {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
}

.stars .fa-star {
    color: #f6bb06;
    font-size: 30px;
}

#owl-carousel .item .stars .fa-star {
    color: #f6bb06;
    font-size: 20px;
    margin-top: 15px;
}

section#Testimonials {
    padding: 50px 0px;
    position: relative;
    z-index: -1;
    background-color: #000000;
}

#owl-carousel .item .details {
    padding-left: 15px;
}
.details h4 {
    font-size: 15px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
#owl-carousel .item .details span {
    font-size: 12px;
    color: #b2a5a5;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

#owl-carousel .item {
    /* align-items: center; */
    background-color: #303030;
    color: white;
    padding: 20px;
    border-radius: 10px;
    /* display: flex; */
    height: 250px;
    /* justify-content: center; */
}

/* .details::after
{
    content: url(../images/g.png);
    position: absolute;
} */
#owl-carousel .item p {
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.detail-image {
    display: flex;
    align-items: center;
}

.detail-image img {
    width: 60px !important;
}

#owl-carousel button.owl-prev {
    position: absolute;
    left: -50px;
    top: 65px;
    padding: 20px;
}

#owl-carousel button.owl-prev span {
    font-size: 40px;
}

#owl-carousel button.owl-next {
    position: absolute;
    right: -50px;
    top: 65px;
    padding: 20px;
}

#owl-carousel button.owl-next span {
    font-size: 40px;
}

/* association */
.association {
    padding: 50px 0px;
    position: relative;
    z-index: -1;
}

.association h2 {
    font-size: 37px;
    border-bottom: 1px solid #dd0707;
}


/* career-transition */
.career-transition {
    background: linear-gradient(180deg, #040922d9 10%, rgba(221, 7, 7, 0.88) 100%);
    padding: 50px 0px;
}

.Testimonial-video {
    display: flex;
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
}

.video-details {
    padding: 20px;
    text-align: center;
}

.video-details p {
    color: #ff0000;
    font-weight: 600;
}


/* tdsians */
.tdsians {
    padding: 50px 0px;
}

.tdsians img {
    width: 180px;
    padding: 10px;
    border: 2px solid #b2b2b2;
    border-radius: 10px;
}


/* team */
.team {
    padding: 50px 0px;
    position: relative;
    z-index: -1;
    background-color: #243b4a;
}

.team h1 {
    font-size: 42px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight:600;
}

.container .card {
    display: flex;
    flex-direction: column;
    position: relative;
    /* max-width: 300px; */
    /* width: 335px; */
    /* width: 305px; */
    /* height: 215px; */
    height: 480px;
    background: #FAFAFA;
    /* margin: 30px 10px; */
    padding: 20px 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: 0.3s ease-in-out;
}

.container .card:hover {
    /* height: 420px; */
    /* height: 450px; */
    /* height: 520px; */
}

.container .card .card-img {
    position: relative;
    /* width: 260px; */
    width: 230px;
    /* height: 260px; */
    top: -60px;
    left: 20px;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.container .card .card-img img {
    max-width: 100%;
    border-radius: 4px;
}

.container .card .card-content {
    position: relative;
    /* text-align: center; */
    margin-top: -140px;
    padding: 10px 15px;
    color: #111;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.container .card .card-content {
    visibility: visible;
    opacity: 1;
    margin-top: -40px;
    transition-delay: 0.3s;
}

.list li{
    font-size:12px;
    font-weight:400;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #040922;
}
.list li:hover {
    padding-left: 20px;
    transition: all .35s ease;
}

.list li i {
    padding-right: 10px;
    color: #e21102;
    font-size: 12px;
}

.container .card .card-content h2 {
    /*text-transform: uppercase;*/
    text-align: center;
    font-weight: 600;
    /* background: #FC00FF; */
    background: #060a1fbf;
    /* background: -webkit-linear-gradient(to right, #00DBDE, #FC00FF); */
    /* background: linear-gradient(to right, #00DBDE, #FC00FF); */
    -webkit-background-clip: text;
    background-clip: text;
    color:#040922;
    color: transparent;
    letter-spacing:0px;
    font-size: 20px !important;
}

@media (max-width: 600px) {
    .container .card {
        /*max-width: 200px;*/
        /*height: 335px;*/
        margin-bottom:60px;
    }

    .container .card:hover {
        height: 400px;
    }

    /*.container .card .card-img {*/
    /*    width: 160px;*/
    /*    height: 160px;*/
    /*}*/
}

/* join-tds */
.bg-color {
    color: #fff;
    background-color: #000000b5;
    text-align: center;
    padding: 10px 0px;
}

.bg-color h5 {
    font-size: 25px;
    font-weight: 400;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* faq */
.faq {
    padding: 50px 0px;
    background: linear-gradient(180deg, rgba(4, 9, 34, 0.94) 0%, rgba(221, 7, 7, 0.8) 100%);
}

.accordion .card {
    margin: 0;
    border: none;
    height: auto;
    width: auto;
    background-color: transparent;
}

.accordion .card:hover {
    height: auto;
}

.accordion a.card-title.heading-secondary {
    font-size: 24px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.accordion .card .card-header {
    margin-bottom: 10px;
    cursor: pointer;
    color: #fff;
    border-bottom: 1px solid #fff;
    background-color: transparent;
}

.accordion p {
    color: #fff;
    padding-left: 13px;
    font-size: 16px;
    font-weight: 400;
}

.accordion .card-header:after {
    content: "\2212";
    font-size: 24px;
    float: right;
    background-color: #000;
    padding: 0px 5px;
}

.accordion .card-header.collapsed:after {
    content: "\002B";
    font-size: 24px;
    background-color: #000;
    padding: 0px 5px;
}

/* who */
.who {
    padding: 50px 0px;
    text-align: center;
}

.who-content {
    padding: 20px;
    background-color: #ffff;
    box-shadow: 0px 12px 30px -10px #000;
    border-radius: 20px;
}

.who-content i {
    color: #dd0707;
    padding: 15px;
    border: 1px solid #000;
    border-radius: 50%;
    font-size: 20px;
}

.who-content i:hover {
    color: #fff;
    background-color: #dd0707;
}

.who-content h4 {
    color: #dd0707;
    font-size: 28px;
    padding-top: 10px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.who-content p {
    padding-top: 10px;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color:#040922;
}

/* tca */
.tca {
    padding: 50px 0px;
}

.tca img {
    box-shadow: 6px 6px 10px rgba(76, 76, 76, 0.3);
}

.tca p {
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color:#040922;
}

/* career */
.career {
    padding: 50px 0px;
    text-align: center;
    background-color: #d1d1d1;
}

/* apply */
.apply {
    padding: 50px 0px;
    background-color: #ffdc00;
}
section.career-transition.mobile
{
    display:none !important;
}
/* --------------------------------------
  FOOTER
-----------------------------------------*/
.footer-bottom {
    /*background: linear-gradient(180deg, rgb(6 10 31 / 29%) 30%, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 30%, rgb(6 10 31 / 29%) 30%, rgb(12 16 38 / 82%) 100%);*/
    padding: 30px 0;
    background:linear-gradient(180deg, rgb(36 59 74) 30%, rgb(36 59 74) 0%, rgb(36 59 74) 30%, rgb(6 10 31) 100%, rgb(36 59 74) 100%);
}

.footer-bottom .social-links {
    margin: 40px 0;
    text-align: center;
}

.footer-bottom .social-links ul li {
    display: inline-block;
    padding: 0;
}

.footer-bottom .social-links ul li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -webkit-border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    background: #dd0707;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    -ms-transition: all .3s;
    display: inline-block;
    margin: 0 5px;
    -webkit-box-shadow: 0px 15px 40px -5px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 15px 40px -5px rgba(0, 0, 0, 0.5);
}

.footer-bottom .social-links ul li a:hover {
    color: #e21102;
    background: #fff;
    box-shadow: 0 0.5em 0.5em -0.4em #e21102;
}

.footer-bottom .copyright {
    text-align: center;
    margin-top: 20px;
}

.footer-bottom .copyright h5 {
    font-weight: 400;
    color: #fff;
}
.footer-bottom .copyright h5 a{
    font-weight: 400;
    color: #fff !important;
}


/*responsive*/
@media only screen and (max-width: 1000px) {
  .free-course h3 span{
      font-size:25px ;
  }
  .free-course h3 {
      margin-bottom:25px;
      text-align: center;
    padding-top: 20px;
  }
  .Testimonial-video
  {
      display:block;
          margin-top: 20px;
  }
  iframe {
    width: 100%;
}
.team h1
{
    font-size:28px;
    text-align: center;
}
.main-banner h1
{
     text-align: center;
}
.main-banner h3
{
     text-align: center;
     padding-top:10px;
}
.tdsians .col-lg-2
{
    display:flex;
    justify-content:center;
    padding-top:20px;
}
 h2
{
    letter-spacing:1px;
    text-align: center;
}
.tca p
{
    text-align: center;
}
.margin
{
    margin-top:15px;
}
.heading.bg-color
{
    width:100% !important;
    margin-left:0px !important;
}
.tdsians .col-lg-6.p-0
{
    margin-top:10px !important;
}
.tdsians .row
{
    width:auto !important;
}
section
{
    padding:30px 0px 50px 20px !important;
}
.sticky-nav-tabs
{
    padding:0px !important;
    /*margin-bottom:40px;*/
}
.navbar
{
    justify-content:center;
}
    .container .card .card-img {
        position: relative;
        /* width: 260px; */
        width: 190px;
        /* height: 260px; */
        top: -65px;
        left: 47px;
        z-index: 1;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }
    section#Trainers .card
    {
        height:auto;
    }
    .bg-color h5 
    {
        padding: 10px
    }
    /*.sticky-nav-tabs-container*/
    /*{*/
    /*     top:-27px;*/
    /*}*/
    .full-video iframe
    {
      
        margin-top:20px;
    }
    .who-content {
    margin-top: 20px;
    }
    .association img
    {
        /*margin-top:10px;*/
        max-width:600px;
        display: flex;
        margin: 0px auto;
    }
    section.career-transition.desktop
    {
        display:none !important;
    }
    section.career-transition.mobile
    {
        display:block !important;
    }
}
#time-to-call {    background-color:red !important;}
label.error {    color: white !important;    font-size: 12px;    text-shadow: 1px 1px #FF0000;}
div#allError { background: #dd0707; text-align: center; padding: 0px 0; color: #fff; font-size: 14px; }