@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=BBH+Sans+Hegarty&display=swap');

.active{
   color: var(--blue) !important;
}

.websites_slider{
  position: relative;
  height: 150px;
}

.tns-outer, .tns-ovh{
  height: 100%;	
}

.header_contact_links div{
  display: flex;
  align-items: center;
  gap: 10px;
}

.container_nav{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  padding: 0 5%;
}

.container_header{
  max-width: 1200px;
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}

header{
  width: 100%;
  height: auto;
}

.header_container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.header_heading_container {
  width: 100%;
  background-image: linear-gradient(
	rgba(1, 96, 248, 0.45),
	rgba(1, 96, 248, 0.45)
  ), url('/img/header-img-2.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.header_logo_container {
    width: auto;
    height: 100%;
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.header_logo_container> img{
    width: 275px;
}

.header_contact_information {
    width: auto;
    height: 80%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--white);
}

.header_contact_links {
    font-family: "Noto Sans", sans-serif;
    font-weight: 500;
    display: flex;
    gap: 10px;
}

.header_contact_links > div > a{
    font-size: 17px !important;
    text-transform: uppercase;
    transition: 0.2s all;
}

.header_contact_links > div > a:hover{
  color: var(--blue) !important;
}

.outer_button_container{
  width: 100%;
  height: auto;
}

.button_container{
  max-width: 200px !important;
  height: auto;
  float: right;
}

.header_contact_button_container {
  width: 100%;
  height: 50px;
  border: 1px solid white;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 5px;
  font-family: "Noto Sans", sans-serif;
}

.header_contact_button_container::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: white;
    transition: width .35s ease;
    z-index: 0;
}

.header_contact_button {
    font-size: 17px;
    position: relative;
    z-index: 1;
    color: var(--white);
    transition: color .35s ease;
    white-space: nowrap;
}

.header_contact_button_container:hover::before {
    width: 100%;
}

.header_contact_button_container:hover .header_contact_button {
    color: var(--blue);
}

.navigation {
    width: 100%;
    height: auto;
    display: flex;
    box-shadow: var(--shadow);
    position: relative;
   z-index: 1000;
   transition: all 0.3s ease;
}

.navigation.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white; 
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navigation_list {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: 75px;
    display: flex;
    justify-content: space-between;
}

.navigation_list_item {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navigation_list_item > a{
    font-size: 20px;
    font-family: "Noto Sans", sans-serif;
    color: black;
    width: 100%;
    text-align: center;
    transition: color .35s ease;
}

.navigation_list_item > a:hover{
    color: var(--blue);
}

/* Mobile */
.menu-bars{
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   width: 30px;
   height: 25px;
   cursor: pointer;
   margin-bottom: 30px;
   display: none;
}

.bar{
    width: 100%;
    height: 4px;
    background-color: var(--white);
}

/* Queries */
@media screen and (max-width: 650px){
  .header_contact_links{
    flex-direction: column;
  }
  
  .header_contact_links > p{
    display: none;
  }
}

@media screen and (max-width: 600px){
   .slider_image, .container_header, .websites_slider{
        height: 125px !important;
    } 
  
    .header_contact_links{
      font-size: 15px;
    }

    .header_logo_container> img{
        width: 175px;
    }

    .header_contact_links > div > a{
        font-size: 13px !important;
    }

    .header_contact_button_container{
        height: 35px;
        padding: 5px 10px;
    }

    .header_contact_button{
        font-size: 15px;
    }

    /* nav */
    .navigation_list_item > a{
        font-size: 17px;
    }
}

@media screen and (max-width: 500px){
  .slider_image, .container_header {
      height: 150px !important;
  } 
  
  .header_logo_container{
    align-items: center;	
  }

  .header_logo_container> img{
      width: 150px;
  }

  .header_contact_information {
      display: none;
  }

  /* nav */
  .navigation{
      display: none;
  }

  .menu-bars{
      display: flex;
  }
}