@charset "utf-8";

/*!
 *  Kahtech networking solutions
 *  Author: Herbert N.
 *  Author url: https://kahtechnetworking.com/profile
 *  Copyright © 2020 Kahtech networking solutions
 *  Website : https://kahtechnetworking.com/
 */
/*- ========================================
              Fonts
=======================================

@import url('https://fonts.googleapis.com/css?family=Work+Sans:100,200,300,400,500,600,700,800,900');
 @import url('https://fonts.googleapis.com/css?family=Montserrat:100,300,400,500,600,700,800,900');
 @import url('https://fonts.googleapis.com/css?family=Audiowide');
 @import url('https://fonts.googleapis.com/css?family=Lato&display=swap'); --*/
 
 /*- ========================================
              HTML General Resets
======================================= --*/
* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  box-sizing: border-box;
}
a, a:hover, a:visited, a:active, a:link{
  text-decoration: none!important;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-font-smoothing: antialiased;
  -webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
  text-shadow: rgba(0,0,0,.01) 0 0 1px;

}
body {
  font-family: "Open Sans", sans-serif;
  color: #;
  padding: 0px;
  font-size: 14px;
  /*font-family: 'Work Sans', sans-serif;
  color: #323232;*/
  -webkit-font-smoothing: antialiased;
}
p{
  line-height: 26px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}
html{
  scroll-behavior: smooth;
}


 /*- ========================================
              Nav
======================================= --*/
/*-- ======= Header ======= --*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 29px 0;
  top: 0px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header.header-scrolled {
  top: 0;
  padding: 20px;
}
/*-- ======= Logo ======= --*/
#header .logo_container{
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  -ms-transform: translateY(8px);
  -o-transform: translateY(8px);
  transform: translateY(8px);
}
#header .logo_container .logo{
  height: 100%;
  padding-left: 0px;
  font-family: "audiowide";
}

/*-- Logo adjustment --*/
#header .logo_image{
  position: absolute;
  top: -30px;
  left: 0px;
  width: 90px;
  height: 50px;
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}
/*-- End Logo adjustment --*/

#header .header.scrolled .logo_image{
  width: 50px;
  top: 0px;
  left: 30px;
}
#header .logo_image img{
  max-width: 100%;
}


/*-- Mobile nav adjustment --*/
@media (max-width: 992px) {
  #header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 30px 0;
  top: 0px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header.header-scrolled {
  top: 0;
  padding: 25px;
}
}
/*-- End Mobile nav adjustment --*/



/*-- ======= Navigation Menu ======= --*/
/*-- ======= Desktop nav ======= --*/
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-menu > ul {
  display: flex;
}
.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 0px 0px 0px 28px;
}
.nav-menu a {
  display: block;
  position: relative;
  color: #222222;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 600;
  padding: 0 3px;
  font-family: "Open Sans", sans-serif;
}
.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #106eea;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  width: 100%;
}
.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #106eea;
}
.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 26px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}
.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #062b5b;
}
.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #106eea;
}
.nav-menu .drop-down > a:after {
  content: "\f107";
  font-family: "font awesome 5 free";
  padding-left: 5px;
  font-weight: 900;
}
.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}
.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}
.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}
.nav-menu .drop-down .drop-down > a:after {
  content: "\f104";
  font-family: "font awesome free";
  position: absolute;
  right: 15px;
  font-weight: 900;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\f104";
    font-family: "font awesome 5 free";
    font-weight: 900;
  }
}
/*-- ======= Mobile Navigation ======= --*/
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}
.mobile-nav-toggle i {
  color: #222222;
}
.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}
.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-nav a {
  display: block;
  position: relative;
  color: #222222;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #106eea;
  text-decoration: none;
}
.mobile-nav .drop-down > a:after {
  content: "\f107";
  font-family: "font awesome 5 free";
  padding-left: 10px;
  position: absolute;
  right: 15px;
  font-weight: 900;
}
.mobile-nav .active.drop-down > a:after {
  content: "\f106";
  font-family: "font awesome 5 free";
  font-weight: 900;
}
.mobile-nav .drop-down > a {
  padding-right: 35px;
}
.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}
.mobile-nav .drop-down li {
  padding-left: 20px;
}
.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(9, 9, 9, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}
.mobile-nav-active {
  overflow: hidden;
}
.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*-- ======= Banner =====
#banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: rgba(63, 73, 83, 0.8);
 
}
#banner .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#banner p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}
#banner .carousel-item::before {
  content: '';
  background-color: rgba(30, 35, 40, 0.6);
  position: absolute;
  height: 80vh;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#banner .carousel-background img {
  min-width: 100%;
  height: 80vh;
  font-weight: 500;
  background-attachment: fixed;
  background-color: #645862;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#banner .carousel-item .carousel-background .first-slide{
  background-image: url("../images/1.jpg");
}
#banner .carousel-item .carousel-background .second-slide{
  background-image: url("../images/4.jpg");
}
#banner .carousel-item .carousel-background .third-slide{
  background-image: url("../images/11.jpg");
}
#banner .carousel-inner .carousel-content{
  position: absolute;
  right: 0;
  bottom:60px;
  left: 0;
  z-index:10;
  padding-bottom:0px;
  color:#fff;
  text-align: ;
  text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
                 0px 8px 13px rgba(0,0,0,0.1),
                 0px 18px 23px rgba(0,0,0,0.1);
}
#banner .home .header-content {
  padding-top: 0px;
  text-align: ;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#banner .home .header-content .heading{
  font-size: 30px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: ;
}
#banner .header-content h1 {
  font-size: 14px;
  font-weight: 700;
  margin: 20px 0px 30px 0px;
  text-transform: uppercase;
  color: #;
}
#banner .header-content h2 {
  text-transform: ;
  color: #;
}
#banner .header-content h2 span{
  color: #106eea;
}
#banner .header-content p {
  color: #f7f7f7;
  margin: 20px 0px 20px 0px;
  letter-spacing: 1px;
}
#banner .btn i{
  background-color: ;
  padding-right: 5px;
}
#banner .btn {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  margin-bottom: 10px;
}
#banner .globe{
  font-size: 20px;
  color: #106eea;
}
#banner .header-content .globe em{
  font-size: 20px;
  color: #fff;
  text-transform: lowercase;
}== --*/

/*- === @media screen and (max-width: 767.98) ===
@media (max-width: 768px) {
  #banner .home .header-content .heading{
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
  }
  #banner .header-content h1 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #;
  }
  #banner .home .header-content h2{
    font-size: 12px;
  }
  #banner .home .header-content p{
    font-size: 12px;
  }
  #banner .btn {
    font-size: 11px;
  }
}===== --*/

/* ================================
      FOOTER
========================
#footer {
  background: #fff;
  padding: 0 0 30px 0;
  color: #444444;
  font-size: 14px;
  background: #f1f6fe;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}
#footer .footer-newsletter {
  padding: 50px 0;
  background: #f8f9fa;
  text-align: center;
  font-size: 14px;
}
#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}
#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}
#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #106eea;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type="submit"]:hover {
  background: #0d58ba;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-contact h3 span {
  color: #106eea;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #777777;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 5px;
  color: #106eea;
  font-size: 12px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #106eea;
}
#footer .footer-top .social-links a {
  font-size: 16px;
  display: inline-block;
  background: #106eea;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 34px;
  height: 34px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #3b8af2;
  color: #fff;
  text-decoration: none;
}
#footer .copyright {
  text-align: center;
  float: left;
}
#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #444444;
}
@media (max-width: 768px) {
  #footer .copyright, #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}

========= */













body {
      background-color: #06305F;
      color: #fff;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Segoe UI", Arial, sans-serif;
    }
    .error-container {
      display: flex;
      align-items: center;
      border-left: 1px solid #333;
      padding-left: 20px;
    }
    .error-code {
      font-size: 2rem;
      font-weight: 600;
      color: #fff;
      margin-right: 15px;
    }
    .error-text {
      color: #ccc;
      font-size: 0.9rem;
    }