@font-face {
  font-family: Neogrotesk Ess Alt;
  src: url("../font/NeogroteskEssAlt-Regular.woff") format("woff");
}
@font-face {
  font-family: Boston-SemiBold;
  src: url("../font/Boston-SemiBold.woff") format("woff");
}
@font-face {
  font-family: Neogrotesk Ess Alt Bold;
  src: url("../font/NeogroteskEssAlt-Bold.woff") format("woff");
}
@font-face {
  font-family: Boston-Regular;
  src: url("../font/Boston-Regular.woff") format("woff");
}
@font-face {
  font-family: Neogrotesk Ess Alt Light;
  src: url("../font/NeogroteskEssAlt-Light.woff") format("woff");
}
:root{
  --blueLight: #1f64a7;
  --blue: #0d4162;
  --blueDark: #022859;
  --orange: #f96e46;
  --yellowTh: #ffe194;
}
* {
  margin: 0;
  padding: 0;
}
body#overRide header, header{
  z-index: 1000;
  position: fixed;
  width: 100%;
  top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 6rem;
  align-items: center;
  transition: 0.4s;
}
.scrolled{
  background-color: var(--blueLight);
}
body#overRide header a,
header a{
  color: white;
  text-decoration: none;
}
body#overRide header .leftSection,
header .leftSection{
  margin-top: 10px;
  margin-left: 10%;
}
body#overRide header .leftSection img,
header .leftSection img{
  transform: scale(0.7);
}
body#overRide header .rightSection{
  margin-top: 20px;
  margin-right: 10%;
}
header .rightSection{
  margin-right: 10%;
}
body#overRide header .rightSection ul,
header .rightSection ul{
  list-style-type: none;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
body#overRide header .rightSection li,
header .rightSection li{
  font-size: 12px;
  font-family: Boston-SemiBold;

}
body#overRide header .rightSection .superMenu,
header .rightSection .superMenu{
  position: relative;
  display: flex;
  flex-direction: row;
}
body#overRide header .rightSection .superMenu .dropDown,
header .rightSection .superMenu .dropDown{
  cursor: pointer;
  margin-left: 5px;
  margin-top: -5px;
}
body#overRide header .rightSection .subMenu,
header .rightSection .subMenu{
  position: absolute;
  top: 19px;
  left: -200px;
  display: none;
  background-color: var(--yellowTh);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);  
  border-radius: 10px;
  width: 450px;
}
body#overRide header .rightSection .superMenu:hover ul,
header .rightSection .superMenu:hover ul{
  display: flex;
  flex-direction: column;
}
body#overRide header .rightSection .subMenu li,
header .rightSection .subMenu li{
  height: 150px;
}
body#overRide header .rightSection .subMenu li a,
header .rightSection .subMenu li a{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
body#overRide header .rightSection .subMenu .leftOption,
header .rightSection .subMenu .leftOption{
  margin: auto;
  color: black;
  transition: 0.4s;
}
body#overRide header .rightSection .subMenu .leftOption p,
header .rightSection .subMenu .leftOption p{
  padding: 10px;
  color: black;
  width: 110%;
  margin: auto;
  font-size: 13px;
}
body#overRide header .rightSection .subMenu .rightOption,
header .rightSection .subMenu .rightOption{
  height: 150px;
  width: 150px;
  margin: auto;
}
body#overRide header .rightSection .subMenu #small,
header .rightSection .subMenu #small{
  height: 120px;
  width: 120px;
}
body#overRide header .rightSection .subMenu img,
header .rightSection .subMenu img{
  padding-left: 2rem;
  width: 100%!important;
}
body#overRide header .rightSection img,
header .rightSection img{
  color: white;
}
body#overRide header .rightSection .subMenu li,
header .rightSection .subMenu li{
  padding: 1rem 0;
  border-radius: 10px;
  width: 100%;
  transition: 0.4s;
}
body#overRide header .rightSection .subMenu li h1,
header .rightSection .subMenu li h1{
  padding-left: 1rem;
  font-size: 1.1rem;
  transition: 0.4s;
  color: black;
  text-decoration: underline;
}
body#overRide header .rightSection .subMenu li:hover,
header .rightSection .subMenu li:hover{
  background-color: var(--blueLight);
}
body#overRide header .rightSection .subMenu li:hover h1,
header .rightSection .subMenu li:hover h1{
  color: white;
}
body#overRide header .rightSection .subMenu li:hover p,
header .rightSection .subMenu li:hover p{
  color: white;
}
body#overRide header .rightSection .navButton,
header .rightSection .navButton{
  padding: 1rem 2.5rem;
  border-radius: 5px;
  color: black;
  background-color: var(--yellowTh);
}
body#overRide header .mobImage,
header .mobImage{
  display: none;
}

.expand{
  display: flex!important;
  flex-direction: column!important;
}
@media screen and (max-width:1100px) {
    body#overRide header,
    header{
      grid-template-columns: 1fr 2fr;
    }
}
@media screen and (max-width:900px) {
  
    body#overRide header .leftSection img,
    header .leftSection img{
      transform: scale(0.6);
    }
    body#overRide .backgroundMenu,
    .backgroundMenu{  
      background: radial-gradient(#39a2db, #1f64a7, #043b81);
      width: 0;
      height: 0;
      top: 0;
      right: 0;
      position: absolute;
      z-index: 1;
      transition: all 0.1s ease-in;
    }
    body#overRide .changeBackground,
    .changeBackground{
      width: 100%;
      height: 100vh;
    }
    body#overRide header,
    header{
      padding: 0;
    }
    body#overRide header img,
    header img{
      margin-top: 10px;
    }
    body#overRide header .mobImage,
    header .mobImage{
      display: block;
      text-align: right;
      grid-row: 1;
      grid-column: 2;
      margin-right: 10%;
      z-index: 99;
    }
    body#overRide header .mobImage img,
    header .mobImage img{
      width: 25.57px;
      height: 25.57px;
    }
    body#overRide header .rightSection,
    header .rightSection{
      grid-column: 1/4;
      z-index: 99;
    }
    body#overRide header .rightSection nav,
    header .rightSection nav{
      height: 100vh;
      display: none;
      margin-top: -5rem;
      z-index: 99;
    }
    body#overRide header .rightSection nav.open,
    header .rightSection nav.open{
      display: flex;
    }
    .fixedPosition{
      position: fixed;
    }
    body#overRide header .rightSection ul.mainMenu,
    header .rightSection ul.mainMenu{
      margin:0 auto;
      flex-direction: column;
      justify-content: flex-start;
      margin-top: 4rem;
    }
    
    body#overRide header .rightSection ul.mainMenu li,
    header .rightSection ul.mainMenu li{ 
      margin: 3vh 0;
    }
    body#overRide header .rightSection .subMenu .leftOption p,
    header .rightSection .subMenu .leftOption p,
    body#overRide header .rightSection .subMenu .rightOption,
    header .rightSection .subMenu .rightOption{
      display: none;
    }
    body#overRide header .rightSection .subMenu,
    header .rightSection .subMenu{
      width: 200px;
      left: -25px; 

    }
    body#overRide header .rightSection .subMenu li a,
    header .rightSection .subMenu li a{
      grid-template-columns: 1fr;
    }
    body#overRide header .rightSection ul.subMenu li,
    header .rightSection ul.subMenu li{
      height: initial ;
      grid-template-columns: 1fr;
      padding: 0.5rem 0;
      margin: 0 0;
    }
    body#overRide header .rightSection .subMenu li h1,
    header .rightSection .subMenu li h1{
      padding-left: 0; 
      font-size: 0.7rem;
    }
}

