.header_top {
  position: relative;
  z-index: 9;
}

.hamburger .line {
  width: 15px;
  height: 4px;
  background-color: #222d39;
  display: block;
  margin: 4px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 6px;
}
.hamburger .line2 {
  width: 30px;
}
.hamburger .line3 {
  width: 20px;
}
.hamburger:hover {
  cursor: pointer;
}
#menu_hamburger.is-active .line:nth-child(2) {
  /* opacity: 0 */
  transform-origin: top;
  transform: rotatez(-45deg);
}
#menu_hamburger.is-active .line:nth-child(1) {
  /* -webkit-transform: translateY(13px) rotate(45deg);
    -ms-transform: translateY(13px) rotate(45deg);
    -o-transform: translateY(13px) rotate(45deg);
    transform: translateY(13px) rotate(45deg) */
  transform-origin: bottom;
  transform: rotatez(45deg) translate(3px, 0px);
}
#menu_hamburger.is-active .line:nth-child(3) {
  /* -webkit-transform: translateY(-13px) rotate(-45deg);
    -ms-transform: translateY(-13px) rotate(-45deg);
    -o-transform: translateY(-13px) rotate(-45deg);
    transform: translateY(-13px) rotate(-45deg) */
  transform-origin: bottom;
  width: 15px;
  transform: translate(13px, -3px) rotatez(45deg);
}
@keyframes smallbig {
  0%,
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
}
.navbar_wrap {
  display: flex;
  align-items: center;
  height: 65px;
  width: 93%;
  position: relative;
}
.navbar_wrap ul {
  padding: 0;
  list-style: none;
}
.mainmenu_full_wrapper {
  transform: translateY(0);
  transition: transform 0.3s ease;
  will-change: transform;
}

.mainmenu_full_wrapper.hide {
  transform: translateY(-90px);
}

header .mainmenu_full_wrapper {
  position: fixed;
  top: -1px;
  right: 0;
  left: 0;
  z-index: 99;
  background: #fff;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
header .mainmenu_full_wrapper.nav_fixed {
  background-color: #fff;
  box-shadow: 0 0 8px 3px rgb(0 0 0 / 20%);
}
.navbar_right_side {
  display: flex;
  align-items: center;
  gap: 15px;
}
.navbar_right_side .request-loader {
  position: relative;
  height: 40px;
  width: 40px;
  border-radius: 100%;
  background: #fff;
  margin: 0 auto;
}
.request-loader span {
  position: relative;
}
.request-loader::after {
  opacity: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  height: 100%;
  width: 100%;
  border: 4px solid rgb(255 104 20);
  border-radius: 100%;
  -webkit-animation-name: ripple;
  animation-name: ripple;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  z-index: -1;
}
.request-loader::before {
  opacity: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  height: 100%;
  width: 100%;
  border: 4px solid rgb(255 123 9);
  border-radius: 100%;
  animation-delay: 0.3s;
  -webkit-animation-name: ripple;
  animation-name: ripple;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  z-index: -1;
  opacity: 1;
}
@-webkit-keyframes ripple {
  from {
    opacity: 1;
    transform: scale3d(0.75, 0.75, 1);
  }
  to {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1);
  }
}
@keyframes ripple {
  from {
    opacity: 1;
    transform: scale3d(0.75, 0.75, 1);
  }
  to {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1);
  }
}
.menu_circle {
  /* background: linear-gradient(280deg, rgba(248, 253, 153, 1) 0%, rgba(1, 194, 154, 1) 100%); */
  width: 50px;
  height: 50px;
  position: absolute;
  transform: scale(1);
  z-index: 1000;
  transition: all 0.2s ease-out;
  top: -14px;
  left: -8px;
  z-index: -1;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, .6);     */
}
.is-active .menu_circle::before {
  content: none;
}
.menu_circle::before {
  opacity: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  height: 100%;
  width: 100%;
  /* border: 3px solid #36c6a6; */
  /* border-radius: 100%; */
  /* animation-delay: .3s;
    -webkit-animation-name: ripple_menu;
    animation-name: ripple_menu;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(.65, 0, .34, 1);
    animation-timing-function: cubic-bezier(.65, 0, .34, 1); */
  z-index: -1;
  opacity: 1;
}
@keyframes ripple_menu {
  from {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
  to {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1);
  }
}
.hamburger.is-active .menu_circle {
  background: radial-gradient(
    circle at 0% 50%,
    rgb(33 105 90) 0%,
    rgb(17 17 17) 30.43%,
    rgb(17 17 17) 59%
  );
  pointer-events: none;

  background: transparent !important;
}
.hamburger .menu_circle {
  height: unset;
}
.hamburger.is-active .line {
  background-color: #222d39;
}
.navbar_right_side .ham_lines_main {
  position: relative;
}
.is-active .menu_circle {
  transform: scale(100);
}
.hamburger.is-active .close_action {
  color: #222d39;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  display: block;
}
.hamburger .close_action {
  display: none;
}
.container_wrap {
  padding: 0 85px;
}
.overlay_mainmenu {
  position: absolute;
  width: 100%;
  transition: 0.6s ease-in-out;
  left: 0;
  background: #fff url("../images/menu/menu_bg.svg") bottom center no-repeat;
  background-size: 100%;
  top: 0;
  z-index: 100;
  transform: translateY(-100%);
}
.overlay_mainmenu.visible {
  z-index: 1;
  width: 100%;
  height: auto;
  transition: 1s;
  z-index: 100;
  transform: translateY(0);
  min-height: 100vh;
  /* box-shadow: 0 0 8px 3px rgb(0 0 0 / 20%); */
}
.titlemenu_box {
  position: relative;
  margin-top: 0;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: calc(100vh - 95px);
}
.overlay_mainmenu .titlemenu_box ul {
  padding: 0;
  margin: 0;
}
.overlay_mainmenu .titlemenu_box .menu_title {
  list-style: none;
  color: #222d39;
  font-weight: 600;
  font-size: 18px;
  padding-bottom: 30px;
  min-width: 180px;
  text-align: left;
  padding: 8px 15px 8px 0;
  /* margin: 0 0 10px; */
  position: relative;
  display: block;
  max-width: 180px;
  cursor: pointer;
}
.overlay_mainmenu .titlemenu_box .contact_title {
  list-style: none;
  color: #222d39;
  font-weight: 600;
  font-size: 18px;
  padding-bottom: 30px;
  min-width: 200px;
  text-align: left;
  padding: 8px 15px 8px 0;
  /* margin: 0 0 10px; */
  position: relative;
  display: block;
  max-width: 250px;
  cursor: pointer;
}
.overlay_mainmenu .titlemenu_box a .contact_title::focus:before {
  background: linear-gradient(
    270deg,
    rgba(45, 54, 71, 0) 8.5%,
    rgb(62 75 99/16%) 4.29%,
    rgb(105 127 169) 109.75%,
    rgb(219 233 255) 100%
  );
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  left: -90px;
}
/* .overlay_mainmenu .titlemenu_box .contact_title:after {
    position: absolute;
    width: 1px;
    height: 120%;
    background-color: #667285;
    content: '';
    right: 0;
    top: 0
} */
.overlay_mainmenu .titlemenu_box .menu:nth-child(9) .menu_title {
  border-bottom: 0;
}
.overlay_mainmenu .titlemenu_box .menu_title span {
  width: 20px;
  height: 20px;
  background: url("../images/menu/menu_arrow.webp");
  position: absolute;
  border-radius: 0;
  top: 31%;
  right: 30px;
  transform: translateX(-35px);
  opacity: 0;
  transition: 0.2s ease-in-out;
}
.overlay_mainmenu .titlemenu_box .menu_title.active span {
  transform: translateX(10px);
  opacity: 1;
}
/* .overlay_mainmenu .titlemenu_box .menu_title:after {
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: rgb(152 152 152 / 40%);
  content: "";
  right: 0;
  top: 0;
} */
body.overflow-hidden {
  overflow: hidden;
}
.overlay_mainmenu .titlemenu_box .menu_title.active {
  color: #ee48b4;
}
/* .overlay_mainmenu .titlemenu_box .menu_title.active:before {
    background: linear-gradient(270deg, rgba(45, 54, 71, 0) 8.5%, rgb(62 75 99/16%) 4.29%, rgb(231 238 104) 109.75%, rgb(233 240 111) 100%);
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    left: -90px
} */
.menu {
  color: #222d39;
  margin-right: 0.5em;
  width: 100%;
  display: flex;
}
.menu_items {
  cursor: pointer;
  margin: 0;
  padding: 0;
  list-style: none;
  top: 0;
  left: 200px;
  min-width: 100%;
  display: none;
}
.menu_items.expanded {
  display: block;
  position: absolute;
}
.menu--selector {
  position: absolute;
  top: 0;
  left: -9001px;
}
.menu_item a {
  color: inherit;
  text-decoration: none;
  display: block;
  padding: 10px 5px;
  transition: background-color 500ms;
  color: #fff;
  font-size: 16px;
  /* max-width: 330px; */
}
.menu_itemtitle {
  padding: 0.25em 1em;
  list-style: none;
  display: block;
}
.menu_item a:hover {
  color: #ee48b4 !important;
  /* background-color: #11111152 */
}
.menu_circle_bg {
  width: 100%;
  height: 100%;
  position: relative;
  transform: scale(0);
}
.menu_circle_bg:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
}
.menu .menu_items .menu_box {
  transform: translateX(-136px);
  opacity: 0;
  /* height: 250px; */
  overflow-y: hidden;
  transition: 0.5s;
  margin-bottom: 15px;
}
.menu .menu_items .menu_box:hover {
  /* background: linear-gradient(180deg, rgba(45, 54, 71, 0) 0%, rgb(34 43 59/55%) 19.83%, rgb(13 16 22/60%) 58.06%, rgb(13 17 25/91%) 100%); */
  overflow-y: auto;
}
.menu .menu_items .menu_box::-webkit-scrollbar {
  width: 5px;
}
.menu .menu_items .menu_box::-webkit-scrollbar-track {
  background: #ffffff45;
  border-radius: 50px;
  position: absolute;
}
.menu .menu_items .menu_box::-webkit-scrollbar-thumb {
  background: #ffffffbf;
  height: 100px;
  border-radius: 50px;
  position: absolute;
}
.menu .menu_items .menu_box::-webkit-scrollbar-thumb:hover {
  background: #ffffffbf;
}
.menu .menu_items .row .col-md-3:nth-child(1) .menu_box {
  transition: 0.2s ease-in-out;
}
.menu .menu_items .row .col-md-3:nth-child(2) .menu_box {
  transition: 0.3s ease-in-out;
}
.menu .menu_items .row .col-md-3:nth-child(3) .menu_box {
  transition: 0.4s ease-in-out;
}
.menu_expand a {
  text-decoration: none;
}
.menu.menu_expand:nth-child(1) .menu_items.expanded .menu_box,
.menu.menu_expand:nth-child(2) .menu_items.expanded .menu_box,
.menu.menu_expand:nth-child(3) .menu_items.expanded .menu_box,
.menu.menu_expand:nth-child(4) .menu_items.expanded .menu_box,
.menu.menu_expand:nth-child(5) .menu_items.expanded .menu_box,
.menu.menu_expand:nth-child(6) .menu_items.expanded .menu_box {
  transition-delay: 0.3s;
}
.menu .menu_items.expanded .menu_box {
  transform: translateX(0px);
  opacity: 1;
}
.menu_items .menu_item {
  list-style: none;
}
.menu_items .menu_item a {
  color: #222d39;
}
.menu_blogimg img {
  object-fit: cover;
  width: 100%;
  height: 197px;
  object-position: center;
  box-shadow: 1px 4px 6px #191e27;
  border-radius: 5px;
}
.menu_recent_blog {
  position: relative;
}
.menu_recent_blog .menu_blogimg {
  position: relative;
}
.menu_recent_blog .menu_blogimg:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 5px;
}
.menu_blogdt {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 15px 20px 25px;
}
.menu_blogdt .menu_cta {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 10px;
  color: #cfd5e0;
}
.menu--blogtle {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.menu_box a {
  color: #fff;
}
.menu_itemtitle {
  padding: 5px;
  color: #1e2237;
  font-size: 20px;
  font-weight: 500;
  cursor: default;
}
.menusocial_wrap ul {
  padding: 0;
  margin: 0;
}
.menusocial_wrap ul li {
  list-style: none;
  display: block;
  transition: transform 0.3s ease-in-out;
  padding: 20px;
  background-color: rgba(128, 128, 128, 0.73);
  box-shadow: 0px 0px 6px 0px #3e3d3d;
  cursor: pointer;
}
.menusocial_wrap ul li i {
  color: #fff;
  font-size: 24px;
  margin-right: 20px;
}
.menusocial_wrap ul li a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.menusocial_wrap ul li:hover {
  transform: translateX(calc(-100% + 150px));
}
.menusocial_wrap ul li.telegram_social_icon:hover {
  background-color: #229ed9;
}
.menusocial_wrap ul li.whatsapp_social_icon:hover {
  background-color: #128c7e;
}
.menusocial_wrap ul li.skype_social_icon:hover {
  background-color: #00aff0;
}
.menusocial_wrap ul li:hover {
  text-decoration: none;
}
.menusocial_wrap ul li:hover a {
  color: #fff !important;
}
.menusocial_wrap ul li:not(.menu_social_icon) a {
  color: #fff;
  font-size: 16px;
  padding: 0 8px;
  font-weight: 500;
  text-decoration: none;
}
.menu_social {
  position: fixed;
  top: 50%;
  right: -192px;
  transform: translateY(-50%);
  min-width: 250px;
  z-index: 1;
}
.menusocial_wrap ul:nth-child(1) {
  display: block;
}
.menusocial_wrap ul:nth-child(2) {
  display: none;
}
/* #menu_hamburger.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-13px) rotate(-45deg);
    -ms-transform: translateY(-13px) rotate(-45deg);
    -o-transform: translateY(-13px) rotate(-45deg);
    transform: translateY(-9px) rotate(-45deg)
} */
/* .is-active .line3 {
    width: 33px
} */
.mainmenu_full_wrapper.full_wrapper_show .skew_btn::before,
.mainmenu_full_wrapper.full_wrapper_show .skew_btn::after {
  border: 10px solid #111111;
  color: #fff !important;
}
.services_menu .submenu ul {
  list-style: none;
}
.services_menu .submenu .submenu_item {
  list-style: none;
  color: #222d39;
  font-weight: 400;
  font-size: 18px;
  padding-bottom: 30px;
  min-width: 200px;
  text-align: left;
  padding: 8px 30px 8px 0;
  position: relative;
  display: block;
  max-width: 270px;
  cursor: pointer;
}
.services_menu .menu_items {
  left: 480px;
}
.services_menu .submenu {
  display: none;
  position: absolute;
  left: 200px;
  top: 0;
}
.services_menu .submenu .submenu_item span {
  width: 20px;
  height: 20px;
  background: url("../images/menu/menu_arrow.webp");
  position: absolute;
  border-radius: 0;
  top: 30%;
  right: 0px;
  transform: translateX(-35px);
  opacity: 0;
  transition: 0.2s ease-in-out;
}
.services_menu .submenu .submenu_item.active {
  color: #ee48b4;
  font-weight: 500;
}
.services_menu .submenu .submenu_item.active span {
  transform: translateX(10px);
  opacity: 1;
}
.service_menu_flex {
  display: flex;
  flex-wrap: wrap;
}
.service_menu_flex li.menu_item {
  flex: 50% 0;
}
.ham_close_div {
  margin-top: -3px;
}
.error-message {
  color: #ff0505 !important;
}

/* Common CSS - Need to move when create new menu */
.inner_sec_24 .svg_button a,
.inner_sec_14 .svg_button a,
.inner_sec_31 .svg_button a {
  --color: #00d78c;
}

.inner_sec_24 .svg_button a::before,
.inner_sec_14 .svg_button a::before,
.inner_sec_31 .svg_button a::before {
  background-color: #ccf7e8;
}
.inner_sec_18 .svg_button a,
.inner_sec_4 .svg_button a {
  --color: #ffaf2e;
}
.inner_sec_18 .svg_button a::before,
.inner_sec_4 .svg_button a::before {
  background-color: #f9e453;
}
.svg_button {
  overflow: hidden;
  border-radius: 999px;
  width: fit-content !important;
  margin-top: 50px;
}
.svg_button a,
.svg_button button {
  --color: #ee48b4;
  background-color: var(--color);
  /* background-color: transparent; */
  background-position: 100% 100%;
  font-family: inherit;
  display: inline-block;
  padding: 10px 30px;
  position: relative;
  border: 2px solid var(--color);
  outline: 0 !important;
  transition: 0.5s;
  z-index: 1;
  font-size: 16px;
  border-radius: 999px;
  font-weight: 500;
  color: #fff !important ;
  text-decoration: none !important;
  line-height: unset !important ;
  height: unset !important;
  cursor: pointer;
}
.svg_button a:before,
.svg_button button::before {
  content: "";
  position: absolute;
  z-index: -1;
  background: #e0d2db;
  background: #ffd8e3;
  height: 150px;
  width: 100%;
  border-radius: 50%;
}
.svg_button a:hover,
.svg_button button:hover {
  color: #000 !important ;
}
.svg_button a:before,
.svg_button button::before {
  top: 115%;
  left: 0%;
  transition: all 0.5s;
}
.svg_button a:hover:before,
.svg_button button:hover::before {
  top: 0px;
  left: 0px;
  right: 0;
  bottom: 0;
  border-radius: 99px;
  width: calc(100% + 0px);
  height: calc(100% + 0px);
}
.svg_button svg {
  display: none !important;
}
.mainmenu_full_wrapper .svg_button.rootLink a {
  color: #070d25 !important;
  background: #ffd8e3;
  padding: 6px 15px;
  font-size: 15px;
}
.mainmenu_full_wrapper .svg_button.rootLink a:hover {
  color: #fff !important;
}
.mainmenu_full_wrapper .svg_button.rootLink a:hover:before {
  background: #ee48b4;
}
.mainmenu_full_wrapper.nav_fixed .svg_button.rootLink a {
  background: #ee48b4;
  color: #fff !important;
}
.mainmenu_full_wrapper.nav_fixed .svg_button.rootLink a:hover:before {
  background: #ffd8e3;
}
.mainmenu_full_wrapper.nav_fixed .svg_button.rootLink a:hover {
  color: #000 !important;
}
/* Media Queries */
@media only screen and (max-width: 1199px) {
  .pulse1,
  .pulse2,
  .pulse3 {
    left: 0 !important;
    top: 2px !important;
  }
  .mainmenu_full_wrapper {
    position: fixed;
    top: 0;
    margin-left: 0%;
    width: 100%;
    z-index: 0;
  }
  .navbar_right_side {
    gap: 8px;
  }
  .hamburger .line {
    margin: 4px auto auto 0;
  }
  .menu_circle {
    top: -14px;
    left: -9px;
    width: 45px;
    height: 45px;
  }
  /* #menu_hamburger.is-active .line:nth-child(1) {
        transform: translateY(1px) rotate(45deg)
    } */
  .menu {
    display: block;
  }
  .menu .menu_items .menu_box {
    transform: translateX(0px);
    opacity: 0;
    height: auto;
  }
  .menu_items {
    overflow-y: auto;
    overflow-x: hidden;
    height: 0;
    position: unset;
  }
  .menu_items {
    transition: height 0.5s ease;
  }
  .menu_items.expanded {
    max-height: 350px;
    height: auto;
    position: unset;
    transition: height 0.5s ease;
  }
  .overlay_mainmenu .titlemenu_box .menu_title:after {
    display: none;
  }
  .overlay_mainmenu .titlemenu_box .menu_title {
    border-top: 1px solid rgb(143 162 255 / 30%);
  }
  .titlemenu_box {
    position: relative;
    overflow-y: auto;
    border-bottom: 0 solid #fff3;
    overflow-x: hidden;
  }
  .menu .menu_items.expanded .menu_box {
    transform: translateX(0px);
    opacity: 1;
    background-color: #fff;
    padding-top: 0.2rem;
  }
  .overlay_mainmenu .titlemenu_box .menu_title {
    font-size: 16px;
    margin: 0;
    max-width: 100%;
    padding: 10px 15px;
  }
  .overlay_mainmenu .titlemenu_box .menu_title.active:before {
    background: #e530b2;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    left: 0;
  }
  .overlay_mainmenu .titlemenu_box .menu_title.active {
    background: transparent;
    color: #fff;
    -webkit-text-fill-color: unset;
  }
  .menu.menu_expand:nth-child(1) .menu_items.expanded .menu_box,
  .menu.menu_expand:nth-child(2) .menu_items.expanded .menu_box,
  .menu.menu_expand:nth-child(3) .menu_items.expanded .menu_box,
  .menu.menu_expand:nth-child(4) .menu_items.expanded .menu_box,
  .menu.menu_expand:nth-child(5) .menu_items.expanded .menu_box,
  .menu.menu_expand:nth-child(6) .menu_items.expanded .menu_box {
    transition-delay: 0s;
  }
  .menu_social {
    margin-top: 0;
    padding: 20px 0;
    text-align: center;
    position: relative;
    top: unset;
    right: unset;
    transform: unset;

    display: none;
  }
  .menusocial_wrap ul li {
    display: inline-block;
  }
  .menusocial_wrap ul li:hover {
    transform: unset;
  }
  .menusocial_wrap ul li i {
    color: #fff;
    font-size: 24px;
    margin-right: 0.5rem;
  }
  .menusocial_wrap ul:nth-child(2) {
    display: block;
  }
  .menusocial_wrap ul li a {
    color: #fff;
    font-size: 18px;
    padding: 0;
    font-weight: 500;
  }
  .menu_item a {
    max-width: 100%;
    padding: 6px 15px;
    font-size: 14px;
    font-weight: 400;
  }
  .menu_itemtitle {
    padding: 6px 15px;
    font-size: 15px;
    font-weight: 600;
  }
  .menusocial_wrap ul {
    padding: 0;
    margin-bottom: 0;
  }
  .menu-wrapper-soci-ico .menu-social-ctrls {
    display: inline-block;
  }
  .menu-wrapper-soci-ico .menu-social-ctrls .menu-social-btns {
    padding: 19px;
    margin: 3px;
    background-color: #1a2029;
    box-shadow: 0 3px 6px rgb(15 17 21/64%);
    border-radius: 3px;
    color: #0099de;
    font-size: 25px;
    text-transform: none !important;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .menu-wrapper-soci-ico {
    text-align: center;
    padding: 0;
    margin: 10px auto;
  }
  .overlay_mainmenu.visible .col-md-12 {
    padding: 0;
  }
  /* .overlay_mainmenu .titlemenu_box .menu_title span {
    border-top: 4px solid transparent;
    border-left: 5px solid #222d39;
    border-bottom: 4px solid transparent;
  } */
  .overlay_mainmenu .titlemenu_box .menu_title span {
    transform: translateX(0);
  }
  .overlay_mainmenu .titlemenu_box .menu_title.active span {
    transform: translateX(0) rotate(90deg);
    filter: brightness(0) invert(1);
    /* border-left: 6px solid #fff; */
  }
  .overlay_mainmenu .titlemenu_box .menu_title span {
    right: 25px;
  }
  .overlay_mainmenu .titlemenu_box .menu_title span {
    transform: translateX(0);
    opacity: 1;
  }
  .menu_items {
    display: block;
  }
  .overlay_mainmenu .titlemenu_box .contact_title {
    font-size: 16px;
    margin: 0;
    max-width: 100%;
    border-top: 1px solid rgb(143 162 255 / 30%);
    padding: 10px 15px;
  }
  .menu_recent_blog {
    display: none;
  }
  .menusocial_wrap ul li a span {
    display: none;
  }
  .menusocial_wrap ul li i {
    margin-right: 0;
  }
  .titlemenu_box {
    min-height: 92vh;
    height: 92vh;
    padding-bottom: 50px;
  }
  .services_menu .menu_items .submenu_item {
    position: relative;
    font-size: 16px;
    color: #222d39;
    font-weight: 500;
    margin: 0;
    max-width: 100%;
    padding: 10px 15px;
    background: rgb(49 104 207 / 10%);
    margin-bottom: 5px;
  }
  .services_menu .menu_items .submenu_item span {
    position: absolute;
    transform: translateX(0);
    opacity: 1;
    right: 20px;
    width: 20px;
    height: 20px;
    background: url(../images/menu/menu_arrow.webp);
    border-radius: 0;
    transition: 0.2s ease-in-out;
    top: 29%;
  }
  .services_menu .menu_items .submenu_item.active span {
    transform: translateX(0) rotate(90deg);
    filter: brightness(0) invert(1);
    /* border-left: 6px solid #fff; */
  }
  .services_menu .menu_items .submenu_item.active {
    background: #3168cf;
    color: #fff;
  }
  .services_menu .submenu {
    display: none;
  }
  .service_menu_flex li.menu_item {
    flex: 100% 0;
  }
  .services_menu .submenu .submenu_item {
    display: none;
  }
}
@media (max-width: 991.98px) {
  header .mainmenu_full_wrapper {
    position: fixed;
    top: 0;
    transform: translateY(0) !important;
  }

  header .mainmenu_full_wrapper.hide {
    transform: translateY(0) !important;
  }
}

@media screen and (max-width: 575px) {
  .mainmenu_full_wrapper .navbar .container-fluid {
    justify-content: center;
  }
  .menusocial_wrap ul li {
    padding: 15px;
  }
  .titlemenu_box {
    margin-top: 0;
  }
  .mainmenu_full_wrapper .svg_button.rootLink a {
    padding: 6px 10px;
    font-size: 14px;
  }
  img.nav_brand {
    width: 90px;
  }
  .hamburger .line {
    height: 3px;
    width: 13px;
  }
  .hamburger .line2 {
    width: 26px;
  }
  .hamburger .line3 {
    width: 18px;
  }
  #menu_hamburger.is-active .line:nth-child(3) {
    width: 13px;
    transform: translate(11px, -3px) rotatez(45deg);
  }
  .services_menu .menu_items .submenu_item {
    font-size: 15px;
  }
}
@media screen and (max-width: 440px) {
  img.nav_brand {
    width: 85px;
    min-width: 85px;
    max-width: 85px;
  }
  #menu_hamburger img {
    width: 30px;
  }
  .mainmenu_full_wrapper .svg_button.rootLink a {
    padding: 6px 8px;
    font-size: 13px;
  }
  .section_head {
    font-size: 24px;
    line-height: 28px;
  }
  .ham_close_div {
    margin-top: 0;
  }
}
