@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Arimo:wght@400;700&family=Poppins:wght@700&display=swap');

:root {
  --tp-ff-body: 'Arimo', sans-serif;
  --tp-ff-heading: 'Poppins', sans-serif;
  --tp-ff-fontawesome: Font Awesome 5 Pro;
  --tp-common-white: #ffffff;
  --tp-common-white-2: #F3F3F3;
  --tp-common-white-3: #F5F5F5;
  --tp-common-black: #151718;
  --tp-common-black-2: #52525C;
  --tp-common-black-3: #1F2021;
  --tp-common-yellow: #EED064;
  --tp-common-yellow-2: #FDFAEF;
  --tp-common-green: #33CC79;
  --tp-common-green-2: #EBFAF2;
  --tp-common-blue: #EEEEFD;
  --tp-common-orange: #FF7425;
  --tp-common-red: #E01E5A;
  --tp-common-sky: #1EDBDC;
  --tp-common-deep-blue: #4C40F7;
  --tp-heading-primary: #151718;
  --tp-grey-1: #F0F0F0;
  --tp-grey-2: #F9F9F9;
  --tp-grey-3: #C2C2C2;
  --tp-grey-4: #DDDDDD;
  --tp-grey-5: #888888;
  --tp-grey-6: #F7F7F7;
  --tp-grey-7: #F6F6F6;
  --tp-text-body: #6A6A74;
  --tp-text-p: #6A6A74;
  --tp-theme-1: #000000;
  --tp-border-1: #F5F5F5;
  --tp-border-2: #F4F4F4;
  --tp-border-3: #EDEFEB;
  --tp-border-4: #F1F3F6;
  --tp-border-5: #333435;
  --tp-border-6: #38393A;
  --tp-border-7: #CCD5DA;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: var(--tp-ff-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--tp-text-body);
  line-height: 26px;
  background-color: var(--tp-common-white);
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


.tp-menu-toggle {
  position: relative;
  z-index: 1002;
  width: 44px;
  height: 44px;
  border: 1px solid var(--tp-border-3);
  border-radius: 999px;
  background: var(--tp-common-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.tp-menu-toggle:focus-visible {
  outline: 2px solid var(--tp-common-black);
  outline-offset: 2px;
}

.tp-menu-toggle__bar {
  position: absolute;
  width: 18px;
  height: 2px;
  background-color: var(--tp-common-black);
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 999px;
}

.tp-menu-toggle__bar:nth-child(1) {
  transform: translateY(-6px);
}

.tp-menu-toggle__bar:nth-child(2) {
    transform: translateY(-6px);
}

.tp-menu-toggle__bar:nth-child(3) {
  transform: translateY(6px);
}

.tp-menu-toggle.is-active .tp-menu-toggle__bar:nth-child(2) {
   transform: translateY(0) rotate(45deg);
 
}

.tp-menu-toggle.is-active .tp-menu-toggle__bar:nth-child(4) {
  opacity: 0 !important;
}

.tp-menu-toggle.is-active .tp-menu-toggle__bar:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

.tp-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(21, 23, 24, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.tp-menu-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.tp-main-menu {
  position: relative;
  z-index: 1001;
}

.container-fluid {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

.row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.g-0 {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.align-items-center {
  align-items: center !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.d-flex {
  display: flex !important;
}

.d-none {
  display: none !important;
}

@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.666667%;
  }
}

@media (min-width: 992px) {
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.666667%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.333333%;
  }
}

@media (min-width: 1200px) {
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.666667%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.333333%;
  }
  .d-xl-block {
    display: block !important;
  }
  .tp-menu-toggle {
    display: none;
  }
  .tp-menu-overlay {
    display: none;
  }
  .tp-main-menu {
    transform: none !important;
    position: relative;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }
}

.header-pl-pr {
  padding-left: 60px;
  padding-right: 40px;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .header-pl-pr {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .header-pl-pr {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-pl-pr {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-pl-pr {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-pl-pr {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 767px) {
  .header-pl-pr {
    padding-left: 0;
    padding-right: 0;
  }
}

.header-border-bottom {
  border-bottom: 1px solid var(--tp-border-3);
}

.header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
}

.tp-logo-border {
  padding: 43px 0;
  padding-right: 80px;
  margin-right: 60px;
  border-right: 1px solid var(--tp-border-3);
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .tp-logo-border {
    padding-right: 40px;
    margin-right: 40px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-logo-border {
    padding-right: 40px;
    margin-right: 40px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-logo-border {
    padding-right: 20px;
    margin-right: 0;
    padding: 33px 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-logo-border {
    padding-right: 20px;
    margin-right: 0;
    padding: 33px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-logo-border {
    padding: 23px 0;
    padding-right: 0;
    margin-right: 0;
  }


}

@media only screen and (min-width: 768px) {
	.tp-main-menu ul li:last-child .sub-menu 
	{
		margin-left: -80px;
	}
}



.tp-logo img {
  width: 142px;
}

.tp-main-menu ul {
  text-align: center;
}

.tp-main-menu ul li {
  display: inline-block;
  margin: 0 38px;
  position: relative;
}

.tp-main-menu ul li:last-child {
  margin-right: 0;
}


@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .tp-main-menu ul li {
    margin: 0 25px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-main-menu ul li {
    margin: 0 17px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-main-menu ul li {
    margin: 0 12px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-main-menu ul li {
    margin: 0 10px;
  }
}

.tp-main-menu ul li a {
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 50px 0;
  display: inline-block;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-main-menu ul li a {
    font-size: 14px;
    padding: 40px 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-main-menu ul li a {
    font-size: 14px;
    padding: 40px 0;
  }
}

.tp-main-menu ul li > .submenu,
.tp-main-menu ul li > .sub-menu {
  position: absolute;
  background-color: #ffffff;
  width: 270px;
  z-index: 999;
  margin-left: 0;
  padding: 30px 0;
  top: 110%;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  box-shadow: 0px 8px 20px rgba(61, 110, 168, 0.2);
  text-align: start;
  border-top: 5px solid var(--tp-theme-1);
  border-radius: 5px 5px 0 0;
}

.tp-main-menu ul li > .submenu li,
.tp-main-menu ul li > .sub-menu li {
  margin: 0;
  display: block;
  margin-bottom: 15px;
  padding: 0 40px;
}

.tp-main-menu ul li > .submenu li:last-child,
.tp-main-menu ul li > .sub-menu li:last-child {
  margin-bottom: 0;
}

.tp-main-menu ul li > .submenu li a,
.tp-main-menu ul li > .sub-menu li a {
  padding: 0;
  margin: 0;
  display: inline-block;
  text-transform: capitalizes;
  font-size: 14px;
  color: var(--tp-common-black);
  position: relative;
  letter-spacing: 1px;
  line-height: 20px;
}

.tp-main-menu ul li > .submenu li a::after,
.tp-main-menu ul li > .sub-menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: auto;
  height: 1px;
  width: 0;
  background-color: var(--tp-theme-1);
  transition: 0.7s;
  display: inline-block;
}

.tp-main-menu ul li > .submenu li:hover > a,
.tp-main-menu ul li > .sub-menu li:hover > a {
  color: var(--tp-theme-1);
}

.tp-main-menu ul li > .submenu li:hover > a::after,
.tp-main-menu ul li > .sub-menu li:hover > a::after {
  width: 100%;
  right: auto;
  left: 0;
}

.tp-main-menu ul li > .submenu li .submenu,
.tp-main-menu ul li > .submenu li .sub-menu,
.tp-main-menu ul li > .sub-menu li .submenu,
.tp-main-menu ul li > .sub-menu li .sub-menu {
  left: 100%;
  top: 0;
}

.tp-main-menu ul li:hover a {
  color: var(--tp-theme-1);
}

.tp-main-menu ul li:hover > .submenu,
.tp-main-menu ul li:hover > .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.tp-main-menu ul li.menu-last .submenu,
.tp-main-menu ul li.menu-last .sub-menu {
  left: auto;
  right: 0;
}

.tp-main-menu ul li.menu-last .submenu li > .submenu,
.tp-main-menu ul li.menu-last .submenu li > .sub-menu,
.tp-main-menu ul li.menu-last .sub-menu li > .submenu,
.tp-main-menu ul li.menu-last .sub-menu li > .sub-menu {
  left: auto;
  visibility: hidden;
  opacity: 0;
  right: 100%;
}

.tp-main-menu ul li.menu-last .submenu li:hover > .submenu,
.tp-main-menu ul li.menu-last .submenu li:hover > .sub-menu,
.tp-main-menu ul li.menu-last .sub-menu li:hover > .submenu,
.tp-main-menu ul li.menu-last .sub-menu li:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
}

.tp-main-menu ul li .submenu a:after,
.tp-main-menu ul li .sub-menu a:after {
  display: none;
}

.tp-main-menu i.fal.fa-angle-down {
  display: none;
}

.header-sticky .tp-header-area {
  padding-top: 1.5vh;
  padding-bottom: 1.5vh;
}


.tp-main-menu a {
  letter-spacing: 0;
}

.tp-main-menu nav > ul > li > a {
  padding-left: 20px;
  padding-right: 20px;
}

.tp-logo-border {
  padding: 0 !important;
}

.tp-main-menu ul li a {
  padding: 40px 20px;
}

.tp-main-menu .menu-item a {
  text-transform: capitalize;
  letter-spacing: normal;
}

body.tp-menu-open {
  overflow: hidden;
}

.submenu-toggle {
  display: none;
}

@media (max-width: 1199px) {
  .col-8 {
    width: 66.666667%;
  }

  .col-4 {
    width: 33.333333%;
  }

  .tp-logo-border {
    border-right: none;
    margin-right: 0;
    padding: 20px 0;
  }

  .tp-logo img {
    width: 120px;
  }

  .tp-main-menu {
    position: fixed;
    inset: 0;
    background: var(--tp-common-white);
    padding: 80px 24px 40px;
    transform: translateY(-100%);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-width: 100%;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
  }

  .tp-main-menu[data-menu-state="open"] {
    transform: translateY(0);
  }

  .tp-navigation {
    width: 100%;
  }

  .tp-main-menu ul {
    text-align: left;
    width: 100%;
  }

  .tp-main-menu ul li {
    display: block;
    margin: 0;
    border-bottom: 1px solid rgba(21, 23, 24, 0.08);
    position: relative;
  }

  .tp-main-menu ul li:last-child {
    border-bottom: none;
  }

  .tp-main-menu ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    font-size: 18px;
    letter-spacing: 0;
    text-transform: capitalize;
    font-weight: 600;
    color: var(--tp-common-black);
  }

  .tp-main-menu ul li.menu-item-has-children > a {
    padding-right: 44px;
  }

  .submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    margin-top:-30px;
    right: 0;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 999px;
    background: rgba(21, 23, 24, 0.06);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    padding: 0;
  }

  .submenu-toggle:focus-visible {
    outline: 2px solid var(--tp-common-black);
    outline-offset: 2px;
  }

  .submenu-toggle__icon {
    position: relative;
    width: 12px;
    height: 12px;
    margin-top: -4px;
    border-right: 2px solid var(--tp-common-black);
    border-bottom: 2px solid var(--tp-common-black);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
  }

  .tp-main-menu li.is-open > .submenu-toggle {
    background: rgba(21, 23, 24, 0.12);
  }

  .tp-main-menu li.is-open > .submenu-toggle .submenu-toggle__icon {
    transform: rotate(-135deg);
    margin-top: 4px;

  }

  .tp-main-menu ul li > .submenu,
  .tp-main-menu ul li > .sub-menu {
    position: static;
    background: transparent;
    width: 100%;
    margin-left: 0;
    box-shadow: none;
  border-top: 1px solid rgba(21, 23, 24, 0.06);
    border-radius: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .tp-main-menu li.is-open > .submenu,
  .tp-main-menu li.is-open > .sub-menu {
    max-height: 600px;
  }

  .tp-main-menu ul li > .submenu li,
  .tp-main-menu ul li > .sub-menu li {
    padding: 0;
    border-bottom: 1px solid rgba(21, 23, 24, 0.06);
    padding-left: 12px;
  }

  .tp-main-menu ul li > .submenu li:last-child,
  .tp-main-menu ul li > .sub-menu li:last-child {
    border-bottom: none;
  }

  .tp-main-menu ul li > .submenu li a,
  .tp-main-menu ul li > .sub-menu li a {
    font-size: 16px;
    padding: 14px 0;
    display: block;
    font-weight: 500;
  }

  .tp-main-menu li.is-open > a {
    color: var(--tp-common-black);
  }
}

@media (max-width: 767px) {
	
	.tp-logo img {
		padding-top:10px;
	margin-top:10px;
	}
  .tp-logo-border {
    padding: 20px 0;
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
  }

  .tp-main-menu ul li > .submenu li {
      padding: 0 !important;
      margin:0 !important;
      border-bottom: 0;
      padding-left: 20px !important;
      padding-top:5px !important;
      padding-bottom:5px !important
  }
  .tp-main-menu ul li > .submenu li a::after {
      display: none !important;
  }
}