@keyframes growShrink {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.title-mm-resourse{
  color: var(--Typography-Heading, #252630);
  font-variant-numeric: oldstyle-nums proportional-nums;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 90%; /* 21.6px */
  font-variant: small-caps;
  padding: 1.5rem 0;

}
.topSecAndHeaderOuter {
  margin-top: 140px;
}
.topSecAndHeaderWrapper {
  position: fixed;
  width: 100%;
  top: 0px;
  z-index: 999;
  transform: translateY(0%);
  will-change: transform;
  transition: all .2s ease;
}
.headroom--unpinned {
  transform: translateY(-100%);
}

.section-markets-overview {
  color: #0F7C95;
  font-variant-numeric: oldstyle-nums proportional-nums;
  text-shadow: -3px 3px 5px rgba(24, 81, 97, 0.25);
  font-family: Roboto;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 17px */
  font-variant: small-caps;
  letter-spacing: 0.51px;
  display: flex;
  align-items: flex-start;
  animation: growShrink 4s infinite ease-in-out; /* Apply the grow/shrink animation */
}

.section-services-overview {
  color: #545394;
  font-variant-numeric: oldstyle-nums proportional-nums;
  text-shadow: -3px 3px 5px rgba(71, 79, 143, 0.26);
  font-family: Roboto;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 17px */
  font-variant: small-caps;
  letter-spacing: 0.51px;
  display: flex;
  align-items: flex-start;
  animation: growShrink 4s infinite ease-in-out; /* Apply the grow/shrink animation */
}





.shadow {
  box-shadow: 0px 4px 34px 0px rgba(0, 0, 0, 0.25);
}

.fixed-top {
  position: fixed; /* Fix the div to the top of the screen */
  top: 0; /* Position it at the top */
  left: 0; /* Align it to the left */
  width: 100%; /* Make it span the full width of the screen */
  z-index: 1000; /* Ensure it stays above other content */
  background-color: #fff; /* Optional: Set a background color */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow for better visibility */
}

/* Base style for the div */
.grow-div {transition: transform 0.3s ease-in-out;}
.grow-div:hover {transform: scale(1.1);}

.page-center{
  float: none !important;
  margin: 0 auto !important;
  max-width: 1295px !important;
  padding: 0 50px !important;
}
/* styles.css */
.mega-menu-outer {
  //position: fixed; /* Fix the div to the top of the screen */
  //top: 39px; /* Position it at the top */
  //left: 0; /* Align it to the left */
  //width: 100%; /* Make it span the full width of the screen */
  //z-index: 1000; /* Ensure it stays above other content */
  background-color: #fff; /* Optional: Set a background color */
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.10); /* Optional: Add a shadow for better visibility */
  //transition: top 0.3s ease-in-out; /* Smooth transition for showing/hiding */
}

.mega-menu-outer li.menu-item:hover .mega-menu-repeater-outer {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.5s ease;
  z-index:9999;
}

.mega-menu-outer .mega-menu-repeater-outer {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 100%;
  margin: 0 auto;
  transition: opacity 0.5s ease, visibility 0s 0.5s;
  left: 0;
  right: 0;
  top: 155px;
}

.mega-menu-outer ul.menu-menu-inner-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: unset !important;
}

.mega-menu-outer .mega-menu-columns-repeater {
  /*   display: flex;
  flex-wrap: wrap;
  align-items: center; 
  gap: 50px;  */
  display: grid;
  grid-template-columns: 3fr 1fr;
  flex-wrap: wrap;
  align-items: start; /* Align content to the top */
  gap: 40px;
  padding: 10px 40px;
  ms-grid-column-span: 1 !important;
  -ms-grid-row-span: 2 !important;
}
.mega-menu-outer .mega-menu-columns {
  /*   padding: 50px 0 50px 50px; */
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-column: span 1;
  ms-grid-column-span: 1 !important;
  -ms-grid-row-span: 2 !important;
  grid-column: span 1;
  column-gap: 40px;
}
.mega-menu-outer .mega-menu-columns .mega-menu-column-inner a{
  cursor:pointer;
  display: block !important;
  width: 100%;
}
.mega-menu-outer .mega-menu-columns .mega-menu-column-inner {
  flex: 0 30%;
  /*   width: 300px;*/
  height: 90px; 
  display:flex;
  align-items:center;
  /*   padding: 24px 0; */
  position: relative;
  transition: 0.1s;
}
/* .mega-menu-outer ul li .mega-menu-repeater-outer.active {
  display: block;
  position: absolute;
  width: 100%;
  right: 0;
  left: 0;
  top:148px;
} */
.mega-menu-repeater-outer {
  background: #F9FBFE;
  position: relative;
  z-index: 9999;
}
.mega-menu-top-section-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 12px;
}  
/*  .mega-menu-top-section-wrapping {
display: flex;
align-items: center;
gap: 20px;
flex-wrap: wrap;
padding: 30px 30px 30px 160px;
}  */
.mega-menu-outer .drop-down-menu{
  display:none;
}
.mega-menu-outer .mega-menu-column-inner:hover .drop-down-menu{
  display:block !important;
  position:absolute;
  padding-top: 20px;
  top: 90px;

}
.drop-down-menu .hs-menu-wrapper ul {
  display: block !important;
}
.search-box
{
  top : 50%;
  border-radius : 0px;
  padding-left: 10px;
}
.search-btn
{

  float : right;
  width : 55px;
  height: 100%;
  display:flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition:0.4s;
}
.mega-menu-outer .search-box input[type=text].search-txt
{
  border:none;
  background:#F8FAFE;
  outline:none;
  float:left;
  padding: 0px;
  color: #7E838A;
  font-size:16px;
  transition : 0.4s;
  line-height: 0px;
  width : 0px;

}
.mega-menu-outer .search-box:hover > input[type=text].search-txt
{
  width: 150px;
  padding: 0px 15px;
  display: flex;
  align-items: center;
  align-self: stretch;

}
.search-box:hover > .search-btn
{
  background: #F8FAFE;
  display: flex;
}
input.search-txt {
  font-family: Roboto !important;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  color: #A2A2A2;
}
a.search-btn img {
  max-width: none !important;

}
.header-menu-button a {
  padding: 15px 19.57px 15px 19.57px;
  font-family: Roboto;
  font-size: 17px;
  font-weight: 600;
  line-height: 22.83px;
  letter-spacing: 0.14em;
  text-decoration: none;
  color: #fff !important;
  background: #F18D3D;
  border-radius: 4px;
  font-variant: small-caps;
  font-variant-numeric: oldstyle-nums proportional-nums;
}
.header-menu-button a:hover {
  background: #FBA35C;
  color:#fff !important;
}
.header-menu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width:150px;
}

.mega-menu-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.mega-menu-inner-logo {
  //flex: 0 29%;
  width: 100px;
}
.menu-menu-inner-wrap {
  /*   flex: 0 40% */
}
.menu-menu-inner-wrap .menu-item a {
  color: #252630;
  display: block;
  font-family: Roboto;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 20px;
  margin: 10px 15px;
  text-align: left;
  text-decoration: none;
  font-variant: small-caps;
  font-variant-numeric: oldstyle-nums proportional-nums;
}
.mega-menu-start-wrapp {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  //flex: 0 56%;
  width: calc(100% - 250px);
  padding-right: 10px;
}
.menu-menu-inner-wrap {
  list-style: none;
  padding: 0
}
.header-menu-search-icon img {
  width: 50px;
  height: auto;
}
.header-menu-search-icon {
  flex: 0 6%;
  cursor: pointer;
}
.mega-menu-column-content span {
  font-variant: small-caps;
  font-variant-numeric: oldstyle-nums proportional-nums;
}
.mega-menu-custom-column .custom-link.bottom-border a {
  font-variant: small-caps;
  font-variant-numeric: oldstyle-nums proportional-nums;
}
.mega-menu-top-section {
  width: 100%;
  position: relative;
  background: linear-gradient(90deg, #0A4E96 0%, #BE161D 100%); 
  /* height: 97px; */
  padding: 30px 0px 40px 0px; 
}
.menu-menu-inner-wrap>li {
  padding: 30px 0;
}
.mega-menu-top-section:before {
  background-image: url(https://139845867.fs1.hubspotusercontent-eu1.net/hubfs/139845867/Waves.svg);
  background-size: cover;
  background-position: bottom;
  content: "";
  display: inline-block;
  height: 26px;
  position: absolute;
  width: 100%;
  background-repeat: no-repeat;
  z-index: 1;
  bottom: 0;
  left: 0px;
}
.mega-menu-top-section-image img {
  width: 52px;
  height: auto;
}
.mega-menu-top-section-heading h2 { 
  font-family: Roboto;
  font-size: 24px;
  font-weight: 500;
  line-height: 21.6px;
  text-align: left;
  color: #FFFFFF;
  margin: 0px auto !important;
  font-variant: small-caps;
  font-variant-numeric: oldstyle-nums proportional-nums;
  letter-spacing: 1px;
  text-shadow: -2px 4px 10px rgba(38, 71, 106, 0.90);
}
.mega-menu-top-section-content p {
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  text-align: left;
  color: #FEFFFF;
  margin: 0px auto !important;
}   
.mega-menu-column-inner:hover{
  animation: growShrink 4s infinite ease-in-out; /* Apply the grow/shrink animation */
}
.mega-menu-column-inner a {
  display: flex !important;
  align-items: center;
  gap: 20px;

}
.mega-menu-column-image p {
  margin-bottom: unset !important;
}
.mega-menu-custom-column {
  flex: 0 25%;
}   
.mega-menu-repeater-outer {
  padding-bottom: 30px;
  box-shadow: 0px 4px 34px 0px rgba(0, 0, 0, 0.25);



}




.recent-blog-post-inner {
  display: block;
}

.recent-blog-post-image img {
  width: 100%;
  height: auto;
  border-radius: 7px 0px 0px 0px; 
}

.recent-blog-post-tag a {
  color: #0F7D95 !important;
  font-kerning: none!important;
  font-variant-numeric: oldstyle-nums proportional-nums;
  font-feature-settings: 'liga' off;
  font-family: Roboto!important;
  font-size: 16px!important;
  font-style: normal!important;
  font-weight: 600!important;
  line-height: 20px!important; /* 166.667% */
  font-variant: small-caps!important;
  padding-bottom: 0px !important;
  letter-spacing: 1px!important;
  padding: 1rem 0 1.5rem 0;

}

.recent-blog-post-heading a {
  color:#252630!important;
  font-kerning: none!important;
  font-family: Roboto;
  font-size: 20px!important;
  font-style: normal!important;
  line-height: 108%!important; /* 21.6px */
  font-variant: none!important;
  margin-top: 0.5rem;
  font-weight: 500!important;  
  line-height: 120%!important;
  letter-spacing: -0.1px!important;
}

.recent-blog-post-button a {
  padding: 18px 40px 18px 22px !important;
  gap: 10px;
  border-radius: 3px;
  font-family: Roboto !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 21px !important;
  letter-spacing: 0.14em !important;
  text-decoration: none !important;
  background-color: #F5F7FB;
  color: #0A4E96 !important;
  text-align: left !important;
  position: relative;
  cursor: pointer;
  display: inline-block !important;
  border-color: #0A4E96;
  border: 1px solid var(--Ocean, #0A4E96);
}


.recent-blog-post-button {
  position: relative; /* Ensure the parent element is positioned */
  text-align: right;
  align-items: center; /* Center items vertically */
}
.recent-blog-post-button a::after {
  content: '';
  position: absolute;
  right: 34px; /* Adjust as needed to align with text */
  top: 50%; /* Center vertically */
  transform: translateY(-50%); /* Adjust for perfect vertical alignment */
  width: 9px;
  height: 12px;
  background-size: contain;
  background-image: url('https://139845867.fs1.hubspotusercontent-eu1.net/hubfs/139845867/Group%20(1).svg');
}
.recent-blog-post{
  border-left: 2px solid #CED1DE;
  padding-left: 30px;
}

{# custome module design #}

.custom-content{
  display: block;
}

.custom-content-image img {
  width: 100%;
  height: auto;
}

.mega-menu-col-04-resource img {
  width: 79px;
  height: auto;
}

.custom-content h3 {
  font-family: Roboto;
  font-size: 24px;
  font-weight: 600;
  line-height: 21.6px;
  text-align: left;
  color: #252630;
  padding-top:10px;
  margin: unset;
  padding-bottom: 20px;
  font-variant-numeric: oldstyle-nums proportional-nums;
}

.custom-content-button-group a {
  padding: 16px 22px 19px 22px !important;
  border-radius: 3px;
  font-family: Roboto !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 21px !important;
  letter-spacing: 0.14em !important;
  text-align: left;
  text-decoration: none;
  background-color: #F5F7FB !important;
  color: #0A4E96 !important;
  cursor: pointer;
  display:unset !important;
  margin-top: 12px;
}
.custom-content-tag span::before {
  content: '';
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url('https://139845867.fs1.hubspotusercontent-eu1.net/hubfs/139845867/bookmark.svg');
  padding: 10px;
}
.custom-content-button-group {
  text-align: right;
  padding-top: 12px;
}
.custom-content-tag span {
  color: #545394 !important;
  font-kerning: none!important;
  font-variant-numeric: oldstyle-nums proportional-nums;
  font-feature-settings: 'liga' off;
  font-family: Roboto!important;
  font-size: 16px!important;
  font-style: normal!important;
  font-weight: 600!important;
  font-variant: small-caps!important;
  padding-bottom: 0px !important;
  letter-spacing: 1px!important;
  text-align: left;
  position:relative;
  padding-left: 20px;
}
.custom-content-button-group:hover{
  animation: growShrink 4s infinite ease-in-out; /* Apply the grow/shrink animation */
}
.custom-content-button-group a:hover {
  color: #fff !important;
  background-color: #FBA35C !important;
  box-shadow: 7px 7px 24px 0px rgba(0, 0, 0, 0.13);


}
.custom-content {
  border-left: 2px solid #CED1DE;
  padding-left: 30px;
}
.drop-down-menu li.hs-menu-item.hs-menu-depth-1:last-child {
  border-bottom: 2px solid #CED1DE;
}
.custom-tag-content-tagline span {
  font-family: Roboto;
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  text-align: left;
  color: #545394;
  position: relative;
  padding-left: 17px;
  font-variant: small-caps;
  font-variant-numeric: oldstyle-nums proportional-nums;
}

.custom-tag-content-heading h3 {
  font-family: Roboto;
  font-size: 24px;
  font-weight: 600;
  line-height: 21.6px;
  text-align: left;
  color: #252630;
  font-variant: small-caps;
  font-variant-numeric: oldstyle-nums proportional-nums;
  margin-bottom: unset;
  padding-top: 1rem;
  padding-bottom: 20px;
}

/* Secondary Button */
.custom-tag-content-button a {
  padding: 18px 40px 18px 22px !important;
  gap: 10px;
  border-radius: 3px;
  font-family: Roboto !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 21px !important;
  letter-spacing: 0.14em !important;
  text-decoration: none !important;
  background-color: #F5F7FB;
  color: #0A4E96 !important;
  text-align: left !important;
  position: relative;
  cursor: pointer;
  display: inline-block !important;
}

.custom-tag-content-button a:hover {
  box-shadow: 7px 7px 24px 0px rgba(0, 0, 0, 0.13);
  transform: scale(1.025); 
  animation: growShrink 4s infinite ease-in-out; /* Apply the grow/shrink animation */
}

.custom-tag-content-button {
  position: relative; /* Ensure the parent element is positioned */
  text-align: right;
  align-items: center; /* Center items vertically */
}

.custom-tag-content-button:after {
  content: '';
  position: absolute;
  right: 34px; /* Adjust as needed to align with text */
  top: 50%; /* Center vertically */
  transform: translateY(-50%); /* Adjust for perfect vertical alignment */
  width: 9px;
  height: 12px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(https://139845867.fs1.hubspotusercontent-eu1.net/hubfs/139845867/Button%20Icons.svg);
}
/* Secondary Button END */




.custom-tag-content-tagline span::before {
  content: '';
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(https://139845867.fs1.hubspotusercontent-eu1.net/hubfs/139845867/bookmark.svg);
}
.custom-tag-content.left-border {
  border-left: 2px solid #CED1DE;
  padding-left: 30px;
}
.custom-tag-content-heading {
  padding-top: 10px;
}
.custom-tag-content-button {
  text-align: end;
}


{#  --------------- Search Result CSS  -------------------  #}

.search-container {
  display: none; /* Hide the search container by default */
}

.search-container.open {
  display: block; /* Show the search container when it has the 'open' class */
}

.search-container {
  cursor: pointer;
  position: relative;
}

.search-outer.search-open input {
  position: unset !important;
  width: 100% !important;
  height: auto !important;
  transition: 1s;
  border: none !important;
  background-color: #007A69 !important;
  opacity: 1 !important;
  color: #fff !important;
  padding: 0px !important;
  font-family: Roboto !important;
  font-size: 14px !important;
  line-height: 16px;
}

.search-input {

  width: 100%;
  padding-left: 40px;
  background-color: #D8E4EC !important;
  height: 40px;
  border: 1px solid #D8E4EC !important;
  border-radius: 4px;
}

.search-item-main {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}

#search-icon-main, #search-icon-inner {
  width: 100%;
  height: auto;
  padding-left: 1rem;
}

.search-image-logo img {
  width: 100%;
  height: auto;
}
.search-outer.search-open input.error::placeholder {
  color: #fff; /* Error placeholder color */
  opacity: 1; /* Fully opaque */
}
.search-outer.search-open input::placeholder {
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #252630;
  font-family: Roboto;
  font-size: .875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1812500000000001rem;
  min-height: 3.5rem;
  text-decoration: none;
}
{#  ------------ Mobile menu design -----------#}


.page-center-mobile {
  float: none !important;
  margin: 0 auto !important;
  max-width: 1295px !important; 
}

.mega-menu-mobile-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 30px;

}
.mega-menu-mobile-logo img {
  width: 73px;
  height: auto;
}

.mega-menu-mobile-button a {
  padding: 15px 19.57px 15px 19.57px;
  font-family: Roboto;
  font-size: 17px;
  font-weight: 600;
  line-height: 22.83px;
  letter-spacing: 0.14em;
  text-decoration: none;
  color: #F9FBFE;
  background: #F18D3D;
  border-radius: 4px;
  font-variant: small-caps;
  font-variant-numeric: oldstyle-nums proportional-nums;
}

.mega-menu-mobile-button a:hover {
  background: #FBA35C;
  box-shadow: 7px 7px 24px 0px rgba(0, 0, 0, 0.13);
  transform: scale(1.025); 
  animation: growShrink 4s infinite ease-in-out; /* Apply the grow/shrink animation */
  position: relative; /* Ensure the element is positioned above others */
  z-index: 10; /* Adjust z-index to ensure shadow is visible */
}

/* Optional: Define the growShrink animation */
@keyframes growShrink {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.025);
  }
}
.menu-mobile h6 {
  align-items: center;
  background: #195A9E80;
  border-radius: 3px;
  display: flex;
  gap: 10px;
  padding: 18px;
  font-family: Roboto;
  font-size: 17px;
  font-weight: 600;
  line-height: 21px;
  letter-spacing: 0.14em;
  text-align: left;
  color: #FFFFFF;
  position:relative;
  margin-bottom: unset;
  font-variant: small-caps;
  font-variant-numeric: oldstyle-nums proportional-nums;
} 

.mega-menu-mobile-repeater ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mega-menu-mobile-repeater ul li a {
  text-decoration: none;
}
.menu-mobile h6::after {
  content: url('https://139845867.fs1.hubspotusercontent-eu1.net/hubfs/139845867/Group%20(2).svg');
  display: inline-block;
  width: 12px;
  height: auto;
  margin-left: 8px;
  transition: transform 0.3s ease;
  vertical-align: middle;
  right: 20px;
  position: absolute;
} 
.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  cursor: pointer;
}
.menu-icon div {
  background-color: #0A4E96;
  height: 4px;
  width:36px;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.menu-icon.active .bar1 {
  transform: rotate(-45deg) translate(-9px, 4px);
}
.menu-icon.active .bar2 {
  opacity: 0;
}
.menu-icon.active .bar3 {
  transform: rotate(45deg) translate(-10px, -5px);
}
.mega-menu-mobile-droper{
  display:none;
}
.mega-menu-mobile-logo {
  flex: 0 80%;
}

.mega-menu-mobile-button {
  flex: 0 15%;
}
.mega-menu-mobile-droper {
  background: #0F4175;
  overflow: scroll;
  height: 85vh;
  overflow-x: hidden;
}

.mega-menu-mobile-repeater {
  padding: 25px 20px 0px 20px;
}
.mega-menu-mobile-menu span {
  font-family: Roboto;
  font-size: 18px;
  font-weight: 400;
  line-height: 25.2px;
  text-align: left;
  color: #FFFFFF;
  padding-left: 18px;
}
.mega-menu-mobile-repeater.sviactive .menu-mobile h6::after{
  rotate: 90deg;
  transition: transform 0.3s ease;
}
.mega-menu-mobile-menu span:hover {
  color: #F18D3D;
}
.mega-menu-mb-outer{
  display:none;
}
.mega-menu-mobile-social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.mega-menu-mobile-copyrights p {
  font-family: Roboto;
  font-size: 12px;
  font-weight: 400;
  line-height: 18.48px;
  text-align: center;
  color: #FFFFFF;
}

.mega-menu-mobile-copyrights {
  padding-bottom: 20px;
}
.mega-menu-mobile-menu {
  padding-left: 13px;
  padding-top: 13px;
}
.mega-menu-mobile-outer {
  display: none;
  box-shadow: 0px 4px 34px 0px rgba(0, 0, 0, 0.25);

}

{# -----------------------media querry----------------------------- #}
@media (max-width: 1240px) {
  .mega-menu-inner-logo {
    //flex: 0 15%;

  }
  .mega-menu-start-wrapp {
    //flex: 0 67%;
    padding-right: 10px;


  }
}
@media (max-width: 1070px) {
  .menu-menu-inner-wrap .menu-item a {
    margin:10px;
  }
}
@media (max-width: 1040px) {
  .mega-menu-start-wrapp {
    //flex: 0 70%;
    padding-right: 10px;

  }
  .mega-menu-inner-logo {
    //flex: 0 10%;
  }
}
@media (max-width: 1080px) {
  .mega-menu-outer .mega-menu-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .recent-blog-post {
    padding-left: 0px;
  }
  .custom-tag-content-button:after {
    top: 78%;
  }
  .custom-content {
    padding-left: 20px;
  }
  .custom-tag-content.left-border {
    padding-left: 20px;
  }
  .mega-menu-outer .mega-menu-columns-repeater {
    grid-template-columns: 3fr 1fr;
    align-items: start; /* Align content to the top */

  }
  .mega-menu-outer .mega-menu-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .mega-menu-column-inner a {
    gap: 10px;
  }
  .mega-menu-outer .mega-menu-columns {
    column-gap: 30px;
  }
  .mega-menu-outer .mega-menu-columns-repeater {
    gap: 30px;
  }
}
@media (max-width: 1000px) {
  .mega-menu-mobile-outer {
    display: block;
    //position: fixed;
    top:40px;
    z-index: 11;
    background-color: #fff;
    width:100%;
  }
  .mega-menu-outer {
    display: none;
  }
  .mega-menu-mobile-repeater ul li a.megamenu-off .menu-mobile h6::after {
    display:none;
  }
  .mega-menu-mobile-wrap {
    display: grid;
    align-items: center;
    grid-template-columns: 13fr 4fr 1fr 1fr !important;
    padding: 10px 20px;
  }
  li.menu-item {
    font-variant: unset;
  }
  .mega-menu-mobile-menu span {
    font-size: 14px;
  }
  .fixedMegaMenuOuter {
    margin-top: 0px;
  }
  .topSecAndHeaderOuter {
    margin-top: 115px;
  }
  .headroom--unpinned {
    transform: translateY(0%);
  }
}
@media (max-width: 800px) {
  .mega-menu-mobile-wrap {
    grid-template-columns: 13fr 6fr 1fr 1fr !important;
  }
}
@media (max-width: 600px) {
  .mega-menu-mobile-wrap {
    grid-template-columns: 13fr 8fr 1fr 1fr !important;
  }
}
@media (max-width: 480px) {
  .mega-menu-mobile-menu span {
    padding-left: 0px;
  }
  .mega-menu-mobile-button a {
    font-size:13px!important; 
    padding:15px 13.57px!important;
  }
  .mega-menu-mobile-wrap {
    display: grid;
    align-items: center;
    grid-template-columns: 20fr 11fr 2fr 1fr !important;
    padding: 10px 20px;
  }
}
@media (max-width: 391px) {
  .mega-menu-mobile-wrap {
    grid-template-columns: 14fr 11fr 2fr 1fr !important;
  }
}
@media (max-width: 320px) {
  .mega-menu-mobile-wrap {
    grid-template-columns: 9fr 11fr 2fr 1fr !important;
  }
}