/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --donatix-font: "Nunito Sans", sans-serif;
  --donatix-font-two: "Nunito", sans-serif;
  --donatix-font-three: "Caveat", cursive;
  --donatix-gray: #797E88;
  --donatix-gray-rgb: 121, 126, 136;
  --donatix-base: #FF5528;
  --donatix-base-rgb: 255, 85, 40;
  --donatix-gray-bg: #F6F3EE;
  --donatix-gray-bg-rgb: 246, 243, 238;
  --donatix-black: #1F1F1F;
  --donatix-black-rgb: 31, 31, 31;
  --donatix-white: #ffffff;
  --donatix-white-rgb: 255, 255, 255;
  --donatix-primary: #122F2A;
  --donatix-primary-rgb: 18, 47, 42;
  --donatix-secondary: #1A685B;
  --donatix-secondary-rgb: 26, 104, 91;
  --donatix-bdr-radius: 30px;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  font-family: var(--donatix-font);
  color: var(--donatix-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--donatix-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}



/* Scoped icon list */
.px-icon-list {
  margin: 0 !important;
  padding: 0 !important;
}

.px-icon-list > li {
  list-style: none !important;
  position: relative !important;
  padding-left: 42px !important;
  margin-bottom: 14px !important;
}

/* Circle background */
.px-icon-list > li::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 6px !important;
  width: 22px !important;
  height: 22px !important;
  background-color: #0d6efd !important;
  border-radius: 50% !important;
}

/* Check icon */
.px-icon-list > li::after {
  content: "✓" !important;
  position: absolute !important;
  left: 6px !important;
  top: 3px !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}


::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--donatix-font-two);
  color: var(--donatix-black);
  margin: 0;
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
  padding: 0px;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}


/*=============== scrollbar-Css =============*/

.xs-sidebar-widget::-webkit-scrollbar {
  width: 0px;
}


@media (min-width: 1320px) {
  .container {
    max-width: 1320px;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}



/*** chat popup ***/

.chat-popup {
  position: fixed;
  left: -100%;
  bottom: 0px;
  width: 350px;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  background: var(--donatix-primary);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  border-radius: 10px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.chat-popup.popup-visible {
  left: 0px;
  visibility: visible;
  opacity: 1;
}

.chat-popup .popup-inner {
  position: relative;
  display: block;
  padding: 40px 35px;
  padding-top: 32px;
}

.chat-popup .close-chat {
  position: absolute;
  display: flex;
  left: 0px;
  top: -55px;
  width: 60px;
  height: 55px;
  line-height: 44px;
  text-align: center;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  background: var(--donatix-base);
  cursor: pointer;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
  align-items: center;
  justify-content: center;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.chat-popup .popup-inner p {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, .70);
}

.chat-popup .chat-form .form-group {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.chat-popup .chat-form .form-group:last-child {
  margin-bottom: 0px;
}

.chat-popup .chat-form .form-group input[type='text'],
.chat-popup .chat-form .form-group input[type='email'],
.chat-popup .chat-form .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 5px;
  font-size: 13px;
  color: rgba(255, 255, 255, .70);
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, .10);
  transition: all 500ms ease;
}

.chat-popup .chat-form .form-group textarea {
  height: 120px;
  resize: none;
}

.chat-popup .chat-form .form-group input:focus,
.chat-popup .chat-form .form-group textarea:focus {
  outline: none;
}

.chat-popup .chat-form .form-group button {
  border: none;
}

.chat-popup .chat-form .form-group button:hover {
  color: var(--donatix-base);
}

.chat-popup .chat-form .form-group button:before,
.chat-popup .chat-form .form-group button::after {
  background-color: var(--donatix-white);
}


.chat-icon {
  position: fixed;
  display: inline-block;
  left: 30px;
  bottom: 45px;
  z-index: 99;
}

.chat-icon button {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 47px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  border-radius: 5px;
  background: var(--donatix-base);
  z-index: 1;
  border: none;
}

.chat-icon button:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background-color: rgba(var(--donatix-base-rgb), .20);
  border-radius: 5px;
  z-index: -1;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}

/***
=============================================
   Rating Box
=============================================
***/
.rating-box {
  position: relative;
  display: block;
}

.rating-box a {
  position: relative;
  color: var(--donatix-base);
}

.rating-box a i::before {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
}


/***
=============================================
xs sidebar
=============================================
***/
.xs-sidebar-group .xs-overlay {
  left: 0%;
  top: 0;
  position: fixed;
  height: 100%;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  -webkit-transition: all .4s ease-in .8s;
  -o-transition: all .4s ease-in .8s;
  transition: all .4s ease-in .8s;
  cursor: url(../images/cross-out.png),
    pointer;
  z-index: 99999;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: .8;
  visibility: visible;
  -webkit-transition: all .8s ease-out 0s;
  -o-transition: all .8s ease-out 0s;
  transition: all .8s ease-out 0s;
  right: 100%;
}

.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}

.xs-sidebar-group .widget-heading a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group .widget-heading a:hover {
  color: var(--donatix-base);
  border-color: var(--donatix-base);
}

.xs-sidebar-widget {
  position: fixed;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  z-index: 999999;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  -o-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  visibility: hidden;
  opacity: 0;
  border-right: 5px solid rgba(var(--donatix-white-rgb), .50);
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  left: 0;
  background-color: var(--donatix-black);
  -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  -o-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.sidebar-textwidget {
  padding: 70px 30px;
}

.sidebar-widget-container {
  position: relative;
  top: 150px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease-in .3s;
  -o-transition: all .3s ease-in .3s;
  transition: all .3s ease-in .3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
  top: 0px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 1s ease-out 1.2s;
  -o-transition: all 1s ease-out 1.2s;
  transition: all 1s ease-out 1.2s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: .8;
  z-index: 0;
}

.xs-bg-black {
  background-color: #000000;
}

.xs-sidebar-group .content-inner .logo {
  position: relative;
  max-width: 172px;
  width: 100%;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.xs-sidebar-group .content-inner .content-box {
  margin-bottom: 30px;
  padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box p {
  color: #ffffff;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
  position: relative;
  margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
  margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type='text'],
.xs-sidebar-group .content-inner .form-inner .form-group input[type='email'],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 15px;
  padding: 10px 20px;
  color: var(--donatix-gray);
  border: none;
  border-radius: var(--donatix-bdr-radius);
  outline: none;
  transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  resize: none;
  height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
  border-color: #00224f;
}

.xs-sidebar-group .content-inner .form-inner .form-group button {
  position: relative;
  border: none;
}

.xs-sidebar-group .content-inner .form-inner .form-group button.thm-btn::before,
.xs-sidebar-group .content-inner .form-inner .form-group button.thm-btn::after {
  background-color: var(--donatix-white);
}

.xs-sidebar-group .content-inner .form-inner .form-group button.thm-btn:hover {
  color: var(--donatix-black);
}

.sidebar-contact-info {
  position: relative;
  display: block;
  padding-top: 43px;
}

.sidebar-contact-info ul {
  position: relative;
  display: block;
  padding-bottom: 22px;
}

.sidebar-contact-info ul li {
  position: relative;
  display: block;
  color: var(--donatix-white);
  line-height: 30px;
}

.sidebar-contact-info ul li span {
  position: relative;
  display: inline-block;
  width: 25px;
}

.sidebar-contact-info ul li span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
}

.sidebar-contact-info ul li a {
  color: var(--donatix-white);
}

.sidebar-contact-info ul li a:hover {
  color: var(--donatix-base);
}

.xs-sidebar-group .content-inner .thm-social-link1 {
  overflow: hidden;
}

.thm-social-link1 {
  position: relative;
  display: block;
}

.thm-social-link1 ul {
  position: relative;
}

.thm-social-link1 ul li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.thm-social-link1 ul li:last-child {
  margin-right: 0;
}

.thm-social-link1 ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(var(--donatix-white-rgb), .10);
  border-radius: 50%;
  color: var(--donatix-white);
  font-size: 15px;
  text-align: center;
  z-index: 1;
  transition: all 500ms ease;
}

.thm-social-link1 ul li a:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: var(--donatix-base);
  border-radius: 50%;
  transition: .5s;
  transform: scale(.5);
  opacity: 0;
  content: '';
  z-index: -1;
}

.thm-social-link1 ul li a:hover:before {
  transform: scale(1);
  opacity: 1;
}

.thm-social-link1 ul li a:hover {
  color: var(--donatix-white);
}


/*=============== scrollbar-Css =============*/

.xs-sidebar-widget::-webkit-scrollbar {
  width: 0px;
}



/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--donatix-base);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--donatix-base);
  opacity: .3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width .3s, height .3s, opacity .3s;
  transition: width .3s, height .3s, opacity .3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--donatix-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: .4;
}




/*---------------------------------
     Preloader CSS
-----------------------------------*/
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 20000;
  overflow-x: hidden !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader div {
  width: 20px;
  height: 20px;
  margin: 0 10px 0;
  border-radius: 50px;
  transform-origin: 50% 0;
  display: inline-block;
  animation: bouncing 1.4s linear infinite;
}

.loader div:last-child {
  margin: 0;
}

.loader div:nth-child(1) {
  background-color: rgba(var(--donatix-base-rgb), 1.0);
}

.loader div:nth-child(2) {
  background-color: rgba(var(--donatix-base-rgb), 0.70);
  animation-delay: 0.2s;
}

.loader div:nth-child(3) {
  background-color: rgba(var(--donatix-base-rgb), 0.40);
  animation-delay: 0.4s;
}

@keyframes bouncing {

  0%,
  100% {
    transform: translateY(0) scale(1, 1);
    animation-timing-function: ease-in;
  }

  45% {
    transform: translateY(50px) scale(1, 1);
    animation-timing-function: linear;
  }

  50% {
    transform: translateY(50px) scale(1.5, 0.5);
    animation-timing-function: linear;
  }

  55% {
    transform: translateY(50px) scale(1, 1);
    animation-timing-function: ease-out;
  }
}


/* scroll to top */
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}

.scroll-to-top:hover {
  color: var(--donatix-base);
}

.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-left: 10px;
}

.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--donatix-base);
  position: relative;
  overflow: hidden;
}

.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--donatix-black);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}


/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 120px;
  width: 100%;
  z-index: 99999;
  transform: translateY(-100%);
  transition: all 0.5s;
}

.search-active .search-popup {
  transform: translateY(0%);
}

.search-popup .color-layer {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 120px;
  width: 100%;
  background-color: var(--donatix-base);
  transition: all 0.5s;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.05);
}

.sidenav-bar-visible .search-popup {
  display: none;
}

.search-popup .close-search {
  position: absolute;
  right: 25px;
  top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 0%;
  cursor: pointer;
  color: #ffffff;
  font-size: 30px;
  transition: all 0.5s;
  border: none;
  opacity: 0;
  transform: translateX(100px);
  visibility: hidden;
  z-index: 9999;
}

.search-popup .close-search:hover {
  color: var(--donatix-base);
  background-color: rgba(255, 255, 255, 1.0);
}

.search-active .search-popup .close-search {
  opacity: 1;
  transform: translateX(0px);
  visibility: visible;
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.search-popup form {
  position: absolute;
  max-width: 700px;
  top: 25px;
  left: 0px;
  right: 0px;
  margin: 0px auto 0;
  opacity: 0;
  transition: all 0.5s;
  z-index: 999;
}

.search-active .search-popup form {
  opacity: 1;
}

.search-popup .form-group {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
  position: relative;
  display: block;
  background-color: rgba(255, 255, 255, 1.0);
  font-size: 18px;
  color: var(--donatix-black);
  height: 70px;
  width: 100%;
  padding: 10px 30px 10px 75px;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  text-transform: capitalize;
  border: 0px solid rgba(0, 0, 0, 0.10)
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"]:focus {
  outline: none;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 70px;
  background: var(--donatix-black);
  text-align: center;
  font-size: 20px;
  color: var(--donatix-white);
  padding: 0;
  cursor: pointer;
  border: none;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 60px;
}

.search-popup .form-group button i {
  font-style: normal;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
  background-color: var(--donatix-secondary);
  color: var(--donatix-white);
}

.search-popup input::placeholder {
  color: var(--donatix-black);
}


/***
=============================================
Sec Title Css
=============================================
***/
.sec-title {
  position: relative;
  display: block;
  margin-top: -8px;
  padding-bottom: 47px;
  z-index: 1;
}

.sec-title__tagline {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.sec-title__tagline.center {
  justify-content: center;
}

.sec-title__tagline .left-line {
  position: relative;
  display: block;
  width: 65px;
  height: 2px;
  background: var(--donatix-base);
  margin-right: 11px;
}

.sec-title__tagline .left-line::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 0px;
  width: 8px;
  height: 8px;
  background: var(--donatix-base);
  content: "";
}

.sec-title__tagline .right-line {
  position: relative;
  display: block;
  width: 65px;
  height: 2px;
  background: var(--donatix-base);
  margin-left: 14px;
}

.sec-title__tagline .right-line::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  left: 0px;
  width: 8px;
  height: 8px;
  background: var(--donatix-base);
  content: "";
}

.sec-title__tagline .text {
  position: relative;
  display: block;
}

.sec-title__tagline .text h4 {
  color: var(--donatix-base);
  font-size: 28px;
  line-height: 34px;
  font-weight: 700;
  text-transform: capitalize;
  font-family: var(--donatix-font-three);
}

.sec-title__title {
  font-size: 48px;
  line-height: 40px;
  font-weight: 800;
  margin-bottom:0;
  text-transform: none;
  font-family: var(--donatix-font-two);
}


/***
=============================================
Thm Btn Css
=============================================
***/
.thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: var(--donatix-base);
  color: var(--donatix-white);
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  padding: 19px 35px 19px;
  overflow: hidden;
  border-radius: 30px;
  transition: all 0.5s linear;
  text-transform: capitalize;
  z-index: 1;
}

.thm-btn span::before {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  top: -1px;
}

.thm-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  background-color: var(--donatix-black);
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.thm-btn:hover:before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.thm-btn::after {
  position: absolute;
  background-color: var(--donatix-black);
  bottom: 0;
  right: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.thm-btn:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.thm-btn:hover {
  color: var(--donatix-white);
}


/***
=============================================
Thm Dot Style1
=============================================
***/
.thm-dot-style1.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 55px;
  line-height: 0px;
}

.thm-dot-style1.owl-theme .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
}

.thm-dot-style1.owl-theme .owl-dots .owl-dot span {
  display: block;
  width: 12px;
  height: 12px;
  background: #829592;
  margin: 0px 5px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-dot-style1.owl-theme .owl-dots .owl-dot.active span {
  width: 28px;
  height: 12px;
  border-radius: 100px;
  background: var(--donatix-base);
  border-color: var(--donatix-base);
}


/***
=============================================
Thm Dot Style2
=============================================
***/
.thm-dot-style2.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 62px;
}

.thm-dot-style2.owl-theme .owl-dots .owl-dot span {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0px 12.5px;
  background: #d8dde0;
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.thm-dot-style2.owl-theme .owl-dots .owl-dot.active span,
.thm-dot-style2.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--donatix-base)
}

.thm-dot-style2.owl-theme .owl-dots .owl-dot span::before {
  position: absolute;
  top: -8px;
  left: -8px;
  bottom: -8px;
  right: -8px;
  border: 1px solid var(--donatix-base);
  border-radius: 50%;
  transform: scaleX(0);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  content: "";
}

.thm-dot-style2.owl-theme .owl-dots .owl-dot.active span::before,
.thm-dot-style2.owl-theme .owl-dots .owl-dot:hover span::before {
  transform: scaleX(1.0);
}

/***
=============================================
   Styled Pagination
=============================================
***/
.styled-pagination {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding-top: 30px;
}

.styled-pagination li {
  position: relative;
  display: inline-block;
  margin-right: 11px;
}

.styled-pagination li:last-child {
  margin-right: 0;
}

.styled-pagination li a {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 50%;
  color: rgba(var(--donatix-gray-rgb), .50);
  font-size: 14px;
  line-height: 40px;
  font-weight: 700;
  border: 1px solid rgba(var(--donatix-gray-rgb), .50);
  text-align: center;
  transition: all 500ms ease;
  font-family: var(--donatix-font-two);
  z-index: 1;
}

.styled-pagination li:hover a,
.styled-pagination li.active a {
  color: var(--donatix-white);
  background: var(--donatix-base);
  border-color: var(--donatix-base);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
  border-radius: 50%;
  color: rgba(var(--donatix-gray-rgb), .50);
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
  color: var(--donatix-white);
}

.styled-pagination li a span:before {
  position: relative;
  top: 0px;
  color: rgba(var(--donatix-gray-rgb), .50);
  font-size: 14px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.styled-pagination li a:hover span:before,
.styled-pagination li.active a span:before {
  color: var(--donatix-white);
}


/*--------------------------------------------------------------
# Main Header One
--------------------------------------------------------------*/
.main-header {
  position: relative;
  display: block;
  z-index: 999;
}

.main-header__one-top {
  position: relative;
  display: block;
  background: var(--donatix-primary);
  padding: 12px 0px 12px;
  z-index: 1;
}

.main-header__one-top::before {
  position: absolute;
  top: 0;
  left: 74%;
  bottom: 0;
  right: 0px;
  border-top: 50px solid rgba(var(--donatix-white-rgb), .10);
  border-left: 50px solid transparent;
  content: "";
  z-index: -1;
}

.main-header__one-top {
  position: relative;
  display: block;
  background: var(--donatix-primary);
  z-index: 1;
}

.main-header__one-top .container {
  max-width: 1710px;
  width: 100%;
}

.main-header__one-top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header__one-top-left {
  position: relative;
  display: block;
}

.main-header__contact-list-style1 {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__contact-list-style1 li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__contact-list-style1 li+li {
  margin-left: 47px;
}

.main-header__contact-list-style1 li .icon-box {
  position: relative;
  display: block;
}

.main-header__contact-list-style1 li .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--donatix-base);
  font-size: 15px;
  line-height: 15px;
  top: -1px;
}

.main-header__contact-list-style1 li .text-box {
  position: relative;
  display: block;
  margin-left: 12px;
  flex: 1;
}

.main-header__contact-list-style1 li .text-box p {
  color: var(--donatix-white);
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  font-family: var(--donatix-font-two);
}

.main-header__contact-list-style1 li .text-box p a {
  color: var(--donatix-white);
}

.main-header__contact-list-style1 li .text-box p a:hover {
  color: var(--donatix-base);
}

.main-header__one-top-right {
  position: relative;
  display: block;
  padding-left: 160px;
  z-index: 1;
}

.main-header__social-links-style1 {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__social-links-style1 .title-box {
  position: relative;
  display: block;
}

.main-header__social-links-style1 .title-box h4 {
  color: var(--donatix-white);
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  font-family: var(--donatix-font-two);
}

.main-header__social-links-style1-list {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 20px;
  margin-left: 20px;
}

.main-header__social-links-style1-list::before {
  position: absolute;
  top: 7px;
  left: 0;
  bottom: 8px;
  width: 1px;
  background: var(--donatix-gray);
  content: "";
}

.main-header__social-links-style1-list li {
  position: relative;
  display: block;
}

.main-header__social-links-style1-list li+li {
  margin-left: 17px;
}

.main-header__social-links-style1-list li a {
  position: relative;
  display: block;
  color: var(--donatix-white);
}

.main-header__social-links-style1-list li a:hover {
  color: var(--donatix-base);
}

.main-header__social-links-style1-list li a span::before {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
}

.main-header__one-bottom {
  position: relative;
  display: block;
}

.main-header__one-bottom .container {
  max-width: 1710px;
  width: 100%;
}

.main-header__one-bottom-left {
  position: relative;
  display: block;
}

.main-header__one-bottom-left .logo-box {
  position: relative;
  display: block;
}

.main-header__one-bottom-left .logo-box a {
  position: relative;
  display: inline-block;
}

.main-header__one-bottom-left .logo-box a img {
  width: 100%;
}

.main-header__one-bottom-middle {
  display: block;
}

.main-header__one-bottom-middle .container {
  max-width: 1320px !important;
  width: 100% !important;
}

.main-header__one-bottom-right {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__search-box {
  position: relative;
  display: block;
  margin-right: 10px;
}

.main-header__search-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--donatix-base);
  border-radius: 50%;
  color: var(--donatix-white);
  font-size: 20px;
}

.main-header__search-box a:hover {
  background: var(--donatix-primary);
}

.main-header__cart-box {
  position: relative;
  display: block;
  margin-right: 10px;
}

.main-header__cart-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--donatix-primary);
  border-radius: 50%;
  color: var(--donatix-white);
}

.main-header__cart-box a:hover {
  background: var(--donatix-base);
}

.main-header__cart-box a span::before {
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 20px;
}

.main-header__btn-box {
  position: relative;
  display: block;
}

.main-header__btn-box .thm-btn {
  padding: 21px 35px 21px;
}

.main-header__btn-box .thm-btn i {
  position: relative;
  display: block;
  margin-right: 2px;
  line-height: 0px;
}

.main-header__btn-box .thm-btn i:before {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  top: 0px;
}


/*--------------------------------------------------------------
# Main Header Two
--------------------------------------------------------------*/
.main-header__one--two {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 5;
}

.main-header__one--two::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0px;
  background: var(--donatix-white);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='1910' height='140' viewBox='0 0 1910 140'%3E%3Cimage xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAB3YAAACMCAYAAACAlUjtAAAAAXNSR0IArs4c6QAAF+VJREFUeF7t3dGR20YWBVDcEDaDRQgMgSE4g0UGYgaaDKgM4BCcAZ0BQ4AzUAbawq7Hlm1JJIBuACTPVKmmVIN+7/Vp/t1qIl++fPnS+CFAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgACB0gKfm6YZfv/3S9M0lyTj/yf/RLA72cwCAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIzBW4Nk3zKUk/pYBgd4qWZwkQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIFBGYLy5+3ZvwCvYLYOuCgECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBOYIjAHv8dZXNAt259BaQ4AAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAgXIC47t4x9u75++VFOyWw1aJAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECSwQ+Jnn7VgHB7hJWawkQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIFBW4JvhrmC3LLJqBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQWCowvnP38nURwe5SUusJECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBQVmB85+4hyfBeVrBbFlg1AgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIlBC4JDkKdktQqkGAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAIF6An98JbMbu/WQVSZAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgMASgT9u7Qp2lzBaS4AAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAgboC/7u1K9iti6w6AQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIElgh8SvJBsLuE0FoCBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAjUFfic5F+C3brIqhMgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQGCpwL8Fu0sJrSdAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgEBdgU6wWxdYdQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECCwV+CTYXUpoPQECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBOoK9ILdusCqEyBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAYKmAYHepoPUECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBCoLPCLG7uVhZUnQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIDAQgE3dhcCWk6AAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAIHaAm9u7NYmVp8AAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQLLBH4S7C4DtJoAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQK1BQ6C3drE6hMgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQGC+wJCkFezOB7SSAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECtQX6JJ1gtzaz+gQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIEJgvcEhyFezOB7SSAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECNQWuSQ5jA8FuTWa1CRAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgMF+gS9ILducDWkmAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAIGaAkOS9r2BG7s1qdUmQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIDAPIFzkpNgdx6eVQQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIEFhDoE0yCHbXoNaDAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAEC0wX6JN3Xy3wV83REKwgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIFBT4JjkItitSaw2AQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIE5gtckxz+vtyN3fmgVhIgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQKC0QJekF+yWZlWPAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECZQSGJO23SrmxWwZYFQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECCwVOCc5CXaXMlpPgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgACBegJtkkGwWw9YZQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECCwR6JN03yvgq5iX0FpLgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgACBMgLHJBfBbhlMVQgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIFBa4Jrk8KOibuyWJlePAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAEC0wS6JL1gdxqapwkQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQILCWwJCkvdXMjd1bQv5OgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgACBegLnJKdb5QW7t4T8nQABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAvUE2iTDrfKC3VtC/k6AAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAIE6An2S7p7Sgt17lDxDgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgACB8gLHJJd7ygp271HyDAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBMoKXJMc7i0p2L1XynMECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAoJ9Al6e8tJ9i9V8pzBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQKCMwJGmnlBLsTtHyLAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBJYLnJOcppQR7E7R8iwBAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgSWC7RJhillBLtTtDxLgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgACBZQJ9km5qCcHuVDHPEyBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAYL7AMcll6nLB7lQxzxMgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQGCewDXJYc5Swe4cNWsIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECAwXaBL0k9f1jSC3Tlq1hAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQGCawJCknbbkz6cFu3PlrCNAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgMD9Auckp/sf/+uTgt25ctYRIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIEDgfoE2yXD/44LduVbWESBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAYI5An6Sbs/B9jRu7S/SsJUCAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAwG2BY5LL7ce+/4Rgd4metQQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIEPixwDXJYSmSYHepoPUECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBD4vkCXpF8KJNhdKmg9AQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIEvi0wJGlL4Ah2SyiqQYAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAgX8KnJOcSsAIdksoqkGAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAIF/CrRJhhIwgt0SimoQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIEDgrwJ9kq4UimC3lKQ6BAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQ+FPgmORSCkSwW0pSHQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECPxf4JrkUBJDsFtSUy0CBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAg0TZekLwkh2C2pqRYBAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAq8uMCRpSyMIdkuLqkeAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAwCsLnJOcSgMIdkuLqkeAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAwCsLtEmG0gCC3dKi6hEgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAg8KoCfZKuxuYFuzVU1SRAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBA4BUFjkkuNTYu2K2hqiYBAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAq8mcE1yqLVpwW4tWXUJECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIEHglgS5JX2vDgt1asuoSIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIPAqAkOStuZmBbs1ddUmQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQOAVBM5JTjU3Ktitqas2AQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQKvINAmGWpuVLBbU1dtAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgSeXaBP0tXepGC3trD6BAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAg8s8AxyaX2BgW7tYXVJ0CAAAECBAgQIECAAAECBAgQIECAAAECBAgQIEDgWQWuSQ5rbE6wu4ayHgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIPKNAl6RfY2OC3TWU9SBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBA4NkEhiTtWpsS7K4lrQ8BAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAs8kcE5yWmtDgt21pPUhQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQOCZBNokw1obEuyuJa0PAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQLPItAn6dbcjGB3TW29CBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBB4BoFjksuaGxHsrqmtFwECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECjy5wTXJYexOC3bXF9SNAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBA4JEFuiT92hsQ7K4trh8BAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAo8qMCRptxhesLuFup4ECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECDyiwDnJaYvBBbtbqOtJgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgMAjCrRJhi0GF+xuoa4nAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQKPJtAn6bYaWrC7lby+BAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAg8ksAxyWWrgQW7W8nrS4AAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIDAowhckxy2HFawu6W+3gQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIPIJAl6TfclDB7pb6ehMgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgsHeBIUm79ZCC3a1PQH8CBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBPYscE5y2npAwe7WJ6A/AQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQJ7FmiTDFsPKNjd+gT0J0CAAAECBAgQIECAAAECBAgQIECAAAECBAgQIEBgrwJ9km4Pwwl293AKZiBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAYI8CxySXPQwm2N3DKZiBAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAIG9CVyTHPYylGB3LydhDgIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIE9iTQJen3MpBgdy8nYQ4CBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBPYiMCRp9zLMOIdgd0+nYRYCBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBPYgcE5y2sMg7zMIdvd0GmYhQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQGAPAm2SYQ+DCHb3dApmIUCAAAECBAgQIECAAAECBAgQIECAAAECBAgQIEBgLwJ9km4vwwh293YS5iFAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAYA8CxySXPQzy9Qy+inlvJ2IeAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgS2ErgmOWzV/Ed9Bbt7PBUzESBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECCwhUCXpN+i8a2egt1bQv5OgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgMArCAxJ2r1uVLC715MxFwECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECawq8Jfm4ZsMpvQS7U7Q8S4AAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIDAswq0SYa9bk6wu9eTMRcBAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAmsJ9Em6tZrN6SPYnaNmDQECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECzySw69u6I7Rg95k+bvZCgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgMBUgU9JPkxdtPbzgt21xfUjQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQGAvAuM7dY97frfuO5Rgdy8fGXMQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQILC2QJekX7vpnH6C3Tlq1hAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAg8OgCfZLuUTYh2H2UkzInAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQKlBB7mK5jfNyzYLXX06hAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAg8CgC43t1L48y7DinYPeRTsusBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgsFXhL8nFpkbXXC3bXFtePAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAIGtBB4y1B2xBLtbfWT0JUCAAAECBAgQIECAAAECBAgQIECAAAECBAgQIEBgTYGfk/xnzYYlewl2S2qqRYAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIDAHgUeOtQdQQW7e/xYmYkAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAgVICn5J8KFVsqzqC3a3k9SVAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAoLbAw75T9+8wgt3aHxX1CRAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBBYW+Bz0zSnJP3ajWv1E+zWklWXAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAIEtBK5N0/yUZNiiea2egt1asuoSIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQILCmwHhLd3yf7sc1m67VS7C7lrQ+BAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAjUErg0TdM92y3dr7EEu7U+OuoSIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIFBbYAx035KMv5/6R7D71MdrcwQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgSeUuBlAt330xPsPuXn2KYIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIPJ3A0DTNz03TnJOM79N9qR/B7ksdt80SIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQeBiBMby9Nk3za9M0l1f4uuUfnYxg92E+twYlQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAg8JQC403cMcQdf//2++/xq5aHV7yZ+70T/i8bw9Mp+CHlWgAAAABJRU5ErkJggg==' x='0' y='0' width='1910' height='140'/%3E%3C/svg%3E");
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='1910' height='140' viewBox='0 0 1910 140'%3E%3Cimage xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAB3YAAACMCAYAAACAlUjtAAAAAXNSR0IArs4c6QAAF+VJREFUeF7t3dGR20YWBVDcEDaDRQgMgSE4g0UGYgaaDKgM4BCcAZ0BQ4AzUAbawq7Hlm1JJIBuACTPVKmmVIN+7/Vp/t1qIl++fPnS+CFAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgACB0gKfm6YZfv/3S9M0lyTj/yf/RLA72cwCAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIzBW4Nk3zKUk/pYBgd4qWZwkQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIFBGYLy5+3ZvwCvYLYOuCgECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBOYIjAHv8dZXNAt259BaQ4AAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAgXIC47t4x9u75++VFOyWw1aJAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECSwQ+Jnn7VgHB7hJWawkQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIFBW4JvhrmC3LLJqBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQWCowvnP38nURwe5SUusJECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBQVmB85+4hyfBeVrBbFlg1AgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIlBC4JDkKdktQqkGAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAIF6An98JbMbu/WQVSZAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgMASgT9u7Qp2lzBaS4AAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAgboC/7u1K9iti6w6AQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIElgh8SvJBsLuE0FoCBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAjUFfic5F+C3brIqhMgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQGCpwL8Fu0sJrSdAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgEBdgU6wWxdYdQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECCwV+CTYXUpoPQECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBOoK9ILdusCqEyBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAYKmAYHepoPUECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBCoLPCLG7uVhZUnQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIDAQgE3dhcCWk6AAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAIHaAm9u7NYmVp8AAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQLLBH4S7C4DtJoAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQK1BQ6C3drE6hMgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQGC+wJCkFezOB7SSAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECtQX6JJ1gtzaz+gQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIEJgvcEhyFezOB7SSAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECNQWuSQ5jA8FuTWa1CRAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgMF+gS9ILducDWkmAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAIGaAkOS9r2BG7s1qdUmQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIDAPIFzkpNgdx6eVQQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIEFhDoE0yCHbXoNaDAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAEC0wX6JN3Xy3wV83REKwgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIFBT4JjkItitSaw2AQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIE5gtckxz+vtyN3fmgVhIgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQKC0QJekF+yWZlWPAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECZQSGJO23SrmxWwZYFQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECCwVOCc5CXaXMlpPgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgACBegJtkkGwWw9YZQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECCwR6JN03yvgq5iX0FpLgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgACBMgLHJBfBbhlMVQgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIFBa4Jrk8KOibuyWJlePAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAEC0wS6JL1gdxqapwkQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQILCWwJCkvdXMjd1bQv5OgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgACBegLnJKdb5QW7t4T8nQABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAvUE2iTDrfKC3VtC/k6AAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAIE6An2S7p7Sgt17lDxDgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgACB8gLHJJd7ygp271HyDAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBMoKXJMc7i0p2L1XynMECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAoJ9Al6e8tJ9i9V8pzBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQKCMwJGmnlBLsTtHyLAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBJYLnJOcppQR7E7R8iwBAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgSWC7RJhillBLtTtDxLgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgACBZQJ9km5qCcHuVDHPEyBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAYL7AMcll6nLB7lQxzxMgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQGCewDXJYc5Swe4cNWsIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECAwXaBL0k9f1jSC3Tlq1hAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQGCawJCknbbkz6cFu3PlrCNAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgMD9Auckp/sf/+uTgt25ctYRIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIEDgfoE2yXD/44LduVbWESBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAYI5An6Sbs/B9jRu7S/SsJUCAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAwG2BY5LL7ce+/4Rgd4metQQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIEPixwDXJYSmSYHepoPUECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBD4vkCXpF8KJNhdKmg9AQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIEvi0wJGlL4Ah2SyiqQYAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAgX8KnJOcSsAIdksoqkGAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAIF/CrRJhhIwgt0SimoQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIEDgrwJ9kq4UimC3lKQ6BAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQ+FPgmORSCkSwW0pSHQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECPxf4JrkUBJDsFtSUy0CBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAg0TZekLwkh2C2pqRYBAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAq8uMCRpSyMIdkuLqkeAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAwCsLnJOcSgMIdkuLqkeAAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAwCsLtEmG0gCC3dKi6hEgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAg8KoCfZKuxuYFuzVU1SRAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBA4BUFjkkuNTYu2K2hqiYBAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAq8mcE1yqLVpwW4tWXUJECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIEHglgS5JX2vDgt1asuoSIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIPAqAkOStuZmBbs1ddUmQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQOAVBM5JTjU3Ktitqas2AQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQKvINAmGWpuVLBbU1dtAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgSeXaBP0tXepGC3trD6BAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAg8s8AxyaX2BgW7tYXVJ0CAAAECBAgQIECAAAECBAgQIECAAAECBAgQIEDgWQWuSQ5rbE6wu4ayHgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIPKNAl6RfY2OC3TWU9SBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBA4NkEhiTtWpsS7K4lrQ8BAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAs8kcE5yWmtDgt21pPUhQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQOCZBNokw1obEuyuJa0PAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQLPItAn6dbcjGB3TW29CBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBB4BoFjksuaGxHsrqmtFwECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECjy5wTXJYexOC3bXF9SNAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBA4JEFuiT92hsQ7K4trh8BAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAo8qMCRptxhesLuFup4ECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECDyiwDnJaYvBBbtbqOtJgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgMAjCrRJhi0GF+xuoa4nAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQKPJtAn6bYaWrC7lby+BAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAg8ksAxyWWrgQW7W8nrS4AAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIDAowhckxy2HFawu6W+3gQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIPIJAl6TfclDB7pb6ehMgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgsHeBIUm79ZCC3a1PQH8CBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBPYscE5y2npAwe7WJ6A/AQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQJ7FmiTDFsPKNjd+gT0J0CAAAECBAgQIECAAAECBAgQIECAAAECBAgQIEBgrwJ9km4Pwwl293AKZiBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAYI8CxySXPQwm2N3DKZiBAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAIG9CVyTHPYylGB3LydhDgIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIE9iTQJen3MpBgdy8nYQ4CBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBPYiMCRp9zLMOIdgd0+nYRYCBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBPYgcE5y2sMg7zMIdvd0GmYhQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQGAPAm2SYQ+DCHb3dApmIUCAAAECBAgQIECAAAECBAgQIECAAAECBAgQIEBgLwJ9km4vwwh293YS5iFAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAYA8CxySXPQzy9Qy+inlvJ2IeAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgS2ErgmOWzV/Ed9Bbt7PBUzESBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECCwhUCXpN+i8a2egt1bQv5OgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgMArCAxJ2r1uVLC715MxFwECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECawq8Jfm4ZsMpvQS7U7Q8S4AAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIDAswq0SYa9bk6wu9eTMRcBAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAmsJ9Em6tZrN6SPYnaNmDQECBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECzySw69u6I7Rg95k+bvZCgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgMBUgU9JPkxdtPbzgt21xfUjQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQGAvAuM7dY97frfuO5Rgdy8fGXMQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQILC2QJekX7vpnH6C3Tlq1hAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAg8OgCfZLuUTYh2H2UkzInAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQKlBB7mK5jfNyzYLXX06hAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAg8CgC43t1L48y7DinYPeRTsusBAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAgsFXhL8nFpkbXXC3bXFtePAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAIGtBB4y1B2xBLtbfWT0JUCAAAECBAgQIECAAAECBAgQIECAAAECBAgQIEBgTYGfk/xnzYYlewl2S2qqRYAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIDAHgUeOtQdQQW7e/xYmYkAAQIECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAgVICn5J8KFVsqzqC3a3k9SVAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAoLbAw75T9+8wgt3aHxX1CRAgQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBBYW+Bz0zSnJP3ajWv1E+zWklWXAAECBAgQIECAAAECBAgQIECAAAECBAgQIECAAIEtBK5N0/yUZNiiea2egt1asuoSIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQILCmwHhLd3yf7sc1m67VS7C7lrQ+BAgQIECAAAECBAgQIECAAAECBAgQIECAAAECBAjUErg0TdM92y3dr7EEu7U+OuoSIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQIFBbYAx035KMv5/6R7D71MdrcwQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgSeUuBlAt330xPsPuXn2KYIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIPJ3A0DTNz03TnJOM79N9qR/B7ksdt80SIECAAAECBAgQIECAAAECBAgQIECAAAECBAgQeBiBMby9Nk3za9M0l1f4uuUfnYxg92E+twYlQIAAAQIECBAgQIAAAQIECBAgQIAAAQIECBAg8JQC403cMcQdf//2++/xq5aHV7yZ+70T/i8bw9Mp+CHlWgAAAABJRU5ErkJggg==' x='0' y='0' width='1910' height='140'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  content: "";
  z-index: -1;
}

.main-header__one--two .main-header__one-top {
  position: relative;
  background: transparent;
}

.main-header__one--two .main-header__one-top::after {
  position: absolute;
  top: 0;
  left: 0px;
  bottom: 0;
  right: 0px;
  background: var(--donatix-primary);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='1603' height='50' viewBox='0 0 1603 50'%3E%3Cimage xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABkMAAAAyCAYAAADvAaxUAAAAAXNSR0IArs4c6QAACVpJREFUeF7t3U9SG0cUB+DuSWXhymbMCeRFqghJGfkGcILEJ4g5gZ0TBE4QbmBuYPsEcAPExlDZRCeA2cSp/JtOGhkHYmFAGiHN6GNlqzRP733Tu1/NvBiu+Sv7vbKov3iWYv1tDEU/hFRe912fEyBAgAABAgQIECBAgAABAgQIECBAgAABAgTuXyBWKdSDmIo3dfH362pwMhzXQxz34crjtR9DjC8EIPd/2/wiAQIECBAgQIAAAQIECBAgQIAAAQIECBAgMKFAirt18etONRhWlytcCUPy0yAxPXgVQ9yY8GdcRoAAAQIECBAgQIAAAQIECBAgQIAAAQIECBCYp8CwjvXm5adEroQhK+trhyGE/jw79NsECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAgSkFhnV89+TiCZEPYcjo1Vhhe8riLidAgAABAgQIECBAgAABAgQIECBAgAABAgQIzF0ghXRwdnS8mRs5D0PK/mqvSMUvc+9MAwQIECBAgAABAgQIECBAgAABAgQIECBAgACBhgTevy7r4DwMWVlfexlCeNZQbWUIECBAgAABAgQIECBAgAABAgQIECBAgAABAnMXuHg65CIMyU+F9ObelQYIECBAgAABAgQIECBAgAABAgQIECBAgAABAg0K1PHdw1j2+2WR/jhrsK5SBAgQIECAAAECBAgQIECAAAECBAgQIECAAIGFEKjjn09i+c3qRvFZsb8QHWmCAAECBAgQIECAAAECBAgQIECAAAECBAgQINCgQKzDViz7X/aL9Plhg3WVIkCAAAECBAgQIECAAAECBAgQIECAAAECBAgshEAd09NY9ld7RSryzhB/BAgQIECAAAECBAgQIECAAAECBAgQIECAAIFOCdSx3rxYoJ53hpSdms4wBAgQIECAAAECBAgQIECAAAECBAgQIECAwNILnC9Qzworj7/eDTE9X3oRAAQIECBAgAABAgQIECBAgAABAgQIECBAgEBnBFJIB2dHx6MnQ7wqqzP31SAECBAgQIAAAQIECBAgQIAAAQIECBAgQIDAe4H8iqxqcHJwHobkP0+HOBsECBAgQIAAAQIECBAgQIAAAQIECBAgQIBAhwT2To/ebuV5PoQh+T8P19cOYwj9Dg1qFAIECBAgQIAAAQIECBAgQIAAAQIECBAgQGAJBepYP6oGJ8OPwpD8uqyY4n4MsbeELkYmQIAAAQIECBAgQIAAAQIECBAgQIAAAQIEuiAQw87p4O32xShXngzJH5b9tX6RwmEXZjUDAQIECBAgQIAAAQIECBAgQIAAAQIECBAgsFwCKaTh2dHxo8tTfxSGjAKRr14UKf60XDymJUCAAAECBAgQIECAAAECBAgQIECAAAECBNouUMd6qxqc7N0YhuQvWKje9tutfwIECBAgQIAAAQIECBAgQIAAAQIECBAgsHQCH5am3yoMyV+yUH3pDomBCRAgQIAAAQIECBAgQIAAAQIECBAgQIBAawUuL02/dRhioXpr77fGCRAgQIAAAQIECBAgQIAAAQIECBAgQIDAcgn8b2n6rcOQ/EUL1ZfrrJiWAAECBAgQIECAAAECBAgQIECAAAECBAi0TWDc0vQ7hSGjQMRC9bbdeP0SIECAAAECBAgQIECAAAECBAgQIECAAIFlERi3NP3OYUi+wEL1ZTky5iRAgAABAgQIECBAgAABAgQIECBAgAABAq0SGLs0faIwJF9koXqrbr5mCRAgQIAAAQIECBAgQIAAAQIECBAgQIBA5wWuW5o+cRhioXrnz4wBCRAgQIAAAQIECBAgQIAAAQIECBAgQIBAewQ+sTR94jAkX2ihenvOgE4JECBAgAABAgQIECBAgAABAgQIECBAgEBXBW5amj5VGDIKRCxU7+rhMRcBAgQIECBAgAABAgQIECBAgAABAgQIEGiDwE1L06cOQ3IBC9XbcBT0SIAAAQIECBAgQIAAAQIECBAgQIAAAQIEOilw49L0RsKQXMRC9U4eIEMRIECAAAECBAgQIECAAAECBAgQIECAAIGFFrjN0vTGwhAL1Rf6LGiOAAECBAgQIECAAAECBAgQIECAAAECBAh0T+CWS9MbC0NyIQvVu3eOTESAAAECBAgQIECAAAECBAgQIECAAAECBBZR4C5L0xsNQ0aBiIXqi3go9ESAAAECBAgQIECAAAECBAgQIECAAAECBLokcJel6Y2HIbmghepdOk5mIUCAAAECBAgQIECAAAECBAgQIECAAAECCydwp6XpMwlDclEL1RfuYGiIAAECBAgQIECAAAECBAgQIECAAAECBAh0QuCuS9NnFoZYqN6J82QIAgQIECBAgAABAgQIECBAgAABAgQIECCwWAITLE2fWRiSC1uovljnQzcECBAgQIAAAQIECBAgQIAAAQIECBAgQKDNApMuTZ9pGDIKRCxUb/PB0jsBAgQIECBAgAABAgQIECBAgAABAgQIEFgUgUmXps88DMk/YKH6ohwTfRAgQIAAAQIECBAgQIAAAQIECBAgQIAAgdYKTLw0/V7CkPwjFqq39nBpnAABAgQIECBAgAABAgQIECBAgAABAgQIzFUgvx4rxbRZDU6G0zYSpy3wqestVJ+lrtoECBAgQIAAAQIECBAgQIAAAQIECBAgQKC7AnX862k1+Pl1ExPONAzJDb5fqL6f/9lEw2oQIECAAAECBAgQIECAAAECBAgQIECAAAECHReIYed08Ha7qSlnHoZcBCIxpVcxxF5TjatDgAABAgQIECBAgAABAgQIECBAgAABAgQIdFCg4SAkC91LGDIKRFZ7McV9gUgHD6aRCBAgQIAAAQIECBAgQIAAAQIECBAgQIDA9AJVHesfqsHJ3vSlrla4tzBkFIj0y6L+fTfE+H3Tg6hHgAABAgQIECBAgAABAgQIECBAgAABAgQItFMghXSQYtpqYln6OIF7DUMuGij7qxsxxZeeEmnnodQ1AQIECBAgQIAAAQIECBAgQIAAAQIECBBoSKAKMe2cDo53G6o3tsxcwpCroUjxPIbw3SyHVJsAAQIECBAgQIAAAQIECBAgQIAAAQIECBBYHIHRkyDhTQi/7VWDYTXrzuYahvwXivTKEB5sFHXYiLFYTyHlReuWrc/67qtPgAABAgQIECBAgAABAgQIECBAgAABAgRmLzBMIVT/PhgxqGM6CiG9ntXrsK4b5R9I3XfigNXdmQAAAABJRU5ErkJggg==' x='0' y='0' width='1603' height='50'/%3E%3C/svg%3E");
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='1603' height='50' viewBox='0 0 1603 50'%3E%3Cimage xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABkMAAAAyCAYAAADvAaxUAAAAAXNSR0IArs4c6QAACVpJREFUeF7t3U9SG0cUB+DuSWXhymbMCeRFqghJGfkGcILEJ4g5gZ0TBE4QbmBuYPsEcAPExlDZRCeA2cSp/JtOGhkHYmFAGiHN6GNlqzRP733Tu1/NvBiu+Sv7vbKov3iWYv1tDEU/hFRe912fEyBAgAABAgQIECBAgAABAgQIECBAgAABAgTuXyBWKdSDmIo3dfH362pwMhzXQxz34crjtR9DjC8EIPd/2/wiAQIECBAgQIAAAQIECBAgQIAAAQIECBAgMKFAirt18etONRhWlytcCUPy0yAxPXgVQ9yY8GdcRoAAAQIECBAgQIAAAQIECBAgQIAAAQIECBCYp8CwjvXm5adEroQhK+trhyGE/jw79NsECBAgQIAAAQIECBAgQIAAAQIECBAgQIAAgSkFhnV89+TiCZEPYcjo1Vhhe8riLidAgAABAgQIECBAgAABAgQIECBAgAABAgQIzF0ghXRwdnS8mRs5D0PK/mqvSMUvc+9MAwQIECBAgAABAgQIECBAgAABAgQIECBAgACBhgTevy7r4DwMWVlfexlCeNZQbWUIECBAgAABAgQIECBAgAABAgQIECBAgAABAnMXuHg65CIMyU+F9ObelQYIECBAgAABAgQIECBAgAABAgQIECBAgAABAg0K1PHdw1j2+2WR/jhrsK5SBAgQIECAAAECBAgQIECAAAECBAgQIECAAIGFEKjjn09i+c3qRvFZsb8QHWmCAAECBAgQIECAAAECBAgQIECAAAECBAgQINCgQKzDViz7X/aL9Plhg3WVIkCAAAECBAgQIECAAAECBAgQIECAAAECBAgshEAd09NY9ld7RSryzhB/BAgQIECAAAECBAgQIECAAAECBAgQIECAAIFOCdSx3rxYoJ53hpSdms4wBAgQIECAAAECBAgQIECAAAECBAgQIECAwNILnC9Qzworj7/eDTE9X3oRAAQIECBAgAABAgQIECBAgAABAgQIECBAgEBnBFJIB2dHx6MnQ7wqqzP31SAECBAgQIAAAQIECBAgQIAAAQIECBAgQIDAe4H8iqxqcHJwHobkP0+HOBsECBAgQIAAAQIECBAgQIAAAQIECBAgQIBAhwT2To/ebuV5PoQh+T8P19cOYwj9Dg1qFAIECBAgQIAAAQIECBAgQIAAAQIECBAgQGAJBepYP6oGJ8OPwpD8uqyY4n4MsbeELkYmQIAAAQIECBAgQIAAAQIECBAgQIAAAQIEuiAQw87p4O32xShXngzJH5b9tX6RwmEXZjUDAQIECBAgQIAAAQIECBAgQIAAAQIECBAgsFwCKaTh2dHxo8tTfxSGjAKRr14UKf60XDymJUCAAAECBAgQIECAAAECBAgQIECAAAECBNouUMd6qxqc7N0YhuQvWKje9tutfwIECBAgQIAAAQIECBAgQIAAAQIECBAgsHQCH5am3yoMyV+yUH3pDomBCRAgQIAAAQIECBAgQIAAAQIECBAgQIBAawUuL02/dRhioXpr77fGCRAgQIAAAQIECBAgQIAAAQIECBAgQIDAcgn8b2n6rcOQ/EUL1ZfrrJiWAAECBAgQIECAAAECBAgQIECAAAECBAi0TWDc0vQ7hSGjQMRC9bbdeP0SIECAAAECBAgQIECAAAECBAgQIECAAIFlERi3NP3OYUi+wEL1ZTky5iRAgAABAgQIECBAgAABAgQIECBAgAABAq0SGLs0faIwJF9koXqrbr5mCRAgQIAAAQIECBAgQIAAAQIECBAgQIBA5wWuW5o+cRhioXrnz4wBCRAgQIAAAQIECBAgQIAAAQIECBAgQIBAewQ+sTR94jAkX2ihenvOgE4JECBAgAABAgQIECBAgAABAgQIECBAgEBXBW5amj5VGDIKRCxU7+rhMRcBAgQIECBAgAABAgQIECBAgAABAgQIEGiDwE1L06cOQ3IBC9XbcBT0SIAAAQIECBAgQIAAAQIECBAgQIAAAQIEOilw49L0RsKQXMRC9U4eIEMRIECAAAECBAgQIECAAAECBAgQIECAAIGFFrjN0vTGwhAL1Rf6LGiOAAECBAgQIECAAAECBAgQIECAAAECBAh0T+CWS9MbC0NyIQvVu3eOTESAAAECBAgQIECAAAECBAgQIECAAAECBBZR4C5L0xsNQ0aBiIXqi3go9ESAAAECBAgQIECAAAECBAgQIECAAAECBLokcJel6Y2HIbmghepdOk5mIUCAAAECBAgQIECAAAECBAgQIECAAAECCydwp6XpMwlDclEL1RfuYGiIAAECBAgQIECAAAECBAgQIECAAAECBAh0QuCuS9NnFoZYqN6J82QIAgQIECBAgAABAgQIECBAgAABAgQIECCwWAITLE2fWRiSC1uovljnQzcECBAgQIAAAQIECBAgQIAAAQIECBAgQKDNApMuTZ9pGDIKRCxUb/PB0jsBAgQIECBAgAABAgQIECBAgAABAgQIEFgUgUmXps88DMk/YKH6ohwTfRAgQIAAAQIECBAgQIAAAQIECBAgQIAAgdYKTLw0/V7CkPwjFqq39nBpnAABAgQIECBAgAABAgQIECBAgAABAgQIzFUgvx4rxbRZDU6G0zYSpy3wqestVJ+lrtoECBAgQIAAAQIECBAgQIAAAQIECBAgQKC7AnX862k1+Pl1ExPONAzJDb5fqL6f/9lEw2oQIECAAAECBAgQIECAAAECBAgQIECAAAECHReIYed08Ha7qSlnHoZcBCIxpVcxxF5TjatDgAABAgQIECBAgAABAgQIECBAgAABAgQIdFCg4SAkC91LGDIKRFZ7McV9gUgHD6aRCBAgQIAAAQIECBAgQIAAAQIECBAgQIDA9AJVHesfqsHJ3vSlrla4tzBkFIj0y6L+fTfE+H3Tg6hHgAABAgQIECBAgAABAgQIECBAgAABAgQItFMghXSQYtpqYln6OIF7DUMuGij7qxsxxZeeEmnnodQ1AQIECBAgQIAAAQIECBAgQIAAAQIECBBoSKAKMe2cDo53G6o3tsxcwpCroUjxPIbw3SyHVJsAAQIECBAgQIAAAQIECBAgQIAAAQIECBBYHIHRkyDhTQi/7VWDYTXrzuYahvwXivTKEB5sFHXYiLFYTyHlReuWrc/67qtPgAABAgQIECBAgAABAgQIECBAgAABAgRmLzBMIVT/PhgxqGM6CiG9ntXrsK4b5R9I3XfigNXdmQAAAABJRU5ErkJggg==' x='0' y='0' width='1603' height='50'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  content: "";
  z-index: -1;
}

.main-header__one--two .main-header__one-top .container {
  max-width: 1530px;
  width: 100%;
}

.main-header__one--two .main-header__one-top::before {
  display: none;
}

.main-header__one--two .main-header__one-bottom .container {
  max-width: 1650px;
  width: 100%;
}

.main-header__one--two .main-menu .main-menu__list>li {
  padding-top: 35px;
  padding-bottom: 35px;
}

/*--------------------------------------------------------------
# Main Header Three
--------------------------------------------------------------*/
.main-header__one--three {
  position: relative;
  display: block;
  background: #f6f6f6;
  padding-bottom: 25px;
}

.main-header__one--three .main-header__one-top .container {
  max-width: 100%;
  width: 100%;
  padding: 0px 50px 0px;
}

.main-header__one--three .main-header__one-top::before {
  display: none;
}

.main-header__one--three .main-header__one-top {
  background: transparent;
}

.main-header__one-top-left-text {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__one-top-left-text .icon-box {
  position: relative;
  display: block;
}

.main-header__one-top-left-text .icon-box img {
  width: 100%;
}

.main-header__one-top-left-text .text-box {
  position: relative;
  display: block;
  margin-left: 5px;
  flex: 1;
}

.main-header__one-top-left-text .text-box p {
  color: var(--donatix-black);
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  font-family: var(--donatix-font-two);
}

.main-header__one--three .main-header__social-links-style1 .title-box h4 {
  color: var(--donatix-black);
}

.main-header__one--three .main-header__social-links-style1-list::before {
  background: #787f89;
}

.main-header__one--three .main-header__social-links-style1-list li a {
  color: var(--donatix-black);
}

.main-header__one--three .main-header__social-links-style1-list li a:hover {
  color: var(--donatix-base);
}


.main-header__one--three .main-header__one-bottom .container {
  max-width: 100%;
  width: 100%;
  padding: 0px 50px 0px;
}

.main-header__one--three .main-menu__wrapper-inner {
  background: var(--donatix-white);
  padding: 0px 25px 0px;
  border-radius: 110px;
}



/*--------------------------------------------------------------
# Main Menu
--------------------------------------------------------------*/
.main-menu {
  position: relative;
  display: block;
}

.main-menu__wrapper {
  position: relative;
  display: block;
}

.main-menu__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.stricky-header.main-menu {
  background-color: var(--donatix-white);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}



@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  padding-top: 45px;
  padding-bottom: 45px;
  position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 15px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--donatix-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 20px;
  font-family: var(--donatix-font-two);
  letter-spacing: 0em;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
  color: var(--donatix-base);
}

.main-menu .main-menu__list>li>a::before,
.stricky-header .main-menu__list>li>a::before {
  content: "";
  height: 2px;
  border-radius: 0px;
  background-color: var(--donatix-base);
  position: absolute;
  bottom: -3px;
  left: 0px;
  right: 0px;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: 1;
}

.main-menu .main-menu__list>li.current>a::before,
.main-menu .main-menu__list>li:hover>a::before,
.stricky-header .main-menu__list>li.current>a::before,
.stricky-header .main-menu__list>li:hover>a::before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.main-menu .main-menu__list>li.dropdown>a {
  padding-right: 15px;
}

.main-menu .main-menu__list>li.dropdown>a:after {
  position: absolute;
  top: 59%;
  right: 0;
  font-family: "Font Awesome 5 Pro";
  content: "\f107";
  font-size: 17px;
  color: var(--donatix-black);
  transform: translateY(-50%);
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu .main-menu__list>li.current>a::after,
.main-menu .main-menu__list>li:hover>a::after,
.stricky-header .main-menu__list>li.current>a::after,
.stricky-header .main-menu__list>li:hover>a::after {
  color: var(--donatix-base);
}

.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--donatix-white);
  min-width: 280px;
  padding: 25px 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  border-bottom-left-radius: var(--donatix-bdr-radius);
  border-bottom-right-radius: var(--donatix-bdr-radius);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  transform: perspective(500px) rotatex(-20deg);
  transform-origin: 50% 0%;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}

.shadow-box {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
  display: none;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: perspective(500px) rotatex(0);
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
  border-top: 1px solid rgba(var(--donatix-black-rgb), 0.10);
  margin-top: 0px;
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  display: flex;
  align-items: center;
  color: rgba(var(--donatix-black-rgb), 1);
  font-size: 17px;
  line-height: 17px;
  font-weight: 600;
  font-family: var(--donatix-font-two);
  text-transform: capitalize;
  padding: 16px 0px 16px;
  -webkit-transition: all 200ms linear 0ms;
  -khtml-transition: all 200ms linear 0ms;
  -moz-transition: all 200ms linear 0ms;
  -ms-transition: all 200ms linear 0ms;
  -o-transition: all 200ms linear 0ms;
  transition: all 200ms linear 0ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
  color: rgba(var(--donatix-base-rgb), 1.0);
  padding-left: 5px;
}

.main-menu .main-menu__list>li>ul>li>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li>a::before {
  position: absolute;
  top: 50%;
  right: 20px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f105";
  font-size: 14px;
  color: var(--donatix-base);
  transform: translateY(-50%) scale(0);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a::before {
  transform: translateY(-50%) scale(1);
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.main-menu-four__main-menu-box .main-menu__list>.megamenu,
.main-menu-three__main-menu-box .main-menu__list>.megamenu,
.main-menu-two__main-menu-box .main-menu__list>.megamenu,
.main-menu__wrapper .main-menu__list>.megamenu {
  position: static;
}

.main-menu-four__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu__wrapper .main-menu__list>.megamenu>ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
}

.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu__wrapper .main-menu__list>.megamenu>ul>li {
  padding: 0 !important;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--donatix-base);
  cursor: pointer;
}

.mobile-nav__buttons a+a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--donatix-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 25px;
  color: var(--donatix-base);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--donatix-black);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--donatix-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--donatix-white);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a>.main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--donatix-font, "Rubik", sans-serif);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
  color: var(--donatix-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--donatix-base);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
  width: 30px;
  height: 30px;
  background-color: var(--donatix-base);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--donatix-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--donatix-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--donatix-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--donatix-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--donatix-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--donatix-base);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--donatix-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}



/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.home-showcase {
  margin-top: -25px;
  margin-bottom: -25px;
}

.home-showcase__inner {
  padding: 40px 42px 30px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.home-showcase .row {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 20px;
}

.home-showcase__item {
  position: relative;
  display: block;
  margin-bottom: 7px;
}

.home-showcase__image {
  position: relative;
  overflow: hidden;
  background-color: rgb(0, 0, 0, 0.10);
  padding: 1px;
  border-radius: var(--donatix-bdr-radius);
}

.home-showcase__image>img {
  width: 100%;
  transition: filter 500ms ease;
  filter: blur(0px);
}

.home-showcase__image:hover>img {
  filter: blur(2px);
}

.home-showcase__buttons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: scale(1, 0);
  transition: transform 800ms ease, opacity 600ms linear;
  transform-origin: bottom center;
  opacity: 0.70;
  z-index: 1;
}

.home-showcase__image:hover .home-showcase__buttons {
  transform: scale(1, 1);
  opacity: 1.0;
  transform-origin: top center;
}

.home-showcase__buttons::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: -ms-linear-gradient(left, #222222 0%, #222222 100%);
  background-image: -moz-linear-gradient(left, #222222 0%, #222222 100%);
  background-image: -o-linear-gradient(left, #222222 0%, #222222 100%);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #222222), color-stop(100, #222222));
  background-image: -webkit-linear-gradient(left, #222222 0%, #222222 100%);
  background-image: linear-gradient(to right, #222222 0%, #222222 100%);

  opacity: 1;
  transform: perspective(500px) rotatex(-20deg);
  transform-origin: 50% 0%;
  -webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -khtml-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -moz-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -ms-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -o-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  z-index: -1;
}

.home-showcase__image:hover .home-showcase__buttons::before {
  opacity: 0.90;
  visibility: visible;
  transform: perspective(500px) rotatex(0);
}

.home-showcase__buttons__item {
  padding: 19px 20px 19px;
  width: 170px;
  justify-content: center;
  text-align: center;
  color: var(--donatix-white);
}

.home-showcase__buttons__item::before,
.home-showcase__buttons__item::after {
  background-color: var(--donatix-white);
}


.home-showcase__buttons__item:hover {
  color: var(--donatix-black);
}

.home-showcase__buttons__item+.home-showcase__buttons__item {
  margin-top: 10px;
}

.home-showcase__title {
  margin: 0;
  text-align: center;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  color: var(--donatix-black);
  margin-top: 18px;
  text-transform: capitalize;
}

.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: rgba(0, 0, 0, 0);
}

.mobile-nav__wrapper .home-showcase__title {
  color: var(--donatix-white, #ffffff);
}

.mobile-nav__content .home-showcase {
  margin-top: 0;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
  background: transparent;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}

.main-header-two:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  content: "";
  background-color: rgba(var(--donatix-white-rgb), 0.02);
  z-index: -1;
}

.main-menu-two__wrapper {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(var(--donatix-black-rgb), .10);
}

.main-menu-two__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 135px 0;
}

.main-menu-two__left {
  display: block;
}

.main-menu-two__logo {
  display: block;
  padding: 25px 0;
}

.main-menu-two__main-menu-box {
  display: block;
}

.main-menu-two__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 18px 0;
}

.main-menu-two__call {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: var(--donatix-base);
  border-radius: 50%;
  color: var(--donatix-white);
  font-size: 18px;
  top: 3px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__call-icon:hover {
  background-color: var(--donatix-white);
  color: var(--donatix-base);
}

.main-menu-two__call-content {
  position: relative;
  display: block;
  top: 3px;
  margin-left: 10px;
}

.main-menu-two__call-sub-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--donatix-white);
  line-height: 16px;
  font-family: var(--donatix-font-two);
  letter-spacing: 0.03em;
  text-transform: capitalize;
}

.main-menu-two__call-number {
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  margin-top: 8px;
  font-family: var(--donatix-font);
}

.main-menu-two__call-number a {
  color: var(--donatix-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__call-number a:hover {
  color: var(--donatix-white);
}

.main-menu-two__search-cart-box {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__search-box {
  position: relative;
  display: block;
}

.main-menu-two__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--donatix-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__search:hover {
  color: var(--donatix-white);
}

.main-menu-two__cart-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.main-menu-two__cart {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--donatix-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__cart-count {
  position: absolute;
  top: -15px;
  right: -15px;
  height: 20px;
  width: 20px;
  font-size: 10px;
  line-height: 10px;
  font-weight: 500;
  background-color: var(--donatix-base);
  color: var(--donatix-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__cart:hover {
  color: var(--donatix-white);
}

.main-menu-two__nav-sidebar-icon {
  position: relative;
  display: block;
}

.main-menu-two__nav-sidebar-icon .navSidebar-button {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  padding-right: 11px;
  height: 45px;
  width: 45px;
  background-color: var(--donatix-base);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.icon-dots-menu-one {
  position: relative;
  display: block;
  width: 15px;
  height: 3px;
  background-color: var(--donatix-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-one {
  width: 22px;
}

.icon-dots-menu-two {
  position: relative;
  display: block;
  width: 22px;
  height: 3px;
  background-color: var(--donatix-white);
  margin-top: 5px;
  margin-bottom: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.icon-dots-menu-three {
  position: relative;
  display: block;
  width: 18px;
  height: 3px;
  background-color: var(--donatix-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-three {
  width: 22px;
}

.main-menu-two__btn-box {
  position: relative;
  display: block;
}

.main-menu-two__btn-box .thm-btn {
  color: var(--donatix-white);
}

.main-menu-two .main-menu__list>li>a,
.stricky-header.main-menu-two .main-menu__list>li>a {
  color: var(--donatix-white);
}

.main-menu-two .main-menu__list>li.dropdown>a:after {
  color: var(--donatix-white);
}

.main-menu-two .main-menu__list>li.current>a,
.main-menu-two .main-menu__list>li:hover>a,
.stricky-header.main-menu-two .main-menu__list>li.current>a,
.stricky-header.main-menu-two .main-menu__list>li:hover>a {
  color: var(--donatix-base);
}

.main-menu-two .main-menu__list>li.current>a::after,
.main-menu-two .main-menu__list>li:hover>a::after,
.stricky-header.main-menu-two .main-menu__list>li.current>a::after,
.stricky-header.main-menu-two .main-menu__list>li:hover>a::after {
  color: var(--donatix-base);
}


.stricky-header.main-menu-two {
  background-color: var(--donatix-black);
}



/*--------------------------------------------------------------
# Navigations three
--------------------------------------------------------------*/
.main-header-three {
  position: relative;
  display: block;
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu-three__top {
  position: relative;
  display: block;
  background-color: var(--donatix-base);
}

.main-menu-three__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 7.5px 0px 7.5px;
  z-index: 1;
}

.main-menu-three__top-inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  right: 0;
  bottom: 0;
  background-color: var(--donatix-black);
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 5% 100%);
  z-index: -1;
}

.main-menu-three__top-inner:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 99%;
  right: -10000000px;
  background-color: var(--donatix-black);
  z-index: -1;
}

.main-menu-three__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__top-menu li:before {
  content: "";
  position: absolute;
  top: 6px;
  left: -10px;
  bottom: 6px;
  width: 1px;
  background-color: var(--donatix-white);
  transform: rotate(15deg);
}

.main-menu-three__top-menu li:first-child:before {
  display: none;
}

.main-menu-three__contact-list li+li {
  margin-left: 46px;
}

.main-menu-three__contact-list li:before {
  content: "";
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: -23px;
  width: 1px;
  background-color: rgba(var(--donatix-white-rgb), .40);
}

.main-menu-three__contact-list li:first-child:before {
  display: none;
}

.main-menu-three__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__contact-list li .icon i {
  font-size: 16px;
  color: var(--donatix-white);
}

.main-menu-three__contact-list li .text {
  margin-left: 10px;
}

.main-menu-three__contact-list li .text p {
  font-size: 16px;
  color: var(--donatix-white);
}

.main-menu-three__contact-list li .text p a {
  color: var(--donatix-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__contact-list li .text p a:hover {
  color: var(--donatix-black);
}

.main-menu-three__top-text {
  color: var(--donatix-white);
}

.main-menu-three__top-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu-three__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 40px;
}

.main-menu-three__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  border: 1px solid rgba(var(--donatix-white-rgb), .20);
  border-radius: 5px;
  font-size: 14px;
  color: var(--donatix-white);
  background-color: transparent;
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.main-menu-three__social a:hover {
  color: var(--donatix-base);
  border: 1px solid var(--donatix-white);
}

.main-menu-three__social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--donatix-white);
  transform: scale(0.5);
  border-radius: 5px;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.main-menu-three__social a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.main-menu-three__social a+a {
  margin-left: 10px;
}

.main-menu-three__wrapper {
  position: relative;
  display: block;
}

.main-menu-three__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-menu-three__left {
  position: relative;
  display: block;
}

.main-menu-three__logo {
  display: block;
  padding: 20px 0;
}

.main-menu-three__main-menu-box {
  display: block;
}

.main-menu-three__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 0;
}

.main-menu-three__search-box {
  position: relative;
  display: block;
  margin-left: 25px;
  margin-right: 25px;
}

.main-menu-three__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--donatix-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  cursor: pointer;
}

.main-menu-three__search:hover {
  color: var(--donatix-base);
}

.main-menu-three__btn-box {
  position: relative;
  display: block;
}

.main-menu-three__cart {
  position: relative;
  display: block;
}

.main-menu-three__cart a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--donatix-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__cart a:hover {
  color: var(--donatix-base);
}

.main-menu-three__cart-count {
  position: absolute;
  top: -16px;
  right: -15px;
  height: 20px;
  width: 20px;
  font-size: 10px;
  line-height: 10px;
  font-weight: 500;
  background-color: var(--donatix-base);
  color: var(--donatix-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__cart a:hover .main-menu-three__cart-count {
  color: var(--donatix-white);
}

.main-menu-three__nav-sidebar-icon {
  position: relative;
  display: block;
  margin-left: 30px;
}

.main-menu-three__nav-sidebar-icon .navSidebar-button {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  padding-right: 11px;
  height: 45px;
  width: 45px;
  background-color: var(--donatix-base);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.icon-dots-menu-three-one {
  position: relative;
  display: block;
  width: 15px;
  height: 3px;
  background-color: var(--donatix-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-three-one {
  width: 22px;
}

.icon-dots-menu-three-two {
  position: relative;
  display: block;
  width: 22px;
  height: 3px;
  background-color: var(--donatix-white);
  margin-top: 5px;
  margin-bottom: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.icon-dots-menu-three-three {
  position: relative;
  display: block;
  width: 18px;
  height: 3px;
  background-color: var(--donatix-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-three-three {
  width: 22px;
}


.main-menu-three .main-menu__list>li>a,
.stricky-header.main-menu-three .main-menu__list>li>a {
  color: var(--donatix-black);
}

.main-menu-three .main-menu__list>li.dropdown>a:after {
  color: var(--donatix-black);
}

.main-menu-three .main-menu__list>li.current>a,
.main-menu-three .main-menu__list>li:hover>a,
.stricky-header.main-menu-three .main-menu__list>li.current>a,
.stricky-header.main-menu-three .main-menu__list>li:hover>a {
  color: var(--donatix-base);
}

.main-menu-three .main-menu__list>li.current>a::after,
.main-menu-three .main-menu__list>li:hover>a::after,
.stricky-header.main-menu-three .main-menu__list>li.current>a::after,
.stricky-header.main-menu-three .main-menu__list>li:hover>a::after {
  color: var(--donatix-base);
}


.stricky-header.main-menu-three {
  background-color: var(--donatix-white);
}


/* ===============================
   Hero Section
================================= */
.facility-hero {
  background: linear-gradient(135deg, #fbfcff, #edf2ff);
  color: #263238;
  padding: 70px 0;
  text-align: center;
}

.facility-hero h1 {
  font-size: 36px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.facility-hero p {
  font-size: 17px;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.95;
}

/* ===============================
   Facility Section
================================= */
.facility-section {
  padding: 60px 0;
}

/* Facility Item Card */
.facility-item {
  background: #ffffff;
  padding: 28px 30px;
  margin-bottom: 25px;
  border-left: 5px solid #3949ab;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

/* Headings */
.facility-item h2 {
  font-size: 22px;
  color: #1a237e;
  margin-bottom: 10px;
}

/* Paragraphs */
.facility-item p {
  font-size: 15.5px;
  color: #555;
  text-align: justify;
}

/* ===============================
   Responsive Design
================================= */
@media (max-width: 768px) {
  .facility-hero {
    padding: 50px 0;
  }

  .facility-hero h1 {
    font-size: 28px;
  }

  .facility-item {
    padding: 22px 20px;
  }

  .facility-item h2 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .facility-hero p {
    font-size: 15px;
  }

  .facility-item p {
    font-size: 14.5px;
  }
}

/* ===============================
   Principal Message Section
================================= */
.principal-message {
  background-color: #f7f9ff;
  padding: 70px 0;
}

.principal-card {
  background: #ffffff;
  max-width: 900px;
  margin: 0 auto;
  padding: 45px 50px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  position: relative;
}

/* Decorative accent */
.principal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: #3949ab;
  border-radius: 10px 0 0 10px;
}

.principal-content h2 {
  font-size: 28px;
  color: #1a237e;
  margin-bottom: 20px;
}

.principal-content p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: justify;
}

.principal-signature {
  margin-top: 30px;
  font-size: 16px;
  color: #1f2933;
}

/* ===============================
   Responsive
================================= */
@media (max-width: 768px) {
  .principal-card {
    padding: 30px 25px;
  }

  .principal-content h2 {
    font-size: 24px;
  }

  .principal-content p {
    font-size: 15px;
  }
}

/* ===============================
   Hero Section
================================= */
.notification-hero {
  background: linear-gradient(135deg, #f5f7ff, #e9edff);
  padding: 60px 0;
  text-align: center;
}

.notification-hero h1 {
  font-size: 36px;
  color: #1a237e;
  margin-bottom: 8px;
}

.notification-hero p {
  font-size: 16px;
  color: #4b5563;
}

/* ===============================
   Notification Section
================================= */
.notification-section {
  padding: 60px 0;
}

.notification-card {
  background: #ffffff;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-left: 5px solid #3949ab;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.notification-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.notification-date {
  font-size: 13px;
  color: #6b7280;
  display: block;
  margin-bottom: 6px;
}

.notification-card h3 {
  font-size: 20px;
  color: #1a237e;
  margin-bottom: 8px;
}

.notification-card p {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 10px;
}

.notification-link {
  font-size: 14px;
  color: #3949ab;
  text-decoration: none;
  font-weight: 500;
}

.notification-link:hover {
  text-decoration: underline;
}

/* ===============================
   Responsive
================================= */
@media (max-width: 768px) {
  .notification-hero h1 {
    font-size: 28px;
  }

  .notification-card {
    padding: 20px;
  }

  .notification-card h3 {
    font-size: 18px;
  }
}
/* ===============================
   Courses Section
================================= */
.services-one--three {
  padding: 90px 0;
  background: linear-gradient(135deg, #f7f9ff, #eef2ff);
}

/* ===============================
   Section Title
================================= */
.sec-title__tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}

.sec-title__tagline h4 {
  font-size: 15px;
  color: #3949ab;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.sec-title__tagline .line {
  width: 40px;
  height: 2px;
  background: #3949ab;
}

.sec-title__title {
  font-size: 36px;
  color: #1a237e;
  margin-bottom: 0;
}

/* ===============================
   Course Cards
================================= */
.services-one--three .row > div {
  display: flex;
}

.services-one__single {
  background: #ffffff;
  padding: 38px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  width: 100%;
  position: relative;
}

.services-one__single:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Top Accent */
.services-one__single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(to right, #3949ab, #7986cb);
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.services-one__single:hover::before {
  opacity: 1;
}

/* ===============================
   Icon
================================= */
.services-one__single-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8ebff, #f5f7ff);
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-one__single-icon span {
  font-size: 36px;
  color: #3949ab;
}

/* ===============================
   Title
================================= */
.services-one__single h2 {
  font-size: 18px;
  color: #1f2933;
  margin-bottom: 22px;
  line-height: 1.4;
}

/* ===============================
   Button
================================= */
.course-btn {
  display: inline-flex;
  align-i
}




.facility-section {
        max-width: 1100px;
        margin: 60px auto;
        padding: 0 20px;
    }

    .facility-box {
        background: #ffffff;
        border-radius: 12px;
        padding: 35px;
        margin-bottom: 55px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        border-left: 6px solid #0b3c5d;
        transition: transform 0.3s ease;
    }

    .facility-box:hover {
        transform: translateY(-6px);
    }

    .facility-box h2 {
        font-size: 28px;
        color: #0b3c5d;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    /* ICON STYLE */
    .facility-box h2 span.icon {
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #0b3c5d;
        color: #fff;
        font-size: 20px;
        flex-shrink: 0;
    }

    .facility-box p {
        font-size: 15.5px;
        color: #444;
        margin-bottom: 14px;
    }

    /* NICE BULLETS */
    .facility-box ul {
        padding-left: 0;
        margin-top: 15px;
    }

    .facility-box ul li {
        list-style: none;
        position: relative;
        padding-left: 28px;
        margin-bottom: 10px;
        font-size: 15px;
        color: #333;
    }

    .facility-box ul li::before {
        content: "✔";
        position: absolute;
        left: 0;
        top: 1px;
        color: #0b3c5d;
        font-weight: bold;
    }

    @media (max-width: 600px) {
        .facility-box h2 {
            font-size: 24px;
        }
    }
	
	.courses-section {
        max-width: 1100px;
        margin: 70px auto;
        padding: 0 20px;
    }

    .courses-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .courses-header h1 {
        font-size: 34px;
        color: #0b3c5d;
        margin-bottom: 10px;
    }

    .courses-header p {
        max-width: 800px;
        margin: 0 auto;
        font-size: 16px;
        color: #555;
    }

    .course-card {
        background: #ffffff;
        border-radius: 14px;
        padding: 35px;
        margin-bottom: 45px;
        box-shadow: 0 12px 35px rgba(0,0,0,0.08);
        border-left: 6px solid #0b3c5d;
        transition: transform 0.3s ease;
    }

    .course-card:hover {
        transform: translateY(-6px);
    }

    .course-card h2 {
        font-size: 28px;
        color: #0b3c5d;
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 15px;
    }

    .course-card .icon {
        width: 44px;
        height: 44px;
        background: #0b3c5d;
        color: #fff;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        flex-shrink: 0;
    }

    .course-card p {
        font-size: 15.5px;
        color: #444;
        margin-bottom: 15px;
    }

    .course-card ul {
        padding-left: 0;
        margin-top: 10px;
    }

    .course-card ul li {
        list-style: none;
        position: relative;
        padding-left: 28px;
        margin-bottom: 10px;
        font-size: 15px;
        color: #333;
    }

    .course-card ul li::before {
        content: "✔";
        position: absolute;
        left: 0;
        top: 1px;
        color: #0b3c5d;
        font-weight: bold;
    }

    @media (max-width: 600px) {
        .courses-header h1 {
            font-size: 28px;
        }

        .course-card h2 {
            font-size: 24px;
        }
    }
	
	.course-actions {
        margin-top: 22px;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }

    .course-actions a {
        text-decoration: none;
        padding: 10px 22px;
        border-radius: 30px;
        font-size: 14.5px;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .btn-syllabus {
        background: #0b3c5d;
        color: #fff;
        border: 2px solid #0b3c5d;
    }

    .btn-syllabus:hover {
        background: #ffffff;
        color: #0b3c5d;
    }

    .btn-admission {
        background: transparent;
        color: #0b3c5d;
        border: 2px solid #0b3c5d;
    }

    .btn-admission:hover {
        background: #0b3c5d;
        color: #ffffff;
    }
	@keyframes pageFade {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .admission-wrapper {
        max-width: 1100px;
        margin: 80px auto;
        padding: 0 20px;
    }

    .admission-title {
        text-align: center;
        margin-bottom: 60px;
        animation: slideDown 0.8s ease forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .admission-title h1 {
        font-size: 36px;
        color: #0b3c5d;
        margin-bottom: 12px;
    }

    .admission-title p {
        max-width: 850px;
        margin: 0 auto;
        font-size: 16px;
        color: #555;
    }

    /* Timeline */
    .timeline {
        position: relative;
        margin-top: 60px;
        padding-left: 40px;
        border-left: 4px solid #0b3c5d;
    }

    .timeline-step {
        position: relative;
        background: #ffffff;
        padding: 30px 30px 30px 35px;
        border-radius: 14px;
        margin-bottom: 50px;
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
        opacity: 0;
        transform: translateY(25px);
        animation: stepFadeUp 0.8s ease forwards;
        transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    /* stagger effect */
    .timeline-step:nth-child(1) { animation-delay: 0.1s; }
    .timeline-step:nth-child(2) { animation-delay: 0.2s; }
    .timeline-step:nth-child(3) { animation-delay: 0.3s; }
    .timeline-step:nth-child(4) { animation-delay: 0.4s; }
    .timeline-step:nth-child(5) { animation-delay: 0.5s; }

    @keyframes stepFadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .timeline-step:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 45px rgba(0,0,0,0.14);
    }

    /* Step number */
    .step-number {
        position: absolute;
        left: -58px;
        top: 30px;
        width: 46px;
        height: 46px;
        background: #0b3c5d;
        color: #fff;
        border-radius: 50%;
        font-size: 18px;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 6px 16px rgba(0,0,0,0.25);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        animation: pulse 2.5s infinite;
    }

    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(11,60,93,0.4); }
        70% { box-shadow: 0 0 0 10px rgba(11,60,93,0); }
        100% { box-shadow: 0 0 0 0 rgba(11,60,93,0); }
    }

    .timeline-step:hover .step-number {
        transform: scale(1.08);
        box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    }

    .timeline-step h2 {
        font-size: 26px;
        color: #0b3c5d;
        margin-bottom: 12px;
    }

    .timeline-step ul {
        padding-left: 0;
        margin-top: 10px;
    }

    .timeline-step ul li {
        list-style: none;
        position: relative;
        padding-left: 26px;
        margin-bottom: 9px;
        font-size: 15px;
        color: #333;
        transition: transform 0.3s ease;
    }

    .timeline-step ul li::before {
        content: "➤";
        position: absolute;
        left: 0;
        top: 1px;
        color: #0b3c5d;
        font-weight: bold;
    }

    .timeline-step ul li:hover {
        transform: translateX(6px);
    }

    .final-note {
        margin-top: 60px;
        background: #0b3c5d;
        color: #ffffff;
        padding: 30px 35px;
        border-radius: 16px;
        font-size: 15.5px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.25);
        animation: fadeIn 1s ease forwards;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 700px) {
        .timeline {
            padding-left: 30px;
        }

        .step-number {
            left: -50px;
        }

        .admission-title h1 {
            font-size: 30px;
        }

        .timeline-step h2 {
            font-size: 23px;
        }
    }
	 .syllabus-wrapper {
        max-width: 1100px;
        margin: 80px auto;
        padding: 0 20px;
    }

    .syllabus-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .syllabus-header h1 {
        font-size: 36px;
        color: #0b3c5d;
        margin-bottom: 12px;
    }

    .syllabus-header p {
        max-width: 850px;
        margin: 0 auto;
        font-size: 16px;
        color: #555;
    }

    .syllabus-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .syllabus-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 35px 30px;
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
        border-top: 6px solid #0b3c5d;
        transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .syllabus-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    }

    .syllabus-icon {
        width: 54px;
        height: 54px;
        background: #0b3c5d;
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-bottom: 18px;
    }

    .syllabus-card h2 {
        font-size: 22px;
        color: #0b3c5d;
        margin-bottom: 12px;
    }

    .syllabus-card p {
        font-size: 15px;
        color: #444;
        margin-bottom: 22px;
    }

    .syllabus-card a {
        text-decoration: none;
        display: inline-block;
        padding: 10px 24px;
        border-radius: 30px;
        font-size: 14.5px;
        font-weight: 600;
        border: 2px solid #0b3c5d;
        color: #0b3c5d;
        transition: all 0.3s ease;
    }

    .syllabus-card a:hover {
        background: #0b3c5d;
        color: #ffffff;
    }

    @media (max-width: 600px) {
        .syllabus-header h1 {
            font-size: 30px;
        }
    }
	
	
	.hero3 {background:linear-gradient(135deg, #1a237e, #3949ab); color:#fff; padding:80px 0;}
.hero3 h1 span {color:#ffeb3b;}
.section-title {font-weight:700; margin-bottom:30px; position:relative;}
.section-title::after {content:''; width:70px; height:3px; background:#3949ab; display:block; margin-top:8px;}
.card {border:none; border-radius:12px; box-shadow:0 10px 25px rgba(0,0,0,0.05);}
.badge-course {background:#e8eaf6; color:#1a237e; font-weight:600;}
.note-box {background:#fff3cd; border-left:5px solid #ffc107; padding:20px; border-radius:8px;}
.info-box {background:#e3f2fd; border-left:5px solid #2196f3; padding:20px; border-radius:8px;}
.course-intake-section {background:linear-gradient(180deg, #f8f9ff, #ffffff);}
.section-title {font-size:2.1rem; font-weight:700; color:#0d1b5e; position:relative;}
.section-title::after {content:''; width:90px; height:4px; background:linear-gradient(90deg, #243c9a, #5c6bc0); display:block; margin:12px auto 0; border-radius:4px;}
.course-card {background:#ffffff; border-radius:20px; padding:28px; text-align:center; box-shadow:0 18px 45px rgba(0, 0, 0, 0.08); transition:all 0.35s ease; height:100%;}
.course-card:hover {transform:translateY(-10px); box-shadow:0 30px 70px rgba(0, 0, 0, 0.15);}
.course-card h5 {font-weight:600; color:#1a237e; margin-bottom:14px;}
.intake-badge {display:inline-block; background:linear-gradient(135deg, #243c9a, #5c6bc0); color:#fff; padding:8px 18px; border-radius:30px; font-size:0.9rem; font-weight:600;}
.llm-list {list-style:none; padding:0; margin-top:16px; font-size:0.9rem; color:#444;}
.llm-list li {margin-bottom:6px;}

@media (max-width: 767px) {
.section-title {font-size:1.6rem;}
}

.llb-eligibility {background:linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);}
.llb-eligibility .section-title {font-size:2rem; font-weight:700; color:#0d1b5e; line-height:1.3; position:relative; text-align:center;}
.llb-eligibility .section-title::after {content:""; width:90px; height:4px; background:linear-gradient(90deg, #243c9a, #5c6bc0); display:block; margin-top:12px; border-radius:4px;}
.llb-eligibility .subtitle {font-size:0.95rem; letter-spacing:0.5px; color:#6c757d; font-weight:600;}
.llb-eligibility .card {border:none; border-radius:16px; box-shadow:0 14px 35px rgba(0, 0, 0, 0.06);}
.llb-eligibility p, .llb-eligibility li {font-size:0.95rem; line-height:1.7;}
.llb-eligibility .alert {border:none; border-radius:14px; padding:20px 22px;}
.llb-eligibility .alert-warning {background:linear-gradient(135deg, #fff8e1, #fff3cd); border-left:5px solid #ffc107;}
.llb-eligibility .alert-danger {background:linear-gradient(135deg, #fdecea, #f8d7da); border-left:5px solid #dc3545;}
.llb-eligibility .alert-info {background:linear-gradient(135deg, #e3f2fd, #dbeeff); border-left:5px solid #2196f3;}
.llb-eligibility .highlight-note {background:#f1f4ff; padding:14px 18px; border-radius:12px; color:#1a237e; font-weight:600;}
.llb-eligibility .btn-primary {background:linear-gradient(135deg, #243c9a, #5c6bc0); border:none; padding:10px 26px; font-weight:600; border-radius:30px; box-shadow:0 10px 25px rgba(36, 60, 154, 0.35); transition:all 0.3s ease;}
.llb-eligibility .btn-primary:hover {transform:translateY(-2px); box-shadow:0 16px 35px rgba(36, 60, 154, 0.45);}

@media (max-width: 768px) {
.llb-eligibility .section-title {font-size:1.5rem;}
}

.llb-5yr-eligibility {background:linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);}
.llb-5yr-eligibility .section-title {font-size:2rem; font-weight:700; color:#0d1b5e; line-height:1.3; position:relative;}
.llb-5yr-eligibility .section-title::after {content:""; width:90px; height:4px; background:linear-gradient(90deg, #243c9a, #5c6bc0); display:block; margin-top:12px; border-radius:4px;}
.llb-5yr-eligibility .text-muted {font-size:0.95rem; letter-spacing:0.5px; font-weight:600;}
.llb-5yr-eligibility .card {border:none; border-radius:16px; background:#ffffff; box-shadow:0 14px 35px rgba(0, 0, 0, 0.06);}
.llb-5yr-eligibility p, .llb-5yr-eligibility li {font-size:0.95rem; color:#333; line-height:1.7;}
.llb-5yr-eligibility ul li {margin-bottom:6px;}
.llb-5yr-eligibility .alert {border:none; border-radius:14px; padding:20px 22px; font-size:0.95rem; line-height:1.7;}
.llb-5yr-eligibility .alert-warning {background:linear-gradient(135deg, #fff8e1, #fff3cd); border-left:5px solid #ffc107;}
.llb-5yr-eligibility .alert-info {background:linear-gradient(135deg, #e3f2fd, #dbeeff); border-left:5px solid #2196f3;}
.llb-5yr-eligibility .btn-primary {background:linear-gradient(135deg, #243c9a, #5c6bc0); border:none; padding:10px 26px; font-weight:600; border-radius:30px; box-shadow:0 10px 25px rgba(36, 60, 154, 0.35); transition:all 0.3s ease;}
.llb-5yr-eligibility .btn-primary:hover {transform:translateY(-2px); box-shadow:0 16px 35px rgba(36, 60, 154, 0.45);}

@media (max-width: 768px) {
.llb-5yr-eligibility .section-title {font-size:1.5rem;}
.llb-5yr-eligibility .section-title::after {width:70px;}
}

.llm-pglcet {background:linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);}
.llm-pglcet .section-title {font-size:2rem; font-weight:700; color:#0d1b5e; line-height:1.3; position:relative; text-align:center;}
.llm-pglcet .section-title::after {content:""; width:90px; height:4px; background:linear-gradient(90deg, #243c9a, #5c6bc0); display:block; margin-top:12px; border-radius:4px;}
.llm-pglcet .text-muted {font-size:0.95rem; letter-spacing:0.5px; font-weight:600;}
.llm-pglcet .card {border:none; border-radius:16px; background:#ffffff; box-shadow:0 14px 35px rgba(0, 0, 0, 0.06);}
.llm-pglcet p, .llm-pglcet li {font-size:0.95rem; line-height:1.7; color:#333;}
.llm-pglcet .alert {border:none; border-radius:14px; padding:20px 22px; font-size:0.95rem;}
.llm-pglcet .alert-info {background:linear-gradient(135deg, #e3f2fd, #dbeeff); border-left:5px solid #2196f3;}
.llm-pglcet .alert-warning {background:linear-gradient(135deg, #fff8e1, #fff3cd); border-left:5px solid #ffc107;}
.llm-pglcet .btn-primary {background:linear-gradient(135deg, #243c9a, #5c6bc0); border:none; padding:10px 26px; font-weight:600; border-radius:30px; box-shadow:0 10px 25px rgba(36, 60, 154, 0.35); transition:all 0.3s ease;}
.llm-pglcet .btn-primary:hover {transform:translateY(-2}

/* Hero Section */
.hero3 {
  background: linear-gradient(135deg, #0d1b5e, #243c9a);
  color: #fff;
  padding: 100px 0;
}

.hero3 h1 {
  animation: fadeUp 1s ease forwards;
}

.hero3 p {
  animation: fadeUp 1.2s ease forwards;
}

/* Section title animation */
.section-title {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.section-title.show {
  opacity: 1;
  transform: translateY(0);
}

/* Cards */
.card {
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.12);
}

/* Course Cards */
.course-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.course-card:hover {
  transform: translateY(-8px);
}

/* Intake badge */
.intake-badge {
  display: inline-block;
  background: linear-gradient(135deg, #243c9a, #5c6bc0);
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 10px;
}

/* Lists with icons */
.fw-semibold {
  list-style: none;
  padding-left: 0;
}

.fw-semibold li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
}

.fw-semibold li::before {
  content: "\f4c1"; /* bootstrap-icons mortarboard */
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: #243c9a;
}

/* Alerts animation */
.alert {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.alert.show {
  opacity: 1;
  transform: translateY(0);
}

/* CTA Button */
.btn-primary {
  background: linear-gradient(135deg, #243c9a, #5c6bc0);
  border: none;
  border-radius: 30px;
  padding: 10px 26px;
  box-shadow: 0 10px 25px rgba(36,60,154,0.35);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(36,60,154,0.45);
}

/* Text animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Bigger round icon container */
.course-intake-section .course-card .course-icon {
  margin: 0 auto 16px;
 

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: linear-gradient(135deg, #243c9a, #5c6bc0) !important;
  border-radius: 50% !important;

  color: #ffffff !important;
  font-size: 2rem !important;

  box-shadow: 0 14px 35px rgba(36, 60, 154, 0.45) !important;
}

.course-intake-section .course-card .course-icon i {
  color: #ffffff !important;
  font-size: 2rem !important;
  line-height: 1;
}

.course-intake-section .course-card:hover .course-icon {
  transform: translateY(-6px) scale(1.12);
  transition: all 0.35s ease;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(36,60,154,0.4); }
  70% { box-shadow: 0 0 0 12px rgba(36,60,154,0); }
  100% { box-shadow: 0 0 0 0 rgba(36,60,154,0); }
}


