html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
button {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: "Montserrat";
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
#root,
#__next {
  isolation: isolate;
}

.containerAll {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.topNavBarContainer {
  width: 100%;
  height: 100px;
  background-color: rgba(11, 20, 43, 1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  transition: all .3s ease-in-out;
}

.topNavBarContainer.scrolling{
  height: 70px;
}

.topNavBarContent {
  max-width: 1400px;
  width: 90%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  /* overflow: hidden; */
}

.topNavBarButtons {
  position: relative;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.itemMenuContainer {
  height: 100%;
  position: relative;
}

.itemMenu {
  background: none;
  border: none;
  padding: 0;
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding: 8px;
  text-decoration: none;
  height: 100%;
  gap: 5px;
  transition: all 0.3s ease-in-out;
}

.itemMenu::after {
  content: ''; 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(260.62deg, #fab914 6.94%, #fcd36a 35.06%, #f2bc32 66.41%, #c5881e 99.13%);
  opacity: 0; 
  transition: opacity 0.3s ease-in-out;
  z-index: -1; 
}

.itemMenu:hover {
  color: rgba(10, 20, 45, 1);
}

.itemMenu:hover::after {
  opacity: 1;
}

.itemMenuLogin {
  color: rgba(11, 20, 43, 1);
  font-size: 18px;
  font-weight: 600;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  padding: 10px 25px;
  text-decoration: none;
  margin-left: 8px;
}

.itemMenuArrow {
  aspect-ratio: 1 / 1;
  width: 12px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../images/down-arrow.svg);
}

.itemMenu:hover .itemMenuArrow {
  background-image: url(../images/up-arrow.svg);
}

.subItemMenuBurgerContainer.active .itemMenuArrow {
  transform: scaleY(-1);
}

.topNavBarIcon {
  max-width: 300px;
  margin: 0;
}

.menutextContainer {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.menuText {
  position: absolute;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.2;
  text-align: left;
  display: block;
  text-decoration: none;
  opacity: 1;
}

.menuTextBold {
  color: rgba(11, 20, 43, 1);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  display: block;
  text-decoration: none;
  opacity: 0;
}

.itemMenu:hover .menuText {
  opacity: 0;
}

.itemMenu:hover .menuTextBold {
  opacity: 1;
}


.dropdownMenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0b142b;
  box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.12);
  z-index: 1;
  min-width: 150px;
}

.dropdownMenu a {
  display: block;
  color: #333;
  text-decoration: none;
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  text-align: left;
  position: relative;
  padding: 20px 15px;
  transition: all 0.25s ease-in-out;
}

.dropdownMenu a:hover {
  color: #0b142b;
}

.dropdownMenu a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgb(250, 185, 18);
  background: linear-gradient(
    90deg,
    rgba(250, 185, 18, 1) 0%,
    rgba(252, 211, 106, 1) 33%,
    rgba(242, 188, 50, 1) 66%,
    rgba(197, 136, 30, 1) 100%
  );
  transition: all 0.25s ease-in-out;
  z-index: -1;
}

.dropdownMenu a:hover:before {
  color: rgba(11, 20, 43, 1);
  width: 100%;
}

.itemMenuContainer:hover .dropdownMenu {
  display: block;
}

.yellowMenuLine {
  height: 1px;
  background: linear-gradient(215.75deg, #FAB912 15.3%, #FCD36A 40.05%, #F2BC32 67.64%, #C89F0E 96.44%);
}

.itemMenuContainer:hover .dropdownMenu {
  display: block;
}

.yellowMenuLine {
  height: 1px;
  background: linear-gradient(215.75deg, #FAB912 15.3%, #FCD36A 40.05%, #F2BC32 67.64%, #C89F0E 96.44%);
}

.itemMenuBurger {
  display: none;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100%;
  aspect-ratio: 1 / 1;
  background-size: 100% 35px;
  width: 35px;
  height: 100%;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.itemMenuBurger.active{
  background-image: url(../images/close.png) !important;
}


.burgerMenuDropdown {
  display: none;
  position: absolute;
  width: max-content;
    top: 100%;
    background: rgba(11, 20, 43, 1);
    box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.12);
    padding: 10px;
    z-index: 10;
    color: rgba(255, 255, 255, 1);
    right: 0;
    overflow-y: auto;
}

.subItemMenuBurger, .subItemMenuBurgerContainer  {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight: 300;
}


.subItemMenuBurgerContainer {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.subItemMenuBurger:hover {
  background: linear-gradient(215.75deg, #FAB912 15.3%, #FCD36A 40.05%, #F2BC32 67.64%, #C89F0E 96.44%);
  color: rgba(11, 20, 43, 1);
}

.subItemMenuBurgerContainer.active .itemMenuArrow {
  transform: rotateX(180deg);
}

.itemMenuBurger:hover .burgerMenuDropdown {
  display: block; 
}

.headerContainer {
  width: 100%;
  height: calc(100vh - 100px);

  position: relative;
  overflow: hidden;
}

.subItemMenuBurgerContainer {
  cursor: pointer;
    padding: 10px;
    display: inline-flex;
}

.dropdownContent {
  max-height: 0;
  overflow: hidden;
  padding: 0 10px;
  margin-top: 0;
  transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
}

.dropdownContent a {
  display: block;
  padding: 10px 0;
  text-decoration: none;
  color: rgba(255, 255, 255, 1);
}

.dropdownContent a:hover {
  background: linear-gradient(215.75deg, #FAB912 15.3%, #FCD36A 40.05%, #F2BC32 67.64%, #C89F0E 96.44%);
  color: rgba(11, 20, 43, 1);
}

/* Mostrar el menú con animación cuando se haga hover sobre el contenedor o el menú */
.dropdownContent.active {
  max-height: 300px; /* Aumenta este valor según el contenido */
  padding: 0 10px 10px;
}

.imageHeaderContainer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/mina-02.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transform: scale(1.2);
}

.headerTextContainer {
  height: 100%;
  width: 90%;
  max-width: 1400px;
  position: relative;
  margin: 0 auto;
  display: flex;
}

.headerTextContainer.topLeft {
  align-items: flex-start;
  justify-content: flex-start;
}
.headerTextContainer.centerLeft {
  align-items: center;
  justify-content: flex-start;
}
.headerTextContainer.bottomLeft {
  align-items: end;
  justify-content: flex-start;
}
.headerTextContainer.topCenter {
  align-items: flex-start;
  justify-content: center;
}
.headerTextContainer.center {
  align-items: center;
  justify-content: center;
}
.headerTextContainer.bottomCenter {
  align-items: end;
  justify-content: center;
}
.headerTextContainer.topRight {
  align-items: flex-start;
  justify-content: flex-end;
}
.headerTextContainer.centerRight {
  align-items: center;
  justify-content: flex-end;
}
.headerTextContainer.bottomRight {
  align-items: end;
  justify-content: flex-end;
}

.headerText {
  width: 60%;
  position: absolute;
  top: 50%;
  right: 0;
  text-align: center;
  /* background-color: rgba(10, 20, 45, 0.9); */
  background: rgb(2, 101, 94);
  background: linear-gradient(
    45deg,
    rgba(2, 101, 94, 0.6) 0%,
    rgba(10, 70, 120, 0.6) 50%,
    rgba(10, 20, 45, 0.6) 100%
  );
  padding: 60px 35px;
  transform: translateY(-50%) translatex(0);
}

.normalBox {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
}

.onlyTitle {
  padding: 70px 35px;
}

.headerText h1 {
  color: rgba(255, 255, 255, 1);
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
}

.titleHero.text-center {
  text-align: center;
}

.headerText h3 {
  color: rgba(255, 255, 255, 1);
  font-size: 40px;
  font-weight: 100;
  line-height: 1.1;
  text-align: left;
}

.panelContainer {
  width: 100%;
  background-color: rgba(11, 20, 43, 1);
  padding: 0;
  margin: 0;
  position: relative;
}

.panelInner {
  max-width: 1400px;
  min-height: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 0;
}

.slickContainer {
  height: 400px;
  width: 100%;
  position: relative;
}

.mapBackground {
  height: 100%;
  /* background-image: url(../images/mapa.png); */
  background-repeat: no-repeat;
  position: relative;
  background-position: center;
  background-size: 1400px;
}

.floatingTextContainer {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.floatingText {
  z-index: 1;
  height: auto;
  width: 50%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  /* background-color: rgba(10, 20, 45, 0.8); */
  background: rgb(10, 20, 45);
  background: linear-gradient(
    245deg,
    #0a142dcc 0%,
    #1a3b39cc 75%,
    #033748cc 100%
  );
  position: relative;
  padding: 30px 50px;
  position: absolute;
  top: 40%;
  transform: translateY(-50%) translateX(0);
  left: 50%;
}

.floatingText p {
  color: rgba(255, 255, 255, 1);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.2;
  text-align: left;
}

.floatingTextTitle {
  height: 40px;
  position: absolute;
  /* background-color: rgba(157, 124, 0, 1); */
  background: rgb(250, 185, 18);
  background: linear-gradient(
    90deg,
    rgba(250, 185, 18, 1) 0%,
    rgba(252, 211, 106, 1) 50%,
    rgba(242, 188, 50, 1) 79%,
    rgba(197, 136, 30, 1) 100%
  );
  padding: 5px 15px;
  top: -40px;
  left: -20px;
}

.floatingTextTitle h1 {
  color: rgba(10, 20, 45, 1);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.02;
}

.clearBackground {
  height: 100%;
  background: rgb(10, 20, 45);
  background: linear-gradient(245deg, #0a46784d 0%, #02655e4d 100%);
}

.contentContainer {
  display: flex;
  flex-direction: row;
  height: auto;
  width: 100%;
  position: relative;
  flex-wrap: nowrap;
  margin: auto;
}

.panelText {
  width: 40%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 50px;
  margin: auto 0;
  text-align: left;
}

.panelText h2 {
  color: rgba(255, 255, 255, 1);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 20px;
}

.panelText p {
  color: rgba(255, 255, 255, 1);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.2;
  text-align: left;
}

.outerImage {
  position: relative;
  width: 50%;
}

.outerImage img {
  z-index: 1;
}

.panelImage {
  width: 100%;
  aspect-ratio: 14 / 9;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.floatingSecondImage {
  position: absolute;
  height: 250px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  top: -70px;
  left: -130px;
}

.dualTextContainer {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.dualTextSection {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10%;
}

.dualTextPlainSection {
  width: 45%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5%;
}

.dualTextSection h2,
.dualTextPlainSection h2 {
  color: rgba(255, 255, 255, 1);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 20px;
}

.dualTextSection p,
.dualTextPlainSection p {
  color: rgba(255, 255, 255, 1);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.2;
  text-align: left;
}

.dualTextSection > span,
.dualTextPlainSection > span {
  color: rgba(255, 255, 255, 1);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
}

.imagePanelContainer {
  width: 100%;
  background-color: rgba(11, 20, 43, 1);
  padding: 0;
  margin: 0;
  position: relative;
  min-height: 500px;
  border-top: 3px solid rgba(218, 176, 26, 1);
  background-repeat: no-repeat;
  background-size: cover;
}

.backDropFilter {
  min-height: inherit;
  width: 100%;
  position: relative;
  background-color: rgb(0, 0, 0, 0.2);
}

.imagePanelInner {
  max-width: 1400px;
  min-height: inherit;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.imagePanelText {
  width: 55%;
  background-color: rgba(10, 20, 45, 0.3);
  padding: 90px 56px 80px;
  margin: 120px auto 120px;
}

.imagePanelText h2 {
  color: rgba(255, 255, 255, 1);
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  margin: auto 0;
  text-transform: uppercase;
}

.footerContainer {
  width: 100%;
  padding: 35px 0;
  background-color: rgba(11, 20, 43, 1);
  border-top: 3px solid rgba(218, 176, 26, 1);
}

.footerContent {
  max-width: 1400px;
  width: 90%;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  margin: 0 auto;
  justify-content: space-between;
  overflow: hidden;
}

.footerInnerContainer {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.footerContentImage {
  height: 50px;
  margin: 0 0 10px 0;
}


.footerEmail {
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  display: block;
  text-decoration: none;
}

.footerButtons, .footerTerms  {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-right: 30px;
}

.footerButtons {
  margin-bottom: 10px;
}

.footerTerms {
  margin-left: auto;
}
.footerItem {
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.2;
  text-align: left;
  display: block;
  text-decoration: none;
}

.footerTermsItem {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.2;
  text-align: left;
  display: block;
  text-decoration: none;
} 



/* Slick */

.slickContainer {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.slickUnit {
  width: 1000px;
  min-height: 600px;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 auto;
}

.slickTitleSection {
  width: 40%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 50px;
}

.slickDescriptionSection {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 50px;
}

.slickTitleSection h2 {
  color: rgba(255, 255, 255, 1);
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
}

.slickDescriptionSection p {
  color: rgba(255, 255, 255, 1);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.2;
  text-align: left;
}

.slickDescriptionSection span {
  color: rgba(255, 255, 255, 1);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
}

.panelSlick {
  width: 100%;
  height: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 30px;
  height: 30px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-next,
.slick-prev {
  background-color: rgba(157, 124, 0, 0.8);
}

.slick-next {
  right: 50%;
  margin-right: -600px;
}

.slick-prev {
  left: 50%;
  margin-left: -600px;
}

.slick-next-arrow {
  width: 25px;
  height: 25px;
  background-image: url(../images/arrow-next.png);
  background-position: center;
  background-size: contain;
  margin: auto;
}

.slick-prev-arrow {
  width: 25px;
  height: 25px;
  content: url(../images/arrow-prev.png);
  background-position: center;
  background-size: contain;
  margin: auto;
}

.yellowBlock {
  position: absolute;
  left: 50%;
  z-index: 4;
  background: linear-gradient(
    228.73deg,
    #fab912 3.93%,
    #fcd36a 37.02%,
    #f2bc32 73.91%,
    #c5881e 112.43%
  );
  transform-origin: right;
  transform: scaleX(0);
}

.blueBlock {
  left: 50%;
  position: absolute;
  z-index: 4;
  background: rgba(17, 37, 89, 1);
  transform-origin: left;
  transform: scaleX(0);
}

.clearBlock {
  left: 50%;
  position: absolute;
  z-index: 4;
  background: rgba(68, 89, 144, 1);
  opacity: 0.8;
  transform-origin: left;
  transform: scaleX(0);
}

.greenBlock {
  left: 50%;
  position: absolute;
  z-index: 4;
  background: rgba(18, 48, 50, 1);
  opacity: 0.8;
  transform-origin: right;
  transform: scaleX(0);
}

.blueGradientBlock {
  left: 50%;
  position: absolute;
  z-index: 4;
  background: linear-gradient(267.43deg, #0a4678 16.97%, #02655e 165.79%);
  opacity: 0.8;
  transform-origin: right;
  transform: scaleX(0);
}

.preloaderSvg {
  width: 436px;
  height: 141px;
}

.aboveSquare {
  z-index: 5;
}

/* Our Leadership  */

.messageContainer {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.fullMessageContainer {
  width: 80%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.messageContainer h2,
.fullMessageContainer h2 {
  color: rgba(255, 255, 255, 1);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 35px;
  position: relative;
}

.messageContainer p,
.fullMessageContainer p {
  color: rgba(255, 255, 255, 1);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.2;
  width: 100%;
  text-align: center;
}

.messageContainer span,
.fullMessageContainer span {
  font-weight: 600;
}

.yellowLine::before {
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 2px;
  width: 100%;
  background: linear-gradient(
    260.62deg,
    #fab912 6.94%,
    #fcd36a 35.06%,
    #f2bc32 66.41%,
    #c5881e 99.13%
  );
  content: "";
}

.bgYellowLinear {
  background: linear-gradient(
    260.62deg,
    #fab912 6.94%,
    #fcd36a 35.06%,
    #f2bc32 66.41%,
    #c5881e 99.13%
  );
}

.bgCover {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.notesContainer {
  width: 75%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch; 
  gap: 21px;
  flex-wrap: nowrap;
  padding: 500px 0 0px;
  margin: 0 auto;
}

.noteItem {
  width: calc(33.33% - 7px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}

.twoRows.notesContainer {
  display: grid;
  grid-template-columns: repeat(2, 33.33%);
  grid-auto-flow: dense;
  column-gap: 10px;
  justify-items: center;
  align-items: stretch;
  justify-content: center;
  padding-top: 0;
}

.notesContainer.twoRows .noteItem{
  width: unset;
}

.noteTop {
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  padding: 15px 30px;
}

.noteTop h2 {
  color: rgba(10, 20, 45, 1);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-align: left;
  margin-right: 20px;
}

.noteTop img {
  width: 45px;
  height: 45px;
}

.noteItem p {
  min-height: 300px;
  color: rgba(255, 255, 255, 1);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.2;
  text-align: left;
  padding: 30px;
  background: linear-gradient(
    252.09deg,
    #0a142d 1.04%,
    #1a3b39 58.42%,
    #033748 115.8%
  );
}

.panelTextleadership {
  width: 55%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 70px 0 40px;
  margin: auto 0;
  text-align: left;
}

.panelTextleadership p {
  color: rgba(255, 255, 255, 1);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 20px;
}

.panelTextleadership h2 {
  color: rgba(10, 20, 45, 1);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 30px;
  padding: 0 20px;
}

.panelTextleadership span {
  font-weight: 600;
}

.panelImageleadership {
  height: 90%;
  aspect-ratio: 14 / 12;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
  margin: auto;
}

.smallPanelsContainer {
  width: 90%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  row-gap: 30px;
  flex-wrap: wrap;
  margin: -100px auto 0;
}

.smallPanel {
  position: sticky; 
  min-height: 500px;
  color: rgba(255, 255, 255, 1);
  width: calc(33.3% - 30px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px;
  overflow-y: auto;
  background: rgba(10, 70, 120, 0.6);
  background: linear-gradient(
    45deg,
    rgba(2, 101, 94, 0.6) 0%,
    rgba(10, 70, 120, 0.6) 50%,
    rgba(10, 20, 45, 0.6) 99%,
    rgba(10, 20, 45, 0.6) 100%
  );
  transition: all 0.3s ease-in-out;
}

.smallPanel::after {
  content: ''; 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(260.62deg, #fab914 6.94%, #fcd36a 35.06%, #f2bc32 66.41%, #c5881e 99.13%);
  opacity: 0; 
  transition: opacity 0.3s ease-in-out;
  z-index: -1; 
}

.smallPanel:hover::after {
  opacity: 1;
}

.smallPanel p {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 20px;
  height: 0px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  interpolate-size: allow-keywords;
}

.smallPanel h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}

.smallPanel:hover {
  color: rgba(10, 20, 45, 1);
}

.smallPanel:hover p {
  color: rgba(10, 20, 45, 1);
  font-weight: 300;
  height: auto;
}

.smallPanel:hover h2 {
  color: rgba(10, 20, 45, 1);
}

/*about us*/

.lateralMessageContainer {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.lateralMessage {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: flex-start;
  padding: 5%;
  margin: 350px 0 0;
  background: linear-gradient(
    252.09deg,
    rgba(10, 20, 45, 0.8) 1.04%,
    rgba(26, 59, 57, 0.8) 58.42%,
    rgba(3, 55, 72, 0.8) 115.8%
  );
  align-items: flex-start;
}

.lateralMessage h2 {
  color: rgba(255, 255, 255, 1);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 35px;
  position: relative;
}

.lateralMessage p {
  color: rgba(255, 255, 255, 1);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 30px;
}

.lateralMessage p:last-of-type {
  margin-bottom: 0;
}

.lateralMessage br {
  margin-bottom: 10px;
}

/* Responsibility */

.iconCardCOntainer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: stretch;
  width: 90%;
  gap: 10px;
  margin: 0 auto;
}

.iconCard {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  flex-wrap: nowrap;
  padding: 20px;
  width: calc(25% - 10px);
  background: linear-gradient(
    45deg,
    rgba(2, 101, 94, 0.6) 0%,
    rgba(10, 70, 120, 0.6) 50%,
    rgba(10, 20, 45, 0.6) 100%
  );
}

.iconCard img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.iconCard p {
  color: rgba(255, 255, 255, 1);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.2;
  text-align: center;
}

/* .iconCard span {
    font-weight: 600;
  } */

.dualTableContainer {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  padding: 100px 0 65px;
  margin: 0 auto;
}

.dualTableText {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0px 80px 30px;
}

.dualTableText h2 {
  position: relative;
  color: rgba(255, 255, 255, 1);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 20px;
  margin: auto 0;
}

.dualTable {
  width: 40%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 20px;
  margin: 0 auto 0 0;
  text-align: left;
  background: linear-gradient(
    45deg,
    rgba(2, 101, 94, 0.6) 0%,
    rgba(10, 70, 120, 0.6) 50%,
    rgba(10, 20, 45, 0.6) 100%
  );
}

.dualTableItem {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 0px;
  border-bottom: 1px solid #fff;
}

.dualTableItem:last-of-type {
  border-bottom: none;
}

/* .dualTableItem h3 {
  color: rgba(255, 255, 255, 1);
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
  text-align: left;
  margin-right: 20px;
}

.dualTableItem span {
  font-weight: 600;
} */

.whiteLine {
  height: 2px;
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
}

.whiteLine:last-of-type {
  display: none;
}

@media (min-width: 2000px) {
  .headerContainer {
    height: 1200px;
  }
}
@media only screen and (max-width: 1600px) {
  /* .topNavBarContent {
    padding: 0 7.5%;
  }

  .headerText {
    right: 5%;
  }

  .footerContent {
    padding-left: 7.5%;
  } */

  .notesContainer {
    width: 90%;
  }
}

@media only screen and (max-width: 1450px) { 
  .topNavBarIcon{
    max-width: 200px;
  }
  .topNavBarButtons{
    gap: 0;
  }

  .itemMenu{
    gap: 3px;
  }

  .itemMenuLogin{
    padding: 5px 10px;
    font-size: 16px;
  }

  .menuTextBold, .menuText {
    font-size: 16px;
  }
}

@media only screen and (max-width: 1024px) {
  .itemMenuBurger {
    display: block;
  }
  .footerItem{
    width: 100%;
  }
  .itemMenu, .itemMenuContainer {
    display: none;
  }

  .panelInner {
    width: 630px;
    min-height: 800px;
  }

  .headerText {
    position: relative;
    margin: auto;
    right: unset;
    width: 100%;
  }

  .topNavBarContent {
  }

  .slickUnit {
    flex-direction: column;
    margin: auto;
    justify-content: center;
  }

  .slickTitleSection,
  .slickDescriptionSection {
    width: 100%;
    padding: 0;
    height: auto;
  }
  .slickTitleSection {
    padding-bottom: 30px;
  }

  .floatingTextContainer {
    flex-wrap: wrap;
  }

  .floatingText {
    position: relative;
    margin: auto;
    transform: none;
    left: initial;
    top: initial;
    margin-bottom: -20%;
    width: 70%;
  }

  .contentContainer {
    flex-direction: column-reverse;
    align-items: center;
  }

  .panelImage {
    height: 500px;
    width: 100%;
  }

  .panelText {
    width: 100%;
    padding: 0;
    margin: 0;
    height: auto;
    padding-top: 30px;
  }
  .floatingSecondImage {
    height: 250px;
    right: -50px;
    left: unset;
    top: -70px;
  }

  .dualTextContainer {
    flex-direction: column;
    padding: 0;
    justify-content: center;
    gap: 90px;
  }
  .dualTextSection,
  .dualTextPlainSection {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    height: auto;
  }

  .imagePanelText {
    width: 80%;
    padding: 50px 30px;
  }

  .footerContent {
    padding: 0 5%;
  }
  

  .footerContentImage {
    height: 40px;
  }

  .footerContent {
    margin: auto;
    flex-direction: column;
    align-items: unset;
    gap: 20px;
  }

  .footerContent p {
    font-size: 16px;
  }

  .footerButtons, .footerTerms {
    gap: 10px;
    margin-right: 0;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .footerTerms {
    margin-left: 0;
  }

  .outerImage {
    width: 100%;
  }

  /* Our Leadership  */

  .messageContainer {
    width: 90%;
  }

  .notesContainer {
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 0;
  }

  .twoRows.notesContainer {
    grid-template-columns: repeat(2, calc(50% - 5px));
  }

  .noteItem {
    width: 400px;
    margin: 0 auto;
  }

  .panelTextleadership {
    width: 100%;
    padding: 30px 0 0;
  }

  .smallPanel {
    width: 100%;
  }

  /* About Us */

  .lateralMessage {
    width: 100%;
    margin: auto auto 60px;
  }

  /* Responsibility */

  .iconCardCOntainer {
    flex-wrap: wrap;
  }

  .iconCard {
    width: calc(50% - 5px);
  }

  .dualTableContainer {
    flex-direction: column;
    align-items: flex-start;
  }

  .dualTable {
    width: 100%;
    padding: 20px;
    margin: 0;
  }

  .dualTableText {
    width: 100%;
    padding-left: 0;
    margin-right: 0;
  }

  .dualTableItem h3 {
    margin-right: 0;
  }
}

@media only screen and (max-width: 768px) {
  .iconCard {
    width: 100%;
    min-height: initial;
  }
  .noteTop h2 {
    font-size: 22px;
  }
  .noteItem p {
    font-size: 18px;
  }
  .topNavBarIcon {
    margin: auto auto auto 0;
    max-width: 200px;
  }

  .dualTextContainer {
    gap: 20px;
  }

  .panelInner {
    width: 90%;
    min-height: 600px;
  }

  .panelImage {
    width: 100%;
  }

  .headerText {
    width: 90%;
    padding: 40px 20px;
  }

  .headerText h1 {
    font-size: 36px;
  }

  .headerText h3 {
    font-size: 30px;
  }

  .slickTitleSection h2 {
    font-size: 32px;
  }

  .floatingText {
    width: 85%;
    padding: 15px;
  }

  .mapBackground {
    background-size: 800px;
  }

  .floatingTextTitle h1 {
    font-size: 28px;
  }

  .floatingText p {
    font-size: 22px;
  }

  .panelImage {
    height: 350px;
  }

  .floatingSecondImage {
    height: 190px;
    right: -20px;
    left: unset;
    top: -50px;
  }

  .imagePanelText {
    width: 90%;
    padding: 30px 15px;
  }

  .imagePanelText h2 {
    font-size: 32px;
  }

  /* Our Leadership  */

  .messageContainer {
    width: 90%;
  }

  

  .twoRows.notesContainer {
    grid-template-columns: repeat(1, 90%);
  }

  .noteItem {
    width: 90%;
  }

  /* About Us */

  .fullMessageContainer {
    width: 100%;
  }
}

@media only screen and (max-width: 400px) {
  .headerText {
    width: 340px;
  }

  .slickTitleSection h2 {
    font-size: 28px;
  }

  .itemMenuLogin {
    padding: 10px 15px;
  }

  .topNavBarButtons {
    gap: 10px;
  }

  .headerText h1 {
    font-size: 32px;
  }

  .headerText h3 {
    font-size: 28px;
  }

  .preloaderSvg {
    width: 300px;
    height: 70px;
  }

  /* Our Leadership  */

  .messageContainer {
    width: 100%;
  }

  .noteItem {
    width: 100%;
  }

  .noteTop {
    padding: 15px;
  }

  .noteItem p {
    padding: 15px;
  }

  /* Responsibility */

  .dualTableItem img {
    margin-right: 15px;
    width: 80px;
    height: 80px;
  }

  .iconCard {
    width: 100%;
    margin: auto;
  }
}
