@charset "UTF-8";
 
 
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@300;400;500;600;700;800&display=swap");
:root {
  --font-body: "Roboto", sans-serif;
  --font-title: "Spartan", sans-serif;
  --font-awesome: "Font Awesome 5 Free";
  --color-primary: #e68b47;
  --color-primary-rgb: 41, 98, 255;
  --color-white: #fff;
  --color-white-rgb: 255, 255, 255;
  --color-black: #000;
  --color-black-rgb: 0, 0, 0;
  --color-border: #e5e5e5;
  --color-border-rgb: 229, 229, 229;
  --color-cat-normal: #7a7e83;
  --color-cat-normal-rgb: 122, 126, 131;
  --color-meta-normal: #a5a6aa;
  --color-meta-normal-rgb: 165, 166, 170;
  --color-gray: #f7f7f7;
  --color-gray-rgb: 247, 247, 247;
  --color-body: #6c6f72;
  --color-body-rgb: 108, 111, 114;
  --color-body-bg: #fff;
  --border-radius-xs: 4px;
  --border-radius-sm: 6px;
  --border-radius-md: 10px;
  --border-radius-lg: 15px;
  --border-radius-xl: 20px;
  --color-fb: #1559c2;
  --color-tw: #1ea9e9;
  --color-in: #3f729b;
  --color-vm: #2cc0eb;
  --color-pn: #3b5998;
  --color-wh: #43ce13;
  --color-dr: #f65e97;
  --color-dw: #ff6b10;
  --color-yu: #ed1d25;
}

/* pulseShadow */
/* pulseScale */
/*read more button animation*/
@-webkit-keyframes toBottomFromTop {
  49% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toBottomFromTop {
  49% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
/*Import Fonts */
/* ===========================
// Typography
==============================*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: #6c6f72;
  background-color: var(--color-body-bg);
}

main {
  position: relative;
  background-color: var(--color-white);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  z-index: 2;
}

/*==== heading fonts setup ====*/
h3 {
  color: var(--color-black);
  font-family: var(--font-title);
  line-height: 1.4;
  font-weight: 700;
}

h3 {
  font-size: 1.424rem;
}

/*==== margin & paddings ====*/

.mt--10 {
  margin-top: 10px !important;
}

/*==== gutter ====*/

.gutter-30 {
  margin-top: -15px !important;
  margin-bottom: -15px !important;
}
.gutter-30 > div {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.gutter-24 {
  margin-top: -12px !important;
  margin-bottom: -12px !important;
}

.gutter-24 > div {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.gutter-15 {
  margin-top: -7.5px !important;
  margin-bottom: -7.5px !important;
}

.gutter-15 > li {
  padding-top: 7.5px !important;
  padding-bottom: 7.5px !important;
}

/*==== text color & bg color ====*/

/*============================ 
// Global styles
=============================*/
html {
  overflow-x: hidden !important;
  width: 100%;
  height: 100%;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

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

a:link,
a:visited,
a:focus {
  text-decoration: none;
  outline: 0;
}

a {
  color: var(--color-primary);
  display: inline-block;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}
a:hover {
  text-decoration: none;
  color: var(--color-primary);
}

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

input,
:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

section {
  position: relative;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1320px;
  }
}
/*==================================
//  flaticon
==================================*/
[class^=flaticon-]:before,
[class^=flaticon-]:after {
  margin-left: 0;
}

/*======================
// back-to-top
========================*/
#back-to-top {
  font-size: 1rem;
  color: var(--color-white);
  background: #50a057;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 5px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99;
  display: none;
  cursor: pointer;
  overflow: hidden;
}
#back-to-top:hover {
  color: var(--color-white);
  background: #0034c2;
}
#back-to-top:hover i {
  -webkit-animation: toBottomFromTop 0.5s forwards;
          animation: toBottomFromTop 0.5s forwards;
}

@keyframes toBottomFromTop {
  49% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
/*===================================
// section-heading
==================================*/

/*rt-section-heading-style-2*/

/*=============================
// Utility Class
=============================*/

.insta-gallery .galleryitem > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.rt-post-cat-normal {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  font-weight: 500;
  color: var(--color-cat-normal);
  display: inline-block;
  margin-bottom: 10px;
}

.travel, .food {
  font-size: 0.75rem;
  color: var(--color-white);
  font-weight: 500;
  padding: 0 8px;
  line-height: 2;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  height: 24px;
  display: inline-block;
  margin-bottom: 20px;
}
.travel:hover, .food:hover {
  color: var(--color-white);
}

.food {
  background-color: #ffaf25;
}

.travel {
  background-color: #ea4d5e;
}

/*gap*/

/*button*/

/*read more button*/

/*===========================
// post meta
===========================*/

.rt-meta {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  color: var(--color-meta-normal);
}
.rt-meta .icon {
  margin-right: 2px;
  font-size: 0.875rem;
}
.topbar .rt-meta .icon {
  color: var(--color-white);
}

/*===========================
// template-search
===========================*/
.template-search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5f6fa;
  -webkit-transform: translate(0px, -100%) scale(0, 0);
          transform: translate(0px, -100%) scale(0, 0);
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}
.template-search .search-form {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.template-search .search-form input[type=search] {
  width: 60%;
  color: var(--color-black);
  font-size: 40px;
  text-align: left;
  border: none;
  border-bottom: 2px solid var(--color-primary);
  margin: 0 auto;
  padding: 10px 0;
  outline: none;
  background-color: transparent;
}
.template-search .search-form .search-btn {
  padding: 28px 60px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  font-weight: 600;
  -webkit-transform: translateX(-150px) translateY(-10px);
          transform: translateX(-150px) translateY(-10px);
  background-color: transparent;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.template-search .search-form .search-btn i {
  margin-left: 0;
}
.template-search .search-form .search-btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.template-search .search-form input::-webkit-input-placeholder {
  color: #cfcfcf;
}
.template-search .search-form input::-moz-placeholder {
  color: #cfcfcf;
}
.template-search .search-form input:-moz-placeholder {
  color: #cfcfcf;
}
.template-search .search-form input:-ms-input-placeholder {
  color: #cfcfcf;
}
.template-search .close {
  position: fixed;
  top: 15px;
  right: 20px;
  color: var(--color-black);
  border: none;
  opacity: 0.3;
  visibility: visible;
  padding: 3px 15px 5px;
  font-size: 70px;
  font-weight: 300;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: transparent;
}
.template-search .close:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  outline: none;
}
.template-search .close:hover {
  opacity: 1;
  background-color: transparent;
}

/*===============================
//  button
================================*/
/*shop button*/

/*=======================
// Off canvas menu
========================*/
.offcanvas-menu-wrap {
  max-width: 395px;
  width: 100%;
  position: fixed;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 9999;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  overflow-y: scroll;
  -ms-overflow-style: none;
  -moz-scrollbar-width: none;
}
.offcanvas-menu-wrap::-webkit-scrollbar {
  display: none;
}
@media (max-width: 575px) {
  .offcanvas-menu-wrap {
    max-width: 320px;
  }
	
}
.offcanvas-menu-wrap .offcanvas-content {
  height: 100vh;
  padding: 50px;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}
.offcanvas-menu-wrap .offcanvas-content .offcanvas-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
  padding: 0;
}
.offcanvas-menu-wrap .offcanvas-content .offcanvas-header .close-btn {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-white);
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.offcanvas-menu-wrap .offcanvas-content .offcanvas-header .close-btn a {
  color: var(--color-white);
}
.offcanvas-menu-wrap .offcanvas-content .offcanvas-widget {
  margin-bottom: 40px;
}
.offcanvas-menu-wrap .offcanvas-content .offcanvas-widget:last-child {
  padding-bottom: 40px;
}
.offcanvas-menu-wrap .offcanvas-content .offcanvas-widget .offcanvas-widget-title {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 20px;
}
.offcanvas-menu-wrap .offcanvas-content .offcanvas-widget p {
  line-height: 24px;
}
.offcanvas-menu-wrap .offcanvas-content .offcanvas-widget p:last-child {
  margin-bottom: 0;
}
.offcanvas-menu-wrap .offcanvas-content .offcanvas-widget .contact-info-list {
  margin-top: -5px;
}
.offcanvas-menu-wrap .offcanvas-content .offcanvas-widget .contact-info-list .widget-list-item {
  color: #646464;
  margin-bottom: 20px;
  padding-left: 25px;
  position: relative;
  line-height: 1.5;
}
.offcanvas-menu-wrap .offcanvas-content .offcanvas-widget .contact-info-list .widget-list-item .list-icon {
  color: var(--color-primary);
  position: absolute;
  left: 0;
  top: 4px;
}
.offcanvas-menu-wrap .offcanvas-content .offcanvas-widget .contact-info-list .widget-list-item a {
  padding-left: 0;
  line-height: 1.5;
}
.offcanvas-menu-wrap .offcanvas-content .offcanvas-widget .contact-info-list .widget-list-item a::after {
  display: none;
}
.offcanvas-menu-wrap .offcanvas-content .offcanvas-widget .contact-info-list .widget-list-link {
  color: #646464;
}

/*=======================================
// Off canvas cart menu
========================================*/
.cart-menu-btn {
  border: none;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  border-radius: 0;
}
.cart-menu-btn i {
  margin-top: 3px;
}
.cart-menu-btn:focus {
  outline: none;
}
.cart-menu-btn .menu-btn-icon {
  padding: 10px;
  display: block;
  position: relative;
  text-align: center;
  border-radius: 0;
  width: 60px;
  height: 50px;
}
@media (max-width: 767px) {
  .cart-menu-btn .menu-btn-icon {
    width: 45px;
    height: 40px;
  }
}

.cart-menu-btn.menu-close-btn .menu-btn-icon {
  height: 15px;
  width: 15px;
  font-size: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #aeafb1;
  background-color: #ffffff;
  color: #7b858a;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cart-menu-btn.menu-close-btn .menu-btn-icon :hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.cart-header .cart-title {
  font-size: 20px;
  line-height: 1;
  color: var(--color-black);
  font-weight: 700;
}

.cart-wrap {
  height: 100vh;
  padding: 40px 35px;
  max-width: 395px;
  width: 100%;
  position: fixed;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  top: 0;
  left: 0;
  background: #fff;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
  z-index: 999;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 767px) {
  .cart-wrap {
    padding: 20px 30px;
  }
}
.cart-wrap .cart-content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.cart-wrap .cart-content .cart-header {
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--color-border);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cart-wrap .cart-content .cart-items {
  margin-bottom: 40px;
  width: 100%;
}
.cart-wrap .cart-content .cart-items li {
  margin-right: 0;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 15px;
  margin-bottom: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cart-wrap .cart-content .cart-items li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.cart-wrap .cart-content .cart-items li .item-figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  border-radius: 4px;
}
.cart-wrap .cart-content .cart-items li .item-figure img {
  border-radius: 4px;
}
.cart-wrap .cart-content .cart-items li .item-figure .item-dismiss {
  position: absolute;
  z-index: 2;
  left: -7px;
  top: -7px;
}
.cart-wrap .cart-content .cart-items li .item-figure .item-dismiss a {
  height: 15px;
  width: 15px;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #aeafb1;
  background-color: #ffffff;
  color: #7b858a;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cart-wrap .cart-content .cart-items li .item-figure .item-dismiss a:hover {
  color: var(--color-primary);
}
.cart-wrap .cart-content .cart-items li .item-description {
  margin-left: 20px;
  padding-right: 30px;
}
.cart-wrap .cart-content .cart-items li .item-description .item-main-title {
  display: block;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 5px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}
.cart-wrap .cart-content .cart-items li .item-description .item-main-title a {
  color: var(--color-black);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}
.cart-wrap .cart-content .cart-items li .item-description .item-main-title:hover a {
  color: var(--color-primary);
}
.cart-wrap .cart-content .cart-items li .item-description .item-amount .item-quantity {
  margin-right: 5px;
}
.cart-wrap .cart-content .cart-items li .item-description .item-amount .item-price {
  margin-left: 5px;
}
.cart-wrap .cart-content .total-amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}
.cart-wrap .cart-content .total-amount .title {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-black);
}
.cart-wrap .cart-content .total-amount .amount {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
}
.cart-wrap .cart-content .cart-footer {
  width: 100%;
}
.cart-wrap .cart-content .action-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.wrapper {
  position: relative;
  z-index: 1;
}
.wrapper:before {
  content: "";
  background-color: rgba(0, 0, 0, 0);
  height: 100%;
  width: 0;
  top: 0;
  right: 0;
  position: absolute;
  z-index: 2;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

/*==========================
//  common pair elements
=========================*/

/*===============================
//  rt-pagination
==============================*/

/*============================
Modal
=============================*/

/*======================================
// pre-loader
=====================================*/
#preloader {
  background: url("../../media/neeon.gif") rgba(255, 255, 255, 0.99) no-repeat scroll center center;
  height: 100%;
  left: 0;
  overflow: visible;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999999;
}

/*========================================
// tooltip overwrite
==========================================*/

/*==================================
 // theme-swithcer-box
 ================================*/
.theme-switch-box-wrap {
  position: fixed;
  right: 12px;
  top: 320px;
  z-index: 100;
}

.theme-switch-box {
  display: -ms-grid;
  display: grid;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #e68d4a;
  padding: 8px 6px;
  border-radius: 1.5rem;
}
.theme-switch-box__theme-status {
  color: var(--color-white);
  line-height: 1;
  text-align: center;
}
.theme-switch-box__label {
  width: 18px;
  height: 36px;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  border-radius: 1.5rem;
  overflow: hidden;
}
.theme-switch-box__main {
  position: absolute;
  background: #50a057;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  border-radius: 1.5rem;
}
.theme-switch-box__main::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background-color: #fff;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%) translateY(3px);
          transform: translateX(-50%) translateY(3px);
  border-radius: 100%;
  -webkit-transition: 1s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition: 1s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  border-radius: 1.5rem;
}
.theme-switch-box__input {
  display: none;
}
.theme-switch-box__input:checked + .theme-switch-box__main::before {
  top: 17px;
  -webkit-transition: 0.5s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition: 0.5s cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/*==============================
// rt-header
==============================*/
.rt-header {
  position: relative;
  z-index: 9;
  background-color: var(--color-white);
}

@media (max-width: 991px) {
  .rt-header {
    display: none;
  }
}
.site-branding a {
  display: table-cell;
  vertical-align: middle;
}
.site-branding .light-logo {
  display: none;
}

/*============================
// topbar
============================*/
.topbar {
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #292929;
}

.rt-trending-style-1 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.rt-treding-slider1 {
  height: 40px;
  text-align: left;
  margin: 0;
}

.rt-trending .trending-title {
  font-size: 0.8125rem;
  color: var(--color-white);
  font-weight: 300;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  position: relative;
  padding-right: 12px;
  margin-right: 10px;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.rt-trending .trending-title::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 17px;
  background-color: var(--color-white);
}
.rt-trending .trending-title .icon {
  font-size: 0.75rem;
  background-image: linear-gradient(45deg, #a8602a, #e68b47);
  color: var(--color-white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 6px;
}

.rt-topbar-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.rt-top-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding-left: 17px;
  margin-left: 15px;
}
.rt-top-social::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 17px;
  background-color: #474747;
}
.rt-top-social .follow {
  font-size: 0.8125rem;
  text-transform: uppercase;
  margin-right: 12px;
  color: #fff;
  display: inline-block;
}
.rt-top-social li {
  margin-right: 12px;
}
.rt-top-social li:last-child {
  margin-right: 0;
}
.rt-top-social a {
  font-size: 0.8125rem;
  color: #bebdbd;
}
.rt-top-social a:hover {
  color: #e68b47;
}
@media (max-width: 1199px) {
  .rt-top-social {
    padding-left: 0;
    margin-left: 0;
  }
  .rt-top-social::after {
    display: none;
  }
}

.navbar-wrap {
  background-color: var(--color-white);
}
.main-menu__nav ul li {
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-right: 17px;
}
.main-menu__nav ul li.active > a {
  color: #e68b47;
}
.main-menu__nav ul li:last-child {
  margin-right: 0;
}
.main-menu__nav ul li:hover .main-menu__dropdown {
  opacity: 1;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  visibility: visible;
  top: 100%;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
.main-menu__nav ul li > a {
  font-size: 0.9375rem;
  color: var(--color-black);
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding: 39px 6px;
}
.main-menu__nav ul li > a::before {
  position: absolute;
  content: "";
  height: 4px;
  background: #e68b47;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.51, 0.92, 0.24, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.51, 0.92, 0.24, 1);
  transition: transform 0.4s cubic-bezier(0.51, 0.92, 0.24, 1);
  transition: transform 0.4s cubic-bezier(0.51, 0.92, 0.24, 1), -webkit-transform 0.4s cubic-bezier(0.51, 0.92, 0.24, 1);
}
.main-menu__nav ul li:hover > a {
  color: #e68b47;
}
.main-menu__nav ul li:hover > a::before {
  background: #e68b47;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.main-menu__nav ul li ul {
  visibility: hidden;
  -webkit-transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
  transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
  opacity: 0;
  z-index: 100;
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  margin: 0;
  padding: 10px 0;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
  text-align: left;
  padding: 15px 0;
  border-radius: 0 0 5px 5px;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: 0 0 0;
          transform-origin: 0 0 0;
}
.main-menu__nav ul li ul li {
  display: block;
  padding: 0 10px;
  margin: 0;
}
.main-menu__nav ul li ul li a {
  display: block;
  padding: 8px 10px;
  color: #656567;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
}
.main-menu__nav ul li ul li a::after {
  float: right;
}
.main-menu__nav ul li ul li a::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 0px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: 0;
  background: #e68b47;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}
.main-menu__nav ul li ul li:hover a::before {
  height: 11px;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}
.main-menu__nav_sub > a::after {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  display: inline-block;
  padding-left: 6px;
  font-size: 12px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.main-menu__nav_sub:hover > a::after {
  -webkit-transform: rotate(180deg) translateX(-6px);
          transform: rotate(180deg) translateX(-6px);
}

/*=====================================
//  Mobile menu
======================================*/
.offscreen-navigation .menu > li {
  border-bottom: 1px solid #e9e9e9;
}
.offscreen-navigation .menu > li:last-child {
  border-bottom: 0;
}
.offscreen-navigation .menu > li > a {
  background-color: #f3f3f3;
  font-size: 16px;
  padding: 12px 30px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.offscreen-navigation .menu > li > a:hover {
  background-color: #ffffff;
}
.offscreen-navigation .sub-menu {
  display: none;
  background: none;
}
.offscreen-navigation .sub-menu li.menu-item-has-children > a::after, .offscreen-navigation .sub-menu li.menu-item-has-children > a::before {
  right: 40px;
}
.offscreen-navigation .sub-menu li a {
  border-top: 1px solid #f6f6f6;
  padding: 10px 40px;
  font-size: 15px;
  background: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.offscreen-navigation .sub-menu li a:hover {
  background-color: rgba(var(--color-primary-rgb), 0.05);
}
.offscreen-navigation .sub-menu li .sub-menu li a {
  padding: 7px 50px;
}
.offscreen-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.offscreen-navigation ul li > a {
  display: block;
  position: relative;
  color: #000000;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.offscreen-navigation ul li > a:hover {
  color: #e68b47;
}
.offscreen-navigation ul li.menu-item-has-children > a:after {
  color: #999999;
  content: "";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  right: 20px;
  position: absolute;
  font-size: 12px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.offscreen-navigation ul li.menu-item-has-children > a:before {
  color: #999999;
  content: "";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  right: 20px;
  position: absolute;
  font-size: 12px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.rt-slide-nav {
  position: absolute;
  background: #fff;
  width: 100%;
  left: 0;
  display: none;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  -webkit-box-shadow: 0 1px 3px 0 rgba(var(--color-black-rgb), 0.2);
          box-shadow: 0 1px 3px 0 rgba(var(--color-black-rgb), 0.2);
  top: 100%;
  z-index: 99;
}

.rt-mobile-header {
  position: relative;
  z-index: 999;
}
@media (min-width: 992px) {
  .rt-mobile-header {
    display: none;
  }
}

.mobile-top-bar {
  border-bottom: 1px solid var(--color-border);
  display: inline-block;
  width: 100%;
}

.mobile-top-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2px;
  padding: 12px 15px 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.mobile-top-list .icon {
  color: var(--color-primary);
}
.mobile-top-list li {
  margin-right: 18px;
}
.mobile-top-list li:last-of-type {
  margin-right: 0;
}

.mobile-menu-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 6px 15px;
  border-bottom: 1px solid rgba(81, 81, 81, 0.15);
}
.mobile-menu-bar .logo img {
  max-width: 120px;
}

body .sidebarBtn {
  display: block;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
body .sidebarBtn .bar {
  background: #000000;
  height: 2px;
  width: 30px;
  display: block;
  margin-bottom: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
body .sidebarBtn .bar:nth-child(2), body .sidebarBtn .bar:nth-child(3) {
  width: 25px;
  margin-left: 5px;
}
body .sidebarBtn .bar:last-child {
  margin-bottom: 0;
}

/*================================
// banner
================================*/
.thumb-list::-scrollbar {
  width: 2px;
}
.thumb-list::-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px #2e3240;
          box-shadow: inset 0 0 5px #2e3240;
  border-radius: 10px;
}
.thumb-list::-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 15px;
}

/*inner banner breadcrumb*/

/*author-big-box-style-1*/

/*===============================
//  who we are
===============================*/

/*skill wrap layou t2*/

/*about-content-area-2*/

/*about-video-wrap-style-1*/

/*============================
// team-seciton-style-1
===========================*/

/*=============================
//  team-box-style-1
=============================*/

/*=============================
// rt-post
=============================*/
.rt-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.rt-post .post-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: var(--border-radius-xs);
  overflow: hidden;
  position: relative;
}
.rt-post .post-img img {
  border-radius: var(--border-radius-xs);
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.rt-post .post-content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.rt-post:hover .post-img img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
          transform: scale3d(1.1, 1.1, 1);
}

.post-title {
  color: var(--color-black);
}
.post-title a {
  color: inherit;
  display: inline;
  padding-bottom: 0;
  -webkit-transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), color-stop(98%, currentColor));
  background-image: linear-gradient(to bottom, currentColor 0%, currentColor 98%);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
}
.post-title:hover a {
  background-size: 100% 1px;
}

/*===========================
//  feature-section-style-1
=============================*/
.feature-section-style-1 {
  background-color: #FFFFFF;
  padding-top: 10px;
  padding-bottom: 10px;
  counter-reset: post-counter;
}

/*============================
// post-sm
=============================*/
.post-sm .post-content .post-title {
  font-size: 1rem;
}
.post-sm.style-1 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.post-sm.style-1 .post-img {
  border-radius: 50%;
  overflow: unset;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
}
.post-sm.style-1 .post-img::after {
  right: 0;
  top: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 3px solid #fff;
  background-color: #50a057;
  font-size: 0.75rem;
  color: #fff;
  counter-increment: post-counter;
  content: counter(post-counter);
  font-weight: 500;
}
.post-sm.style-1 .post-img img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.post-sm.style-1:hover .post-img img {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.post-sm .post-img {
  position: relative;
  height: auto;
}
.post-sm .post-img::after {
  content: "";
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}
.post-sm:hover .post-img::after {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/*============================
// rt-post-overlay
=============================*/
/*rt-post-overlay*/

/*post md*/

/*=====================================
//  Top stories
=====================================*/

/*rt-post-grid-xl*/

/*rt-post-grid*/

/*======================================
// whats-new-wrap-style-1
=====================================*/

/*post-wrap*/

/*post-wrap-style-3*/

/*===================================
// featured-post-style-4
===================================*/

/*====================================
// featured-middle-post-style-5
===================================*/

/*====================================
// featured-area-style-5
===================================*/

/*=========================================
//  most-popular-section-style-1
=========================================*/

/*=================================
// feature-section-style-6
==================================*/

/*news-feature-sec-gap*/

/*post-list-style-4*/

/*rt-post-list-style-4*/

/*rt-post-with-listing-style-4*/

/*====================================
// single post area
=======================================*/
/*main post */

/*thumb-post-area*/

/*author-box-style-1*/

/*pagination*/

/*single-post-banner*/

/*==============================
//  cat-slider-style-1
==============================*/

/*===========================================
// top-categories-grid-style-1
==========================================*/

/*=================================
// top-games-section-style-1
===============================*/

/*slidebar*/

/*subscribe-content*/

.rt-submit-btn {
  font-size: 0.875rem;
  color: var(--color-white);
  background-color: #50a057;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 3px;
  height: 53px;
  width: 100%;
  padding: 5px 20px;
  text-align: center;
  border: none;
  font-weight: 600;
  font-family: "Spartan", sans-serif;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}
.rt-submit-btn:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.rt-submit-btn:hover {
  color: var(--color-white);
  background-color: #0034c2;
}

/*rt-categories*/

/*top-headline-box-style-1*/

/*sidebar spacer*/
/*rt-social-style-2*/

/*tag-list*/

/*================================
// rt-ad-banner-style-1
=================================*/

/*======================================
// video-section-style-1
======================================*/

/*=======================================
// video-gallery-style-2
========================================*/

/*=======================================
// video-gallery-style-2
========================================*/

/*========================================
// ft-video-section-style-1
======================================*/

/*================================
//  subscribe-section-style-1
=================================*/
/*===============================
// subscribe-form-style-6
===============================*/

/*subscribe-section-area-style-2*/

/*=========================
//  contact-section-layout-1
=========================*/

/*===========================
//  Search Box
============================*/

/*comments-form-style-1*/

/*contact form style-1*/

/*rt-contact-form*/

/*contact-wrap-area-1*/

/*================================
 // Google maps
 =================================*/

/*================================
//  404
================================*/

/*===========================
// shop-box-style-1
===========================*/

/*================================
// Footer
=================================*/
.footer {
  background-color: #f0f2f5;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (min-width: 1400px) {
  .footer {
   
    bottom: 0;
  }
}

.footer-top {
  padding-top: 32px;
  padding-bottom: 35px;
}
@media (max-width: 991px) {
  .footer-top {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.footer-widget .logo {
  margin-bottom: 30px;
  margin-top: 3px;
}
.footer-widget .text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #a5a5a5;
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  .footer-widget .text {
    max-width: 88%;
    width: 100%;
  }
}button.payment {/* background: #ff0000; */border: none;padding: 10px 20px;
    width: 100%;
    margin: 0px;
    background: #148d00;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    border: none;
    border-radius: 0px;
    text-transform: uppercase;}
.footer-widget .footer-widget-title {
  position: relative;
  font-size: 1.25rem;
  color: var(--color-white);
  /* margin-bottom: 30px; */
  text-transform: capitalize;
}
.footer-widget .widget-list .widget-list-item {
  margin-bottom: 5px;
  line-height: 1;
display: inline-block;list-style: none;}
.footer-widget .widget-list .widget-list-item:last-child {
  margin-bottom: 0;
}
.footer-widget .widget-list .widget-list-link {
  color: #8f8f8f;
  position: relative;
  padding-right: 20px;
  display: inline-block;
  font-size: 0.9375rem;
}
.footer-widget .widget-list .widget-list-link::after {
  /* content: ""; */
  position: absolute;
  left: 0;
  top: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #a5a5a5;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}
.footer-widget .widget-list .widget-list-link:hover {
  color: var(--color-primary);
}
.footer-widget .widget-list .widget-list-link:hover::after {
  background-color: #e68d4a;
}

.footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer-social .social-item {
  margin-right: 4px;
}
.footer-social .social-item:last-child {
  margin-right: 0;
}
.footer-social .social-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #6c6f72;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 0.9375rem;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  overflow: hidden;
  position: relative;
  background-color: rgba(var(--color-white-rgb), 0.102);
}
.footer-social .social-link:hover {
  color: #FF9800;
  background-color:#0263e77;
}
.footer-social .social-link:hover i {
  -webkit-animation: toBottomFromTop 0.5s forwards;
          animation: toBottomFromTop 0.5s forwards;
}
.footer-social.style-2 .social-link {
  background-color: var(--color-black);
}
.footer-social.style-2 .social-link:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
}

.insta-gallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 90px 5px 90px 5px 90px;
  grid-template-columns: repeat(3, 90px);
  grid-gap: 5px;
}
.insta-gallery .galleryitem {
  overflow: hidden;
  position: relative;
  border-radius: var(--border-radius-xs);
}
.insta-gallery .galleryitem img {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-transition: all 1.5s ease-out;
  transition: all 1.5s ease-out;
  border-radius: var(--border-radius-xs);
}
.insta-gallery .galleryitem > a {
  display: block;
  position: relative;
  z-index: 4;
}
.insta-gallery .galleryitem > a::before {
  background-color: rgba(var(--color-black-rgb), 0.8);
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  border-radius: var(--border-radius-xs);
  z-index: 1;
}
.insta-gallery .galleryitem > a::after {
  content: "";
  position: absolute;
  z-index: 2;
  font-family: "Font Awesome 5 Brands";
  font-weight: 500;
  font-size: 18px;
  color: var(--color-white);
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.insta-gallery .galleryitem:hover img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
.insta-gallery .galleryitem:hover > a::before {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.insta-gallery .galleryitem:hover > a::after {
  visibility: visible;
  opacity: 1;
}

/*footer bottom*/
.footer-bottom {
  border-top: 1px solid #252525;
}

.footer-bottom-area {
  min-height: 100px;
  text-align: center;
}
@media (max-width: 991px) {
  .footer-bottom-area {
    min-height: 80px;
  }
}
.rt-section-heading.style-2 {
    font-size: 1.0625rem;
    text-transform: uppercase;
    margin-top: 0px;
}.rt-section-heading .rt-section-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--color-primary);
    display: inline-block;
}.rt-section-heading .rt-section-line {
    border: 1px solid var(--color-border);
    border-width: 1px 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: 4px;
}.rt-section-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 40px;
    margin-top: -3px;
    gap: 16px;
    font-size: 1.802rem;
}
.copyright-text {
  color: #cccccc;
}
.copyright-text a {
  color: #cccccc;
}
.copyright-text a:hover {
  color: var(--color-primary);
}.site-branding {
    width: 201px;
}
.carousel-item {
  height: 480px;
  min-height: 350px;
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}button.apply {padding: 5px 20px;width: 200px;margin: 48px 0px 0;background: #148d00;font-size: 17px;display: inline-block;font-weight: bold;color: #fff;float: left;border: 2px solid #fff;border: 3px solid #fff;border-radius: 30px;text-transform: uppercase;}
.awwards {padding: 0px 0 30px;background: #f58220;/* overflow: hidden; */display: inline-block;width: 100%;position: relative;}
.awwards h2 {font-size: 25px;color: #fff;text-transform: uppercase;padding-top: 30px;font-weight: bold;}
.awwards h4 { font-size: 25px;color: #fff;text-transform: uppercase;padding-top: 40px;font-weight: bold;}
.awwards h6 { font-size: 15px;color: #fff; }
.rt-post-overlay .post-img + .post-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    padding: 25px;
}.rt-post-overlay .post-img + .post-content a {
	color: #fff;    font-size: 1.25rem;line-height: 1.4;
    font-weight: 700;
}
.align-center{
	text-align: center;
}
.whats-new-style-1{
	background-color: #f7f7f7;
}
.rt-post-overlay{
	position: relative;
}.rt-post-overlay .post-img > a:first-of-type::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(59%, rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.8)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 59%, rgba(0, 0, 0, 0.8) 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-bottom-left-radius: var(--border-radius-xs);
  border-bottom-right-radius: var(--border-radius-xs);
}.rt-post-overlay .post-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    transition: all 1.5s ease-out;
    -webkit-transition: all 1.5s ease-out;
    -moz-transition: all 1.5s ease-out;
    -ms-transition: all 1.5s ease-out;
} 

.slick-initialized .slick-slide {
  margin-bottom: 0;
}

.slider-style-1 .slider-activation {
  position: relative;
}

.slider-style-1 .slider-activation.axil-slick-arrow .slide-arrow {
  position: absolute;
  left: 105px;
  bottom: 43px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-style-1 .slider-activation.axil-slick-arrow .slide-arrow {
    left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .slider-style-1 .slider-activation.axil-slick-arrow .slide-arrow {
    left: 0;
    bottom: 0;
  }
}
@media only screen and (min-width: 200px) and (max-width: 991px) {
.arrow-between-side .slide-arrow{
		left: 0px !important;
	}
	.arrow-between-side .slide-arrow.next-arrow{
		right: 0px !important;
		left: initial !important;
	}
  .slick-list{
    text-align:center
  }
	.col-xl-8.banner{
		padding: 0 !important;
	}
}


.slider-style-1 .slider-activation.axil-slick-arrow .slide-arrow.next-arrow {
  left: 175px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-style-1 .slider-activation.axil-slick-arrow .slide-arrow.next-arrow {
    left: 59px;
  }
}

@media only screen and (max-width: 767px) {
  .slider-style-1 .slider-activation.axil-slick-arrow .slide-arrow.next-arrow {
    left: 75px;
  }
}

.axil-slick-arrow .slide-arrow {
  border: 0 none;
  width: auto;
  outline: none;
  width: 50px;
  height: 50px;
  background: transparent;
  border: 1px solid var(--color-midgray);
  border-radius: 100%;
  z-index: 2;
}

.axil-slick-arrow .slide-arrow i {
  /* color: var(--color-gray); */
}

.axil-slick-arrow .slide-arrow:hover {
  background: var(--color-white);
  -webkit-box-shadow: var(--shadow-primary);
          box-shadow: var(--shadow-primary);
  border: 1px solid var(--color-white);
}

.axil-slick-arrow .slide-arrow:hover i {
  color: var(--color-primary);
}

.arrow-between-side .slide-arrow {
  position: absolute;
  left: -52px;
  top: 30%;
  color: #000;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  /* opacity: 0; */
}

.arrow-between-side .slide-arrow.next-arrow {
  left: auto;
  right: -42px;
}

.arrow-between-side:hover .slide-arrow {
  opacity: 1;
  left: -52px;
}

@media only screen and (max-width: 767px) {
  .arrow-between-side:hover .slide-arrow {
    left: 14px;
  }
}

.arrow-between-side:hover .slide-arrow.next-arrow {
  left: auto;
  right: -42px;
}

@media only screen and (max-width: 767px) {
  .arrow-between-side:hover .slide-arrow.next-arrow {
    right: 14px;
  }
}

.post-gallery-activation.axil-slick-arrow .slide-arrow {
  background: #fff;
  border: 1px solid #fff;
}

.post-gallery-activation.arrow-between-side .slide-arrow {
  left: 10px;
}

.post-gallery-activation.arrow-between-side .slide-arrow.next-arrow {
  left: auto;
  right: 10px;
}

.post-gallery-activation.arrow-between-side:hover .slide-arrow {
  left: 30px;
}

.post-gallery-activation.arrow-between-side:hover .slide-arrow.next-arrow {
  left: auto;
  right: 30px;
}

.post-list-view .post-gallery-activation.axil-slick-arrow .slide-arrow {
  background: #fff;
  border: 1px solid #fff;
  width: 30px;
  height: 30px;
  font-size: 14px;
}
.single-cat h5.title {font-size: 14px;text-align: center;font-weight: normal;color: #000;padding: 10px 10px;}
.slick-initialized .slick-slide {
  outline: none;
}
.footer-widget{
	width: 70%;
	float: left;
}
.footer-rt{
	width: 25%;
	float: right;
}
.payment a{
  color: #fff;
}
.apply a{
    color:white !important;
}
.box {
    width: 100%;
    background: #00b054;
    padding: 20px 40px;
}
.box h2 {
    text-align: left;
	color: #fff;
}
.box .btn-primary, .box .btn-primary:hover{
    width: 100%;
    background: #ff7a00;
    
}
 
.box  .form-control{
	background: none;border: 1px solid #ffffff57;color: #fff !important;
}.box  .form-control::placeholder{
	color: #fff
}
.post-img {
    
    overflow: hidden;
}.awwards.homepage:before {
    background: #505050;
    content: "";
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    top: 0;
    position: absolute;
    left: 38%;
    width: 80%;
    height: 100%;
}.awwards.homepage button.apply {
    margin: 0 !important;
}
.teams {
    background: #efef;
    padding: 10px;
    /* margin: 10px; */
    border: 10px solid #fff;
}

.teams h3, .team h3 {
    font-size: 18px;
    margin-top: 10px;
    font-family: var(--font-body);
}.team h2, .teams h2 {
    font-size: 16px;
    font-weight: 400;
    padding-bottom: 10px;
    color: #ff7a00;
}
.gallery {
    float: left;
    width: 10%;
}
.team p {
    width: 70%;
}main ul li {
     
    margin-left:20px;
    padding-bottom: 10px;
}
ul.list {
    margin-bottom: 30px;
}
.programstab.nav-tabs{
	    border-bottom: 1px solid #dedcfe !important;
}
.programstab.nav-tabs .nav-link.active{
	 border: 1px solid #dedcfe !important;
}
@media screen and (min-width:200px) and (max-width:684px) {
	.col-xl-3{
		display: inline-table !important;
		margin-bottom: 10px;
		
	}
	
	
}