
.navigation__container {
    width: 100%;
    min-width: 300px;
    position: fixed;
    top: 0;
    left:0;
    z-index: 1000;
    margin: 0;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    height: 129px;
    transition: all .3s ease-in-out;
 }

 .navigation__container div, .navigation__container nav {
    box-sizing: border-box;
 }

 .brand-links__container {
    background: #000;
    width:  100%;
    height:39px;
    box-sizing: border-box;
    padding: 0 36px;
    display: flex;
    align-items: center;
    position: aboslute;
    top: 0;
    left: 0;
 }

 .brand-links a {
    color: #fff;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 500;
    line-height: 150%;
    margin: 0 24px 0 0;
    display: inline-block;
 }

 .brand-links a:last-child {
    margin: 0;
 }


 .brand-links a:hover {
    text-decoration: underline;
    color: #fff;
 }

 .primary-nav__container {
    width: 100%;
    padding: 18px 36px;
    height: 90px;
    position: absolute;
    top: 39px;
    left: 0;
 }

 .nav__viewport {
    max-width: 1440px;
    box-sizing: border-box;
    padding: 0;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
 }

 .brand-logo {
    height: 55px;
    display: block;
 }

.search__container {
    width: 95%;
    max-height: 55px;
    display: none;
    align-items: center;
    justify-content: flex-end;
 }

.search__container._open {
    display: flex;
 } 

 .search-form {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
 }

 .search__input {
    max-width: 360px;
    width: 100%;
    border: none !important;
    border-bottom: 1px solid #000 !important;
    appearance: none;
    margin: 0 !important;
    box-shadow: none !important;
 }

 .nav__items {
    display: flex;
    align-items: center;
    justify-content: flex-end;
 }

 .nav__items > .item {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .56px;
    padding: 12px 20px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all .3s ease-in-out;
 }

 .nav__items > .item:hover,
 .nav__items > .item:focus,
 .nav__items > .item:active,
 .nav__items > .item:target,
 .nav__items > .item:hover > span,
 .nav__items > .item:focus > span,
 .nav__items > .item:active > span,
 .nav__items > .item:target > span {
    color: #666360;
 }


 .item > span {
    text-decoration: none;
    color:#000;
 }
 .item > span:hover {
    cursor: pointer;
 }

 div.item > span::after {
        content: "\f107";
        font-family: "Font Awesome 6 Sharp";
        display: inline-block;
        margin-left: 5px;
}

.item > a:hover,
.item > a:focus,
.item > a:active,
.item > a:target {
    color: #666360;
 }

 .nav__items > .item > .sub__items {
    position: absolute;
    display: none;
    background: #fff;
    padding: 12px 18px;
    margin: 12px 0 0 -18px;
    min-width: 300px;
    z-index: 1000;
 }

 .nav__items > .item:hover > .sub__items,
 .nav__items > .item:focus > .sub__items,
 .nav__items > .item:active > .sub__items,
 .nav__items > .item:target > .sub__items,
 #Company:target,
 #Offerings:target,
 #Impact:target,
 #Innovation:target {
    display: block;
 }


 .sub__items .item {
    display: block;
    text-decoration: none;
    text-transform: initial;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: initial;
    padding: 4px 0;
 }

 h5 > .item {
    font-size: 20px !important;
    font-weight:  400;
    color: #0956FF;
    line-height: 120%;
    text-transform: initial;
 }

 .sub__items p, .sub__items h5 {
    padding: 4px 0;
 }

 .cols {
    min-width: 530px;
    box-sizing: border-box;
    padding: 0 0 6px;
    display: flex;
    justify-content: space-between;
 }

 .cols > .nav-col {
    width: 50%;
    max-width: 244px;
 }

.nav-col > .nav-row:first-child {
    margin: 0;
    padding: 0 0 30px 0;
 }

 .nav__heading {
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: .56px;
    text-transform: uppercase;
    color:#666360;

 }
 
.text-reader {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
}

.menu-button__container {
    display: none;
}

.search__container button,
.search__button {
    background: transparent;
    color: #000;
    border: none;
    padding: 0;
    font-size: 16px;
    margin-left: 18px;
}

.navigation__container button:focus,
.navigation__container button:active,
.navigation__container button:hover {
    background: none !important;
    color: #666360;
}

.menu__button {
    margin: 0;
    padding: 0;
    font-size: 35px;
    background:  none;
    color: #000;
    line-height: 35px !important;
}
.menu__button:focus,
.menu__button:active,
.menu__button:hover {
    background: none !important;
    color: #666360;
}

._hide {
    display: none;
}

.scrolled {
		top: -129px !important;
	}
.scrolled._open {
    top: 0px !important;
}

@media screen and (max-width: 1024px) {
    .navigation__container {
        height: 90px;
    }

    .nav__viewport {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo__container {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }  

    .menu-button__container {
        display: initial;
    }

    .primary-nav__container {
        position: initial;
        padding: 18px 20px;
    }

    .nav__items {
        display: none;
        width: 100%;
        margin: 36px 0 0;
    }

    .nav__items > .item {
        padding: 12px 0;
        display: block;
    }

    .brand-links__container {
        display: none;
        background-color: #fff;
        justify-content: flex-start;
        flex-direction: column;
        position: initial;
        height: initial;
        padding: 18px 20px;
    }

    .brand-links__container .brand-links {
        padding: 0 0 10px;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .brand-links a {
        color: #000;
        margin: 0 16px 0 0;
        font-size: 16px;
        font-weight: 500;
    }
    .brand-links a:hover {
        text-decoration: underline;
        color: #000;
    }

    .cols {
        min-width: auto;
        padding: 0;
        flex-direction: column;
    }

    .cols > .nav-col {
        width: auto;
        max-width: initial;
    }

    .col > .nav-row {
        padding: 0 !important;
    }
    
    .search-form {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 12px 0;
    }

    .search__input {
        max-width: initial !important;
    }

    /* MENU IS OPEN */

    .navigation__container._open  {
        height: 100vh;
        overflow-y: auto;
    }

    
    ._open .primary-nav__container{
        height: auto;
        max-height: initial;
    }

    ._open .brand-links__container {
        display: inline-block;
    }

    ._open .nav__items {
        display: block;
    }
    
    ._open .nav__items > .item > .sub__items {
        position: initial;
        padding: 0px 18px 0;
        margin: 0;
        z-index: initial;
        display: block;
        height: 0;
        max-height: 0;
        overflow: hidden;
        transition: all .3s ease-in-out;
        opacity: 0.0;
    }
    ._open .nav__items > .item._open > .sub__items {
        height: auto;
        max-height: 100vh;
        opacity: 1.0;
        padding: 12px 18px 0;
    }
    
    div.item > span {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    div.item > span::after {
        transition: all .1s ease-in-out;
        font-weight: 900 !important;
        margin-top: -10px;
        font-size: 18px;

    }

    div.item._open > span::after {
        rotate: 180deg;
    }   

    
    .hide-for-mobile {
        display: none !important;
    }
    ._open .search__container {
        display: initial;
        width: 100%;
        max-width: initial;
        
    }
    p.nav__heading {
        margin-bottom: 0px;
    }
    
}

@media screen and (max-width: 390px) {

}

/** BLOG STYLES **/

    .blog-header{background: #fff !important; color: #1A1A1D !important; height: auto !important; letter-spacing: 0.09em !important; overflow: unset;}
	.blog-header.scroll__contain{position: fixed; top: 0px; width: 100%; transition: all ease-out 0.4s; z-index: 99; padding:0 1rem; height: 115px; box-sizing: border-box;}
	.blog-header.scroll__contain:hover, .blog-header.scroll__contain:focus-within, .blog-header.scroll__contain.active, .blog-header.scroll__contain.scrolling{background: #fff;}
    .blog-header.scroll__contain.scrolled{top:-115px !important;}
	.blog-header a{text-decoration: none; transition: 300ms;}
    .blog-header a:not(.btn):hover{color: #0071cc; text-decoration: underline;}
	.blog-header a:not(.btn):focus-within{color: #7EC2FC;}
	.blog-header__content{display: flex; justify-content: space-between; align-items: center; text-transform: uppercase; font-weight: 700;}
	.blog-header__main{display: flex; align-items: center; position: relative; width: 100%;}
    .blog-header__main-link{margin: 0 40px 0 0;}
    .blog-header__main-link--topic{font-weight: 600; padding: 0 0px 0 0; position: relative; }
    /* .blog-header__main-link--topic:before{content:"\f063"; font-family: "Font Awesome 6 Sharp"; right: 0; top: 0; position: absolute; transition: 300ms; transform: rotate(0deg);} */
    .blog-header__main-link--topic:after{content:"";} 
    .blog-header__logo{display: flex; align-items: flex-end;  margin: 0 40px 0 0;}
	.blog-header__logo img{width: auto; height: 50px; display: block;}
    .blog-header__nav{line-height: 1.5; display: none; /* width: calc(100vw - 4rem - 75px - 75px); */ max-width: 1020px; position: absolute; white-space: nowrap; left: 167px; top: calc(100% - 15px); padding: 15px 0 0 0;}
    .blog-header__nav-list{background: rgba(0,0,0,.8); color: #fff; padding: 20px 38px 18px 38px; display: flex; justify-content: space-between; border-radius: 15px; position: relative; backdrop-filter: blur(10px);}
    .blog-header__nav ul > li{font-size: 1.125rem;}
    .blog-header__nav ul > li > a{margin: 0 10px 0 0;}
    .blog-header__nav ul > li > ul{margin: 15px 0 0 0;}
    .blog-header__nav ul > li > ul > li{margin: 0 0 10px 0; padding: 0; text-transform: none; font-size: 1rem;}
    .blog-header__nav ul > li > ul > li a:hover{color:#7EC2FC !important;}
	.blog-header__nav ul > li > ul > li a:focus-within{color: #7EC2FC;}
    .blog-header__topics{cursor: pointer; display:}
    .blog-header__topics:hover .blog-header__nav{display: block; }
    /* .blog-header__topics:hover .blog-header__main-link--topic:before{transform: rotate(-180deg);} */
    .blog-header__topics:hover .blog-header__main-link--topic:after{content:""; top: 100%; left: 0; position: absolute; width: 0px; height: 0px; border-style: solid; border-width: 0 12px 12px 12px; border-color: transparent transparent #000000e6 transparent; transform: rotate(0deg) translateX(50%); opacity: .85;}
	.blog-header__topics:hover .blog-header__main-link--topic{color: #0071cc; text-decoration: none;}
	.blog-container{max-width: 1440px; margin: 0 auto; padding: 1rem 0;}
	.blog-header__subscribe{text-transform: none;letter-spacing: normal;}
	
	
	.blog-header .search-trigger{margin: 0; padding: 0; color: #1A1A1D}
	.blog-header button.search-trigger:focus, button.search-trigger:hover{background: #f1f1f1; border-radius: 25px; color: #0072CE !important; transition: 300ms; }
	.blog-header .search-container{background: #000; position: fixed;}
	.drop-down-btn,
	.blog-header__mobile{display: none;}
	.blog-header__drop-close{display: none;}
	.blog-header .input-group {max-width: 180px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    padding: .6rem 1rem .6rem 2rem;
    background: #f1f1f1;
    border-radius: 25px 0 0 25px;
    right: 55px;
    position: absolute;
    top: 1px;}

	.show-for-mobile-tools {display:block;}

	@media screen and (min-width: 1240px) {
      .blog-header__nav.topic-2 {left: 304px;}
    .blog-header__nav.topic-3 {left: 476px;}
    .blog-header__nav.topic-4 {left: 596px;}
	}

    .blog-header__drop {
    padding-left: 30px;
}

	@media screen and (max-width: 1239px) {
		.blog-header.top-container{padding: 0 1rem;}
		.blog-container{padding: .8rem 0;}
		.blog-header__logo{margin: 0 18px 0 0;}
		.blog-header__main-link--corp,
		.blog-header__main-link--topic {color: #fff;}
		.blog-header__subscribe{display: none !important;}
		.drop-down-btn{display: block; position: relative; width: 30px; height: 20px;}
		.drop-down-btn span{position: absolute; width: 30px; height: 2px; background: #000; left: 0;}
		.drop-down-btn span:nth-of-type(1){bottom: 0;}
		.drop-down-btn span:nth-of-type(2){bottom: 50%; transform: translateY(50%);}
		.drop-down-btn span:nth-of-type(3){top: 0;}
		.blog-header__nav{display: block; position: relative; top: 0; left: 0; width: 100%; height: 100%; padding: 0;}
		.blog-header__nav-list{display: block; border-radius: 0; background: transparent; padding: 0; backdrop-filter: none;}
		.blog-header__mobile{display: block; margin-left: 23px; margin-right: 23px;}
		.blog-header__nav ul > li{padding: 0 0 50px 0; margin: 0;}
		.site-tools .blog-header__main-link{color: #fff !important; display: block; font-size: 1.5rem; margin: 0 0 0 .35rem; text-decoration: none !important;}
		.blog-header__drop{display: none;}
		.blog-header__topics{padding: 0 0 0 23px;}
		.blog-header__drop-close{display: block; position: absolute; right: 16px; top: 30px; width: 25px; height: 25px;}
		.blog-header__drop-close::before,
		.blog-header__drop-close::after{content:""; position: absolute; width: 33px; height: 2px; background: #fff; right:50%; bottom: 50%;}
		.blog-header__drop-close::before{transform: translate(50%, 50%) rotate(45deg);}
		.blog-header__drop-close::after{transform:  translate(50%, 50%) rotate(-45deg);}
		.blog-header .search-container{background: transparent;}

		.blog-header.is-open .blog-header__drop{display: block; position: fixed; width: 100%; height: 100%; left: 0; top: 0; overflow-y: auto; background: rgba(0, 0, 0, .8); padding: 100px 16px 0px; z-index: 999; backdrop-filter: blur(10px);}
		.blog-header.is-open .search-container{top: 0; visibility: visible; opacity: 1; position: relative; padding: 0; border: 2px solid #0071cc; border-radius: 6px;}
		.blog-header.is-open .input-group{margin: 0; display: flex; align-items: center;}
		.blog-header.is-open input.search.form-control {border: none; padding: 11px 20px; display: block; height: auto; font-size: 1.125rem; width: calc(100% - 60px); line-height: 1;}
		.blog-header.is-open i.fas.fa-search{position: relative; padding: 0; font-size: 1.5rem; margin-top: -.05rem;}
		.blog-header__main-link--topic {font-size: 1.5rem}
        .blog-header .drop-down-btn:hover,
        .blog-header .drop-down-btn:active {
            background: none !important;
        }
        .blog-header .blog-header__drop-close:hover,
        .blog-header .blog-header__drop-close:active {
            background: none !important;
        }

        
	}
	@media screen and (max-width: 1239px) {
    .blog-header .show-for-desktop {
        display: none !important;
    }
}
@media screen and (min-width: 1240px) {
	  
	  	.blog-header__topics{cursor: pointer; display: inline-flex;}

		.blog-header .search-container {height: 90px;}
		.blog-header .show-for-desktop {
        display: inline-block !important;
        right: 30px;
        position: absolute;
        top: 2px;
        background: #f1f1f1;
        padding: .75rem;
        border-radius: 25px;
    }
	.show-for-mobile-tools {display:none;}
}

/* new search */

@media screen and (max-width: 1239px) {
.blog-header .search-container-new.desktop {display:none;}

.blog-header__mobile .blog-header .search-container-new {display:block;}
}

@media screen and (min-width: 1240px) {
.blog-header__mobile .blog-header .search-container-new {display:none;}
}




.blog-header .search-container-new {
  margin: 0;
  width: 250px;
  height: 42px;
  position: absolute;
    right: 30px;
	margin-top: 1px;
}
.blog-header input[type=search] {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: auto;
    height: auto;
    margin: auto;
    padding: auto;
    border: 0px ;
    border-radius: 0;
    background-color: none;
    -webkit-box-shadow: 0;
    box-shadow: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: 400;
    line-height: 1.5;
    color: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-width: auto;
    box-shadow: none;
	-webkit-appearance: textfield;
    box-sizing: inherit;
}


.blog-header .input-group-new{
  width: 250px;
  vertical-align: middle;
  white-space:nowrap;
  position:relative;
}

.blog-header .input-group-new input#search-keyword {
  width: 42px;
  height: 42px;
  background: #f1f1f1;
  border:none;
  font-size: 1rem;
  float: right;
  color: #1A1A1D;
  padding-left: 25px;
  border-radius: 25px;
  transition: width .55s ease;
  box-sizing: border-box;
}

.blog-header .input-group-new input#search-keyword::-webkit-input-placeholder {
   color: #c0c0c0;
}
 
.blog-header .input-group-new input#search-keyword:-moz-placeholder { /* Firefox 18- */
   color: #c0c0c0;  
}
 
.blog-header .input-group-new input#search-keyword::-moz-placeholder {  /* Firefox 19+ */
   color: #c0c0c0;  
}
 
.blog-header .input-group-new input#search-keyword:-ms-input-placeholder {  
   color: #c0c0c0;  
}

.blog-header .input-group-new button.gm-news-search{
  position: absolute;
    /*top: 50%;*/
    margin-left: 20px;
    padding: 0px 0px 0px 0px !important;
    margin-top: 0;
    z-index: 1;
    color: #1A1A1D;
    font-size: 1.15rem;
    background: #f1f1f1;
    font-weight: 600 !important;
    right: 0px !important;
    height: 42px;
    width: 42px;
    border-radius: 25px;
}

.blog-header .input-group-new input#search-keyword:focus, 
.blog-header .input-group-new input#search-keyword:active{
  outline:none;
  width: 250px;
}

.blog-header .input-group-new:hover input#search-keyword{
  width: 250px;
}

.blog-header .input-group-new:hover .icon{
  color: #93a2ad;
}


@media screen and (max-width: 1239px) {
	.blog-header .search-container-new {position: relative;}
.blog-header .search-container-new {
    margin: 0;
    width: 100%;
    height: 42px;
    margin-top: 1px;
    left: 0px;
}

.blog-header .input-group-new {
    width: 100%;

}
.blog-header .input-group-new:hover input#search-keyword{
  width: 100%;
}
.blog-header .input-group-new input#search-keyword {
  width: 100%;
  transition: none;
}

}

.blog-header .lang-toggle {
    margin: 0 30px 0 0;

}
.blog-header .lang-toggle a {
    text-decoration: none;
    transition: 300ms;
    color: #1779ba;
}

.blog-header .lang-toggle p {
    margin: .175rem 0 0 0;
    font-size: .975rem;

}
@media screen and (min-width: 1240px) {
	.blog-header .lang-toggle p {
		margin: 0 ;
		font-size: .975rem;
	}
}

.site-tools { margin-top: 50px; margin-bottom: 50px;}
.lang-desktop {display:none;}

@media screen and (min-width: 1240px) {
.lang-desktop {display:block; text-transform: initial; width: 75px; }
}
.lang-mobile {display: block;
    color: #fff;
    margin-right: 2rem;
    margin-bottom: 0rem;
    text-transform: initial;
    text-align: right;}

@media screen and (min-width: 1240px) {
.lang-mobile {display:none;}
}

.lang-toggle-2 {
    background: #f1f1f1;
    border-radius: 25px;
    display: flex;
    height: 42px;
    position: relative;
	padding: 4px;
	width: 100px;
	margin-right: 30px;
}
.lang-active {
position: relative;
    display: inline-block;
    height: 100%;
    align-items: center;
    box-sizing: border-box;
    background: #0071cc;
    height: 34px;
    width: 34px;
    border-radius: 25px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-size: .875rem;
    font-weight: bold;
	line-height: 36px;
}

.lang-toggle-2 p {
    width: 100%;
    margin: 0;
}
.lang-toggle-2 a {
    display: inline-block;
    height: 100%;
    align-items: center;
    box-sizing: border-box;
    height: 34px;
    width: 34px;
    border-radius: 25px;
    text-align: center;
    text-transform: uppercase;
    font-size: .875rem;
    font-weight: bold;
	line-height: 36px;
}

.lang-toggle-2 a {
    display: block;
    width: 34px;
    height: 34px;
    background: rgba(0,113,204,0);
    border-radius: 25px;
    text-transform: uppercase;
	font-size: .875rem;
	position: absolute;
	right: 4px;
	top: 4px;
	text-align: center;
	text-decoration: none;
}
.lang-toggle-2 a:hover {text-decoration: none !important}