/* standard settings */

@font-face {
  font-family: "Eina Regular";
  font-display: swap;
  src: url(../fonts/Eina01-Regular.woff2) format("woff2");
}

@font-face {
  font-family: "Eina Bold";
  font-display: swap;
  src: url(../fonts/Eina01-Bold.woff2) format("woff2");
}

@font-face {
  font-family: "Eina Light";
  font-display: swap;
  src: url(../fonts/Eina01-Light.woff2) format("woff2");
}

@font-face {
  font-family: "Eina SemiBold";
  font-display: swap;
  src: url(../fonts/Eina01-SemiBold.woff2) format("woff2");
}

html{
  font-family: 'Eina Regular', sans-serif;
  width: 100%;
  height: 100%;
}

body{
  margin: 0;
  padding: 0;
  width: 100%;
}

h1,h2,h3,h4,h5,a,p,label{
  margin: 0;
  padding: 0;
  color: rgba(0,0,0,0.8);
  text-decoration: none;
  font-family: 'Eina Regular', sans-serif;
}

table{
  width: 100%;
  border: 1px solid #e6e3e9;
  background-color: #fdfcfd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(230,227,233,0.33);
  padding: 16px;
}

table th{
  text-align: left;
}

table td{
  padding: 16px 0;
}

.primaryBtn{
  background: #7F00FF;  /* fallback for old browsers */
  color: white !important;
  padding: 12px;
  border-radius: 10px;
  transition: 0.25s;
  background: linear-gradient(90deg, var(--c1, #E100FF), var(--c2, #7F00FF) 51%, var(--c1, #E100FF)) var(--x, 0)/ 200% !important;
}

.primaryBtn:hover{
  --x: 100% !important;
  color: white !important;
}

.primaryBtn i{
  margin-right: 6px;
}

.btn{
  background-color: rgb(127 0 255 / 5%) !important;
  border: 1px solid rgb(127 0 255 / 20%) !important;
  color: #7f00ff !important;
  border-radius: 10px !important;
  padding: 12px;
  font-size: 16px;
  font-family: 'Eina Regular', sans-serif;
  transition: 0.25s;
  box-shadow: 0 4px 8px rgba(230,227,233,0.33);
}

a.btn{
  height: 48px;
}

.btn:hover{
  background-color: rgb(127 0 255 / 10%) !important;
}

.btn i{
  width: 20px;
}

.btn.white{
  background-color: white !important;
  color: rgba(0,0,0,0.8) !important;
  border-color: #e6e3e9 !important;
}

.btn.white:hover{
  border-color: rgb(127 0 255 / 15%) !important;
  background-color: rgb(127 0 255 / 2.5%) !important;
}

.btn.red{
  background-color: white !important;
  color: #c31432 !important;
  border-color: #e6e3e9 !important;
}

.btn.red:hover{
  border-color: rgb(195 20 50 / 15%) !important;
  background-color: rgb(195 20 50 / 2.5%) !important;
}

badge{
  border-radius: 10px;
  padding: 4px 8px;
  font-family: 'Eina Regular', sans-serif;
  font-weight: bolder;
  font-size: 14px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

badge i{
  margin-right: 6px !important;
}

badge.green{
  background-color: rgba(24, 121, 78,0.1);
  color: #18794e !important;
}

badge.orange{
  background-color: rgba(243, 115, 53, 0.1);
  color: rgba(243, 115, 53);
}

badge.red{
  background-color: rgba(195, 20, 50,0.1);
  color: #c31432 !important;
}

badge.violet{
  background-color: rgba(127, 0, 255,0.1);
  color: #7f00ff !important;
}

error{
  border-radius: 10px;
  padding: 16px;
  font-family: 'Eina Regular', sans-serif;
  display: block;
  background-color: rgba(195, 20, 50,0.1);
  color: #c31432 !important;
}

error i{
  margin-right: 6px;
}

success{
  border-radius: 10px;
  padding: 16px;
  font-family: 'Eina Regular', sans-serif;
  display: block;
  background-color: rgba(24, 121, 78,0.1);
  color: #18794e !important;
}

success i{
  margin-right: 6px;
}


.ml-8{
  margin-left: 8px;
}

.mr-8{
  margin-right: 8px;
}

.mb-4{
  margin-bottom: 4px;
}

.mb-8{
  margin-bottom: 8px;
}

.mb-16{
  margin-bottom: 16px;
}

.mb-32{
  margin-bottom: 32px;
}

.mt-16{
  margin-top: 16px;
}

.mt-32{
  margin-top: 32px;
}

.mt-64{
  margin-top: 64px;
}

.modalBg{
  background-color: rgb(35 0 39 / 20%);
  margin-top: -96px;
  margin-left: -368px;
  min-width: 100%;
  height: 100%;
  z-index: 1001;
  display: flex;
  position: fixed;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  padding: 32px;
  box-sizing: border-box;
  animation: fadeIn 0.15s ease-in-out;
}

.modal{
  background-color: white;
  border-radius: 10px;
  padding: 64px;
  border: 1px solid #e6e3e9;
  background-color: #fdfcfd;
  box-shadow: 0 4px 8px rgba(230,227,233,0.33);
  z-index: 1002;
  padding: 32px;
  margin: auto;
  animation: popUp 0.15s ease-in-out;
}

.modal .close{
  float: right;
  font-size: 24px;
  color: #e6e3e9;
  margin: -16px;
  border-radius: 100px;
  transition: 0.25s;
}

.modal .close:hover{
  color: rgb(127 0 255 / 33%);
  background-color: rgb(127 0 255 / 2.5%);
  cursor: pointer;
}

.modal h2 i{
  margin-right: 6px;
}

.modal h2{
  width: 100%;
  text-align: center;
}

.modal form{
  width: 512px;
}

.modal form div.menu nav{
  width: 100%;
}

.modal form div.menu nav ul li{
  width: 50%;
}

.modal form div.menu nav ul li button{
  width: 100%;
}

.modal form label{
  display: block;
}

.modal form input, .modal form select{
  width: 100%;
  box-sizing: border-box;
}

.firewall .rule {
  display: flex;
  box-shadow: 0 4px 8px rgba(230, 227, 233, 0.33);
  border: 1px solid #e6e3e9;
  border-radius: 10px;
  background-color: #fdfcfd;
  padding: 16px;
  justify-content: space-between;
}

.user{
  display: flex;
  box-shadow: 0 4px 8px rgba(230,227,233,0.33);
  border: 1px solid #e6e3e9;
  border-radius: 10px;
  background-color: #fdfcfd;
  padding: 16px;
  justify-content: space-between;
}

.user .content{
  display: flex;
}

.user .avatar{
  border: 1px solid rgb(127 0 255 / 15%);
  background-color: rgb(127 0 255 / 2.5%);
  box-shadow: 0 4px 8px rgba(230,227,233,0.33);
  padding: 12px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
  width: 24px;
  height: 24px;
}

.feedback input, .feedback label, .feedback textarea, .feedback select{
  width: 100%;
  display: inline-block;
}

.changelog{
  display: flex;
}

.changelog .info{
  margin-right: 32px;
  text-align: right;
  margin-top: 16px;
}

.changelog .text{
  border: 1px solid #e6e3e9;
  background-color: #fdfcfd;
  box-shadow: 0 4px 8px rgba(230,227,233,0.33);
  border-radius: 10px;
  padding: 16px;
}

.message{
  border: 1px solid #e6e3e9;
  background-color: #fdfcfd;
  box-shadow: 0 4px 8px rgba(230,227,233,0.33);
  border-radius: 10px;
  padding: 16px;
}

.message .messageDetails .author{
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.message .messageDetails .author .avatar{
  border: 1px solid rgb(127 0 255 / 15%);
  background-color: rgb(127 0 255 / 2.5%);
  box-shadow: 0 4px 8px rgba(230,227,233,0.33);
  padding: 12px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
}

.login{
  margin: auto;
  padding: 128px 0;
  max-width: 75%;
  display: flex;
  align-items: flex-start;
  height: 100%;
  justify-content: space-between;
}

.login .content{
  width: 49%;
}

.login .content .brand{
  display: flex;
  align-items: center;
}

.login .content form{
  max-width: 75%;
}

.login .content form label{
  width: 100% !important;
  display: block;
}

.login .content form input{
  width: 100% !important;
}

.login .content form button{
  width: 100% !important;
}

.login .content .brand img{
  height: 48px;
  margin-right: 8px;
}

.login .picture{
  background-image: url("https://images.unsplash.com/photo-1633810270953-c7818eec9d28?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
  width: 49%;
  border-radius: 12px;
  position: relative;
  padding-top: 49%;
  background-repeat: no-repeat;
  background-size: cover;
}

/* end of standard settings */

/* sidebar menu */

#menu{
  float: left;
  position: fixed;
  width: 272px;
  padding: 16px;
  height: 100%;
}

#menu div.bg::-webkit-scrollbar {
  display: none;
}

#menu div.bg{
  -ms-overflow-style: none;
  scrollbar-width: none;
}

#menu .bg{
  padding: 24px;
  background: -webkit-linear-gradient(45deg, rgba(225, 0, 255,0.1), rgba(127, 0, 255,0.15));
  border-radius: 10px;
  height: calc(100% - 32px);
  overflow-y: scroll;
  box-sizing: border-box;
}

#menu div.brand h1{
  margin-bottom: 32px;
  display: flex;
  align-items: center;
}

#menu div.brand h1 img{
  height: 32px;
  margin-right: 8px;
}

#menu nav h4{
  color: #5900b3;
  text-transform: uppercase;
  font-size: 12px;
}

#menu nav ul{
  margin: 0;
  padding: 0;
  width: 100%;
}

#menu nav ul li{
  list-style: none;
  width: 100%;
}

#menu nav ul li a i{
  margin-right: 6px;
  width: 24px;
}

#menu nav ul li a{
  padding: 12px;
  transition: 0.25s;
  border-radius: 10px;
  width: 100%;
  display: block;
  box-sizing: border-box;
  margin-bottom: 4px;
}

#menu nav ul li a:hover{
  background-color: rgba(255,255,255,0.5);
}

#menu nav ul li a.active{
  background-color: rgba(255,255,255,0.8);
}

/* end of sidebar menu */

/* content */

#content{
  margin-left: 304px;
  padding: 96px 64px 64px 64px;
}

#content h1{
  margin-bottom: 64px;
}

#content h1 i{
  margin-right: 12px;
}

#content .infoBox{
  flex: 1 1 0;
  border: 1px solid rgb(127 0 255 / 15%);
  background-color: rgb(127 0 255 / 2.5%);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  transition: 0.25s;
  box-shadow: 0 4px 8px rgba(230,227,233,0.33);
}

#content .infoBox i{
  margin: 0 16px 0 0;
  font-size: 24px;
  background: -webkit-linear-gradient(45deg, #E100FF, #7F00FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#content .boxes{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: -8px;
}

#content .boxes .item i{
  width: 48px;
  font-size: 32px;
  margin-right: 16px;
  background: -webkit-linear-gradient(45deg, #E100FF, #7F00FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#content .boxes .item{
  min-width: 352px;
  margin: 8px;
  flex: 1 1 0;
  border: 1px solid #e6e3e9;
  background-color: #fdfcfd;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  transition: 0.25s;
  box-shadow: 0 4px 8px rgba(230,227,233,0.33);
}

#content .boxes .item h3{
  margin-bottom: 8px;
}

#content .boxes .item:hover{
  border-color: rgb(127 0 255 / 15%);
  background-color: rgb(127 0 255 / 2.5%);
  cursor: pointer;
}

#content .menu{
  display: flex;
  justify-content: space-between;
}

#content .menu h1{
  display: flex;
  align-items: center;
}

#content .menu badge{
  margin-left: 16px;
}

#content .menu badge i{
  margin-right: 6px;
}

#content .menu .pyrusPowered i{
  margin-right: 4px;
}

#content .menu .pyrusPowered{
  padding: 8px;
  border-radius: 10px;
  margin-top: -40px;
  margin-bottom: 64px;
  font-size: 14px;
  border: 1px solid rgb(127 0 255 / 15%);
  box-shadow: 0 4px 8px rgba(230,227,233,0.33);
  background-color: rgb(127 0 255 / 2.5%);
  color: rgb(127 0 255 / 60%);
  width: 221px;
}

#content .menu nav ul{
  margin: 0;
  padding: 0;
  display: flex;
  box-shadow: 0 4px 8px rgba(230,227,233,0.33);
}

#content .menu nav ul li{
  list-style: none;
}

#content .menu nav ul li button{
  font-size: 16px;
  border-top: 1px solid #e6e3e9;
  border-bottom: 1px solid #e6e3e9;
  border-left: 0.5px solid #e6e3e9;
  border-right: 0.5px solid #e6e3e9;
  background-color: white;
  font-family: 'Eina Regular', sans-serif;
  padding: 12px;
  transition: 0.25s;
}

#content .menu nav ul li button:hover{
  border-color: rgb(127 0 255 / 15%);
  background-color: rgb(127 0 255 / 2.5%);
  cursor: pointer;
}

#content .menu nav ul li button.active{
  border-color: rgb(127 0 255 / 30%);
  background-color: rgb(127 0 255 / 5%);
}

#content .menu nav ul li button.active:hover{
  background-color: rgb(127 0 255 / 10%);
}

#content .menu nav ul li button.activeGreen{
  color: #18794e !important;
  border-color: rgba(24, 121, 78,0.3);
  background-color: rgba(24, 121, 78,0.05);
}

#content .menu nav ul li button.activeGreen:hover{
  background-color: rgba(24, 121, 78,0.1);
}

#content .menu nav ul li button.activeRed{
  color: #c31432 !important;
  border-color: rgba(195, 20, 50,0.3);
  background-color: rgba(195, 20, 50,0.05);
}

#content .menu nav ul li button.activeRed:hover{
  background-color: rgba(195, 20, 50,0.1);
}

#content .menu nav ul li button.first{
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-left-width: 1px;
}


#content .menu nav ul li button.last{
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-right-width: 1px;
}



 input,
  select,
   textarea{
  padding: 12px;
  border: 10px;
  border: 1px solid #e6e3e9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(230,227,233,0.33);
  outline: none;
  font-size: 16px;
  font-family: 'Eina Regular', sans-serif;
  transition: 0.25s;
  resize: vertical;
  box-sizing: border-box !important;
  max-width: 100%;
}

select{
  padding: 14px;
}

 input:hover, select:hover, textarea:hover{
  border-color: rgb(127 0 255 / 33%);
}
 input:focus, select:focus, textarea:focus{
  border-color: rgb(127 0 255 / 33%);
}

/* end of content */

/* header settings */

header{
  height: 80px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  position: fixed;
  width: 100%;
}

header div.brand{
  display: flex;
  align-items: baseline;
  margin-left: 64px;
}

header div.brand h1{
  margin-right: 12px;
}

header div.brand h3{
  background: -webkit-linear-gradient(45deg, #E100FF, #7F00FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

header nav{
  margin-right: 64px;
}

header nav ul{
  margin: 0;
  padding: 0;
  display: flex;
}

header nav ul li{
  list-style: none;
  padding: 0 12px;
}

header nav ul li a{
  font-weight: bolder;
  transition: 0.25s;
}

header nav ul li a.nvBtn{
  display: flex;
  align-items: center;
}

header nav ul li a.nvBtn i{
  margin-left: 8px;
  display: flex;
  justify-content: center;
  align-items: end;
  height: 20px;
  width: 20px;
}

header nav ul li a.nvBtn:hover{
  background: -webkit-linear-gradient(45deg, #E100FF, #7F00FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

div.subMenu{
  background-color: #f0f0f0;
  padding: 144px 64px 64px 64px;
  position: fixed;
  z-index: 900;
  width: 100%;
}

div.subMenu ul{
  margin: 0;
  padding: 0;
  margin-top: 32px;
}

div.subMenu ul li{
  list-style: none;
}

div.subMenu ul li a{
  display: inline-flex;
  align-items: center;
  font-family: "Eina Regular";
  padding: 16px;
  transition: 0.25s;
  font-size: 18px;
}

div.subMenu ul li a:hover{
  background-color: rgba(225, 0, 255,0.1);
  border-radius: 10px;
}

div.subMenu ul li i{
  margin-right: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: -webkit-linear-gradient(45deg, #E100FF, #7F00FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* end of header settings */

/* start section */

#start{
  background-image: url("https://images.unsplash.com/photo-1633810270953-c7818eec9d28?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 256px;
  padding: 208px 0 128px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#start div.text h1{
  width: 100%;
  font-size: 48px;
  text-align: center;
  background: -webkit-linear-gradient(45deg, white, rgba(255,255,255,0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#start div.text h2{
  text-align: center;
  background: -webkit-linear-gradient(45deg, white, rgba(255,255,255,0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* end of start section */

/* values section */

#values{
  background-color: white;
  padding: 64px;
}

#values div.title h1{
  font-size: 32px;
  background: -webkit-linear-gradient(45deg, #E100FF, #7F00FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

#values div.title h3{
  text-align: center;
}

#values div.items{
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#values div.items div.item{
  width: 320px;
  display: flex;
  flex-wrap: wrap;
  background-color: #f7f7f7;
  padding: 16px;
  border-radius: 10px;
  margin: 16px;
}

#values div.items div.item div.title{
  width: 100%;
  margin-bottom: 16px;
}

#values div.items div.item div.title i{
  font-size: 48px;
  background: -webkit-linear-gradient(45deg, #E100FF, #7F00FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  width: 100%;
  margin-bottom: 16px;
}

#values div.subTitle{
  margin-top: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#values div.subTitle a{
  margin-left: 16px;
  font-weight: bolder;
}

/* end of values section */

/* prodcuts section */

#products{
  background-color: #f7f7f7;
  padding: 64px;
}

#products div.title h1{
  font-size: 32px;
  background: -webkit-linear-gradient(45deg, #E100FF, #7F00FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

#products div.title h3{
  text-align: center;
}

#products div.items{
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#products div.items div.item{
  width: 320px;
  display: flex;
  flex-wrap: wrap;
  background: -webkit-linear-gradient(45deg, rgba(225, 0, 255,0.1), rgba(127, 0, 255,0.15));
  padding: 16px;
  border-radius: 10px;
  margin: 16px;
}

#products div.items div.item div.title{
  width: 100%;
  margin-bottom: 16px;
}

#products div.items div.item div.title i{
  font-size: 64px;
  background: -webkit-linear-gradient(45deg, #E100FF, #7F00FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;  text-align: center;
  width: 100%;
  margin-bottom: 32px;
}

#products div.items div.item div.content p{
  height: 96px;
}

#products div.items div.item div.content a{
  display: block;
  text-align: center;
  margin-top: 16px;
  background-color: rgba(255,255,255,0.5);
  border-radius: 10px;
  padding: 12px;
  transition: 0.25s;
}

#products div.items div.item div.content a:hover{
  background-color: white;
}

/* end of prodcuts section */

/* partners section */

#partners{
  background-color: white;
  padding: 64px;
}

#partners div.title h1{
  font-size: 32px;
  background: -webkit-linear-gradient(45deg, #E100FF, #7F00FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

#partners div.title h3{
  text-align: center;
}

#partners div.items{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
  align-items: center;
}

#partners div.items div.item{
  margin: 32px;
}

#partners div.items div.item img{
  filter: grayscale(1);
  transition: 0.25s;
}

#partners div.items div.item img:hover{
  filter: grayscale(0);
}

/* end of partners section */

/* Add new keyframe animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes popUp {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes popDown {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}