/*
 Theme Name:   custom-chield
 Template:     kastell
*/

@import url("../kastell/style.css"); /* Import parent theme styles */




/* Navigation Variables */
/*:root {
    --content-width: 1000px;
    --breakpoint: 799px;
    --nav-height: 70px;
    --nav-background: #262626;
    --nav-font-color: #ffffff;
    --link-hover-color: #2581DC;
  }*/
  
  /* Outer navigation wrapper */
  .navigation {
    /* height: var(--nav-height); */
    padding: 5px;
    height: 100px;
    /* background: var(--nav-background); */
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  }

 /* body {
    padding: 0 !important;
    margin: 0;
    font-family: var(--ambed-font, "Rubik", sans-serif);
    color: var(--ambed-gray, #8b827d);
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
  }*/
  
  /* Logo and branding */
  .brand {
    position: absolute;
    padding-left: 20px;
    float: left;
    line-height: var(--nav-height);
    text-transform: uppercase;
    font-size: 1.4em;
  }
  .logo{
    height:80px !important;
  }
  .whats-img{
    margin-top: 9px;
    width:50px;

  }
  .whats-img:hover{
    background-color: #fff;
  }
  
  .brand a,
  .brand a:visited {
    color: var(--nav-font-color);
    text-decoration: none;
  }
  
  /* Container with no padding for navbar */
  .nav-container {
    /* max-width: var(--content-width);
    margin: 0 auto; */
  }
  button{
    padding:0 ;
  }
  .btn{
    /* padding: 10px 20px; */
    display: flex;
    align-items: center;
    text-align: center;
    /* margin-top: 9px; */
    width: 100px;
    /* padding: 10px 20px; */
    color: #fff;
    background-color: #b97311;
  }
  .btn:hover{
    color: #fff;
    background-color: #000;
  }
  
  /* Navigation */
  nav {
    padding-top: 15px;
    float: right;
  }
  
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  nav ul li {
    float: left;
    position: relative;
  }
  
  nav ul li a,
  nav ul li a:visited {
    display: block;
    padding: 0 20px;
    line-height: var(--nav-height);
    /* background: var(--nav-background); */
    color: var(--nav-background);
    text-decoration: none;
  }
  
  nav ul li a:hover {
    background: #b9731138;
    /* background: var(--link-hover-color);
    color: var(--nav-font-color); */
  }
  
  nav ul li a:not(:only-child):after {
    padding-left: 4px;
    content: ' ▾';
  }
  
  nav ul li ul li {
    min-width: 190px;
  }
  
  nav ul li ul li a {
    padding: 15px;
    line-height: 20px;
  }
  
  /* Dropdown list binds to JS toggle event */
  .nav-dropdown {
    position: absolute;
    display: none;
    z-index: 999999;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    background: #ffff;
  }
  
  /* Mobile navigation */
  .nav-mobile {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    /* background: var(--nav-background); */
    height: var(--nav-height);
    width: var(--nav-height);
  }
  
  @media only screen and (max-width: 798px) {
    /* Hamburger nav visible on mobile only */
    .nav-mobile {
      display: block;
    }
  
    nav {
      width: 100%;
      padding: var(--nav-height) 0 15px;
    }
  
    nav ul {
      display: none;
      margin-top: 103px;
    }
  
    nav ul li {
      float: none;
    }
  
    nav ul li a {
      padding: 15px;
      line-height: 20px;
    }
  
    nav ul li ul li a {
      padding-left: 30px;
    }
  
    .nav-dropdown {
      position: static;
    }
    #project-drop {
      z-index: 99999;
    }
    .nav-dropdown.show {
     display: block;
    }
  }

  @media screen and (min-width: 800px) and (max-width: 1200px) {
  nav ul li a, nav ul li a:visited {
    font-size: 14px !important;
    padding: 0 10px !important;
  }
}
  
  @media screen and (min-width: var(--breakpoint)) {
    .nav-list {
        background-color: #0000003d !important;
      display: block !important;
    }
    nav ul li ul li a {
        padding: 15px;
        line-height: 40px;
  }
  .btn{
    height: 10px !important;
  }
}

  
  #nav-toggle {
    display: flex;
    align-items: center;
    font-size: 20px;
    /* position: absolute; */
    /* left: 18px; */
    /* top: 22px; */
    /* cursor: pointer; */
    color: #262626;
    padding: 30px;
    margin-right: 10px;
  }
  
  #nav-toggle span,
  #nav-toggle span:before,
  #nav-toggle span:after {
    cursor: pointer;
    border-radius: 1px;
    height: 3px;
    width: 30px;
    background: #000;
    bottom: 11px;
    position: absolute;
    display: block;
    content: '';
    transition: all 300ms ease-in-out;
  }
  
  #nav-toggle span:before {
    top: -10px;
  }
  
  #nav-toggle span:after {
    bottom: -10px;
  }
  
  #nav-toggle.active span {
    background-color: transparent;
  }
  
  #nav-toggle.active span:before,
  #nav-toggle.active span:after {
    top: 0;
  }
  
  #nav-toggle.active span:before {
    transform: rotate(45deg);
  }
  
  #nav-toggle.active span:after {
    transform: rotate(-45deg);
  }
  
  /* Page content */
  article {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 10px;
  }