:root{
  --white: #fff;
  --main-color: #003F96;
  --sec-color: #FFC069;
  --darker-main-color: #01347a;
  --background-color: #EFEFEF;
  --darker-background-color: #e2e2e2;

  --font-primary: 'Nunito', sans-serif;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  font-family: 'Cabin';
}

/****************************/
/*          header          */
/****************************/

#contactButton{
  position: fixed;
  bottom: 0;
  right: 50px;
  background-color: #003F96;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  text-decoration: none;
  color: #fff;
  font-size: 24px;
  padding: 10px 50px;
  z-index: 2;
}

/****************************/
/*            nav           */
/****************************/

  .header_desktop {
    height: 116px;
    width: 100%;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    background-color: #fff;
    padding: 10px;
    padding-right: 0;
    border-bottom: 5px solid var(--main-color);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    column-gap: 20px;
  }

  #header_mobile {
    display: none;
  }

  .logo_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
  }

  .logo_house_container {
    height: 100px;
    width: 110px;
  
  }
  .logo_text_container {
    height: 20px;
    width: 110px;
  }


  .logo_house_container img, .logo_text_container img {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
  
  .header_desktop a {
    padding: 10px;
    text-decoration: none;
    font-size: 24px;
    color: var(--main-color);
    display: block;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-radius: 2px;
    font-weight: bold;
  }
  
  .header_desktop a:hover {
    color: #FFC069;
    background-color: var(--darker-main-color);
  }
  
  .nav_bol_container {
    height: 100%;
    width: 100%;
    position: relative;
  }

  .mainNavBol {
    height: 68px;
    position: absolute;
    border-radius: 900px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  #mainNavBol1 {
    right: 0px;
    top: -10px;
    background-color: var(--main-color);
    width: 600px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }

  #mainNavBol2 {
    background-color: var(--sec-color);
    right: 0;
    bottom: -10px;
    width: 500px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }



/****************************/
/*          Footer          */
/****************************/

.copyright {
  font-size: 16px;
}

.copyright a{
  text-decoration: none;
  color: var(--white);
}
