/*
Theme Name: Traxale
Theme URI: https://example.com
Author: Pooja
Author URI: https://example.com
Description: A simple custom WordPress theme
Version: 1.0
*/


/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
/*body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  background-color: #fff;

  /* Responsive layout 
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}*/

/*body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

 Use container instead 
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}*/

/*body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}*/


/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Full height setup */
html, body {
  height: 100%;
}

/* Body styling */
body {
  min-height: 100vh;              /* Full screen height */
  display: flex;
  flex-direction: column;        /* Enables sticky footer layout */
  font-family: Arial, sans-serif;
}

/* Main content grows to fill space */
main {
  flex: 1;
}

/*header {
  background: #222;
  color: #fff;
  padding: 15px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  pointer-events: none;
  z-index: 3;
}*/

header {
    --nav-item-trigger-button-width: 2rem;
    --nav-item-trigger-button-height: 2rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5rem;
    padding: 0 40px;
    opacity: 1;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    grid-template-rows: 1fr;
    align-items: center;
    background: #ffffff;
}

header > a.header_logo {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    pointer-events: auto;
    outline-offset: 4px;
    grid-column: 1;
    grid-row: 1;
    z-index: 1;
}
.header_logo img {
    width: 25%;
    height: auto;
}

header > nav {
    align-self: center;
    justify-self: center;
    place-content: center;
}

header > nav ul.menu {
    display: flex;
    flex-direction: row;
    padding: 10px 0;
    list-style: none;
}

header > nav ul.menu li {
  padding: 10px;
  font-size: 15px;
  text-align: center;
  
}

header > nav ul.menu li a, .header_contact {
    text-decoration: none;
    color: #000000;
    text-transform: uppercase;
    /*transition: all 0.5s ease-in-out;*/
}

.header_contact { justify-content:right; }

header > nav ul.menu li a, .header_contact, .button-style {
    display: flex;
    align-items: center;
    padding: .25rem .5rem;
    min-height: 2.4rem;
    border-radius: .2rem;
    overflow: hidden;
    color: #236689;
}

header > nav ul.menu li a > span, .header_contact > span, .button-style > span {
    position: relative;
    white-space: nowrap;
    /*transition: transform .25s var(--ease-out-quad);*/
    transition: transform .8s linear( 0, .009 1%, .036 2%, .139 4.2%, .277 6.3%, .709 12.2%, .829 14.1%, .926 15.9%, 1.004 17.7%, 1.064 19.5%, 1.109 21.4%, 1.136 23.3%, 1.15 25.8%, 1.142 28.6%, 1.017 41.3%, .993 45.1%, .98 49%, .979 54.7%, 1.003 74%, 1 );
}

header > nav ul.menu li a span:after, .header_contact span:after, .button-style span:after {
    content: attr(data-label);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translate3d(0,calc(2.4rem / 2 + 50%),0);
}
header > nav ul.menu li a:hover span, .header_contact:hover span, .button-style:hover span {
  transform: translate3d(0,calc((2.4rem / 2 + 50%)* -1),0);
}

header.site-header1.fixed {
    border: 2px solid #236689;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

main {
    padding-top: 5rem;
}

.section {
    padding: 32px;
    display: block;
    margin: 0;
}

.grid {
    display: grid;
    width: calc(100% - 32px* 2)!important;
    margin-inline: 32px !important;
    gap: 0 16px;
    grid-template-columns: repeat(12,minmax(0,1fr));
    grid-template-rows: auto;
    grid-auto-flow: row dense;
}


footer {
  background: #f4f4f4;
  padding: 15px;
  text-align: center;
}