/* ========================================
   DOCKER PRODUCT STYLE - CLEANED & REORGANIZED
   ======================================== */

/* ========================================
   1. NAVIGATION (PRODNAVBAR)
   ======================================== */

nav {
  display: block;
}

/* Prodnavbar Base Styles */
.prodnavbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border-bottom: 7px solid transparent;
}

@media (min-width: 992px) {
  .prodnavbar {
    border-radius: 0;
  }
}

.prodnavbar-header {
  float: left;
}

.prodnavbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}

.prodnavbar-collapse.in {
  overflow-y: auto;
}

@media (min-width: 992px) {
  .prodnavbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    float: right;
  }

  .prodnavbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
    visibility: visible !important;
  }

  .prodnavbar-collapse.in {
    overflow-y: visible;
  }
}

.prodnavbar-brand {
  float: left;
  background: url(../images/docker-logo-white.svg) 0 0 no-repeat;
  width: 150px;
  height: 38px;
  display: block;
  margin: 5px 0;
  font-size: 16px;
  font-weight: 200;
  color: #fff;
  text-indent: -9999px;
  position: relative;
  margin-top: 18px;
  margin-bottom: 15px;
}

.prodnavbar-brand:hover,
.prodnavbar-brand:focus {
  text-decoration: none;
}

.prodnavbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-top: 20px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

.prodnavbar-toggle:focus {
  outline: 0;
}

@media (min-width: 992px) {
  .prodnavbar-toggle {
    display: none;
  }
}

/* Prodnavbar Navigation */
.prodnav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.prodnav>li {
  position: relative;
  display: block;
}

.prodnav>li>a {
  position: relative;
  display: block;
  padding: 10px 15px;
}

.prodnavbar-nav {
  margin: 7.5px -15px;
}

.prodnavbar-nav>li>a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}

@media (min-width: 992px) {
  .prodnavbar-nav {
    float: left;
    margin: 0;
  }

  .prodnavbar-nav>li {
    float: left;
  }

  .prodnavbar-nav>li>a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

/* Prodnavbar Inverse Theme */
.prodnavbar-inverse {
  background-color: #2496ed;
}

.prodnavbar-inverse .prodnavbar-brand {
  color: #fff;
}

.prodnavbar-inverse .prodnavbar-brand:hover,
.prodnavbar-inverse .prodnavbar-brand:focus {
  color: #fff;
  background-color: transparent;
}

.prodnavbar-inverse .prodnavbar-text {
  color: #ffffff;
}

.prodnavbar-inverse .prodnavbar-nav>li>a {
  color: #ffffff;
}

.prodnavbar-inverse .prodnavbar-nav>li>a:hover,
.prodnavbar-inverse .prodnavbar-nav>li>a:focus {
  color: #fff;
  background-color: transparent;
}

.prodnavbar-inverse .prodnavbar-nav>.active>a,
.prodnavbar-inverse .prodnavbar-nav>.active>a:hover,
.prodnavbar-inverse .prodnavbar-nav>.active>a:focus {
  color: #fff;
  background-color: #0e406a;
}

.prodnavbar-inverse .prodnavbar-toggle {
  border-color: #2496ed;
}

.prodnavbar-inverse .prodnavbar-toggle:hover,
.prodnavbar-inverse .prodnavbar-toggle:focus {
  background-color: #0e406a;
}

.prodnavbar-inverse .prodnavbar-collapse,
.prodnavbar-inverse .prodnavbar-form {
  border-color: #2496ed;
  padding-top: 15px;
}

.prodnavbar-inverse .prodnavbar-nav>.open>a,
.prodnavbar-inverse .prodnavbar-nav>.open>a:hover,
.prodnavbar-inverse .prodnavbar-nav>.open>a:focus {
  color: #fff;
  background-color: #0e406a;
}

@media (max-width: 991px) {
  .prodnavbar-inverse .prodnavbar-nav .open .dropdown-menu>li>a {
    color: #fff;
  }

  .prodnavbar-inverse .prodnavbar-nav .open .dropdown-menu>li>a:hover,
  .prodnavbar-inverse .prodnavbar-nav .open .dropdown-menu>li>a:focus {
    color: #fff;
    background-color: transparent;
  }

  .prodnavbar-inverse .prodnavbar-nav .open .dropdown-menu>.active>a,
  .prodnavbar-inverse .prodnavbar-nav .open .dropdown-menu>.active>a:hover,
  .prodnavbar-inverse .prodnavbar-nav .open .dropdown-menu>.active>a:focus {
    color: #fff;
    background-color: #0e406a;
  }
}

/* Clearfix for navbar */
.prodnav:before,
.prodnav:after,
.prodnavbar:before,
.prodnavbar:after,
.prodnavbar-header:before,
.prodnavbar-header:after,
.prodnavbar-collapse:before,
.prodnavbar-collapse:after {
  display: table;
  content: " ";
}

.prodnav:after,
.prodnavbar:after,
.prodnavbar-header:after,
.prodnavbar-collapse:after {
  clear: both;
}

/* Bootstrap 5 navbar adjustments */
@media (min-width: 992px) {
  .navbar-collapse {
    display: flex !important;
    flex-basis: auto !important;
    flex-grow: 1 !important;
  }

  .prodnavbar-collapse,
  .prodnavbar-nav {
    float: none !important;
  }

  .prodnavbar .navbar-nav.prodnav {
    display: flex !important;
    flex-direction: row !important;
  }
}

@media (max-width: 991.98px) {
  .prodnavbar .navbar-nav .nav-link {
    writing-mode: horizontal-tb;
    display: block;
  }
}

.prodnavbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========================================
   2. JUMBOTRON / HERO SECTIONS
   ======================================== */

.jumbotron {
  margin-top: 0px;
  padding-top: 0px;
  background-color: #fff;
  background-attachment: fixed;
}

.jumbotron h1.featurette-heading {
  color: #5dabcf;
  font-size: 30pt;
  font-weight: bold;
}

.jumbotron h3 {
  color: #ffffff;
  font-weight: normal !important;
}

.jumbotron .featurette {
  color: #104b79;
}

.jumbotron .featurette .col-md-6 {
  padding: 0;
}

.jumbotron .featurette ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}

.jumbotron .featurette ul li {
  background-image: url(../images/bullet1.png);
  background-repeat: no-repeat;
  background-position: 0px center;
  padding-left: 15px;
}

.jumbotron p {
  line-height: 125%;
}

.nsjumbotron {
  margin-bottom: 0 !important;
}

/* ========================================
   3. BUTTONS
   ======================================== */

.btn-primary-docker {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-image: unset;
  text-align: center;
  border: 2px solid #0073ec;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
  height: 54px;
  min-width: 196px;
  padding: 16px 23px 18px;
  background-color: #0073ec;
  font-size: 1em;
  font-weight: 600;
  color: #fff;
  line-height: 20px;
  letter-spacing: -.25px;
  position: relative;
  display: inline-block;
  margin: 5px;
}

.btn-primary-docker2 {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-image: unset;
  text-align: center;
  border: 2px solid #0073ec;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
  height: 54px;
  min-width: 196px;
  padding: 16px 23px 18px;
  background-color: white;
  font-size: 1em;
  font-weight: 600;
  color: #0073ec;
  line-height: 20px;
  letter-spacing: -.25px;
  position: relative;
  display: inline-block;
  margin: 5px;
}

.btn-primary-docker3 {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-image: unset;
  text-align: center;
  border: 2px solid #0073ec;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
  width: 196px;
  padding: 16px 23px 18px;
  background-color: #0073ec;
  font-size: 1em;
  font-weight: 600;
  color: #fff;
  line-height: 20px;
  letter-spacing: -.25px;
  position: relative;
  display: inline-block;
  margin: 5px;
}

.btn-primary-docker3:hover,
.btn-primary-docker3:focus,
.btn-primary-docker3:active {
  background-color: #0056b3;
  border-color: #004494;
  color: #fff;
}

.btn-lg {
  white-space: normal !important;
}

/* ========================================
   4. CARDS
   ======================================== */

.card {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border-radius: .25rem;
  box-shadow: 0 4px 18px rgb(11 33 74 / 10%), 0 -2px 4px rgb(11 33 74 / 3%);
}

.card2 {
  width: auto;
  height: auto;
  background: #fff;
  position: relative;
  border-radius: 15px !important;
  margin-bottom: 20px;
}

.card3 {
  width: auto;
  height: auto;
  border-radius: 15px;
  background-color: #e5f2fc;
  margin-bottom: 20px;
}

.card-title {
  font-size: 27px;
  margin-bottom: 20px;
  text-align: left;
}

.card-text {
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: left;
}

.card-link2 {
  text-align: center;
  padding: 20px;
}

.card-pricing-frame1 {
  width: 100%;
  padding-top: 4%;
  padding-bottom: 4%;
  background: gray;
  box-sizing: border-box;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  max-height: 200px;
  color: white;
  text-align: center;
  font-size: 16px;
}

.card-pricing-frame2 {
  width: 100%;
  padding-top: 4%;
  padding-bottom: 4%;
  background: #0073ec;
  box-sizing: border-box;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  max-height: 200px;
  color: white;
  text-align: center;
  font-size: 16px;
}

.card-content2 {
  padding: 0 30px;
}

.shadow4 {
  width: 95% !important;
  height: auto;
  background: #ffffff;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .3);
  border-radius: 10px;
}

@media (min-width: 1429px) {
  .card-bottom1 {
    position: absolute;
    bottom: 90px;
    left: 0;
    right: 0;
    width: auto;
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .card-bottom2 {
    position: absolute;
    bottom: 70px;
    left: 0;
    right: 0;
    width: auto;
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .card-bottom3 {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    width: auto;
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
}

@media (max-width: 800px) {
  .card-container {
    width: 100% !important;
  }
}

/* ========================================
   5. FOOTER
   ======================================== */

footer.partner {
  background-color: #0b214a;
  margin: 0;
  padding: 30px 20px;
  text-align: left;
}

footer.product {
  background-color: #2496ed !important;
  margin: 0;
  padding: 30px 20px;
  text-align: left;
}

footer.partner,
footer.product {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

footer.product h3 {
  color: #ffffff !important;
  font-size: 18px;
  font-weight: 700;
}

footer.product p.footerlist {
  color: #ffffff;
  line-height: 180%;
  font-weight: 300;
}

footer.product p.footerlist a {
  color: #ffffff;
  font-weight: 300;
  text-decoration: none;
}

footer.product p.footerlist a:hover {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
}

footer .emailbox {
  padding: 10px 0;
  margin: 0;
}

footer .newcontact {
  display: none;
}

footer .white-box {
  background: white;
  border: white 1px solid;
  border-radius: 8px;
  padding: 20px 20px;
}

footer .toptitleimage {
  color: #2496ed;
  margin: 0px !important;
}

footer .row.g-3 {
  margin-right: 0px;
  margin-left: 0px;
}

footer .col_2 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

footer .col_2>* {
  width: calc(50% - 6px);
  margin-right: 12px;
  margin-bottom: 12px;
}

footer .col_2>*:nth-child(2n) {
  margin-right: auto;
}

footer .col_2>*>* {
  position: relative;
  overflow: hidden
}

@media screen and (max-width: 960px) {
  footer .col_2>* {
    width: 100%;
    margin-right: auto;
  }
}

/* ========================================
   6. UTILITY CLASSES
   ======================================== */

.business {
  padding: 35px;
  gap: 35px;
}

.docs h3 {
  font-weight: bold;
  font-size: 16px;
}

.note {
  background-color: rgba(159, 209, 249, 0.2);
  font-size: unset;
  padding: 10px 20px;
  margin: 20px;
  border-left: 5px solid #076cad;
}

.important {
  background-color: #fef5c3;
  font-size: unset;
  padding: 10px 20px;
  margin: 20px;
  border-left: 5px solid #cc4e09;
}

.warning {
  background-color: rgba(248, 160, 154, 0.2);
  font-size: unset;
  padding: 10px 20px;
  margin: 20px;
  border-left: 5px solid #e9524f;
}

.tip {
  background-color: #C6EAE1;
  font-size: unset;
  padding: 10px 20px;
  margin: 20px;
  border-left: 5px solid #1E6C5F;
}

.information {
  background-image: linear-gradient(to bottom, #e1f3f2 0%, #cdeff3 100%);
  background-repeat: repeat-x;
  border-color: #dcdcdc;
  box-shadow: inset 0 1px 3px rgb(0 0 0 / 5%), 0 1px 0 rgb(255 255 255 / 10%);
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #cdeff3;
  border: 1px solid #cdeff3;
  border-radius: 4px;
}

.docker-upgrade-cta {
  background-color: #fef5c3;
  border: 1px solid #f9e3ae;
  padding: 16px 25px;
  margin: 20px;
  border-radius: 3px;
}

.documents h2 {
  font-weight: bold;
  padding-top: 5%;
}

.documents h4 {
  font-weight: bold;
  padding-top: 2%;
}

.movie-wrap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  margin: 5%;
  height: 0;
  overflow: hidden;
}

.movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.plan-inquiry-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 40px;
}

.plan-inquiry-row>[class*="col-"] {
  flex: 0 1 calc(50% - 8px);
  max-width: calc(50% - 8px);
}

.plan-inquiry-row .btn {
  width: 100%;
}

@media (max-width: 575.98px) {
  .plan-inquiry-row>[class*="col-"] {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.component-container {
  padding: 0;
  margin: 0 0 50px;
  width: 100%;
}

.component {
  padding: 15px 25px 15px 15px;
  text-align: center;
  height: 100%;
  width: 100%;
  background: #F9F9FA;
}

.component-icon {
  display: flex;
  justify-content: center;
}

.component-container .row>.block {
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.block {
  padding: 4rem 0;
  position: relative;
  z-index: 1
}

.block.nopad {
  padding: 0
}

.block.dark {
  color: #fff
}

.block .block-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1
}

.row-eq-height2 {
  display: flex;
  flex-wrap: wrap;
}

pre {
  background-color: #f5f7fb;
  border: 1px solid #d8e2f0;
  border-radius: 8px;
  padding: 12px 14px;
  overflow-x: auto;
}

pre code {
  display: block;
  background-color: transparent;
  padding: 0;
}

code {
  background-color: #f5f7fb;
  border-radius: 4px;
  padding: 0 4px;
}

/* ========================================
   7. RESPONSIVE TABLES
   ======================================== */

.tbl-r03,
.tbl-r04,
.tbl-r05 {
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .tbl-r03 {
    width: 80%;
  }
}

@media screen and (max-width: 950px) {
  .tbl-r03 .thead {
    display: none;
  }

  .td-hr {
    display: none;
  }

  .tbl-r03 tr {
    border-bottom: 1px solid rgb(193, 193, 193);
  }

  .tbl-r03 td {
    display: block;
    border-radius: 10px;
    background-color: white !important;
  }

  .tbl-r03 td:first-child {
    text-align: center;
  }

  .tbl-r03 td:before {
    content: attr(data-label);
    float: left;
    margin-right: 10px;
    text-align: left;
  }

  .td-font {
    font-weight: 800;
  }
}

@media screen and (max-width: 935px) {
  .tbl-r04 .thead {
    display: none;
  }

  .tbl-r04 tr {
    width: 100%;
    border-bottom: 1px solid rgb(193, 193, 193);
  }

  .tbl-r04 td {
    display: block;
    text-align: right;
    width: 100%;
    border-bottom: 1px dotted rgb(193, 193, 193);
    background-color: white !important;
  }

  .tbl-r04 td:first-child {
    text-align: center;
  }

  .tbl-r04 td:before {
    content: attr(data-label);
    float: left;
    margin-right: 10px;
    text-align: left;
  }
}

@media screen and (max-width: 800px) {
  .tbl-r05 {
    width: 80%;
  }

  .tbl-r05 .thead {
    display: none;
  }

  .tbl-r05 tr {
    width: 100%;
    border-bottom: 1px solid rgb(193, 193, 193);
  }

  .tbl-r05 td {
    display: block;
    text-align: right;
    width: 100%;
    border-bottom: 1px dotted rgb(193, 193, 193);
    background-color: white !important;
  }

  .tbl-r05 td:first-child {
    text-align: center;
  }

  .tbl-r05 td:before {
    content: attr(data-label);
    float: left;
    margin-right: 10px;
    text-align: left;
  }

  .fa-check-circle {
    text-align: right !important;
  }

  .td-font {
    font-weight: 800;
  }
}

/* ========================================
   8. SCROLL TO TOP & ANIMATIONS
   ======================================== */

#scrollTopBtn {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #1d63ed;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background-color 0.3s, transform 0.3s;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#scrollTopBtn.is-visible {
  opacity: 1;
  visibility: visible;
}

#scrollTopBtn:hover {
  background-color: #0b214a;
  transform: translateY(-3px);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}