* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
}


/*** 

====================================================================
 Global Settings
====================================================================

***/


body {
  font-size: 16px;
  color: #71747a;
  line-height: 32px;
  font-weight: 400;
  background: #ffffff;
  font-family: 'Rubik', sans-serif;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  -webkit-font-smoothing: antialiased;
}

@media (min-width:1200px) {
  .container {
    max-width: 1170px;
    padding: 0px 15px;
  }
}


.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}


.boxed_wrapper {
  position: relative;
  overflow-x: hidden;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
}


a {
  text-decoration: none;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

a:hover {
  text-decoration: none;
  outline: none;
}

input,
button,
select,
textarea {
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  font-size: 16px;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

input {
  transition: all 500ms ease;
}

button:focus,
input:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
  transition: all 500ms ease;
}

p {
  position: relative;
  font-family: 'Rubik', sans-serif;
  color: #71747a;
  margin: 0px;
  transition: all 500ms ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-family: 'Rubik', sans-serif;
  font-weight: 900;
  color: #151c2c;
  margin: 0px;
  transition: all 500ms ease;
}


::-webkit-input-placeholder {
  color: inherit;
}

::-moz-input-placeholder {
  color: inherit;
}

::-ms-input-placeholder {
  color: inherit;
}

.centred {
  text-align: center;
}

.pull-left {
  float: left;
}



figure {
  margin: 0px;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}


@keyframes pulse {
  50% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.5);
  }
}

/** button **/

.theme-btn {
  position: relative;
  display: inline-block;
  font-size: 12px;
  line-height: 30px;
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
  color: #fff !important;
  padding: 16.5px 54px;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  z-index: 1;
  letter-spacing: 2px;
  transition: all 500ms ease;
}

.theme-btn.btn-one {}

.theme-btn:before {
  position: absolute;
  content: '';
  background: #151c2c;
  width: 0%;
  height: 100%;
  left: 0px;
  bottom: 0px;
  z-index: -1;
  transition: all 500ms ease;
}

.theme-btn:hover:before {
  width: 100%;
}

.scroll-top {
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  bottom: 105%;
  right: 50px;
  font-size: 24px;
  z-index: 99;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  transition: 1s ease;
  border-radius: 50%;
}

.scroll-top:hover {
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}

.scroll-top.open {
  bottom: 30px;
}

.scroll-top span {
  color: #fff;
}

.sec-pad {
  padding: 0px 0px;
}

.mr-0 {
  margin: 0px;
}

/** sec-title **/

.sec-title {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.sec-title h2 {
  position: relative;
  display: block;
  font-size: 50px;
  line-height: 60px;
  padding-top: 11px;
  text-transform: uppercase;
}



.sec-title.centred h2:before {
  left: 50% !important;
  transform: translateX(-50%);
  right: inherit !important;
}

.sec-title.light h2 {
  color: #fff;
}

/*** 

====================================================================
                       Home-Page-One
====================================================================

***/


/** main-header **/




.main-header {
  position: relative;
  z-index: 999;
  width: 100%;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.sticky-header {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  left: 0px;
  top: 0px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  width: 100%;
  z-index: 0;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.fixed-header .sticky-header {
  z-index: 999;
  opacity: 1;
  visibility: visible;
  -ms-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -op-animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -ms-animation-duration: 500ms;
  -moz-animation-duration: 500ms;
  -op-animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -ms-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -op-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -ms-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -op-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/** header-style-one **/

.header-style-one {
  position: absolute;
  top: 0px;
  right: 0px;
  width: calc(100% - 260px);
  background: #fff;
}

.header-top {
  position: relative;
  background: #151c2c;
  padding: 7px 80px 6px 100px;
}

.header-top .info li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 20px;
  font-size: 13px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.50);
  padding-left: 22px;
}

.header-top .info li a {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.50);
}

.header-top .info li a:hover {}

.header-top .info li i {
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 14px;
}

.header-top .top-right {
  position: relative;
  display: flex;
  align-items: center;
}

.header-top .top-right .social-links li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 25px;
}

.header-top .top-right .social-links li:last-child {
  margin: 0px !important;
}

.header-top .top-right .social-links li a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.50);
}

.header-top .top-right .social-links li a:hover {}

.header-top .top-right .social-links {
  margin-right: 40px;
}

.header-top .top-right .other-links li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 30px;
  font-size: 13px;
  line-height: 24px;
}

.header-top .top-right .other-links li:last-child {
  margin: 0px !important;
}

.header-top .top-right .other-links li a {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.50);
}

.header-top .top-right .other-links li a:hover {}

.header-top .top-right .other-links li:before {
  position: absolute;
  content: '/';
  top: 0px;
  right: -17px;
}

.header-top .top-right .other-links li:last-child:before {
  display: none;
}

.header-top .top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/** header-lower **/

.header-style-one .header-lower {
  padding-left: 100px;
}

.header-style-one .outer-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-style-one .header-lower .logo-box {
  position: relative;
  padding: 0px 0px;
}

.main-header .menu-right-content {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header .menu-right-content .btn-box {
  position: relative;
  width: 250px;
}

.main-header .menu-right-content .btn-box a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 17px;
  color: #fff;
  font-weight: 700;
  padding: 45px 70px 44px 70px;
  width: 250px;
  text-transform: uppercase;
}

.main-header .menu-right-content .btn-box a:hover {}

.main-header .menu-right-content .support-box {
  position: relative;
  display: block;
  padding: 12px 40px 10px 80px;
  margin-right: 30px;
}

.main-header .menu-right-content .support-box:before {
  position: absolute;
  content: '';
  background: #e6e1db;
  width: 1px;
  height: 43px;
  top: 10px;
  right: 0px;
}

.main-header .menu-right-content .support-box .icon {
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 0px;
  width: 62px;
  height: 62px;
  line-height: 74px;
  text-align: center;
  background: #faf7f3;
  font-size: 30px;
  border-radius: 50%;
}

.main-header .menu-right-content .support-box span {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 2px;
}

.main-header .menu-right-content .support-box h6 {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.main-header .menu-right-content .support-box h6 a {
  display: inline-block;
  color: #151c2c;
}

.main-header .menu-right-content .support-box h6 a:hover {}

.main-header .search-box-outer {
  margin-right: 40px;
}

.main-header .search-box-btn {
  position: relative;
  font-size: 24px;
  line-height: 30px;
  color: #151c2c;
  background: transparent;
  font-weight: 700;
  top: 7px;
  transition: all 500ms ease;
}

.main-header .search-box-btn:hover {}

.main-header .search-box-outer .dropdown-menu {
  top: 34px !important;
  padding: 0px;
  width: 330px;
  border-radius: 0px;
  right: 0;
  left: auto !important;
  transform: translate3d(0px, 0px, 0px) scale3d(0.8, 0.8, 0.8) !important;
  border-color: transparent;
  border-radius: 3px;
  transition: .5s ease;
  display: block;
  opacity: 0;
  visibility: hidden;
}

.main-header .search-box-outer .show .dropdown-menu {
  display: block;
  transform: scale3d(1, 1, 1) !important;
  opacity: 1;
  visibility: visible;
}

.main-header .search-panel .form-container {
  padding: 30px;
}

.main-header .search-panel .form-group {
  position: relative;
  margin: 0px;
}

.main-header .search-panel input[type="text"],
.main-header .search-panel input[type="search"],
.main-header .search-panel input[type="password"],
.main-header .search-panel select {
  display: block;
  width: 100%;
  line-height: 24px;
  padding: 9px 50px 9px 15px;
  height: 50px;
  color: #fff;
  border-radius: 3px;
  background-color: #1e2434;
}

.main-header .search-panel .search-btn {
  position: absolute;
  right: 1px;
  top: 1px;
  width: 50px;
  height: 48px;
  text-align: center;
  color: #fff;
  background: transparent;
  font-size: 14px;
  border-radius: 0px 3px 3px 0px;
  cursor: pointer;
}

.dropdown-toggle::after {
  display: none;
}

.header-style-one .sticky-header .menu-right-content .btn-box {
  display: none;
}

.main-header .sticky-header .search-box-outer {
  margin-right: 0px;
}


/** main-menu **/


.main-menu .navbar-collapse {
  padding: 0px;
  display: block !important;
}



.main-menu .navigation>li {
  position: inherit;
  float: left;
  z-index: 2;
  padding: 46px 0px 5px 0px;
  margin: 0px 25px;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-menu .navigation>li:last-child {
  margin-right: 0px !important;
}

.main-menu .navigation>li:first-child {
  margin-left: 0px !important;
}

.main-menu .navigation>li>a {
  position: relative;
  display: block;
  text-align: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  font-family: 'Rubik', sans-serif;
  color: #71747a;
  z-index: 1;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu .navigation>li.current>a,
.main-menu .navigation>li:hover>a {
  color: #151c2c;
}

.main-menu .navigation>li>ul,
.main-menu .navigation>li>.megamenu {
  position: absolute;
  left: inherit;
  top: 100%;
  width: 250px;
  z-index: 100;
  display: none;
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  -moz-transform: translateY(30px);
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu .navigation>li>ul.from-right {
  left: auto;
  right: 0px;
}

.main-menu .navigation>li>ul>li {
  position: relative;
  width: 100%;
  padding: 5px 30px;
  border-bottom: 1px solid #eeeeee;
}

.main-menu .navigation>li>ul>li:last-child {
  border-bottom: none;
}

.main-menu .navigation>li>ul>li:last-child {
  border-bottom: none;
}

.main-menu .navigation>li>ul>li>a {
  position: relative;
  display: block;
  padding: 6px 0px;
  line-height: 24px;
  font-weight: 400;
  font-size: 15px;
  text-transform: capitalize;
  color: #71747a;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>a:hover {
  padding-left: 10px;
  color: #151c2c;
}

.main-menu .navigation li.dropdown .megamenu li a:hover {
  padding-left: 10px;
  color: #151c2c;
}

.main-menu .navigation>li>ul>li.dropdown>a:after {
  font-family: 'Font Awesome 5 Pro';
  content: "\f105";
  position: absolute;
  right: 20px;
  top: 6px;
  display: block;
  line-height: 24px;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  z-index: 5;
}

.main-menu .navigation>li>ul>li>ul {
  position: absolute;
  left: 100%;
  top: 0px;
  width: 230px;
  z-index: 100;
  display: none;
  padding: 0px 0px;
  background-color: #fff;
  -moz-transform: translateY(30px);
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

.main-menu .navigation>li>ul>li>ul.from-right {
  left: auto;
  right: 0px;
}

.main-menu .navigation>li>ul>li>ul>li {
  position: relative;
  width: 100%;
  padding: 5px 30px;
  border-bottom: 1px solid #eee;
}

.main-menu .navigation>li>ul>li>ul>li:last-child {
  border-bottom: none;
}

.main-menu .navigation>li>ul>li>ul>li:last-child {
  border-bottom: none;
}

.main-menu .navigation>li>ul>li>ul>li>a {
  position: relative;
  display: block;
  font-size: 15px;
  padding: 6px 0px;
  line-height: 24px;
  font-weight: 400;
  font-size: 15px;
  text-transform: capitalize;
  color: #71747a;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>ul>li>a:hover {
  padding-left: 10px;
  color: #151c2c;
}

.main-menu .navigation>li>ul>li>ul>li.dropdown>a:after {
  font-family: 'Font Awesome 5 Free';
  content: "\f105";
  position: absolute;
  right: 20px;
  top: 12px;
  display: block;
  line-height: 24px;
  font-size: 16px;
  font-weight: 900;
  z-index: 5;
}

.main-menu .navigation>li.dropdown:hover>ul,
.main-menu .navigation>li.dropdown:hover>.megamenu {
  visibility: visible;
  opacity: 1;
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation li>ul>li.dropdown:hover>ul {
  visibility: visible;
  opacity: 1;
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.main-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: -32px;
  top: 66px;
  width: 34px;
  height: 30px;
  text-align: center;
  font-size: 18px;
  line-height: 26px;
  color: #3b3b3b;
  cursor: pointer;
  display: none;
  z-index: 5;
  transition: all 500ms ease;
}

.main-menu .navigation li.current.dropdown .dropdown-btn,
.main-menu .navigation li:hover .dropdown-btn {}

.main-menu .navigation li.dropdown ul li.dropdown .dropdown-btn {
  display: none;
}

.menu-area .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  color: #3786ff;
  display: none;
}

.menu-area .mobile-nav-toggler .icon-bar {
  position: relative;
  height: 2px;
  width: 30px;
  display: block;
  margin-bottom: 5px;
  background-color: #3b3b3b;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.menu-area .mobile-nav-toggler .icon-bar:last-child {
  margin-bottom: 0px;
}

/** megamenu-style **/

.main-menu .navigation>li.dropdown>.megamenu {
  position: absolute;
  width: 100%;
  padding: 30px 50px;
  left: 0px;
}

.main-menu .navigation li.dropdown .megamenu li {
  position: relative;
  display: block;
  z-index: 2;
  padding: 7px 0px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-menu .navigation li.dropdown .megamenu li h4 {
  font-weight: 500;
  padding: 3px 0px;
  color: #222;
}

.main-menu .navigation li.dropdown .megamenu li a {
  position: relative;
  display: inline-block;
  text-align: left;
  font-size: 15px;
  line-height: 30px;
  font-weight: 400;
  opacity: 1;
  color: #71747a;
  padding: 0px;
  z-index: 1;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu .navigation li.dropdown .megamenu li a:hover {
  color: #151c2c;
}


/** mobile-menu **/

.nav-outer .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  color: #3786ff;
  display: none;
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right: 30px;
  max-width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
}

.mobile-menu .navbar-collapse {
  display: block !important;
}

.mobile-menu .nav-logo {
  position: relative;
  padding: 30px 25px;
  text-align: left;
}

.mobile-menu-visible {
  overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
  opacity: 1;
  visibility: visible;
}

.mobile-menu .menu-backdrop {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
  opacity: 0.70;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu .menu-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #202020;
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-box {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu .close-btn {
  position: absolute;
  right: 25px;
  top: 10px;
  line-height: 30px;
  width: 24px;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -ms-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  transition: all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.mobile-menu .close-btn:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.mobile-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  float: none;
}

.mobile-menu .navigation li {
  position: relative;
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li>ul>li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li>a {
  position: relative;
  display: block;
  line-height: 24px;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.mobile-menu .navigation li ul li>a {
  font-size: 16px;
  margin-left: 20px;
  text-transform: capitalize;
}

.mobile-menu .navigation li>a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  border-left: 5px solid #fff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.mobile-menu .navigation li.current>a:before {
  height: 100%;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 32px;
  height: 32px;
  text-align: center;
  font-size: 16px;
  line-height: 32px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  cursor: pointer;
  border-radius: 2px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open {
  background: #fff;
  color: #3b3b3b;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul,
.mobile-menu .navigation>li.dropdown>.megamenu {
  display: none;
}

.mobile-menu .social-links {
  position: relative;
  padding: 30px 25px;
}

.mobile-menu .social-links li {
  position: relative;
  display: inline-block;
  margin: 0px 10px 10px;
}

.mobile-menu .social-links li a {
  position: relative;
  line-height: 32px;
  font-size: 16px;
  color: #ffffff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.mobile-menu .social-links li a:hover {}

div#mCSB_1_container {
  top: 0px !important;
}

.mobile-menu .contact-info {
  position: relative;
  padding: 80px 30px 20px 30px;
}

.mobile-menu .contact-info h4 {
  position: relative;
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
}

.mobile-menu .contact-info ul li {
  position: relative;
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.80);
  margin-bottom: 3px;
}

.mobile-menu .contact-info ul li a {
  color: rgba(255, 255, 255, 0.80);
}

.mobile-menu .contact-info ul li a:hover {}

.mobile-menu .contact-info ul li:last-child {
  margin-bottom: 0px;
}

.sticky-header .main-menu .navigation>li {
  padding: 25px 0px !important;
}

.sticky-header .outer-box {
  position: relative;
  padding: 0px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/** banner-section **/

.banner-section {
  position: relative;
}

.banner-carousel {
  position: relative;
}

.banner-carousel .slide-item {
  position: relative;
  overflow: hidden;
  padding: 342px 0px 180px 0px;
}

.banner-carousel .slide-item:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: #0e131f;
  left: 0px;
  top: 0px;
  right: 0px;
  z-index: 1;
  opacity: 0.7;
}



.banner-carousel .content-box {
  position: relative;
  display: block;
  z-index: 5;
  width: 100%;
  max-width: 600px;
}

.banner-carousel .content-box h3 {
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 25px;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 700ms ease;
}

.banner-carousel .active .content-box h3 {
  opacity: 1;
  -webkit-transition-delay: 500ms;
  -moz-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  transition-delay: 500ms;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.banner-carousel .content-box h2 {
  position: relative;
  display: block;
  color: #fff;
  font-size: 80px;
  line-height: 76px;
  font-weight: 900;
  margin-bottom: 39px;
  opacity: 0;
  text-transform: uppercase;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 700ms ease;
}

.banner-carousel .active .content-box h2 {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
}

.banner-carousel .content-box .btn-box {
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 700ms ease;
}

.banner-carousel .active .content-box .btn-box {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.banner-section .owl-theme .owl-nav {
  position: absolute;
  top: 52%;
  right: 150px;
}

.banner-section .owl-theme .owl-nav button {
  position: absolute;
  display: inline-block;
  width: 63px;
  height: 63px;
  line-height: 63px;
  border: 2px solid rgba(255, 255, 255, 0.20);
  text-align: center;
  border-radius: 50%;
  font-family: 'Flaticon';
  left: 0px;
  top: 0px;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.20);
  transition: all 500ms ease;
}

.banner-section .owl-theme .owl-nav button:hover {
  border-color: #fff;
  color: #fff;
}

.banner-section .owl-theme .owl-nav .owl-prev {
  left: 0px;
  top: 0px;
}

.banner-section .owl-theme .owl-nav .owl-next {
  left: 0px;
  top: 73px;
}

.banner-section .owl-theme .owl-nav .owl-prev:before {
  content: "\f107";
}

.banner-section .owl-theme .owl-nav .owl-next:before {
  content: "\f106";
}


.banner-section .owl-theme .owl-nav button span {
  display: none;
}

.owl-dots-none .owl-dots,
.owl-nav-none .owl-nav {
  display: none !important;
}

.owl-nav button,
.owl-dots button {
  background: transparent;
}

/** cta-section **/


/** main-footer **/

.main-footer {
  position: relative;
  background: #151c2c;
}

.footer-top {
  position: relative;
  padding: 114px 0px 110px 0px;
}

.footer-top .pattern-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.footer-top .logo-widget {
  margin-top: 6px;
}

.footer-top .logo-widget .footer-logo {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.footer-top .footer-social li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 10px;
}

.footer-top .footer-social li:last-child {
  margin: 0px !important;
}

.footer-top .footer-social li a {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #0e131f;
  font-size: 15px;
  text-align: center;
  color: #fff;
}

.footer-top .footer-social li a:hover {}

.footer-top .widget-title {
  position: relative;
  display: block;
  margin-bottom: 36px;
}

.footer-top .widget-title h5 {
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  text-transform: uppercase;
}

.footer-top .links-widget .links-list li {
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 6px;
}

.footer-top .links-widget .links-list li:last-child {
  margin-bottom: 0px;
}

.footer-top .links-widget .links-list li a {
  position: relative;
  display: inline-block;
  color: #ffffff;
}

.footer-top .links-widget .links-list li a:hover {}

.footer-top .contact-widget .info li {
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 30px;
  color: #ffffff;
  padding-left: 30px;
}

.footer-top .contact-widget .info li a {
  color: #ffffff;
}

.footer-top .contact-widget .info li a:hover {}

.footer-top .contact-widget .info li i {
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 14px;
}

.footer-bottom {
  padding: 30px 0px;
  background: #0e131f;
}

.footer-bottom p {
  font-size: 15px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.50);
}

.footer-bottom p a {
  color: rgba(255, 255, 255, 0.50);
}

.footer-bottom p a:hover {}


/*** 

====================================================================
                       Home-Page-Two
====================================================================

***/

/** header-style-two **/

.header-style-two {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
}

.header-style-two .header-lower {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.header-style-two .header-lower .logo-box,
.header-style-two .header-lower .main-menu {
  float: left;
}

.header-style-two .header-lower .logo-box {
  padding: 3px 0px 0px 0px;
  margin-left: 120px;
  margin-right: 200px;
}

.header-style-two .header-lower .main-menu .navigation>li>a {
  color: #fff;
}

.header-style-two .header-lower .main-menu .navigation>li.current>a,
.header-style-two .header-lower .main-menu .navigation>li:hover>a {}

.header-style-two .header-lower .outer-box {
 position: relative;
 background-color: rgba(0, 0, 0, 0.3);
}

.header-style-two .header-lower .menu-right-content {
  display: flex;
  align-items: center;
}


.header-style-two .header-lower .menu-right-content .other-links li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 30px;
  font-size: 14px;
  line-height: 24px;
}

.header-style-two .header-lower .menu-right-content .other-links li:last-child {
  margin: 0px !important;
}

.header-style-two .header-lower .menu-right-content .other-links li a {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.50);
}

.header-style-two .header-lower .menu-right-content .other-links li a:hover {}

.header-style-two .header-lower .menu-right-content .other-links li:before {
  position: absolute;
  content: '/';
  top: 0px;
  right: -17px;
}

.header-style-two .header-lower .menu-right-content .other-links li:last-child:before {
  display: none;
}

.header-style-two .header-lower .menu-right-content .search-box-outer:before {
  position: absolute;
  content: '';
  background: rgba(255, 255, 255, 0.20);
  width: 1px;
  height: 43px;
  left: -32px;
  top: -3px;
}


/** animals-section **/

.animals-section {
  position: relative;
}

.animals-section .single-item {
  position: relative;
  display: block;
  background: #faf7f3;
  padding: 27px 15px 23px 15px;
  cursor: pointer;
  transition: all 500ms ease;
}

.animals-section .single-item:before {
  position: absolute;
  content: '';
  width: 40px;
  height: 10px;
  /* left: 50%; */
  left: 111%;
  transform: translateX(-50%);
  /* bottom: -10px; */
  bottom: 43px;
  /* clip-path: polygon(0% 0%, 100% 0%, 50% 100%, 50% 100%, 0% 0%); */
  clip-path: polygon(0% 0%, 50% 0%, 0% 100%);
  opacity: 0;
  transition: all 500ms ease;
}

.animals-section .single-item:hover:before,
.animals-section .single-item.active-btn:before {
  opacity: 1;
}

.animals-section .single-item:hover {}

.animals-section .single-item .icon-box {
  position: relative;
  display: block;
  font-size: 65px;
  line-height: 60px;
  margin-bottom: 15px;
  transition: all 500ms ease;
}

.animals-section .single-item:hover .icon-box,
.animals-section .single-item:hover h5,
.animals-section .single-item.active-btn .icon-box,
.animals-section .single-item.active-btn h5 {
  color: #fff;
}

.animals-section .single-item h5 {
  display: block;
  font-size: 18px;
  line-height: 26px;
  text-transform: uppercase;
  transition: all 500ms ease;
}

.tabs-box .tab {
  position: relative;
  display: none;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.tabs-box .tab.active-tab {
  display: block;
}

.tabs-box .tab {
  transform: scale(0.9, 0.9) translateY(0px);
}

.tabs-box .tab.active-tab {
  transform: scale(1) translateY(0px);
}

.animals-section .tab-btn-box {
  position: relative;
  display: block;
  margin-bottom: 89px;
}

.animals-section .tabs-content .inner-box {
  position: relative;
  display: block;
}

.animals-section .tabs-content .inner-box .text h2 {
  position: relative;
  display: block;
  font-size: 50px;
  line-height: 60px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.animals-section .tabs-content .inner-box .text p {
  font-size: 16px;
  line-height: 32px;
  margin-bottom: 39px;
}

.animals-section .tabs-content .inner-box .text .theme-btn {
  background: #faf7f3;
  color: #0e131f !important;
  font-size: 14px;
}

.animals-section .tabs-content .inner-box .text .theme-btn:hover {
  color: #fff !important;
}

.animals-section .tabs-content .inner-box .image-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin-left: 100px;
  margin-top: 11px;
}

.animals-section .tabs-content .inner-box .image-box img {
  width: 100%;
  transition: all 500ms ease;
}

.animals-section .tabs-content .inner-box .image-box:hover img {
  transform: scale(1.05);
}

.animals-section .sec-title {
  margin-bottom: 47px;
}

/** gallery-style-two **/



.gallery-block-two .inner-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.gallery-block-two .inner-box .image-box {
  position: relative;
  display: block;
  overflow: hidden;
  background: #151c2c;
}

.gallery-block-two .inner-box .image-box img {
  width: 100%;
  transition: all 500ms ease;
}

.gallery-block-two .inner-box:hover .image-box img {
  opacity: 0.1;
  transform: scale(1.05);
}

.gallery-block-two .inner-box .view-box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.gallery-block-two .inner-box .view-box a {
  position: relative;
  display: inline-block;
  font-size: 28px;
  line-height: 30px;
  transform: scale(0, 0);
}

.gallery-block-two .inner-box .view-box a:hover {
  color: #fff;
}

.gallery-block-two .inner-box:hover .view-box a {
  transform: scale(1, 1);
}


/*** 

====================================================================
                       About-Page
====================================================================

***/

/** about-style-three **/

.about-style-three {
  position: relative;
}

.about-style-three .content_block_three .content-box {
  margin-left: 70px;
}

.content_block_three .content-box .text h4 {
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 14px;
}

.about-style-three .content_block_three .content-box .sec-title {
  margin-bottom: 37px;
}

.about-style-three .content_block_three .content-box .inner {
  margin-bottom: 36px;
}

.about-style-three .content_block_three .content-box .text p {
  margin-bottom: 24px;
}

.about-style-three .content_block_three .content-box .theme-btn {}

.about-style-three .image-box {
  position: relative;
  display: block;
  margin-right: 20px;
  overflow: hidden;
}

.about-style-three .image-box img {
  width: 100%;
  transition: all 500ms ease;
}

.about-style-three .image-box:hover img {
  transform: scale(1.05);
}


/* gallery-page-section **/
.gallery-page-section {
  position: relative;
  padding: 120px 0px 90px 0px;
}

.gallery-page-section .gallery-block-two .inner-box {
  margin-bottom: 30px;
  border: 2px solid #9c803442;
  border-radius: 10px;
  height: 230px !important;
}

.gallery-page-section .gallery-block-two .inner-box .view-box a {
  color: #fff;
}





/*** 

====================================================================
                       Blog-Page
====================================================================

***/
.default-form .form-group {
  position: relative;
  margin-bottom: 20px;
  padding: 0px 10px;
}

.default-form .form-group:last-child {
  margin-bottom: 0px;
}

.default-form {
  position: relative;
  margin: 0px 5px;
}

.default-form .form-group input[type='text'],
.default-form .form-group input[type='email'],
.default-form .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 63px;
  background: #faf7f3;
  border: 1px solid #faf7f3;
  font-size: 14px;
  padding: 10px 30px;
  font-size: 14px;
  color: #7a7d83;
  transition: all 500ms ease;
}

.default-form .form-group input:focus,
.default-form .form-group textarea:focus {}

.default-form .form-group textarea {
  height: 150px;
  resize: none;
}


/*** 

====================================================================
                       Contact-Page
====================================================================

***/

/** google-map-section **/



.contact-section {
  position: relative;
  padding-bottom: 120px;
}

.contact-section .sec-title {
  margin-bottom: 47px;
}

.top-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  color: #fff;


}

.contact-info i {
  margin-right: 5px;
}

.social-icons {
  display: flex;
  justify-content: end;
  gap: 30px;
}

.top-bar i {
  color: #fff;
}

.carousel-indicators {
  display: none;
}

.carousel-item img {
  height: 650px;
  width:100vw;
}

section {
  overflow: hidden;
}

.feature-section {
  background-image: url(../images/gallery/img7.jpeg);
  background-position: center center;
  background-size: cover;
  padding: 70px 0 77px;
  position: relative;
  z-index: 1;
  height: 700px;
}

.over-layer-black {
  position: relative;
  z-index: 1;
}

.over-layer-black::before {
  background-color: rgba(0, 0, 0, 0.9);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.feature-section.over-layer-black:before {
  background-color: rgba(0, 0, 0, 0.77);
}

.section-title {
  margin: 0 auto 62px;
  padding: 0;
  position: relative;
  text-align: center;
}

.section-title h4 {
  color: #9b9a9a;
  display: inline-block;
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 12px;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.over-layer-black .section-title h4 {
  color: #e0dcdc;
}

.over-layer-black .section-title h2 {
  color: #fff;
}

.over-layer-black .section-title h2 span {
  color: #957730;
}

.section-title h2 {
  color: #363d48;
  font-family: 'Book Antiqua', serif;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.8px;
  line-height: 0.9;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.over-layer-black .section-title p {
  color: #f8f8f8;
}
.section-title p {
 color: #9c9c9c;
 font-family: 'Roboto', sans-serif;
 font-size: 16px;
 line-height: 26px;
 margin: 0 auto;
 max-width: 484px;
}
.feature-item {
 background-color: #957730;
 color: #fff;
 padding: 55px 20px;
 text-align: center;
 -webkit-transition: all 0.3s ease-in-out;
 -moz-transition: all 0.3s ease-in-out;
 -o-transition: all 0.3s ease-in-out;
 -ms-transition: all 0.3s ease-in-out;
 transition: all 0.3s ease-in-out;
 height: 280px;
}
.feature-item .icon-box {
 display: inline-block;
 line-height: 1;
 margin-bottom: 20px;
}
.feature-item .icon-box i {
  color: #363107;
 font-size: 50px;
}

.feature-item .content h3 {
 font-size: 20px;
 font-weight: 600;
 line-height: 32px;
 margin-bottom: 10px;
 text-transform: uppercase;
}
.feature-item .content p {
 color: #f8f8f8;
 font-size: 13px;
 line-height: 24px;
}
.feature-item .content h3 a {
 color: #fff;
}
.feature-item .content h3 a span {
 color: #363107;
}

.google-map iframe{
 width: 100%;
}




















