/* Color */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
/* Typography
=========================================== */
/* Color */
html {
  font-size: 16px;
}

body {
  background: #fff;
  color: #101010;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 24px;
  font-family: "Open Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: #000000;
  font-family: "Ubuntu", sans-serif;
}

/* Global CSS
=========================================== */
/* Color */
a,
a:active,
a:focus,
a:hover,
a:visited {
  text-decoration: none;
  outline: 0 solid;
}

a:hover {
  color: #000;
}

button:focus,
input:focus,
.form-control:focus,
.btn:focus {
  outline: 0 solid;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* Padding */
.no-padding {
  padding: 0;
}

/* List */
.unstyled {
  list-style: none;
  margin: 0;
  padding: 0;
}

.block-list > li {
  display: block;
}

.inline-list > li {
  display: inline-block;
}

/* Fonts */
.font-ubu {
  font-family: "Ubuntu", sans-serif !important;
}

.font-open {
  font-family: "Open Sans", sans-serif !important;
}

/* Section */
.section,
section {
  padding: 40px 0;
}

/* Section Title */
.section-title {
  margin-bottom: 0;
  text-align: center;
  font-size: 24px;
  text-transform: uppercase;
  line-height: 26px;
  display: inline-block;
  padding: 0 5px;
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.section-title small {
  display: block;
  font-size: 18px;
  font-weight: 300;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.section-title:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#ff0000), to(#3e0202));
  background: -o-linear-gradient(left, #ff0000 0%, #3e0202 100%);
  background: linear-gradient(90deg, #ff0000 0%, #3e0202 100%);
}

/* Overlay */
.black-owverlay {
  position: relative;
  z-index: 1;
}

.black-owverlay:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .7;
  z-index: -1;
}

/* Topbar
=========================================== */
/* Color */
.topbar-deafult {
  background: #080b27;
  padding: 10px 0;
}

.topbar-info li {
  color: #fff;
  font-size: 14px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
}

.topbar-info li:not(:last-child) {
  margin-right: 10px;
}

.topbar-info li i {
  margin-right: 5px;
  color: #FA6742;
}

.topbar-info li span {
  display: inline-block;
  margin-left: 5px;
}

.topbar-social-links ul li:not(:last-child) {
  margin-right: 5px;
}

.topbar-social-links ul li a {
  color: #fff;
  display: block;
  font-size: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 26px;
}

.topbar-social-links ul li a:hover {
  background: #FA6742;
  border-color: #FA6742;
}

/* Navbar
=========================================== */
/* Color */
.nav-deafult {
  border-bottom: 1px solid #eee;
}

.brand-logo img {
  width: 50px;
  height: auto;
  padding: 3px;
}

.akn-nav {
  text-align: right;
}

.akn-nav-items li:not(:last-child) {
  padding: 0 10px;
}

.akn-nav-items li a {
  display: block;
  color: #333;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
}

.akn-nav-items li a:hover {
  color: #FA6742;
}

.akn-nav-items li.active a {
  color: #FA6742;
}

.akn-nav-items li .akn-dropdown-list li {
  padding: 0;
}

.akn-nav-items > li > a {
  padding: 15px 0;
}

.akn-dropdown {
  position: relative;
}

.akn-dropdown:hover .akn-dropdown-list {
  top: 50px;
  opacity: 1;
  visibility: visible;
}

.akn-dropdown-list {
  position: absolute;
  top: 60px;
  left: 10px;
  text-align: left;
  white-space: nowrap;
  background: #fff;
  padding: 10px;
  -webkit-box-shadow: 0 0 2px 0 #ccc;
  box-shadow: 0 0 2px 0 #ccc;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  opacity: 0;
  visibility: hidden;
}

.akn-dropdown-list li a {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  display: block;
}

.akn-dropdown-list li:not(:last-child) {
  margin-bottom: 3px;
}

/* Banner
=========================================== */
/* Color */
.banner-carousel.owl-carousel .owl-nav {
  position: absolute;
  top: calc(50% - 20px);
  left: 0;
  width: 100%;
}

.banner-carousel.owl-carousel .owl-nav button {
  position: absolute;
  top: 0;
  left: 20px;
  width: 40px;
  height: 40px;
  text-align: center;
  background: #fff;
  color: #000;
  border-radius: 50%;
  -webkit-box-shadow: 0px 1px 5px 0 #ccc;
  box-shadow: 0px 1px 5px 0 #ccc;
}

.banner-carousel.owl-carousel .owl-nav button.owl-next {
  left: auto;
  right: 20px;
}

/* About
=========================================== */
/* Color */
.single-about {
  text-align: center;
}

.single-about i {
  font-size: 50px;
}

.about-content {
  margin-top: 15px;
}

.about-content h5 {
  margin-bottom: 15px;
}

.about-content p {
  font-size: 14px;
  color: #777;
  margin-bottom: 0;
}

/* Service
=========================================== */
/* Color */
.service-bg {
  background-image: url(../images/service/bg.jpg);
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
}

.single-service-box {
  border-radius: 3px;
  padding: 30px;
  -webkit-box-shadow: 0 0 5px 0 #eee;
  box-shadow: 0 0 5px 0 #eee;
  background: #fff;
}

.single-service-box img {
  width: 100px;
  display: block;
  margin: 0 auto;
}

.single-service-box h4 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 15px;
  margin-top: 10px;
}

.service-list li {
  line-height: normal;
  font-size: 14px;
  position: relative;
}

.service-list li:not(:last-child) {
  margin-bottom: 10px;
}

.service-list li:before {
  content: "\f058";
  font-family: 'FontAwesome';
  margin-right: 5px;
  color: #3cb0ef;
}

/* Pricing
=========================================== */
/* Color */
.single-price-box {
  -webkit-box-shadow: 0 0 5px 0 #ccc;
  box-shadow: 0 0 5px 0 #ccc;
  border-radius: 5px;
  max-width: 330px;
  margin: 0 auto;
}

.price-head {
  padding: 30px;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#ff0000), to(#3e0202));
  background: -o-linear-gradient(left, #ff0000 0%, #3e0202 100%);
  background: linear-gradient(90deg, #ff0000 0%, #3e0202 100%);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.price-head h3,
.price-head span {
  color: #fff;
}

.price-head h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.price-head span {
  font-size: 20px;
}

.price-head span small {
  font-size: 14px;
}

.price-body {
  padding: 20px 30px;
}

.price-list li {
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}

.price-list li strong {
  margin-left: 5px;
}

.price-list li:not(:last-child) {
  margin-bottom: 8px;
}

.price-list li:before {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  left: 0;
  width: 6px;
  height: 6px;
  background: #42b7e2;
  border-radius: 50%;
}

.pricing-carousel.owl-carousel .owl-stage-outer {
  padding: 0 0 5px 5px;
  margin-right: 5px;
}

.pricing-carousel.owl-carousel .owl-nav {
  position: absolute;
  top: calc(50% - 15px);
  left: 0;
  width: 100%;
}

.pricing-carousel.owl-carousel .owl-nav button {
  position: absolute;
  top: 0;
  left: -35px;
  width: 30px;
  height: 30px;
  background: -webkit-gradient(linear, left top, right top, from(#ff0000), to(#3e0202));
  background: -o-linear-gradient(left, #ff0000 0%, #3e0202 100%);
  background: linear-gradient(90deg, #ff0000 0%, #3e0202 100%);
  color: #fff;
  border-radius: 3px;
}

.pricing-carousel.owl-carousel .owl-nav button.owl-next {
  left: auto;
  right: -44px;
}

/* Coverage
=========================================== */
/* Color */
.coverage-area {
  padding-bottom: 0;
}

/* Subscribe
=========================================== */
/* Color */
.subscribe-area {
  background: #3e0202;
}

.subscribe-title {
  text-align: center;
  margin-bottom: 30px;
}

.subscribe-title h3,
.subscribe-title span {
  color: #fff;
}

.subscribe-title h3 {
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 24px;
}

.subscribe-title span {
  font-size: 15px;
}

.subscribe-form form .form-group {
  position: relative;
}

.subscribe-form form button {
  position: absolute;
  top: -1px;
  right: 0;
  width: 70px;
  height: 43px;
  background: #000;
  text-align: center;
  line-height: 38px;
  border: none;
  color: #fff;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.subscribe-form form input {
  border-radius: 3px;
  height: 40px;
}

.subscribe-form form input::-webkit-input-placeholder {
  color: #777;
  font-size: 14px;
}

.subscribe-form form input::-moz-placeholder {
  color: #777;
  font-size: 14px;
}

.subscribe-form form input:-ms-input-placeholder {
  color: #777;
  font-size: 14px;
}

.subscribe-form form input::-ms-input-placeholder {
  color: #777;
  font-size: 14px;
}

.subscribe-form form input::placeholder {
  color: #777;
  font-size: 14px;
}

/* Server Check
=========================================== */
/* Color */
.check-area .akn-server-list {
  margin-bottom: 30px;
  text-transform: uppercase;
  border-bottom: 2px solid #333;
}

.check-area table.dataTable thead th.dt-server-name, .check-area table.dataTable thead th.dt-server-link, .check-area table.dataTable thead th.dt-server-status {
  padding: 5px 20px;
  font-size: 14px;
  font-weight: 600;
  margin-right: 100px;
  text-transform: uppercase;
  border-color: #eee;
  border-top: 1px solid #eee;
  border-left: 1px solid #eee;
}

.check-area table.dataTable thead th.dt-server-link {
  border-right: 1px solid #eee;
}

.check-area table.dataTable.no-footer {
  border-color: #eee;
}

.check-area table.dataTable tbody td.server-name, .check-area table.dataTable tbody td.server-link, .check-area table.dataTable tbody td.server-status {
  font-size: 15px;
  padding: 5px 20px;
  border-left: 1px solid #eee;
}

.check-area table.dataTable tbody td.server-status {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  border-right: 1px solid #eee;
}

.check-area table.dataTable tbody td.server-status.status-working {
  color: #fff;
  background: green;
}

.check-area table.dataTable tbody td.server-status.status-not-working {
  color: #fff;
  background: red;
}

.check-area table.dataTable tbody td.server-link {
  border-right: 1px solid #eee;
}

.check-area table.dataTable tbody td.server-link a {
  color: #FA6742;
}

.check-area table.dataTable tbody tr.odd td, .check-area table.dataTable tbody tr.even td {
  border-bottom: 1px solid #eee;
}

.check-area table.dataTable tbody tr.odd td.server-status, .check-area table.dataTable tbody tr.even td.server-status {
  border-bottom: none;
}

.check-area .dataTables_wrapper .dataTables_info {
  font-size: 14px;
}

.check-area .dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
  font-size: 14px;
}

.check-area .dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: none;
  border-color: #eee;
  padding: 0;
}

.check-area .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  border-color: #eee;
  background: none;
}

.check-area .dataTables_wrapper label {
  font-size: 14px;
}

.check-area .dataTables_wrapper .dataTables_length select {
  margin: 0 10px;
}

/* Footer
=========================================== */
/* Color */
.footer-area {
  position: relative;
  padding-bottom: 15px;
}

.footer-logo a {
  display: block;
}

.footer-logo a img {
  height: 75px;
  margin-bottom: 15px;
}

.footer-logo p {
  margin-bottom: 15px;
  line-height: 18px;
  font-size: 14px;
}

.footer-social-icon ul li a {
  display: block;
  background: #000;
  width: 35px;
  height: 35px;
  text-align: center;
  color: #fff;
  line-height: 35px;
  border-radius: 50%;
  font-size: 14px;
}

.footer-social-icon ul li:not(:last-child) {
  margin-right: 5px;
}

.footer-social-icon ul li:hover {
  -webkit-animation: pulse .5s linear;
  animation: pulse .5s linear;
}

.links-title {
  font-size: 17px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.useful-link-items li {
  line-height: normal;
}

.useful-link-items li a {
  color: #000;
  font-size: 14px;
  line-height: normal;
}

.useful-link-items li:not(:last-child) {
  margin-bottom: 5px;
}

.office-address li {
  font-size: 14px;
  line-height: normal;
}

.office-address li:not(:last-child) {
  margin-bottom: 5px;
}

.copyright-area {
  margin-bottom: 0;
  text-align: center;
  margin-top: 19px;
  border-top: 1px solid #d7d7d7;
  padding-top: 13px;
  font-size: 14px;
}

.copyright-area i {
  color: #be0000fa;
}

.copyright-area a {
  color: #000;
}

/* Override CSS
=========================================== */
/* Color */
.owl-carousel .owl-item img {
  width: auto;
}
