@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600&family=Russo+One&display=swap');

:root {
    --primary: #e01d1d;
    --secondary: #0077a3;
    --light: #F3F6F8;
    --dark: #0C2B4B;
}
body {
    font-weight: 500;
    color: #1c1c1c;
}
.translate-middle {
    transform: translate(-50%, -100%) !important;
}
body {
    font-family: 'Quicksand', sans-serif;
}
.tf-logo {
    width: 120px;
    background-color: white;
    margin: 0 0px 0 10px;
}
footer a {
    color: #ffffff;
}
footer a:hover {
    color: #e01d1d;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    color: #2c2727;
    font-family: 'Russo One', sans-serif;
    font-weight: 400;
}
.display-6 {
    font-weight: 400;
}
.course-inner .courses-item {
    border: 0;
    color: #000000;
    font-weight: 500;
}
.course-desp {
    text-align: center;
    border: 1px solid #ee1c25;
    padding: 10px 0 0;
}
.course-desp span {
    background-color: #ee1c25;
    color: #ffffff;
    font-size: 13px;
    padding: 4px 11px;
    display: inline-block;
    width: 100%;
    font-weight: 600;
}
.total-hours {
    padding: 15px;
    text-align: center;
    background-color: rgb(0 0 0 / 5%);
    margin: 30px 0 10px 0;
}
.total-hours h5 {
    font-family: 'Quicksand';
    font-size: 27px;
    padding: 20px 0;
    font-weight: 700;
    position: relative;
}
.total-hours h5:after {
    content: "";
    height: 1px;
    background-color: #ababab;
    position: absolute;
    width: 260px;
    bottom: 14px;
    left: 50%;
    margin-left: -130px;
}
.mandatory {
    font-weight: 600;
    color: #f44336;
    margin: 0 0 20px;
}
.mandatory img {
    width: 21px;
}
.course-img {
    margin: 90px 0 0 0;
}
.align-lg-right {
    text-align: right;
}
.policy a {
    color: #ee1c25;
}
    .policy a:hover {
        color: #426a8e;
    }
.home-policy {
    color: #ffffff;
}
.home-policy .policy a {
    color: #fbff00;
}
/* ~~~~~~~~~~~ Modal popup css starts ~~~~~~~~~~~ */

/*```````````` check box ```````````*/
label.policy {
    margin: 4px 0 0 0;
}
  .checkbox-wrapper-31:hover .check {
    stroke-dashoffset: 0;
  }

.checkbox-wrapper-31 {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 0 7px 0 0;
}
  .checkbox-wrapper-31 .background {
    fill: #ccc;
    transition: ease all 0.6s;
    -webkit-transition: ease all 0.6s;
  }
  .checkbox-wrapper-31 .stroke {
    fill: none;
    stroke: #fff;
    stroke-miterlimit: 10;
    stroke-width: 2px;
    stroke-dashoffset: 100;
    stroke-dasharray: 100;
    transition: ease all 0.6s;
    -webkit-transition: ease all 0.6s;
  }
  .checkbox-wrapper-31 .check {
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2px;
    stroke-dashoffset: 22;
    stroke-dasharray: 22;
    transition: ease all 0.6s;
    -webkit-transition: ease all 0.6s;
  }
  .checkbox-wrapper-31 input[type=checkbox] {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    margin: 0;
    opacity: 0;
    -appearance: none;
    -webkit-appearance: none;
  }
  .checkbox-wrapper-31 input[type=checkbox]:hover {
    cursor: pointer;
  }
  .checkbox-wrapper-31 input[type=checkbox]:checked + svg .background {
    fill: #6cbe45;
  }
  .checkbox-wrapper-31 input[type=checkbox]:checked + svg .stroke {
    stroke-dashoffset: 0;
  }
  .checkbox-wrapper-31 input[type=checkbox]:checked + svg .check {
    stroke-dashoffset: 0;
  }
/*```````````` check box ```````````*/


.show-popup {
    border: none;
    outline: none;
    cursor: pointer;
}

/*.popup-container {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
}*/
.popup-container {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgb(0 0 0 / 70%);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    left: 0;
    top: 0;
    z-index: 9;
}

    .popup-container.active {
        opacity: 1;
        pointer-events: auto;
        transition: .4s ease;
    }

    .popup-container .popup-box {
        width: 50%;
        background: #f2f2f2;
        border-radius: 6px;
        box-shadow: 0 0 10px rgba(0, 0, 0, .1);
        padding: 30px;
        transform: scale(0);
        text-align: left;
    }

    .popup-container.active .popup-box {
        transform: scale(1);
        transition: .4s ease;
        transition-delay: .25s;
    }

.popup-box h1 {
    color: #333;
    line-height: 1;
}

.popup-box p {
    color: #333;
    margin: 12px 0 20px;
}

.popup-box .close-btn {
    width: 100%;
    height: 45px;
    background: #ee1c25;
    /* border-radius: 6px; */
    border: none;
    outline: none;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, .1); */
    cursor: pointer;
    font-size: 18px;
    color: #f2f2f2;
    font-weight: 500;
}
/* ~~~~~~~~~~~ Modal popup css ends ~~~~~~~~~~~ */

.hours-detail {
    color: #000000;
    font-weight: 600;
    margin: 10px 0 30px 0;
    font-size: 18px;
}
    .hours-detail span {
        font-size: 12px;
        line-height: 19px;
        display: inline-block;
        margin:0;
    }
.hours-block h4 {
    font-family: inherit;
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    border-bottom: 1px solid;
    margin: 0 0 10px;
}
.hours-block h6 {
    border: 1px solid;
    border-radius: 100%;
    width: 100px;
    height: 100px;
    line-height: 25px;
    margin: 0 auto;
    padding: 27px 0 0;
    font-size: 24px;
    background-color: #ee1c25;
    color: #fff;
}
.hours-block h6 span {
    font-size: 14px;
    text-transform: uppercase;
    color: #ffffff;
}
.btn-link:hover {
    color: #e01d1d;
}
.courses-overlay a.btn-outline-primary {
    color: #ffffff;
    border-color: #ffffff;
}
.duration {
    color: #ee1c25;
    font-weight: 600;
}
.form-control {
    font-weight: 600;
    color: #000000;
}
.training img {
    max-width: 100%;
}
.top-head a {
    color: #ffffff;
}
.serv-box {
    position: relative;
}
.serv-text {
    height: 200px;
}
.serv-text a {
    padding: 10px 30px;
    position: absolute;
    bottom: 30px;
}
.top-head.bg-dark {
    background-color: #211d1e !important;
}
    .top-head.bg-dark:before {
        content: '';
        background: #d20812;
        position: absolute;
        height: 38px;
        width: 40%;
        transform: skewX(22deg);
        left: -10px;
    }
.top-head small {
    font-size: 17px;
}
.make-appoint {
    color: #ffffff;
}
.serv-text span {
    color: #333333;
    display: block;
    margin: 0 0 30px 0;
}
.text-primary {
    color:#ee1c25 !important
}
.bg-dark {
    background-color: #1d1e1f !important;
}
.btn-link {
    color: #d86d00;
}
.slogan h1 {
    font-size: 70px;
    color: #ee1c25;
    text-shadow: 0px 2px black;
}
.slogan img {
    max-width: 100%;
}
.logo {
    width: 170px;
    margin: 11px 0 0 0;
}
.sgi-logo {
    width: 90px;
    margin: -10px 0 0 20px;
}
.shadow-sm .logo {
    width: 90px;
    margin: 7px 0 0 0;
}
.finance-logos {
    background-color: #fbfbfb;
    padding: 34px;
    line-height: 60px;
    text-align: center;
}
    .finance-logos img {
        width: 260px;
        margin: 0 40px 0 0;
        background-color: #fff;
        padding: 10px 20px;
        border: 1px solid #e0e0e0;
    }
        .finance-logos a img:hover {
            background-color: #f3f3f3;
        }
        .finance-logos a:last-child img {
            margin: 0;
        }
.apply-sk {
    background-color: #1163c9;
    padding: 50px 40px;
    position: relative;
    display: flex;
}
    .apply-sk:after {
        content: "";
        background: #65a6f7;
        width: 40px;
        height: 100%;
        position: absolute;
        right: -20px;
        top: 0;
        transform: skewX(-10deg);
    }
    .apply-sk a {
        background-color: #16da81;
        color: #ffffff;
        font-weight: 600;
        font-size: 22px;
        padding: 15px 30px;
        box-shadow: 1px 1px 1px #0000004a;
    }
        .apply-sk a:hover {
            background-color: #2be08e;
        }
    .apply-sk i {
        font-size: 18px;
    }
.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.my-6, .my-lg-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}
.pb-lg-6 {
    margin-bottom: 6rem;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
.team-items .member-exp {
    font-size: 20px;
    color: #ee1c25;
    line-height: 27px;
    margin: 20px 0px;
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding: 5px 0;
}
.team-items span {
    display: flex;
    color: #000;
    margin: 20px 0 0;
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.ticktok {
    width: 18px;
}
.bg-primary.appoint {
    background-color: #cd0d15 !important;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}
.bg-primary {
    background-color: #d86d00 !important;
}
.btn.btn-primary, .btn.btn-outline-primary:hover {
    color: #FFFFFF;
    background-color: #ee1c25;
    border-color: #ee1c25;
}
.btn.btn-primary:hover {
    background-color: #426a8e;
    border-color: #426a8e;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 80px;

}

.navbar a.btn {
    font-size: 16px;
    line-height: 32px;
}
.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
    font-size: 18px;
    padding: 25px 15px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    border-bottom: 4px solid #ee1c25;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .py-lg-6 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-item
{
    height: 700px;
}
.carousel-item img {
    margin-top: -190px;
}
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, .55);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 767px) {
    .apply-sk {
        text-align: center;
    }
        .apply-sk:after {
            content: none;
        }
    .apply-sk a {
        font-size: 100%;
    }
    .finance-logos img {
        margin: 10px 0;
        width: 275px;
    }
    .align-lg-right {
        text-align: left;
        padding-top: 0 !important;
    }
    .popup-container .popup-box {
        width: 90%;
        overflow: scroll
    }

    .popup-box .close-btn {
        width: 100%;
        height: auto;
    }
        .course-img {
        margin: 0 0 40px;
        padding: 0 0 40px 0;
        border-bottom: 1px solid;
    }
    .courses.course-inner h2 {
        margin-top: 30px;
    }
    .sgi-logo {
        width: 80px;
   margin: 10px;
    }
    .carousel-item {
        height: 450px;
    }
    #header-carousel .carousel-item img {
        height: 640px;
    }
    .logo {
        width: 85px;
        margin: 23px 0 0 0;
    }
    .serv-text {
        height: auto;
    }
    .serv-text a {
        position: static;
    }
    .courses-home.courses {
        background-size: cover;
    }
    .meet-text {
        min-height: initial;
    }
    .tf-logo-div {
        width: 100%;
        display: block;
        margin: 10px 0 0;
    }
    .reverse {
        flex-direction: column-reverse;
    }
}
.page-header {
    background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Facts ***/
        @media (min-width: 991.98px) {
            .facts {
                position: relative;
                margin-top: -75px;
                z-index: 1;
            }
        }
        /*** Courses ***/
        .courses-home.courses {
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url(../img/carousel-1.jpg) top center no-repeat;
    background-size: cover;
}
.courses {
    min-height: 100vh;
    background-attachment: fixed;
    background-size: cover;
}
.list {
    list-style: none;
    padding: 0;
}
.list li {
    display: flex;
    border-bottom: 1px solid #e2e2e2;
    padding: 7px 0;
}
.list li:last-child {
    border: 0;
}
.list li i {
    margin: 4px 0px 0;
}
.courses-item {
    border: 1px solid #eee;
}
.courses-item .courses-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.courses-item:hover .courses-overlay {
    height: 100%;
    opacity: 1;
}

.meet-text {
    min-height: 280px;
}
/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: #d5d5d5;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .75);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social {
    height: 100%;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    height: 40px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 14px;
    height: 14px;
    background: transparent;
    border: 2px solid var(--primary);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
}

.testimonial-carousel .owl-item img {
    width: 150px;
    height: 150px;
    display: none;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--light);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #000000;
}

.copyright a {
    color: var(--primary);
}

.copyright a:hover {
    color: var(--light);
}