:root {
    --font: "Montserrat", Sans-serif;
    --fontRaleway: 'Raleway', sans-serif;
    --TitilliumWeb: 'Titillium Web', sans-serif;
    --white: #fff;
    --black: #000;
    --lightBlack: #232323;
    --blue: #203F5B;
    --grey: #A5A08F;
}

.bootstrap-table .fixed-table-container .table thead th {
    vertical-align: top !important;
}

.color-a {
    color: #203F5B !important;
}
/* .form-control{
    padding: 0.275rem 0.75rem !important;
} */
td.field_division{
    text-align: center !important;
}
td.field_division-end{
    text-align: end !important;
}
td.field_division .editBtn {
    margin-right: 10px;
}
/* BACK TO TOP BUTTON STYLE */

#back_to_top {
    display: inline-block;
    background-color: var(--grey);
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 0px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s,
      opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
    color:#fff !important;
    display: grid;
    place-items: center;
  }

#back_to_top.show {
    opacity: 1;
    visibility: visible;
}

/* END SECTION */
/* CONTENT MANAGER DASHBOARD */
.dash-grid-box{
    background: #203f5b;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 5%);
    padding:25px 20px;
    border-radius: 5px;
    color:#fff;
    height:122px;
    margin-bottom: 1.5rem;
    /* border-left:2px solid #203f5b; */
}
.dash-grid-box p{margin-bottom:0;}
.dash-grid-box i{
    font-size:1.5rem;
    color:#fff;
    margin-bottom:0.6rem;
}
.dash-board-box{
    background: #fff;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
    padding:20px 25px;
    border-radius: 5px;
}
.dash-grid-box span {
    font-size: 22px;
}
@media(min-width:992px){
    .dash-board-box ul{
        height:180px;
        overflow-y: auto;
    }
}
@media(min-width:1200px){
    .dash-board-box ul{
        height:180px;
    }
}
.dash-board-box ul{
    padding-left: 20px;
    /* height:180px; */
    /* overflow-y: auto; */
}
.dash-board-box ul li{
    /* list-style-type: circle; */
    margin-bottom:0.1rem;
}
.pt-20{padding-top:40px;}
/* END */
/* FORM'S Basic SETTINGS */

label {
   /* text-transform: uppercase;*/
    font-family: var(--font);
    margin: 1rem 0 0.2rem;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
textarea {
    font-family: var(--font);
    width: 100%;
}

#manager-settings input[type="text"],
input[type="text"]:focus {
    font-family: var(--font);
    font-size: 15px;
    height: 40px;
    padding-left: 0.5rem;
    outline: none;
}

input[type="submit"],
input[type="button"] {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
    outline: none;
    text-transform: uppercase;
    font-family: "Montserrat";
    /* max-width: 150px;
    width: 100%; */
    margin-top: 1.5rem;
    /* margin-left: 0.5rem; */
}

input[type="submit"]:hover,
input[type="button"]:hover {
    background: var(--grey);
    border-color: var(--grey);
    color:#fff;
}

.btn-info {
    background: var(--grey) !important;
    border-color: var(--grey) !important;
}

.btn-info:hover {
    background: var(--blue) !important;
    border-color: var(--blue) !important;
}

a {
    position: relative;
    display: inline-block;
}

a[tooltip-title]:hover:before {
    content: attr(tooltip-title);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    background: #000;
    color: #fff;
    position: absolute;
    top: -110%;
    left: -38px;
    z-index: 20;
    white-space: nowrap;
}

a[tooltip-title]:hover::after {
    content: '';
    position: absolute;
    top: 0px;
    left: -9px;
    display: inline-block;
    color: #fff;
    border: 8px solid transparent;
    border-top: 8px solid #000;
}

/******* NAVIGATION STYLE *******/

.bg-dark {
    background: var(--blue) !important;
    overflow-y: scroll;
    overflow-x: hidden;
    max-width: 265px !important;
    width: 100%;
    height: 100% !important;
}

.nav-link,
.menu-link {
    font-family: var(--font);
    font-size: 14px;
    color:#fff;
    font-weight: 600;
    /* text-transform: uppercase; */
    padding: 5px 20px !important;
    text-align: center;
}

.nav-link:hover span,
.nav-link:active span,
.nav-link:focus span {
    border-bottom: 3px solid var(--grey);
    padding-bottom: 0.6rem;
}

a.navbar-brand img {
    margin-top: -20px !important;
}

.social-icons-wrapper {
    text-align: center;
    padding-top: 1.5rem;
}

.social-icons-wrapper a {
    text-decoration: none;
}

.social-icons-wrapper i {
    background: var(--grey);
    font-size: 13px;
    color: var(--white);
    padding: 8px;
    border-radius: 50%;
}

.social-icons-wrapper i:hover {
    background: var(--white);
    color: var(--grey);
}

.dropdown-menu {
    z-index: 999999;
}
@media(min-width:992px){
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 2px;
    }
}

.page-list .dropdown:hover .dropdown-menu {
    display: block;
    bottom: 38px;
}
.page-list .dropdown-item.active, .page-list .dropdown-item:active{
    background-color: #203f5b !important;
    color:#fff !important;
}
/*Scrollbar Design*/

.bg-dark::-webkit-scrollbar {
    width: 6px;
}

.bg-dark::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #203f5b;
    border-radius: 2px;
}

.bg-dark::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px #203f5b;
    background-color: #A5A08F;
}

#navbarScroll>ul>li>a:hover {
    color: #203f5b;
}

#navbarScroll>ul>li::after {
    display: block;
    content: '';
    border-bottom: solid 2px #203f5b;
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
}

#navbarScroll ul li:hover:after {
    transform: scaleX(1);
}

#navbarScroll ul li:after {
    transform-origin: 0% 50%;
}

/*End*/

/******* END OF NAVIGATION STYLE *******/

.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
    color: #fff;
    background-color: #203f5b !important;
    border-color: #203f5b !important;
    box-shadow: none !important;
}

/* ALL SETTINGS PAGE */

.btn-check:active+.btn-outline-primary,
.btn-check:checked+.btn-outline-primary,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show,
.btn-outline-primary:active {
    background-color: var(--blue) !important;
    border-color: var(--blue);
}

.btn-outline-primary,
.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--grey) !important;
    border-color: var(--grey);
    color: var(--white);
    box-shadow: none !important;
    outline: none;
    padding: 0.1rem 0.5rem !important;
}

.fa-eye,
.fa-eye-slash {
    font-size: 14px;
}

/* END SETTING PAGE */

/******* CONTENT AREA *******/

/* hero section */

.hero-section {
    position: relative;
}

.hero-section .carousel-item {
    height: 100vh;
}

.hero-section img {
    height: 100%;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999;
    text-align: center;
    width: 100%;
}

.hero-text h2 {
    color: #FFFFFF;
    font-family: var(--font);
    font-size: 55px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 70px;
    padding: 4rem 0;
}

.hero-button-link {
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    background-color: var(--grey);
    color: var(--white);
    padding: 18px 42px;
    text-decoration: none;
    border-radius: 0px 0px 0px 0px;
    transition: 1s;
    position: relative;
}

a.hero-button-link::before {
    content: "";
    position: absolute;
    top: 110%;
    left: 5%;
    width: 103%;
    height: 0.1px;
    background-color: var(--grey);
    transition: 1s;
}

a.hero-button-link::after {
    content: "";
    position: absolute;
    top: 18%;
    right: -4%;
    width: 0.1px;
    height: 103%;
    background-color: var(--grey);
    transition: 1s;
}

.hero-button-link:hover {
    background-color: var(--blue);
    color: var(--white);
    transition: 1s;
}

.hero-button-link:hover::after {
    transition: 2s;
    background-color: transparent !important;
    height: 5%;
}

.hero-button-link:hover::before {
    transition: 2s;
    background-color: transparent !important;
    width: 5%
}

.scrollDiv {
    padding-top: 4rem;
}

.scrollDiv a {
    color: var(--white) !important;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 72px;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.scrollDiv i {
    color: var(--white) !important;
    /* font-size: 13px; */
}

.bounce-arrow {
    animation: bounce2 2s ease infinite;
}

@keyframes bounce2 {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

/* End section */

/* About Section */

#about {
    padding: 120px 81px;
    min-height: calc(100vh - 200px);
}

.team-section {
    min-height: calc(100vh - 100px);
}

.about-video {
    display: grid;
    place-items: center;
}

#about h2,
.philosophy-section h2,
.corsair-contact h2,
.team-section h2,
.executive-section h2 {
    color: var(--blue);
    font-family: var(--font);
    font-size: 42px;
    font-weight: 600;
    line-height: 1em;
}

#about .gjs-row h2,#about .gjs-row p{
    color:#000 !important;
}
#footer a:hover{color: #fff !important;}
#about p {
    color: var(--blue);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.875em;
}

#about p.small-head,
.philosophy-section p.small-head,
.corsair-contact p.small-head,
.team-section p.small-head {
    color: var(--grey);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.about-text {
    padding-right: 60px;
}

#about-us-page .about-text {
    padding-right: 0px;
}

#about-us-page .corsair-contact h2 {
    font-size: 23px;
    font-weight: 600;
    line-height: 1.3em;
    padding-right: 10rem;
}

#about-us-page .contact-col-1 {
    margin-top: 0;
}

#about-us-page .corsair-contact {
    padding: 4rem 0;
}

.border-bottom {
    border-bottom: 2px dotted var(--blue) !important;
    width: 70px;
    margin-top: 1.5rem;
}

/* End Section */

/* Counter Section */

.counter-section {
    background-position: center left;
    background-size: cover;
    text-align: center;
    padding: 50px 15px;
}

.count {
    color: var(--grey);
    font-family: var(--font);
    font-size: 38px;
    font-weight: 600;
    line-height: 1em;
}

.counter h6 {
    font-family: var(--font);
    color: var(--white);
    margin-top: 2rem;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4em;
    letter-spacing: 1px;
}

/* End Section */

/* Philosophy Section */

.philosophy-section {
    text-align: center;
    padding: 120px 45px;
}

.divider {
    display: grid;
    place-items: center;
    padding-bottom: 1rem;
}

.philosophy-row h3,
.executive-row h3 {
    color: var(--blue);
    font-family: var(--font);
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1em;
    margin: 2rem 0;
}

.philosophy-row p,
.executive-row h6 {
    color: var(--blue);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.875em;
}

/* End Section */

/* Contact Section */

.corsair-contact h2 {
    color: var(--white) !important;
}

.contact-col-1 .border-bottom {
    border-color: var(--white) !important;
}

.contact-col-1 p {
    /* color:var(--white)!important; */
    font-family: var(--font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
}

.corsair-contact {
    background: #e9e6db;
}

.corsair-contact .divider {
    place-items: unset;
}

.corsair-contact input,
.corsair-contact textarea {
    font-family: var(--fontRaleway);
    color: #555555 !important;
    border: none !important;
    background: var(--white) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    padding: 8px 10px !important;
    box-sizing: border-box !important;
    outline: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.875 !important;
    text-transform: uppercase !important;
}

.corsair-contact .btn-primary {
    border-radius: 0;
    padding: 18px 41px;
    line-height: 1.42857143;
    display: inline-block;
    margin-bottom: 0;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    vertical-align: middle;
    font-family: var(--TitilliumWeb);
    font-weight: 600;
    text-align: center;
    background: #1a1a1a;
    cursor: pointer;
    border: 1px solid transparent;
    color: var(--white);
    outline: none;
}

.corsair-contact .btn-primary:hover {
    background: var(--white) !important;
    color: #1a1a1a !important;
    border-color: #1a1a1a !important;
}

.corsair-contact input:focus,
.corsair-contact textarea:focus {
    box-shadow: none;
}

.contact-col-1 {
    padding: 100px 60px;
    margin-top: -5%;
}

.contact-col-1 .social-icons-wrapper {
    text-align: left;
    padding-top: 0;
}

.contact-col-2 {
    padding: 80px 40px 80px 80px;
}

.contact-col-2 h2,
.contact-col-2 .border-bottom {
    color: var(--blue) !important;
}

.corsair-contact p.small-head {
    font-size: 16px;
}

span.phoneIcon {
    color: var(--white);
    font-size: 24px;
}

span.phoneIcon .fas {
    margin-top: 1rem;
}

.callNo {
    margin-left: 2.5rem;
}

/* End Section */

/* Map section */

.map-col-1,
.map-col-2 {
    position: absolute;
}

.map-col-1 {
    left: 0;
}

.map-col-2 {
    right: 0;
}

.map-section h1 {
    color: #7A7A7A;
    text-align: center;
    font-family: var(--font);
    padding: 1.5rem 0;
}

/* End of Map Section */

/* Team Section */

.team-section .team-row {
    text-align: left;
}

.team-row h4,
.executive-row h4 {
    color: var(--blue);
    font-family: var(--font);
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 1rem 0 0.5rem;
}

.executive-row h4 {
    font-size: 21px;
}

.team-row h6,
.executive-row h6 {
    color: var(--grey);
    font-family: var(--font);
    font-size: 19px;
    font-weight: 500;
    padding: 0 0 5rem;
}

.executive-row h6 {
    font-size: 17px;
}

.team-row .col-xl-4 {
    position: relative;
}

.team-row .hero-button-link {
    position: absolute;
    bottom: 0;
}

.team-col-1,
.team-col-2,
.team-col-3 {
    margin-top: 3rem;
}

.team-col-4,
.team-col-5,
.team-col-6,
.team-col-7,
.team-col-8,
.team-col-9,
.team-col-10,
.team-col-11 {
    margin-top: 5.5rem;
}

.team-section {
    padding: 0 45px 50px;
    text-align: center;
}

.executive-section {
    padding-top: 140px;
}

/* End of Team Section */

/* About Us Bios Page */

#about-us-bios-page .team-section {
    padding: 95px 120px;
}

#about-us-bios-page img {
    width: 100%;
}

#about-us-bios-page .team-single-row .col-xl-6 {
    display: grid;
    place-items: center left;
    margin-top: 9rem;
}

#about-us-bios-page .team-single-row {
    text-align: left;
}

#about-us-bios-page .team-single-row h4 {
    color: var(--blue);
    font-family: var(--font);
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1em;
}

#about-us-bios-page .team-single-row h6 {
    color: var(--grey);
    font-family: var(--font);
    font-size: 22px;
    font-weight: 500;
    padding-bottom: 1rem;
}

#about-us-bios-page .team-single-row p {
    color: var(--blue);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.875em;
}

#about-us-bios-page .divider {
    margin-bottom: 3rem;
}

/* End of Page */

/* Press Page */

#press-page .download-btn {
    margin-top: 5rem;
}

#press-page .philosophy-section {
    padding: 120px 0;
}

#press-page .counter-section h2 {
    color: var(--white);
    font-family: var(--font);
    font-size: 42px;
    font-weight: 600;
    text-transform: uppercase;
}

#press-page #about .about-text {
    background: var(--grey);
    padding: 60px 60px 80px;
    position: absolute;
    left: -.25%;
}

#press-page .about-video img {
    position: absolute;
    right: 0%;
    z-index: -1;
    top: -50px;
    width: 55%;
}

#press-page #about p,
#press-page #about h2 {
    color: var(--white);
}

#press-page .border-bottom {
    border-bottom: 2px dotted var(--white) !important;
}

#press-page #about {
    padding: 160px 15px;
}

#press-page .counter-section {
    margin-top: 25rem;
}

/* End Page Style */

/* Login Page */
#ixzc #about, #login-page .content{
    min-height: calc(100vh - 200px);
}
#login-page .content {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    padding: 160px 0 60px;
    text-align: center;
}

#test-login-page #login-page .content {
    padding: 0px 0 110px;
}

#login-page .login-section {
    background: var(--white);
    padding: 45px 50px 90px;
    margin: 0 auto;
    max-width: 740px;
}
#test-login-page #login-page .login-section {
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
    margin-top: 19rem;
}

#login-page .login-section h2 {
    color: #000;
    font-size: 1.7rem;
    font-weight: 600;
    font-family: var(--font);
    margin-bottom: 2.5rem;
}

#login-page .login-section p {
    font-family: var(--font);
    font-size: 18px;
}

#login-page #user_email {
    box-sizing: border-box;
    height: 45px;
    width: 94%;
    font-size: 14px;
    border: 1px solid #666 !important;
    border-radius: 2px;
    color: var(--blue);
    padding: 9px 10px 8px;
    line-height: 0.9em;
    display: inline-block;
    outline: none;
    font-family: var(--font);
}

#login-page #wpa-submit {
    box-sizing: border-box;
    height: 40px;
    width: 100%;
    max-width: 150px;
    font-size: 14px;
    background-color: var(--blue);
    border: none;
    outline: none;
    color: var(--white);
    border-radius: 2px;
    font-weight: 600;
    padding: 9px 2px 9px 2px;
    margin: 2rem 0 1.2rem;
}
#login-page #reset-btn {
    box-sizing: border-box;
    height: 40px;
    width: 100%;
    max-width: 220px;
    font-size: 14px;
    background-color: var(--blue);
    border: none;
    outline: none;
    color: var(--white);
    border-radius: 2px;
    font-weight: 600;
    padding: 9px 2px 9px 2px;
    margin: 2rem 0 1.2rem;
}
#login-page #custom-errors-email{
    margin-bottom: 1rem;
    color: red;
    text-align: left;
}
#login-page #show_hide_password{
    margin-bottom: 1rem;

}


#login-page .policy-div p,
.register-div a {
    color: var(--black);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 300;
}

#login-page .policy-div a,
.register-div a,
#terms .content a {
    text-decoration: none;
    color: #c36;
}

.register-div a {
    margin-top: 2rem;
    display: block;
}

#login-page .policy-div a:hover,
.register-div a:hover,
#terms .content a:hover {
    color: var(--blue);
}

/* End Page Style */

/* Terms & Policy Page */

#terms .content {
    padding: 40px 60px;
}

#terms h4 {
    color: var(--grey);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

#terms h2 {
    color: var(--blue);
    font-family: var(--font);
    font-size: 42px;
    font-weight: 700;
    line-height: 1em;
    margin-bottom: 1rem;
}

#terms h3 {
    color: var(--blue);
    font-family: var(--font);
    font-size: 2rem;
}

#terms h5 {
    color: var(--blue);
    font-family: var(--font);
    font-size: 1.75rem;
}

#terms .divider {
    place-items: flex-start;
}

#terms p,
#terms ul li {
    color: var(--blue);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.875em;
}

/* End Page Style */

.fixed-table-toolbar {
    display: flex;
    place-items: end;
    place-content: end;
}

.editBtn i {
    font-size: 0.9rem;
}

.switchBtn i {
    color: #8e8771 !important;
    font-size: 0.9rem;
}
/******* END OF CONTENT AREA *******/

/******* FOOTER SECTION *******/

#footer {
    background: var(--blue);
    /* margin-top:35.5rem;*/
    /*padding: 80px 0 80px 15.3rem;*/
}

#about-us-page #footer,
#about-us-bios-page #footer,
#press-page #footer,
#login-page #footer,
#terms #footer,
#dashboard #footer,
#investment-page #footer {
    margin-top: 0;
}

#footer .social-icons-wrapper {
    text-align: left;
    padding-left: 1rem;
}

.copyright {
    padding: 23px 0 23px 16.5rem;
    background: var(--grey);
}

.foot-text {
    font-family: var(--font);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5em;
    padding-top: 1.6rem;
    padding-right: 2rem;
    padding-left: 1rem;
}

.foot-head {
    color: var(--grey);
    font-family: var(--font);
    font-size: 17px;
    font-weight: 600;
    line-height: 1em;
    margin-top: 1rem;
}

.foot-subhead {
    color: var(--white);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5em;
}

.link-div a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.875em;
}

.link-div span {
    color: var(--grey);
    font-size: 16px;
    padding-right: 7px;
}

.subscribe-form input[type="email"] {
    background: transparent;
    border: none;
    outline: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 98%;
    padding: 0 0.4em;
    margin: 0 4% 10px 0;
    min-height: 40px;
}

.subscribe-form input[type="submit"] {
    background: #1a1a1a;
    color: var(--white);
    border: 1px solid transparent;
    padding: 10px 30px;
    font-size: 1rem;
    border-radius: 3px;
    font-family: var(--font);
    font-size: 1rem;
    margin-bottom: 1.8rem;
    transition: 1s;
}

.subscribe-form input[type="submit"]:hover {
    background: var(--white);
    color: #1a1a1a;
    transition: 1s;
}

.copyright span {
    color: var(--white);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.2px;
}

.copyright-links a {
    font-family: var(--fontRaleway);
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.2px;
    text-decoration: none;
    padding: 0 1rem;
    border-right: 1px solid var(--white);
}

.copyright-links a:last-child {
    border-color: transparent;
}

/******* END OF FOOTER SECTION *******/

.bg-light {
    background: #A5A08F !important;
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    z-index: 999;
}

/* .mob-nav {
    display: none;
} */
.note-editor.note-frame.panel.panel-default.fullscreen {
    background: #fff;
}

/* MEDIA QUERY */

@media(min-width:1441px) {
    #press-page #about .about-text {
        height: 550px;
    }
    #press-page .counter-section {
        margin-top: 36rem;
    }
}

@media(max-width: 1199px) {
    .about-video {
        margin-top: 4rem;
    }
    #press-page .about-video,
    #press-page .counter-section {
        margin-top: 0;
    }
    .about-text {
        padding-right: 15px;
    }
    .foot-head-2,
    .foot-head-3 {
        margin-top: 4rem;
    }
    .foot-head,
    .foot-subhead,
    .link-div {
        padding-left: 1rem;
    }
    .team-col-3 {
        margin-top: 5.5rem;
    }
    #press-page .about-video img,
    #press-page #about .about-text {
        position: unset;
        width: 100%;
    }
    #press-page .about-video {
        padding: 0;
    }
    #press-page #about {
        padding: 140px 15px 100px;
    }
}

@media(max-width:1025px) {
    .hero-text h2 {
        font-size: 46px;
    }
    .philosophy-row .col-xl-4 {
        width: 100% !important;
    }
    .contact-banner {
        display: none;
    }
    #login-page .login-section {
        max-width: 80%;
    }
}

@media (max-width: 991px) {
    .map-col-1,
    .map-col-2 {
        position: unset;
    }
    #footer,
    .copyright {
        margin-top: 0;
    }
    .copyright-links {
        margin-top: 2rem;
    }
    .copyright-links a {
        padding: 0 0.5rem;
    }
    .copyright span {
        display: block;
    }
    .team-row img {
        width: 100%;
    }
    .navbar-nav li {
        padding: 16px 0;
    }
    .navbar-nav .dropdown li {
        padding: 0;
    }
    .menu-link {
        padding: 15px !important;
    }
    .navbar-light .navbar-toggler {
        border: none;
        box-shadow: none;
    }
}

@media (max-width: 769px) {
    #about {
        padding: 80px 20px;
    }
    .philosophy-section {
        padding: 50px 0px;
    }
}

@media(max-width:767.5px) {
    .nav-link {
        text-align: left;
    }
    .col-auto.col-md-3.col-xl-2.bg-dark.d-none.d-sm-inline.position-fixed {
        display: none !important;
    }
    .mob-nav {
        display: block;
    }
    /* .horizontal-bar{display:none;} */
    a.navbar-brand img {
        margin-top: -10px !important;
    }
    .nav-item hr {
        margin: 0.8rem 0 !important;
        color: var(--grey);
    }
    .bg-light {
        background: #a5a08f !important;
        /* padding: 0.6rem 0; */
        position: fixed;
        width: 100%;
    }
    .content {
        margin: 0;
    }
    .hero-text {
        top: 80%;
        transform: translate(-50%, -80%);
    }
    .hero-text img {
        width: 80px;
    }
    .hero-text h2 {
        font-size: 26px;
        line-height: 36px;
        padding: 2rem 0;
    }
    .hero-section .carousel-item {
        height: 565px;
    }
    #about h2,
    .philosophy-section h2,
    .team-section h2,
    .executive-section h2 {
        font-size: 40px;
    }
    #login-page .login-section h2{
        font-size: 16px;
        margin-bottom: 1rem;
    }
    #login-page .login-section p{
        font-size:12px;
    }
    .checkbox{
        font-size:12px;
    }
    .contact-col-2 {
        padding: 50px 35px;
    }
    #contact-page .contact-col-2 {
        padding: 100px 35px 70px;
    }
    .contact-col-1 {
        padding: 100px 35px;
    }
    .map-col-1 {
        padding-right: 0rem !important;
    }
    .map-col-2 {
        padding-left: 0rem !important;
    }
    .philosophy-section,
    .executive-section {
        text-align: center;
        padding: 50px 0px;
    }
    .team-section {
        padding: 0;
    }
    .executive-row h6 {
        padding: 0 0 2rem;
    }
    .executive-section {
        padding-top: 100px;
    }
    /* #footer,
    .copyright {
        padding: 50px 15px;
    } */
    .foot-head,
    .foot-subhead,
    .link-div,
    .foot-text,
    .social-icons-wrapper {
        padding-left: 0rem !important;
    }
    .foot-head-1 {
        margin-top: 4rem;
    }
    #about-us-bios-page .team-section {
        padding: 120px 0px;
    }
    #about-us-bios-page .divider {
        margin-bottom: 0rem;
    }
    #about-us-bios-page .team-single-row .col-xl-6 {
        margin-top: 4rem;
    }
    #login-page .login-section {
        max-width: 90%;
    }
    #login-page .content {
        padding: 150px 0 60px;
    }
    #login-page .login-section{
        padding: 45px 20px;

    }
    .checkbox span{
        font-size: 12px;
    }
    #login-page .login-section{
        padding: 45px 20px;

    }
    .checkbox span{
        font-size: 12px;
    }
}

@media (max-width: 376px) {
    #about h2,
    .philosophy-section h2,
    .team-section h2,
    .executive-section h2 {
        font-size: 33px;
    }
}

/* END OF MEDIA QUERY */

table tbody a {
    color: #0D6EFE !important;
}

.text-upper {
    text-transform: uppercase;
}
.btn-delete-color{
    color:#8e8771 !important;
}
.btn-edit-color{
    color:#203f5b !important;
}
 /*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #a5a08f;
    border-top-color: #203f5b;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

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

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
table th, table td{white-space: nowrap;}

.modal-header .close{
    border: none !important;
    background: transparent !important;
    font-weight:bold;
    font-size:20px;
    opacity:0.6 !important;
}

.bootstrap-table .fixed-table-toolbar .columns .dropdown-menu{
    z-index: 1 !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.tb-padd{
    padding:0.63rem !important;
}
.user_tables .columns.columns-right.btn-group.float-right{right:138px !important;}
.sa-transaction .user_tables .columns.columns-right.btn-group.float-right{right:116px !important;}
#support_page .note-editor.note-frame.fullscreen {
    top:86px !important;
}

.user-advanced{
    margin-top: 0px !important;
}
.user-advanced-form{
    border: 1px solid #dee2e6;
}

.ml-10{
    margin-left: 10px !important;
}
