:root {
    --font: "Montserrat", Sans-serif;
    --fontRaleway:'Raleway', sans-serif;
    --TitilliumWeb:'Titillium Web', sans-serif;
    --white: #fff;
    --black: #000;
    --lightBlack: #232323;
    --blue:#203F5B;
    --grey:#A5A08F;
    --dark-grey:#8e8771;
  }
body{font-family: var(--font);}
  /* 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 */

#ixzc #about, #login-page .content{
    min-height: calc(100vh - 200px);
}

/* NAVIGATION */

.header {
    width: 100%;
    top: 0;
    z-index: 999;
}

.nav-bg {
    background: #203f5b;
    padding: 26px 0 20px;
}

.nav-bg .nav-link {
    color: #fff;
    padding: 0.5rem 1.2rem !important;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

/* 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"],
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) !important;
    outline: none;
    font-family: "Montserrat";
    max-width:150px;
    width:100%;
}
input[type="submit"]:hover,input[type="submit"]:focus,input[type="button"]:focus{
    background: var(--grey);
    border-color: var(--grey);
    box-shadow: none !important;
}
.custom-btn{
    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.8rem; */
}

/******* 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{
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px 20px !important;
    color:var(--white) !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;
 }

 .mob-nav{display:none;}

  /* 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);}

/*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;
}
/*End*/
@media(min-width:992px){
.dropdown:hover .dropdown-menu {
    display: block;
    margin-top:3px;
 }}
 .animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
  .slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
    padding:8px 0!important;
    border:none !important;
    background:#fff !important;
    border-radius:0 !important;
    box-shadow:0px 0px 30px rgb(127 137 161 / 25%);
}
.slideIn a{
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    padding:8px 20px;
}
.slideIn .dropdown-item:focus, .dropdown-item:hover{
    background:transparent !important;
    color:#203f5b;
}
@keyframes slideIn {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }

  100% {
    transform: translateY(0rem);
    opacity: 1;
  }

  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }

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

  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}
.navbar-nav li:after {
    display:block;
    content: '';
    border-bottom: solid 2px #fff;
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
  }
  .navbar-nav li:hover:after { transform: scaleX(1); }
  .navbar-nav li:after{  transform-origin:  0% 50%; }
/******* END OF NAVIGATION STYLE *******/

/* 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 *******/
/* .content{ margin-left:265px; } */
/* 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;}
.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 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 */
#login-page .content{
    background-size: cover !important;
    background-repeat: no-repeat !important;
    padding:130px 0;
    text-align: center;
}

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

#login-page .login-section{
    background:var(--white);
    padding:45px 50px 45px;
    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;
    line-height: 1em;
    margin:2rem 0 1.2rem;
}

#wpa-submit:focus {
    background-color: #A5A08F !important;
    color: #000 !important;
}

#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 */
.blue-btn-color{
    color: var(--blue) !important;
}
.grey-btn-color{
    color: var(--dark-grey) !important;
}
.input-group-text{
    background: var(--grey);
    color:#fff !important;
    border-radius: 0;
}

.user-icon .input-group-text{
    color:black !important;
    padding: 0.7em 0.75rem !important;
}
.note-editor.note-frame.panel.panel-default {
    width: 100%;
}
.note-editor.note-frame.panel.panel-default.fullscreen{
    background:#fff !important;
}
.sm_logs td:nth-child(4), .sm_logs th:nth-child(4),
.sm_logs td:last-child, .sm_logs th:last-child,
.log_table td:last-child, .log_table th:last-child,
.tb_spacing th, .tb_spacing td{
    white-space: nowrap !important;
}
/******* END OF CONTENT AREA *******/

/******* FOOTER SECTION *******/
#footer{
    background: var(--blue);
    margin-top:35.5rem;
    /* padding:80px 0 80px 15.3rem; */
}
#footer a:hover{
    color:var(--white);
}
#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 *******/

/* TABLE ICONS */
td.field_division.d-grid {
    vertical-align: middle !important;
    display: flex !important;
    justify-content: center !important;
    gap: 10px;
    margin: 5px 0px 5px 0px;
}
/******* END TABLE ICON SECTION *******/

.table-responsive {
    overflow-x: unset !important;
}

/* CONTENT MANAGER DASHBOARD */

.dash-grid-box {
    background: #203f5b;
    padding: 25px 20px;
    border-radius: 5px;
    color: #fff;
    height: 122px;
}

.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-board-box ul {
    height: 180px;
    overflow-y: auto;
}
.custom_padding p{margin-bottom:0;}
@media(min-width:992px) {
    .custom_padding{padding:20px 0px;}
}

.dash-board-box ul {
    padding-left: 20px;
}

.dash-board-box ul li {
    margin-bottom: 0.1rem;
}

/*Scrollbar Design*/
.dash-board-box ul::-webkit-scrollbar {
    width: 6px;
}
.dash-board-box ul::-webkit-scrollbar-track  {
    box-shadow: inset 0 0 6px #203f5b;
    border-radius: 2px;
}
.dash-board-box ul::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px #203f5b;
	background-color: #203f5b;
}
/*End*/
/* END */

.main_section {
    padding: 30px 0;
    min-height: calc(100vh - 200px);
}

/* MEDIA QUERY */
@media(min-width:992px){
    .bootstrap-table .fixed-table-toolbar .bs-bars, .bootstrap-table .fixed-table-toolbar .columns, .bootstrap-table .fixed-table-toolbar .search{
        margin-top:0 !important;
    }
}
@media(min-width:1441px){
    #press-page #about .about-text{height:550px;}
    #press-page .counter-section {margin-top: 36rem;}
}
/* TABLE ICONS */
td.field_division.d-grid {
    vertical-align: middle !important;
    display: flex !important;
    justify-content: center !important;
    gap: 10px;
    margin: 5px 0px 5px 0px;
}
/******* END TABLE ICON SECTION *******/
@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:1199px){
    .nav-link{text-align: left;}
    .nav-bg .nav-link {padding: 1.5rem 1.2rem !important;}
}

@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%;}

    .nav-bg .navbar-nav {
        padding: 25px 0!important;
    }
    .nav-bg .nav-link{
        padding: 1rem 1.2rem !important;
    }
    .nav-link { text-align: left;}
}
@media (max-width: 769px){
    #about{padding:150px 0px;}
    .philosophy-section{padding:50px 0px;}
}
@media(max-width:767px){

    .col-auto.col-md-3.col-xl-2.bg-dark.d-none.d-sm-inline.position-fixed {display: none !important;}
    .mob-nav{display:block;}
    .nav-item hr{
        margin:0.8rem 0 !important;
        color:var(--grey);
    }
    .navbar-light .navbar-toggler{border:none;box-shadow:none;}
    .bg-light{
        background:var(--blue) !important;
        padding: 0.6rem 0;
        position: fixed;
        width: 100%;
        z-index: 99999999;
    }
    .navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(165, 160, 143,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !important;}

    .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;}

    .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 80px;}
}

@media (max-width: 376px){
    #about h2, .philosophy-section h2, .team-section h2, .executive-section h2 {font-size: 33px;}
}
@media (max-width: 295px){
    .container{
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }
    label{font-size:0.9rem;}
    input[type="submit"], input[type="button"]{
        max-width:125px !important;
    }
    .form-control{font-size:0.8rem;}
}
/* END OF MEDIA QUERY */

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

#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;
}

@media(min-width:280px){
    .cm-log-head{
        position:absolute;
        margin-top:10px;
    }
}
input#emailTo{margin-right:0 !important;border-radius:0;}
.daterangepicker{z-index:11 !important;}
.user_tables{position:relative;}
.user_tables .columns.columns-right.btn-group.float-right{right:113px !important;}
select#time_zone{height:38px;}
#support_page .note-editor.note-frame.fullscreen {
    top:99px !important;
}
.body-height{
        min-height: calc(100vh - 233px);
}

