.btn.btn-theme.effect {
  color: #ffffff;
  border: 2px solid var(--theme-main-color);
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.btn.btn-theme.effect:before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 100%;
  width: 0;
  background: var(--theme-secondary-color);
  z-index: -1;
  transition: all 0.35s ease-in-out;
}
.btn.btn-theme.effect:after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 100%;
  width: 100%;
  background: var(--theme-main-color);
  z-index: -2;
  transition: all 0.35s ease-in-out;
}
.btn.btn-theme.effect:hover {
  border: 2px solid var(--theme-secondary-color);
}
.btn.btn-theme.effect:hover:before {
  width: 100%;
}

.btn.btn-theme.effect.purple {
  border: 2px solid var(--theme-main-color);
}
.btn.btn-theme.effect.purple:before {
  background: var(--theme-secondary-color);
}
.btn.btn-theme.effect.purple:after {
  background: var(--theme-main-color);
}
.btn.btn-theme.effect.purple:hover {
  border: 2px solid var(--theme-secondary-color);
}

.btn.btn-theme.effect.dark-purple {
  border: 2px solid var(--theme-secondary-color);
}
.btn.btn-theme.effect.dark-purple:before {
  background: var(--theme-main-color);
}
.btn.btn-theme.effect.dark-purple:after {
  background: var(--theme-secondary-color);
}
.btn.btn-theme.effect.dark-purple:hover {
  border: 2px solid var(--theme-main-color);
}

.btn.btn-theme.effect.orange {
  border: 2px solid var(--theme-orange);
}
.btn.btn-theme.effect.orange:before {
  background: var(--theme-dark-orange);
}
.btn.btn-theme.effect.orange:after {
  background: var(--theme-orange);
}
.btn.btn-theme.effect.orange:hover {
  border: 2px solid var(--theme-dark-orange);
}

.btn.btn-theme.effect.green {
  border: 2px solid var(--theme-green);
}
.btn.btn-theme.effect.green:before {
  background: var(--theme-dark-green);
}
.btn.btn-theme.effect.green:after {
  background: var(--theme-green);
}
.btn.btn-theme.effect.green:hover {
  border: 2px solid var(--theme-dark-green);
}

.btn.btn-theme.effect.brown {
  border: 2px solid var(--theme-brown);
}
.btn.btn-theme.effect.brown:before {
  background: var(--theme-dark-brown);
}
.btn.btn-theme.effect.brown:after {
  background: var(--theme-brown);
}
.btn.btn-theme.effect.brown:hover {
  border: 2px solid var(--theme-dark-brown);
}

.fligran-bg {
  position: fixed;
  opacity: 0.3;
  max-width: 160px;
  left: calc(50% - 80px);
}

.heading-left .title {
  color: var(--theme-secondary-color);
}
.heading-left .sub-title {
  background: unset;
  -webkit-background-clip: unset;
  -moz-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  display: inline-block;
}

nav.navbar.bootsnav .attr-nav {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  min-height: 90px;
}
nav.navbar.bootsnav .attr-nav a {
  margin-top: 0;
  color: #fff;
}
nav.navbar.bootsnav .attr-nav a:hover {
  color: #fff !important;
}
nav.navbar.bootsnav .attr-nav a.btn-theme-border {
  color: var(--theme-main-color);
}
nav.navbar.bootsnav .attr-nav ul {
  margin: 0 0 0 50px;
}
nav.navbar.bootsnav .attr-nav .mobile-btn .mobile-img-btn {
  display: block;
  max-width: 30px;
  top: 0;
}
nav.navbar.bootsnav .attr-nav .mobile-btn .mobile-img-btn.dark-btn {
  display: none;
}
nav.navbar.bootsnav .attr-nav .side-menu span {
  background: var(--theme-main-color);
}
nav.navbar.bootsnav .attr-nav .mobile-btn {
  color: var(--theme-main-color);
}
nav.navbar.bootsnav .navbar-header .navbar-brand .logo {
  transition: all 0.3s;
}
nav.navbar.bootsnav .navbar-header .navbar-brand .logo-dark {
  display: none !important;
}
nav.navbar.bootsnav .navbar-header .navbar-brand .logo-light {
  display: block !important;
}
nav.navbar.bootsnav .custom-navbar {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-height: 90px;
  float: right;
}
nav.navbar.bootsnav .custom-navbar .nav-item {
  padding: 0 15px;
}
nav.navbar.bootsnav .custom-navbar .nav-item > .nav-link {
  /*color: var(--theme-main-color);*/
  color: var(--theme-secondary-color);
  font-weight: 300;
  font-size: 16px;
  border: none !important;
}
nav.navbar.bootsnav .custom-navbar .nav-item > .nav-link i {
  color: var(--theme-secondary-color);
  margin-left: 6px;
  font-weight: 300;
}
nav.navbar.bootsnav .custom-navbar .nav-item.dropdown > a {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-between;
}
nav.navbar.bootsnav .custom-navbar .nav-item.dropdown .dropdown-menu {
  width: auto;
}
nav.navbar.bootsnav .custom-navbar .nav-item.dropdown:hover > .dropdown-menu {
  display: block;
}
nav.navbar.bootsnav .custom-navbar .nav-item.dropdown:hover > .dropdown-menu .dropdown-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 300 !important;
}
nav.navbar.bootsnav .custom-navbar .nav-item.dropdown:hover > .dropdown-menu .dropdown-item.dropdown .dropdown-menu {
  width: auto;
  left: 100%;
}
nav.navbar.bootsnav .custom-navbar .nav-item.dropdown:hover > .dropdown-menu .dropdown-item.dropdown:hover > .dropdown-menu {
  display: block;
}
nav.navbar.bootsnav .custom-navbar .nav-item.dropdown:hover > .dropdown-menu .dropdown-item:active {
  background-color: var(--theme-main-color);
}
nav.navbar.bootsnav .custom-navbar .nav-item.dropdown:hover > .dropdown-menu .dropdown-item:active a {
  color: #fff;
  border: none;
}
nav.navbar.bootsnav .custom-navbar .nav-item.dropdown:hover > .dropdown-menu .dropdown-item.active {
  background-color: var(--theme-main-color);
}
nav.navbar.bootsnav .custom-navbar .nav-item.dropdown:hover > .dropdown-menu .dropdown-item.active a {
  color: #fff;
  border: none;
}
nav.navbar.bootsnav .side {
  right: -320px;
  width: 320px;
  padding: 40px 20px;
  background-color: var(--theme-light-brown);
}
nav.navbar.bootsnav .side .widget {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: 100%;
}
nav.navbar.bootsnav .side .widget img {
  max-width: 220px;
}
nav.navbar.bootsnav .side .custom-mobile-navbar {
  width: 100%;
  margin-bottom: 30px;
}
nav.navbar.bootsnav .side .custom-mobile-navbar .navbar-nav {
  padding: 0;
}
nav.navbar.bootsnav .side .custom-mobile-navbar .navbar-nav .nav-item {
  padding: 0 10px;
}
nav.navbar.bootsnav .side .custom-mobile-navbar .navbar-nav .nav-item > .nav-link {
  color: var(--theme-secondary-color);
  font-weight: 300;
}
nav.navbar.bootsnav .side .custom-mobile-navbar .navbar-nav .nav-item > .nav-link i {
  color: var(--theme-secondary-color);
  font-weight: 300;
}
nav.navbar.bootsnav .side .custom-mobile-navbar .navbar-nav .nav-item.dropdown > a {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-between;
}
nav.navbar.bootsnav .side .custom-mobile-navbar .navbar-nav .nav-item.dropdown .mobile-dropdown-menu {
  width: auto;
  display: none;
}
nav.navbar.bootsnav .side .custom-mobile-navbar .navbar-nav .nav-item.dropdown.active > .mobile-dropdown-menu {
  display: block;
  /*padding-left: 10px;*/
}
nav.navbar.bootsnav .side .custom-mobile-navbar .navbar-nav .nav-item.dropdown.active > .mobile-dropdown-menu .dropdown-item {
  padding: 5px 10px;
  background: transparent;
}
nav.navbar.bootsnav .side .custom-mobile-navbar .navbar-nav .nav-item.dropdown.active > .mobile-dropdown-menu .dropdown-item a {
  font-size: 16px;
  font-weight: 300;
  padding: 0px;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-wrap: auto;
}
nav.navbar.bootsnav .side .custom-mobile-navbar .navbar-nav .nav-item.dropdown.active > .mobile-dropdown-menu .dropdown-item.dropdown .mobile-dropdown-menu {
  width: auto;
  left: 100%;
}
nav.navbar.bootsnav .side .custom-mobile-navbar .navbar-nav .nav-item.dropdown.active > .mobile-dropdown-menu .dropdown-item.dropdown.active > .mobile-dropdown-menu {
  display: block;
}
nav.navbar.bootsnav .side .custom-mobile-navbar .navbar-nav .nav-item.dropdown.active > .mobile-dropdown-menu .dropdown-item:active {
  background-color: var(--theme-main-color);
}
nav.navbar.bootsnav .side .custom-mobile-navbar .navbar-nav .nav-item.dropdown.active > .mobile-dropdown-menu .dropdown-item:active a {
  color: #fff;
  border: none;
}
nav.navbar.bootsnav .side .close-side {
  top: 0;
}
nav.navbar.bootsnav .side.on {
  right: 0;
}

nav.navbar.bootsnav.no-background .navbar-header .navbar-brand .logo-light {
  display: none !important;
}
nav.navbar.bootsnav.no-background .navbar-header .navbar-brand .logo-dark {
  display: block !important;
}
nav.navbar.bootsnav.no-background .custom-navbar .nav-item > .nav-link {
  color: #fff;
}
nav.navbar.bootsnav.no-background .custom-navbar .nav-item > .nav-link i {
  color: #fff;
}
nav.navbar.bootsnav.no-background .attr-nav .mobile-btn {
  color: #fff;
}
nav.navbar.bootsnav.no-background .attr-nav .mobile-btn .mobile-img-btn {
  display: block;
}
nav.navbar.bootsnav.no-background .attr-nav .mobile-btn .mobile-img-btn.light-btn {
  display: none;
}
nav.navbar.bootsnav.no-background .attr-nav .side-menu span {
  background: #fff;
}

.banner-area.inc-video .box-table {
  padding-top: 90px;
}
.banner-area.inc-video .box-table .content {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
}
.banner-area.inc-video .box-table .content img {
  max-width: 200px;
  object-fit: contain;
  margin: 20px 0;
}
.banner-area.inc-video .box-table .content h2 {
  font-size: 50px;
  color: #fff;
}
.banner-area.inc-video .box-table .content h4 {
  text-transform: none;
  color: #fff;
  font-size: 25px;
  line-height: 35px;
  font-weight: 200;
  margin-bottom: 10px;
}
.banner-area.inc-video .box-table .content h4 .title-thin {
  display: block;
  font-style: italic;
}
.banner-area.inc-video .box-table .content h4 .title-bold {
  font-weight: 500;
}
.banner-area.inc-video .box-table .content p {
  color: #fff;
  font-size: 20px;
}

.thumb-services-area .services-items .single-item .item {
  padding: 60px 40px;
}
.thumb-services-area .services-items .single-item .item .info .img-icon {
  display: inline-block;
  margin-bottom: 30px;
  color: #ffffff;
  height: 90px;
  width: 90px;
  background: var(--theme-purple-gradient-two);
  text-align: center;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  transition: all 0.35s ease-in-out;
  padding: 15px;
}
.thumb-services-area .services-items .single-item .item .info .img-icon img {
  width: 100%;
  object-fit: contain;
  transition: all 0.35s ease-in-out;
  filter: brightness(10);
}
.thumb-services-area .services-items .single-item .item .info ul {
  min-height: 172px;
}
.thumb-services-area .services-items .single-item .item .info ul li a {
  text-align: left;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.thumb-services-area .services-items .single-item .item:hover ul li {
  color: #fff;
}
.thumb-services-area .services-items .single-item .item:hover .img-icon {
  background: #fff;
}
.thumb-services-area .services-items .single-item .item:hover .img-icon img {
  filter: none;
}

.about-us-area {
  position: relative;
  background-color: var(--theme-secondary-color);
}
.about-us-area .section-bg-div {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 50%;
  height: 100%;
  background-image: url("../img/upload/slider1_1.jpg");
  background-size: cover;
  background-position: center;
}
.about-us-area .thumb {
  padding: 0px;
  position: relative;
  z-index: 1;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.about-us-area .thumb p {
  color: #fff;
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 40px;
}
.about-us-area .thumb h2 {
  font-weight: 600;
  font-size: 45px;
  color: #ffffff !important;
  margin: 0 !important;
  position: relative !important;
  background: none !important;
  padding: 0 !important;
  line-height: 1.1 !important;
  border-radius: unset !important;
  top: 0;
  bottom: 0;
}
.about-us-area .thumb h3 {
  font-weight: 200;
  margin-bottom: 10px;
  font-size: 50px;
  font-style: italic;
  color: var(--theme-main-color);
}
.about-us-area .thumb h4 {
  font-weight: 400 !important;
  font-size: 35px;
  font-style: italic;
  color: var(--theme-main-color);
  margin-top: 10px;
}
.about-us-area .thumb:after {
  display: none;
}
.about-us-area .info h2 {
  font-size: 30px;
}
.about-us-area .info ul li {
  font-weight: 300 !important;
  font-size: 18px;
}
.about-us-area .info.col-lg-6 {
  padding-left: 100px;
}

.about-us-area.inner-section {
  background-color: #fff;
}
.about-us-area.inner-section .thumb {
  min-height: 400px;
}
.about-us-area.inner-section .thumb p {
  color: var(--theme-main-color) !important;
}
.about-us-area.inner-section .thumb h2 {
  color: var(--theme-main-color) !important;
}
.about-us-area.inner-section .thumb:after {
  display: none;
}
.about-us-area.inner-section .info p {
  font-size: 18px;
}
.about-us-area.inner-section ul {
  text-align: center;
  text-align: -webkit-center;
}
.about-us-area.inner-section ul li {
  display: table !important;
  text-align: left;
}
.about-us-area.inner-section .second-column ul li {
  font-style: italic;
}
.about-us-area.inner-section .program-wrapper {
  border-radius: 10px;
  border: 1px solid #efefef;
  box-shadow: -0.083333333in 0.5pc 1.125pc -7px rgba(25, 42, 70, 0.13);
  transition: all 0.2s ease-in-out;
  background-color: #fff;
}
.about-us-area.inner-section .program-wrapper .program-img img {
  max-width: 247px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.about-us-area.inner-section.left {
  background-color: var(--theme-light-brown);
}
.about-us-area.inner-section.left .section-bg-div {
  left: 0;
  background-image: url("../img/upload/slider1_1.jpg");
  background-position: left;
}
.about-us-area.inner-section.left .info {
  text-align: right;
}
.about-us-area.inner-section.left .info p {
  text-align: right;
}

.about-style-seven-area {
  background: var(--theme-light-brown);
}
.about-style-seven-area .thumb img {
  border-radius: unset;
  border: none;
}
.about-style-seven-area .video {
  bottom: -70px;
}

.about-style-seven-area.cta-section h2 {
  font-size: 60px;
  line-height: 75px;
}

.testimonials-area .item {
  padding: 20px 30px 0 30px;
}
.testimonials-area .item::after {
  left: 20px;
  top: 0;
  opacity: 0.2;
  font-size: 40px;
  line-height: 50px;
  color: var(--theme-secondary-color);
}
.testimonials-area .item p {
  font-size: 18px;
  line-height: 22px;
  display: inline;
}
.testimonials-area .item .provider img {
  height: 40px;
  width: 40px;
  margin-right: 15px;
}
.testimonials-area .item .provider .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.testimonials-area .item .provider .content h4 {
  font-size: 16px;
  line-height: 16px;
}
.testimonials-area .item .provider .content span {
  font-size: 12px;
  line-height: 12px;
}

.callback-section .callback-inner {
  background: var(--theme-main-color);
  background-image: var(--theme-purple-gradient-four);
  border-radius: 25px;
  position: relative;
  padding: 0 50px;
  z-index: 2;
}
.callback-section .callback-inner .callback-image {
  margin: -110px 0;
}
.callback-section .callback-inner .callback-content {
  font-family: "Poppins", sans-serif;
  padding: 75px 0;
  color: #fff;
}
.callback-section .callback-inner .callback-content .sub-title {
  color: var(--theme-orange-color);
  font-weight: bold;
  font-size: 18px;
}
.callback-section .callback-inner .callback-content .section-title {
  color: #ffffff;
  font-weight: bold;
}
.callback-section .callback-inner .callback-content p {
  color: #fff;
}
.callback-section .callback-inner .callback-content .about-btn-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin: 0 -8px;
  padding-top: 10px;
}
.callback-section .callback-inner .callback-content .about-btn-list a {
  display: block;
  margin: 0 8px;
  width: 26%;
}
.callback-section .callback-inner .overlay {
  background-color: rgba(21, 21, 21, 0.75);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("https://demo.bosathemes.com/html/appa/assets/images/banner-pattern.png");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: transparent;
}

.contact-us-area .info ul li i {
  background: var(--theme-light-brown);
  color: #fff;
}

.contact-us-area .info ul li:nth-child(1) i {
  background: #c4c5b8;
}
.contact-us-area .info ul li:nth-child(2) i {
  background: var(--theme-secondary-color);
}
.contact-us-area .info ul li:nth-child(3) i {
  background: var(--theme-main-color);
}

.services-area {
  background-color: var(--theme-main-color);
}
.services-area .achivement .fun-fact {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.services-area .achivement .fun-fact .timer-icon {
  margin-bottom: 20px;
}
.services-area .achivement .fun-fact .timer-icon i {
  font-size: 50px;
  color: #fff;
}
.services-area .achivement .fun-fact .timer-icon img {
  max-width: 35px;
  object-fit: contain;
}
.services-area .achivement .fun-fact .counter {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}
.services-area .achivement .fun-fact .counter .timer {
  font-size: 40px;
  color: #fff;
  font-weight: 600;
}
.services-area .achivement .fun-fact .counter .operator {
  font-size: 40px;
  margin-left: 5px;
  color: #fff;
}
.services-area .achivement .fun-fact .medium {
  font-weight: 300;
  font-size: 18px;
  text-align: center;
  color: #fff;
}

/* --- Paid Membership Page --- */
.membership-section .membership_title {
  float: left;
  width: 100%;
}
.membership-section .membership_des {
  float: left;
  width: 100%;
}
.membership-section .membership_des p {
  font-size: 15px;
  margin-top: 10px !important;
  line-height: 22px;
  margin-bottom: 20px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: #686f7a;
  text-align: left;
}
.membership-section .membership__left {
  float: left;
}
.membership-section .membership__left h2 {
  font-size: 22px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px !important;
  color: var(--theme-main-color);
  text-align: left;
  line-height: 30px;
  max-width: 200px;
}
.membership-section .membership__right {
  float: right;
}
.membership-section .membership__right img {
  height: 100px;
}
.membership-section .membership_bg {
  position: relative;
  background: #fff;
  width: 100%;
  float: left;
  padding: 30px 25px;
  border-radius: 3px;
  border: 1px solid #efefef;
  box-shadow: -0.083333333in 0.5pc 1.125pc -7px rgba(25, 42, 70, 0.13);
  transition: all 0.2s ease-in-out;
}
.membership-section .membership_bg .membership-bg-icon {
  position: absolute;
  top: 38px;
  right: 20px;
  width: 90px;
  height: auto;
  object-fit: contain;
  opacity: 0.2;
}
.membership-section .membership_bg .membership-bg-icon.small-icon {
  width: 60px;
}
.membership-section .memmbership_price {
  font-size: 22px;
  margin-bottom: 10px !important;
  line-height: 26px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: #778c4a;
  text-align: left;
}
.membership-section .memmbership_old_price {
  font-size: 18px;
  margin-bottom: 0px !important;
  line-height: 24px;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  color: #6f6f6f;
  text-align: left;
  text-decoration-line: line-through;
}
.membership-section .membership_faq_bg {
  background: #fff;
  width: 100%;
  float: left;
  padding: 0 30px 10px;
  border-radius: 3px;
  border: 1px solid #efefef;
  box-shadow: -0.083333333in 0.5pc 1.125pc -7px rgba(25, 42, 70, 0.13);
  transition: all 0.2s ease-in-out;
  margin-top: 45px;
  margin-bottom: 28px;
}
.membership-section .save_price {
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  /*color: #686f7a;*/
  color: var(--theme-main-color);
  text-align: left;
  line-height: 26px;
}
.membership-section .panel-title-1 a {
  font-weight: 400;
  color: #000;
}
.membership-section .chck_icon {
  color: var(--theme-green-color);
  font-size: 135%;
}
.membership-section .chck_icon_1 {
  color: #686f7a;
  margin-right: 10px;
  font-size: 135%;
  float: left;
}
.membership-section .prmb_btn {
  margin-top: 20px;
  width: 100%;
  height: 50px;
  border-radius: 3px;
  border: 0;
  background: #778c4a;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
}
.membership-section .prmb_btn:hover {
  background: #333;
  color: #fff;
}
.membership-section .st_title5 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 0;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: #333;
}
.membership-section .small-package .membership_des p {
  font-size: 15px;
  margin-top: 10px !important;
  line-height: 22px;
  margin-bottom: 20px;
}
.membership-section .small-package .membership__left h2 {
  font-size: 18px;
  margin-bottom: 15px !important;
  line-height: 24px;
}
.membership-section .small-package .membership_bg {
  background: #fff;
  width: 100%;
  float: left;
  padding: 30px;
  border-radius: 3px;
  border: 1px solid #efefef;
  box-shadow: -0.083333333in 0.5pc 1.125pc -7px rgba(25, 42, 70, 0.13);
  transition: all 0.2s ease-in-out;
}
.membership-section .small-package .package-label {
  margin-bottom: 30px;
}

/* --- Paid Membership Checkout Page --- */
/*===================================*
  10. START FOOTER
*===================================*/
.overlay_bg_85 {
  position: relative;
}

.overlay_bg_85:before {
  background-color: rgba(68, 17, 56, 0.85);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

footer {
  position: relative;
  z-index: 1;
}

.footer_logo {
  margin-bottom: 15px;
}

.footer_desc p {
  font-size: 16px;
  font-weight: 200;
}

.top_footer {
  padding: 80px 0;
}

.widget_links li {
  padding: 0 0 7px;
}

.widget_links li:last-child {
  padding-bottom: 0;
}

.widget_links li a {
  color: #636363;
  font-size: 16px;
  font-weight: 200;
  position: relative;
}

.widget_links.links_style1 li a:hover,
.widget_links.links_style2 li a:hover {
  padding-left: 5px;
}

.contact_info > li > i {
  font-size: 16px;
  vertical-align: middle;
  max-width: 30px;
  width: 100%;
  text-align: center;
  margin-right: 5px;
}

.contact_info li:first-child {
  margin-top: 0;
}

.contact_info > li {
  margin-top: 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.contact_info li span {
  margin-right: 10px;
  color: #778c4a;
  max-width: 20px;
  text-align: center;
  width: 100%;
}

.contact_info_style1 li span {
  background-color: transparent;
  box-shadow: none;
  margin-right: 5px;
  padding-left: 0;
}

.contact_info i + *,
.contact_info span + * {
  font-size: 16px;
  font-weight: 200;
  color: #636363;
  margin: 0;
}

.contact_info.contact_info_style2 li span {
  font-size: 16px;
  background-color: #778c4a;
  box-shadow: none;
  border-radius: 100%;
  max-width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  position: relative;
  margin: 0px 15px 0px 0px;
  width: 100%;
}

footer .widget_title {
  font-size: 16px;
  letter-spacing: 0.5px;
}

footer .widget_title2 {
  font-family: "Open Sans", Arial, Tahoma, sans-serif !important;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 30px;
}

footer .widget_title3 {
  font-family: "Open Sans", Arial, Tahoma, sans-serif !important;
  font-size: 16px;
  font-weight: 600;
  margin: 25px 0;
}

.widget_title {
  margin-bottom: 30px;
  text-transform: uppercase;
  position: relative;
}

.bottom_footer {
  padding: 30px 0;
  position: relative;
}

.footer_link li {
  display: inline-block;
  position: relative;
}

.footer_link li::before {
  content: "";
  height: 12px;
  width: 1px;
  background-color: #fff;
  display: inline-block;
  vertical-align: middle;
}

.footer_link li:first-child:before {
  content: normal;
}

.footer_link li a {
  font-size: 14px;
  padding: 0 10px;
  color: #888;
}

.footer_link li a:hover,
.widget_links li a:hover,
.contact_info li a:hover {
  color: #778c4a;
}

.footer_nav {
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.copyright {
  font-size: 14px;
}

.footer_dark h1, .footer_dark h2, .footer_dark h3, .footer_dark h4, .footer_dark h5, .footer_dark h6,
.footer_dark p,
.footer_dark .contact_info li i,
.footer_dark .contact_info i + *,
.footer_dark .contact_info span + *,
.footer_dark .widget_links li a,
.footer_dark .footer_link li a,
.footer_dark .post_content h6 a {
  color: #fff !important;
}

.footer_dark .widget_links li a:hover,
.footer_dark .footer_link li a:hover,
.footer_dark .post_content h6 a:hover,
.footer_dark .contact_info a:hover {
  color: #778c4a !important;
}

.border_top_transparent {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/*===================================*
  10. END FOOTER
*===================================*/
.breadcrumb-area {
  padding: 220px 0 50px 0;
}

.terms-policy-area.corporate-page p {
  font-size: 18px;
}
.terms-policy-area.corporate-page p span {
  font-size: 24px;
}
.terms-policy-area.corporate-page ul li span i {
  position: relative;
}

.services-area.corporate-page .services-items .single-item .item .info .img-icon {
  display: inline-block;
  margin-bottom: 30px;
  color: #ffffff;
  height: 90px;
  width: 90px;
  background: var(--theme-purple-gradient-two);
  text-align: center;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  transition: all 0.35s ease-in-out;
  padding: 15px;
}
.services-area.corporate-page .services-items .single-item .item .info .img-icon img {
  width: 100%;
  object-fit: contain;
  transition: all 0.35s ease-in-out;
  filter: brightness(10);
}
.services-area.corporate-page .services-items .single-item .item::after {
  background: var(--theme-purple-gradient-two);
}
.services-area.corporate-page .services-items .single-item .item:hover .img-icon {
  background: #fff;
}
.services-area.corporate-page .services-items .single-item .item:hover .img-icon img {
  filter: none;
}
.services-area.corporate-page .services-items .single-item .item:hover::after {
  background: var(--theme-purple-gradient-two);
}

.services-style-seven-area {
  background-size: cover;
  background-position: left top;
}
.services-style-seven-area .services-style-seven .item {
  background: #7d3a6e;
  display: flex;
  /*margin-bottom: 30px;*/
  padding: 30px 20px;
  transition: all 0.35s ease-in-out;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.services-style-seven-area .services-style-seven .item .img-icon {
  position: relative;
  transition: all 0.35s ease-in-out;
  width: 55px;
  padding-right: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.services-style-seven-area .services-style-seven .item .img-icon img {
  width: 100%;
  object-fit: contain;
  transition: all 0.35s ease-in-out;
  filter: brightness(10);
}
.services-style-seven-area .services-style-seven .item i {
  display: inline-block;
  font-size: 50px;
  min-width: 70px;
  color: #fff;
  transition: all 0.35s ease-in-out;
}
.services-style-seven-area .services-style-seven .item h4 {
  margin-bottom: 5px;
}
.services-style-seven-area .services-style-seven .item p {
  margin: 0;
  transition: all 0.35s ease-in-out;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
}
.services-style-seven-area .services-style-seven .item a {
  transition: all 0.35s ease-in-out;
  color: #fff;
}
.services-style-seven-area .services-style-seven .item:hover .img-icon img {
  /*filter: none;*/
}
.services-style-seven-area .services-style-seven .item:hover:after {
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.services-style-seven-area .services-style-seven .item:before {
  position: absolute;
  bottom: -10px;
  right: -50px;
  content: "";
  background: url(assets/img/shape/20.png);
  height: 60px;
  width: 70px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.35s ease-in-out;
  opacity: 0;
}
.services-style-seven-area .services-style-seven .item:after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 70%;
  width: 100%;
  transition: all 0.35s ease-in-out;
  background: var(--theme-secondary-color);
  z-index: -1;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
}
.services-style-seven-area .services-style-seven:nth-child(2) .item {
  background: #799c4b;
}
.services-style-seven-area .services-style-seven:nth-child(2) .item:hover:after {
  background: var(--theme-dark-green);
}
.services-style-seven-area .services-style-seven:nth-child(3) .item {
  background: #844b9d;
}
.services-style-seven-area .services-style-seven:nth-child(3) .item:hover:after {
  background: var(--theme-dark-purple);
}
.services-style-seven-area .services-style-seven:nth-child(4) .item {
  background: #4ea9a9;
}
.services-style-seven-area .services-style-seven:nth-child(4) .item:hover:after {
  background: var(--theme-dark-blue-color);
}
.services-style-seven-area .services-style-seven:nth-child(5) .item {
  background: #d76d3c;
}
.services-style-seven-area .services-style-seven:nth-child(5) .item:hover:after {
  background: var(--theme-dark-orange);
}
.services-style-seven-area .services-style-seven:nth-child(6) .item {
  background: #743766;
}
.services-style-seven-area .services-style-seven:nth-child(6) .item:hover:after {
  background: var(--theme-main-color);
}

.team-area .team-items .item .info {
  padding: 20px 0px;
}
.team-area .team-items .item .info h4 {
  font-size: 18px;
}
.team-area .team-items .item .share-icon {
  width: auto;
  min-width: 45px;
}
.team-area .team-items .item .share-icon.text-icon {
  background-color: var(--theme-main-color);
  padding: 0 20px;
}
.team-area .team-items .item .thumb a {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 10px 15px;
}

.gallery-area .gallery-items.colums-6 .pf-item {
  padding: 5px;
}

.redirect-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
.redirect-area .profile-box {
  text-align: center;
}
.redirect-area .profile-box img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  object-position: top;
  border-radius: 100px;
  margin-bottom: 20px;
}
.redirect-area .profile-box h1 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0px;
  color: var(--theme-main-color);
}
.redirect-area .profile-box p {
  font-size: 14px;
  color: var(--theme-main-color);
}
.redirect-area .menu-items .info ul.redirect-menu {
  text-align: center;
  margin-bottom: 15px !important;
  list-style: none;
}
.redirect-area .menu-items .info ul.redirect-menu li {
  margin-bottom: 15px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.redirect-area .menu-items .info ul.redirect-menu li a {
  color: var(--theme-main-color);
  font-weight: 400;
  background: rgba(255, 255, 255, 0.7);
  padding: 10px 20px;
  border-radius: 30px;
}
.redirect-area .menu-items .info .widget {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: 100%;
}
.redirect-area .menu-items .info .widget ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.redirect-area .menu-items .info .widget ul li {
  display: inline-block;
  font-size: 15px;
  margin-bottom: 15px;
}
.redirect-area .menu-items .info .widget ul li a {
  color: var(--theme-main-color);
  background-color: rgba(83, 73, 55, 0.2);
  display: inline-block;
  font-weight: 600;
  height: 45px;
  line-height: 45px;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0;
  text-align: center;
  width: 45px;
  border-radius: 50%;
  border: 1px solid #e7e7e7;
}
.redirect-area .section-bg-div {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  height: 100vh;
  background-image: url("../img/upload/slider1_1.jpg");
  background-size: cover;
  background-position: right;
}

.position-absolute.center-shape {
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.position-absolute.center-shape img {
  width: 350px;
}

blockquote {
  position: relative;
  padding: 0 40px;
}
blockquote:before {
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  content: "\f10d";
  top: 0;
  left: 0;
  color: #d8d8d8;
  font-weight: bold;
}
blockquote:after {
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  content: "\f10e";
  bottom: 0;
  right: 0;
  font-weight: bold;
  color: var(--theme-main-color);
  font-weight: bold;
  opacity: 0.2;
}
blockquote.bigg {
  font-size: 35px;
  line-height: 50px;
  font-weight: 200;
}
blockquote i {
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  blockquote.bigg {
    font-size: 30px;
    line-height: 40px;
    font-weight: 200;
    text-align: center;
  }
}

blockquote.bigg-icon:before {
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  content: "\f10d";
  font-weight: bold;
  top: 0;
  left: 0;
  opacity: 0.15;
  font-size: 100px;
  color: var(--theme-main-color);
}
@media screen and (max-width: 767px) {
  blockquote.bigg-icon:before {
    font-size: 70px;
  }
}
blockquote.bigg-icon:after {
  content: none;
}

.about-us-area .about-content img {
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .about-us-area .about-content img {
    width: 50%;
  }
}

@media screen and (min-width: 1181px) and (max-width: 1440px) {
  nav.navbar.bootsnav .navbar-brand {
    padding: 20px 0px;
    margin-right: 0;
  }
  nav.navbar.bootsnav .attr-nav {
    margin-left: 30px;
  }
  nav.navbar.bootsnav .custom-navbar .nav-item {
    padding: 0 10px;
  }
}
@media screen and (min-width: 1181px) and (max-width: 1300px) {
  nav.navbar.bootsnav .attr-nav {
    margin-left: 15px;
  }
  nav.navbar.bootsnav .custom-navbar .nav-item {
    padding: 0 5px;
  }
}
@media screen and (max-width: 1180px) {
  .default-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .default-padding.bottom-less {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  h2.title {
    font-size: 28px;
  }
  .heading-left {
    margin-bottom: 20px;
  }
  .heading-left .title {
    font-size: 28px;
    font-weight: 400;
  }
  nav.navbar.bootsnav.menu-center .navbar-brand img {
    height: 30px !important;
  }
  nav.navbar.bootsnav.menu-center .attr-nav {
    position: relative;
    justify-content: flex-end;
    right: 0;
    margin-left: 0;
    min-height: 60px;
  }
  nav.navbar.bootsnav.menu-center .attr-nav .mobile-btn {
    line-height: 15px;
    font-size: 24px;
  }
  nav.navbar.bootsnav.menu-center .attr-nav ul {
    margin: 0 0 0 20px;
  }
  nav.navbar.bootsnav.menu-center .attr-nav .side-menu {
    /*margin-left: 0;*/
  }
  nav.navbar.bootsnav.menu-center .navbar-header {
    float: left;
    padding: 0;
  }
  nav.navbar.bootsnav.menu-center .navbar-header .navbar-brand {
    padding: 18px 15px;
    padding-left: 0 !important;
  }
  nav.navbar.bootsnav.menu-center .navbar-header .navbar-toggle {
    display: none;
  }
  nav.navbar.bootsnav.menu-center .navbar-collapse.collapse {
    display: block !important;
    max-height: 400px;
  }
  nav.navbar.bootsnav.menu-center .navbar-collapse.collapse ul {
    text-align: left !important;
  }
  nav.navbar.bootsnav.menu-center .side {
    width: 300px;
  }
  nav.navbar.bootsnav.menu-center.no-background {
    background-color: transparent;
    box-shadow: none !important;
  }
  .banner-area.inc-video.top-pad-50 .carousel-inner {
    margin-top: -28px;
  }
  .banner-area.inc-video.top-pad-50 .carousel-inner .content {
    padding-top: 30px;
    padding-bottom: 50px;
    align-items: center !important;
    justify-content: flex-end;
    text-align: center !important;
    min-height: 500px;
  }
  .banner-area.inc-video.top-pad-50 .carousel-inner .content h4 {
    text-align: center;
  }
  .banner-area.inc-video.top-pad-50 .carousel-inner .content h2 {
    font-size: 24px;
    text-align: center;
  }
  .banner-area.inc-video.top-pad-50 .carousel-inner .content img {
    max-width: 100px;
    margin: 15px 0 10px 0;
  }
  .banner-area.inc-video.top-pad-50 .carousel-inner .thumb {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .banner-area.inc-video.top-pad-50 .carousel-inner .thumb .shape-thumb {
    padding: 90px 0 0 0;
    min-height: 270px;
    display: block;
  }
  .banner-area.inc-video.top-pad-50 .carousel-inner .thumb .shape-thumb img {
    max-width: 100%;
    max-height: 280px;
  }
  .banner-area.inc-video.top-pad-50 .carousel-indicator {
    left: 3px;
  }
  .banner-area.inc-video.top-pad-50 .carousel-indicator .carousel-indicators.right {
    padding: 10px;
  }
  .about-us-area {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .about-us-area .about-items .thumb {
    min-height: unset;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px !important;
  }
  .about-us-area .about-items .thumb h2 {
    position: relative !important;
    left: 0;
    bottom: 0;
    display: block;
    font-size: 26px !important;
    padding-top: 5px !important;
  }
  .about-us-area .about-items .thumb p {
    margin-bottom: 0px;
    font-size: 18px;
  }
  .about-us-area .about-items .info {
    padding-left: 15px;
  }
  .about-us-area .about-items .info ul {
    margin-bottom: 15px !important;
  }
  .about-us-area .about-items .info ul li {
    margin-top: 0px !important;
    font-weight: 300 !important;
    font-size: 18px;
    text-align: center;
  }
  .about-us-area .about-items .info ul.text-left li {
    text-align: left;
  }
  .about-us-area .section-bg-div {
    /*top: 105px;*/
    width: 100%;
  }
  .services-style-seven-area {
    padding-top: 35px;
  }
  .services-style-seven-area .heading-left {
    margin-bottom: 35px;
  }
  .services-style-seven-area .services-style-seven .item {
    margin-bottom: 0px;
    padding: 25px;
    border-radius: 0px;
  }
  .services-style-seven-area .services-style-seven .item .img-icon {
    padding-right: 0;
  }
  .services-style-seven-area .services-style-seven .item .img-icon img {
    max-width: 55px;
    margin-bottom: 15px;
  }
  .services-style-seven-area .services-style-seven .item .info h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .services-style-seven-area .services-style-seven .item .info p {
    font-size: 18px;
    line-height: 18px;
    min-height: 45px;
  }
  .testimonials-area .testimonials-carousel .item {
    padding: 80px 15px 0 15px;
  }
  .testimonials-area .testimonials-carousel .item::after {
    font-size: 50px;
  }
  .testimonials-area .owl-nav {
    position: absolute;
    display: flex !important;
    right: auto !important;
    justify-content: space-between;
    width: 100%;
    left: 0;
    bottom: 0px !important;
  }
  .about-us-area.inner-section .section-bg-div {
    position: relative;
    /*top: -20px;*/
    width: 100%;
    min-height: 550px;
  }
  .about-us-area.inner-section .thumb {
    min-height: auto;
    align-items: flex-start;
  }
  .about-us-area.inner-section .thumb h2 {
    display: block !important;
    bottom: 0px;
    left: 0;
    font-size: 26px !important;
  }
  .about-us-area.inner-section .thumb h4 {
    font-size: 20px;
  }
  .about-us-area.inner-section .info h2 {
    font-size: 26px !important;
  }
  .about-us-area.inner-section .info h4 {
    font-size: 20px;
  }
  .about-us-area.inner-section .info p {
    text-align: left !important;
    font-size: 15px;
  }
  .about-us-area.inner-section.left .info {
    text-align: left;
  }
  .about-style-seven-area .about-style-seven .thumb {
    margin-bottom: 90px !important;
  }
  .about-style-seven-area .about-style-seven h2 {
    font-size: 28px;
    /*line-height: 20px;*/
    line-height: 35px;
    margin-bottom: 15px;
  }
  .about-style-seven-area .about-style-seven ul li {
    line-height: 20px;
    margin-bottom: 15px;
  }
  .about-style-seven-area .about-style-seven ul li:after {
    top: 0;
  }
  .about-style-seven-area .about-style-seven .video {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    min-width: 230px;
    bottom: -60px !important;
  }
  .about-style-seven-area .about-style-seven .video i {
    height: 50px;
    width: 50px;
    line-height: 50px;
    font-size: 25px;
  }
  .about-style-seven-area .about-style-seven .video span {
    display: inline-block;
    font-weight: 300;
    color: #766b59;
  }
  .about-style-seven-area .about-style-seven .video a {
    display: block;
  }
  footer {
    background-position: center left !important;
  }
  .thumb-services-area .services-items .single-item {
    margin-bottom: 15px;
  }
  .thumb-services-area .services-items .single-item .item {
    padding: 20px;
  }
  .thumb-services-area .services-items .single-item .item .img-icon {
    height: 60px !important;
    width: 60px !important;
    margin-bottom: 10px !important;
    background: #fff !important;
  }
  .thumb-services-area .services-items .single-item .item .img-icon img {
    filter: none !important;
  }
  .thumb-services-area .services-items .single-item .item h4 {
    color: #fff;
  }
  .thumb-services-area .services-items .single-item .item ul li a {
    color: #fff;
  }
  .thumb-services-area .services-items .single-item .item .bottom a {
    color: #fff;
  }
  .thumb-services-area .services-items .single-item .item::before {
    opacity: 0.7;
    height: 100%;
  }
  .thumb-services-area .services-items .single-item .item::after {
    opacity: 0;
  }
  .thumb-services-area .services-items .single-item:nth-child(1) .item::before {
    background: #0d0b07;
  }
  .thumb-services-area .services-items .single-item:nth-child(2) .item::before {
    background: #6b5a3c;
  }
  .thumb-services-area .services-items .single-item:nth-child(3) .item::before {
    background: #a0753b;
  }
  .thumb-services-area .services-items .single-item:nth-child(4) .item::before {
    background: #686e3f;
  }
  .breadcrumb-area {
    padding: 160px 0 20px 0;
  }
  .breadcrumb-area h1 {
    font-size: 30px;
    margin-bottom: 5px;
  }
  .breadcrumb-area .breadcrumb li {
    font-size: 12px;
    padding: 0 12px;
  }
  .team-area .team-items .single-item {
    margin-bottom: 10px;
  }
  .team-area .item .info {
    padding: 10px 5px 0 !important;
  }
  .team-area .item .info h4 {
    font-weight: 400;
    font-size: 14px !important;
  }
  .team-area .item .info span {
    line-height: 18px;
  }
  .team-single-area .team-content-top .right-info h2 {
    font-weight: 600;
    font-size: 26px;
  }
  .team-single-area .team-content-top .right-info .thumb {
    float: left;
    max-width: 130px;
    margin-right: 15px;
  }
  .team-single-area .team-content-top .right-info span {
    line-height: 20px;
    margin-bottom: 50px;
  }
  .top_footer {
    padding: 30px 0;
  }
}
@media screen and (max-width: 991px) {
  .about-us-area.inner-section .program-wrapper {
    border-radius: 10px;
    border: 1px solid #efefef;
    box-shadow: -0.083333333in 0.5pc 1.125pc -7px rgba(25, 42, 70, 0.13);
    transition: all 0.2s ease-in-out;
  }
  .about-us-area.inner-section .program-wrapper .program-img img {
    max-width: 100%;
    border-radius: 10px;
  }
}
@media screen and (max-width: 767px) {
  .btn-md {
    padding: 10px !important;
  }
  nav.navbar.bootsnav.menu-center .attr-nav {
    position: relative;
    justify-content: flex-end;
    right: 0;
    margin-left: 0;
    min-height: 60px;
  }
  nav.navbar.bootsnav.menu-center .attr-nav .btn {
    display: none;
  }
  nav.navbar.bootsnav.menu-center .attr-nav .mobile-btn {
    line-height: 15px;
    font-size: 24px;
  }
  nav.navbar.bootsnav.menu-center .attr-nav ul {
    margin: 0 0 0 20px;
  }
  nav.navbar.bootsnav.menu-center .navbar-header {
    float: left;
    padding: 0;
  }
  nav.navbar.bootsnav.menu-center .navbar-header .navbar-brand {
    padding: 10px 15px;
    padding-left: 0 !important;
  }
  nav.navbar.bootsnav.menu-center .navbar-header .navbar-brand img {
    height: 40px !important;
  }
  nav.navbar.bootsnav.menu-center .navbar-header .navbar-toggle {
    display: none;
  }
  nav.navbar.bootsnav.menu-center .navbar-collapse.collapse {
    display: block !important;
    max-height: 500px;
  }
  nav.navbar.bootsnav.menu-center .navbar-collapse.collapse ul {
    text-align: left !important;
  }
  nav.navbar.bootsnav.menu-center .side {
    width: 280px;
  }
  nav.navbar.bootsnav.menu-center.no-background {
    background-color: transparent;
    box-shadow: none !important;
  }
  .banner-area.inc-video.top-pad-50 .carousel-inner {
    margin-top: 0px;
  }
  .banner-area.inc-video.top-pad-50 .carousel-inner .box-table {
    padding-top: 75px;
  }
  .banner-area.inc-video.top-pad-50 .carousel-inner .box-table .content {
    padding-top: 10px;
    padding-bottom: 45px;
    align-items: center !important;
    justify-content: flex-end;
    text-align: center !important;
    min-height: 247px;
  }
  .banner-area.inc-video.top-pad-50 .carousel-inner .box-table .content h4 {
    text-align: center;
    line-height: 28px;
    margin-bottom: 5px;
  }
  .banner-area.inc-video.top-pad-50 .carousel-inner .box-table .content h4 .title-bold {
    font-size: 20px;
  }
  .banner-area.inc-video.top-pad-50 .carousel-inner .box-table .content h2 {
    font-size: 22px;
    text-align: center;
  }
  .banner-area.inc-video.top-pad-50 .carousel-inner .box-table .content p {
    font-size: 18px;
    line-height: 28px;
  }
  .banner-area.inc-video.top-pad-50 .carousel-inner .box-table .content .btn {
    margin-top: 12px;
  }
  .banner-area.inc-video.top-pad-50 .carousel-inner .box-table .content img {
    max-width: 100px;
    margin: 15px 0 10px 0;
  }
  .banner-area.inc-video.top-pad-50 .carousel-inner .box-table .thumb {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .banner-area.inc-video.top-pad-50 .carousel-inner .box-table .thumb .shape-thumb {
    padding: 0;
    min-height: 360px;
    width: auto;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
  }
  .banner-area.inc-video.top-pad-50 .carousel-inner .box-table .thumb .shape-thumb img {
    max-width: 100%;
    max-height: 360px;
    object-fit: cover;
    object-position: bottom;
    width: 100%;
  }
  .banner-area.inc-video.top-pad-50 .carousel-inner .box-table .thumb .shape-thumb.mobile-full {
    width: 100%;
  }
  .banner-area.inc-video.top-pad-50 .carousel-indicator {
    left: 3px;
  }
  .banner-area.inc-video.top-pad-50 .carousel-indicator .carousel-indicators.right {
    padding: 10px;
  }
  .about-us-area {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .about-us-area .about-items .thumb {
    min-height: unset;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px !important;
  }
  .about-us-area .about-items .thumb h2 {
    position: relative !important;
    left: 0;
    bottom: 0;
    display: block;
    font-size: 26px !important;
    padding-top: 5px !important;
  }
  .about-us-area .about-items .thumb h3 {
    font-size: 24px !important;
    margin-bottom: 0px !important;
  }
  .about-us-area .about-items .thumb h4 {
    font-size: 24px !important;
  }
  .about-us-area .about-items .thumb p {
    margin-bottom: 0px;
    font-size: 18px;
  }
  .about-us-area .about-items .info {
    padding-left: 15px;
  }
  .about-us-area .about-items .info ul {
    margin-bottom: 15px !important;
  }
  .about-us-area .about-items .info ul li {
    margin-top: 0px !important;
  }
  .about-us-area .section-bg-div {
    /*top: 105px;*/
    width: 100%;
    margin-bottom: 30px;
  }
  .services-style-seven-area {
    padding-top: 35px;
  }
  .services-style-seven-area .heading-left {
    margin-bottom: 35px;
  }
  .services-style-seven-area .services-style-seven .item {
    margin-bottom: 0px;
    padding: 25px 10px;
    border-radius: 0px;
    flex-direction: column;
    align-content: center;
    align-items: center;
  }
  .services-style-seven-area .services-style-seven .item .img-icon {
    padding-right: 0;
    justify-content: center;
    align-content: center;
    align-items: center;
  }
  .services-style-seven-area .services-style-seven .item .img-icon img {
    max-width: 45px;
    margin-bottom: 15px;
  }
  .services-style-seven-area .services-style-seven .item .info h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .services-style-seven-area .services-style-seven .item .info p {
    font-size: 12px;
    line-height: 16px;
    min-height: 32px;
    margin-bottom: 10px;
  }
  .testimonials-area .testimonials-carousel .item {
    padding: 30px 15px 0 15px;
  }
  .testimonials-area .testimonials-carousel .item::after {
    left: 40px;
    top: 5px;
    font-size: 50px;
  }
  .testimonials-area .owl-nav {
    display: flex !important;
    right: auto !important;
    justify-content: space-between;
    width: 100%;
    left: 0;
    bottom: 0px !important;
  }
  .about-us-area.inner-section .section-bg-div {
    position: relative;
    /*top: -20px;*/
    width: 100%;
    min-height: 275px;
  }
  .about-us-area.inner-section .thumb {
    min-height: auto;
    align-items: flex-start;
  }
  .about-us-area.inner-section .info h2 {
    font-size: 26px !important;
    margin-bottom: 10px;
  }
  .about-us-area.inner-section .info h3 {
    font-size: 24px;
  }
  .about-us-area.inner-section .info h4 {
    font-size: 20px;
  }
  .about-us-area.inner-section .info p {
    text-align: left !important;
    font-size: 18px;
  }
  .about-us-area.inner-section.first-section {
    padding-top: 0 !important;
  }
  .about-us-area.inner-section.left .info {
    text-align: left;
  }
  .about-style-seven-area {
    padding: 20px 0 !important;
  }
  .about-style-seven-area .about-style-seven .thumb {
    margin-bottom: 20px !important;
  }
  .about-style-seven-area .about-style-seven h2 {
    font-size: 26px;
    /*line-height: 20px;*/
    line-height: 35px;
    margin-bottom: 15px;
  }
  .about-style-seven-area .about-style-seven ul li {
    line-height: 20px;
    margin-bottom: 15px;
  }
  .about-style-seven-area .about-style-seven ul li:after {
    top: 0;
  }
  .about-style-seven-area .about-style-seven .video {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    min-width: 230px;
    bottom: -60px !important;
  }
  .about-style-seven-area .about-style-seven .video i {
    height: 50px;
    width: 50px;
    line-height: 50px;
    font-size: 25px;
  }
  .about-style-seven-area .about-style-seven .video span {
    display: inline-block;
    font-weight: 300;
    color: #766b59;
  }
  .about-style-seven-area .about-style-seven .video a {
    display: block;
  }
  .about-style-seven-area.cta-section h2 {
    font-size: 30px;
    line-height: 35px;
    text-align: center;
  }
  footer {
    background-position: center left !important;
  }
  .thumb-services-area .services-items .single-item {
    margin-bottom: 15px;
  }
  .thumb-services-area .services-items .single-item .item {
    padding: 20px;
  }
  .thumb-services-area .services-items .single-item .item .img-icon {
    height: 60px !important;
    width: 60px !important;
    margin-bottom: 10px !important;
    background: #fff !important;
  }
  .thumb-services-area .services-items .single-item .item .img-icon img {
    filter: none !important;
  }
  .thumb-services-area .services-items .single-item .item h4 {
    color: #fff;
  }
  .thumb-services-area .services-items .single-item .item ul li a {
    color: #fff;
  }
  .thumb-services-area .services-items .single-item .item .bottom a {
    color: #fff;
  }
  .thumb-services-area .services-items .single-item .item::before {
    opacity: 0.7;
    height: 100%;
  }
  .thumb-services-area .services-items .single-item .item::after {
    opacity: 0;
  }
  .thumb-services-area .services-items .single-item:nth-child(1) .item::before {
    background: #0d0b07;
  }
  .thumb-services-area .services-items .single-item:nth-child(2) .item::before {
    background: #6b5a3c;
  }
  .thumb-services-area .services-items .single-item:nth-child(3) .item::before {
    background: #a0753b;
  }
  .thumb-services-area .services-items .single-item:nth-child(4) .item::before {
    background: #686e3f;
  }
  .breadcrumb-area {
    padding: 160px 0 20px 0;
  }
  .breadcrumb-area h1 {
    font-size: 30px;
    margin-bottom: 5px;
  }
  .breadcrumb-area .breadcrumb li {
    font-size: 12px;
    padding: 0 12px;
  }
  .team-area .team-items .single-item {
    margin-bottom: 10px;
  }
  .team-area .item .info {
    padding: 10px 5px 0;
  }
  .team-area .item .info h4 {
    font-weight: 400;
    font-size: 16px;
  }
  .team-area .item .info span {
    line-height: 18px;
  }
  .team-single-area .team-content-top .right-info h2 {
    font-weight: 600;
    font-size: 26px;
  }
  .team-single-area .team-content-top .right-info .thumb {
    float: left;
    max-width: 130px;
    margin-right: 15px;
  }
  .team-single-area .team-content-top .right-info span {
    line-height: 20px;
    margin-bottom: 50px;
  }
  .top_footer {
    padding: 30px 0;
  }
  .services-area {
    padding: 0px;
  }
  .services-area .achivement {
    border: 1px solid #6e0a57;
    padding: 15px;
  }
  .services-area .achivement .fun-fact .counter .timer {
    font-size: 30px;
  }
  .membership-section .membership_bg .membership-bg-icon {
    top: 38px;
    right: 20px;
    width: 90px;
  }
  .membership-section .membership_bg .membership-bg-icon.small-icon {
    width: 90px;
  }
}

/*# sourceMappingURL=custom.css.map */
