/* ==============================

BASE & GLOBAL

============================== */

#page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#main {
  flex: 1 1 auto;
}

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

.g-recaptcha {
  margin-bottom: 20px;
}

.widget {
  padding-bottom: 25px;
}

.btn--proceed {
  background-color: #293991;
  color: #fff;
  text-transform: uppercase;
  white-space: normal;
  transition: 0.3s ease-in;
}

.btn--proceed i {
  margin-right: 5px;
}

.btn--proceed:hover {
  background-color: #000;
  color: #fff;
}


section.section.type1 {
  display: flex;
  justify-content: center;
}


.cnbox__link--decoration {
  text-decoration: underline;
}

.nbox {
  width: 100%;
}

p.lead {
  margin-top: 10px;
  margin-bottom: 0;
}

.action-box {
  padding: 0;
  font-size: 16px;
  border: none;
  box-shadow: none;
  text-align: left;
}

.action-box p {
  font-size: 13px;
}

.action-box .fa.fa-warning {
  font-size: 13px;
  margin-right: 5px;
  color: #730d0d;
}

.lead16--text-modify {
  color: #59ab02;
  text-transform: uppercase;
  font-weight: 800;
}

.row--align {
  display: flex;
  justify-content: center;
}

.tag-links > li {
  display: block;
  margin-bottom: 10px;
}

.tag-links li a {
  display: block;
}

.tag-links a.tag-link--decoration {
  padding: 4px 7px;
  background: transparent;
  color: #2c3e50;
  text-decoration: none;
  text-transform: capitalize;
  cursor: pointer;
  transition: 0.3s ease-in;
}

.tag-links a.tag-link--decoration:hover {
  color: #59ab02;
}

.tag-links a.tag-link--decoration:before {
  content: "\f1c1";
  left: -10px;
  position: absolute;
  top: 3.5px;
  font-family: FontAwesome;
  border: none;
}

.remove-top-space {
  margin-top: -80px;
}

.text--green {
  color: #59ab02;
}

.btn--space {
  margin-top: 30px;
}

.text--decoration {
  text-decoration: underline;
}

.list-group-item {
  padding-left: 32px;
}

.list-group-item i {
  margin-left: -23px;
}

.list-group-item--sub-item {
  padding-left: 60px;
}

.list-group-item--sub-item--active {
  background: #f5f5f5;
}

@media (min-width: 788px) {
  .action-box {
    padding-right: 30px;
  }
}

@media (max-width: 992px) {
  .container {
    width: 100%;
  }
}

/* ==============================

  GRID

============================== */

@media (max-width: 1024px) {
  .row--small-devices .widget-categories {
    padding-top: 0 !important;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .row--small-devices {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .row--small-devices .widget-categories {
    padding-top: 0 !important;
  }

  .row--small-devices .col-sm-4 {
    order: 2;
    margin-top: 0;
    width: 100%;
  }

  .row--small-devices .col-sm-8 {
    order: 1;
    width: 100%;
    margin-bottom: 0;
  }
}

@media all and (max-width: 768px) {
  .row--small-devices {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .row--small-devices .widget-categories {
    padding-top: 0 !important;
  }

  .row--small-devices .col-md-4 {
    order: 2;
    width: 100%;
    margin-top: auto;
  }

  .row--small-devices .col-md-8 {
    order: 1;
    width: 100%;
    margin-bottom: 0;
  }
}


/* ==============================

  NAVIGATION

============================== */


#masthead .navbar-brand span {
  font-size: 13px;
  display: block;
}

#masthead .navbar-brand {
  padding: 20px 15px;
}

#masthead .navbar-brand img.img-responsive {
  max-width: 100%;
  height: auto;
}

#masthead .navbar-nav {
  font-size: 12px;
}

#masthead .dropdown-menu > .active > a,
#masthead .dropdown-menu > .active > a:hover,
#masthead .dropdown-menu > .active > a:focus {
  background-color: #59AB02;
}

@media (max-width: 768px) {
  #masthead {
    height: 70px;
  }

  #masthead .navbar-brand span.navbar-brand--top-text {
    margin-top: 10px;
    font-size: 16px;
  }

  #masthead .navbar-brand {
    margin-top: -5px;
  }

  #masthead .navbar-default .navbar-nav > .active > a,
  #masthead .navbar-default .navbar-nav a {
    padding-left: 15px;
  }

  #masthead .navbar-default .navbar-nav .dropdown-menu li a {
    padding-left: 25px;
  }
}


/* ==============================

  FOOTER

============================== */

.footer-action {
  position: relative;
  padding: 40px 30px 30px;
  background-color: #243a4e;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  text-align: center;
}

.footer-action p i {
  margin-right: 5px;
}

.footer-action:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -7.5px;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 0 15px;
  border-color: #fff transparent transparent transparent;
}

.footer-action a {
  text-decoration: underline;
}

.footer-info-wrapper {
  color: #fff;
  font-weight: 400;
  font-size: 10px;
}


.footer-copyright {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
}

.site-footer--sticky {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* ==============================

  HOME PAGE

============================== */

img.img--home {
  width: 100%;
  height: 100%;
}

@media (max-width: 1200px) {
  .tp-simpleresponsive .caption,
  .tp-simpleresponsive .tp-caption {
    margin-top: -30px;
  }
}

.features-additional-index {
  margin-top: 40px;
  margin-bottom: 30px;
}

.features-additional-index p.lead {
  min-height: 45px;
}

.features--additional {
  margin-top: 70px;
}

.features--additional h4 {
  min-height: 30px;
  font-size: 19px;
}

@media (max-width: 1200px) {
  .features-additional-index p.lead {
    font-size: 19px;
  }
}

@media (max-width: 991px) {
  .features-additional-index .section.type2 {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .section#features {
    display: block;
  }
}


@media (max-width: 335px) {
  .features-additional-index .col-md-4:nth-child(2n) p.lead{
    min-height: 55px;
  }
}

/* ==============================

  SBOXES

============================== */


.sboxes .row {
  display: flex;
  justify-content: center;
}

.sboxes .solutions-tile {
  height: auto;
}

.sboxes .solutions-inner-tile {
  min-height: 230px;
}

.sboxes--eeo .solutions-inner-tile {
  min-height: 250px;
}

@media (max-width: 1200px) {
  .sboxes .solutions-inner-tile {
    min-height: 240px;
  }

  .sboxes--eeo .solutions-inner-tile {
    min-height: 270px;
  }
}

@media (max-width: 991px) {
  .sboxes .solutions-inner-tile {
    min-height: 280px;
  }

  .sboxes--eeo .solutions-inner-tile {
    min-height: 320px;
  }
}

@media (max-width: 767px) {
  .sboxes .solutions-inner-tile {
    min-height: 200px;
  }

  .sboxes--eeo .solutions-inner-tile {
    min-height: 210px;
  }
}

@media (max-width: 500px) {
  .sboxes .solutions-inner-tile {
    min-height: 250px;
  }

  .sboxes--eeo .solutions-inner-tile {
    min-height: 260px;
  }
}

@media (max-width: 767px) {
  .sboxes .row {
    flex-direction: column;
  }
}

/* ==============================

  INNER PAGES

============================== */

.section-resources p > a {
  display: block;
}

.assisted-services-list {
  margin-bottom: 0;
}

.assisted-services-list p {
  font-size: 13px;
}

.post--space section.type2.section-quote {
  padding-top: 0;
}

.section-quote h3 {
  font-size: 22px;
  margin-bottom: 0;
}

.section-quote .subpage-title {
  padding-bottom: 20px;
}

.section-quote blockquote {
  padding:  5px 20px;
  font-size: 13px;
}

img.img--inner {
  margin: 0 auto;
  width: 100%;
  height: auto;
}

.post-1 .entry-thumb {
  margin-top: -30px;
}

.post {
  padding: 35px 0 20px 0;
}

.post-1 .entry-wrap {
  border: none;
}

.post .entry-title {
  text-transform: capitalize;
}

.incident-response-services {
  display: flex;
  justify-content: center;
}

.incident-response-services h4 {
  margin-bottom: 15px;
  font-size: 17px;
}

.incident-response-services .section.type2 {
  padding-top: 15px;
}

.post .hazards-list {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  margin-bottom: 0;
  padding-left: 20px;
  height: 80px;
  flex-wrap: wrap;
}

.post .states-list {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  margin-bottom: 0;
  padding-left: 20px;
  height: 320px;
  flex-wrap: wrap;
}

.post .section.type2 blockquote {
  margin-bottom: 0;
}

.post--space section.type2 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.post--recommended-reading {
  margin-top: 20px;
  margin-bottom: 30px;
}

.post--recommended-reading li {
  padding-bottom: 5px;
}

.post--recommended-reading li:last-child {
  padding-bottom: 0;
}

.post--recommended-reading li a {
  margin-right: 5px;
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .post .hazards-list {
    height: 120px;
  }
}

@media(max-width: 1024px) {
  .entry-wrap.entry-wrap--space {
    padding-bottom: 0;
  }

  .widget.widget-text .section.type2 {
    padding-bottom: 0;
  }

  .entry-wrap.entry-wrap--space .section.type2 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

@media(max-width: 992px) {
  .entry-wrap.entry-wrap--space {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 860px) {
  .post .states-list {
    height: 320px;
  }
}


@media (max-width: 600px) {
  .post .states-list {
    height: 320px;
  }
}

@media (max-width: 500px) {
  .post .hazards-list {
    height: 170px;
  }

  .post .states-list {
    height: 480px;
  }
}

@media(max-width: 460px) {

  .incident-response-services {
    display: block;
  }
}

@media (max-width: 400px) {
  .post .states-list {
    height: 480px;
  }
}


/* ==============================

  INDEX

============================== */


.adv-color-gis, .adv-color-gis:hover,
.adv-color-gis:active {
  border: 2px solid #293991;
}

h3.cbox-title small {
  color: #fff;
  font-weight: 800;
}

.section--news li a {
  text-decoration: underline;
}

.adv-gis ul li p {
  width: 100%;
}

.learn-more-green {
  font-size: 14px;
  font-weight: 700;
  color: #59ab02;
  margin-top: auto;
  margin-bottom: 0;
}

.learn-more-green i {
  margin-left: 5px;
}

@media (min-width: 992px) {
  .cnbox-item .row {
    display: flex !important;
  }

  .cnbox-item .col-md-4,
  .cnbox-item .col-md-8 {
    display: flex !important;
  }

  .cnbox-item .col-md-4 .cbox {
    flex-grow: 1 !important;
  }
}

@media (max-width: 1200px) {
  .tp-simpleresponsive .caption,
  .tp-simpleresponsive .tp-caption {
    margin-top: -30px;
  }
}

@media (max-width: 991px) {

  #banner-1-xs-layer,
  #banner-2-xs-layer,
  #banner-3-xs-layer {
    top: 50px;
    padding: 10px !important;
  }
}

@media (max-width: 767px) {
  .section#features {
    display: block;
  }

  .cnbox-item .cbox {
    height: auto !important;
  }
}

@media (max-width: 500px) {
  .section#features {
    display: block;
  }
}

/* ==============================

  LEGAL & PRIVACY

============================== */

.widget--legal,
.widget--privacy {
  padding-top: 50px;
}

.post--legal {
  padding-top: 15px;
}

.post--policy {
  padding-top: 0;
}

.post--legal .entry-wrap,
.post--policy .entry-wrap {
  padding: 0;
}

.post--policy .section.type2,
.post--legal .section.type2 {
  padding-top: 15px;
  padding-bottom: 15px;
}

@media (max-width: 1200px) {
  .post--legal .section.type2,
  .post--policy .section.type2 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

@media (max-width: 768px) {
  .post--legal .entry-wrap,
  .post--policy .entry-wrap {
    padding: 5px;
  }
}

/* ==============================

  MODULES from COMMERCIAL-CYBER-RESOURCES

============================== */

.entry-wrap--assessment {
  padding: 0;
}

.module-video {
  position: relative;
  margin: 0 auto;
  padding-bottom: 56.25%;
  padding-top: 35px;
  height: 0;
  overflow: hidden;
}

.module-video iframe {
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
}

.form--assessment {
  margin-top: 50px;
}

.form--assessment .alert--form {
  margin-top: 20px;
}

.form--assessment ol label {
  margin-right: 10px;
}

.form--assessment ol {
  padding-left: 30px;
  font-size: 16px;
}

.form--assessment ol li {
  margin-bottom: 20px;
}

.form--assessment ol li:last-child {
  margin-bottom: 40px;
}

.form--assessment ol li label:first-child {
  margin-right: 10px;
}

.form--assessment .btn {
  margin-left: 50px;
  font-size: 16px;
  min-width: 160px;
}

.assessment-results th,
.assessment-results td {
  padding: 10px 15px;
  font-size: 16px;
  border: 1px solid #ecf0f1;
}

.assessment-results th {
  background-color: #656565;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}

.assessment-results tbody tr:hover {
  transition: 0.1s ease-in;
  color: #555;
  background-color: #f5f5f5;
}

.assessment-results tfoot td {
  font-size: 18px;
  font-weight: bold;
  color: #555;
}

.user-answer {
  font-weight: bold;
}

.user-answer--correct {
  color: #5cb85c;
}

.user-answer--incorrect {
  color: #d9534f;
}

.alert--assessment .row:first-child {
  margin-bottom: 20px;
}

.alert--assessment .row .form-control {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .alert--assessment {
    width: 75%;
  }
}

@media (max-width: 991px) {
  .assessment-results th {
    font-size: 13px;
  }
}

/* ==============================

  CURRICULUM

============================== */

.post--space section.type2.section--training {
  margin-bottom: 10px;
}

.post--space section.type2.section--module {
  padding: 25px 30px;
  margin-bottom: 20px;
  border: 1px solid #95a5a6;
}

.curriculum-list {
  list-style: none;
  margin: 0;
  margin-bottom: 10px;
  padding: 0;
  display: flex;
  justify-content: space-around;
}

.curriculum-list--alternative {
  flex-direction: column;
}

p.curriculum-text {
  font-size: 14px;
  margin: 0;
}

.curriculum-list i,
.curriculum-list a {
  display: inline-block;
  vertical-align: baseline;
}

.curriculum-list a {
  padding-left: 25px;
  font-size: 12px;
  font-weight: bold;
  color: #8c9899;
  transition: 0.3s ease-in;
}

.curriculum-list a:hover {
  color: #5cb85c;
}

.curriculum-list i {
  margin-left: -20px;
  margin-right: 5px;
}

.curriculum-text {
  display: flex;
  align-items: center;
}

.curriculum-number {
  margin-right: 12px;
  width: 38px;
  height: 38px;
  text-align: center;
  background-color: #59AB02;
  color: #fff;
  font-size: 14px;
  line-height: 2.6;
  font-weight: bold;
}

.curriculum-list--alternative a {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 800;
  color: #2c3e50;
  text-transform: capitalize;
}

.curriculum-list--alternative i {
  font-weight: 800;
}


@media (max-width: 1024px) {
  .entry-wrap.entry-wrap--space .section.type2.section--module {
    padding: 25px 30px;
    margin-bottom: 20px;
  }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 767px) and (orientation: portrait) {
  .curriculum-list a {
    font-size: 11px;
  }
}

@media (max-width: 500px) {
  .entry-wrap.entry-wrap--space .section.type2.section--module {
    padding: 20px 15px;
    margin-bottom: 20px;
  }
}

@media (max-width: 450px) {
  .curriculum-list {
    flex-direction: column;
  }

  .curriculum-list li {
    margin-bottom: 5px;
  }
}

/* ==============================

  LOGIN & REGISTER & REQUEST ACCESS

============================== */

.btn--submit {
  background-color: #293991;
  color: #fff;
  text-transform: uppercase;
  white-space: normal;
  transition: 0.3s ease-in;
}

.btn--submit:hover {
  background-color: #000;
  color: #fff;
}

.contact-form__wrapper {
  margin-top: 20px;
  margin-bottom: 150px;
  display: flex;
  justify-content: center;
}

.contact-form--request{
  max-width: 750px;
  width: 100%;
}

.contact-form--request h3 {
  margin-bottom: 70px;
}

.section.type2.login-content,
.section.type2.register-content {
  padding: 30px 40px;
  background-color: #ecf0f1;
}

.section.type2.login-content {
  min-height: 350px;
}

.section.type2.register-content {
  min-height: 250px;
}

.section.type2.login-content h3,
.section.type2.register-content h3 {
  margin-top: 0;
}

.section.type2.login-content h3 {
  margin-bottom: 20px;
}

.login-content-action {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.register-content h3 {
  margin-bottom: 12px;
}

.register-content p {
  font-size: 16px;
}

.register-content-action {
  margin-top: 80px;
  text-align: right;
}

@media (max-width: 991px) {
  .section.type2.register-content {
    min-height: 350px;
  }
}

@media (min-width: 768px) {
  .login-content,
  .register-content {
    margin-top: 50px;
    margin-bottom: 150px;
  }
}

@media (max-width: 768px) {
  .login-content {
    margin-bottom: 30px;
  }
}

/* ==============================

  ABOUT-US

============================== */

img.img-about-us {
  width: 100%;
  height: 100%;
}

.entry-wrap.entry-wrap--about-us {
  padding-left: 0;
  padding-right: 0;
}


/* ==============================

  404 PAGE

============================== */

@media (min-width: 1024px) {
  .row--error {
    margin-bottom: 120px;
  }
}

@media (max-width: 1024px) and (min-width: 925px) {
  .row--error {
    margin-bottom: 60px;
  }
}

@media (max-width: 800px) and (min-width: 767px) {
  .error-content .btn.btn--error {
    bottom: 10px;
  }
}

/* ==============================

  EDGE ( BREADCRUMBs commented for test purpose )

============================== */


/*@supports (-ms-accelerator:true) {
  .archive-header .col-xs-12.col-sm-12.col-md-6 {
    width: 100%;
  }

  .archive-header .col-md-6.hidden-xs.hidden-sm {
    display: none;
  }
}

@supports (-ms-ime-align:auto) {
  .archive-header .col-xs-12.col-sm-12.col-md-6 {
    width: 100%;
  }

  .archive-header .col-md-6.hidden-xs.hidden-sm {
    display: none;
  }
}*/


@supports (-ms-accelerator:true) {
  @media (min-width: 992px) {
    .cnbox-item .row {
      display: flex !important;
    }

    .cnbox-item .col-md-4,
    .cnbox-item .col-md-8 {
      display: flex !important;
    }

    .cnbox-item .col-md-4 .cbox {
      height: 100% !important;
    }
  }
}

@supports (-ms-ime-align:auto) {
  @media (min-width: 992px) {
    .cnbox-item .row {
      display: flex !important;
    }

    .cnbox-item .col-md-4,
    .cnbox-item .col-md-8 {
      display: flex !important;
    }

    .cnbox-item .col-md-4 .cbox {
      height: 100% !important;
    }
  }
}

/* ==============================

  OVERRIDE STYLING

============================== */


@media (max-width: 768px) {
  #masthead .dropdown-menu > .active > a,
  #masthead .dropdown-menu > .active > a:hover,
  #masthead .dropdown-menu > .active > a:focus {
    background-color: #f5f5f5;
    color: #333;
  }

  #masthead .navbar-default .navbar-nav > .active > a,
  #masthead .navbar-default .navbar-nav a {
    padding-left: 25px;
  }

  #masthead .navbar-default .navbar-nav .dropdown-menu li a {
    padding-left: 30px;
  }

  .navbar-nav .open .dropdown-menu > li > a {
    padding: 10px 15px 10px 30px;
  }
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}

.sbox-special, .sbox-special:hover {
    display: block;
    padding: 0;
    text-align: center;
    color: #696969 !important;
}

.sbox-inner-special {
    padding: 0;
    border: 1px solid #95a5a6;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.red {
  color: red;
}

a.list-group-item, button.list-group-item {
    color: black;
}