@charset "UTF-8";
@import url("//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
@import url(//fonts.googleapis.com/css?family=Open+Sans:400,700,800,300);
/* CSS for Back to Top Button */
.back-to-top-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #0990e5;
  color: white;
  cursor: pointer;
  padding: 20px;
  border-radius: 10px;
}

.back-to-top-btn:hover {
  background-color: #005fa7;
}

/* Styling for the navbar */
/*
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 10px 0;
  display: flex;
  //justify-content: space-between;
  z-index: 1000;
  transition: background-color 0.3s;
  background: transparent;
}

#navbar.visible {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hidden {
  background: transparent;
}

#navbar a {
  color: #333;
  text-decoration: none;
  padding: 8px 15px;
  margin: 0 5px;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

#navbar a:hover {
  background: #f0f0f0;
  color: #000;
}
*/
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 15px;
  display: flex;
  justify-content: space-between;
  z-index: 1000;
  transition: background-color 0.3s;
  background: transparent;
}

#navbar.visible {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#navbar.hidden a {
  background: #f0f0f0;
  color: #000;
  text-decoration: none;
  padding: 10px 15px;
  margin: 0 5px;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

#navbar a {
  color: #333;
  text-decoration: none;
  padding: 10px 15px;
  margin: 0 5px;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  font-size: 16px;
}

#navbar.visible a:hover {
  background: #f0f0f0;
  color: #000;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

#navbar.hidden a:hover {
  background: #f0f0f0;
  color: #000;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.right-aligned-link {
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  flex: 1;
}

.nav-links a {
  margin: 0 10px;
}

#navbar.hidden .help-desk-login-btn,
#navbar:not(.hidden) .help-desk-login-btn {
  background-color: #007ece !important;
  color: white;
}

#navbar.hidden .quick-support-btn,
#navbar:not(.hidden) .quick-support-btn {
  background-color: #F08080 !important;
  color: white;
}

#navbar.hidden .bill-pay-btn,
#navbar:not(.hidden) .bill-pay-btn {
  background-color: #65A765 !important;
  color: white;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  height: 75%;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 75%;
  line-height: 1.45;
  color: #141414;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  /* Adjust the height as needed */
  overflow: hidden;
  /* Hide overflow to prevent image from exceeding the container */
}

.logo img {
  max-width: 70%;
  max-height: 70%;
  border-radius: 10px;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.btn {
  display: inline-block;
  margin: 1rem 0;
  color: white;
  font-weight: 500;
  font-size: 1.3rem;
  background: #007ece;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 5px;
  padding: 0.8rem 1rem 0.9rem;
  text-shadow: 0 1px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}
@media (max-width: 43.75em) {
  .btn {
    padding: 0.5rem 0.7rem 0.6rem;
    font-size: 1rem;
  }
}
.btn:hover {
  background: #008ee8;
  color: #fff;
}
.btn:focus, .btn:active, .btn:focus:active {
  background: #006eb5;
  border-color: #006eb5;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.5) inset;
}

.box-container {
  margin: 0 auto;
  width: 90%;
  max-width: 1900px;
}

.feature-box-container {
  margin: 0 auto;
  width: 100%;
  max-width: 1800px;
}

.container {
  margin: 0 auto;
  width: 90%;
  max-width: 1100px;
}

header {
  color: white;
  background: #007ece;
  padding: 10rem 0;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 43.75em) {
  header {
    padding: 2rem 0;
  }
}
header h1 {
  font-size: 3rem;
  margin: 0 0 1rem;
}
@media (max-width: 43.75em) {
  header h1 {
    font-size: 2rem;
  }
}
header h2 {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
@media (max-width: 43.75em) {
  header h2 {
    font-size: 1.5rem;
  }
}

section {
  background: #fff;
  color: #1c262b;
  padding: 3.5rem 0;
}
@media (max-width: 43.75em) {
  section {
    padding: 2rem 0;
  }
}
section.section--primary {
  background: #007ece;
  color: #fff;
}
section.section--primary--alt {
  background: #27a4f4;
  color: #fff;
}
section.section--primary--light {
  background: rgba(0, 126, 206, 0.1);
}
section.section--grey {
  background: #1c262b;
  color: #fff;
}
section.section--grey--light {
  background: #29363e;
  color: #fff;
}
section h3 {
  text-align: center;
  font-size: 2rem;
  font-weight: 300;
  margin: 0 0 1rem;
}
@media (max-width: 43.75em) {
  section h3 {
    font-size: 1.5rem;
  }
}
section li {
  font-size: 1.2rem;
  font-weight: 300;
}
section p {
  font-size: 1.2rem;
  font-weight: 300;
}

.col, .col-10, .col-5, .col-3, .col-7 {
  margin: 0 1.5%;
  display: inline-block;
  vertical-align: top;
}

.col-7 {
  width: 64%;
}
@media (max-width: 43.75em) {
  .col-7 {
    width: 100%;
    margin: 0;
  }
}

.col-3 {
  width: 29%;
}
@media (max-width: 43.75em) {
  .col-3 {
    width: 100%;
    margin: 0;
  }
}

.col-5 {
  width: 30%;
}
@media (max-width: 34.375em) {
  .col-5 {
    width: 60%;
    margin: 0;
  }
}

.col-10 {
  width: 45%;
}
@media (max-width: 34.375em) {
  .col-10 {
    width: 80%;
    margin: 0;
  }
}

.details {
  text-align: left;
}
.details h3 {
  font-size: 2rem;
  text-align: left;
}

@media (max-width: 43.75em) {
  .details-img--ball {
    height: 200px;
    width: auto;
    margin: 0 auto;
  }
}

.features {
  text-align: center;
  padding: 1rem;
}
.features:hover {
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 43.75em) {
  .features {
    width: 100%;
    margin: 0;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .features:last-child {
    border: none;
  }
}
.features i {
  font-size: 4rem;
  margin: 0 0 2rem 0;
}
@media (max-width: 43.75em) {
  .features i {
    font-size: 1.5rem;
    width: 2rem;
    text-align: center;
    margin: 0 0 1rem 0;
    float: left;
  }
}
.features p {
  margin: 0 0 1rem 0;
  font-size: 1rem;
}
@media (max-width: 43.75em) {
  .features p {
    margin-left: 3rem;
  }
}

blockquote {
  position: relative;
  margin: 0;
  padding: 0;
  text-align: center;
}
blockquote:before {
  display: inline-block;
  color: #007ece;
  font-size: 2rem;
  content: "“";
}
blockquote p {
  margin: 0;
  display: inline;
  font-size: 1.5rem;
}
@media (max-width: 43.75em) {
  blockquote p {
    font-size: 1.2rem;
  }
}
blockquote cite {
  font-size: 1rem;
  display: block;
  margin: 0.5rem 0 0 1.2rem;
 /* text-style: italic; */
}
@media (max-width: 43.75em) {
  blockquote cite {
    font-size: 0.8rem;
  }
}
blockquote cite:before {
  content: "–";
}

footer {
  background: #2d2b2a;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}
footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer ul li {
  display: inline-block;
}
footer ul li a {
  display: block;
  padding: 0.4rem 0.7rem;
  font-size: 0.9rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
}
footer ul li a:hover {
  color: white;
}

.text--center {
  text-align: center;
}

.text--left {
  text-align: left;
}

.bg-image {
  background: #007ece;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.bg-image:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #333 url("https://sarasota-networks.com/content/page_elements/pictures/data-center-shot.jpg") no-repeat top center;
  background-size: cover;
  background-attachment: fixed;
  filter: blur(5px);
  opacity: 0.8;
  transform: scale(1.1);
}
.bg-image.bg-image-2:before {
  opacity: 0.6;
  background-image: url("https://sarasota-networks.com/content/page_elements/pictures/data-center-shot.jpg");
  background-position: center center;
}

.cat-bg-image {
  background: #007ece;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cat-bg-image:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-attachment: fixed;
  filter: blur(5px);
  opacity: 0.8;
  transform: scale(1.1);
}
.cat-bg-image.cat-bg-image-2:before {
  opacity: 0.6;
  background-position: center center;
}
.cat-bg-image.cat-bg-image-3:before {
  opacity: 0.6;
  background-position: center center;
  background: #1c262b;
}
.cat-bg-image.cat-bg-image-4:before {
  opacity: 0.6;
  background-image: url("https://sarasota-networks.com/content/page_elements/pictures/purple-blue-racks.jpg");
  background-position: center center;
}

/* Define variables */
/* Styles for the gallery container */
.gallery-container {
  margin: 0 auto;
  /* Center the gallery on the page */
  width: 90%;
  /* Set container width */
  overflow: hidden;
  /* Hide content outside the container */
}
.gallery-container .image-gallery {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex-wrap: nowrap;
  justify-content: space-between;
  /* Distribute space between items */
  align-items: center;
  /* Vertically center items */
  padding-bottom: 20px;
}
.gallery-container .image-gallery::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar for supporting browsers */
}
.gallery-container .gallery-item {
  margin-right: 10px;
  /* Optional margin between items */
  width: 250px;
  /* Set a specific width for each item */
  height: 200px;
  /* Set a specific height for each item */
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-container .gallery-item img {
  max-width: 100%;
  max-height: 100%;
  /* Maintain image height */
  -o-object-fit: contain;
     object-fit: contain;
  /* Keep image proportions */
  border-radius: 5px;
  border: 1px solid transparent;
  /* Remove the border or set it to a subtle transparent color */
  box-shadow: 0 0 0px rgba(0, 0, 0, 0.1);
  /* Adjust shadow properties for a subtle effect */
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  text-align: center;
  z-index: 9999;
  max-width: 50%;
  /* Adjust the maximum width as needed */
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9998;
}

.okay-button {
  display: inline-block;
  padding: 10px 20px;
  /* Adjust padding to resize the button */
  background: #007ece;
  /* Set the button color to blue */
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.okay-button:hover {
  background: #005fa7;
  /* Darker blue on hover */
}

/* Customize scrollbar for WebKit (Chrome, Safari, newer versions of Opera) */
::-webkit-scrollbar {
  width: 12px; /* width of the scrollbar */
}

::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* color of the track */
}

::-webkit-scrollbar-thumb {
  background-color: #888; /* color of the scrollbar handle */
  border-radius: 6px; /* roundness of the scrollbar handle */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* color of the scrollbar handle on hover */
}
