/*==============================================================
  --font-family: "Poppins", sans-serif;
*/
/*==============================================================*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@1,500&display=swap');
/*==============================================================*/
/*==============================================================*/
:root {
  --header-height: 3.5rem;
  --body-color: hsl(220, 100%, 99%);
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  --font-medium: 500;
  --font-semi-bold: 600;
  --z-tooltip: 10;
  --z-fixed: 100;


  --font-family: 'Exo 2', sans-serif;
  --font-weight: bold;

  --textcolor: #253c6a;
  --textcolor2: #656e81;
  --textcolor3: #eaebef;
  --box-shadow: 0 0 8px 4px hsla(220, 68%, 12%, 0.1);
  --borderradius1: 5px;
  --borderradius2: 2.5px;
}
/*==============================================================*/
/*==============================================================*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}
/*==============================================================*/
/*==============================================================*/
::-webkit-scrollbar-track {background-color: var(--textcolor3);}
::-webkit-scrollbar {width: 7px;background-color: var(--textcolor3);}
::-webkit-scrollbar-thumb {width: 7.5px;background: var(--textcolor); border-radius: var(--borderradius2);box-shadow: var(--box-shadow);}
/*==============================================================*/
/*==============================================================*/
* {box-sizing: border-box;padding: 0;margin: 0;}
/*==============================================================*/
/*==============================================================*/
body {
  font-family: var(--font-family);
  font-weight: var(--font-weight);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--textcolor2);
}
body::before {
  --size: 60px;
  --line: hsl(0 0% 10% / 0.5);
  content: '';
  height: 100vh;
  width: 100vw;
  position: fixed;
  background: linear-gradient(
          90deg,
          var(--line) 1px,
          transparent 1px var(--size)
      )
      50% 50% / var(--size) var(--size),
      linear-gradient(var(--line) 1px, transparent 1px var(--size)) 50% 50% /
          var(--size) var(--size);
  mask: linear-gradient(-15deg, transparent 50%, white);
  top: 0;
  transform-style: flat;
  pointer-events: none;
  z-index: -1;
}
/*==============================================================*/
/*==============================================================*/
ul {list-style: none;}
a {text-decoration: none;}
/*==============================================================*/
/*==============================================================*/
.container {
  max-width: 93%;
  margin: 0 auto; 
  padding: 0 1.5rem; 
}
.header {
  position: fixed;
  top: 15px;
  left: 5%;
  width: 90%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: var(--z-fixed);
  padding: 0 1.5rem; 


  background-color: hsl(220, 100%, 99%);
  color: var(--textcolor);
  box-shadow: var(--box-shadow);
  border-radius: 5px;
}
.nav {height: var(--header-height);}
.nav__data {height: 100%;display: flex;justify-content: space-between;align-items: center;}
.nav__logo {display: inline-flex;align-items: center;column-gap: 0.25rem;color: var(--textcolor);font-weight: var(--font-semi-bold);transition: color 0.3s;}
.nav__logo i {font-size: 1.25rem;}
.nav__logo:hover {color: var(--textcolor);}
.nav__toggle {position: relative;width: 32px;height: 32px;}
.nav__toggle-menu, .nav__toggle-close {font-size: 1.25rem;color: var(--textcolor);position: absolute;display: grid;place-items: center;inset: 0;cursor: pointer;transition: opacity 0.1s, transform 0.4s;}
.nav__toggle-close {opacity: 0;}

@media screen and (max-width: 1118px) {
  .nav__menu {
    background-color: var(--body-color);
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    padding-block: 1.5rem 4rem;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;

      background-color: var(--body-color);
  color: hsl(220, 48%, 28%);  
  box-shadow: var(--box-shadow);
  border-radius: 5px;
  }
  .nav__menu::-webkit-scrollbar {width: 0.5rem;}
  .nav__menu::-webkit-scrollbar-thumb {background-color: hsl(220, 12%, 70%);}
}
.nav__link {
  color: var(--textcolor);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}
.nav__link:hover {
  background-color: var(--textcolor);
}

.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

.show-icon .nav__toggle-menu {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav__toggle-close {
  opacity: 1;
  transform: rotate(90deg);
}

.dropdown__button {
  cursor: pointer;
}
.dropdown__arrow {
  font-size: 1.5rem;
  font-weight: initial;
  transition: transform 0.4s;
}
.dropdown__content, .dropdown__group, .dropdown__list {
  display: grid;
}
.dropdown__container {
  background-color: var(--textcolor);
  height: 0;
  overflow: hidden;
  transition: height 0.4s;
}
.dropdown__content {
  row-gap: 1.75rem;
}
.dropdown__group {
  padding-left: 2.5rem;
  row-gap: 0.5rem;
}
.dropdown__group:first-child {
  margin-top: 1.25rem;
}
.dropdown__group:last-child {
  margin-bottom: 1.25rem;
}
.dropdown__icon i {
  font-size: 1.25rem;
  color: var(--textcolor);
}
.dropdown__title {
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--textcolor);
}
.dropdown__list {
  row-gap: 0.25rem;
}
.dropdown__link {
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  color: var(--textcolor2);
  transition: color 0.3s;
}
.dropdown__link:hover {
  color: var(--textcolor);
}

.show-dropdown .dropdown__arrow {
  transform: rotate(180deg);
}

@media screen and (max-width: 300px) {
  .dropdown__group {
    padding-left: 1.5rem;
  }
}
/* For large devices */
@media screen and (min-width: 1118px) {
  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px; /* Adjust as needed */
    margin: 0 auto;
    padding: 0 1.5rem; /* Add padding to prevent touching screen edges */
}

  .nav__toggle {
    display: none;
  }
  .nav__list {
    display: flex;
    column-gap: 3rem;
    height: 100%;
  }
  .nav li {
    display: flex;
  }
  .nav__link {
    padding: 0;
  }
  .nav__link:hover {
    background-color: initial;
  }
  /* Dropdown */
  .dropdown__button {
    column-gap: 0.25rem;
    pointer-events: none;
  }
  .dropdown__container {
    height: max-content;
    position: absolute;
    left: 0;
    right: 0;
    top: 6.5rem;
    background-color: var(--body-color);
    box-shadow: var(--box-shadow);
    border-radius: 5px;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .dropdown__content {
    grid-template-columns: repeat(4, max-content);
    column-gap: 6rem;
    max-width: 1020px;
    margin-inline: auto;
  }
  .dropdown__group {
    padding: 4rem 0;
    align-content: baseline;
    row-gap: 1.25rem;
  }
  .dropdown__group:first-child, .dropdown__group:last-child {
    margin: 0;
  }
  .dropdown__list {
    row-gap: 0.75rem;
  }
  .dropdown__icon {
    width: 60px;
    height: 60px;
    background-color: hsl(220, 100%, 99%);color: hsl(220, 48%, 28%);  padding: 5px;box-shadow: 0 0 8px 4px hsla(220, 68%, 12%, 0.1);border-radius: 5px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
  }
  .dropdown__icon i {
    font-size: 2rem;
  }
  .dropdown__title {
    font-size: var(--normal-font-size);
  }
  .dropdown__link {
    font-size: var(--small-font-size);
  }
  .dropdown__link:hover {
    color: var(--textcolor);
  }
  .dropdown__item {
    cursor: pointer;
  }
  .dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
  }
  .dropdown__item:hover > .dropdown__container {
    top: 5.5rem;
    opacity: 1;
    pointer-events: initial;
    cursor: initial;
  }
}
@media screen and (min-width: 1152px) {
  .container {
    margin-inline: auto;
  }
}
/*==============================================================*/
/*==============================================================*/
.footer {
  background-color: hsl(220, 100%, 99%);color: hsl(220, 48%, 28%);  padding: 5px;box-shadow: 0 0 8px 4px hsla(220, 68%, 12%, 0.1);border-radius: 5px;}
.footer .footer-row {display: flex;flex-wrap: wrap; justify-content: space-between; gap: 0.5rem;padding: 60px; width: 100%;}
.footer-row .footer-col h4 { color: hsl(220, 48%, 28%);   font-size: 1.2rem;font-weight: 400;}
.footer-col .links {margin-top: 20px;}
.footer-col .links li {list-style: none;margin-bottom: 10px;}
.footer-col .links li a {text-decoration: none;color: hsl(220, 48%, 28%);  }
.footer-col .links li a:hover {color: hsl(220, 48%, 28%);  }
.footer-end {text-align: center;color: hsl(220, 48%, 28%);  }
.footer-col p {margin: 20px 0;color: hsl(220, 48%, 28%);  max-width: 300px;}
.footer-col .icons {display: flex;margin-top: 30px;gap: 30px;cursor: pointer; }
.footer-col .icons a {color: hsl(220, 48%, 28%);  font-size: 20px;}
.footer-col .icons i {color: hsl(220, 48%, 28%);  }
.footer-col .icons i:hover {color: hsl(220, 48%, 28%);  }
@media (max-width: 768px) {
  .footer {position: relative;bottom: 0;left: 0;transform: none;width: 100%; margin-bottom: 5px;}
  .footer .footer-row { padding: 20px;gap: 1rem;}
}
@media (max-width: 449px) {
  footer {
    box-shadow: 0 2px 16px hsla(220, 32%, 8%, .4); 
    position: relative;
    width: 150%;
    margin-left: 0%;
    height: 400px;
    border-radius: 0rem;
    margin-top: 10px;
    padding-top: 10px;
    background-color: #ffffff;
    margin-bottom: 5px;
  }
  
  footer .container {
    width: 125%;
    max-width: 125%;
    margin: 0 auto;
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  footer .container {max-width: 960px;}
  footer .wrapper .footer-widget,footer .wrapper .footer-widget:nth-child(1) {width: calc(50% - 30px);}
}
@media (max-width: 768px) {
  footer .container {max-width: 720px;}
  footer .wrapper .footer-widget,footer .wrapper .footer-widget:nth-child(1) {width: 100%;margin: 0 10px 50px;}
}
/*==============================================================*/
/*==============================================================*/
#whoweare { height: 600px;color: #000; width: 100%; margin-left: 5%;text-align: left;margin-top: 25px;}
#whoweare .left {height: 450px;width: 50%;float: left;padding: 0 20px; display: flex;flex-direction: column; justify-content: center;align-items: flex-start;}
#whoweare .left h1 {font-size: 45px; text-align: left;}
#whoweare .left h2 {padding: 30px 0 10px;font-size: 20px;text-align: left;}
#whoweare .fc {display: flex;align-items: center;flex-wrap: wrap;}
#whoweare .right {height: 450px;width: 50%;float: left;}
#whoweare .right img {width: 100%;height: 400px;display: flex;align-items: center; margin-top: 75px;}
#whoweare_h1 {float: left;margin-right: 10px;}
@media screen and (max-width: 450px) {
  #whoweare.fc {flex-direction: column;text-align: left;}
  #whoweare_h1, #whoweare_h11 {width: 100%;float: none;margin: 0; text-align: left;}
}
@media (max-width: 449px) {
  #whoweare {height: 600px;color: #000;width: 100%;margin-left: 0;}
  #whoweare .left {height: 450px;width: 100%;margin-top: 20px;display: flex;flex-direction: column;justify-content: center;align-items: center;text-align: left;}
  #whoweare .left h1 {font-size: 50px;text-align: center; }
  #whoweare .left h2 {font-size: 18px;text-align: center;}
  #whoweare .left .contact { display: none;}
  #whoweare .right img {height: 450px;width: 100%; margin-top: -50px;display: flex;justify-content: center;align-items: center;text-align: center;}
}
/*==============================================================*/
/*==============================================================*/
.tos_okvir {
  margin-top: 10px;
  margin-bottom: 10px;
  color: hsl(220, 48%, 28%)
  ;padding: 3.5%;
  box-shadow: 0 0 8px 4px hsla(220, 68%, 12%, 0.1); 
  border-radius: 5px;

  background-color: hsl(220, 100%, 99%);
  color: hsl(220, 48%, 28%);  
  box-shadow: 0 0 8px 4px hsla(220, 68%, 12%, 0.1);
  border-radius: 5px

}
.gdrp_okvir {margin-top: 10px;margin-bottom: 10px;background-color: hsl(220, 100%, 99%);color: hsl(220, 48%, 28%);padding: 3.5%;box-shadow: 0 0 8px 4px hsla(220, 68%, 12%, 0.1);border-radius: 5px;}
.pp_okvir {margin-top: 10px; margin-bottom: 10px;background-color: hsl(220, 100%, 99%);color: hsl(220, 48%, 28%);padding: 3.5%;box-shadow: 0 0 8px 4px hsla(220, 68%, 12%, 0.1);border-radius: 5px;}
/*==============================================================*/
/*==============================================================*/
#hosting_solution {max-width: 1200px;margin: auto;padding: 40px 20px;}
#hosting_solution .hosting_solution_tittle {text-align: left;margin-bottom: 20px;}
#hosting_solution .hosting_solution_tittle h1 {font-size: 32px;font-weight: bold;color: var(--textcolor);}
#hosting_solution .hosting_solution_tittle p {font-size: 16px;color: var(--textcolor);}
#hosting_solution .content {display: flex;align-items: center;justify-content: space-between;}
#hosting_solution .image img {width: 350px;height: auto;}
#hosting_solution .categories {display: grid;grid-template-columns: repeat(3, 1fr);gap: 15px;}
#hosting_solution .category {background: white;padding: 15px;text-align: center;border-radius: 5px;box-shadow: 0 4px 8px rgba(0,0,0,0.1);transition: transform 0.2s;}
#hosting_solution .category:hover {transform: translateY(-5px);}
#hosting_solution .category img {width: 80px;height: auto;margin-bottom: 10px;}
#hosting_solution .category span {display: block;font-weight: bold;}
@media (max-width: 768px) {
  #hosting_solution .content {flex-direction: column;align-items: center;text-align: center;}
  #hosting_solution .categories {grid-template-columns: repeat(2, 1fr);}
  #hosting_solution .image img {width: 250px;}
}
/*==============================================================*/
/*==============================================================*/
#statuspage .container {width: 90%;margin-top: 100px;margin-left: 5%;margin-right: 5%;margin-top: -650px; color: #fff;}
#statuspage .overall-status {display: flex;align-items: center;box-shadow: 0 2px 16px hsla(220, 32%, 8%, .6);padding: 10px;background:  linear-gradient(to right, #00d4ffe6, #090979b3);border-radius: 5px;margin-bottom: 20px;}
#statuspage .status-icon {width: 20px;height: 20px;border-radius: 50%;margin-right: 10px;}
#statuspage .online {background-color: #4CAF50;}
#statuspage .offline {background-color: #F44336;}
#statuspage .loading {border: 2px solid #f3f3f3;border-radius: 50%;border-top: 2px solid #090979b3;width: 20px;height: 20px;-webkit-animation: spin 2s linear infinite;animation: spin 2s linear infinite;}
@-webkit-keyframes spin {0% { -webkit-transform: rotate(0deg); }100% { -webkit-transform: rotate(360deg); }}
@keyframes spin {0% { transform: rotate(0deg); }100% { transform: rotate(360deg); }}
#statuspage .status-text {display: flex;flex-direction: column;}
#statuspage .services {display: grid;grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));gap: 20px;color: #000;}
#statuspage .service {background-color: #ffffffb3;padding: 15px;box-shadow: 0 2px 16px hsla(220, 32%, 8%, .6);border-radius: 5px;display: flex;flex-direction: column;align-items: flex-start;position: relative;}
#statuspage .service p {margin: 0;margin-bottom: 10px;}
#statuspage .loader {border: 2px solid #f3f3f3;border-radius: 50%;border-top: 2px solid #090979b3;width: 20px;height: 20px;-webkit-animation: spin 2s linear infinite;animation: spin 2s linear infinite;}
/* ############################################################################################################ */
/* ############################################################################################################ */
/* ############################################################################################################ */









.feature-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  flex-wrap: wrap;
}

.feature-section.reverse {
  flex-direction: row-reverse;
}
.feature-section h2 {
  color: var(--textcolor);
  font-weight: bold;
  }
.feature-text {
  flex: 1;
  min-width: 280px;
  padding: 1rem;
}

.feature-text ul {
  padding-left: 1.2rem;
}

.feature-text li {
  margin-bottom: 0.5rem;
}

.feature-text i {
  color: var(--textcolor);
}

.cta-link {
  background: var(--body-color);
  padding: 10px;
  border-radius: var(--borderradius2);
  box-shadow: var(--box-shadow);
  display: inline-block;
  margin-top: 1rem;
  color: var(--textcolor);
  text-decoration: none;
  font-weight: bold;
}

.cta-link:hover {
  text-decoration: underline;
}
.note {
  font-size: 0.85rem;
  color: var(--textcolor);
  margin-top: 0.5rem;
}

.feature-image {
  flex: 1;
  min-width: 280px;
  padding: 1rem;
  text-align: center;
}

.feature-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.feature-section span {
  color: var(--textcolor);
  font-weight: bold;
}

@media screen and (max-width: 932px) {
  .feature-section,
  .feature-section.reverse {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-left: 0; /* Avoid negative margins on small screens */
    padding: 1rem 0;
  }

  .feature-text,
  .feature-image {
    padding: 1rem;
    width: 100%; /* Ensure full width stacking */
    box-sizing: border-box;
  }

  img {
    max-width: 100%;
    height: auto;
  }
}
/*#######################################################################################*/
/*#######################################################################################*/
/*#######################################################################################*/
/*#######################################################################################*/
/*#######################################################################################*/
#StatusPage .topbar { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; position: sticky; top: 20px; z-index: 10; color: hsl(220, 48%, 28%); }
#StatusPage .brand { font-weight: 700; letter-spacing: .3px; }
#StatusPage .meta { display: flex; gap: 14px; color: hsl(220, 48%, 28%); font-size: .95rem; }
#StatusPage .wrapper { margin: 10px auto; padding: 0 10px; }
#StatusPage .legend { display: flex; gap: 16px; align-items: center; margin: 10px 0 18px 2px; color: hsl(220, 48%, 28%); }
#StatusPage .legend-item { display: flex; gap: 8px; align-items: center; }
#StatusPage .dot { width: 12px; height: 12px; border-radius: 50%; }
#StatusPage .dot.up { background: #19c37d; }
#StatusPage .dot.down { background: #ff5c5c; }
#StatusPage .dot.unknown { background: #8a8fa3; }
#StatusPage .dot.warn { background: #ffb020; }
#StatusPage .rack-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 10px; }
#StatusPage .rack { background-color: #161b2e; color: hsl(220, 48%, 28%); box-shadow: 0 0 8px 4px hsla(220, 68%, 12%, 0.1); border-radius: 5px; padding: 12px; }
#StatusPage .rack-title { display: flex; justify-content: space-between; align-items: center; color: hsl(220, 48%, 28%); font-weight: 600; margin-bottom: 10px; font-size: .95rem; }
#StatusPage .tile-grid { display: grid; grid-template-columns: repeat(2, 70px); grid-auto-rows: 70px; gap: 8px; justify-content: center; }
#StatusPage .tile { border-radius: 5px; position: relative; cursor: default; transition: transform .08s ease; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9rem; color: #fff; }
#StatusPage .tile.up { background: #19c37d; }
#StatusPage .tile.down { background: #ff5c5c; }
#StatusPage .tile.unknown { background: #8a8fa3; }
#StatusPage .tile.warn { background: #ffb020; }
#StatusPage .tile:hover { transform: translateY(-2px); }
#StatusPage .tile .host, .tile .meta { display: none; }
#StatusPage .footttt { max-width: 1200px; margin: 18px auto 40px; padding: 0 16px; color: hsl(220, 48%, 28%); font-size: .9rem; }
@media (max-width: 540px) {#StatusPage .tile-grid { grid-template-columns: repeat(2, 74px); } }
/*#######################################################################################*/
/*#######################################################################################*/
/*#######################################################################################*/
/*#######################################################################################*/
/*#######################################################################################*/

