/* 
CSS variables supported by modern browsers. except IE because it sucks.
https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
*/
:root {
  --canary-yellow: #FBC93C;
  --electric-blue: #22B5B0;
  --lime-green: #A4CE60;
  --bright-red: #EA5547;
  --dark-text: #454A48;
}




/* Social Media Icons */
.fa-facebook, .fa-facebook-square {
    color: #176CF0
}
.fa-twitter, .fa-twitter-square {
    color: #03A2EA
}
/*  Technique doen't work on SVGs.
.fa-instagram {
  color: transparent;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  background-clip: text;
  -webkit-background-clip: text;
}
*/
.instagram-logo { 
  width:30px; 
  height:30px;
  margin-right:8px;
  margin-top: 1px;
}
.fa-linkedin, .fa-linkedin-square {
    color: #007bb6
}
.fa-youtube, .fa-youtube-play, .fa-youtube-square {
    color: #ff0000
}

/*
* =============================
* === social-links ===
* =============================
*/

.social-share {
  display: none;
}

.social-share a {
  display: inline-block;
  margin-right:10px;
}

/* 
=============================
2021 Navbar Styles Start
============================= 
*/

.navbar-nav .dropdown-menu {
  position: absolute;
}

.top-navbar {
  background-color: #fff;
  height: 80px;
  width: 100%;
  margin: 0 auto;
}
.bottom-navbar {
  background-color: #FBC93C;
  height: 48px;
  width: 100%;
  margin: 0 auto;
}
.flexParent {
  display: flex;
  flex-direction: row;
  height: 100%;
  align-items: center;
}
.flexParent ul {
  list-style: none;
  flex-direction: row;
  padding-left: 0;
  margin: 0;
}
.mobileNav {
  display: none;
}
.mainNav li {
  /* padding: 0 12px; */
  border-right: 1px solid white;
}
.bottom-navbar .nav-link {
  height: 100%;
  padding: 0 12px;
  background-color: #FBC93C;
  font-size: 16px;
  font-family: Inter;
  font-weight: 400;
  display: flex;
justify-content: center;
align-items: center;
}

.bottom-navbar .nav-link:hover, .bottom-navbar .nav-link:focus {
  background: #FFE18C;
}
.dropdown-toggle::after {
  display: none;
}
.dropdown-item {
  padding: 1rem 1rem;
  font-size: 16px;
  font-family: Inter;
}
.dropdown-menu li {
    background: #fff;
}

ul.dropdown-menu.dropdown-menu-right {
  height: auto;
  border: 1px solid rgba(0,0,0,.15);
}
.flexChildLeft {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 30%;
}
.flexChildRight {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
}
.flexChildRight li a {
  text-decoration: none;
  font-family: Inter;
  font-size: 1.8rem;
  color: #454A48;
}
.flexChildRight li a::after {
  display: none;
}


a.navbar-lang-toggle,
a.navbar-sign-in,
a.navbar-sign-out{
  color: #000000 !important; /* Need to force it*/
  border-radius: 3px;
  padding: 0.5rem 2rem;
  margin: 0 0.5rem;
}

a.navbar-lang-toggle {
  background-color: var(--electric-blue);
  border: solid 3px var(--electric-blue);
}

a.navbar-sign-in {
  background-color: var(--lime-green);
  border: solid 3px var(--lime-green);
}
a.navbar-sign-out {
  background-color: var(--bright-red);
  border: solid 3px var(--bright-red);
}
a.navbar-sign-in:hover,
a.navbar-sign-out:hover,
a.navbar-lang-toggle:hover {
  background: white;
}



.mainNav {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.svg-inline--fa {
  font-size: 32px;
  margin: 0 8px 0 0;
}

.logo-space .flexParent {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: auto;
}
.logo-container {
    /* position: absolute; */
    /* width: 33%; */
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.logo-container .positional {
  /* position: absolute; */
  position: relative;
}
.search-container {
  justify-content: flex-end;
}
.nacf-logo {
  position: relative;
  z-index: 10;
  width: 289px;
}

@media (min-width:768px) {
  .nacf-logo {
    position: relative;
    z-index: 10;
    width: 597px;
    margin-top: 20px;
  }
}

@media (max-width:1200px) {

  .flexChildLeft { display: none; }
  .flexChildRight li:nth-of-type(0),
  .flexChildRight li:nth-of-type(1),
  .flexChildRight li:nth-of-type(2){
    display: none;
  }
  .flexChildRight {
    width: 100%;
    justify-content: space-between;
  }
  .mobileNav {
    display: block;
    margin-right:0.5rem;
  }
  .bottom-navbar { height: auto; }
  .bottom-navbar .container {
    padding-left: 0;
    padding-right: 0;
  }
  .bottom-navbar .flexParent {
    flex-direction: column;
    height: auto;
  }
  .bottom-navbar .flexParent ul {
    flex-direction: column;
  }
  .bottom-navbar .flexParent ul li {
    border-bottom: 1px solid wheat;
    border-right: none;
    height: 48px;
  }
  .bottom-navbar .flexParent ul li button {
    width: 100%;
  }
  .dropdown-menu-right {
    right: 0;
    left: 0;
  }
  .logo-space .flexParent {
    margin-top: -25px;
    flex-direction: column;
    justify-content: center;
    margin-top: 0;
    align-items: center;
  }
  .logo-container .positional {
    border: 25px solid transparent;
  }
    .logo-text,
    .logo-container {
    margin-left: 0;
  }
}

@media (min-width:1200px) {
  .social-share {
    display: flex;
  }
  .logo-circle {
    position: absolute;
    border: 50px solid white;
    border-radius: 50%;
    top:-30px;
    left:-30px;
    width: 216px;
    height: 239px;
    z-index: 1;
  }
}


.form-control {
    padding: 0;
    font-size: 1.6rem;
    height: calc(2rem + 1rem + 3px);
}

.flexLogosParent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* 
=============================
2021 Navbar Styles End
============================= 
*/

/* 
=============================
Mobile Menu Styles Start
============================= 
*/

@media only screen and (min-width: 1200px) {
  #mobileNavLinks { display: none; }
}
  
@media only screen and (max-width: 1200px) {
    
  #mainNavLinks { display: none; }
    
  .top-navbar {
    background: #FBC93C;
  }
  
  .mobileNavigation a {
    display: block;
    cursor: pointer;
  }
  
  
  #mobileNavLinks {
    display: none;
  }
  
  #navIcon {
    position: relative;
    margin-left: 10px;
    width: 50px;
    background: #fff;
    height: 44px;
    border-radius: 3px;
  }
  #navIcon span {
    display: block;
    position: absolute;
    height: 4px;
    width: 33px;
    margin: 0 auto;
    background: #454A48;
    border-radius: 4px;
    opacity: 1;
    left: 9px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }
  
  #navIcon span:nth-child(1) {
    top: 11px;
  }
  
  #navIcon span:nth-child(2), #navIcon span:nth-child(3) {
    top: 21px;
  }
  
  #navIcon span:nth-child(4) {
    top: 31px;
  }
  
  #navIcon.open span:nth-child(1) {
    top: 26px;
    width: 0%;
    left: 50%;
  }
  
  #navIcon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  #navIcon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  
  #navIcon.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
  .footerFlexParent {
    flex-direction: column;
    align-items: center;
  }
  .footer-contact-links,
  .quick-link-item {
    text-align: center;
  }
  .bottom-links-top {
    max-width: 100%;
    flex: 0 0 100%
  }
  h4.contact-links, 
  h4.quick-links {
    text-align: center;
  }
}

/* 
=============================
Mobile Menu Styles End
============================= 
*/
