﻿@charset "utf-8";

/* CSS Document */

/***************************************************************************************
GENERAL LAYOUT GUIDELINES   
LAYOUT WIDTH :1200px    
FONT: sans-serif
font-family: 'Muli', sans-serif;
Available Weights: 400, 500, 600, 700, 800
***************************************************************************************/

/* ! GENERAL START */

/*This section is use for reset CSS.*/
*, * * {
    font-family: 'Mulish', sans-serif;
    margin: 0;
    padding: 0;
    /*position: relative;*/
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

body {
    background: #fff;
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: #282828;
    letter-spacing: 0.5px;
    cursor: default;
    overflow-x: hidden;
    min-height: 100vh;
    height: 100%;
}

html {
    overflow-x: hidden;
}

a {
    color: #3975ef;
    text-decoration: none;
    transition: color 0.3s ease 0s;
}

    a:hover {
        color: #DD2839;
    }

    a:link {
        cursor: pointer;
    }

    a:hover, a:focus {
        outline: 0;
        text-decoration: none;
    }

:focus {
    outline: 0;
}

p {
    margin-bottom: 20px;
}

    p:last-child {
        margin-bottom: 0;
    }

b, strong {
    font-weight: 700;
    color: #242931;
}

hr {
    height: 1px;
    background: #929292;
}

svg {
    max-width: 100%;
    transition: fill 0.3s ease 0s;
}

    svg .oval, svg .icon {
        transition: fill 0.3s ease 0s, stroke 0.3s ease 0s;
    }

.no-touchevents a:hover svg .icon {
    fill: #fff;
}

img {
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    display: inline-block;
    border: none; /* width: 100%; */
}

.cover-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

button:focus {
    outline: none !important;
    box-shadow: none !important;
}

[class^="hvr-"] {
    margin: .4em;
    padding: 1em;
    cursor: pointer;
    background: #e1e1e1;
    text-decoration: none;
    color: #666;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hvr-shutter-out-horizontal {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 0px 1px #344a83;
    position: relative;
    background: #344a83;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    color: #fff;
    border-radius: 5px;
}

    .hvr-shutter-out-horizontal:before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: 50%;
        transform-origin: 50%;
        -webkit-transition-property: transform;
        transition-property: transform;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
        border-radius: 3px;
    }

    .hvr-shutter-out-horizontal:hover, .hvr-shutter-out-horizontal:focus, .hvr-shutter-out-horizontal:active {
        color: #344a83;
    }

        .hvr-shutter-out-horizontal:hover:before, .hvr-shutter-out-horizontal:focus:before, .hvr-shutter-out-horizontal:active:before {
            -webkit-transform: scaleX(1);
            transform: scaleX(1);
        }

    .hvr-shutter-out-horizontal.active {
        color: #344a83 !important;
        background-color: #fff;
    }

/* ! HEADINGS START */

/* This section is use for all heading tag default CSS. */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    margin: 0 0 20px;
    color: #29447b;
    font-weight: 700;
    letter-spacing: 1px;
}

h1 {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 900;
    margin-bottom: 15px;
}

h2 {
    font-size: 35px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 13px;
}

h3 {
    font-size: 20px;
    line-height: 1.1;
}

h4 {
    font-size: 18px;
    line-height: 1.2;
}

h6 {
    font-size: 16px;
    line-height: 1.4;
}

    h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
        margin-bottom: 0;
    }

/* Headings end */

/* Default Ul and Ol start */
ul, ol {
    margin-left: 0;
}

    ul:last-child, ol:last-child {
        margin-bottom: 0;
    }

    ul li {
        list-style: none;
    }

    ul > li {
        margin-left: 10px;
        padding-left: 25px;
    }

        ul > li:before {
            position: absolute;
            top: 8px;
            left: -7px;
            width: 8px;
            height: 8px;
            content: " ";
            background-color: #314b7e;
            border-radius: 50%;
        }

    ul.no-bullet > li:before {
        content: none;
    }

.no-bullet > li {
    margin-left: 0;
}

.list-alphabet li:before {
    content: none;
}

.list-alphabet li {
    padding-left: 0;
    margin-left: 0;
}

/* Default Ul and Ol end */

/* ! FORM CSS START */

/*This section is use for all default form elements CSS.*/
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="url"], input[type="password"], textarea, select {
    border: 1px solid #b8b8b8;
    padding: 9px;
    border-radius: 5px !important;
    color: #29447b;
    width: 100%;
    font-weight: 400;
    outline: none; /* background: white; */ /*  -webkit-appearance: none; -moz-appearance: none; */
}

textarea {
    width: 100% !important;
    overflow-y: auto;
    min-height: 80px;
}

input[type=checkbox], input[type=radio] {
    height: 20px;
    width: 20px;
    margin: 10px 5px;
    vertical-align: sub;
}

select {
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    padding: 9px 30px 9px 9px;
}

    /* Remove IE arrow */
    select::-ms-expand {
        display: none;
    }

/* Arrow */
.select::after {
    content: '\e805';
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    pointer-events: none;
    font-family: "fontello";
    -webkit-transition: .25s all ease;
    -o-transition: .25s all ease;
    transition: .25s all ease;
    font-size: 25px;
}

.get-started-section textarea {
    min-height: 50px;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, textarea:focus, input[type="password"]:focus, select:focus {
    border-color: #dd2839 !important;
    outline: 0;
    box-shadow: none;
}

#datetimepicker1 li:before {
    content: none;
}

#datetimepicker1 li {
    margin-left: 0;
    padding-left: 0;
}

.bootstrap-datetimepicker-widget td {
    height: 20px;
    line-height: 20px;
    width: 20px;
    padding: 10px;
}

.bootstrap-datetimepicker-widget th {
    padding: 10px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group .icon {
        position: absolute;
        right: 10px;
        top: 13px;
        color: #a5a5a5;
        line-height: 1;
    }

.custom-btn {
    border: 0;
    background-color: #2a9ed8;
    color: #fff;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 5px;
    border: 1px solid #2a9ed8;
    transition: 0.3s ease all;
}

    .custom-btn:hover {
        background-color: #fff;
        color: #2a9ed8;
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    }

    .custom-btn .icon {
        transform: rotate(-90deg);
        display: inline-block;
        transition: 0.3s ease all;
    }

    .custom-btn:hover .icon {
        margin-left: 10px;
    }

/* Form CSS End */

/* ! FONT ELLO CSS STARTS */
[class^="icon-"]:before, [class*=" icon-"]:before {
    margin-right: 0;
    margin-left: 0;
}

/* ! FONT ELLO CSS ENDS */

/* ! COMMON CSS STARTS */
.text-blue {
    color: #29447b;
}

.text-green {
    color: #62bf86;
}

.text-red {
    color: #d81f39;
}

.text-white {
    color: #fff !important;
}

.sectionPadding {
    padding: 50px 0;
}

.coverbg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.primaryBtn {
    background-color: #355083;
    color: #fff;
}

.pageTitleText {
    text-transform: uppercase;
    color: #209ed5;
}

.topInfo {
    margin-bottom: 50px;
}

/* Header Start */
.topmost-triple-border .topmost-child {
    height: 7px;
}

    .topmost-triple-border .topmost-child.topmost-child-1 {
        background-color: #32dac3;
    }

    .topmost-triple-border .topmost-child.topmost-child-2 {
        background-color: #36c2e7;
    }

    .topmost-triple-border .topmost-child.topmost-child-3 {
        background-color: #07a7e3;
    }

.topHeader {
    padding: 20px 0;
}

.userLogin img {
    max-width: 70px;
    width: 100%;
}

.logo a {
    display: block;
    max-width: 200px;
}

.quickCall h1 a {
    color: #6a6a6a;
    font-weight: 400;
    transition: 0.3s ease all;
}

    .quickCall h1 a:hover {
        color: #36c2e7;
    }

/* Header End */

/* Menu Start */
.mainMenu {
    background-color: #ebedf4;
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.14);
    position: relative; /* z-index: 9; */
}

    .mainMenu ul li a {
        color: #6a6a6a;
        font-size: 16px;
        font-style: normal;
        font-weight: 300;
        line-height: 1.2;
        margin-bottom: 0;
        padding: 15px;
        text-align: center;
        white-space: nowrap;
    }

.menuListWrapper li:before {
    content: none;
}

.menuListWrapper li {
    margin-left: 0;
    position: relative;
    padding-left: 0;
}

.menuListWrapper > ul > li {
    display: inline-block;
}

.menuListWrapper li .submenu {
    display: none;
}

.menuListWrapper li a {
    padding: 15px 0;
    display: inline-block;
}

.menuListWrapper li:hover > .submenu, .menuListWrapper li.hover > .submenu {
    display: block;
    position: absolute;
    left: 0;
    background-color: #fff;
    box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.2);
    top: 53px;
    z-index: 9;
}

.menuListWrapper li li:hover > .submenu, .menuListWrapper li li.hover > .submenu {
    display: block;
    left: 100%;
    top: 0;
}

.submenu li a .icon:before {
    transform: rotate(-90deg);
}

.menuListWrapper li .submenu li {
    border-bottom: 1px solid #cecece;
}

.mainMenu ul > li > a {
    border-bottom: 4px solid #ebedf4;
}

    .mainMenu ul > li > a:hover, .mainMenu ul > li > a.active {
        border-bottom: 4px solid #07a7e3;
        color: #344a83;
    }

.menuListWrapper li .submenu li a {
    border-bottom: 0 !important;
}

.toggle-menu {
    display: none;
    width: 3.5rem;
    height: 2.5rem;
    flex-direction: column;
    justify-content: space-around;
    padding: 0.2rem 0.5rem;
    border-radius: 0.5rem;
    position: relative;
    z-index: 10;
}

.line {
    width: 100%;
    height: 4px;
    border-radius: 5px;
    background-color: #6a6a6a;
    transition: 0.2s ease-out;
}

.toggle .line1 {
    background-color: #ffffff;
    transform: scale(0.9) rotateZ(-45deg) translate(-10px, 6px);
}

.toggle .line2 {
    display: none;
}

.toggle .line3 {
    background-color: #ffffff;
    transform: scale(0.9) rotateZ(45deg) translate(-6px, -4px);
}

.toggle .toggle-menu { /* background-color: white; */
}

/* Menu End */

/* Footer Start */

.topFooter {
    background-color: #344a83;
    padding: 20px 0;
}

.footercontactWrapper .icon {
    margin-right: 15px;
}

.footercontactWrapper h5 {
    color: #fff;
    margin-bottom: 4px;
}

.footercontactWrapper a {
    color: #fff;
}

.subFooter {
    background-color: #ebedf4;
    color: #6a6a6a !important;
    padding: 10px 0;
}

.privacyPolicy {
    display: block;
    clear: right;
}

    .privacyPolicy a {
        display: inline-block;
        margin-left: auto;
        float: right;
        color: #6a6a6a;
    }

/* Footer End */
.mainTitle {
    margin-bottom: 30px;
}

.trainingLogo {
    max-width: 220px;
}

.selectProgramWrapper .nav-item {
    flex-grow: 1;
    padding: 0;
    margin: 0 15px;
}

    .selectProgramWrapper .nav-item a {
        text-align: center; /* color: #fff; */
    }

        .selectProgramWrapper .nav-item a.active {
            color: #344a83;
            background-color: #fff;
        }

.careerChoisePartnerSection {
    margin-top: 50px;
}

    .careerChoisePartnerSection p {
        display: inline-block;
        width: calc(100% - 210px);
        padding-right: 120px;
        vertical-align: top;
    }

    .careerChoisePartnerSection img {
        display: inline-block;
        max-width: 200px;
        width: 100%;
        vertical-align: top;
    }

.selectProgramWrapper .tab-pane {
    background-color: #f3f3f3;
    padding: 30px 15px;
}

.Programform .select {
    width: 330px;
}

.Programform {
    width: 100%;
}

    .Programform .selectLocationForm .select {
        width: 100%;
    }

.selectLocationForm {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.selectprogramForm {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.selectLocationForm > span {
    margin-top: 25px;
}

.selectprogramForm > h5 {
    margin-bottom: 0;
}

.selectprogramForm .custom-btn {
    margin-left: 20px;
}

.selectLocationForm .form-group {
    flex-grow: 1;
    margin: 0 12px;
}

.bylocationFilter {
    background-color: #f3f3f3;
    padding: 30px;
}

    .bylocationFilter .form-group {
        flex-grow: 1;
        flex-basis: 0;
        margin: 0 6px;
    }

.form-group h5 {
    margin-bottom: 9px;
}

.selectSelectSchool .card-header {
    padding: 8px;
    background-color: #344a83;
    color: #fff;
    border-radius: 5px;
    text-align: left;
    cursor: pointer;
}

    .selectSelectSchool .card-header .btn-link {
        color: #fff;
        font-weight: 700;
        width: 100%;
        text-align: left;
    }

.selectSelectSchool .card-body {
    background-color: #f3f3f3;
    padding: 10px;
}

.showSchoolResult {
    max-width: 310px;
}

    .showSchoolResult .title {
        border-bottom: 1px solid #ccc;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }

.filterWrapper {
    margin-top: 15px;
}

.bylocationFilter h5 {
    margin-bottom: 0;
    cursor: pointer;
}

    .bylocationFilter h5:before {
        content: '\e800';
        position: absolute;
        top: 0;
        right: 10px;
        cursor: pointer;
        pointer-events: none;
        font-family: "fontello";
        transition: 0.3s ease all;
    }

    .bylocationFilter h5.openFilter:before {
        transform: rotate(180deg);
    }

/* .contactBtn {
    right: 0;
    background-color: #29447b;
    color: #fff;
    height: 100%;
    padding: 4px 15px;
    z-index: 1;
    text-align: center;
    margin-top: 0px;
}

.contactBtn p {
    line-height: 1;
    display: inline-block;
}
.contactBtn a {
    color: inherit;
    font-weight: 800;
    display: inline-block;
} */
.contactBtn {
    right: 0;
    background-color: #07a7e3;
    color: #fff;
    height: 100%;
    padding: 7px 15px;
    z-index: 1;
    text-align: center;
    top: 0px;
    position: absolute;
}

    .contactBtn p {
        line-height: 1;
    }

    .contactBtn a {
        color: inherit;
        font-weight: 800;
        display: inline-block;
    }

.noRecordFoundSection p {
    padding: 20px 15px;
    text-align: center;
    background-color: #ffe2e2;
    border-radius: 10px;
    color: #c60000;
}

    .noRecordFoundSection p a {
        color: inherit;
        border-bottom: 1px solid;
    }

.closeBtn {
    position: absolute;
    right: 26px;
    top: 8px;
    width: 25px;
    height: 25px;
    opacity: 0.4;
    z-index: 1;
    cursor: pointer;
}

    .closeBtn:hover {
        opacity: 1;
    }

    .closeBtn:before, .closeBtn:after {
        position: absolute;
        left: 15px;
        content: ' ';
        height: 20px;
        width: 2px;
        background-color: #333;
    }

    .closeBtn:before {
        transform: rotate(45deg);
    }

    .closeBtn:after {
        transform: rotate(-45deg);
    }

#myModal .modal-body {
    background-color: #333;
    color: #fff;
}
    /*#myModal .modal-body { background-color: #ffe2e2; color: #c60000; }*/
    #myModal .modal-body p a {
        border-bottom: 1px solid;
    }
/*color: inherit;*/
#myModal .modal-content {
    border-radius: 10px;
    overflow: hidden;
}

/***************************************************************************************
*MEDIA QUERY FOR DEVICE WIDTH MORE THEN 1500 STARTS
***************************************************************************************/
@media (max-width:1500px) {
}

/***************************************************************************************
*MEDIA QUERY FOR DEVICE WIDTH MORE THEN 1400 STARTS
***************************************************************************************/
@media (max-width:1400px) {
}

/***************************************************************************************
*MEDIA QUERY FOR DEVICE WIDTH MORE THEN 1366 STARTS
***************************************************************************************/
@media (max-width:1366px) {
}

/***************************************************************************************
*MEDIA QUERY FOR DEVICE WIDTH MORE THEN 1300 STARTS
***************************************************************************************/
@media (max-width:1300px) {
}

/***************************************************************************************
*MEDIA QUERY FOR DEVICE WIDTH MORE THEN 1200 STARTS
***************************************************************************************/
@media (max-width:1200px) {
    .selectProgramWrapper .tab-pane {
        padding: 15px;
    }

    .bylocationFilter .form-group {
        width: 30%;
        flex-basis: auto;
        margin-bottom: 15px;
    }
}

@media (max-width:1199px) {
}

/***************************************************************************************
*MEDIA QUERY FOR DEVICE WIDTH MORE THEN 1024 STARTS
***************************************************************************************/
@media (max-width:1024px) {
}

/***************************************************************************************
*MEDIA QUERY FOR DEVICE WIDTH MORE THEN 992 STARTS
***************************************************************************************/
@media (max-width:992px) {
    h1 {
        font-size: 25px;
    }

    h2 {
        font-size: 30px;
    }

    h5 {
        font-size: 18px;
    }

    body {
        font-size: 14px;
        line-height: 24px;
    }

    .mainMenu ul li a {
        padding: 10px 5px;
    }

    .menuListWrapper li:hover > .submenu, .menuListWrapper li.hover > .submenu {
        top: 43px;
    }

    .menuListWrapper li li:hover > .submenu, .menuListWrapper li li.hover > .submenu {
        left: auto;
        right: 100%;
        top: 0;
    }

    .trainingLogo {
        max-width: 200px;
    }

    .selectLocationForm .form-group {
        width: 25%;
        margin: 0 6px;
    }

    .careerChoisePartnerSection {
        margin-top: 20px;
    }

        .careerChoisePartnerSection p {
            padding-right: 30px;
        }

    .bylocationFilter {
        padding: 20px;
    }

    .contactBtn {
        position: relative;
        border-top: 10px solid #fff;
    }

    .mainMenu {
        margin-bottom: 50px;
    }

    .contactBtn p, .contactBtn a {
        display: inline-block;
        line-height: 1;
    }
}

/***************************************************************************************
*MEDIA QUERY FOR DEVICE WIDTH MORE THEN 768px STARTS
***************************************************************************************/
@media (max-width:768px) {
    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 25px;
    }

    body {
        left: 0;
        transition: 0.3s ease all;
    }

    .sectionPadding {
        padding: 30px 0;
    }
    /* ForRightSide */
    body.slideBody {
        position: relative; /*position: fixed;*/
        width: 100%; /* left: -320px; */
    }

        body.slideBody:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 2;
        }

    .toggle-menu {
        display: flex;
        margin-left: auto;
    }
        /* ForRightSide */
        /* .toggle-menu.toggle {left: -295px;z-index: 111;} */
        .toggle-menu.toggle {
            left: 0;
            z-index: 111;
            position: fixed;
        }

    .trainingLogo {
        margin-bottom: 20px;
    }

    .mainTitle {
        margin-bottom: 20px;
    }

    .menuListWrapper {
        display: block;
        position: fixed;
        right: -320px;
        width: 320px;
        background-color: #fff;
        height: 100%; /* box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2); */
        overflow-y: auto;
        transition: 0.3s ease all;
        z-index: 9;
        padding: 20px 10px 20px;
    }

        .menuListWrapper.openMenu {
            display: block;
            right: 0;
            top: 0px;
        }

        .menuListWrapper > ul > li {
            display: block;
        }

        .menuListWrapper li:hover > .submenu, .menuListWrapper li.hover > .submenu {
            position: static;
            background-color: transparent;
            box-shadow: none;
        }

    .mainMenu ul li a {
        font-size: 15px;
    }

    .menuListWrapper li .submenu li, .mainMenu ul > li > a, .mainMenu ul > li > a:hover {
        border-bottom: 0;
    }

    .selectLocationForm .form-group, .Programform .select {
        width: 100%;
    }

    .selectLocationForm > span {
        margin: 10px auto;
    }

    .selectprogramForm > h5 {
        margin-bottom: 15px;
    }

    .selectprogramForm .custom-btn {
        margin-left: 0;
        margin-top: 15px;
    }

    .careerChoisePartnerSection p {
        display: block;
        margin-bottom: 30px;
        width: 100%;
        padding-right: 0;
    }

    .careerChoisePartnerSection img {
        display: block;
    }

    .bylocationFilter {
        padding: 10px;
    }

        .bylocationFilter .form-group {
            width: 48%;
            flex-basis: auto;
            margin-bottom: 15px;
        }
}

@media (max-width:600px) {
    .selectProgramWrapper .nav-item {
        width: 100%;
        margin: 0 0 15px;
    }

    .selectProgramWrapper .tab-pane {
        padding: 15px;
    }

    .bylocationFilter .form-group {
        width: 100%;
    }
}

@media (max-width:576px) {
    .subFooter {
        text-align: center;
    }

    .privacyPolicy a {
        float: none;
    }

    .topHeader .d-flex {
        flex-direction: column;
    }

    .quickCall {
        margin-top: 15px;
    }
}

.sidenav span.icon.icon-down-dir {
    float: right;
}

.more .more-text {
    display: none;
}

.LanguageSwitcher {
    display: flex;
    justify-content: flex-end;
}

    .LanguageSwitcher ul {
        display: flex;
        align-items: center;
        padding: 4px;
        margin: 0;
        background-color: #3c5cb0;
        border-radius: 60px;
        margin-bottom: 10px;
    }

    .LanguageSwitcher li {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

        .LanguageSwitcher li:before {
            visibility: hidden;
            opacity: 0;
        }

        .LanguageSwitcher li a {
            width: 65px;
            height: 28px;
            line-height: 28px;
            cursor: pointer;
            display: block;
            text-align: center;
            border-radius: 60px;
            font-weight: 500;
            color: #fff !important;
        }

            .LanguageSwitcher li a.active,
            .LanguageSwitcher li a.active:hover,
            .LanguageSwitcher li a.active:focus {
                background-color: #fff;
                color: #7b859e !important;
            }
