/* Colors */
:root {
  --color-default: #2b180d;
  --color-primary: #56b8e6;
  --color-secondary: #222;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/*body {font-family: var(--font-default);color: var(--color-default);}*/
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #82cbed;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}




/*BOOTSTRAP 5 NAVIGATION START CSS*/

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
    position: initial;
    display: flex;
    /* justify-content: end; */
    /* width: 100%; */
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 15px
  }

  .navbar li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 6px;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    /*white-space: nowrap;*/
    transition: 0.3s;

  }

  /* .desk-gmdc-d a {
    padding: 0px !important;
  } */

  .navbar a i,
  .navbar a:focus i {
    font-size: 18px;
    line-height: 0;
    margin-left: 5px;
    color: #31A9E0;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #56bbeb;
  }

  .navbar .dropdown ul {
    width: 315px;
    display: block;
    position: absolute;
    /* top: calc(100% + 0px) !important; */
    margin: 0;
    padding: 10px 15px 10px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.2s;
    border-bottom: 5px solid #56bbeb;
    visibility: visible;
    opacity: 1;
    transform: scaleY(0);
    transform-origin: top center;
  }

  /* .navbar .dropdown ul li {
    min-width: 200px;
  } */

  .navbar .dropdown ul a {
    padding: 7px 0px;
    font-size: 18px;
    text-transform: none;
    color: var(--color-secondary);
    line-height: 26px;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: #56bbeb;
    background: transparent;
    letter-spacing: 0.3px;
    font-size: 18px;
    padding-left: 18px;
  }

.navbar .dropdown ul a::before {
        content: '\F59B';
        font-family: bootstrap-icons !important;
        position: absolute;
        left: -15px;
        opacity: 0;
        color: #0D549E;
        font-size: 10px;
-webkit-transform: translateY(-0%) scale(0);
    -moz-transform: translateY(-0%) scale(0);
    transform: translateY(-0%) scale(0);
    transition: all 0.3s linear;
-webkit-transition: 0.3s linear;
    }
.navbar .dropdown ul li:hover>a::before {
        left: 0px;
        opacity: 1;
        transform: translateY(-0%) scale(1);
    }



  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;


    opacity: 1;
    transform: scaleY(1);
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }

  .dropdown-menu {
    display: unset !important;
  }

  .dropdown-hover:hover>.dropdown-menu {
    opacity: 1;
    top: 100% !important;
    visibility: visible;
  }

  .dropdown-menu {
    left: 0;
    top: calc(100% + 30px) !important;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  }

  /* .navbar li.dropdown-arrow>a::before {
    content: '\f77b' !important;
    font-family: 'Material Symbols Outlined' !important;
    left: -3px;
    position: relative;
    font-size: 24px;
    font-weight: 100;
  }

  .navbar li.dropdown-arrow:hover>a::before {
    content: '\F282' !important;
    font-family: bootstrap-icons !important;
    left: -5px;
    position: relative;
  } */

  /* .navbar li.dropdown ul li.dropdown-sub:hover>a::before {
    content: '\F59B' !important;
    font-family: bootstrap-icons !important;
  left: -3px;
    position: relative;
    font-size: 10px;
    font-weight: 100;
  } */



  
  .navbar li.dropdown {
    text-decoration: none !important;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    text-decoration: none !important;
  }

  .nav-arrow-hide-show {
    display: none;
  }

  .main-menu ul li:hover>ul.sub-menu {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
  }





}

/* @media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
} */

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  /* .mobile-nav-show {display: block;} */
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 20px 10px 20px;
    margin: 0;
    background: #fff;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }



  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-default);
    font-size: 15px;
    font-weight: 600;
    color: #000;
    white-space: normal;
    transition: 0.3s;
    line-height: 24px !important;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #30a8e4;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    padding: 0px;
    background-color: rgb(237 237 237 / 60%);
    max-height: 0px;
    transition: 0.6s;
  }

    .navbar .dropdown>.dropdown-active, .navbar .dropdown .dropdown>.dropdown-active {
        max-height: 315px;
        padding: 0 10px;
        margin: 0;
        padding: 0px 10px !important;
    }

  .mobile-nav-show {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: relative;
    /*top:-10px;*/
    background: #56bbeb;
        padding: 9px;
        border-radius: 50px;
  }

  .mobile-nav-show:hover {background: #0D549E;
    box-shadow: 0px 5px 5px 0px rgb(13 84 158 / 60%);}



  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 9999;
    background: #30a8e4;
    border-radius: 100%;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }
  .mobile-nav-hide:hover {transform: rotate(90deg) scale(1);}
  .mobile-nav-hide:hover {color: #000000;}

  /*  .mobile-nav-active .navbar:before {content: "";position: fixed;inset: 0;background: rgba(27, 47, 69, 0.7);z-index: 9996;}*/

  .dropdown-menu {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background: none;
    margin: 0px;
    padding: 0 20px;
    padding-top: 10px;
    border: none;
  }

  .dropdown ul li a {
    font-weight: 500;
  }

  .megamenu-row {
    margin-top: 0px !important;
    background-color: white;
  }

  .dropdown-menu {
    display: unset !important;
  }

  .dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: 0.5s ease-out;
  }

  .dropdown-hover>.dropdown-toggle:active {
    pointer-events: none;
  }

  .dropdown-menu a {
    color: #000 !important;
  }

  .megamenu-col {
    width: 100%;
  }



   .navbar .dropdown ul {width: auto !important;}
   .navbar ul li {list-style: none;border-bottom: dashed 1px rgb(48 168 228 / 40%);}
  
















}

/*BOOTSTRAP 5 NAVIGATION END CSS*/



.navbar ul .dropdown .desktop-width-megamenu {
  width: max-content;
}


.overlay1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 60%);
  z-index: 4;
}


.dropdown-hover>.dropdown-toggle:active {
  pointer-events: none;
}


.dropdown-menu a {
  color: #000 !important;
}