.anim-icons {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}

.anim-icons.full-width {
  max-width: 100%;
}

.anim-icons .icon {
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}

.icon-dots-1 {
  height: 204px;
  width: 209px;
  background-image: url(../images/icons/icon-dot-1.png);
}

.icon-dotted-map {
  width: 474px;
  height: 357px;
  background-image: url(../images/icons/dotted-map.png);
}

.icon-dotted-map-2 {
  width: 987px;
  height: 478px;
  background-image: url(../images/icons/dotted-map-2.png);
}

.icon-bg-dots {
  width: 916px;
  height: 709px;
  background-image: url(../images/icons/icon-bg-dots.png);
}

.icon-plane-1 {
  width: 104px;
  height: 640px;
  background-image: url(../images/icons/icon-plane-1.png);
}

.icon-plane-2 {
  width: 301px;
  height: 336px;
  background-image: url(../images/icons/icon-plane-2.png);
}

.icon-plane-3 {
  width: 373px;
  height: 194px;
  background-image: url(../images/icons/icon-plane-3.png);
}

.icon-wave-line {
  width: 653px;
  height: 471px;
  background-image: url(../images/icons/icon-wave-line.png);
}

.icon-quote {
  height: 46px;
  width: 64px;
  background-image: url(../images/icons/icon-quote.png);
}

.bounce-y {
  animation: bounce-y 10s infinite linear;
}

.bounce-x {
  animation: bounce-x 10s infinite linear;
}

.zoom-one {
  animation: zoom-one 10s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bounce-y {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bounce-x {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(30px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes zoom-one {
  0% {
    transform: scale(0.95);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(0.95);
  }
}
.form-control, .input-text {
  height: 55px;
  padding: 15px;
  outline: 0;
  background-color: #f4f5f8;
  border: 1px solid #f4f5f8;
  color: #686a6f;
  font-size: 0.9rem;
  width: 100%;
}
.form-control::-moz-placeholder, .input-text::-moz-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::placeholder, .input-text::placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control:-ms-input-placeholder, .input-text:-ms-input-placeholder {
  color: #686a6f;
}
.form-control::-ms-input-placeholder, .input-text::-ms-input-placeholder {
  color: #686a6f;
}
.form-control:focus, .input-text:focus {
  border-color: #28357b;
  box-shadow: none;
}

textarea.form-control {
  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
}

.fixed-whatsapp-bottom {
  position: fixed;
  bottom: 30px;
  left: 30px;
  right: unset;
  display: block;
  z-index: 11000;
}
.fixed-whatsapp-bottom:hover {
  opacity: 0.7;
  transition: all 0.4s ease-in;
  color: #fff;
}
.fixed-whatsapp-bottom::before {
  position: absolute;
  content: " ";
  z-index: -1;
  top: 0%;
  left: 0%;
  background-color: rgba(48, 183, 0, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 100%;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
  opacity: 0.6;
  animation: pulse 1.5s ease-out;
  animation-iteration-count: infinite;
}

.fixed-call-bottom {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 30px;
  right: 30px;
  left: unset;
  z-index: 11000;
  background-color: #d69749;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.fixed-call-bottom:hover {
  opacity: 0.7;
  transition: all 0.4s ease-in;
  color: #fff;
  background-color: #28357b;
}
.fixed-call-bottom::before {
  position: absolute;
  content: " ";
  z-index: -1;
  top: 0%;
  left: 0%;
  background-color: rgba(214, 151, 73, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 100%;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
  opacity: 0.6;
  animation: pulse 1.5s ease-out;
  animation-iteration-count: infinite;
}
.fixed-call-bottom button {
  background-color: transparent;
  border: 0;
  color: #fff;
  font-size: 1.4rem;
}

.btn-close {
  position: absolute;
  right: 20px;
  top: 25px;
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.7);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1200px;
  }
}
@media (max-width: 991px) {
  .fancybox-slide.fancybox-slide--video {
    padding: 0 !important;
  }
  .fancybox-slide.fancybox-slide--video .fancybox-content {
    width: 100% !important;
  }
}
.theme-btn {
  display: inline-flex;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.theme-btn .btn-title {
  position: relative;
}

.btn-style-one {
  position: relative;
  font-size: 14px;
  line-height: 30px;
  padding: 15px 50px;
  font-weight: 600;
  color: #fff;
  background: #d69749;
  overflow: hidden;
  border-radius: 5px;
  text-transform: uppercase;
}
.btn-style-one:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-color: #28357b;
  transform: scale(0, 1);
  transform-origin: top right;
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.btn-style-one:hover:before {
  transform: scale(1, 1);
  transform-origin: bottom left;
}
.btn-style-one:hover {
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.btn-style-one.alternate {
  background: #d69749;
}

.theme-btn.small {
  padding: 10px 40px;
  line-height: 20px;
  font-size: 12px;
}

.owl-theme .owl-dots .owl-dot span {
  width: 22px;
  height: 22px;
}

.page-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 99;
  background-color: #fff;
  padding-top: 91px;
}
@media (max-width: 1199px) {
  .page-wrapper {
    padding-top: 70px;
  }
}

.sub-title {
  position: relative;
  top: -5px;
  display: inline-block;
  font-size: 16px;
  color: #28357b;
  text-transform: uppercase;
  font-weight: 700;
}
.sub-title:before {
  position: absolute;
  left: 100%;
  top: 50%;
  height: 2px;
  width: 35px;
  margin-left: 10px;
  margin-top: -1px;
  background: #28357b;
  content: "";
}

.iti--allow-dropdown {
  width: 49%;
}
.iti--allow-dropdown input {
  width: 100% !important;
}
.iti--allow-dropdown .iti__flag-container {
  bottom: 1rem;
  direction: ltr;
}
.iti--allow-dropdown .iti__selected-dial-code {
  color: #fff;
}

.iti__arrow {
  border-top: 4px solid #fff;
}

.iti__arrow--up {
  border-bottom: 0;
}

.iti--allow-dropdown {
  width: 100%;
}

.iti__flag-container {
  height: 100%;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: #28357b;
  border-radius: 0.25rem 0 0 0.25rem;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background-color: #28357b;
}

.iti__country-list {
  white-space: normal;
  min-width: 300px;
}

.blur-up {
  opacity: 0;
  transition: opacity 400ms;
}

.blur-up.lazyloaded,
.blur-up.lazyloading {
  opacity: 1;
}

* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  font-size: 100%;
}
*:not(input):not(textarea):not(button):not(a) {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

::-webkit-input-placeholder {
  color: #7c858c;
}

::-moz-input-placeholder {
  color: #7c858c;
}

::-ms-input-placeholder {
  color: #7c858c;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

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

a:hover {
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  position: relative;
  font-weight: normal;
  margin: 0px;
  background: none;
  line-height: 1.2em;
  color: #28357b;
  letter-spacing: -1px;
}

h1 {
  font-size: 90px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

textarea {
  overflow: hidden;
  resize: none;
}

button {
  outline: none !important;
  cursor: pointer;
}

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

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

p, .text {
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: #767676;
  margin: 0;
}

.large-container {
  position: static;
  max-width: 1570px;
  padding: 0px 15px;
  margin: 0 auto;
}

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}

.dropdown-toggle::after {
  display: none;
}

.scroll-to-top {
  position: fixed;
  right: 35px;
  bottom: 110px;
  width: 40px;
  font-size: 16px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background-color: #d69749;
  z-index: 100;
  display: none;
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  transition: all 300ms ease;
}

.scroll-to-top:hover {
  background: #28357b;
  color: #fff;
}

.list-style-one {
  position: relative;
  display: flex;
  padding: 10px 0;
}
@media (max-width: 767px) {
  .list-style-one {
    position: relative;
    display: flex;
    padding: 10px 0;
    width: 100%;
    justify-content: space-between;
  }
}
.list-style-one li {
  position: relative;
  font-size: 13px;
  line-height: 20px;
  color: #fff;
  margin-right: 20px;
  display: flex;
  align-items: center;
}
.list-style-one li i {
  margin-right: 5px;
  color: #d69749;
  font-size: 14px;
  line-height: 20px;
}
.list-style-one li a {
  display: inline-block;
  color: #fff;
  transition: all 300ms ease;
}
.list-style-one li a:hover {
  opacity: 0.8;
}

.social-icon-one {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.social-icon-one li {
  position: relative;
  margin-left: 0px;
}
.social-icon-one li:first-child {
  margin-right: 0;
}
.social-icon-one li a {
  position: relative;
  display: block;
  line-height: 40px;
  width: 35px;
  height: 40px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  transition: all 300ms ease;
}
.social-icon-one li a:hover {
  color: #d69749;
}

.main-footer {
  position: relative;
  overflow: hidden;
}
.main-footer .bg-image {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: auto;
  bottom: 0;
}
.main-footer .bg-image:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #28357b;
  content: "";
}
.main-footer .icon-plane-3 {
  right: -360px;
  bottom: 80px;
}
.main-footer .contacts-outer {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.main-footer .about-widget {
  position: relative;
  padding-right: 5px;
}
.main-footer .about-widget .logo {
  position: relative;
  margin-bottom: 25px;
  background-color: #fff;
  padding: 10px;
  display: inline-flex;
}
.main-footer .about-widget .logo img {
  max-height: 80px;
}
.main-footer .about-widget .text {
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 20px;
}
.main-footer .about-widget .theme-btn {
  line-height: 20px;
  padding: 15px 25px;
  font-size: 14px;
}
.main-footer .widgets-section {
  position: relative;
  padding: 60px 0 20px;
}
.main-footer .footer-column {
  position: relative;
  margin-bottom: 40px;
}
.main-footer .footer-widget {
  position: relative;
}
.main-footer .widget-title {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 30px;
}
.main-footer .widget-title:before {
  position: absolute;
  left: 100%;
  top: 50%;
  margin-top: -1px;
  background-color: #d69749;
  height: 3px;
  width: 25px;
  content: "";
  margin-left: 10px;
}

.footer-inner-box {
  position: relative;
  height: 100%;
  padding: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
}
.footer-inner-box:hover .icon-box {
  background-color: #fff;
  color: #28357b;
}
.footer-inner-box .icon-box {
  height: 100px;
  width: 100px;
  color: #fff;
  background-color: #d69749;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  border-radius: 5px;
  transition: all 300ms ease;
}
.footer-inner-box .icon-box i {
  line-height: 0;
}
.footer-inner-box .description {
  width: calc(100% - 120px);
}
.footer-inner-box .description .title {
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  color: #fff;
  margin-top: 6px;
  margin-bottom: 5px;
}
.footer-inner-box .description .text {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}
.footer-inner-box .description .text a {
  color: #fff;
  transition: all 300ms ease;
}
.footer-inner-box .description .text a:hover {
  color: #fff;
}
@media (max-width: 991.98px) {
  .footer-inner-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 0 !important;
  }
  .footer-inner-box .description {
    width: 100%;
  }
}

.user-links {
  position: relative;
  -moz-column-count: 1;
       column-count: 1;
}
.user-links li {
  position: relative;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 16px;
}
.user-links li:last-child {
  margin-bottom: 0;
}
.user-links li a {
  position: relative;
  display: inline-block;
  transition: all 300ms ease;
  color: #fff;
}
.user-links li a:hover {
  color: #fff;
}
.user-links li a:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  content: "";
  transition: all 300ms ease;
}
.user-links li a:hover:before {
  width: 100%;
}

.gallery-widget {
  position: relative;
}
.gallery-widget .outer {
  position: relative;
}
.gallery-widget .outer .image {
  position: relative;
  float: left;
  width: 33.3333%;
  padding: 0px 7px;
  margin-bottom: 15px;
}
.gallery-widget .image img {
  display: block;
  width: 100%;
}
.gallery-widget .image a {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.gallery-widget .image a:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #d69749 padding-box content-box;
  opacity: 0.8;
  content: "";
  transform: scale(0);
  border-radius: 10px;
  transition: all 300ms ease;
}
.gallery-widget .image a:hover:before {
  transform: scale(1);
}
.gallery-widget .image a:hover:after {
  transform: scale(1);
}
.gallery-widget .image a:after {
  position: absolute;
  height: 20px;
  width: 20px;
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -10px;
  content: "\f0c1";
  text-align: center;
  line-height: 20px;
  font-size: 18px;
  color: #fff;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  transform: scale(0);
  transition: all 300ms ease;
}

.footer-bottom {
  position: relative;
  background-color: #1d1d29;
  width: 100%;
}
.footer-bottom .inner-container {
  position: relative;
}
.footer-bottom .copyright-text {
  position: relative;
  padding: 15px 0;
  color: #fff;
}
.footer-bottom .copyright-text p {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: #fff;
}
.footer-bottom .copyright-text a {
  transition: all 300ms ease;
  color: #d69749;
}
.footer-bottom .copyright-text a:hover {
  color: #fff;
}
@media (max-width: 991.989px) {
  .footer-bottom {
    text-align: center;
  }
}

.border-radius-05 {
  border-radius: 0.5rem;
}
.border-radius-05 img {
  border-radius: 0.5rem;
}

body.show-admin-bar .header-top {
  margin-top: 40px !important;
  position: relative;
}

.header-span {
  position: relative;
  height: 110px;
  display: block;
  width: 100%;
}

.header-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #28357b;
  margin-left: 0;
  max-height: 40px;
}
@media (min-width: 1024px) {
  .header-top {
    padding-left: 130px;
    padding-right: 50px;
  }
}
.header-top .top-left {
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .header-top .top-left {
    width: 100%;
  }
}
.header-top .top-right {
  position: relative;
}
@media (min-width: 1024px) {
  .header-top .top-right {
    display: flex;
    padding-right: 40px;
  }
}
.header-top .language-wrapper .language_bar_list li a span {
  color: #fff;
}
.header-top .language-wrapper .language_bar_list a {
  color: #fff;
}

.header-lower {
  position: relative;
  transition: all 300ms ease;
}
.header-lower .logo-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .header-lower .logo-box {
    background-color: #f8f5f1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -40px;
    padding: 5px 10px;
  }
}

.main-header {
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
  background-color: #fff;
  border-bottom: 1px solid #000;
}
.main-header .logo {
  position: relative;
  display: block;
}
.main-header .logo img {
  max-width: unset;
  width: 75px;
  height: 56px;
}
@media (min-width: 1024px) {
  .main-header .logo img {
    width: 92px;
    height: 80px;
  }
}
.main-header .main-box {
  position: relative;
  left: 0px;
  top: 0px;
  display: flex;
  align-items: flex-end;
  transition: all 300ms ease;
}
.main-header .main-box .nav-outer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.main-header .ui-btn {
  position: relative;
  display: block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  background: none;
  font-size: 26px;
  color: #28357b;
  margin-left: 15px;
  transition: all 300ms ease;
}
.main-header .ui-btn:hover {
  color: #d69749;
}
.main-header .ui-btn:hover .number-badge {
  color: #fff;
}

.main-menu {
  position: relative;
  width: 100%;
}
.main-menu .navbar-header {
  display: none;
}
.main-menu .navbar-collapse {
  padding: 0px;
}
.main-menu .navigation {
  display: block;
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 1000px;
  justify-content: space-between;
}
.main-menu .navigation > li {
  position: relative;
  float: left;
  padding: 10px 20px;
  transition: all 300ms ease;
}
.main-menu .navigation > li:last-child {
  margin-right: 0;
}
.main-menu .navigation > li:before {
  position: absolute;
  left: 50%;
  bottom: 10px;
  height: 2px;
  width: 0%;
  background-color: #d69749;
  content: "";
  transition: all 300ms ease;
}
.main-menu .navigation > li:hover:before, .main-menu .navigation > li.current:before {
  left: 0;
  width: 100%;
}
.main-menu .navigation > li > a, .main-menu .navigation > li button {
  position: relative;
  text-align: center;
  opacity: 1;
  color: #28357b;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0;
  display: flex;
  transition: all 300ms ease;
  background: transparent;
  border: 0;
}
.main-menu .navigation > li > a .icon, .main-menu .navigation > li button .icon {
  position: relative;
  font-size: 22px;
  line-height: 24px;
  margin-left: 10px;
}
.main-menu .navigation > li > a:hover, .main-menu .navigation > li button:hover {
  color: #d69749;
}
.main-menu .navigation > li.current > a, .main-menu .navigation > li.current > button {
  color: #d69749;
  font-weight: 700;
}
.main-menu .navigation > li.dropdown > a {
  padding-right: 14px;
  margin-right: -14px;
}
.main-menu .navigation > li.dropdown > a:after {
  content: "\f107";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 20px;
  display: block;
  line-height: 24px;
  font-size: 12px;
  z-index: 5;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-top: -2px;
  transform: translateY(-50%);
}
.main-menu .navigation > li.dropdown:hover ul {
  visibility: visible;
  opacity: 1;
  top: 100%;
  margin-top: 0;
  transition: all 300ms ease;
  display: block;
}
.main-menu .navigation > li ul {
  position: absolute;
  left: 0;
  top: 100%;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 500px;
  text-wrap: nowrap;
  z-index: 100;
  padding: 5px 0 0;
  background-color: #fff;
  margin-top: 30px;
  opacity: 0;
  display: none;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  max-height: 400px;
  overflow: auto;
}
.main-menu .navigation > li ul.from-right {
  left: auto;
  right: 0;
}
.main-menu .navigation > li ul li {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #ebf1f5;
}
.main-menu .navigation > li ul li:last-child {
  border-bottom: none;
}
.main-menu .navigation > li ul li a {
  position: relative;
  display: block;
  padding: 5px 0;
  line-height: 29px;
  font-weight: 400;
  font-size: 16px;
  color: #28357b;
  text-align: left;
  margin: 0 30px;
  text-transform: capitalize;
  transition: all 200ms ease;
}
.main-menu .navigation > li ul li:hover > a {
  color: #d69749;
}
.main-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 34px;
  height: 30px;
  border: 1px solid #fff;
  text-align: center;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  display: none;
}

.outer-box {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  margin: 0 20px;
}
.outer-box .theme-btn {
  display: block;
  min-width: 225px;
  padding: 10px 30px;
  line-height: 30px;
  margin-left: 40px;
  border-radius: 0;
}
.outer-box .dropdown .dropdown-toggle {
  background: transparent;
  color: #28357b;
}
.outer-box .dropdown .dropdown-menu {
  min-width: auto;
  min-width: auto;
  left: unset !important;
  transform: none !important;
  right: 0 !important;
  top: calc(100% + 10px) !important;
  padding: 0;
}

::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #d69749;
  border-radius: 0 0 10px 10px;
  min-height: 40px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #d69749;
}

.mobile-nav-toggler {
  position: relative;
  font-size: 24px;
  cursor: pointer;
  color: #28357b;
  display: block;
  top: 0;
  order: 8;
}
@media (min-width: 1024px) {
  .mobile-nav-toggler {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  max-width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
}
.mobile-menu .menu-backdrop {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
}
.mobile-menu .upper-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 20px;
}
.mobile-menu .close-btn {
  position: relative;
  top: -10px;
  text-align: center;
  font-size: 18px;
  color: #f8f5f1;
  cursor: pointer;
  z-index: 10;
  transition: all 0.5s ease;
  transform: translateY(-50px);
}
.mobile-menu .close-btn:hover {
  opacity: 0.5;
}
.mobile-menu .nav-logo {
  position: relative;
  text-align: left;
  background: #fff;
  padding: 0.7rem;
}
.mobile-menu .nav-logo img {
  max-height: 80px;
  max-width: 175px;
}
.mobile-menu .menu-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #28357b;
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  transform: translateX(101%);
}

.mobile-menu-visible {
  overflow: hidden;
}
.mobile-menu-visible .mobile-menu {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-visible .mobile-menu .menu-backdrop {
  opacity: 1;
  visibility: visible;
  transition: all 0.4s ease;
}
.mobile-menu-visible .mobile-menu .menu-box {
  opacity: 1;
  visibility: visible;
  transition: all 0.4s ease 200ms;
  transform: translateX(0%);
}
.mobile-menu-visible .mobile-menu .close-btn {
  transform: translateY(0px);
}
.mobile-menu-visible .scroll-to-top {
  opacity: 0;
  visibility: hidden;
}

.mobile-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li > ul > li:last-child {
  border-bottom: none;
}
.mobile-menu .navigation li > ul > li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li > a, .mobile-menu .navigation li button {
  position: relative;
  display: block;
  line-height: 24px;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  text-transform: capitalize;
  background: transparent;
}
@media (min-width: 320px) and (max-width: 767px) {
  .mobile-menu .navigation li > a, .mobile-menu .navigation li button {
    max-width: 80%;
  }
}
.mobile-menu .navigation li:hover > a, .mobile-menu .navigation li.current > a {
  color: #d69749;
}
.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 44px;
  height: 44px;
  text-align: center;
  font-size: 16px;
  line-height: 44px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
}
.mobile-menu .navigation li.dropdown .dropdown-btn:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 10px;
  width: 1px;
  height: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li.dropdown .dropdown-btn.active i:before {
  content: "\f106";
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul {
  display: none;
}

.mobile-menu .navigation li > ul > li {
  padding-left: 20px;
}

.contact-info-box {
  position: relative;
  padding-left: 54px;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
}
.contact-info-box .icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 34px;
  line-height: 50px;
  color: #d69749;
}
.contact-info-box .title {
  display: block;
  font-size: 12px;
  color: #b2c1c0;
  font-weight: 400;
  text-transform: uppercase;
}

.contact-list-one {
  position: relative;
  padding: 30px 20px 20px;
}
.contact-list-one .language-wrapper .language_bar_list li a span {
  color: #fff;
}
.contact-list-one li .contact-info-box i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  line-height: 30px;
  color: #d69749;
}
.contact-list-one li {
  position: relative;
  margin-bottom: 20px;
}
.contact-list-one li:last-child {
  margin-right: 0;
}
.contact-list-one li strong {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}
.contact-list-one li i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  line-height: 30px;
  color: #d69749;
}
.contact-list-one li a {
  color: #fff;
  transition: all 300ms ease;
}

.mobile-menu .social-links {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #28357b;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}
.mobile-menu .social-links .social-icon-one {
  flex-wrap: nowrap;
  width: 100%;
}
.mobile-menu .social-links li {
  position: relative;
  text-align: center;
  width: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .social-links li a {
  position: relative;
  display: block;
  line-height: 50px;
  height: 50px;
  width: auto;
  font-size: 16px;
  text-align: center;
  color: #f8f5f1;
  transition: all 300ms ease;
}
.mobile-menu .social-links li a:hover {
  color: #d8d5d1;
}

* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  font-size: 100%;
}
*:not(input):not(textarea):not(button):not(a) {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

::-webkit-input-placeholder {
  color: #7c858c;
}

::-moz-input-placeholder {
  color: #7c858c;
}

::-ms-input-placeholder {
  color: #7c858c;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

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

a:hover {
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  position: relative;
  font-weight: normal;
  margin: 0px;
  background: none;
  line-height: 1.2em;
  color: #28357b;
  letter-spacing: -1px;
}

h1 {
  font-size: 90px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

textarea {
  overflow: hidden;
  resize: none;
}

button {
  outline: none !important;
  cursor: pointer;
}

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

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

p, .text {
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: #767676;
  margin: 0;
}

.large-container {
  position: static;
  max-width: 1570px;
  padding: 0px 15px;
  margin: 0 auto;
}

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}

.dropdown-toggle::after {
  display: none;
}

.scroll-to-top {
  position: fixed;
  right: 35px;
  bottom: 110px;
  width: 40px;
  font-size: 16px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background-color: #d69749;
  z-index: 100;
  display: none;
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  transition: all 300ms ease;
}

.scroll-to-top:hover {
  background: #28357b;
  color: #fff;
}

.list-style-one {
  position: relative;
  display: flex;
  padding: 10px 0;
}
@media (max-width: 767px) {
  .list-style-one {
    position: relative;
    display: flex;
    padding: 10px 0;
    width: 100%;
    justify-content: space-between;
  }
}
.list-style-one li {
  position: relative;
  font-size: 13px;
  line-height: 20px;
  color: #fff;
  margin-right: 20px;
  display: flex;
  align-items: center;
}
.list-style-one li i {
  margin-right: 5px;
  color: #d69749;
  font-size: 14px;
  line-height: 20px;
}
.list-style-one li a {
  display: inline-block;
  color: #fff;
  transition: all 300ms ease;
}
.list-style-one li a:hover {
  opacity: 0.8;
}

.social-icon-one {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.social-icon-one li {
  position: relative;
  margin-left: 0px;
}
.social-icon-one li:first-child {
  margin-right: 0;
}
.social-icon-one li a {
  position: relative;
  display: block;
  line-height: 40px;
  width: 35px;
  height: 40px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  transition: all 300ms ease;
}
.social-icon-one li a:hover {
  color: #d69749;
}

.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
  overflow: hidden;
  transform: scale(0.95);
}
.search-popup .search-back-drop {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #28357b;
  opacity: 0.95;
}
.search-popup .close-search {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 26px;
  color: #d69749;
  z-index: 3;
  border-radius: 50%;
  background-color: transparent;
  transition: all 500ms ease;
}
.search-popup .search-inner {
  position: relative;
  display: block;
  top: 40%;
  height: auto;
  z-index: 1;
  width: calc(100% - 60px);
  max-width: 800px;
  margin: auto;
  opacity: 0;
  transform: translateY(-50px);
  transition: all 300ms ease;
}
.search-popup .form-group {
  position: relative;
  display: flex;
  align-items: center;
}
.search-popup .form-group input[type=search],
.search-popup .form-group input[type=text] {
  position: relative;
  display: block;
  line-height: 20px;
  font-size: 16px;
  width: 100%;
  height: 50px;
  border: 1px solid #e1e6dc;
  padding: 15px 20px;
  color: #707070;
  background: #fff;
  border-radius: 5px;
  transition: all 500ms ease;
}
.search-popup .form-group input[type=search]:focus,
.search-popup .form-group input[type=text]:focus {
  border-color: #d69749;
}
.search-popup .form-group button {
  position: absolute;
  right: 5px;
  top: 5px;
  height: 40px;
  width: 40px;
  display: block;
  font-size: 14px;
  color: #fff;
  line-height: 40px;
  border-radius: 5px;
  font-weight: normal;
  background: #d69749;
  transition: all 500ms ease;
}
.search-popup .form-group button:hover {
  background: #d69749;
  color: #fff;
}
.search-popup textarea::-moz-placeholder, .search-popup input::-moz-placeholder {
  color: inherit;
}
.search-popup textarea::placeholder,
.search-popup input::placeholder {
  color: inherit;
}

.mobile-search-active .search-popup {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  border-radius: 0%;
}
.mobile-search-active .search-popup .search-inner {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 500ms;
}

::-moz-selection {
  background: #fff;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #fff;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #333;
  color: #fff;
  text-shadow: none;
}

::-webkit-selection {
  background: #333;
  color: #fff;
  text-shadow: none;
}

:active,
:focus {
  outline: none !important;
}

body {
  background-color: #fff;
  font-family: "DM Sans", sans-serif;
}

body,
p,
.text {
  color: #767676;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
}

/* -------- Headings ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #28357b;
  position: relative;
  line-height: 1.2em;
}
h1 small,
h1 .small,
h2 small,
h2 .small,
h3 small,
h3 .small,
h4 small,
h4 .small,
h5 small,
h5 .small,
h6 small,
h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #28357b;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  font-weight: inherit;
}

h1,
h2,
h3 {
  margin-bottom: 2rem;
  margin-top: 0;
}

h4,
h5,
h6 {
  margin-bottom: 1rem;
  margin-top: 0.75rem;
}

h1 {
  font-size: 90px;
  font-weight: 800;
  line-height: 1.1;
}

h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.4;
}

h3 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.4;
}

h4 {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.4;
}

h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

h6 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

table p {
  margin-bottom: 0;
}

p {
  margin-bottom: 20px;
}

a {
  color: #352F27;
  text-decoration: none;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
}
a:hover, a:focus {
  color: #28357b;
  text-decoration: none;
  outline: none;
}
a b,
a strong {
  transition: all 0.3s ease;
}
a img {
  border: none;
}

pre,
ul,
ol,
dl,
dd,
blockquote,
address,
table,
fieldset {
  margin-bottom: 10px;
}

ol,
ul {
  list-style-position: inside;
  margin: 0;
  padding: 0;
}

b {
  color: #333;
  font-weight: 700;
}

iframe {
  border: none !important;
}

.article-card {
  position: relative;
}
.article-card .inner-box {
  position: relative;
  transition: all 300ms ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  height: 100%;
}
.article-card .inner-box:hover .image-box .image a:after {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 400ms linear;
}
.article-card .inner-box:hover .image img {
  transform: scale(1.1);
}
.article-card .inner-box:hover .read-more {
  width: 100%;
  left: 0%;
  opacity: 1;
}
.article-card .image-box {
  position: relative;
}
.article-card .image-box .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  height: 250px;
}
.article-card .image-box .image img {
  display: block;
  border-radius: 10px 10px 0 0;
  width: 100%;
  transition: all 400ms ease;
  height: 100%;
}
.article-card .image-box .image a:after {
  background: rgba(255, 255, 255, 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  transition: all 400ms linear;
}
.article-card .image-box .date {
  position: absolute;
  right: 20px;
  bottom: -10px;
  background: #28357b;
  color: #fff;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 60px;
  width: 60px;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
}
.article-card .image-box .date b {
  font-size: 16px;
  display: block;
  font-weight: 700;
  color: #fff;
}
.article-card .image-box .date:before {
  position: absolute;
  bottom: 0;
  left: -10px;
  border-right: 10px solid #28357b;
  border-bottom: 10px solid transparent;
  content: "";
}
.article-card .image-box .date:after {
  position: absolute;
  bottom: 0;
  right: -10px;
  border-left: 10px solid #28357b;
  border-bottom: 10px solid transparent;
  content: "";
}
.article-card .lower-content {
  position: relative;
  padding: 25px 25px 35px;
  height: calc(100% - 250px);
}
.article-card .title {
  position: relative;
  display: block;
  color: #28357b;
}
.article-card .title a {
  color: #28357b;
  display: inline-block;
  transition: all 300ms ease;
}
.article-card .title a:hover {
  color: #28357b;
}
.article-card .info {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card .read-more {
  position: absolute;
  left: 50%;
  bottom: -20px;
  width: 0%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  line-height: 20px;
  padding: 10px 40px;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 700;
  color: #fff;
  background-color: #28357b;
  border-radius: 0 0 10px 10px;
  transition: all 300ms ease;
  transition: all 400ms linear;
  opacity: 0;
}

.col-lg-3 .article-card .image-box {
  position: relative;
}
.col-lg-3 .article-card .image-box .image {
  height: 200px;
}
.col-lg-3 .article-card .lower-content {
  height: calc(100% - 200px);
}

.page-title {
  position: relative;
  padding: 15px 0;
}
.page-title:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #28357b;
  content: "";
}
.page-title .title {
  font-size: 32px;
  color: #fff;
  position: relative;
  font-weight: bold;
}
.page-title .text {
  position: relative;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  max-width: 520px;
}

.page-breadcrumb {
  position: relative;
  margin: 5px 0;
}
.page-breadcrumb li {
  position: relative;
  display: inline-block;
  margin-right: 12px;
  padding-right: 13px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}
.page-breadcrumb li:after {
  position: absolute;
  content: "\f105";
  right: -6px;
  top: 1px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  color: #fff;
}
.page-breadcrumb li:last-child {
  padding-right: 0px;
  margin-right: 0px;
}
.page-breadcrumb li:last-child::after {
  display: none;
}
.page-breadcrumb li a {
  color: #d69749;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.3s ease;
}
.page-breadcrumb li a:hover {
  color: #fff;
}

.destination-card {
  position: relative;
}
.destination-card .inner-box {
  position: relative;
}
.destination-card .inner-box:hover .image-box .icon {
  right: 30px;
  top: 30px;
  opacity: 1;
}
.destination-card .inner-box:hover .image img {
  transform: scale(1.1);
}
.destination-card .inner-box:hover .image:before {
  height: 30%;
}
.destination-card .image-box {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.destination-card .image-box .image {
  position: relative;
  margin-bottom: 0px;
}
.destination-card .image-box .image a {
  display: block;
  width: 100%;
  transition: none !important;
}
.destination-card .image-box .image::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 70%;
  width: 100%;
  content: "";
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #1d1d29 100%);
  pointer-events: none;
  z-index: 2;
  transition: all 500ms ease;
}
.destination-card .image-box .image img {
  width: 100%;
}
.destination-card .image-box .icon {
  position: absolute;
  right: 20px;
  top: 20px;
  height: 50px;
  width: 50px;
  background-color: #28357b;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: all 300ms ease;
  opacity: 0;
}
.destination-card .content-box {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 50px 50px;
  z-index: 9;
}
.destination-card .content-box .sub-title {
  position: relative;
  padding-top: 20px;
  font-size: 14px;
  line-height: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}
.destination-card .content-box .sub-title:before {
  position: absolute;
  top: 0;
  height: 3px;
  width: 35px;
  background-color: #28357b;
  content: "";
}
.destination-card .content-box .title {
  display: block;
  color: #fff;
  margin-bottom: 0;
  margin-top: 5px;
}
.destination-card .content-box .title a {
  color: #fff;
  transition: all 300ms ease;
}

.inner-content {
  margin-top: 1.5rem;
  border: 1px solid #ddd;
  padding: 13px;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(214, 151, 73, 0.15);
}
.inner-content div {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.inner-content a {
  color: #28357b;
  text-decoration: none;
}
.inner-content a:hover, .inner-content a:focus {
  text-decoration: none;
}
.inner-content a.tabs {
  color: #000;
}
.inner-content a.tabs:hover, .inner-content a.tabs:focus {
  color: #28357b;
  transition: all 0.4s ease-in-out;
}
.inner-content span, .inner-content p {
  font-family: inherit !important;
  font-size: 1.1rem !important;
}
.inner-content h1, .inner-content h2, .inner-content h3, .inner-content h4 {
  color: #28357b !important;
}
.inner-content h1 span, .inner-content h2 span, .inner-content h3 span, .inner-content h4 span {
  color: #28357b !important;
}
.inner-content h2 {
  font-size: 1.3rem !important;
}
.inner-content h4, .inner-content h3 {
  font-size: 1.2rem !important;
}
.inner-content h5 {
  font-size: 1.1rem !important;
}
.inner-content h1, .inner-content h2, .inner-content h3, .inner-content h4, .inner-content h5, .inner-content h6 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
  font-family: inherit !important;
  font-size: 1.4rem;
  font-weight: bold;
}
.inner-content table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  border: 1px solid #ddd;
}
.inner-content table span {
  font-size: 1rem !important;
}
.inner-content table tbody > tr:first-child {
  background: #28357b;
  color: #000;
}
.inner-content table tbody > tr:first-child > td {
  color: #fff !important;
}
.inner-content table tbody > tr:first-child > td p, .inner-content table tbody > tr:first-child > td span, .inner-content table tbody > tr:first-child > td h1, .inner-content table tbody > tr:first-child > td h2, .inner-content table tbody > tr:first-child > td h3, .inner-content table tbody > tr:first-child > td h4, .inner-content table tbody > tr:first-child > td h5, .inner-content table tbody > tr:first-child > td h6 {
  color: #fff !important;
}
.inner-content table tbody > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border: 1px solid #ddd;
  text-align: center;
}
.inner-content table tbody > tr > td p {
  margin: 0 !important;
}
.inner-content table tbody > tr:nth-child(even) {
  background: #ddd;
}
.inner-content img {
  max-width: 100% !important;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: auto;
}
.inner-content iframe {
  max-width: 100%;
  width: 100%;
  border-radius: 10px;
  height: 476px;
  border: 0;
}

@media (max-width: 991.98px) {
  .inner-content p, .inner-content span {
    font-size: 1.1rem !important;
    line-height: 1.5 !important;
    max-width: 100%;
  }
  .inner-content h1, .inner-content h2, .inner-content h3, .inner-content h4, .inner-content h5, .inner-content h6 {
    font-size: 1.4rem !important;
  }
  .inner-content h1 p, .inner-content h1 span, .inner-content h2 p, .inner-content h2 span, .inner-content h3 p, .inner-content h3 span, .inner-content h4 p, .inner-content h4 span, .inner-content h5 p, .inner-content h5 span, .inner-content h6 p, .inner-content h6 span {
    font-size: 1.3rem !important;
    line-height: 1.7 !important;
  }
  .inner-content ul, .inner-content ol {
    padding-left: 1rem;
  }
  .inner-content ul li, .inner-content ol li {
    font-size: 1.1rem;
    line-height: 1.6 !important;
  }
  .inner-content iframe {
    height: 250px;
  }
  .inner-content table {
    width: 100% !important;
    display: block;
    border: 0;
    height: auto !important;
    overflow-x: scroll;
    overflow: -moz-scrollbars-none;
    -ms-overflow-style: none;
  }
  .inner-content table::-webkit-scrollbar {
    width: 0 !important;
  }
}
.pagination {
  position: relative;
  display: flex;
  justify-content: center;
  border-top: 1px solid #ece9e0;
  border-bottom: 1px solid #ece9e0;
  padding: 15px 0;
  margin-top: 40px;
}
.pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 14px;
  color: #757873;
  font-weight: 400;
  transition: all 500ms ease;
  border: 2px solid #28357b;
  margin: 0 0.2rem;
  border-radius: 4px;
}
.pagination li a:hover {
  background-color: #28357b;
  color: #fff;
}
.pagination li .active a {
  background-color: #28357b;
  color: #fff;
}

@media (max-width: 991.98px) {
  .pagination {
    margin-top: 20px;
  }
  .pagination li a {
    width: 30px;
    height: 30px;
    font-size: 13px;
    margin: 0 0.1rem;
  }
}
.pagination-show {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ece9e0;
  border-bottom: 1px solid #ece9e0;
  padding: 15px 0;
  margin-top: 40px;
}
.pagination-show li {
  display: inline-flex;
  align-items: center;
}
.pagination-show li .icon a {
  position: relative;
  height: 45px;
  width: 45px;
  position: relative;
  border: 2px solid #28357b;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0e2207;
  font-size: 16px;
  transition: all 500ms ease;
  z-index: 1;
}
.pagination-show li .icon a:hover {
  background-color: #28357b;
  color: #fff;
}
.pagination-show li.next .content {
  text-align: left;
  font-weight: 700;
}
.pagination-show li.previous .content {
  text-align: right;
}

.service-block {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: all 300ms ease;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05);
  z-index: 1;
  height: 100%;
}
.service-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.service-block .image-box {
  display: block;
  height: 250px;
}
.service-block .image-box img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 300ms ease;
}
.service-block .content-box {
  position: relative;
  padding: 20px 30px 35px;
  background-color: #fff;
  height: calc(100% - 250px);
  display: flex;
  flex-direction: column;
}
.service-block .content-box .title {
  color: #28357b;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-block .content-box .title a {
  color: #28357b;
  transition: all 300ms ease;
}
.service-block .content-box .title a:hover {
  color: #28357b;
}
.service-block .content-box .text {
  font-size: 15px;
  line-height: 30px;
  color: #28357b;
  font-weight: 500;
}

.error-page__inner {
  position: relative;
  display: block;
  text-align: center;
}
.error-page__inner .error-page__title-box {
  position: relative;
  display: block;
}
.error-page__inner .error-page__title {
  position: relative;
  display: inline-block;
  font-size: 280px;
  line-height: 280px;
  margin-bottom: 0;
  color: #28357b;
}
.error-page__inner .error-page__sub-title {
  font-size: 40px;
  text-transform: uppercase;
  line-height: 50px;
  margin-top: -16px;
}
.error-page__inner .error-page__text {
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}

.about-section {
  position: relative;
  padding: 70px 0;
}
.about-section .float-image {
  position: absolute;
  right: -430px;
  bottom: -90px;
  z-index: 9;
}
.about-section .icon-dotted-map {
  left: -320px;
  bottom: 100px;
}
.about-section .content-column {
  position: relative;
  margin-bottom: 50px;
  z-index: 1;
}
.about-section .content-column .inner-column {
  position: relative;
}

.about-block {
  position: relative;
  padding-left: 100px;
  min-height: 90px;
  padding-bottom: 25px;
  border-bottom: 1px solid #efeae4;
  margin-bottom: 25px;
}
.about-block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.about-block .icon {
  position: absolute;
  left: 0;
  top: 0;
  height: 90px;
  width: 70px;
  background: #f8f5f1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 2px solid #d69749;
  font-size: 48px;
  color: #d69749;
  transition: all 300ms ease;
  border-radius: 0 0 50px 50px;
}
.about-block:hover .icon {
  background-color: #28357b;
  color: #ff9205;
}
.about-block .title {
  position: relative;
  font-size: 24px;
  color: #28357b;
  font-weight: 700;
  top: -3px;
  margin-bottom: 10px;
}
.about-block .text {
  font-size: 16px;
  line-height: 28px;
  color: #767676;
  margin-top: 5px;
}

.about-section .image-column {
  position: relative;
  margin-bottom: 30px;
}
.about-section .image-column .inner-column {
  position: relative;
  display: flex;
  height: 100%;
}
.about-section .image-column .image-1 {
  position: relative;
}
.about-section .image-column .image-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.about-section .experience {
  position: absolute;
  bottom: 150px;
  left: -90px;
  max-width: 240px;
  background: #fff;
  padding: 30px 30px 25px 30px;
  font-size: 14px;
  line-height: 20px;
  color: #767676;
  font-weight: 700;
  border: 3px solid #28357b;
  border-radius: 10px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
  text-transform: uppercase;
}
.about-section .experience:before {
  position: absolute;
  left: 100%;
  bottom: 0;
  margin-left: -10px;
  border-right: 30px solid transparent;
  border-bottom: 30px solid #fff;
  content: "";
}
.about-section .experience strong {
  position: relative;
  padding-left: 70px;
  font-size: 24px;
  line-height: 20px;
  color: #28357b;
  font-weight: 700;
  display: block;
  min-height: 54px;
  margin-bottom: 20px;
  text-transform: capitalize;
  padding-top: 10px;
}
.about-section .experience strong .icon {
  position: absolute;
  left: 0;
  top: 0;
  color: #d69749;
  font-size: 54px;
  line-height: 1em;
}

.services-section {
  position: relative;
  padding: 70px 0;
  z-index: 1;
}
.services-section .bg-image {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  max-height: 454px;
}
.services-section .bg-image:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #f8f5f1;
  opacity: 0.9;
  content: "";
}
.services-section .icon-wave-line {
  left: -620px;
  bottom: -90px;
}

.rtl .about-section .float-image {
  right: unset;
  left: -430px;
}
.rtl .about-section .icon-dotted-map {
  left: unset;
  right: -320px;
}
.rtl .about-block {
  padding-left: 0;
  padding-right: 100px;
}
.rtl .about-block .icon {
  left: unset;
  right: 0;
}
.rtl .about-section .experience {
  left: unset;
  right: -90px;
}
.rtl .about-section .experience:before {
  left: unset;
  right: 100%;
  margin-left: 0;
  margin-right: -10px;
  border-right: none;
  border-left: 30px solid transparent;
}
.rtl .about-section .experience strong {
  padding-left: 0;
  padding-right: 70px;
}
.rtl .about-section .experience strong .icon {
  left: unset;
  right: 0;
}
.rtl .services-section .icon-wave-line {
  left: unset;
  right: -620px;
}

.top-1 {
  top: 100px;
}

.page-wrapper {
  overflow: initial;
}

.blog-details__img {
  position: relative;
  display: block;
  border-radius: 5px;
  overflow: hidden;
}
.blog-details__img img {
  width: 100%;
  border-radius: 5px;
}
.blog-details__img .blog-details__date {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #28357b;
  text-align: center;
  padding: 21px 24px 20px;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.blog-details__img .blog-details__date .day {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  line-height: 16px;
}
.blog-details__img .blog-details__date .month {
  position: relative;
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  line-height: 12px;
  text-transform: uppercase;
}

h1 {
  font-size: 30px;
  margin-bottom: 1rem;
}

.blog-tags {
  border-top: 1px solid #ece9e0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.blog-tags div {
  color: #0e2207;
  font-size: 20px;
  font-weight: 700;
}
.blog-tags a {
  position: relative;
  font-size: 14px;
  background-color: #28357b;
  color: #fff;
  border: 1px solid #28357b;
  display: inline-block;
  padding: 5px 15px 5px;
  font-weight: 500;
  transition: all 500ms ease;
  border-radius: 50px;
  margin: 0.2rem;
}
.blog-tags a:hover {
  background-color: transparent;
  color: #28357b;
  text-decoration: none;
}

.social-list {
  display: flex;
  align-items: center;
  border-top: 1px solid #ece9e0;
  border-bottom: 1px solid #ece9e0;
}
.social-list div {
  color: #0e2207;
  font-size: 20px;
  font-weight: 700;
}
.social-list a {
  position: relative;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #28357b;
  background-color: #f8f6f1;
  font-size: 15px;
  border-radius: 50%;
  overflow: hidden;
  transition: all 500ms ease;
  z-index: 1;
  margin: 0 0.2rem;
}
.social-list a:hover {
  color: #fff;
}
.social-list a:hover:after {
  opacity: 1;
  transform: scaleY(1);
}
.social-list a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: #28357b;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.4s;
  transition-property: all;
  opacity: 1;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: -1;
}

.category-sidebar-single {
  position: relative;
  display: block;
  background: #f6f4ec;
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 20px;
}
.category-sidebar-single h2 {
  font-size: 25px;
}
.category-sidebar-single ul:not(.iti__country-list) {
  position: relative;
  display: block;
  margin-top: 10px;
}
.category-sidebar-single ul:not(.iti__country-list) li {
  position: relative;
  display: block;
  margin-bottom: 5px;
}
.category-sidebar-single ul:not(.iti__country-list) li:last-child {
  margin-bottom: 0;
}
.category-sidebar-single ul:not(.iti__country-list) li a {
  position: relative;
  display: block;
  color: #687469;
  font-size: 18px;
  padding: 15px;
  border-radius: 10px;
  background: transparent;
  transition: all 300ms linear;
  transition-delay: 0.1s;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.category-sidebar-single ul:not(.iti__country-list) li a:hover {
  color: #fff;
}
.category-sidebar-single ul:not(.iti__country-list) li a:hover::before {
  opacity: 1;
  transform: scale(1, 1);
  transform-origin: bottom left;
}
.category-sidebar-single ul:not(.iti__country-list) li a:hover i {
  color: #fff;
  transition: all 300ms ease;
}
.category-sidebar-single ul:not(.iti__country-list) li a::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  z-index: -1;
  opacity: 1;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  background-color: #28357b;
  transform: scale(0, 1);
  transform-origin: top right;
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.category-sidebar-single ul:not(.iti__country-list) li a i {
  font-size: 16px;
}
.category-sidebar-single ul:not(.iti__country-list) li.current a {
  color: #fff;
}
.category-sidebar-single ul:not(.iti__country-list) li.current a::before {
  opacity: 1;
  transform: scale(1, 1);
  transform-origin: bottom left;
}
.category-sidebar-single ul:not(.iti__country-list) li.current a i {
  color: #fff;
}
.category-sidebar-single ul:not(.iti__country-list) li.current:first-child {
  margin-top: 20px;
}
.category-sidebar-single ul:not(.iti__country-list) li.current:last-child {
  margin-bottom: 35px;
}

.sidebar__single + .sidebar__single {
  margin-top: 30px;
}

.sidebar__title {
  margin: 0;
  font-size: 20px;
  margin-bottom: 5px;
}

.sidebar__post {
  position: relative;
  display: block;
  padding: 20px;
  color: #28357b;
  background-color: #f8f6f1;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}
.sidebar__post .sidebar__post-list {
  margin: 0;
}
.sidebar__post .sidebar__post-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  transition: all 500ms ease;
}
.sidebar__post .sidebar__post-list li a:hover {
  background-color: #fff;
  border-radius: 10px;
}
.sidebar__post .sidebar__post-list li + li {
  margin-top: 11px;
}
.sidebar__post .sidebar__post-list .sidebar__post-image {
  width: 80px;
}
.sidebar__post .sidebar__post-list .sidebar__post-image > img {
  width: 100%;
  border-radius: 10px;
}
.sidebar__post .sidebar__post-list .sidebar__post-content {
  width: calc(100% - 95px);
  position: relative;
  font-size: 18px;
  line-height: 26px;
}

.table-content .h4 {
  color: #28357b;
}

.toc-list {
  list-style: initial;
}
.toc-list .toc-list-item {
  list-style: initial;
  margin-inline-start: 30px;
}
.toc-list .toc-list-item::marker {
  color: #28357b;
}
.toc-list .toc-list-item .toc-link {
  color: #28357b !important;
  font-size: 16px !important;
}

.toc-link::before {
  display: none !important;
}

.is-active-link {
  font-weight: initial !important;
}

.rtl .blog-details__img .blog-details__date {
  right: unset;
  left: 0;
}
.rtl .sidebar__post .sidebar__title {
  margin-left: 0;
  margin-right: 20px;
}
.rtl .sidebar__post .sidebar__post-list .sidebar__post-image {
  margin-right: 0;
  margin-left: 20px;
}

.pagination li.active a {
  background-color: #28357b;
  color: #fff;
}

.product-details__quantity {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.product-details__quantity .quantity-box {
  position: relative;
  width: 100%;
  border-radius: 10px;
  height: 60px;
}
.product-details__quantity .quantity-box input {
  width: 100%;
  min-width: 100px;
  border-radius: 10px;
  height: 60px;
  border: 1px solid #e0e4e8;
  appearance: textfield;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  padding-left: 30px;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  color: #28357b;
}
.product-details__quantity .quantity-box button {
  width: 29px;
  height: 29px;
  background-color: transparent;
  color: #fff;
  font-size: 8px;
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: #28357b;
  border: none;
  border-left: 1px solid #e0e4e8;
  border-top-right-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  transition: all 300ms ease;
}
.product-details__quantity .quantity-box button:hover {
  color: #fff;
  background-color: #28357b;
}
.product-details__quantity .quantity-box button.sub {
  bottom: 1px;
  top: auto;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 10px;
}

.tbl-shopping-cart .product-thumbnail {
  min-width: 64px;
}
.tbl-shopping-cart img {
  width: 64px;
  box-shadow: none;
}
.tbl-shopping-cart th,
.tbl-shopping-cart td {
  vertical-align: middle;
  border-left: 1px solid #e3e3e3;
  padding: 20px 30px;
}
.tbl-shopping-cart .product-name a {
  color: #28357b;
}
.tbl-shopping-cart .product-remove {
  text-align: center;
}
.tbl-shopping-cart .product-remove .remove {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 24px;
  transition: all 300ms ease-out;
  background-color: #757575;
  color: #fff;
  text-align: center;
  cursor: pointer;
}
.tbl-shopping-cart .coupon-form .apply-button {
  position: relative;
  display: inline-block;
  color: #1e2434;
  background: #f4f5f4;
  padding: 15px 29px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 500ms ease;
}
.tbl-shopping-cart .coupon-form .apply-button:hover {
  background-color: #d69749;
}

.tbl-shopping-cart > thead > tr > th,
.tbl-shopping-cart > tbody > tr > th,
.tbl-shopping-cart > tfoot > tr > th {
  color: #444;
}

.contact-details__info {
  position: relative;
  display: block;
  margin-top: 41px;
}
.contact-details__info li {
  position: relative;
  display: flex;
  align-items: center;
}
.contact-details__info li .icon {
  height: 80px;
  width: 80px;
  background-color: #28357b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
  border-radius: 50%;
}
.contact-details__info li .icon span {
  color: #fff;
  font-size: 25px;
  transition: all 500ms ease;
}
.contact-details__info li .text {
  width: calc(100% - 110px);
}
.contact-details__info li .text h6 {
  margin-bottom: 5px;
  margin-top: 0;
}
.contact-details__info li:hover .icon {
  background-color: #d69749;
}
.contact-details__info li .text {
  margin-left: 30px;
}
.contact-details__info li .text p {
  font-size: 14px;
  line-height: 24px;
}
.contact-details__info li .text a {
  font-size: 18px;
  transition: all 500ms ease;
}
.contact-details__info li .text span {
  font-size: 20px;
}
.contact-details__info li + li {
  margin-top: 30px;
}

.rtl .contact-details__info li .text {
  margin-left: 0;
  margin-right: 30px;
}

.main-slider, .hero-video {
  position: relative;
}
.main-slider video, .hero-video video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: calc(100vh - 120px);
  max-height: 800px;
}
.main-slider::before, .hero-video::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.features-section {
  position: relative;
  padding: 60px 0 90px;
  z-index: 1;
}

.feature-block {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}
.feature-block .inner-box {
  position: relative;
  display: flex;
  border: 1px solid #d69749;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  transition: all 300ms ease;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
}
.feature-block .inner-box:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-10px);
}
.feature-block .inner-box:hover .image img {
  transform: scale(1.2);
}
.feature-block .icon-box {
  position: relative;
  background-color: #d69749;
  min-width: 110px;
  text-align: center;
  padding: 25px 15px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.feature-block .icon-box .icon {
  display: block;
  color: #fff;
  font-size: 64px;
  transition: all 300ms ease;
}
.feature-block .icon-box .count {
  font-size: 40px;
  line-height: 1em;
  transition: all 300ms ease;
  color: transparent;
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: #fff;
}
.feature-block .content-box {
  position: relative;
  padding: 25px 30px;
}
.feature-block .content-box .title {
  color: #28357b;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}
.feature-block .content-box .title a {
  color: #28357b;
  transition: all 300ms ease;
}
.feature-block .content-box .title a:hover {
  color: #28357b;
}
.feature-block .content-box .text {
  font-size: 16px;
  line-height: 26px;
  color: #767676;
}
.feature-block:hover .icon-box .count {
  color: #fff;
}

.about-section {
  position: relative;
  padding: 120px 0 70px;
}
.about-section .float-image {
  position: absolute;
  right: -430px;
  bottom: -90px;
  z-index: 9;
}
.about-section .icon-dots-1 {
  left: -100px;
  top: -50px;
}
.about-section .icon-dotted-map {
  left: -320px;
  bottom: 100px;
}
.about-section .content-column {
  position: relative;
  margin-bottom: 50px;
  z-index: 1;
}
.about-section .content-column .inner-column {
  position: relative;
}

.about-block {
  position: relative;
  padding-left: 100px;
  min-height: 90px;
  padding-bottom: 25px;
  border-bottom: 1px solid #efeae4;
  margin-bottom: 25px;
}
.about-block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.about-block .icon {
  position: absolute;
  left: 0;
  top: 0;
  height: 90px;
  width: 70px;
  background: #f8f5f1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 2px solid #d69749;
  font-size: 48px;
  color: #d69749;
  transition: all 300ms ease;
  border-radius: 0 0 50px 50px;
}
.about-block:hover .icon {
  background-color: #28357b;
  color: #ff9205;
}
.about-block .title {
  position: relative;
  font-size: 24px;
  color: #28357b;
  font-weight: 700;
  top: -3px;
  margin-bottom: 10px;
}
.about-block .text {
  font-size: 16px;
  line-height: 28px;
  color: #767676;
  margin-top: 5px;
}

.about-section .image-column {
  position: relative;
  margin-bottom: 30px;
}
.about-section .image-column .inner-column {
  position: relative;
  display: flex;
  height: 100%;
}
.about-section .image-column .image-1 {
  position: relative;
}
.about-section .image-column .image-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.about-section .experience {
  position: absolute;
  bottom: 150px;
  left: -90px;
  max-width: 240px;
  background: #fff;
  padding: 30px 30px 25px 30px;
  font-size: 14px;
  line-height: 20px;
  color: #767676;
  font-weight: 700;
  border: 3px solid #28357b;
  border-radius: 10px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
  text-transform: uppercase;
}
.about-section .experience:before {
  position: absolute;
  left: 100%;
  bottom: 0;
  margin-left: -10px;
  border-right: 30px solid transparent;
  border-bottom: 30px solid #fff;
  content: "";
}
.about-section .experience strong {
  position: relative;
  padding-left: 70px;
  font-size: 24px;
  line-height: 20px;
  color: #28357b;
  font-weight: 700;
  display: block;
  min-height: 54px;
  margin-bottom: 20px;
  text-transform: capitalize;
  padding-top: 10px;
}
.about-section .experience strong .icon {
  position: absolute;
  left: 0;
  top: 0;
  color: #d69749;
  font-size: 54px;
  line-height: 1em;
}

.services-section {
  position: relative;
  padding: 70px 0 0;
  z-index: 1;
}
.services-section .bg-image {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  max-height: 454px;
}
.services-section .bg-image:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #f8f5f1;
  opacity: 0.9;
  content: "";
}
.services-section .icon-wave-line {
  left: -620px;
  bottom: -90px;
}

.sec-title {
  position: relative;
  margin-bottom: 50px;
}
.sec-title h1 {
  position: relative;
  font-size: 60px;
  line-height: 1.2em;
  color: #28357b;
  font-weight: 700;
}
.sec-title h1.h2 {
  font-size: 40px;
}
.sec-title h2 {
  position: relative;
  font-size: 48px;
  line-height: 1.2em;
  color: #28357b;
  font-weight: 700;
}
.sec-title h2.h3 {
  font-size: 30px;
}
.sec-title .text {
  font-size: 16px;
  line-height: 30px;
  color: #767676;
  margin-top: 30px;
}

.work-section {
  position: relative;
  padding: 120px 0 90px;
}
.work-section .icon-dotted-map-2 {
  right: 0;
  margin: 0 auto;
  top: 170px;
}
.work-section .icon-plane-1 {
  top: 150px;
  left: 100%;
  margin-left: 130px;
}

.work-block {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 50px;
}
.work-block:last-child .icon-box:after {
  display: none;
}
.work-block .inner-box {
  position: relative;
}
.work-block .inner-box:hover .icon-box .icon {
  color: #fff;
  transform: rotate(180deg) scale(-1);
}
.work-block .icon-box {
  position: relative;
  height: 190px;
  width: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
  transition: all 500ms ease;
  border-radius: 50%;
  margin: 0 auto 30px;
  background-color: #fff;
}
.work-block .icon-box:before {
  position: absolute;
  right: -30px;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  z-index: -1;
  content: "";
}
.work-block .icon-box:after {
  position: absolute;
  left: 100%;
  height: 10px;
  width: 140px;
  background-image: url(../images/icons/dots.png);
  content: "";
  margin-left: 45px;
}
.work-block .icon-box .count {
  position: absolute;
  left: 0;
  top: 0;
  height: 65px;
  width: 65px;
  font-size: 20px;
  color: #767676;
  background-color: #eee9e3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.work-block .icon-box .icon {
  color: #28357b;
  font-size: 72px;
  transition: all 300ms ease;
}
.work-block .title {
  position: relative;
  font-size: 24px;
  color: #28357b;
  font-weight: 700;
  padding-top: 25px;
}
.work-block .title:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 7px;
  width: 185px;
  content: "";
}

.destination-section {
  position: relative;
  padding: 20px 0 80px;
}

.news-section {
  position: relative;
  padding: 30px 0 60px;
  overflow: hidden;
}
.news-section .float-image {
  position: absolute;
  left: -370px;
  bottom: -20px;
}

.testimonial-card {
  position: relative;
  border-radius: 10px;
  transition: all 0.35s;
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
}
.testimonial-card img {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.testimonial-card:hover .play-icon {
  cursor: pointer;
}
.testimonial-card:hover .play-icon::before {
  inset: -8px;
  background: #28357b;
}
.testimonial-card:hover .play-icon::after {
  inset: -24px;
  background: #28357b;
}
.testimonial-card .play-icon {
  position: absolute;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 34.94px;
  height: 34.94px;
  background: rgba(45, 55, 60, 0.6);
  border-radius: 50%;
  z-index: 1;
  transition: all 0.2s ease-in-out;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.testimonial-card .play-icon::before {
  position: absolute;
  content: "";
  inset: -6px;
  background: rgba(214, 151, 73, 0.5);
  border-radius: 50%;
  z-index: 1;
  transition: all 0.2s ease-in-out;
}
.testimonial-card .play-icon::after {
  position: absolute;
  content: "";
  inset: -12px;
  background: rgba(214, 151, 73, 0.4);
  border-radius: 50%;
  z-index: -1;
  transition: all 0.2s ease-in-out;
}
.testimonial-card .play-icon i {
  font-size: 18px;
  color: #fff;
  position: relative;
  z-index: 2;
  margin-left: 4px;
}

.rtl .about-section .float-image {
  right: unset;
  left: -430px;
}
.rtl .about-section .icon-dots-1 {
  left: unset;
  right: -100px;
}
.rtl .about-section .icon-dotted-map {
  left: unset;
  right: -320px;
}
.rtl .about-block {
  padding-left: 0;
  padding-right: 100px;
}
.rtl .about-block .icon {
  left: unset;
  right: 0;
}
.rtl .about-section .experience {
  left: unset;
  right: -90px;
}
.rtl .about-section .experience:before {
  left: unset;
  right: 100%;
  margin-left: 0;
  margin-right: -10px;
  border-right: 0;
  border-left: 30px solid transparent;
}
.rtl .about-section .experience strong {
  padding-left: 0;
  padding-right: 70px;
}
.rtl .about-section .experience strong .icon {
  left: unset;
  right: 0;
}
.rtl .services-section .icon-wave-line {
  left: unset;
  right: -620px;
}
.rtl .work-section .icon-dotted-map-2 {
  right: unset;
  left: 0;
}
.rtl .work-section .icon-plane-1 {
  left: unset;
  right: 100%;
  margin-left: 0;
  margin-right: 130px;
}
.rtl .work-block .icon-box:before {
  right: unset;
  left: -30px;
}
.rtl .work-block .icon-box:after {
  left: unset;
  right: 100%;
  margin-left: 0;
  margin-right: 45px;
}
.rtl .work-block .icon-box .count {
  left: unset;
  right: 0;
}

.team-details__top-name {
  font-size: 35px;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 3px;
}

.proj-show {
  height: 434px;
}
.proj-show .proj-show-carousel .owl-item img {
  height: 434px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.proj-thumbs-carousel .owl-stage-outer {
  padding-top: 1rem;
}
.proj-thumbs-carousel .owl-stage-outer .owl-item {
  cursor: pointer;
}
.proj-thumbs-carousel .owl-stage-outer .owl-item img {
  width: 160px;
  height: 83px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
.proj-thumbs-carousel .owl-stage-outer .owl-item:hover {
  opacity: 0.8;
  transition: all 0.4s ease-in-out;
}
.proj-thumbs-carousel .owl-stage-outer .center img {
  width: 160px;
  height: 110px;
  margin-top: -0.5rem;
}

.team-details__social {
  position: relative;
  display: flex;
  align-items: center;
}
.team-details__social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #28357b;
  color: #fff;
  font-size: 15px;
  border-radius: 50%;
  transition: all 500ms ease;
}
.team-details__social a:hover {
  background-color: #d69749;
}
.team-details__social a + a {
  margin-left: 10px;
}

.team-contact-form {
  background-color: #eef0f6;
}
.team-contact-form input[type=text],
.team-contact-form input[type=email] {
  background-color: #fff;
}
.team-contact-form textarea {
  background-color: #fff;
  height: 180px;
}

@media (max-width: 991.98px) {
  .proj-show {
    height: 200px;
  }
  .proj-show .proj-show-carousel .owl-nav .owl-next i, .proj-show .proj-show-carousel .owl-nav .owl-prev i {
    font-size: 1.2rem;
  }
  .proj-show .proj-show-carousel .owl-item img {
    height: 200px;
  }
  .proj-thumbs-carousel .owl-stage-outer .owl-item img {
    width: 65px;
    height: 40px;
  }
  .proj-thumbs-carousel .owl-stage-outer .center img {
    width: 75px;
    height: 45px;
    margin-top: -0.1rem;
  }
}
.rtl .team-details__social a + a {
  margin-left: 0;
  margin-right: 10px;
}

.service-sidebar {
  position: relative;
  display: block;
  width: 100%;
}
.service-sidebar .service-sidebar-single {
  position: relative;
  display: block;
  background: #f6f4ec;
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 20px;
}
.service-sidebar .service-sidebar-single h2 {
  font-size: 25px;
}
.service-sidebar .service-sidebar-single ul:not(.iti__country-list) {
  position: relative;
  display: block;
  margin-top: 10px;
}
.service-sidebar .service-sidebar-single ul:not(.iti__country-list) li {
  position: relative;
  display: block;
  margin-bottom: 5px;
}
.service-sidebar .service-sidebar-single ul:not(.iti__country-list) li:last-child {
  margin-bottom: 0;
}
.service-sidebar .service-sidebar-single ul:not(.iti__country-list) li a {
  position: relative;
  display: block;
  color: #687469;
  font-size: 18px;
  padding: 15px;
  border-radius: 10px;
  background: transparent;
  transition: all 300ms linear;
  transition-delay: 0.1s;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-sidebar .service-sidebar-single ul:not(.iti__country-list) li a:hover {
  color: #fff;
}
.service-sidebar .service-sidebar-single ul:not(.iti__country-list) li a:hover::before {
  opacity: 1;
  transform: scale(1, 1);
  transform-origin: bottom left;
}
.service-sidebar .service-sidebar-single ul:not(.iti__country-list) li a:hover i {
  color: #fff;
  transition: all 300ms ease;
}
.service-sidebar .service-sidebar-single ul:not(.iti__country-list) li a::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  z-index: -1;
  opacity: 1;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  background-color: #28357b;
  transform: scale(0, 1);
  transform-origin: top right;
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.service-sidebar .service-sidebar-single ul:not(.iti__country-list) li a i {
  font-size: 16px;
}
.service-sidebar .service-sidebar-single ul:not(.iti__country-list) li.current a {
  color: #fff;
}
.service-sidebar .service-sidebar-single ul:not(.iti__country-list) li.current a::before {
  opacity: 1;
  transform: scale(1, 1);
  transform-origin: bottom left;
}
.service-sidebar .service-sidebar-single ul:not(.iti__country-list) li.current a i {
  color: #fff;
}
.service-sidebar .service-sidebar-single ul:not(.iti__country-list) li.current:first-child {
  margin-top: 20px;
}
.service-sidebar .service-sidebar-single ul:not(.iti__country-list) li.current:last-child {
  margin-bottom: 35px;
}
.service-sidebar .form-control, .service-sidebar .input-text {
  background-color: #fff;
}

.services-details img {
  border-radius: 10px;
}
.services-details h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.top-1 {
  top: 100px;
}

.page-wrapper {
  overflow: initial;
}

.rtl .service-sidebar .service-sidebar-single ul:not(.iti__country-list) li a i {
  transform: rotateY(180deg);
}

.project-details__img {
  position: relative;
  display: block;
}
.project-details__img img {
  width: 100%;
  border-radius: 10px;
}

.project-details__content {
  position: relative;
  display: block;
}
.project-details__content h1 {
  font-size: 2rem;
}
.project-details__content .service-sidebar-single {
  position: relative;
  display: block;
  background: #f6f4ec;
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 20px;
}
.project-details__content .service-sidebar-single h2 {
  font-size: 25px;
  margin-bottom: 1rem;
}
.project-details__content .service-sidebar-single .form-control, .project-details__content .service-sidebar-single .input-text {
  background-color: #fff;
}

.top-1 {
  top: 100px;
}

.page-wrapper {
  overflow: initial;
}

.destination-section {
  position: relative;
  padding: 50px 0;
}

.product-block {
  position: relative;
}
.product-block.mix {
  display: none;
}
.product-block .inner-box {
  position: relative;
  border: 1px solid #e4e1d5;
  text-align: center;
  background: #fff;
  overflow: hidden;
  transition: all 300ms ease;
  height: 100%;
}
.product-block .inner-box:hover {
  border: 1px solid #28357b;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}
.product-block .inner-box:hover .image:before {
  left: 100%;
  transition: all 1000ms ease;
}
.product-block .image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 0px;
  height: 200px;
}
.product-block .image:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="$light-color", endColorstr="#00ffffff", GradientType=1);
  content: "";
  opacity: 0.3;
  left: -100%;
  pointer-events: none;
  z-index: 1;
}
.product-block .image img {
  height: 100%;
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.1);
  transition: all 300ms ease;
}

.product-block .inner-box:hover .image img {
  transform: scale(1.2);
}

.product-block .content {
  position: relative;
  padding: 30px 30px 30px;
  height: calc(100% - 200px);
}

.product-block h4 {
  display: block;
  font-size: 22px;
  margin-bottom: 5px;
  margin-top: 0;
}

.product-block h4 a {
  color: #28357b;
  transition: all 300ms ease;
}

.product-block h4 a:hover {
  color: #28357b;
}

.product-block .price {
  display: block;
  font-size: 18px;
  color: #858585;
  font-weight: 600;
}

.product-block .price del {
  display: inline-block;
  margin-left: 15px;
  font-size: 16px;
  color: #ff0000;
  line-height: 27px;
  opacity: 0.3;
}

.product-block .rating {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #28357b;
}

.product-block .tag {
  position: absolute;
  top: 30px;
  left: 20px;
  font-size: 14px;
  line-height: 23px;
  color: #fff;
  background: #FD5F5C;
  font-weight: 400;
  padding: 0 12px;
  border-radius: 3px;
  z-index: 9;
  font-style: italic;
  text-transform: uppercase;
}

.product-block .icon-box {
  position: absolute;
  left: 20px;
  top: 30px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
}

.product-block .inner-box:hover .icon-box {
  top: 20px;
  opacity: 1;
  visibility: visible;
  transition-delay: 300ms;
}

.product-block .ui-btn {
  position: relative;
  display: block;
  height: 40px;
  width: 40px;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  z-index: 9;
  background-color: #28357b;
  cursor: pointer;
  border-radius: 50px;
  margin-bottom: 10px;
  transition: all 300ms ease;
}

.product-block .ui-btn:hover {
  background-color: #28357b;
}

.product-block .cat {
  display: block;
  font-size: 18px;
  color: #707070;
  font-style: italic;
  font-family: "Jost", sans-serif;
  margin-bottom: 5px;
}

.shop-sidebar {
  position: relative;
  display: block;
}
.shop-sidebar .sidebar-widget {
  position: relative;
  display: block;
  background-color: #f8f6f1;
  padding: 35px 30px 37px 30px;
  border-radius: 5px;
  margin-bottom: 30px;
}
.shop-sidebar .sidebar-widget:last-child {
  margin-bottom: 0px;
}
.shop-sidebar .sidebar-widget .widget-title {
  position: relative;
  display: block;
  margin-bottom: 16px;
}
.shop-sidebar .category-widget .category-list li {
  position: relative;
  display: block;
  margin-bottom: 14px;
}
.shop-sidebar .category-widget .category-list li:last-child {
  margin-bottom: 0px;
}
.shop-sidebar .category-widget .category-list li a {
  position: relative;
  display: inline-block;
  color: #646578;
  font-weight: 400;
  padding-left: 20px;
}
.shop-sidebar .category-widget .category-list li a:before {
  position: absolute;
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  left: 0px;
  top: 0px;
  font-size: 16px;
  font-weight: 600;
  color: #28357b;
}
.shop-sidebar .category-widget .category-list li a:hover {
  color: #28357b;
}
.shop-sidebar .post-widget {
  padding-bottom: 9px;
}
.shop-sidebar .post-widget .post {
  position: relative;
  margin-bottom: 23px;
  display: flex;
  justify-content: space-between;
}
.shop-sidebar .post-widget .post:last-child {
  margin-bottom: 0px;
}
.shop-sidebar .post-widget .post .post-thumb {
  width: 30%;
}
.shop-sidebar .post-widget .post .post-thumb img {
  width: 100%;
  border-radius: 5px;
}
.shop-sidebar .post-widget .post .content {
  width: calc(70% - 10px);
  font-size: 14px;
}

.rtl .product-block .inner-box:hover {
  border: 1px solid #28357b;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}
.rtl .product-block .inner-box:hover .image:before {
  left: unset;
  right: 100%;
}
.rtl .product-block .image:before {
  left: unset;
  right: -100%;
}
.rtl .product-block .price del {
  margin-left: unset;
  margin-right: 15px;
}
.rtl .product-block .tag {
  left: unset;
  right: 20px;
}
.rtl .product-block .icon-box {
  left: unset;
  right: 20px;
}
.rtl .shop-sidebar .category-widget .category-list li a {
  padding-left: 0;
  padding-right: 20px;
}
.rtl .shop-sidebar .category-widget .category-list li a:before {
  left: unset;
  right: 0px;
  transform: rotateY(180deg);
}

.thanks-icon {
  width: 4vw;
  height: 4vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #d69749;
  color: #fff;
  font-size: 2vw;
  border-radius: 50%;
  margin: 1.5vw auto 3vw;
}

.thanks-title {
  font-size: 2rem;
}
.thanks-title > div {
  text-align: center;
}

.thanks-btn {
  margin-top: 40px;
}
.thanks-btn a {
  display: inline-block;
  font-weight: 700;
  font-size: 22px;
  color: #000;
  background: #d69749;
  border-radius: 10px;
  padding: 15px 35px;
  transition: 0.3s;
}
.thanks-btn a:hover {
  background: #d69749;
  color: #28357b;
}
.thanks-btn a i {
  margin-right: 5px;
}

@media (max-width: 991.98px) {
  .thanks-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin: 1rem auto 2rem;
  }
  .thanks-title {
    font-size: 1.3rem;
  }
  .thanks-btn a {
    font-size: 16px;
    padding: 10px 15px;
  }
}
