:root {
  --tg-body-font-family: 'Inter', sans-serif;
  --tg-heading-font-family: 'Poppins', sans-serif;
  --tg-icon-font-family: "Font Awesome 5 Free";
  --tg-body-font-size: 16px;
  --tg-body-line-height: 1.75;
  --tg-heading-line-height: 1.3;
  --tg-body-color: #6D6C80;
  --tg-heading-color: #161439;
  --tg-theme-primary: #5751E1;
  --tg-theme-secondary: #FFC224;
  --tg-common-color-blue: #050071;
  --tg-common-color-blue-2: #282568;
  --tg-common-color-indigo: #9B51E0;
  --tg-common-color-purple: #8121FB;
  --tg-common-color-pink: #FF429D;
  --tg-common-color-red: #E11B24;
  --tg-common-color-orange: #fd7e14;
  --tg-common-color-yellow: #F8BC24;
  --tg-common-color-yellow-2: #FBE67B;
  --tg-common-color-yellow-3: #FCB428;
  --tg-common-color-green: #12BB6A;
  --tg-common-color-teal: #219653;
  --tg-common-color-cyan: #00AEE5;
  --tg-common-color-white: #fff;
  --tg-common-color-gray: #F7F7F9;
  --tg-common-color-gray-2: #EFEEFE;
  --tg-common-color-gray-3: #7F7E97;
  --tg-common-color-gray-4: #ACAACC;
  --tg-common-color-gray-5: #B2BBCC;
  --tg-common-color-gray-6: #d7d7df;
  --tg-common-color-gray-7: #f6f6f6;
  --tg-common-color-gray-8: #F5F5F4;
  --tg-common-color-gray-9: #F9F9F9;
  --tg-common-color-gray-10: #F8F8F8;
  --tg-common-color-gray-11: #F8F8FC;
  --tg-common-color-dark: #1C1A4A;
  --tg-common-color-black: #06042E;
  --tg-common-color-black-2: #161439;
  --tg-common-color-black-3: #000;
  --tg-border-1: #C9C9DD;
  --tg-border-2: #D0DAE9;
  --tg-border-3: #E2E2E2;
  --tg-border-4: #D7DCE3;
  --tg-border-5: #2F466A;
  --tg-border-6: #dfdfdf;
  --tg-border-7: #E7E7E7;
  --tg-fw-extra-bold: 800;
  --tg-fw-bold: 700;
  --tg-fw-semi-bold: 600;
  --tg-fw-medium: 500;
  --tg-fw-regular: 400;
  --tg-fw-light: 300;
}

/*=============================
	Typography css start
===============================*/
body {
  font-family: var(--tg-body-font-family);
  font-size: var(--tg-body-font-size);
  font-weight: var(--tg-fw-regular);
  color: #242424;
  line-height: var(--tg-body-line-height);
}


.mt-40 {
    margin-top: 40px;
}

/*=============================
	1. Button style
===============================*/
.tg-button-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

/* .btn {
  user-select: none;
  -moz-user-select: none;
  background: var(--tg-theme-primary) none repeat scroll 0 0;
  border: medium none;
  color: var(--tg-common-color-white);
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: var(--tg-fw-semi-bold);
  font-family: var(--tg-heading-font-family);
  letter-spacing: 0;
  line-height: 1.12;
  margin-bottom: 0;
  padding: 16px 30px;
  text-align: center;
  text-transform: capitalize;
  touch-action: manipulation;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  vertical-align: middle;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -o-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 4px 6px 0px 0px var(--tg-common-color-blue);
  overflow: hidden;
} */


.btn {
  user-select: none;
  -moz-user-select: none;
  background: #FD5959 none repeat scroll 0 0;
  border: medium none;
  color: var(--tg-common-color-white);
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--tg-heading-font-family);
  letter-spacing: 0;
  line-height: 1.12;
  margin-bottom: 0;
  padding: 12px 20px;
  text-align: center;
  text-transform: none;
  touch-action: manipulation;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  vertical-align: middle;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  white-space: nowrap;
  box-shadow: 2px 4px 0px 0px #ff9fa8;
  overflow: hidden;
}

.btn:hover, .btn:focus-visible {
  background: var(--tg-theme-secondary);
  color: var(--tg-heading-color);
  box-shadow: 0 0 0 0 var(--tg-common-color-blue);
}
.btn .text {
  display: block;
}
.btn.tg-svg {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn .svg-icon {
  width: 14px;
  display: block;
  margin-top: -3px;
}
.btn.btn-border {
  background: var(--tg-common-color-white);
  border: 1px solid var(--tg-theme-primary);
  color: var(--tg-theme-primary);
  padding: 19px 23px 16px 23px;
}
.btn.btn-border svg path {
  stroke: var(--tg-theme-primary);
}
.btn.btn-border:focus-visible, .btn.btn-border:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}
.btn.btn-border:focus-visible svg path, .btn.btn-border:hover svg path {
  stroke: var(--tg-common-color-white);
}
.btn.white-btn {
  background: var(--tg-common-color-white);
  color: var(--tg-theme-secondary);
}
.btn.white-btn svg path {
  stroke: var(--tg-theme-secondary);
}
.btn-two {
  background: var(--tg-theme-secondary);
  border: 2px solid var(--tg-common-color-black-3);
  -webkit-box-shadow: 4px 4px 0px 0px #3D3D3D;
  -moz-box-shadow: 4px 4px 0px 0px #3D3D3D;
  -ms-box-shadow: 4px 4px 0px 0px #3D3D3D;
  -o-box-shadow: 4px 4px 0px 0px #3D3D3D;
  box-shadow: 4px 4px 0px 0px #3D3D3D;
  color: var(--tg-common-color-black-3);
}
.btn-two svg {
  color: var(--tg-common-color-black-3) !important;
}
.btn-two:hover, .btn-two:focus-visible {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  box-shadow: 0 0 0 0 var(--tg-common-color-blue);
  border-color: var(--tg-theme-primary);
}
.btn-two:hover svg, .btn-two:focus-visible svg {
  color: var(--tg-common-color-white) !important;
}
.btn-three {
  background: var(--tg-theme-secondary);
  box-shadow: none;
  color: var(--tg-common-color-black-3) !important;
}
.btn-three svg {
  color: var(--tg-common-color-black-3) !important;
}
.btn-four {
  box-shadow: none;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
}

.arrow-btn {
  --arrow-hover-move-x: -110%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s linear;
}
.arrow-btn svg {
  color: var(--tg-common-color-white);
  width: 15px;
  transition: all 0.3s ease-out 0s;
  transform: translateY(-1px);
}
.arrow-btn svg path {
  transition: transform 0.38s cubic-bezier(0.37, 0.08, 0.02, 0.93), opacity 0.18s ease-out;
}
.arrow-btn svg path:nth-of-type(1) {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.15s, 0.15s;
}
.arrow-btn svg path:nth-of-type(2) {
  transform: translateX(calc(1 * var(--arrow-hover-move-x)));
  opacity: 0.5;
  transition-delay: 0s, 0s;
}
.arrow-btn:focus-visible svg, .arrow-btn:hover svg {
  color: var(--tg-heading-color);
}
.arrow-btn:focus-visible svg path:nth-of-type(1), .arrow-btn:hover svg path:nth-of-type(1) {
  transform: translateX(calc(-1 * var(--arrow-hover-move-x)));
  opacity: 0;
  transition-delay: 0s, 0s;
}
.arrow-btn:focus-visible svg path:nth-of-type(2), .arrow-btn:hover svg path:nth-of-type(2) {
  transform: translateX(0) translateY(0);
  opacity: 1;
  transition-delay: 0.15s, 0.15s;
}

.slaceline {
    width: 1px;
    height: 31px;
    background: #505050;
    margin: 3px 15px;
}
a.customlogo {
    font-size: 28px;
    font-weight: bold;
    color: #000;
    padding-top: 0;
    text-decoration: none;
    display: flex;
    align-content: flex-end;
    align-items: flex-end;
    line-height: 30px;
}

.tgmenu__nav .logo a img {
  margin-top: -5px;
  height: 50px;
}
.tgmenu__wrap{
  margin: 15px 0px;
}
.mnunmargin{
    margin-left:-5px !important;
    margin-right:-5px !important;
}

/*=============================
	02. Header
===============================*/

.ahelp{
  color:#161439;
}
.ahelp:hover{
  color:#5751e1;
  font-weight:normal;
}



.transparent-header {
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  z-index: 9;
  height: auto;
}
@media (max-width: 767.98px) {
  .transparent-header {
    top: 0;
  }
}

.tg-header__top {
  background-color: var(--tg-common-color-black-2);
  padding: 11px 0;
}
@media (max-width: 991.98px) {
  .tg-header__top {
    display: none;
  }
}
.tg-header__top-info {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px 27px;
}
@media (max-width: 991.98px) {
  .tg-header__top-info {
    display: none;
  }
}
.tg-header__top-info li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  color: #E6EAEF;
  font-size: 14px;
  font-weight: var(--tg-fw-medium);
  gap: 7px;
}
.tg-header__top-info li img {
  opacity: 0.6;
}
.tg-header__top-info li i {
  color: var(--tg-common-color-white);
  font-size: 20px;
}
.tg-header__top-info li a {
  color: #E6EAEF;
}
.tg-header__top-info li a:hover {
  color: var(--tg-common-color-white);
}
@media (max-width: 991.98px) {
  .tg-header__top-info li::after {
    display: none;
  }
  .tg-header__top-info li:last-child {
    display: none;
  }
}
.tg-header__top-right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px 27px;
  justify-content: flex-end;
}
@media (max-width: 991.98px) {
  .tg-header__top-right {
    justify-content: center;
  }
}
.tg-header__top-social {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px 12px;
  justify-content: flex-end;
}
@media (max-width: 767.98px) {
  .tg-header__top-social {
    justify-content: center;
  }
}
.tg-header__top-social li {
  color: var(--tg-common-color-white);
  font-size: 14px;
  font-weight: var(--tg-fw-medium);
}
.tg-header__top-social li:first-child {
  opacity: 0.5;
}
.tg-header__top-social li a {
  color: #E7EFFC;
}
.tg-header__top-social li a:hover {
  color: var(--tg-common-color-white);
}
.tg-header__top-btn .btn {
  border-radius: 0;
  box-shadow: none;
  padding: 14px 22px;
}
.tg-header__top-two {
  padding: 0 0;
}
.tg-header__phone {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #E6EAEF;
  font-size: 14px;
  font-weight: var(--tg-fw-medium);
}
.tg-header__phone a {
  color: #E6EAEF;
}
.tg-header__phone a:hover {
  color: var(--tg-common-color-white);
}
.tg-header__phone img {
  opacity: 0.6;
}
.tg-header__area {
  padding: 0px 0;
}
@media (max-width: 1500px) {
  .tg-header__area {
    padding: 10px 0;
  }
}
@media (max-width: 1199.98px) {
  .tg-header__area {
    padding: 20px 0;
  }
}
.tg-header__area .mobile-nav-toggler {
  position: relative;
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
  color: var(--tg-theme-primary);
  display: none;
}
@media (max-width: 1199.98px) {
  .tg-header__area .mobile-nav-toggler {
    display: block;
  }
}
.tg-header__area.sticky-menu {
  padding: 0 0;
}
@media (max-width: 1199.98px) {
  .tg-header__area.sticky-menu {
    padding: 20px 0;
  }
}
.tg-header__style-two .tgmenu__search-form {
  width: 460px;
}
@media (max-width: 1500px) {
  .tg-header__style-two .tgmenu__search-form {
    width: 330px;
  }
}
@media (max-width: 1199.98px) {
  .tg-header__style-two .tgmenu__search-form {
    width: 400px;
  }
}
@media (max-width: 991.98px) {
  .tg-header__style-two .tgmenu__search-form {
    width: auto;
  }
}
.tg-header__style-two .tgmenu__navbar-wrap ul {
  margin: 0 auto 0 50px;
}
@media (max-width: 1500px) {
  .tg-header__style-two .tgmenu__navbar-wrap ul {
    margin: 0 auto 0 25px;
  }
}
.tg-header__style-two .tgmenu__navbar-wrap ul li .mega-menu {
  left: -192px;
}
@media (max-width: 1500px) {
  .tg-header__style-two .tgmenu__navbar-wrap ul li .mega-menu {
    left: -100px;
  }
}
.tg-header__style-three {
  border-bottom: 1px solid #E0E0E0;
}
.tg-header__style-three .tgmenu__navbar-wrap ul {
  margin: 0 auto 0 170px;
}
@media (max-width: 1500px) {
  .tg-header__style-three .tgmenu__navbar-wrap ul {
    margin: 0 auto 0 100px;
  }
}
.tg-header__style-three .tgmenu__navbar-wrap ul li .mega-menu {
  left: -318px;
}
@media (max-width: 1500px) {
  .tg-header__style-three .tgmenu__navbar-wrap ul li .mega-menu {
    left: -185px;
  }
}
@media (max-width: 1199.98px) {
  .tg-header__style-four {
    padding: 25px 0;
  }
}
.tg-header__style-four .tgmenu__navbar-wrap ul {
  margin: 0 auto;
}
.tg-header__style-four .tgmenu__navbar-wrap ul li .mega-menu {
  left: -345px;
}
@media (max-width: 1500px) {
  .tg-header__style-four .tgmenu__navbar-wrap ul li .mega-menu {
    left: -185px;
  }
}
.tg-header__style-four .tgmenu__navbar-wrap ul li a {
  padding: 37px 15px;
}
.tg-header__style-five .tgmenu__navbar-wrap ul {
  margin: 0 auto 0 30px;
}
@media (max-width: 1500px) {
  .tg-header__style-five .tgmenu__navbar-wrap ul {
    margin: 0 auto 0 20px;
  }
}
.tg-header__style-five .tgmenu__navbar-wrap ul li .mega-menu {
  left: -180px;
}
@media (max-width: 1500px) {
  .tg-header__style-five .tgmenu__navbar-wrap ul li .mega-menu {
    left: -300px;
  }
}
.tg-header__style-six .tgmenu__navbar-wrap ul {
  margin: 0 auto;
}
.tg-header__style-six .tgmenu__navbar-wrap ul li .mega-menu {
  left: -390px;
}
@media (max-width: 1500px) {
  .tg-header__style-six .tgmenu__navbar-wrap ul li .mega-menu {
    left: -250px;
  }
}
.tg-header__style-seven .tgmenu__navbar-wrap ul {
  margin: 0 auto 0 0px;
}
@media (max-width: 1500px) {
  .tg-header__style-seven .tgmenu__navbar-wrap ul li .mega-menu {
    left: -195px;
  }
}
.tg-header__style-eight .tgmenu__navbar-wrap ul {
  margin: 0 auto;
}
.tg-header__style-eight .tgmenu__navbar-wrap ul a {
  padding: 32px 10px;
}
@media (max-width: 1500px) {
  .tg-header__style-eight .tgmenu__navbar-wrap ul a {
    padding: 25px 10px;
  }
}
.tg-header__style-eight .tgmenu__navbar-wrap ul li .mega-menu {
  left: -515px;
}
@media (max-width: 1500px) {
  .tg-header__style-eight .tgmenu__navbar-wrap ul li .mega-menu {
    left: -360px;
  }
}
@media (max-width: 1199.98px) {
  .tg-header__style-eight .logo.d-none {
    display: block !important;
  }
}
.tg-header__logo-area {
  margin-top: 32px;
}
@media (max-width: 1500px) {
  .tg-header__logo-area {
    margin-top: 25px;
  }
}
@media (max-width: 1199.98px) {
  .tg-header__logo-area {
    display: none;
  }
}
.tg-header__contact {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 1199.98px) {
  .tg-header__contact {
    display: none;
  }
}
.tg-header__contact .icon {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: #F3F3F3;
  color: var(--tg-heading-color);
  font-size: 18px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.tg-header__contact .content span {
  display: block;
  font-weight: 500;
  font-size: 12px;
  color: #868686;
  line-height: 1;
}
.tg-header__contact .content a {
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: var(--tg-heading-color);
}
.tg-header__contact .content a:hover {
  color: var(--tg-theme-primary);
}

.tgmenu__nav {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991.98px) {
  .tgmenu__nav {
    justify-content: space-between;
  }
}
.tgmenu__navbar-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-grow: 1;
}
.tgmenu__navbar-wrap ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 0;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 auto 0 73px;
}
@media (max-width: 1500px) {
  .tgmenu__navbar-wrap ul {
    margin: 0 auto 0 20px;
  }
}
.tgmenu__navbar-wrap ul li {
  display: block;
  position: relative;
  list-style: none;
}
.tgmenu__navbar-wrap ul li a {
  font-size: 16px;
  font-weight: var(--tg-fw-medium);
  text-transform: capitalize;
  color: var(--tg-heading-color);
  font-family: var(--tg-heading-font-family);
  padding: 7px 25px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  line-height: 1;
  position: relative;
  z-index: 1;
  text-decoration: none;
  height: 50px;
}
.tgmenu__navbar-wrap ul li:last-child a{
    border-right: 0px;
}
.list-wrap li {
    list-style: none;
}
.list-wrap li a, .list-wrap li:hover a {
    text-decoration: none;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
@media (max-width: 1500px) {
  .tgmenu__navbar-wrap ul li a {
    padding: 32px 7px;
  }
}
.tgmenu__navbar-wrap ul li .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 230px;
  border: 1px solid #f5f5f5;
  background: var(--tg-common-color-white);
  margin: 0;
  -webkit-transform: scale(1, 0);
  -moz-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  -o-transform: scale(1, 0);
  transform: scale(1, 0);
  transform-origin: 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
  -moz-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
  box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 0px;
  padding: 18px 0;
  display: block;
  visibility: hidden;
  opacity: 0;
  z-index: 9;
}
.tgmenu__navbar-wrap ul li .sub-menu .sub-menu {
  right: auto;
  left: 100%;
  top: 0;
}
.tgmenu__navbar-wrap ul li .sub-menu li {
  margin-left: 0;
  text-align: left;
  display: block;
}
.tgmenu__navbar-wrap ul li .sub-menu li a {
  padding: 8px 15px 8px 25px;
  line-height: 1.4;
  display: block;
  color: var(--tg-heading-color);
  text-transform: capitalize;
  font-size: 15px;
  height: auto;
}
.tgmenu__navbar-wrap ul li .sub-menu li:hover > a, .tgmenu__navbar-wrap ul li .sub-menu li.active > a {
  color: var(--tg-theme-primary);
}
.tgmenu__navbar-wrap ul li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.tgmenu__navbar-wrap ul li .mega-menu {
  min-width: 1400px;
  display: flex;
  align-items: flex-start;
  left: -100px;
  padding: 60px 60px 60px 50px;
}
@media (max-width: 1500px) {
  .tgmenu__navbar-wrap ul li .mega-menu {
    min-width: 1100px;
    padding: 60px 40px 60px 20px;
  }
}
.tgmenu__navbar-wrap ul li .mega-menu > li {
  border-right: 1px solid #D6D6D6;
}
.tgmenu__navbar-wrap ul li .mega-menu > li:nth-child(2) {
  border: none;
}
.tgmenu__navbar-wrap ul li .mega-menu > li:nth-child(3) {
  border: none;
  margin-left: auto;
}
.tgmenu__navbar-wrap ul li .mega-menu > li > .mega-sub-menu {
  display: flex;
  flex-direction: column;
  min-width: 260px;
  margin-left: 10px !important;
}
.tgmenu__navbar-wrap > ul > li.active a, .tgmenu__navbar-wrap > ul > li:hover a {
  color: var(--tg-theme-primary);
}
.tgmenu__main-menu li.menu-item-has-children .dropdown-btn {
  display: none;
}
.tgmenu__main-menu li.menu-item-has-children > a::after {
  content: "\f105";
  display: block;
  font-family: "flaticon_skill_grow";
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  font-size: 14px;
  font-weight: var(--tg-fw-bold);
  margin-left: 6px;
}
@media (max-width: 1500px) {
  .tgmenu__main-menu li.menu-item-has-children > a::after {
    margin-left: 4px;
  }
}
.tgmenu__main-menu li.menu-item-has-children > .sub-menu .menu-item-has-children {
  position: relative;
}
.tgmenu__main-menu li.menu-item-has-children > .sub-menu .menu-item-has-children > a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tgmenu__main-menu li.menu-item-has-children > .sub-menu .menu-item-has-children > a::after {
  content: "\f105";
  font-family: "flaticon_skill_grow";
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  font-size: 14px;
  font-weight: var(--tg-fw-bold);
  margin-left: 6px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.tgmenu__main-menu li.menu-item-has-children > .sub-menu .menu-item-has-children:hover a::after, .tgmenu__main-menu li.menu-item-has-children > .sub-menu .menu-item-has-children.active a::after {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.tgmenu__search {
  margin-inline-end: 25px;
}
@media (max-width: 1500px) {
  .tgmenu__search {
    margin-inline-end: 15px;
  }
}
@media (max-width: 1199.98px) {
  .tgmenu__search {
    margin-left: auto;
  }
}
.tgmenu__search-form {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 535px;
  border-radius: 100px;
  border: 1px solid #D3D2DF;
}
@media (max-width: 1800px) {
  .tgmenu__search-form {
    width: 485px;
  }
}
@media (max-width: 1500px) {
  .tgmenu__search-form {
    width: 355px;
  }
}
@media (max-width: 1199.98px) {
  .tgmenu__search-form {
    width: 410px;
  }
}
@media (max-width: 991.98px) {
  .tgmenu__search-form {
    width: auto;
  }
}
.tgmenu__search-form .select-grp {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  padding: 12px 0 12px 17px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  width: 153px;
  flex: 0 0 auto;
  position: relative;
}
.list-wrap {
    margin: 0px;
    padding: 0px;
}
@media (max-width: 1500px) {
  .tgmenu__search-form .select-grp {
    padding: 12px 0 12px 12px;
    width: 140px;
  }
}
.tgmenu__search-form .select-grp::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: #BDBABB;
}
@media (max-width: 991.98px) {
  .tgmenu__search-form .select-grp::after {
    display: none;
  }
}
.tgmenu__search-form .select-grp svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}
.tgmenu__search-form .select-grp path {
  fill: var(--tg-theme-primary);
}
.tgmenu__search-form .form-select {
  outline: none;
  box-shadow: none;
  border: none;
  padding-left: 8px;
  color: var(--tg-heading-color);
  font-family: var(--tg-heading-font-family);
  font-size: 14px;
}
.tgmenu__search-form .input-grp {
  position: relative;
  flex-grow: 1;
  margin-left: -1px;
}
@media (max-width: 991.98px) {
  .tgmenu__search-form .input-grp {
    display: none;
  }
}
.tgmenu__search-form input {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  padding: 12px 50px 10px 20px;
  height: 50px;
  font-size: 15px;
  font-family: var(--tg-heading-font-family);
}
@media (max-width: 1500px) {
  .tgmenu__search-form input {
    padding: 12px 50px 10px 10px;
  }
}
@media (max-width: 1199.98px) {
  .tgmenu__search-form input {
    padding: 12px 50px 10px 20px;
  }
}
.tgmenu__search-form input::placeholder {
  color: #8D9DB5;
  font-size: 14px;
}
.tgmenu__search-form [type=submit] {
  position: absolute;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 4px;
  width: 44px;
  height: 44px;
  border: none;
  padding: 0 0;
  background: var(--tg-theme-primary);
  font-size: 20px;
  color: var(--tg-common-color-white);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.tgmenu__search-form [type=submit]:hover {
  background: var(--tg-theme-secondary);
  color: var(--tg-heading-color);
}
.tgmenu__search-form-two {
  width: 348px;
  background: var(--tg-common-color-gray-7);
  border-color: var(--tg-border-6);
}
@media (max-width: 1800px) {
  .tgmenu__search-form-two {
    width: 300px;
  }
}
@media (max-width: 1500px) {
  .tgmenu__search-form-two {
    width: 220px;
  }
}
@media (max-width: 991.98px) {
  .tgmenu__search-form-two {
    display: none;
  }
}
.tgmenu__search-form-two input {
  padding: 12px 50px 10px 20px;
  height: 44px;
  font-size: 13px;
  color: var(--tg-heading-color);
  font-weight: 500;
}
.tgmenu__search-form-two input::placeholder {
  font-size: 13px;
  color: var(--tg-body-color);
  font-weight: 500;
}
.tgmenu__search-form-two [type=submit] {
  width: auto;
  height: auto;
  background: transparent;
  font-size: 24px;
  color: var(--tg-theme-primary);
  right: 12px;
}
.tgmenu__search-form-two [type=submit]:hover {
  color: var(--tg-theme-secondary);
  background: transparent;
}
.tgmenu__search-bar {
  flex-grow: 1;
}
@media (max-width: 1500px) {
  .tgmenu__search-bar {
    max-width: 240px;
  }
}
@media (max-width: 1199.98px) {
  .tgmenu__search-bar {
    max-width: 100%;
  }
}
@media (max-width: 991.98px) {
  .tgmenu__search-bar {
    display: none;
  }
}
.tgmenu__search-bar form {
  position: relative;
}
.tgmenu__search-bar form input {
  display: block;
  width: 100%;
  background: var(--tg-common-color-white);
  border: 1px solid var(--tg-border-2);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -o-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  padding: 12px 50px 10px 20px;
  height: 45px;
  font-size: 15px;
  font-family: var(--tg-heading-font-family);
}
.tgmenu__search-bar form input::placeholder {
  color: #8D9DB5;
  font-size: 14px;
}
.tgmenu__search-bar form [type=submit] {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  -o-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
  right: 10px;
  border: none;
  padding: 0 0;
  background: transparent;
  font-size: 24px;
  color: #8D9DB5;
}
.tgmenu__search-bar form [type=submit]:hover {
  color: var(--tg-theme-primary);
}
.tgmenu__search-two {
  margin-inline-end: 0;
}
@media (max-width: 1199.98px) {
  .tgmenu__action {
    margin: 0 25px 0 0;
  }
}
@media (max-width: 767.98px) {
  .tgmenu__action {
    display: none;
  }
}
.tgmenu__action > ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tgmenu__action > ul li {
  position: relative;
  padding: 0 6px 0 0;
  flex: 0 0 auto;
}
.tgmenu__action > ul li .cart-count {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #7F7E97;
  color: #7F7E97;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.tgmenu__action > ul li .cart-count span {
  position: absolute;
  top: -9px;
  right: 0;
  width: 22px;
  height: 22px;
  font-size: 14px;
  font-weight: 500;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-theme-secondary);
  color: var(--tg-heading-color);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  z-index: 1;
}
.tgmenu__action > ul li .cart-count:hover {
  background: var(--tg-theme-primary);
  border-color: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}
.tgmenu__action > ul li:first-child {
  margin-left: 0;
}
@media (max-width: 1500px) {
  .tgmenu__action > ul li.free-btn {
    display: none;
  }
}
.tgmenu__action > ul li.header-search a {
  font-size: 24px;
  line-height: 0;
  color: var(--tg-body-color);
}
.tgmenu__action > ul li.header-search a:hover {
  color: var(--tg-theme-secondary);
}
.tgmenu__action > ul li.login-btn {
  padding: 0 0;
  margin-inline-start: 15px;
}
@media (max-width: 1500px) {
  .tgmenu__action > ul li.login-btn {
    margin-inline-start: 0;
  }
}
.tgmenu__action > ul li.login-btn a {
  display: block;
  border-radius: 50px;
  padding: 12px 26px;
  border: 1px solid rgba(6, 35, 91, 0.19);
  background: var(--tg-theme-secondary);
  font-size: 15px;
  color: var(--tg-heading-color);
  font-weight: 600;
  line-height: 18px;
}
.tgmenu__action > ul li.login-btn a:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}
.tgmenu__action > ul li.header-user a {
  width: 46px;
  height: 46px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-common-color-gray-7);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: var(--tg-body-color);
  line-height: 0;
  font-size: 18px;
}
.tgmenu__action > ul li.header-user a:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}
.tgmenu__action > ul li.header-contact {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (max-width: 1500px) {
  .tgmenu__action > ul li.header-contact {
    display: none;
  }
}
.tgmenu__action > ul li.header-contact .icon {
  width: 46px;
  height: 46px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-theme-secondary);
  color: var(--tg-heading-color);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  font-size: 20px;
  line-height: 0;
}
.tgmenu__action > ul li.header-contact .icon svg {
  width: 20px;
  height: 20px;
}
.tgmenu__action > ul li.header-contact .content span {
  display: block;
  line-height: 1;
  font-weight: 500;
  font-size: 13px;
  color: #868686;
  margin-bottom: 6px;
}
.tgmenu__action > ul li.header-contact .content a {
  font-weight: 600;
  font-size: 18px;
  display: block;
  line-height: 1;
  color: var(--tg-heading-color);
}
.tgmenu__action > ul li.header-contact .content a:hover {
  color: var(--tg-theme-primary);
}
.tgmenu__action-two .mini-cart-icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.tgmenu__action-two .mini-cart-icon .cart-count-two {
  position: relative;
  font-size: 30px;
  line-height: 0;
  color: var(--tg-common-color-black-2);
}
.tgmenu__action-two .mini-cart-icon .cart-count-two .mini-cart-count {
  position: absolute;
  width: 23px;
  height: 23px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  top: -10px;
  right: -13px;
}
.tgmenu__action-two .mini-cart-icon .cart-count-two:hover {
  color: var(--tg-theme-secondary);
}
.tgmenu__action-two .mini-cart-icon strong {
  font-size: 14px;
  font-weight: 500;
  color: var(--tg-common-color-black-2);
  line-height: 1.2;
}
.tgmenu__action-three {
  margin-left: auto;
}
.tgmenu__action-three > ul {
  gap: 14px;
}
.tgmenu__action-three > ul li.header-btn .btn {
  font-size: 14px;
  font-weight: 600;
  padding: 16px 26px;
}
.tgmenu__action-four {
  margin-left: 80px;
}
@media (max-width: 1199.98px) {
  .tgmenu__action-four {
    margin-left: auto;
  }
}
.tgmenu__action-four > ul li.header-search a {
  width: 40px;
  height: 40px;
  background: var(--tg-common-color-white);
  border: 1px solid #d9d9d9;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  font-size: 20px;
  line-height: 0;
}
.tgmenu__action-four > ul li.header-search a:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  border-color: var(--tg-theme-primary);
}
.tgmenu__action-four > ul li .cart-count {
  width: 40px;
  height: 40px;
  background: var(--tg-common-color-white);
  border: 1px solid #d9d9d9;
}
.tgmenu__action-four > ul li .cart-count:hover {
  border-color: var(--tg-theme-primary);
}
.tgmenu__action-four > ul li.header-btn {
  margin-left: 5px;
}
.tgmenu__action-four > ul li.header-btn .btn {
  font-size: 14px;
  font-weight: 600;
  padding: 13px 23px;
  box-shadow: none;
}
.tgmenu__action-four > ul li.offCanvas-menu {
  padding-right: 0;
}
.tgmenu__action-four > ul li.offCanvas-menu .menu-tigger {
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9d9d9;
  background: var(--tg-common-color-white);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: var(--tg-body-color);
}
.tgmenu__action-four > ul li.offCanvas-menu .menu-tigger:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  border-color: var(--tg-theme-primary);
}
.tgmenu__action-five {
  margin-left: auto;
}
.tgmenu__action-five > ul li .cart-count {
  width: 46px;
  height: 46px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--tg-common-color-gray-7);
  color: var(--tg-body-color);
  font-size: 20px;
  line-height: 0;
}
.tgmenu__action-five > ul li .cart-count span {
  background: var(--tg-heading-color);
  color: var(--tg-common-color-white);
}
.tgmenu__action-six {
  margin-left: auto;
}
.tgmenu__action-six .list-wrap {
  gap: 10px;
}
.tgmenu__action-six .list-wrap li {
  padding: 0;
}
.tgmenu__action-six .list-wrap li.mini-cart-icon a, .tgmenu__action-six .list-wrap li.header-user a, .tgmenu__action-six .list-wrap li.header-search a {
  width: 42px;
  height: 42px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c5c5c5;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: var(--tg-common-color-white);
  font-size: 20px;
  color: var(--tg-body-color);
}
.tgmenu__action-six .list-wrap li.mini-cart-icon a:hover, .tgmenu__action-six .list-wrap li.header-user a:hover, .tgmenu__action-six .list-wrap li.header-search a:hover {
  background: var(--tg-theme-primary);
  border-color: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}
.tgmenu__action-six .list-wrap li.header-btn .btn {
  box-shadow: none;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  padding: 16px 20px;
}
.tgmenu__action-six .list-wrap li.mini-cart-icon {
  padding: 0 6px 0 0;
}
.tgmenu__action-seven {
  margin-left: auto;
}
@media (max-width: 1199.98px) {
  .tgmenu__action-seven {
    margin: 0 10px 0 0;
    margin-left: auto;
  }
}
.tgmenu__action-seven .list-wrap li .select-grp-two {
  margin-left: 0;
}
.tgmenu__action-seven .list-wrap li .select-grp-two .dropdown-toggle {
  background: var(--tg-common-color-white);
  color: var(--tg-heading-color);
  font-weight: 500;
}
.tgmenu__action-seven .list-wrap li.mini-cart-icon a, .tgmenu__action-seven .list-wrap li.header-search a {
  width: 46px;
  height: 46px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-common-color-white);
  border: 1px solid #CFCFCF;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  font-size: 20px;
  color: var(--tg-body-color);
}
.tgmenu__action-seven .list-wrap li.mini-cart-icon a:hover, .tgmenu__action-seven .list-wrap li.header-search a:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  border-color: var(--tg-theme-primary);
}
.tgmenu__action-seven .list-wrap li.header-btn .btn i {
  padding-left: 10px;
}
.tgmenu__action-seven .list-wrap li.header-btn .btn {
  box-shadow: none;
  font-size: 14px;
}
.tgmenu__action-eight .list-wrap li.mini-cart-icon a, .tgmenu__action-eight .list-wrap li.header-user a {
  width: 40px;
  height: 40px;
  color: var(--tg-heading-color);
}
.tgmenu__action-eight .list-wrap li.mini-cart-icon a svg, .tgmenu__action-eight .list-wrap li.header-user a svg {
  width: 17px;
  height: auto;
}
.tgmenu__action-eight .list-wrap li.mini-cart-icon a:hover, .tgmenu__action-eight .list-wrap li.header-user a:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}
.tgmenu__action-eight .list-wrap li .mini-cart-count {
  background: var(--tg-theme-secondary);
  color: var(--tg-common-color-white);
}
@media (max-width: 1199.98px) {
  .tgmenu__categories {
    margin-left: auto;
  }
}
.tgmenu__categories .dropdown-toggle {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  border: 1px solid var(--tg-border-6);
  border-radius: 100px;
  background: #f6f6f6;
  position: relative;
  padding: 10px 16px;
  font-size: 14px;
  font-family: var(--tg-heading-font-family);
  color: var(--tg-body-color);
  font-weight: 400;
  gap: 0 13px;
}
.tgmenu__categories .dropdown-toggle i {
  color: var(--tg-theme-primary);
  font-size: 16px;
}
.tgmenu__categories .dropdown-toggle::after {
  content: "";
  display: block;
  margin: 0 0 0 4px;
  border: none;
  background-image: url(../img/icons/down_arrow.svg);
  width: 12px;
  height: 8px;
}
.tgmenu__categories .dropdown-menu {
  width: 100%;
  min-width: 100%;
  background-color: var(--tg-common-color-white);
  border: 1px solid var(--tg-border-2);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
}
.tgmenu__categories .dropdown-item {
  color: var(--tg-body-color);
}
.tgmenu__categories .dropdown-item:hover, .tgmenu__categories .dropdown-item:focus {
  background-color: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.mega-sub-menu li a {
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.tg-badge {
  background: linear-gradient(90deg, #ff1515 0%, #ed0fbc 100%);
  display: inline-block;
  line-height: 1;
  color: var(--tg-common-color-white);
  font-weight: 600;
  font-size: 13px;
  font-family: var(--tg-heading-font-family);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding: 3px 8px;
}
.tg-badge-two {
  display: inline-block;
  line-height: 1;
  color: var(--tg-common-color-white);
  font-weight: 600;
  font-size: 13px;
  font-family: var(--tg-heading-font-family);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding: 3px 8px;
  background: #39cabd;
}

.mega-menu-img a {
  padding: 0 !important;
}
.mega-menu-img a img {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
}

.sticky-menu {
  position: fixed;
  left: 0;
  margin: auto;
  top: 0;
  width: 100%;
  z-index: 99;
  background: var(--tg-common-color-white);
  -webkit-animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  border-radius: 0;
}
.sticky-menu ul li .sub-menu {
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  -o-border-radius: 0 0 6px 6px;
  -ms-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
}

#header-fixed-height.active-height {
  display: block;
  height: 90px;
}
@media (max-width: 767.98px) {
  #header-fixed-height.active-height {
    height: 80px;
  }
}

.mobile-login-btn {
  margin-left: auto;
  display: none;
}
@media (max-width: 767.98px) {
  .mobile-login-btn {
    display: flex;
  }
}
.mobile-login-btn a {
  margin-right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  background: #F4F4F4;
  justify-content: center;
  border-radius: 50%;
  line-height: 0;
  color: var(--tg-body-color);
}
.mobile-login-btn a:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}
.mobile-login-btn-two a {
  background: var(--tg-common-color-white);
  border: 1px solid #d9d9d9;
  color: var(--tg-body-color);
}

.select-grp-two {
  margin-left: 55px;
}
@media (max-width: 1800px) {
  .select-grp-two {
    margin-left: 30px;
  }
}
@media (max-width: 767.98px) {
  .select-grp-two {
    display: none;
  }
}
.select-grp-two .select2-container .select2-selection--single {
  height: auto;
}
.select-grp-two .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 25px;
  padding-right: 18px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.1rem center;
  background-size: 16px 12px;
  font-size: 14px;
  font-family: var(--tg-heading-font-family);
  color: var(--tg-body-color);
  font-weight: 400;
}

/*=============================
	03. Mobile Menu
===============================*/
.tgmobile__search {
  padding: 0 20px 25px 25px;
}
.tgmobile__search form {
  position: relative;
}
.tgmobile__search input {
  display: block;
  width: 100%;
  border: none;
  padding: 10px 45px 10px 20px;
  font-size: 15px;
  height: 45px;
  background: var(--tg-common-color-gray);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
.tgmobile__search input::placeholder {
  font-size: 15px;
  color: var(--tg-body-color);
}
.tgmobile__search button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  border: none;
  padding: 0;
  right: 20px;
  line-height: 1;
  background: transparent;
  color: var(--tg-heading-color);
}
.tgmobile__menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right: 30px;
  max-width: 100%;
  height: 100%;
  z-index: 99;
  border-radius: 0px;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) e;
  -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transform: translateX(101%);
  -moz-transform: translateX(101%);
  -ms-transform: translateX(101%);
  -o-transform: translateX(101%);
  transform: translateX(101%);
}
.tgmobile__menu .navbar-collapse {
  display: block !important;
}
.tgmobile__menu .nav-logo {
  position: relative;
  padding: 30px 25px;
  text-align: left;
}
.tgmobile__menu .nav-logo img {
  width: 150px;
}
.tgmobile__menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  float: none;
  margin: 0;
  padding: 0;
}
.tgmobile__menu .navigation li {
  position: relative;
  display: block;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.tgmobile__menu .navigation li.active > a {
  color: var(--tg-theme-primary);
}
.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn {
  position: absolute;
  right: 20px;
  top: 6px;
  width: 32px;
  height: 32px;
  text-align: center;
  font-size: 16px;
  line-height: 32px;
  color: var(--tg-heading-color);
  background: var(--tg-common-color-gray);
  cursor: pointer;
  border-radius: 2px;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 5;
}
.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn .plus-line {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
  border-radius: 10px;
  width: 12px;
  height: 2px;
  background-color: var(--tg-common-color-black);
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn .plus-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
  border-radius: 10px;
  width: 2px;
  height: 12px;
  background-color: var(--tg-common-color-black);
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open {
  background-color: var(--tg-theme-primary);
}
.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open .plus-line {
  background-color: var(--tg-common-color-white);
}
.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open .plus-line::after {
  display: none;
}
.tgmobile__menu .navigation li > a {
  position: relative;
  display: block;
  line-height: 1.5;
  padding: 10px 60px 10px 25px;
  font-size: 16px;
  font-weight: 500;
  color: var(--tg-heading-color);
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  border: none;
}
.tgmobile__menu .navigation li > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 2px;
  background: var(--tg-theme-primary);
  pointer-events: none;
}
.tgmobile__menu .navigation li ul li > a {
  margin-left: 20px;
}
.tgmobile__menu .navigation li ul li ul li a {
  margin-left: 40px;
}
.tgmobile__menu .navigation li ul li ul li ul li a {
  margin-left: 60px;
}
.tgmobile__menu .navigation li > ul {
  display: none;
}
.tgmobile__menu .navigation li > ul > li > ul {
  display: none;
}
.tgmobile__menu .navigation ul {
  padding: 0;
  margin: 0;
}
.tgmobile__menu .navigation ul li a {
  display: block;
}
.tgmobile__menu .navigation ul li ul li > a {
  font-size: 16px;
  margin-left: 20px;
  text-transform: capitalize;
}
.tgmobile__menu .navigation:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.tgmobile__menu .navigation > li > ul > li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.tgmobile__menu .navigation > li.active > a::before {
  height: 100%;
}
.tgmobile__menu .close-btn {
  position: absolute;
  right: 15px;
  top: 28px;
  line-height: 30px;
  width: 35px;
  text-align: center;
  font-size: 14px;
  color: var(--tg-theme-primary);
  cursor: pointer;
  padding: 8px;
  z-index: 10;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.tgmobile__menu .close-btn i[class^=flaticon-]:before {
  font-weight: var(--tg-fw-bold) !important;
}
.tgmobile__menu-backdrop {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -webkit-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.5);
}
.tgmobile__menu .social-links ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
  text-align: center;
  padding: 30px 20px 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.tgmobile__menu .social-links ul li {
  position: relative;
  display: inline-block;
  margin: 0px 6px 10px;
}
.tgmobile__menu .social-links ul li a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: relative;
  line-height: 32px;
  font-size: 16px;
  color: var(--tg-body-color);
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  border: 1px solid #efefef;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}
.tgmobile__menu .social-links ul li a:hover {
  border-color: var(--tg-theme-primary);
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}
.tgmobile__menu .tgmenu__action {
  padding: 0 0;
  margin: 0 0;
}
.tgmobile__menu .tgmenu__action > ul {
  margin: 0 0;
  padding: 30px 20px 0;
  justify-content: center;
  gap: 0 15px;
}
.tgmobile__menu .tgmenu__action > ul li {
  margin: 0 0;
}
.tgmobile__menu .tgmenu__action > ul .header-btn {
  display: block;
}
.tgmobile__menu-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--tg-common-color-white);
  padding: 0px 0px;
  z-index: 5;
  box-shadow: -9px 0 14px 0px rgba(0, 0, 0, 0.06);
}
.tgmobile__menu-outer .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  display: none;
  color: var(--tg-common-color-white);
  margin-right: 30px;
  top: 15px;
}

.mobile-menu-visible {
  overflow: hidden;
}
.mobile-menu-visible .tgmobile__menu {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}
.mobile-menu-visible .tgmobile__menu-backdrop {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-visible .tgmobile__menu .close-btn {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
}

.tgmobile__menu .mega-menu > li > .mega-sub-menu {
  display: flex !important;
  flex-direction: column;
  min-width: auto;
  margin-left: 0 !important;
}

.tgmobile__menu .mega-menu > li:nth-child(3) {
  display: none;
}

.tgmobile__menu .mega-menu > li > .mega-sub-menu a {
  margin-left: 20px;
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 10px 25px 10px 25px;
}

.tgmobile__menu .navigation li > .mega-menu > li .mega-sub-menu li:first-child {
  border: none;
}





/* 
.tgmenu__nav .menu-item-has-children {
    position: relative;
}

.tgmenu__nav .menu-item-has-children .sub-menu {
    position: fixed;              
    top: 65px;                   
    left: 0;                      
    width: 100vw;                 
    background-color: #fff;
    z-index: 1000;
    padding: 20px 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: none;
}

.tgmenu__nav .menu-item-has-children:hover > .sub-menu {
    display: block;
}

.tgmenu__nav .sub-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
}

.tgmenu__nav .sub-menu li {
    display: inline-block;
    margin: 0 15px;
}

 */



/*=============================
    24. Footer
===============================*/
.footer__area {
  background: #090822;
}
.footer__area-two {
  margin-top: -160px;
  background: var(--tg-common-color-black);
}
.footer__area-two .footer__top {
  padding: 230px 0 60px;
}
.footer__area-three {
  background: var(--tg-common-color-black);
}
/* .footer__area-five {
  padding-top: 100px;
  margin-top: -100px;
} */
.footer__bg {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
}
.footer__bg-shape {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 22px;
  position: absolute;
  left: 0;
  top: -25px;
}
.footer__bg-shape svg {
  color: var(--tg-common-color-blue-2);
  width: 100%;
  height: 22px;
}
.footer__top {
  padding: 70px 0 30px;
}
.orglogo img {
  width: 110px !important;
}



@media (max-width: 767.98px) {
  .footer__top {
    padding: 80px 0 40px;
  }
}
.footer__top .row [class*=col-]:nth-child(2) .footer__widget {
  margin-left: 60px;
}
@media (max-width: 991.98px) {
  .footer__top .row [class*=col-]:nth-child(2) .footer__widget {
    margin-left: 0;
  }
}
.footer__top .row [class*=col-]:nth-child(3) .footer__widget {
  margin-left: 60px;
}
@media (max-width: 991.98px) {
  .footer__top .row [class*=col-]:nth-child(3) .footer__widget {
    margin-left: 0;
  }
}
.footer__top-three {
  position: relative;
  z-index: 1;
}
.footer__widget {
  margin-bottom: 35px;
}
.footer__widget-title {
  margin-bottom: 0;
  color: var(--tg-common-color-white);
  font-size: 22px;
  font-weight: 600;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.footer__widget-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background: var(--tg-theme-primary);
}
.footer__content p {
  margin-bottom: 12px;
  color: var(--tg-common-color-gray-5);
  width: 100%;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer__content p {
    width: 100%;
  }
}
.footer__content .list-wrap li {
  color: var(--tg-common-color-gray-5);
  font-weight: 500;
  margin-bottom: 7px;
}
.footer__content .list-wrap li:last-child {
  margin-bottom: 0;
}
.footer__content-two .list-wrap li a {
  font-size: 18px;
  font-weight: 600;
  color: var(--tg-common-color-white);
}
.footer__content-two .list-wrap li a:hover {
  color: var(--tg-theme-secondary);
}
.footer__content-two .list-wrap li.email a {
  font-size: 16px;
  font-weight: 400;
  color: #BBBBBB;
}
.footer__content-two .list-wrap li.email a:hover {
  color: var(--tg-theme-secondary);
}
.footer__link .list-wrap li {
  margin-bottom: 10px;
}
.footer__link .list-wrap li:last-child {
  margin-bottom: 0;
}
.footer__link .list-wrap li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--tg-common-color-gray-5);
  position: relative;
}
.contectinforadd i {
  margin-right: 8px;
}

.contectinforadd {
  color: #b2bbcc;
  font-size: 14px;
}
.footer__link .list-wrap li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(0.74, 0.72, 0.27, 0.24);
}
.footer__link .list-wrap li a:hover {
  color: var(--tg-theme-secondary);
}
.footer__link .list-wrap li a:hover::before {
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}
.footer__contact-content p {
  margin-bottom: 10px;
  color: var(--tg-common-color-gray-5);
}
.footer__newsletter p {
  margin-bottom: 20px;
  font-size:14px;
  color: var(--tg-common-color-gray-5);
}
.footer__newsletter-form {
  position: relative;
  margin-bottom: 25px;
}
.footer__newsletter-form input {
  width: 100%;
  background: #212040;
  padding: 13px 140px 13px 20px;
  border: none;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 400;
  color: var(--tg-common-color-white);
  height: 50px;
}
.footer__newsletter-form input::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #706f84;
}
.footer__newsletter-form button {
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--tg-heading-color);
  background: var(--tg-theme-secondary);
  text-transform: capitalize;
  -webkit-border-radius: 0 6px 6px 0;
  -moz-border-radius: 0 6px 6px 0;
  -o-border-radius: 0 6px 6px 0;
  -ms-border-radius: 0 6px 6px 0;
  border-radius: 0 6px 6px 0;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  padding: 12px 28px;
  height: 50px;
}
.footer__newsletter-form button:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}
.footer__newsletter-form-two input {
  border-radius: 100px;
}
.footer__newsletter-form-two button {
  border-radius: 100px;
}
.footer__social {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 35px;
}
.footer__social li a {
  color: var(--tg-common-color-gray-5);
}
.footer__social li a:hover {
  color: var(--tg-theme-secondary);
}
.footer__social-wrap .title {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--tg-common-color-gray-5);
  font-family: var(--tg-body-font-family);
}
.footer__social-two {
  margin-bottom: 0;
}
.footer__social-two li a {
  color: var(--tg-common-color-white);
}
.footer__social-two li a:hover {
  color: var(--tg-theme-secondary);
}
.footer__bottom {
  background: var(--tg-common-color-dark);
  padding: 35px 0;
}
@media (max-width: 991.98px) {
  .footer__bottom {
    padding: 25px 0;
  }
}
.footer__bottom-two {
  border-top: 1px solid #191838;
  padding: 25px 0;
}
@media (max-width: 991.98px) {
  .footer__bottom-two {
    padding: 25px 0;
  }
}
.footer__bottom-three {
  background: #272260;
}
.footer__bottom-three .copy-right-text p {
  color: #cfd9ea;
}
.footer__bottom-three .footer__bottom-menu .list-wrap li a {
  color: #cfd9ea;
}
.footer__bottom-four {
  position: relative;
  z-index: 2;
}
.footer__bottom-menu .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
}
@media (max-width: 767.98px) {
  .footer__bottom-menu .list-wrap {
    justify-content: center;
  }
}
.footer__bottom-menu .list-wrap li a {
  color: #8C9AB4;
  position: relative;
  font-size:24px;
}
.footer__bottom-menu .list-wrap li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(0.74, 0.72, 0.27, 0.24);
}
.footer__bottom-menu .list-wrap li a::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 12px;
  background: #8C9AB4;
}
.footer__bottom-menu .list-wrap li a:hover {
  color: var(--tg-theme-secondary);
}
.footer__bottom-menu .list-wrap li a:hover::before {
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}
.footer__bottom-menu .list-wrap li:last-child a::after {
  display: none;
}
.footer__shape {
  background-size: cover;
  background-position: center;
  position: absolute;
  z-index: -2;
  left: 0;
  bottom: -55px;
  width: 100%;
  height: 138px;
}
.footer__shape-wrap img {
  position: absolute;
  z-index: -1;
}
.footer__shape-wrap img:nth-child(1) {
  left: 4%;
  top: 13%;
  max-width: 75px;
}
@media (max-width: 1800px) {
  .footer__shape-wrap img:nth-child(1) {
    left: 1%;
  }
}
@media (max-width: 1500px) {
  .footer__shape-wrap img:nth-child(1) {
    top: 1%;
    max-width: 60px;
  }
}
@media (max-width: 767.98px) {
  .footer__shape-wrap img:nth-child(1) {
    display: none;
  }
}
.footer__shape-wrap img:nth-child(2) {
  left: 0;
  bottom: 16%;
  max-width: 82px;
  z-index: 1;
}
@media (max-width: 1199.98px) {
  .footer__shape-wrap img:nth-child(2) {
    bottom: 10%;
  }
}
@media (max-width: 991.98px) {
  .footer__shape-wrap img:nth-child(2) {
    bottom: 8%;
  }
}
@media (max-width: 767.98px) {
  .footer__shape-wrap img:nth-child(2) {
    display: none;
  }
}
.footer__shape-wrap img:nth-child(3) {
  right: 47%;
  bottom: 13%;
  max-width: 115px;
  z-index: 1;
}
@media (max-width: 1199.98px) {
  .footer__shape-wrap img:nth-child(3) {
    bottom: 9%;
  }
}
@media (max-width: 991.98px) {
  .footer__shape-wrap img:nth-child(3) {
    display: none;
  }
}
.footer__shape-wrap img:nth-child(4) {
  right: 6%;
  top: 7%;
  max-width: 120px;
}
@media (max-width: 1800px) {
  .footer__shape-wrap img:nth-child(4) {
    right: 4%;
    top: 7%;
    max-width: 105px;
  }
}
@media (max-width: 1199.98px) {
  .footer__shape-wrap img:nth-child(4) {
    right: 5%;
    top: 26%;
  }
}
@media (max-width: 767.98px) {
  .footer__shape-wrap img:nth-child(4) {
    display: none;
  }
}
.footer__shape-wrap .shape-inner {
  right: 0;
  bottom: 22%;
  position: absolute;
  z-index: -2;
}
@media (max-width: 1800px) {
  .footer__shape-wrap .shape-inner {
    bottom: 43%;
  }
}
@media (max-width: 767.98px) {
  .footer__shape-wrap .shape-inner {
    display: none;
  }
}
@media (max-width: 1800px) {
  .footer__shape-wrap .shape-inner svg {
    max-width: 90px;
    height: auto;
  }
}
.footer__shape-wrap .shape-inner svg path {
  animation: animation__shape-two 0.8s infinite linear;
  animation-play-state: running;
}

.app-download {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 8px;
}
.app-download a img {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}

.copy-right-text p {
  margin-bottom: 0;
  color: #8C9AB4;
  font-size:14px;
}
@media (max-width: 767.98px) {
  .copy-right-text p {
    margin-bottom: 5px;
    text-align: center;
  }
}



/*=============================
    00. Scroll Top
===============================*/
.scroll__top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: -10%;
  right: 50px;
  font-size: 16px;
  border-radius: 50px;
  z-index: 99;
  color: var(--tg-common-color-white);
  text-align: center;
  cursor: pointer;
  background: var(--tg-theme-primary);
  transition: 1s ease;
  border: none;
}
@media (max-width: 1199.98px) {
  .scroll__top {
    right: 25px;
  }
}
@media (max-width: 991.98px) {
  .scroll__top {
    right: 30px;
  }
}
@media (max-width: 767.98px) {
  .scroll__top {
    right: 15px;
    width: 30px;
    height: 30px;
  }
}
.scroll__top.open {
  bottom: 30px;
}
@media (max-width: 1199.98px) {
  .scroll__top.open {
    bottom: 25px;
  }
}
@media (max-width: 767.98px) {
  .scroll__top.open {
    bottom: 15px;
  }
}
.scroll__top::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}
.scroll__top:hover {
  background: var(--tg-theme-secondary);
  color: var(--tg-heading-color);
}

.footer__bottom-menu .list-wrap li a span{
  display: none;
}

.justifycont{
  justify-content: end !important;
}
.inheader_mrgn{
  margin: 0px 10px 0 0 !important;
}

.container {
    max-width: 90% !important;
    width: 85% !important;
    padding-left: 20px;
    padding-right: 20px;
    justify-content: center;
}






/*=============================
    05. Slider
===============================*/
.slider__bg {
  background-size: cover;
  background-position: center 40%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  background-color: #000;
  padding:12% 0px;
  opacity: 1 !important;
  height: 90vh;
}
@media (max-width: 1500px) {
  .slider__bg {
  
  }
}
.slider__bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(90deg, #031a3c 22.99%, rgba(0, 0, 2, 0) 58.33%);
}
.slider__content {
  margin-right: 90px;
  margin-top: -40px;
}



@media (max-width: 1500px) {
  .slider__content {
    margin-right: 50px;
  }
}
@media (max-width: 1199.98px) {
  .slider__content {
    margin-right: 0;
  }
}
@media (max-width: 991.98px) {
  .slider__content {
    text-align: center;
  }
}
.slider__content .sub-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  color: var(--tg-theme-secondary);
  letter-spacing: 0.1em;
  margin-bottom: 0px;
}
.slider__content .title {
  font-weight: 700;
  font-size: 50px;
  color: var(--tg-common-color-white);
  margin-bottom: 10px;
  padding: 15px 0;
}
@media (max-width: 1199.98px) {
  .slider__content .title {
    font-size: 45px;
  }
}
@media (max-width: 767.98px) {
  .slider__content .title {
    font-size: 38px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider__content .title {
    font-size: 42px;
  }
}
.slider__content .title span {
  position: relative;
  display: inline-block;
}
.slider__content .title span svg {
  position: absolute;
  z-index: -1;
  width: 100%;
  left: 0;
  bottom: 0;
  color: var(--tg-theme-secondary);
}
.slider__content p {
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 500;
  color: var(--tg-common-color-gray-6);
  width: 95%;
}
@media (max-width: 1199.98px) {
  .slider__content p {
    width: 100%;
  }
}
.slider__search-form {
  position: relative;
}
.slider__search-form input {
  width: 100%;
  background: var(--tg-common-color-white);
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--tg-heading-color);
  padding: 18px 185px 18px 25px;
  border-radius: 100px;
  height: 60px;
}
.slider__search-form button {
  border: none;
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  padding: 11px 32px;
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
}
.slider__search-form button:hover {
  background: var(--tg-theme-secondary);
  color: var(--tg-heading-color);
}

.slider__single.swiper-slide-active .slider__content .sub-title {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
}
.slider__single.swiper-slide-active .slider__content .title {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
}
.slider__single.swiper-slide-active .slider__content p {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
}
.slider__single.swiper-slide-active .slider__content .slider__search {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
}
.swiper-pagination-bullet{
  background: #fff !important;
  width: 12px !important;
  height: 12px !important;
}
.swiper-pagination-bullets.swiper-pagination-horizontal{
  bottom:20px;
}





/* common css for all  */

.width90{
  width: 90% !important;
}

.justify_center_align{
      justify-content: center;
    align-items: center;
}








.service-section__top {
    gap: 20px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 70px;
}
.section-heading__wrap .section__subtitle {
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 8px;
    display: inline-block;
    color: #161616;
}
.section-heading__wrap .section__title {
    font-weight: 500;
    font-size: 42px;
    line-height: 53px;
    color: #000000;
}

.rr-btn.black-btn {
    padding: 16px 38px;
    color: #ffffff;
    background: #000000;
}

.rr-btn {
    z-index: 1;
    gap: 17px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    overflow: hidden;
    position: relative;
    border-radius: 500px;
    padding: 16px 37.8px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
    color: var(--rr-heading-primary);
    background-color: var(--rr-theme-primary);
}

.service-section__thumb {
    height: 100%;
    position: relative;
    z-index: 1;
}

.service-section__thumb .service-image {
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    position: absolute;
    transform: scale(0);
    transition: all 0.8s ease-in-out;
}
.service-section__thumb .service-image.active {
    opacity: 1;
    transform: scale(1);
    position: relative;
    transition: opacity 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.service-section__info {
    top: 20px;
    left: -20px;
    max-width: 350px;
    padding: 18px;
    position: absolute;
    padding-bottom: 42px;
    overflow: hidden;
    background-position: bottom;
    background-repeat: no-repeat;
    background-color: #fd5959;
    color: #fff;
} 
.service-section__info span {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 500px;
    background: #02132a;
}
.service-section__wrap {
    margin-left: 60px;
}

.service-section__info p {
    font-weight: 500;
    font-size: 16px;
    text-align: justify;
}
.service-section__info ul li {
    font-size: 13px;
}
.service-section__info ul {
   padding-left:20px;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 25px !important;
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%;
}

.service-section__content {
    gap: 25px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-bottom: 1px solid rgba(25, 41, 41, 0.1);
    text-decoration: none;
}
.service-section__title {
    font-weight: 500;
    font-size: 32px;
    line-height: 1;
    text-transform: capitalize;
    color: #000;
}

.service-section__content p{
    margin-bottom:0px;
    color: #444444;
}

.service-section__content .arrow_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    padding: 10px;
    border-radius: 500px;
    font-weight: 400;
    transform: rotate(-45deg);
    transition: all 0.3s ease-in-out;
    color: #192929;
    border: 1px solid #192929;
}
.service-section__content:hover .arrow_btn {
    color: #ffffff;
    background: #000000;
}
.service-section__content .arrow_btn i {
    font-weight: 300;
}
.service-image a img {
    width: 85%;
    margin-left:30px;
}

















.step-content-box .prt-stepbox:hover:nth-child(odd) {
    transform: translateX(10px);
}
.step-content-box .prt-stepbox {
    transition: 0.5s all;
}

.ml-120 {
    margin-left: 15% ! important;
}
.mb-50 {
    margin-bottom: 50px ! important;
}

.prt-stepbox .prt-stepbox-content {
    display: inline-flex;
    align-items: center;
    padding-right: 20px;
    position: relative;
}
.prt-stepbox .prt-stepbox-content .prt-left-content-box {
    position: relative;
}

.pr-20 {
    padding-right: 20px ! important;
}
.prt-stepbox .prt-stepbox-content .process-num {
    font-size: 18px;
    font-weight: 500;
    color: #001746;
    background-color: #d9d9d9;
    height: 40px;
    width: 40px;
    line-height: 40px;
    display: inline-block;
    vertical-align: top;
    border-radius: 50px;
    position: absolute;
    top: -20px;
    bottom: auto;
    text-align: center;
    left: -20px;
    right: auto;
    box-shadow: 3px 4px 15px 10px rgba(0, 0, 0, 0.08);
    transition: 0.5s all ease;
    z-index: 2;
}
.prt-stepbox:hover .prt-stepbox-content .process-num {
    background-color: #0054df;
    color: #ffffff;
    transition: 0.5s all ease;
}

.prt-stepbox .prt-stepbox-content .prt-step-thumbnail {
    border-radius: var(--base-border-radius-15) 15px;
    overflow: hidden;
    width: 100px;
    position: relative;
}
.prt-step-content-box .prt-box-title h2 {
    font-size: 20px;
    line-height: 25px;
    font-weight: 500;
    font-family: var(--base-headingfont);
    margin-bottom: 5px;
}

.featured-imagebox-cta.style1 .featured-icon-box {
    background-color: #ffffff2e;
    display: inline-flex;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #FFFFFF4D;
    gap: 20px;
    align-items: center;
}
.featured-imagebox-cta.style1 .featured-icon-box .featured-icon-img {
    width: 183px;
    display: contents;
    object-fit: cover;
}
.featured-imagebox-cta.style1 .featured-icon-img img {
    height: max-content;
    border-radius: 5px;
}
.featured-imagebox-cta.style1 .featured-icon-box .featured-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.featured-icon-box .featured-title {
    margin-bottom: 10px;
}

.featured-icon-box .featured-content {
    padding-left: 20px;
}
.featured-imagebox-cta.style1 .featured-content .featured-title h4 {
    text-transform: uppercase;
    line-height: 30px;
    color: #FFFFFF;
    margin: 0;
}
.prt-btn.prt-btn-style-fill.prt-btn-color-skincolor {
    background-color: #0054df;
    border-color: #0054df;
    color: #ffffff;
}

.prt-btn.prt-btn-style-border {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}
.prt-btn.prt-btn-shape-rounded {
    border-radius: var(--base-border-radius-32);
}
.prt-btn.prt-btn-size-sm {
    font-size: 16px;
    line-height: 26px;
    padding: 10px 25px 10px;
    text-decoration: none;
    border-radius: 5px;
}
.prt-list-icon i {
    font-size: 19px;
    padding-top: 0px;
    padding-right: 14px;
    color: #fd5959;
}
li.prt-list-li-content.d-flex h3 {
    font-size: 15px;
    color: #fff;
}
ul.prt-list.prt-bordered-lists.prt-list-style-icon-02
 {
    padding: 0px 0 0 0;
}



@media(min-width: 768px) {


    .project-one__box li {
        flex: 1;

    }

    .project-one__box li.active {
        flex: 1.90;
    }

    .project-one__box li.active .project-one__box-content .img-holder-img-bg {
        opacity: 0.80;
        -webkit-transform: perspective(630px) rotateX(0deg);
        -ms-transform: perspective(630px) rotateX(0deg);
        transform: perspective(630px) rotateX(0deg);
    }

    .project-one__box li.active .project-one__box-content .project-one__box-content-inner {
        opacity: 1;
        transform: perspective(630px) rotateY(0deg) translateY(0px);
        transition-delay: 500ms;
    }




}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {

    .project-one__box li {
        flex: 0 0 100%;
    }

    .project-one__box li.active {
        flex: 0 0 100%;
    }

    .project-one__box-content {
        min-height: 500px;
    }

    .project-one__title-2 {
        font-size: 25px;
        line-height: 35px;
    }


}


@media only screen and (max-width: 900px) {
.service-section-2__thumb{
    display: none;
}
.service-section-2__text{
        margin-left: 0px;
        margin-bottom: 30px;
        float: left;
    
}
.section-heading__wrap_2 .section__title{
font-size:36px;
}
.service-section-2__slider{
    margin-top:0px;
}
.rowpedding_5p{
    margin-bottom:10px;
}
.Protecting233 {
    flex-wrap: wrap;
}
}

.Know_1 {
    position: relative;
    background-position: bottom;
}

.Know_1 {
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-color: #000;
    width: 100%;
    padding: 90px 0;
}
.Know_1::before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    position: absolute;
    background: linear-gradient(90deg, rgb(3 13 33 / 91%) 0%, rgb(4 14 28 / 95%) 42.58%, rgb(6 17 43 / 70%) 70.12%);
}
.prt-list-icon i {
    font-size: 19px;
    padding-top: 0px;
    padding-right: 14px;
    color: #fd5959;
}
.Know_1 p {
    justify-content: left;
    text-align: center;
    color: #e4f1ff;
    font-size: 24px;
    width: 300px;
    line-height: 25px;
    width: 100%;
}