@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&amp;family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&amp;display=swap");
:root {
  --body-font-family: 'Inter', sans-serif;
  --heading-font-family: 'Poppins', sans-serif;
  --icon-font-family: "Font Awesome 6 Free";
  --body-font-size: 16px;
  --body-line-height: 1.75;
  --heading-line-height: 1.3;
  --body-color: #141E37;
  --heading-color: #141947;
  --theme-primary: #e97835;
  --theme-secondary: #FFC224;
  --common-color-blue: #050071;
  --common-color-blue-2: #282568;
  --common-color-indigo: #9B51E0;
  --common-color-purple: #8121FB;
  --common-color-pink: #FF429D;
  --common-color-red: #E11B24;
  --common-color-orange: #fd7e14;
  --common-color-yellow: #F8BC24;
  --common-color-yellow-2: #FBE67B;
  --common-color-yellow-3: #FCB428;
  --common-color-green: #12BB6A;
  --common-color-teal: #219653;
  --common-color-cyan: #00AEE5;
  --common-color-white: #fff;
  --common-color-gray: #F7F7F9;
  --common-color-gray-2: #EFEEFE;
  --common-color-gray-3: #7F7E97;
  --common-color-gray-4: #ACAACC;
  --common-color-gray-5: #B2BBCC;
  --common-color-gray-6: #d7d7df;
  --common-color-gray-7: #f6f6f6;
  --common-color-gray-8: #F5F5F4;
  --common-color-gray-9: #F9F9F9;
  --common-color-gray-10: #F8F8F8;
  --common-color-dark: #1C1A4A;
  --common-color-black: #06042E;
  --common-color-black-2: #161439;
  --common-color-black-3: #000;
  --border-1: #C9C9DD;
  --border-2: #D0DAE9;
  --border-3: #E2E2E2;
  --border-4: #D7DCE3;
  --border-5: #2F466A;
  --border-6: #dfdfdf;
  --fw-extra-bold: 800;
  --fw-bold: 700;
  --fw-semi-bold: 600;
  --fw-medium: 500;
  --fw-regular: 400;
  --fw-light: 300;
}

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

img,
.img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
button {
  color: var(--theme-primary);
  outline: none;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.btn:focus,
.button:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

a:hover,
button:hover {
  color: var(--theme-secondary);
  text-decoration: none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font-family);
  color: var(--heading-color);
  margin-top: 0px;
  font-weight: var(--fw-semi-bold);
  line-height: var(--heading-line-height);
  text-transform: unset;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 2.35rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.15rem;
}

h6 {
  font-size: 1rem;
}

.list-wrap {
  margin: 0px;
  padding: 0px;
}
.list-wrap li {
  list-style: none;
}

p {
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  font-weight: var(--fw-regular);
  color: var(--body-color);
  margin-bottom: 15px;
}

hr {
  border-bottom: 1px solid var(--common-color-gray);
  border-top: 0 none;
  margin: 30px 0;
  padding: 0;
}

label {
  color: var(--heading-color);
  cursor: pointer;
  font-size: var(--body-font-size);
  font-weight: var(--fw-regular);
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

*::-moz-selection {
  background: var(--theme-primary);
  color: var(--common-color-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--theme-primary);
  color: var(--common-color-white);
  text-shadow: none;
}

::selection {
  background: var(--theme-primary);
  color: var(--common-color-white);
  text-shadow: none;
}

/*=============================
    - Input Placeholder
===============================*/
input,
textarea {
  color: var(--body-color);
}

*::-moz-placeholder {
  color: var(--body-color);
  font-size: var(--body-font-size);
  opacity: 1;
}

*::placeholder {
  color: var(--body-color);
  font-size: var(--body-font-size);
  opacity: 1;
}

/*=============================
    - Common Classes
===============================*/
.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

/*=============================
    - Bootstrap Custom
=============================*/
.container {
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

.gx-0 {
  --bs-gutter-x: 0;
}

.gutter-20 {
  --bs-gutter-x: 20px;
}

.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


/*=============================
  02. Header
===============================*/
.top-bar-container {
  background: #1a85c0;
  padding: 5px 0;
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 14px;
}
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar .contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-bar .contact-info a {
  color: #fff;
  text-decoration: none;
}

.top-bar .contact-info a:hover {
  color: #e96834;
}

.top-bar .contact-info i {
  margin-right: 5px;
  color: #fff;
  font-size: 15px !important;
}

.top-bar .social {
  display: flex;
  align-items: center;
}

.top-bar .social a {
  color: #fff;
  margin-left: 10px;
}

.top-bar .social a:hover {
  color: #FF9D00;
}

@media (max-width: 576px) {

  .top-bar .social {
    display: none;
  }
}

.header-area {
  padding: 5px 0;
  margin: 0;
  box-shadow: 0 2px 5px -3px rgba(0, 0, 0, 0.25);
}
@media (max-width: 1500px) {
  .header-area {
    padding: 10px 0;
  }
}
@media (max-width: 1199.98px) {
  .header-area {
    padding: 20px 0;
  }
}
.header-area .mobile-nav-toggler {
  position: relative;
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
  color: var(--theme-primary);
  display: none;
}

@media (max-width: 1199.98px) {
  .header-area .mobile-nav-toggler {
    display: block;
  }
  .header-area.sticky-menu {
    padding: 0 0;
  }
}

.menu-nav {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.menu-nav img {
  height: 55px;
  width: 100%;
}
@media (max-width: 991.98px) {
  .menu-nav {
    justify-content: space-between;
  }
}
.menu-navbar-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-grow: 1;
}
.menu-navbar-wrap ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 0;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 10px 0 auto;
}
@media (max-width: 1500px) {
  .menu-navbar-wrap ul {
    margin: 0 10px 0 auto;
  }
}
.menu-navbar-wrap ul li {
  display: block;
  position: relative;
  list-style: none;
}
.menu-navbar-wrap ul li a {
  font-size: 16px;
  font-weight: var(--fw-medium);
  text-transform: capitalize;
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  padding: 20px 10px;
  margin: 0 5px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  line-height: 1;
  position: relative;
  z-index: 1;
}
@media (min-width: 800px) {
  .authlnk {
    border: 1px solid #1786c1;
    border-radius: 30px;
    margin-top: 11px !important;
    padding: 8px 10px !important;
    color: #1786c1 !important;
  }
  .authlnk:hover {
    border: 1px solid #e97835;
    background: #e97835;
    color: #fff !important;
  }
}
.list-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  color: #fff;
  font-family: var(--heading-font-family);
  padding: 8px 15px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.search-icon span {
  margin-top: 15px;
  margin-bottom: 15px;
  border-left: 1px solid #ddd;
  cursor: pointer;
}
.search {
  width: 300px;
  position: absolute;
  margin-top: 3px;
  right: -20px;
  background: transparent;
  border: none;
}
.search .form-control, .search .btn {
  height: 45px;
}
.search .form-control {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.search .btn {
  width: 45px;
  background: #e97835;
  color: #fff;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.search .btn i {
  position: absolute;
  top: -3px;
  left: 5px;
}
.mobile-menu .navigation .search-icon {
  display: none;
}
@media (max-width: 1500px) {
  .menu-navbar-wrap ul li a, .menu-navbar-wrap ul li i {
    padding: 20px 10px;
    font-size: 15px;
  }
}
.menu-navbar-wrap ul li .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 270px;
  background: transparent;
  margin: 0;
  -webkit-transform: scale(1, 0);
  -moz-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  -o-transform: scale(1, 0);
  transform: scale(1, 0);
  transform-origin: 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 18px 0;
  display: block;
  visibility: hidden;
  opacity: 0;
  z-index: 9;
}
.menu-navbar-wrap ul li .sub-menu .sub-menu {
  right: auto;
  left: 100%;
  top: 0;
  min-width: 370px;
}
.menu-navbar-wrap ul li .sub-menu li {
  background: #043c84;
  margin-bottom: 2px;
  border-radius: 20px;
  margin-left: 0;
  text-align: left;
  display: block;
}
.menu-navbar-wrap ul li .sub-menu .sub-menu li {
 background: #e97835;
}
.menu-navbar-wrap ul li .sub-menu li a {
  padding: 5px 10px 5px 15px;
  line-height: 1.4;
  display: block;
  color: #fff;
  text-transform: capitalize;
  font-size: 13px;
}
.menu-navbar-wrap ul li .sub-menu li:hover > a, .menu-navbar-wrap ul li .sub-menu li.active {
  color: #e97835;
}
.menu-navbar-wrap ul li .sub-menu .sub-menu li:hover > a {
  color: #046ca0;
}
.menu-navbar-wrap ul li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.menu-navbar-wrap > ul .active, .menu-navbar-wrap > ul > li:hover a {
  color: var(--theme-primary);
}
.menu-main-menu li.menu-item-has-children .dropdown-btn {
  display: none;
}
.menu-main-menu li.menu-item-has-children > a::after {
  content: "\f105";
  display: block;
  font-family: var(--icon-font-family);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  font-size: 14px;
  font-weight: var(--fw-bold);
  margin-left: 6px;
}
@media (max-width: 1500px) {
  .menu-main-menu li.menu-item-has-children > a::after {
    margin-left: 4px;
  }
}
.menu-main-menu li.menu-item-has-children > .sub-menu .menu-item-has-children {
  position: relative;
}
.menu-main-menu li.menu-item-has-children > .sub-menu .menu-item-has-children > a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-main-menu li.menu-item-has-children > .sub-menu .menu-item-has-children > a::after {
  content: "\f105";
  font-family: var(--icon-font-family);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  font-size: 14px;
  font-weight: var(--fw-bold);
  margin-left: 6px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.menu-main-menu li.menu-item-has-children > .sub-menu .menu-item-has-children:hover a::after, .menu-main-menu li.menu-item-has-children > .sub-menu .menu-item-has-children.active a::after {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}

@media (max-width: 1199.98px) {
  .menu-categories {
    margin-left: auto;
  }
}
.menu-categories .dropdown-toggle {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  border: 1px solid var(--border-6);
  border-radius: 100px;
  background: #f6f6f6;
  position: relative;
  padding: 10px 16px;
  font-size: 14px;
  font-family: var(--heading-font-family);
  color: var(--body-color);
  font-weight: 400;
  gap: 0 13px;
}
.menu-categories .dropdown-toggle i {
  color: var(--theme-primary);
  font-size: 16px;
}
.menu-categories .dropdown-toggle::after {
  content: "";
  display: block;
  margin: 0 0 0 4px;
  border: none;
  background-image: url(../images/icons/down_arrow.svg);
  width: 12px;
  height: 8px;
}
.menu-categories .dropdown-menu {
  width: 100%;
  min-width: 100%;
  background-color: var(--common-color-white);
  border: 1px solid var(--border-2);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
}
.menu-categories .dropdown-item {
  color: var(--body-color);
}
.menu-categories .dropdown-item:hover, .menu-categories .dropdown-item:focus {
  background-color: var(--theme-primary);
  color: var(--common-color-white);
}

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

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


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

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

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

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

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

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


@media (max-width: 767px) {
  .mobile-menu .nav-logo img {
    width: 115px;
  }
}





/* ------------------------------------
    05. Banner Section CSS
---------------------------------------*/
.home-banner {
  background-color: #23769a;
}
.rs-banner {
  background: url(../images/banner/home.jpg);
  background-size: cover;
  background-position: center;
  padding: 20px 0 120px;
  display: grid;
  align-items: center;
}
.rs-banner .banner-content .banner-title {
  color: #fff;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 19px;
}
.rs-banner .banner-content .banner-desc {
  color: rgba(255, 255, 255, 0.80);
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 41px;
  position: relative;
}

.banner-btn{
  margin-top: 50px;
  padding-left: 5px;
}
.banner-btn li {
  display: inline;
  margin-right: 25px;
  margin-bottom: 10px;
}
.banner-btn a {
  display: inline-block;
  background: #f4853a;
  border: 1px solid #f4853a;
  border-radius: 60px;
  color: #fff;
  padding: 10px 30px;
  font-weight: 500;
  font-size: 17px;
  transition: 0.5s;
}
.banner-btn a:hover{
  background: transparent;
  border: 1px solid #fff;
}

.banner-btn a.button-two {
  background: transparent !important;
  border: 1px solid #fff; !important;
  padding: 12px 45px !important;
  transition: 0.5s;
  margin: 0;
}

.banner-btn a.button-two:hover{
  background:#f4853a !important;
  color:#fff;
  border: 1px solid #fff !important;
}

.marquee {
  padding: 6px 0px 6px 0px;
  min-height: 35px;
  height: auto;
  background: #234872;
  position: relative;
  margin: 0 auto;
  margin-bottom: 30px;
  overflow: hidden;
  white-space: nowrap;
}
.marquee span {
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 10px 0 10px;
  font-weight: 600;
  color: orange;
  background: #234872;
}
.marquee a {
  color: rgba(255, 255, 255, 0.80);
  padding: 0 10px;
  border-right: 1px solid #ddd;
  display: inline-block;
  font-size: 15px;
  line-height: 16px;
  position: relative;
  left: 100%;
  animation: marqueeitem 40s linear infinite;
}
.marquee a:hover {
  color: #FCC741;
}
.marquee:hover a {
  animation-play-state: paused;
}

.marquee a:nth-child(1) {
  animation-delay: 0s;
}
@keyframes marqueeitem {
  0%   { left: 0%; }
  100% { left: -100%; }
}
@media (max-width: 767px) {
  .rs-banner {
    height: 750px;
  }
  .rs-banner .banner-content .banner-title {
    font-size: 27px;
  }
  .rs-banner .banner-content .banner-desc {
    font-size: 17px;
  }
  .banner-btn{
    margin-top: 10px;
  }
  .banner-btn li {
    margin-right: 10px;
  }
  .banner-btn a, .banner-btn a.button-two {
    padding: 7px 20px !important;
    font-size: 15px;
    margin-bottom: 10px;
  }
}



/*==================================================
 <-- Clients Area Css-->
===================================================*/
.brand-area {
  position: relative;
  margin-top: -70px;
  z-index: 2;
}
.brand-area .container {
  background: #fff !important;
  padding: 40px 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
}
.brand-area h4 {
  margin-top: 20px;
}
.brand-item img {
  transition: all ease .4s;
  max-height: 70px;
  width: auto !important;
}
@media (max-width: 767px) {
  .brand-area {
    padding: 0 10px;
  }
  .brand-area h4 {
    margin-top: 0;
    margin-bottom: 35px;
  }
  .brand-item {
    min-width: 120px !important;
  }
}


/* ============================================================== 
     # Welcome Section
=================================================================== */
.welcome-area {
  background: #f3f8fb;
  padding-top: 120px;
  margin-top: -80px;
}
.welcome-area .welcome-area-text {
  margin-bottom: 50px;
  margin-top: 30px;
  padding-right: 40px;
}
.welcome-area .welcome-area-text p {
  margin: 0;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  color: #666666;
  padding-bottom: 25px;
}
.welcome-area .read-more-btn {
  color: #666;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  position: relative;
  padding-right: 15px;
}
.welcome-area .read-more-btn:before {
  position: absolute;
  font-family: "Font Awesome 6 Free";
  content: "\f178";
  top: 1px;
  right: -15px;
}
.welcome-area .welcome-img {
  padding: 0 10px;
  margin-top: 33px;
}
.welcome-area .welcome-img img {
  transform: scale(1.05);
  margin-bottom: 11px;
}





/* ============================================================== 
     # Services Area
=================================================================== */
.service-area {
  padding: 70px 0;
}
.service-header {
  text-align: center;
  margin-bottom: 30px;
}
.service-area .service-text-box {
  text-align: center;
  margin-bottom: 20px;
}
.service-area .service-text-box .service-icon {
  background-color: #148bca;
  border-radius: 100%;
  height: 120px;
  margin: 0 auto;
  position: relative;
  width: 120px;
}
.service-area .service-text-box .service-icon:before {
  border: 8px solid rgba(20, 139, 202, 0.2);
  border-radius: 100%;
  content: "";
  height: 114%;
  left: -8px;
  position: absolute;
  top: -8px;
  width: 114%;
  z-index: 2;
}
.service-area .service-text-box .service-icon :before {
  font-size: 60px;
  color: #fff;
}
.service-area .service-text-box .service-text {
  margin-top: -60px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
  padding: 100px 25px 40px;
  transition: all 0.3s ease-in-out;
}
.service-area .service-text-box .service-text:hover {
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease-in-out;
}
.service-area .service-text-box .service-text h3 {
  font-size: 20px;
  padding-bottom: 15px;
}
.service-area .service-text-box .service-text p {
  padding-bottom: 25px;
  margin: 0;
}
.service-area .service-text-box .service-text a {
  color: #333;
  margin: 0px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}
.service-area .service-text-box .service-text a:hover {
  color: #e97835;
}
.service-area .service-text-box .service-text a i {
  padding-left: 5px;
}



/* ============================================================== 
     # Categories Area
=================================================================== */
.categories-area {
  background: #f3f8fb;
  padding: 70px 10px;
}
.categories-header {
  text-align: center;
  margin-bottom: 30px;
}
.category-ful-box {
  padding: 10px 20px;
}
.category-text-box {
  background: #fff;
  box-shadow: 1px 10px 20px rgba(0, 0, 0, 0.10);
  min-height: 50px;
  max-height: 60px;
  height: auto;
  padding: 5px;
}
.category-image {
  padding: 0;
}
.category-text {
  padding: 0 10px;
  display: flex;
  align-items: center;
  min-height: 50px;
  height: auto;
}
.category-text h5 {
  font-size: 13px;
}
@media (max-width: 767px) {
  .category-image img {
    max-height: 50px;
  }
}




/* ============================================================== 
     # Top Courses
=================================================================== */
.courses-page {
  margin: 20px 0 0;
  padding: 20px 0 0;
}

.course-area {
  padding: 50px 0;
}
.course-header {
  text-align: center;
  margin-bottom: 30px;
}

.course {
  box-shadow: 0 0 10px #cccccc;
  background: #ffffff;
  margin-bottom: 30px;
}

.course .thumb {
  position: relative;
  z-index: 1;
}

.course .info {
  padding: 10px;
}

.course .info h4 {
  font-size: 13px;
  font-weight: 500;
  min-height: 50px !important;
}

.courses .item .info a:hover {
  color: #ffb606;
}

.course .footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e7e7e7;
  margin-top: 10px;
  padding-top: 15px;
}

.course .footer-meta .btn {
  font-size: 13px;
  color: #fff;
}

.course .footer-meta .btn:first-child {
  background-color: #043c84;
}

.course .footer-meta .btn:last-child {
  background-color: #e97835;
}

.pagination-area {
  margin: 0 0 30px;
}
.pagination-area .page-numbers {
  width: 35px;
  height: 35px;
  margin: 0 3px;
  display: inline-block;
  background-color: #fff;
  line-height: 35px;
  color: #09101f;
  -webkit-box-shadow: 0 2px 10px 0 #d8dde6;
  box-shadow: 0 2px 10px 0 #d8dde6;
  font-size: 18px;
  font-weight: 700;
  border-radius: 7px;
  text-align: center;
  cursor: pointer;
}
.pagination-area .page-numbers.current,
.pagination-area .page-numbers:hover,
.pagination-area .page-numbers:focus {
  background: #043c84;
  color: #fff;
  -webkit-box-shadow: 0 2px 10px 0 #d8dde6;
  box-shadow: 0 2px 10px 0 #d8dde6;
}
.pagination-area .page-numbers i {
  font-size: 20px;
  position: relative;
  top: 4px;
}

.loader{
  display: none;
  margin-bottom: 30px;
}
.spinner {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 40px;
}
.spinner div {
  display: inline-block;
  position: absolute;
  left: 6px;
  width: 7px;
  background: #e97835;
  color: #e97835;
  -webkit-animation: spinner 1.2s infinite ease-in-out;
  animation: spinner 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.spinner div:nth-child(1) {
  left: 6px;
  animation-delay: -0.16s;
}
.spinner div:nth-child(2) {
  left: 26px;
  animation-delay: -0.12s;
}
.spinner div:nth-child(3) {
  left: 45px;
  animation-delay: -0.8s;
}
.spinner div:nth-child(4) {
  left: 65px;
  animation-delay: -0.4s;
}
.spinner div:nth-child(5) {
  left: 85px;
  animation-delay: 0;
}
@keyframes spinner {
  0% {
    top: 6px;
    height: 51px;
  }
  50%, 100% {
    top: 19px;
    height: 26px;
  }
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }20% {
   transform: scaleY(1.0);
   -webkit-transform: scaleY(1.0);
 }
}




/*==================================================
 <-- Achievements area -->
===================================================*/
.achievement-area {
  background: #043c84;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 0;
  left: 0;
}

.single-counter-box {
  text-align: center;
}

.achievement-area .service-icon i:before {
  font-size: 50px;
  color: #FCC741;
}

.single-counter-box p.counter-number {
  font-size: 50px;
  font-weight: 600;
  color: #203151;
}

.single-counter-box .counter-number span {
  font-size: 50px;
  font-weight: 600;
  color: #203151;
  margin: 40px 0 20px;
}

.single-counter-box p.counter-number {
  color: #fff;
}

.single-counter-box .counter-number span {
  color: #fff;
}

.single-counter-box h6 {
  color: #fff;
}




/*==================================================
 <-- Testimonial Area Css-->
===================================================*/
.testimonial-area {
  background: #f3f8fb;
  position: relative;
  padding: 70px 0;
}
.testimonial-header {
  text-align: center;
  margin-bottom: 40px;
}
.testimonial-area .testimonial-header:before {
  border-bottom: 1px solid orange;
}
.testimonial-area .single-item {
  background: #ffffff;
  margin: 0 15px;
  padding: 30px 40px 25px;
}
.testimonial-area .single-item .content-box p {
  position: relative;
  margin: 0;
  z-index: 1;
}
.testimonial-area .single-item .content-box .rating-box {
  margin: 0;
  padding: 15px;
}
.testimonial-area .single-item .content-box .rating-box li {
  display: inline-block;
  color: #fec722;
  font-size: 16px;
}
.testimonial-area .single-item .images-box ul li {
  display: inline-block;
  vertical-align: middle;
}
.testimonial-area .single-item .images-box ul li:first-child {
  height: 55px;
  width: 55px;
}
.testimonial-area .single-item .images-box ul li:first-child img {
  height: 100%;
  width: 100%;
  border-radius: 100%;
}
.testimonial-area .single-item .images-box ul li:last-child {
  padding-left: 15px;
}
.testimonial-area .single-item .images-box ul li:last-child h3 {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  margin: 0;
  padding: 0;
}
.testimonial-area .owl-prev,
.testimonial-area .owl-next {
  border: 1px solid #e97835;
  border-radius: 100px;
  color: #e97835;
  display: inline-block;
  font-size: 15px;
  height: 60px;
  margin-top: -35px;
  position: absolute;
  text-align: center;
  top: 40%;
  transition: all 0.3s ease 0s;
  width: 60px;
}
.testimonial-area .owl-prev:hover,
.testimonial-area .owl-next:hover {
  border: 1px solid #e97835;
}
.testimonial-area .owl-prev:hover .fa-angle-right,
.testimonial-area .owl-next:hover .fa-angle-right {
  color: #e97835;
  transition: all 0.3s ease-in-out;
}
.testimonial-area .owl-prev:hover .fa-angle-left,
.testimonial-area .owl-next:hover .fa-angle-left {
  color: #e97835;
  transition: all 0.3s ease-in-out;
}
.testimonial-area .owl-prev {
  left: -80px;
}
.testimonial-area .owl-next {
  right: -80px;
}
.testimonial-area .fa-angle-right,
.testimonial-area .fa-angle-left {
  transition: all 0.3s ease-in-out;
  font-size: 25px;
  color: #e97835;
  line-height: 50px;
  margin-top: 5px;
}

@media (max-width: 767px) {
  .testimonial-area .owl-prev,
  .testimonial-area .owl-next {
    border-radius: 100px;
    font-size: 15px;
    height: 40px;
    margin-top: -35px;
    top: 40%;
    width: 40px;
  }
  .testimonial-area .owl-prev {
    left: 0;
  }
  .testimonial-area .owl-next {
    right: 0;
  }
  .testimonial-area .fa-angle-right,
  .testimonial-area .fa-angle-left {
    font-size: 15px;
  }
}



/*==================================================
  Contact Page
===================================================*/
.contact-area {
  margin: 20px 0;
  padding: 30px 0;
}
.contact-info-wrap .list-wrap li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid #E1E1E1;
  background: #F7F7FA;
  gap: 25px;
}
@media (max-width: 1199.98px) {
  .contact-info-wrap .list-wrap li {
    padding: 25px 25px;
    gap: 15px;
    flex-wrap: wrap;
  }
}
@media (max-width: 991.98px) {
  .contact-info-wrap .list-wrap li {
    flex-wrap: nowrap;
  }
}
@media (max-width: 767.98px) {
  .contact-info-wrap .list-wrap li {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767.98px) {
  .contact-info-wrap .list-wrap li {
    flex-direction: row;
    align-items: center;
  }
}
.contact-info-wrap .list-wrap li:last-child {
  margin-bottom: 0;
}
.contact-info-wrap .list-wrap li .icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #2292ce;
  font-size: 20px;
  line-height: 0;
  flex: 0 0 auto;
  margin-left: -10px;
}
.contact-info-wrap .list-wrap li .icon i {
  color: #fff;
}
.contact-info-wrap .list-wrap li .content {
  margin-left: -20px;
}
.contact-info-wrap .list-wrap li .content .title {
  font-size: 18px;
  margin-bottom: 5px;
}
.contact-info-wrap .list-wrap li .content p {
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.4;
}
.contact-info-wrap .list-wrap li .content a {
  display: block;
  font-weight: 500;
  color: var(--tg-body-color);
  line-height: 1.4;
  font-size: 15px;
}
.contact-info-wrap .list-wrap li .content a:hover {
  color: var(--tg-theme-primary);
}
.contact-form-wrap {
  border-radius: 12px;
  border: 1px solid #E1E1E1;
  background: #F7F7FA;
  padding: 30px;
}

@media (max-width: 991.98px) {
  .contact-form-wrap {
    margin-top: 60px;
  }
}
@media (max-width: 767.98px) {
  .contact-form-wrap {
    padding: 25px 20px 30px;
  }
}
.contact-form-wrap .title {
  margin-bottom: 5px;
  position: relative;
  font-size: 28px;
}
@media (max-width: 767.98px) {
  .contact-form-wrap .title {
    font-size: 24px;
  }
}
.contact-form-wrap p {
  margin-bottom: 15px;
}
.contact-form-wrap .form-grp {
  margin-bottom: 20px;
}
.contact-form-wrap .form-grp input, .contact-form-wrap .form-grp textarea {
  width: 100%;
  border: 1px solid #E1E4E7;
  border-radius: 5px;
  display: block;
  background: #fff;
  font-weight: 400;
  font-size: 16px;
  padding: 11px 20px;
  height: 50px;
  transition: 0.3s;
}
.contact-form-wrap .form-grp input::placeholder, .contact-form-wrap .form-grp textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  opacity: 0.8;
}
.contact-form-wrap .form-grp input:focus, .contact-form-wrap .form-grp textarea:focus {
  border-color: var(--tg-theme-primary);
}
.contact-form-wrap .form-grp textarea {
  min-height: 230px;
  max-height: 230px;
}

.contact-form-wrap .btn {
  display: inline-block;
  background: #f4853a;
  border: 1px solid #f4853a;
  color: #fff;
  padding: 10px 30px;
  font-weight: 500;
  font-size: 17px;
  transition: 0.5s;
  border-radius: 50px;
}
.contact-form-wrap .btn:hover{
  background: orange;
}

.contact-map {
  margin-top: 70px;
}
.contact-map iframe {
  border-radius: 12px;
}



/*==================================================
 <-- Gallery -->
===================================================*/
.gallery-img {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.gallery-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-img:hover img {
  transform: scale(1.05);
}

.zoom-icon {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
}

.zoom-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 2rem;
  color: white;
  transition: opacity 0.3s ease;
}

.gallery-img:hover .zoom-icon {
  opacity: 1;
}



/*==================================================
 <-- Blog -->
===================================================*/
.card-img-top {
  height: 200px;
  object-fit: cover;
}
.card {
  border: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.card-title {
  font-weight: 550;
}
.read-more {
  text-decoration: none;
}
.read-more:hover {
  text-decoration: underline;
}


.sidebar {
  background-color: #f4f4f4;
  padding: 20px;
  height: 100vh;
  position: sticky;
  top: 0;
}
.sidebar .input-group {
  background-color: #e9ecef;
  border-radius: 5px;
}
.main-content .card {
  border: none;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}
.main-content .card-body {
  padding: 15px;
}
.category {
  background-color: #e96834;
  color: #fff;
  padding: 2px 10px;
  border-radius: 5px;
  font-size: 0.9rem;
}
.popular-post {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.popular-post img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 10px;
}
.popular-post p {
  font-size: 14px;
  line-height: 1.3;
  margin: 0;
}



/*==================================================
 <-- Footer Area Css-->
===================================================*/
.footer-area {
  padding: 70px 0 0px;
  background: #043c84;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.footer-wiget-text p {
  color: #c5c6c9;
}

.footer-wiget-title h4 {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  line-height: 34px;
  font-weight: 600;
  padding: 0 0 32px;
  transition: .5s;
}

.footer-social ul {
  padding-left: 0;
}
.footer-social ul li {
  list-style: none;
  display: inline-block;
  margin-right: 7px;
}

.footer-social ul li a i {
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  color: #c5c6c9;
  transition: .5s;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.footer-social ul li a i::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 0px;
  height: 100%;
  content: "";
  bottom: 0;
  color: #fff;
  background: #e97835;
  border-radius:50%;
  z-index: -1;
  transition: .5s;
  margin: auto;
}

.footer-social ul li a i:hover::after {
  width: 100%;
  left: 0;
}

.footer-wiget-menu ul {
  list-style: none;
  padding-left: 10px;
}

.footer-wiget-menu ul li {
  list-style: none;
  margin-top: 0px;
}

.footer-wiget-menu ul li a {
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: .5s;
  margin: 0;
  line-height: 35px;
  color: #c5c6c9;
}

.footer-wiget-menu ul li a:hover {
  color: #573CFF;
  margin-left: 10px;
}

.footer-wiget-touch ul {
  padding-left: 10px;
}

.footer-wiget-touch ul li {
  list-style: none;
  display: block;
  margin-bottom: 15px;
}

.icon {
  float: left;
  margin-right: 15px;
}

.icon i {
  color: #c5c6c9;
  font-size: 20px;
}

.address a, .address p {
  display: inline-block;
  color: #c5c6c9;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-decoration: none;
}

.copyright-area {
  background: #e97835;
  padding: 20px 0 10px;
}

.copyright-text p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 124.5%;
}

.footer-privacy-menu {
  text-align: right;
}

.footer-privacy-menu ul {
  list-style: none;
}

.footer-privacy-menu ul li {
  display: inline-block;
  margin-right: 27px;
}

.footer-privacy-menu ul li a {
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  text-decoration: none;
}
@media (min-width: 768px) {
  .footer-area .sv {
    visibility: hidden;
  }
}
@media (max-width: 700px) {
  .copyright-area, .footer-privacy-menu {
    text-align: center;
  }
}


/*
<!-- ============================================================== -->
  Scrollup Section 
<!-- ============================================================== -->*/
.prgoress_scrollup {
  position: fixed;
  right: 25px;
  bottom: 10px;
  height: 48px;
  width: 48px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 119, 249, 0.2);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transform: translateY(15px) !important;
  transition: all 200ms linear !important;
}

.prgoress_scrollup.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) !important;
}

.prgoress_scrollup::after {
  position: absolute;
  content: "\f106";
  font-family: "Font Awesome 6 Free";
  text-align: center;
  line-height: 46px;
  font-size: 16px;
  color: orange;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  font-weight: 900;
  z-index: 1;
  transition: all 200ms linear !important;
}

.prgoress_scrollup:hover::after {
  color: #e97835;
}

.prgoress_scrollup svg path {
  fill: none;
}

.prgoress_scrollup svg.progress-circle path {
  stroke: orange;
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear !important;
}




@-webkit-keyframes ripple-blue {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3)
  }

  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0)
  }
}

@keyframes ripple-blue {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3)
  }

  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0)
  }
}


@keyframes loader {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}


.hero-area {
  background: url("../images/bg-wide.jpg");
  background-size: cover;
  text-align: center;
}
.hero-area .overlay {  
  padding: 40px 0 25px;
  background-color: rgba(4, 60, 132, 0.8);
}
.hero-area .breadcrumb {
  margin: 0;
  background: none;
  justify-content: center;
  color: inherit;
}
.hero-area .breadcrumb li {
  color: #fff;
}
.hero-area h1 {
  margin-top: 20px;
  color: #fff;
}


.about-page {
  padding: 50px 0;
}
.mission {
  width: 100%;
  height: auto;
  padding: 25px 25px 15px 20px;
  background-color: #043c84;
  border-radius: 4px;
  color: #fff;
}
.mission .item {
  width: 100%;
}
.mission .item:last-child {
  border-top: 1px solid #2a4f7c;
  padding-top: 20px;
}
.mission .item h3 {
  font-size: 21px;
  color: #fff;
}
.mission .item p {
  color: #fff;
}
.values {
  margin-top: 40px;
}
.values .item {
  padding: 20px;
  box-shadow: 0 0 10px #ccc;
  background: #fff;
  margin-bottom: 30px;
}
.values .item h4 {
  font-size: 18px;
}



.service-page .section {
  padding: 50px 0;
}

.service-page .intro p {
  font-size: 18px;
}

.service-page .approach {
  background: #e1ecf2;
}
.service-page .approach h3 {
  color: #e97835;
}

.service-page .approach ul {
  list-style: none;
  padding-left: 0;
}

.service-page .approach ul li {
  margin-bottom: 8px;
}

.service-page .approach ul li b {
  color: #0a7cb5;
}

.service-page .benefits h3 {
  margin-bottom: 30px;
}

.service-page .benefits h4 {
  font-size: 18px;
}

.service-page .benefits .item {
  padding: 20px;
  box-shadow: 0 0 10px #ccc;
  background: #fff;
  margin-bottom: 30px;
}

.schedule {
  padding: 70px 0;
}
.schedule thead th {
  background: #043c84;
  color: #fff;
}
.schedule .table tbody tr:hover > td {
  background: #043c84;
  color: #fff;
}
.schedule td .btn {
  background: #e97835;
  color: #fff;
  border-radius: 25px;
}
.schedule td .btn:hover {
  background: orange;
}

@media (max-width: 767px) {
  .service-page .approach h3 {
    margin-top: 25px;
  }
}




.course-page {
  padding: 70px 0;
}
.course-page .content h2,
.course-page .content h3,
.course-page .content h4,
.course-page .content h5 {
  text-transform: lowercase;
}
.course-page .content h2:first-letter,
.course-page .content h3:first-letter,
.course-page .content h4:first-letter,
.course-page .content h5:first-letter {
  text-transform: uppercase;
}
.course-page .content ul, .course-page .content ol {
  padding-left: 35px;
}
.course-page .details {
  padding: 10px;
  box-shadow: 0 0 10px #ccc;
}

.pricediv td span {
  color: #e97835;
}

.course-page .details .table {
  margin-top: 10px;
  font-size: 13px;
}
.course-page .details .table thead th {
  background: #043c84;
  color: #fff;
}
.course-page .details .table tbody tr:hover > td {
  background: #043c84;
  color: #fff;
}
.course-page .details .table .btn{
  background: #e97835;
  color: #fff;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 25px;
}
.course-page .details .table .btn:hover {
  background: orange;
}


.register-div {
  padding: 50px 0;
}
#register {
  padding: 25px;
  box-shadow: 0 0 10px #ccc;
  width: 100%;
  max-width: 900px;
  border-radius: 8px;
  margin: auto;
}
#register .item {
  margin-top: 30px;
  padding-top: 10px;
  border-top: 1px dashed #ccc;
}
#register .item:first-child {
  margin-top: 0;
  border: none;
}
#register .item h2 {
  font-size: 22px;
}
#register .mb-3 {
  position: relative;
}
#register .form-control {
  height: 45px;
  background: #eff2f4;
}
#register label span {
  color: #ff0000;
}
#register .date {
  padding-left: 35px;
}
#register .showcalendar {
  position: absolute;
  left: 10px;
  top: 47px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  cursor: pointer;
}
.select2-selection__rendered {
  line-height: 37px !important;
}
.select2-container .select2-selection--single {
  height: 40px !important;
  background: #eff2f4;
}
.select2-selection__arrow {
  height: 38px !important;
}
#register .btn {
  background: #e97835;
  color: #fff;
  padding: 8px 25px;
  border-radius: 25px;
}
#register .btn:hover {
  background: orange;
}



.authdiv {
  padding: 50px 0;
}
.auth {
  padding: 20px;
  box-shadow: 0 0 10px #ccc;
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
  margin: auto;
}
.auth h2 {
  margin-bottom: 20px;
  font-size: 23px;
}
.auth .mb-3 {
  position: relative;
}
.auth label span {
  color: #ff0000;
}
.auth .form-control {
  padding-left: 35px;
  height: 45px;
}
.showuser, .showpadlock {
  position: absolute;
  left: 10px;
  top: 50px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  cursor: pointer;
}
.showpwd {
  position: absolute;
  right: 12px;
  top: 52px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 13px;
  cursor: pointer;
}
.auth .btn {
  background: #e97835;
  color: #fff;
  border-radius: 25px;
}
.auth .btn:hover {
  background: orange;
}
.auth .back {
  margin-top: 20px;
}



.books-page, .book-page {
  padding: 70px 0;
}
.books-page .book {
  margin-bottom: 20px;
}
.books-page .book .info {
  padding: 20px 10px;
}
.books-page .book h4 {
  font-size: 16px;
}

.book-page .content h3 span {
  color: #e97835;
}
.book-page .content .btn-div {
  border-top: 1px solid #eee;
  padding-top: 20px;
}
.book-page .content .btn {
  background: #e97835;
  color: #fff;
  padding: 8px 25px;
  border-radius: 25px;
}
.book-page .content .btn:hover {
  background: orange;
}






.registration-area {
  padding: 70px 0;
  background: #0e81ba;
  color: #fff;
}
.registration-area .img-div {
  text-align: center;
}
.registration-area .btn {
  background: #e97835;
  color: #fff;
  font-size: 18px;
  padding: 10px 40px;
  border-radius: 60px;
  margin: 25px auto !important;
}
.registration-area .btn:hover {
  background: orange;
}
.countdown p {
  color: #fff;
}

.registration-area .countdown h2 {
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 25px;
  margin-top: -5px;
  color: #fff;
}

.registration-area .countdown h4 {
  margin-bottom: 25px;
  color: orange;
}

.registration-area .counter-class {
  margin-top: 30px;
}
.countdown .counter-item {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  padding: 0 15px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}

.countdown .counter-item span {
  display: block;
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 600;
  height: 100px;
  width: 100px;
  line-height: 105px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.5);
}

.registration-area.reverse .countdown {
  padding-left: 35px;
}

.registration-area.reverse.bg-gray .countdown .item span {
  color: #ffb606;
  border: 1px dashed #ddd;
  background: rgba(255, 255, 255, 0.6);
}

.registration-area.reverse.bg-gray .countdown .counter-item {
  color: #232323;
}

@media (max-width: 767px) {
  .countdown .counter-item {
    font-size: 12px;
  }

  .countdown .counter-item span {
    font-size: 18px;
    margin-bottom: 15px;
    height: 40px;
    width: 40px;
    line-height: 43px;
    border-radius: 50%;
  }
}


.registration-area .owl-prev,
.registration-area .owl-next {
  border: 1px solid #e97835;
  border-radius: 100px;
  color: #e97835;
  display: inline-block;
  font-size: 15px;
  height: 60px;
  margin-top: -35px;
  position: absolute;
  text-align: center;
  top: 40%;
  transition: all 0.3s ease 0s;
  width: 60px;
}
.registration-area .owl-prev:hover,
.registration-area .owl-next:hover {
  border: 1px solid #e97835;
}
.registration-area .owl-prev:hover .fa-angle-right,
.registration-area .owl-next:hover .fa-angle-right {
  color: #e97835;
  transition: all 0.3s ease-in-out;
}
.registration-area .owl-prev:hover .fa-angle-left,
.registration-area .owl-next:hover .fa-angle-left {
  color: #e97835;
  transition: all 0.3s ease-in-out;
}
.registration-area .owl-prev {
  left: -80px;
}
.registration-area .owl-next {
  right: -80px;
}
.registration-area .fa-angle-right,
.registration-area .fa-angle-left {
  transition: all 0.3s ease-in-out;
  font-size: 25px;
  color: orange;
  line-height: 50px;
  margin-top: 5px;
}

@media (max-width: 767px) {
  .registration-area .owl-prev,
  .registration-area .owl-next {
    border-radius: 100px;
    font-size: 15px;
    height: 40px;
    margin-top: -35px;
    top: 40%;
    width: 40px;
  }
  .registration-area .owl-prev {
    left: 0;
  }
  .registration-area .owl-next {
    right: 0;
  }
  .registration-area .fa-angle-right,
  .registration-area .fa-angle-left {
    font-size: 15px;
  }
}