/*
Theme Name: ICS
Theme URI: https://theintechgroup.com/
Author: Intech
Author URI: https://theintechgroup.com/
Description: A custom WordPress theme named ICS.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ics_group
Tags: custom-theme, responsive, clean-design
*/

@tailwind base;
@tailwind components;
@tailwind utilities;

body {
  margin: 0;
  font-family: "Inter";
  color: #000027;
  @apply bg-navy;
}
p {
  margin: 0;
}

/* gradient color  */
.gradient{
  @apply bg-gradient-to-r from-purple via-pink to-primary;
}
.gradient-btn {
  .background-gradient{
    @apply bg-gradient-to-r from-purple via-pink to-primary;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    transition: left 0.5s ease-in-out;
    top:0;
  }
  .background-purple{
    background: #6546B2;
    left: -100%;
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    transition: left 0.5s ease-in-out;
  }
  &:hover{
    .background-purple{
      left: 0;
    }
    .background-gradient{
      left: 100%;
    }
  }
}
.reverse-gradient {
  @apply bg-gradient-to-r from-primary via-pink to-purple;
}
.gradient-title {
  @apply bg-gradient-to-r from-purple via-pink to-primary;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-flex;
  width: fit-content;
}

/* header scrolled  */
#header.header-home {
  @apply bg-transparent;
  .mega-menu-wrap > ul > li{
    > a.mega-menu-link{
        @apply !border-b-4 !border-transparent
      }
  &:hover{
    
    .logo-img{
      display: none;
    }
    .scrolled-logo-img{
      display: block !important;
    }
           
    .header-text{
      @apply text-navy;
      
    }
    .header-text svg{
      fill: rgb(15, 15, 53);
    }
  }
  }
  
}
#mega-menu-wrap-primary > #mega-menu-primary > li.mega-menu-item, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link{
  border-bottom: 3px solid transparent !important;
  
}
#mega-menu-wrap-primary > #mega-menu-primary > li.mega-menu-item.mega-toggle-on:hover,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-toggle-on,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:focus{
  border-bottom: 3px solid #F26B1D !important;
  color:red !important;
  background: linear-gradient(180deg, #FEF0E8 0%, #FCE1D2 100%) !important
}

#header.header {
  @apply bg-white;
  border-bottom: 1px solid #e0e0e0;
     
}
.header-home{
  &:hover{
    #mega-menu-wrap-primary > #mega-menu-primary > li.mega-menu-item > a.mega-menu-link{
      color:#111135 !important
    }
    .logo-img{
      display: none;
    }
    .scrolled-logo-img {
      display: block!important;
    }
  }
}
.header-home.scrolled{
   #mega-menu-wrap-primary > #mega-menu-primary > li.mega-menu-item > a.mega-menu-link{
    color:#111135 !important
  }
}
#header.header{
  #mega-menu-wrap-primary > #mega-menu-primary > li.mega-menu-item > a.mega-menu-link{
    color:#111135 !important
  }
}


#header.scrolled {
  @apply bg-white;
  border-bottom: 1px solid #e0e0e0;
}
.menu-btn span {
  background-color: #fff;
  display: block;
  height: 2px;
  margin-bottom: 0.2em;
  transition: ease 0.3s;
  width: 100%;
}
.menu-btn span:nth-child(4) {
  margin-bottom: 0;
}
.mega-menu-open .menu-btn span:nth-child(2) {
  transform: rotate(45deg);
  margin-top: 0em;
}

.mega-menu-open .menu-btn span:nth-child(3) {
  opacity: 0;
}

.mega-menu-open .menu-btn span:nth-child(4) {
  transform: rotate(-45deg);
  margin-top: -0.7em;
}

/* banner slick lsider  */
.home-banner-slider .slick-list {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-banner-slider .slick-track {
  height: 100%;
}
.home-banner-slider .slider-dots {
  width: 100%;
  margin: 0;
  position: absolute;
  bottom: 140px;
  list-style: none;
  left: 50%;
  text-align: left;
  transform: translate(-50%);
  max-width: 1474px;
  padding: 0 2rem;
}
.home-banner-slider .slider-dots li {
  display: inline-block;
  width: 100px;
  height: 4px;
  margin: 0 20px 0 0;
}

.home-banner-slider .slider-dots button {
  border-radius: 2px;
  position: relative;
  width: 100px;
  height: 4px;
  border: 0;
  background-color: #ffffff4d;
  font-size: 0;
  overflow: hidden;
}
.home-banner-slider .slider-dots button::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 0%;
  height: 100%;
}

.home-banner-slider .slick-active button:after {
  background-color: #fff;
  animation: progress 5.5s linear forwards;
}

/* common slider  */
.common-slider-dots {
  margin: 30px 7px 0;
  position: absolute;
  bottom: 10px;
}
.common-slider-dots li {
  display: inline-block;
  width: 60px;
  height: 4px;
  margin: 0 8px;
}
.common-slider-dots button {
  border-radius: 2px;
  position: relative;
  width: 60px;
  height: 4px;
  border: 0;
  background-color: #0f0f3533;
  font-size: 0;
  overflow: hidden;
}
.common-slider-dots button::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 0%;
  height: 100%;
}
.common-slider-dots .slick-active button:after {
  @apply bg-navy;
  animation: progress 5.5s linear forwards;
}
.custom-prev,
.custom-next {
  left: auto;
  position: absolute;
  top: auto;
  transform: none;
  bottom: 0;
  background: white;
  width: 36px;
  height: 36px;
  color: purple;
  border: 1px solid #e0e0e0;
}
.custom-prev {
  right: 36px;
  border-radius: 4px 0 0 4px;
  border-right: 0;
}
.custom-next {
  right: 0;
  border-radius: 0 4px 4px 0;
}
.custom-prev svg,
.custom-next svg {
  fill: #6546b2;
}
.custom-prev.slick-disabled svg,
.custom-next.slick-disabled svg {
  fill: #e0e0e0;
}
.oracle-industries-slider.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.slick-track {
  display: flex;
}
.slick-slide {
  height: auto;
}

@keyframes progress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}


@media screen and (min-width: 1280px) {
  .home-banner-slider .slider-dots {
    max-width: 1280px;
    padding: 0 2rem;
  }
}
@media screen and (min-width: 1474px) {
  .home-banner-slider .slider-dots {
    max-width: 1474px;
    padding: 0 2rem;
  }
}
@media screen and (max-width: 1024px) {
  .header-menu {
    position: relative !important;
    background: transparent;
    color: white;
    transform: none !important;
  }
  .home-banner-slider .slider-dots {
    max-width: 1024px;
    padding: 0 2rem;
  }
}
@media screen and (max-width: 991px) {
  .home-banner-slider .slider-dots {
    bottom: 80px;
    max-width: 768px;
    padding: 0 2rem;
  }
}
@media screen and (max-width: 768px) {
  .home-banner-slider .slider-dots li {
    width: 50px;
    margin: 0 10px 0 0;
  }
  .home-banner-slider .slider-dots button {
    width: 50px;
  }
  .common-slider-dots li {
    width: 30px;
    margin: 0 4px;
  }
  .common-slider-dots button {
    width: 30px;
  }
}
@media screen and (max-width: 767px) {
  .home-banner-slider .slider-dots {
    padding: 0 1rem;
  }
}

#card-container a {
  display: none;
}
.right-content {
  position: sticky;
  top: 90px;
}
.blog-content p {
  margin-bottom: 18px;
  color: #0f0f35;
  font-size: 18px;
  @media screen and (max-width:768px) {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.blog-content p span{
  color: #6546B2;
}
.blog-content p a span{
  color: inherit;
  position: relative;
}
.blog-content h3{
  font-size: 30px;
  font-weight: 600;
  @apply bg-gradient-to-r from-purple via-pink to-primary;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-flex;
  width: fit-content;
  margin: 30px 0;
  @media screen and (max-width:768px) {
    font-size: 20px;
    margin: 15px 0;
  }
}
.blog-content .blog-img {
  margin-bottom: 30px;
  @media screen and (max-width:768px) {
    margin-bottom: 15px;
  }
}
.blog-content .blog-img img{
  height: 524px;
  width: 100%;
  @media screen and (max-width:1024px) {
    height: 280px;
  }
}
.blog-content .blog-img p {
  color: #333333;
  font-size: 16px;
  margin-top: 8px;
  text-align: right;
  @media screen and (max-width:768px) {
    font-size: 14px;
  }
}
.blog-content ol{
  list-style: decimal;
  margin-bottom: 40px;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
  @media screen and (max-width:768px) {
    margin-bottom: 20px;
  }
}
.blog-content ol li{
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  @media screen and (max-width:768px) {
    font-size: 18px;
  }
}
.blog-content .blue-box {
  @apply bg-navy;
  padding: 40px 30px;
  border-radius: 8px;
}
.blog-content .blue-box .title{
  font-size: 24px;
  color: #ffffff;
  font-weight: 500;
}
.blog-content .blue-box .content{
  font-size: 18px;
  color: #BBC0D4;
  margin-top: 10px;
}
.blog-content .about-author{
  background-color: #efefef;
  padding: 30px 0;
  border-bottom: 1px solid #BBC0D4;
}
.blog-content .about-author .author-title {
  font-size: 22px;
  font-weight: 600;
  color: #2C5FA7;
  margin-bottom: 30px;
}
.blog-content .about-author p {
  margin-bottom: 0;
}
.modal-overlay::after {
  content: "";
  height: 100vh;
  width: 100%;
  background-color: rgb(0 0 0 / 49%);
  position: fixed;
  left: 0;
  top: 0;
}

 .swiper-button-next, .swiper-button-prev {
  left: auto;
  position: absolute;
  top: auto;
  transform: none;
  bottom: 0;
  background: white;
  width: 36px;
  height: 36px;
  color: purple;
  border: 1px solid #3c3c5b;
}

body .swiper-button-prev {
  right: 36px;
  border-radius: 4px 0 0 4px;
  border-right: 0;
}

body .swiper-button-next {
  right: 0;
  border-radius: 0 4px 4px 0;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: 'next';
  font-size: 17px;
  color: #fff;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: 'prev';
  font-size: 17px;
  color: #fff;
}
.swiper-button-prev, .swiper-button-next {
  background: #272749;
}
.swiper-pagination-bullet{
  border-radius: 2px;
  position: relative;
  width: 60px;
  height: 4px;
  border: 0;
  background-color: #fff;
  font-size: 0;
  overflow: hidden;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
  text-align:left
}
.job-content h2{
  @apply text-4xl font-medium mb-5;
}



/* Custom Form Styles */
.contact-field-group {
    margin-bottom: 0px;
}

.contact-field-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.wpcf7-form-control {
    width: 100%;
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: rgb(239 239 239);
    color:#0f0f35;
    border-color:rgb(239 239 239)
}
.wpcf7-form-control::placeholder {
  color:#0f0f35;
  opacity: 0.8;
}
.contact-form input::placeholder, .contact-form textarea::placeholder{
  color:#333333;
}

.wpcf7-form-control:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
    outline: none;
}

.wpcf7-select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
}

.wpcf7-submit {
    background-color: #4a90e2;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.wpcf7-submit:hover {
    background-color: #357abd;
}

.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 12px;
    margin-top: 5px;
}

.wpcf7-response-output {
    margin: 20px 0;
    padding: 12px;
    border-radius: 4px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .contact-field-group {
        margin-bottom: 15px;
    }

    .wpcf7-form-control {
        padding: 10px 12px;
    }

    .wpcf7-submit {
        width: 100%;
    }
}

/* File upload button styling */
.wpcf7-file {
    padding: 12px 15px;
    height:50px    
}

/* Spinner styling */
.wpcf7-spinner {
    margin-left: 10px;
}
.job-profile-form .wpcf7-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-field-group p{
  margin-bottom:0px
}
/* Form grid layout for larger screens */
@media (max-width: 769px) {
  .job-profile-form .wpcf7-form {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0px 15px;
    }

    .contact-field-group:last-child {
        grid-column: 1 / -1;
    }
}
@media (max-width: 600px) {
  .job-profile-form .wpcf7-form {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 0px;
  }
}
.contact-field-group br {
    display: none;
}
.contact-field-group input[type=file]::file-selector-button {
  margin-right: 20px;
  border: none;
  background: #fff;
  padding: 5px 20px;
  border-radius: 8px;
  color: #0f0f35;
  cursor: pointer;
  transition: background .2s ease-in-out;
  position:absolute;
  right:0;
  left:auto
}

.contact-field-group input[type=file]::file-selector-button:hover {
  background: #fff;
}
.blog-content.job-content p span {
  color: #fff;
}
.contact-field-group.btn-row{
    display: flex;
    justify-content: end;
}

.testimonialSwiper .swiper-button-next,
.testimonialSwiper .swiper-button-prev {
    color: #6546B2;
}
.testimonialSwiper .swiper-pagination-bullet{
  background-color: #a3a3a3;
}

.testimonialSwiper .swiper-pagination-bullet-active {
    background: #272749;
}

.testimonialSwiper .swiper-slide > div, .testimonialSwiper .swiper-slide:nth-child(4) > div, .testimonialSwiper .swiper-slide:nth-child(7) > div, .testimonialSwiper .swiper-slide:nth-child(10) > div{
  background: linear-gradient(270deg, #F0EDF7 0%, #E0DAF0 100%);
}
.testimonialSwiper .swiper-slide:nth-child(2) > div, .testimonialSwiper .swiper-slide:nth-child(5) > div, .testimonialSwiper .swiper-slide:nth-child(8) > div, .testimonialSwiper .swiper-slide:nth-child(11) > div{
  background: linear-gradient(270deg, #FFF1F7 0%, #FACCE1 100%);
}
.testimonialSwiper .swiper-slide:nth-child(3) > div, .testimonialSwiper .swiper-slide:nth-child(6) > div, .testimonialSwiper .swiper-slide:nth-child(9) > div, .testimonialSwiper .swiper-slide:nth-child(12) > div{
  background: linear-gradient(270deg, #FEF0E8 0%, #FCE1D2 100%);
}
.purple-gradient{
  background: linear-gradient(270deg, #F0EDF7 0%, #E0DAF0 100%);
}
.blog-form input, .blog-form textarea{
  background-color:#fff
}
.blog-form textarea{
  height:120px
}
.blog-form p button span{
  color:#fff;
}
.title-font{
  @apply text-3xl lg:text-7xl
}
.sub-title-font{
  @apply text-base/5 lg:text-xl/6
}
.button-font{
  @apply text-base lg:text-lg
}
.testimonialSwiper .swiper-slide{
  height:auto
}
span.wpcf7-not-valid-tip {
    color: #ef1212 !important;
}
.scrolled .scrolled-logo-img{
  display: block !important;
}

.sea-rates-erp-swiper .swiper-pagination-bullet, .sea-rates-hear-from-freight-swiper .swiper-pagination-bullet{
  background:#272749
}

body .sea-rates-erp-swiper .swiper-button-next {
    right: 15px; 
    bottom:10px
}
body .sea-rates-erp-swiper .swiper-button-prev {
    right: 52px;
    bottom:10px   
}
.sea-rates-erp-swiper .swiper-horizontal>.swiper-pagination-bullets, 
.sea-rates-erp-swiper .swiper-pagination-bullets.swiper-pagination-horizontal, 
.sea-rates-erp-swiper .swiper-pagination-custom, .swiper-pagination-fraction{
  left:15px;
  bottom:15px
}

.accordion-button .plus-line,
.accordion-button .plus-line-vertical {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.accordion-button.active .plus-line-vertical {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.accordion-button.active .plus-line {
    transform: translate(-50%, -50%) rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content.active {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}
.accordion-item .active{
  background:#fff
}
.accordion-item .active .plus-bg{
  @apply bg-purple
}
.px-6 .accordion-item:first-child{
  @apply rounded-t-md
}
.masonry-grid {
    column-gap: 1.5rem;
}

.break-inside-avoid {
    break-inside: avoid;
}

.masonry-grid .bg-[#F5F5F5]:hover {
    background: linear-gradient(270deg, #F0EDF7 0%, #E0DAF0 100%);
    transition: background 0.3s ease;
}
.masonry-grid p{
  @apply font-normal
}
[role="tab"]{
  border-right:1px solid rgba(187, 192, 212, 1)  
}
[role="tab"]:last-child{
  border-right:none  
}
[role="tab"].active {
    border-color: rgba(187, 192, 212, 1);
    color: #6546B2;
    background:#fff
}

[role="tab"]:hover {
    border-color: rgba(187, 192, 212, 1);
}
.swiper.sea-rates-erp-swiper-for.swiper-backface-hidden .swiper-slide{
  height:auto
}
.seareat-menu-container ul > li > ul li a svg{
  transform: rotate(-90deg);
}
/* Sea Rates ERP Menu Styles */
#searates-menu-button.active span:first-child {
    @apply transform rotate-45 translate-y-2;
}

#searates-menu-button.active span:nth-child(2) {
    @apply opacity-0;
}

#searates-menu-button.active span:last-child {
    @apply transform -rotate-45 -translate-y-2;
}

#searates-menu .menu-item-has-children > a {
    @apply flex items-center justify-between;
}

#searates-menu .menu-item-has-children > a::after {
    content: '+';
    @apply ml-2 text-xl transition-transform;
}

#searates-menu .menu-item-has-children > a.submenu-active::after {
    content: '-';
}

#searates-menu .sub-menu {
    @apply hidden pl-4 mt-2 space-y-2;
}

@media (min-width: 1024px) {
    #searates-menu .sub-menu {
        @apply absolute bg-white shadow-lg rounded-md p-2 mt-2;
        min-width: 200px;
    }

    #searates-menu .menu-item-has-children:hover .sub-menu {
        @apply block;
    }
}
.seareat-menu-container ul > li > ul{  
 @apply relative md:relative lg:absolute left-0 md:left-0
}
.seareat-menu-container ul > li > ul li ul{
  @apply lg:left-full left-0 md:left-0
}
.seareat-menu-container{
  @apply overflow-auto lg:overflow-visible
}
.job-content {
  ul{
    li {
        padding: 0 0 10px 0;
        list-style: disc;
        margin: 0 0 0 15px;
    }
  }
}

.mega-toggle-blocks-left, .mega-toggle-blocks-center{
  display:none !important
}


#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item{
  @apply container px-3 lg:px-8
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-tabbed > ul.mega-sub-menu{
  @apply py-0 lg:py-10 
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover{
  @apply rounded-lg border-b-0
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link{
  @apply mt-2
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu{
    @apply py-1 md:lg:py-2 lg:py-10 !w-full lg:!w-[56%] left-0 lg:left-[32%] !justify-start
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item{
  padding: 10px 15px 10px 15px;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-6 {
  @apply !w-full lg:!w-[33%]
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link{
  font-size:18px;
  font-weight:400;
  color:#000027
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover{
 color:#F26B1D;
 font-weight:400;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title{
  font-size:24px;
  font-weight:500;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row{
  @apply container m-auto px-3 lg:px-8
}
#mega-menu-wrap-primary #mega-menu-primary[data-effect="fade_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu{
  display:flex;
  margin: auto;
  text-align: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

#mega-menu-wrap-primary #mega-menu-primary[data-effect="fade_up"] li.mega-menu-item.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item:not(.mega-disable-transition) > ul.mega-sub-menu{
  @apply lg:inline-block !w-full lg:!w-[63%];
      
}

@media only screen and (max-width: 1024px) {
  body header.header-home #mega-menu-wrap-primary > #mega-menu-primary > li.mega-menu-item.mega-current_page_item > a.mega-menu-link{
    color:#fff !important
  }
  body header.header-home #mega-menu-wrap-primary > #mega-menu-primary > li.mega-menu-item.mega-toggle-on:hover, body header.header-home #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-toggle-on{
    background: #F26B1D!important
  }
  div#navbar-cta{
    width: auto;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 0;
    top: 23px;
    right: 0;
    display: flex;
    justify-content: flex-end;
    background: transparent;
  }
  .mega-menu-toggle{
    background:transparent!important
  }
  .mobile-menu-part{
    position: relative;
    width:50px;
  }
  #mega-menu-wrap-primary #mega-menu-primary[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu{
    @apply lg:flex-col
  }
  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-column{
    width:100%
  }
}
.mega-menu.max-mega-menu.mega-menu-horizontal > li > .mega-sub-menu{
  border-bottom: 1px solid #bbc0d4!important;
}
body #header.header {
  #mega-menu-wrap-primary > #mega-menu-primary > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link{
color:#fff !important;
}
}
body #header.header-home {
  #mega-menu-wrap-primary > #mega-menu-primary > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link{
color:#fff !important;
}
}
.header-home.scrolled {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link{
  @apply !text-white lg:!text-[#f26b1d];
}
}
#header.header #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link{
  @apply !text-white lg:!text-[#f26b1d];
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link{
  @apply !text-white lg:!text-[#f26b1d];
}
#mega-menu-wrap-primary > #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link{
  @apply !text-white lg:!text-[#f26b1d];
}
