/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Roboto", sans-serif;
  /* color: #4d4643; */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  color: #333;
}

a {
  color: #1bbd36;
  text-decoration: none;
}

a:hover {
  color: #2ae149;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 40px;
  bottom: 85px;
  z-index: 996;
  background: #b4975a;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #131313;
  line-height: 0;
}

.back-to-top:hover {
  background: #b4975a;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #b4975a;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 80px;
}

#header .logo {
  max-height: 60px;
  max-width: 60px;
  height: 60px;
  width: 60px;
  margin-right: 60px;
  margin-top: 8px;
  padding: 8px;
}

#header .logo img {
  max-height: 60px;
  max-width: 60px;
  height: 60px;
  width: 60px;
  margin-right: 60px;
}

@media (max-width: 768px) {
  #header .logo img {
    max-height: 60px;
    max-width: 105px;
    height: 60px;
    width: 105px;
    margin-right: 60px;
  }
}

/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/

.twitter-logo {
  width: 25px;
  height: 25px;
  position: relative;
  display: inline-block;
  margin-right: 18px;
}

.twitter-logo .img-base {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  margin-left: 30px;
  margin-top: 7px;
}

.twitter-logo .img-top {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  margin-left: 30px;
  margin-top: 7px;
}

.twitter-logo:hover .img-top {
  display: inline;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
  background-color: #b4975a;
  margin-top: 27px;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar- ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;

}

.navbar .dropdown-menu {
  background-color: #b4975a;
}

.navbar .dropdown-item {
  background-color: #b4975a;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0 4px 30px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: black;
  white-space: nowrap;
  text-transform: uppercase;
  transition: 0.3s;
  font-size: 13px;
  text-decoration: none;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  text-decoration: none;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: white;
  font-size: 13px;
  text-decoration: none;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #b4975a;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-top: 2px solid #261C02;
  padding-left: 10px;
  padding-right: 10px;
}

.navbar .dropdown ul li {
  max-width: fit-content;
}

.navbar .dropdown ul a {
  padding: 4px 4px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: black;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: white;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: black;
  font-size: 20px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: black;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
    color: black;
  }

  .navbar ul {
    display: none;
  }

  .navbar .portal_link {
    margin-top: 20px;
    text-decoration: none;
    padding: 0;
  }

}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #b4975a;
  transition: 0.3s;
  z-index: 999;
  height: 340px;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  color: black;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #b4975a;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: black;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: white;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #b4975a;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  max-width: fit-content;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: white;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
  max-width: fit-content
}

/* login & search */


/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(230, 75%, 56%);
  --title-color: hsl(230, 75%, 15%);
  --text-color: hsl(230, 12%, 40%);
  --body-color: hsl(230, 100%, 98%);
  --container-color: hsl(230, 100%, 97%);
  --border-color: hsl(230, 25%, 80%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Syne", sans-serif;
  --h2-font-size: 1.25rem;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-fixed: 100;
  --z-modal: 1000;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1023px) {
  :root {
    --h2-font-size: 1.5rem;
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}


input,
button {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}



input,
button {
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.main {
  position: relative;
  height: 100vh;
}

.main__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

.search,
.login {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-modal);
  background-color: hsla(230, 75%, 15%, .1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  /* For safari */
  padding: 8rem 1.5rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}

.search__close,
.login__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--body-color);
  box-shadow: 0 2px 16px hsla(230, 75%, 32%, .15);
  z-index: var(--z-fixed);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  transition: color .4s;
}

.nav__actions {
  display: flex;
  align-items: center;
  column-gap: 3rem;
  margin-left: 24px;
}

.search,
.login {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-modal);
  background-color: hsla(230, 75%, 15%, .1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  /* For safari */
  padding: 8rem 1.5rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}

.search__close,
.login__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--body-color);
  box-shadow: 0 2px 16px hsla(230, 75%, 32%, .15);
  z-index: var(--z-fixed);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  transition: color .4s;
}

.nav__actions {
  display: flex;
  align-items: center;
  column-gap: 3rem;
  margin-left: 24px;
}

.nav__search,
.nav__login,
.nav__toggle,
.nav__close {
  font-size: 1.5rem;
  font-weight: 600;
  color: black;
  cursor: pointer;
  transition: color .4s;
}

:is(.nav__logo, .nav__search, .nav__login, .nav__toggle, .nav__link):hover {
  color: white;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1023px) {
  .nav__menu {
    position: fixed;
    top: -100%;
    left: 0;
    background-color: var(--body-color);
    box-shadow: 0 8px 16px hsla(230, 75%, 32%, .15);
    width: 100%;
    padding-block: 4.5rem 4rem;
    transition: top .4s;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
  text-align: center;
}

.nav__link {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  transition: color .4s;
}

.nav__close {
  position: absolute;
  top: 1.15rem;
  right: 1.5rem;
  visibility: hidden;
}

/* Show menu */
.show-menu {
  top: 0;
}

/*=============== SEARCH ===============*/
.search__form {
  display: flex;
  align-items: center;
  column-gap: .5rem;
  background-color: var(--container-color);
  box-shadow: 0 8px 32px hsla(230, 75%, 15%, .2);
  padding-inline: 1rem;
  border-radius: .5rem;
  transform: translateY(-1rem);
  transition: transform .4s;
}

.search__icon {
  font-size: 1.25rem;
  color: var(--title-color);
}

.search__input {
  width: 100%;
  padding-block: 1rem;
  background-color: var(--container-color);
  color: var(--text-color);
}

.search__input::placeholder {
  color: var(--text-color);
}

/* Show search */
.show-search {
  opacity: 1;
  pointer-events: initial;
}

.show-search .search__form {
  transform: translateY(0);
}

/*=============== LOGIN ===============*/
.login__form,
.login__group {
  display: grid;
}

.login__form {
  background-color: var(--container-color);
  padding: 2rem 1.5rem 2.5rem;
  box-shadow: 0 8px 32px hsla(230, 75%, 15%, .2);
  border-radius: 1rem;
  row-gap: 1.25rem;
  text-align: center;
  transform: translateY(-1rem);
  transition: transform .4s;
}

.login__title {
  font-size: var(--h2-font-size);
  color: var(--title-color);
}

.login__group {
  row-gap: 1rem;
}

.login__label {
  display: block;
  text-align: initial;
  color: var(--title-color);
  font-weight: var(--font-medium);
  margin-bottom: .25rem;
}

.login__input {
  width: 100%;
  background-color: var(--container-color);
  border: 2px solid var(--border-color);
  padding: 1rem;
  border-radius: .5rem;
  color: var(--text-color);
}

.login__input::placeholder {
  color: var(--text-color);
}

.login__signup {
  margin-bottom: .5rem;
}

.login__signup a {
  color: var(--first-color);
}

.login__forgot {
  display: inline-block;
  color: var(--first-color);
  margin-bottom: 1.25rem;
}

.login__button {
  display: inline-block;
  background-color: var(--first-color);
  width: 100%;
  color: #fff;
  font-weight: var(--font-semi-bold);
  padding: 1rem;
  border-radius: .5rem;
  cursor: pointer;
  transition: box-shadow .4s;
}

.login__button:hover {
  box-shadow: 0 4px 24px hsla(230, 75%, 40%, .4);
}

/* Show login */
.show-login {
  opacity: 1;
  pointer-events: initial;
}

.show-login .login__form {
  transform: translateY(0);
}

/*=============== BREAKPOINTS ===============*/
/* For medium devices */
@media screen and (min-width: 576px) {

  .search,
  .login {
    padding-top: 10rem;
  }

  .search__form {
    max-width: 450px;
    margin-inline: auto;
  }

  .search__close,
  .login__close {
    width: max-content;
    top: 5rem;
    left: 0;
    right: 0;
    margin-inline: auto;
    font-size: 2rem;
  }

  .login__form {
    max-width: 400px;
    margin-inline: auto;
  }
}

/* For large devices */
@media screen and (min-width: 1023px) {
  .nav {
    height: calc(var(--header-height) + 2rem);
    column-gap: 3rem;
  }

  .nav__close,
  .nav__toggle {
    display: none;
  }

  .nav__menu {
    margin-left: auto;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 3rem;
  }

  .login__form {
    padding: 3rem 2rem 3.5rem;
  }
}

@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  overflow: hidden;
  position: relative;
}

/* =========================
   CAROUSEL STRUCTURE FIX
========================= */
#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* إزالة أي مشاكل transition تسبب اهتزاز */
#hero .carousel-inner .carousel-item {
  transition-property: opacity;
}

/* =========================
   VIDEO BACKGROUND FIX
========================= */
#hero .carousel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  z-index: 1;

  /* منع الاهتزاز */
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

/* =========================
   OVERLAY (DARK LAYER)
========================= */
#hero .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

/* =========================
   CONTENT CONTAINER
========================= */
#hero .carousel-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;

  position: absolute;
  bottom: 60px;
  top: 70px;
  left: 55px;
  right: 55px;

  z-index: 2;
}

#hero .carousel-content {
  background: rgba(255, 255, 255, 0.7);
  padding: 20px;
  color: black;
  border-top: 5px solid #261C02;
  text-align: center;
}

#hero .carousel-content h2 {
  color: #261C02;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
}

/* =========================
   BUTTON
========================= */
#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 16px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: black;
  border: 2px solid #FFBA0D;
  background-color: #FFBA0D;
}

#hero .btn-get-started:hover {
  background: #FFBA0D;
  color: #fff;
  text-decoration: none;
}

/* =========================
   CAROUSEL FADE FIX
========================= */
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s ease-in-out;
}

/* منع تحريك Bootstrap الافتراضي */
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: none !important;
}

/* =========================
   CONTROLS
========================= */
#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.6);
  color: rgba(255, 255, 255, 0.9);
}

/* =========================
   INDICATORS
========================= */
#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 0.6;
  transition: 0.3s;
  border: 0;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #b4975a;
}

/* =========================
   ANTI SHAKING FIX
========================= */
#hero,
#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-video {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

/* منع أي transitions غير مرغوبة */
#hero .carousel-item,
#hero .carousel-video {
  transition: none !important;
}

/* =========================
   RESPONSIVE
========================= */
@media (min-width: 1024px) {
  #hero .carousel-content {
    width: 60%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 992px) {
  #hero .carousel-container {
    top: 58px;
  }

  #hero .carousel-content h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  #hero .carousel-content p {
    font-size: 15px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 0.1px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f7f7f7;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  padding-top: 30px;

}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #b4975a;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

.section-title1 {
  text-align: center;
  padding-bottom: 30px;
}

.section-title1 h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title1 h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #4b0d1b;
  bottom: 0;
  left: calc(50% - 25px);
}

.main-content {
  min-height: 700px;
  margin-top: 60px;
  /* margin-bottom: 120px; */
}

.form-card {
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-color: var(--white);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 15%);
  scroll-snap-align: start;
  transition: all 0.2s;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(221, 214, 56, 1);
  min-height: 40px;
  /* margin-top: 72px; */
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
  color: #000000;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #000000;
}

.breadcrumbs ol a {
  color: #000000;
  text-decoration: none;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #000000;
  content: "/";
}

@media (max-width: 991px) {
  .breadcrumbs {
    margin-top: 58px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }

}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

/*-- serv */

:root {
  --orange: #b4975a;
  --lightrouby: rgba(75, 0, 27, 0.7);
  --ruby: #4b0d1b;
  --platinum: #e5e5e5;
  --black: #2b2d42;
  --white: #fff;
  --thumb: #edf2f4;
}

.cards {
  display: grid;
  grid-auto-columns: 100%;
  grid-column-gap: 10px;
  grid-auto-flow: column;
  padding: 25px 0px;
  list-style: none;
  overflow-x: scroll;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.card {
  display: flex;
  flex-direction: column;
  padding: 6px;
  /* border-color: lightgray; */
  border-color: white;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 15%);
  scroll-snap-align: start;
  transition: all 0.2s;
  /* min-width: 250px; */
  height: 236px;
}

.card:hover {
  /* color: var(--white); */
  background: var(--white);
  /* border-color: var(--ruby);
  border-width: 1.4px; */
  border-color: lightgray;
  border-width: 0.4px;
}

.card .card-title {
  font-weight: bold;
  font-size: 12px;
  height: 22px;
  padding-left: 10px;
  margin-bottom: var(--bs-card-title-spacer-y);
}

.card .card-content {
  /* margin: 4px 0; */
  max-width: 85%;
  height: 90px;
  font-size: 11px;
  padding-left: 10px;
  padding-top: 14px;
}

.card .card-link-wrapper {
  margin-top: 14px;
}

.card .card-link {
  display: inline-block;
  text-decoration: none;
  color: rgb(0, 0, 0);
  background: var(--orange);
  padding: 0px 12px;
  border-radius: 8px;
  border-color: var(--orange);
  height: 28px;
  margin-top: 38px;
  margin-left: 10px;
  /* transition: background 0.2s; */
}

.card:hover .card-link {
  background: var(--orange);
}

.card .btn-booking {
  display: inline-block;
  text-decoration: none;
  color: white;
  background: var(--ruby);
  padding: 0px 12px;
  border-radius: 8px;
  border-color: var(--ruby);
  height: 28px;
  margin-top: 38px;
  margin-right: 10px;
  /* transition: background 0.2s; */
}

.cards::-webkit-scrollbar {
  height: 12px;
}

.cards::-webkit-scrollbar-thumb,
.cards::-webkit-scrollbar-track {
  border-radius: 92px;
}

.cards::-webkit-scrollbar-thumb {
  background: var(--orange);
}

.cards::-webkit-scrollbar-track {
  background: var(--thumb);
}

@media (min-width: 500px) {
  .cards {
    grid-auto-columns: calc(50% - 10px);
    grid-column-gap: 20px;
  }
}

@media (min-width: 700px) {
  .cards {
    grid-auto-columns: calc(calc(100% / 3) - 20px);
    grid-column-gap: 30px;
  }
}

@media (min-width: 1100px) {
  .cards {
    grid-auto-columns: calc(25% - 30px);
    grid-column-gap: 40px;
  }
}

/*--------------------------------------------------------------
# Service
--------------------------------------------------------------*/

.service #service-flters {
  padding: 0;
  margin: 0 auto 50px auto;
  list-style: none;
  text-align: center;
}

.service #service-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #4d4643;
  transition: all 0.3s;
  border-radius: 4px;
}

.service #service-flters a {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  background: #4b0d1b;
  ;
  transition: all 0.3s;
  border-radius: 4px;
}

.service #service-flters li:hover,
.service #service-flters li.filter-active {
  color: #fff;
  background: #b4975a;
}

.service #service-flters li:last-child {
  margin-right: 0;
}

.service .service-item {
  margin-bottom: 10px;
}

.service .service-item .service-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(75, 0, 27, 0.7);
  padding: 15px;
}

.service .service-item .service-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #b4975a;
}

.service .service-item .service-info p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
}

.service .service-item .service-info .preview-link,
.service .service-item .service-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
}

.service .service-item .service-info .preview-link:hover,
.service .service-item .service-info .details-link:hover {
  color: #b4975a;
}

.service .service-item .service-info .details-link {
  right: 10px;
}

.service .service-item .service-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.service .service-item .service-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.service .service-item .service-links a:hover {
  color: #57e76f;
}

.service .service-item:hover .service-info {
  opacity: 1;
  bottom: 20px;
}

.service .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center;
  border: 1px solid #fff;
}

.service .icon {
  margin: 0 auto 20px auto;
  padding-top: 17px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  background: #fff4df;
}

.service .icon i {
  font-size: 36px;
  line-height: 1;
  color: #b4975a;
}

.service #service-flters1 {
  padding: 0;
  margin: 0 auto 50px auto;
  list-style: none;
  text-align: center;
}

.service #service-flters1 li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #4d4643;
  transition: all 0.3s;
  border-radius: 4px;
}

.service #service-flters1 a {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  background: #4b0d1b;
  transition: all 0.3s;
  border-radius: 4px;
}

.service #service-flters1 li:hover,
.service #service-flters1 li.filter-active1 {
  color: #fff;
  background: #b4975a;
}

.service #service-flters1 li:last-child {
  margin-right: 0;
}

.service .service-item1 {
  margin-bottom: 30px;
}

.service .service-item1 .service-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(75, 0, 27, 0.7);
  padding: 15px;
}

.service .service-item1 .service-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #b4975a;
}

.service .service-item1 .service-info p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
}

.service .service-item1 .service-info .preview-link,
.service .service-item1 .service-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
}

.service .service-item1 .service-info .preview-link:hover,
.service .service-item1 .service-info .details-link:hover {
  color: #b4975a;
}

.service .service-item1 .service-info .details-link {
  right: 10px;
}

.service .service-item1 .service-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.service .service-item1 .service-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.service .service-item1 .service-links a:hover {
  color: #57e76f;
}

.service .service-item1:hover .service-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details {
  padding-top: 40px;
}

.service-details .service-details-slider img {
  width: 100%;
}

.service-details .service-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.service-details .service-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #1bbd36;
}

.service-details .service-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1bbd36;
}

.service-details .service-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(17, 17, 17, 0.08);
}

.service-details .service-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.service-details .service-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details .service-info ul li+li {
  margin-top: 10px;
}

.service-details .service-description {
  padding-top: 30px;
}

.service-details .service-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-details .service-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .clients-wrap {
  border-top: 1px solid #ececec;
  border-left: 1px solid #ececec;
}

.clients .client-logo {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  overflow: hidden;
  background: #fff;
  height: 100px;
}

.clients .client-logo img {
  transition: all 0.3s ease-in-out;
  height: 36px;
  filter: grayscale(100%);
}

.clients .client-logo:hover img {
  filter: none;
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about-us {
  padding-top: 0px;
}

.about-us .content h2 {
  font-weight: 700;
  font-size: 42px;
  line-height: 60px;
  margin-bottom: 20px;
  text-transform: uppercase;
  direction: ltr;
}

.about-us .content h3 {
  font-weight: 500;
  line-height: 32px;
  font-size: 24px;
  direction: ltr;
}

.about-us .content p {
  list-style: none;
  padding: 0;
}

.about-us .content ul {
  list-style: none;
  padding: 0;
}

.about-us .content ul li {
  padding: 10px 0 0 28px;
  position: relative;

}

.about-us .content ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: #b4975a;
}

.about-us .content p:last-child {
  margin-bottom: 0;
}

.about-us .content img {
  width: 500px;
  height: 570px;
}

@media (max-width: 768px) {
  .about-us .content img {
    width: 360px;
    height: 410px;
  }
}


.about-section {
  position: relative;
  padding: 120px 0px;
  padding-left: 100px;
}

.about-section .content-column {
  position: relative;
  /* margin-bottom: 40px; */
}

.about-section .content-column .inner-column {
  position: relative;
  padding-top: 50px;
  padding-right: 100px;
}

.about-section .content-column .text {
  position: relative;
  color: #777777;
  font-size: 15px;
  line-height: 2em;
  /* margin-bottom: 40px; */
}

.about-section .content-column .email {
  position: relative;
  color: #252525;
  font-weight: 700;
  /* margin-bottom: 50px; */
}

.about-section .image-column {
  position: relative;
  /* margin-bottom: 50px; */
}

.about-section .image-column .inner-column {
  position: relative;
  padding: 40px 40px 0px 0px;
  margin-left: 50px;
}

.about-section .image-column .inner-column:after {
  position: absolute;
  content: '';
  right: 0px;
  top: 0px;
  left: 40px;
  bottom: 100px;
  z-index: -1;
  border: 2px solid #b4975a;
}

.about-section .image-column .inner-column .image {
  position: relative;
}

.about-section .image-column .inner-column .image:before {
  position: absolute;
  content: '';
  left: -50px;
  bottom: -50px;
  width: 299px;
  height: 299px;
}

.about-section .image-column .inner-column .image img {
  position: relative;
  width: 100%;
  display: block;
}

.about-section .image-column .inner-column .image .overlay-box {
  position: absolute;
  left: 40px;
  bottom: 48px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box {
  position: relative;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4em;
  padding-left: 125px;
  
}

.about-section .image-column .inner-column .image .overlay-box .year-box .number {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 110px;
  height: 110px;
  color: #b4975a;
  font-size: 28px;
  font-weight: 700;
  line-height: 50px;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #000000;
}

.about-section .btn-style-three:before {
  position: absolute;
  content: '';
  left: 10px;
  top: 10px;
  z-index: -1;
  right: -10px;
  bottom: -10px;
}

.about-section .btn-style-three:hover {
  color: #ffffff;
  background: #b4975a;
  text-decoration: none;
}

.about-section .btn-style-three {
  position: relative;
  line-height: 24px;
  color: #252525;
  font-size: 15px;
  font-weight: 700;
  background: none;
  display: inline-block;
  padding: 11px 40px;
  background-color: #ffffff;
  text-transform: capitalize;
  border: 2px solid #b4975a;
  font-family: 'Arimo', sans-serif;
}

.sec-title2 {
  color: #fff;
}

.sec-title {
  position: relative;
  padding-bottom: 40px;
}

.sec-title .title {
  position: relative;
  color: #b4975a;
  font-size: 18px;
  font-weight: 700;
  padding-right: 50px;
  margin-bottom: 15px;
  display: inline-block;
  text-transform: capitalize;
}

.sec-title .title:before {
  position: absolute;
  content: '';
  right: 0px;
  bottom: 7px;
  width: 40px;
  height: 1px;
  background-color: #bbbbbb;
}

/* mission vision objectives */
.objectives{
  padding-bottom: 40px;
  }
  
.objectives_section,
.choose_head {
  text-align: center;
  margin-bottom: 50px;
}

.objectives_section h2,
.choose_head h2 {
  font-size: 30px;
  color: inherit;
}

.objectives_section h2::before,
.choose_head h2::before {
  content: " ";
  display: block;
  background: red;
  height: 1px;
  width: 40px;
  margin: 0 auto 30px;
}

.objectives_section h5,
.choose_head h5 {
  font-size: 16px;
  color: #888;
  margin: 0 auto;
  font-weight: normal;
  padding-left: 5px;
  padding-right: 5px;
  text-align: justify;
}

.objectives_column {
  padding-left: 2 !important;
  padding-right: 2 !important;
  text-align: justify;
}

.objectives .wd-section-blog .wd-blog-post,
.wd-section-blog-services .wd-blog-post {
  border: 1px solid #C8D92B;
}

.objectives .wd-section-blog-services.style-3 .wd-blog-post {
  margin-top: 40px;
  height: 440px;
}

.objectives .wd-section-blog .wd-blog-post,
.wd-section-blog-services .wd-blog-post {
  border: 1px solid #C8D92B;
  margin-bottom: 20px;
}

.objectives .wd-section-blog h4,
.wd-section-blog-services h4 {
  padding: 0 35px;
}

.objectives .wd-title-element {
  font-size: 19px;
  margin-top: 30px;
  margin-bottom: 16px;
}

.objectives .wd-section-blog-services.style-3 .wd-blog-post h4:after {
  content: " ";
  display: block;
  background-color: #C8D92B;
  height: 3px;
  width: 40px;
  margin: 20px auto 0;
}

.objectives .wd-section-blog p,
.wd-section-blog-services p {
  padding: 4px 15px 15px;
  font-size: 13px;
  text-align: justify;
}

.objectives .wd-section-blog-services.style-3.anim-on .wd-blog-post>div {
  transform: rotate(45deg) translateX(-15px) translateY(-15px);
  opacity: 1;
}

.objectives .wd-section-blog-services.style-3 .wd-blog-post>div {
  transform: rotate(45deg) translateX(-50px) translateY(-50px);
  transition: all 1s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0s;
  opacity: 0;
  width: 140px;
  height: 140px;
  margin: 0px auto;
  border: 2px solid #C8D92B;
}

.objectives .wd-section-blog-services.style-3 .wd-blog-post .img-wrapper {
  overflow: hidden;
  position: absolute;
  top: 0px;
  bottom: 0px;
  width: 100%;
}

.objectives .wd-section-blog-services.style-3 .wd-blog-post>div img {
  transform: rotate(-45deg) scale(2.3) translateY(10px);
  max-width: 100%;
  height: 66%;
}

.objectives .wd-section-blog-services.style-3 .wd-blog-post:hover .shape {
  stroke-dasharray: 760 !important;
  stroke-dashoffset: 10 !important;
  stroke-width: 2px !important;
}

.objectives .wd-title-element {
  font-size: 19px;
  margin-top: 30px;
  margin-bottom: 16px;
}

.objectives .wd-section-blog-services.style-3 .wd-blog-post.nohover .shape {
  stroke-dasharray: 101, 431;
  stroke-dashoffset: -508;
  stroke-width: 8px;
}

.objectives .wd-section-blog-services.style-3 .wd-blog-post .shape {
  stroke-dasharray: 760;
  stroke-dashoffset: 0;
  stroke-width: 2px;
  fill: transparent;
  stroke: #C8D92B;
  border-bottom: 5px solid #000;
  transition: stroke-width 1s ease 0s, stroke-dashoffset 1s ease 0s,
    stroke-dasharray 1s ease 0s;
}

.objectives svg {
  position: absolute;
  top: -6px;
  left: -6px;
}

.objectives .shape {
  stroke-dasharray: 760;
  stroke-dashoffset: 0;
  stroke-width: 2px;
  fill: transparent;
  stroke: #C8D92B;
  border-bottom: 5px solid #000;
  transition: stroke-width 1s ease 0s, stroke-dashoffset 1s ease 0s,
    stroke-dasharray 1s ease 0s;
}

@media (min-width: 992px) {
  .col-md-5ths {
    width: 20%;
    float: left;
  }
}

/* board of directors */

.card {
  transition: all 1s;
  cursor: pointer;
  background-color: #FFF4E2;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  height: 120px;
}

.apointment button {
  color: black;
  font-size: 13px;
  background-color: #488CB9;
  border-color: #488CB9;
  border-radius: 5px;
  height: 72px;
  width: 98%;
}

.apointment button:hover {
  background-color: #488CB9;
  border-color: #488CB9;
  border-radius: 5px;
  color: #000;
  font-size: 13px;
}

/*--------------------------------------------------------------
# WhatsApp floating button
--------------------------------------------------------------*/

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 140px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  /* box-shadow: 2px 2px 3px #999; */
  z-index: 100;
}

.my-float {
  margin-top: 16px;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: #4b0d1b;
  padding: 40px 0 20px 0;
  color: #b4975a;
}

.counts .counters span {
  font-size: 36px;
  display: block;
  font-weight: 700;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Our Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: rgba(221, 214, 56, 1);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
  background: rgba(75, 0, 27, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #fff;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.team .member .social a i {
  line-height: 0;
}

.team .member .social a:hover {
  color: #b4975a;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #111;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #847872;
}

.team .member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Our Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  color: #111;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e7e7e7;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #1bbd36;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: ease-in-out 0.3s;
}

.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.features .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .icon-box h3 a {
  color: #111;
  transition: ease-in-out 0.3s;
}

.features .icon-box h3 a:hover {
  color: #1bbd36;
}

/*--------------------------------------------------------------
# Subscriptions
--------------------------------------------------------------*/
.subscriptions .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  max-height: 890px;
}

.subscriptions h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #847872;
  background: #f8f8f8;
}

.subscriptions h4 {
  font-size: 36px;
  color: #b4975a;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}

.subscriptions h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.subscriptions h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.subscriptions ul {
  padding: 0;
  list-style: none;
  color: #4d4643;
  text-align: center;
  line-height: 15px;
  font-size: 14px;
}

.subscriptions ul li {
  padding-bottom: 16px;
  font-size: 14px;
}

.subscriptions ul i {
  color: #b4975a;
  font-size: 18px;
  padding-right: 4px;
}

.subscriptions ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.subscriptions .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.subscriptions .btn-buy {
  background: #FFBA0D;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 16px;
  color: black;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

.subscriptions .btn-buy:hover {
  background: #FFBA0D;
  color: #fff;
}

.subscriptions .bronze h3 {
  color: #fff;
  background: #CD7F32;
}

.subscriptions .silver h3 {
  color: #fff;
  background: #C0C0C0;
}

.subscriptions .gold h3 {
  color: #fff;
  background: #FDDC5C;
}

.subscriptions .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: red;
  color: #fff;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 40px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #dddddd;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #1977cc;
  float: left;
  width: 44px;
  height: 44px;
  background: #d6e9fa;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2c4964;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info a {
  padding: 0 0 0 16px;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email i,
.contact .info .address i,
.contact .info .phone i {
  background: #b4975a;
  color: #131313;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #b4975a;
  color: #fff;
}

/* *** */

.contact .form_contact {
  width: 100%;
  background: #fff;
}

.contact .form_contact .form-group {
  padding-bottom: 8px;
}

.contact .form_contact .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .form_contact .error-message br+br {
  margin-top: 25px;
}

.contact .form_contact .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .form_contact .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .form_contact .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .form_contact input,
.contact .form_contact textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .form_contact input {
  height: 44px;
}

.contact .form_contact textarea {
  padding: 10px 12px;
}

.contact .form_contact button[type=submit] {
  background: #b4975a;
  border: 0;
  /* padding: 10px 35px; */
  color: #131313;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .form_contact button[type=submit]:hover {
  background: #b4975a;
  color: #fff;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* gallery */
.section-ajeet-title {
  position: relative;
  font-size: 30px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin: 0 0 35px;
}
.gallery-sec {
  padding: 0px 0 40px;
}

.gf-column {
  float: left;
  display: none; /* Hide all elements by default */
}

/* The "show" class is added to the filtered elements */
.show {
  display: block;
}

.filter {
  padding: 20px 2px 10px;
  text-align: center;
  max-width: 1050px;
  margin: auto;
  object-fit: cover;
}

.gf-btn {
  padding: 10px 20px;
  margin: 5px 4px 4px 0;
  display: inline-block;
  color: #000000;
  background: #b4975a;
  font-size: 18px;
  font-weight: 500;
  border: 0px solid #b4975a;
  text-decoration: none;
  transition: all 0.2s;
  border-radius: 0px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  cursor: pointer;
}

.gf-btn:hover,
.gf-btn:active {
  background: #C8D92B;
  color: #ffffff;
}



.gallery {
  display: flex;
  justify-content: center;
  width: fit-content;
  max-width: 1320px;
  flex-wrap: wrap;
  margin: 25px auto;
  /* gap: 14px; */
}
.gallery img {
  width: 300px;
  height: 260px;
  object-fit: cover;
  transition: 0.3s ease-in-out;
  border-radius: 2px;
  overflow: hidden;
  margin: 10px 10px;
  cursor: zoom-in;
}
.gallery img:hover::after {
  content: "E";
}

.gallery img:hover,
video:hover {
  transform: scale(1.1);
}

.butonsSection {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px 15px;
  gap: 15px;
}
.closeBtn {
  font-size: 22px;
  letter-spacing: 2px;
  color: #000;
  transition: all 0.4s linear;
  padding: 8px 50px;
  border-radius: 25px;
  background: #b4975a;
  border: 0;
  outline-offset: -5px;
  outline: 2px solid #000;
  cursor: pointer;
}
.closeBtn:hover {
  cursor: auto;
  background: #C8D92B;
  color: white;
  padding: 8px 45px;
  outline-offset: 4px;
  outline: 2px solid #000;
  cursor: pointer;
}

.openDiv {
  width: 100%;
  height: 100vh;
  background: #000000e7;
  position: fixed;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  left: 0;
  z-index: 9999;
}
.imgPreview {
  /*    width: 70%;  */
  object-fit: scale-down;
  max-height: 80vh;
  height: auto;
  cursor: zoom-out;
}

.sets .hide,
.sets .pophide {
  width: 0%;
  opacity: 0;
}

.all-btn {
  text-align: center;
  background-color: #b4975a;
  border-radius: 30px;
  margin: -15px auto 0;
  font-size: 1rem;
  width: 100%;
  max-width: 300px;
  padding: 5px 10px;
  letter-spacing: 1px;
  cursor: pointer;
}

.all-btn:active {
  transform: translateY(2px);
}

/* Responsive css Code Start */

@media (max-width: 767px) {
  .gallery img {
    margin: 8px 8px;
    width: 175px;
    cursor: zoom-in;
  }

  .closeBtn {
    padding: 8px 25px;
    cursor: pointer;
  }

  .imgPreview {
    width: 80%;
    height: auto;
    cursor: zoom-out;
  }
}

@media (max-width: 575px) {
  .gallery img {
    margin: 8px 6px;
    width: 155px;
    cursor: zoom-in;
  }

  .gf-btn {
    font-size: 15px;
  }

  .closeBtn {
    font-size: 18px;
    padding: 8px 25px;
    border-radius: 15px;
    cursor: pointer;
  }
  .closeBtn:hover {
    padding: 8px 20px;
    cursor: pointer;
  }

  .imgPreview {
    width: 90%;
    /* max-height: 50vh; */
    height: auto;
    cursor: zoom-out;
  }
}


/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/

.blog p {
  font-weight: 400;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  font-family: "Roboto", sans-serif;
}

.blog h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: #131313;
  font-family: "Roboto", serif;
  font-weight: 700;
  line-height: 1.3;
}

.blog h1,
.h1 {
  font-size: 36px;
}

@media (max-width: 991px) {

  .blog h1,
  .h1 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {

  .blog h1,
  .h1 {
    font-size: 26px;
  }
}

.blog h2,
.h2 {
  font-size: 28px;
}

@media (max-width: 767px) {

  .blog h2,
  .h2 {
    font-size: 24px;
  }
}

.blog h3,
.h3 {
  font-size: 22px;
}

@media (max-width: 767px) {

  .blog h3,
  .h3 {
    font-size: 20px;
  }
}

.blog h4,
.h4 {
  font-size: 20px;
}

.blog h5,
.h5 {
  font-size: 16px;
}

.blog h6,
.h6 {
  font-size: 14px;
}


.blog .btn {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  text-transform: capitalize;
  padding: 10px 25px;
  border-radius: 0;
  border: 1px solid;
  position: relative;
  z-index: 1;
  transition: 0.2s ease;
}

.blog .btn:hover,
.btn:active,
.btn.active .btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: none !important;
}

.blog .btn-primary {
  background: #b4975a;
  color: #fff;
  border-color: #b4975a;
}

.blog .btn-primary:hover,
.btn-primary:active,
.btn-primary.active .btn-primary:focus,
.btn-primary.focus {
  background: #b4975a !important;
  border-color: #b4975a !important;
}

.blog .btn-outline-primary {
  background: transparent;
  color: #b4975a;
  border-color: #b4975a;
  width: 120px;
}

.blog .btn-outline-primary:hover,
.btn-outline-primary:active,
.btn-outline-primary.active .btn-outline-primary:focus,
.btn-outline-primary.focus {
  background: #b4975a !important;
  border-color: #b4975a !important;
  color: #fff;
}

.blog .btn-sm {
  font-size: 14px;
  padding: 10px 25px;
}

.blog body {
  background-color: #fff;
  overflow-x: hidden;
}

::-moz-selection {
  background: #b4975a;
  color: #fff;
}

::selection {
  background: #b4975a;
  color: #fff;
}

.blog img {
  vertical-align: middle;
  border: 0;
  max-width: 100%;
  height: auto;
}

.blog a,
a:hover,
a:focus {
  text-decoration: none;
}

.blog a,
button,
select {
  cursor: pointer;
  transition: 0.2s ease;
}

.blog a:focus,
button:focus,
select:focus {
  outline: 0;
}

.blog a:hover {
  color: #b4975a;
}

.blog .slick-slide {
  outline: 0;
}

.blog .section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.blog .section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
}

.blog .section-title::before {
  position: absolute;
  height: 4px;
  width: 100%;
  content: "";
  left: 0;
  top: 0;
  z-index: -1;
}

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

.blog .border-default {
  border-color: #ececec !important;
}

.blog .border-primary {
  border-color: #b4975a !important;
}

.blog .font-primary {
  font-family: "Roboto", sans-serif !important;
}

.blog .font-secondary {
  font-family: "Roboto", serif !important;
}

.blog .font-weight-medium {
  font-weight: 500 !important;
}

.blog .breadcrumb {
  background-color: transparent;
  justify-content: center;
}

.blog .breadcrumb-item {
  font-family: "Roboto", sans-serif;
  letter-spacing: 2px;
  font-size: 10px;
  font-weight: 600;
}

.blog .breadcrumb-item a {
  color: #b4975a;
}

.blog .overlay {
  position: relative;
}

.blog .overlay::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #131313;
  opacity: 0.5;
}

.blog .bg-primary {
  background: #b4975a !important;
}

.blog .text-primary {
  color: #b4975a !important;
}

.blog .text-default {
  color: #333 !important;
}

.blog .bg-dark {
  background-color: #131313 !important;
}

@media screen and (min-width: 1400px) {
  .blog .blog-container {
    max-width: 1320px;
  }
}

.blog .rounded {
  border-radius: 6px !important;
}

@media screen and (min-width: 991px) and (max-width: 1200px) {
  .blog .no-gutters-lg {
    margin-right: 0;
    margin-left: 0;
  }

  .blog .no-gutters-lg>.col,
  .no-gutters-lg>[class*=col-] {
    padding-right: 0;
    padding-left: 0;
  }
}

.blog .mark,
mark {
  padding: 0;
}

.blog .navigation {
  background-color: transparent;
}

.blog .navigation .navbar {
  border-bottom: 1px solid #ececec;
  padding: 25px 0;
}

@media (max-width: 767px) {
  .blog .blog-navigation .blog-navbar {
    padding: 15px 0;
  }
}

.blog .navigation .navbar-nav {
  flex-direction: row;
}

@media (max-width: 991px) {
  .blog .navigation .navbar-nav {
    flex-direction: column;
  }
}

.blog .navigation .navbar-nav:hover .nav-item::after,
.blog .avigation .navbar-nav:hover .nav-link:not(:hover) {
  opacity: 0.5;
}

.blog .navigation .navbar-nav:hover .dropdown:hover .nav-link {
  opacity: 1;
}

.blog .navigation .nav-item {
  margin: 0;
  position: relative;
}

.blog .navigation .nav-item::after {
  position: absolute;
  content: "/";
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 991px) {
  .blog .navigation .nav-item::after {
    display: none;
  }
}

.blog .navigation .nav-item .nav-link {
  font-size: 16px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  text-transform: capitalize;
  line-height: 1;
  display: inline-block;
}

.blog .navigation .nav-item:last-child::after {
  display: none;
}

.blog .navigation .nav-item.dropdown .nav-link {
  position: relative;
  padding-right: 38px !important;
}

@media (max-width: 991px) {
  .blog .navigation .nav-item.dropdown .nav-link {
    padding-right: 28px !important;
  }
}

.blog .navigation .nav-item.dropdown .nav-link::after {
  display: none;
}

.blog .navigation .nav-item.dropdown .nav-link::before {
  position: absolute;
  right: 24px;
  top: calc(50% - 6px);
  display: inline-block;
  vertical-align: 0.255em;
  content: "";
  height: 8px;
  width: 8px;
  border: 2px solid;
  border-left: 0;
  border-top: 0;
  border-color: inherit;
  border-radius: 2px;
  transform: rotate(45deg);
  transition: 0s;
}

@media (max-width: 991px) {
  .blog .navigation .nav-item.dropdown .nav-link::before {
    right: 13px;
  }
}

@media (min-width: 991px) {
  .blog .navigation .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    width: 220px;
    transition: 0.2s;
    left: 50%;
    border-radius: 0;
    transform: translate(-50%, 6px);
  }

  .blog .navigation .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    box-shadow: 0 10px 30px rgba(22, 28, 45, 0.1);
    transform: translate(-50%, -6px);
  }
}

.blog .navigation .dropdown-menu {
  border: 0;
  padding: 0 25px;
}

.blog .navigation .dropdown-menu:hover .dropdown-item:not(:hover) {
  color: #fff;
}

.blog .navigation .dropdown-item {
  font-size: 14px;
  padding: 5px 0;
  font-weight: 500;
}

.blog .navigation .dropdown-item:first-child {
  padding-top: 15px;
}

@media (max-width: 991px) {
  .blog .navigation .dropdown-item:first-child {
    padding-top: 5px;
  }
}

.blog .navigation .dropdown-item:last-child {
  padding-bottom: 15px;
}

@media (max-width: 991px) {
  .blog .navigation .dropdown-item:last-child {
    padding-bottom: 5px;
  }
}

.blog .navigation .dropdown-item.active,
.blog .navigation .dropdown-item:active,
.blog .navigation .dropdown-item:focus,
.blog .navigation .dropdown-item:hover {
  color: initial;
  background-color: transparent;
  color: white;
}

.blog .navigation .navbar-light .navbar-toggler {
  border-color: transparent;
  padding: 0;
  font-size: 20px;
  color: #131313;
  transition: 0.3s ease;
}

.blog .navigation .navbar-light .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.blog .navigation .navbar-light .navbar-nav .nav-link {
  color: #19234C;
  font-weight: 500;
  padding: 15px 20px;
}

.blog .navigation .navbar-light .navbar-nav .nav-link:hover {
  color: #131313;
}

@media (max-width: 991px) {
  .blog .navigation .navbar-nav {
    background-color: #fff;
    padding: 15px 0;
    border-radius: 0;
  }

  .blog .navigation .dropdown-menu {
    text-align: center;
  }

  .blog .navigation .navbar-light .navbar-nav .nav-link {
    padding: 10px 20px;
  }
}

.blog .navigation .search {
  min-width: 200px;
  max-width: 250px;

}

@media (max-width: 767px) {
  .blog .navigation .search {
    width: 100%;
    max-width: initial;
    margin-top: 15px;
  }
}

.blog .navigation .search input {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAAEt2lUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUgNS41LjAiPgogPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICB4bWxuczpleGlmPSJodHRwOi8vbnMuYWRvYmUuY29tL2V4aWYvMS4wLyIKICAgIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIKICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIKICAgIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIgogICAgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIKICAgdGlmZjpJbWFnZUxlbmd0aD0iMzYiCiAgIHRpZmY6SW1hZ2VXaWR0aD0iMzYiCiAgIHRpZmY6UmVzb2x1dGlvblVuaXQ9IjIiCiAgIHRpZmY6WFJlc29sdXRpb249IjcyLjAiCiAgIHRpZmY6WVJlc29sdXRpb249IjcyLjAiCiAgIGV4aWY6UGl4ZWxYRGltZW5zaW9uPSIzNiIKICAgZXhpZjpQaXhlbFlEaW1lbnNpb249IjM2IgogICBleGlmOkNvbG9yU3BhY2U9IjEiCiAgIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiCiAgIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSIKICAgeG1wOk1vZGlmeURhdGU9IjIwMjAtMDMtMDRUMTg6MDc6MjgrMDE6MDAiCiAgIHhtcDpNZXRhZGF0YURhdGU9IjIwMjAtMDMtMDRUMTg6MDc6MjgrMDE6MDAiPgogICA8eG1wTU06SGlzdG9yeT4KICAgIDxyZGY6U2VxPgogICAgIDxyZGY6bGkKICAgICAgc3RFdnQ6YWN0aW9uPSJwcm9kdWNlZCIKICAgICAgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWZmaW5pdHkgUGhvdG8gKFNlcCAyNiAyMDE5KSIKICAgICAgc3RFdnQ6d2hlbj0iMjAyMC0wMy0wNFQxODowNzoyOCswMTowMCIvPgogICAgPC9yZGY6U2VxPgogICA8L3htcE1NOkhpc3Rvcnk+CiAgPC9yZGY6RGVzY3JpcHRpb24+CiA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgo8P3hwYWNrZXQgZW5kPSJyIj8+QByeCQAAAYJpQ0NQc1JHQiBJRUM2MTk2Ni0yLjEAACiRdZHPK0RRFMc/80PkR+PXwsJi0rAaGtTERhlpKEljlF+bN2/em1Ez4/XeSLJVtlOU2Pi14C9gq6yVIlKysrAmNug5z6iRzLmdez73e+853XsuuOMZNWt5Q5DN5c1YNOKfnpn1Vz7iwUsDFTQqqmUMTkyMUdbebnA58arTqVX+3L9Wk9QsFVxVwgOqYeaFR4THlvOGw5vCzWpaSQofCwdNuaDwtaMnivzkcKrIHw6b8dgQuOuF/alfnPjFatrMCsvLCWQzS+rPfZyX1Gq5qUmJbeKtWMSIEsHPKMMMEaabfpnDdNJDl6wokx/6zh9nUXJVmQ1WMFkgRZo8QVGXpLomURddk5Fhxen/375aem9PsXptBCoebPulHSo34LNg2+/7tv15AJ57OMuV8hf3oO9V9EJJC+yCbw1OzktaYgtO16HlzlBM5VvyiLt1HZ6PoG4Gmi6heq7Ys599Dm8hvipfdQHbO9Ah533zX9qeZ6ZKiHq5AAAACXBIWXMAAAsTAAALEwEAmpwYAAAFxklEQVRYhcWXb2gbZRzHf/fcXdJelrsmTdMt6TraVNfOuXa6re02NnXTVdgQBKEMwQkbiC984Tth88VEmOBLQX0hhQmKyBD0hU7nmNDhUGeNuHXrdF36L72maZJ7rk/uLnfP44v1arbFJLahfuEg39+T3/f55C7H8zwcVFBnZ+e6ZDK52bbtrbZtdzLGoowxmTGGEEIEIZTkef4mz/O/BwKBG4lEYqFSZjlx/zYQi8VEQsiTc3Nzxx3HqasmDCFEFUU5L8vy2UQisVgzoPXr1+9IpVKvOI4TXkkoQkhTFOWzTCbz1aqA+vv70ejo6HOaph2llHqLxzweT5Ln+asAkBBFcTGfzxc8Ho+PUtrqOM62QqEQY4wt53EcxyRJ+laSpPdTqRRdEVAgEDiUzWZfLQ4WBGGusbHxU1VVvy8X1NbWtm16evply7JixXVFUb6TZfmDycnJQjVAvPshFAr1LiwsvF4MGQgELre1tb05Pj5+q1JQNptVw+HwBUmSMCHkMTfHNM0YQogYhnGjGiAAABgcHBRFUfwQAL50L0VRXqw6oEg7duzgGhoa9iGEzrlZCKHPW1paHqqmnwcAmJiYOJbP53e6Rb/ff17TtI9WAjQzMwOGYSRkWS6YprkdAIAxJhiG0eg4zg+V+lE4HK7TdX2fWxAEId/e3j60Ephi5XK5L/x+/1XXO47TffjwYW+5HgAA5PP5NlFKAwB334xoNPpWPB4nqwUCAJAkaYjjOHsJSLx8+fLRikDpdPpZWPoDchyXsixrrBYwAABdXV1TXq93wvUY44P79+8XygKZprnLNXV1dbeSyaRVK6BLly7RQCBwzvW2bdePjY3JlYDWuUaSpJFawbg6ceLEFYSQa7nFxUVfWaBi4/P5ZmsNdPr06QIAuHeds21brBqIMVZrnrsUHOcGc8WrQEUgQsiGWsOcPHlSYIx5lizzeDxllxDk9XqXtwmEkO21BhoaGtpFKXXvChVFsey2BHm93p9cYxhGRzQa9ZRr+C86cOAASqfTL7heEASjs7MzVxaooaHhGwBgAACMsRDP81WtOdUoHo+3mKa5yfV+v//i8PCwXRbINM07PM9nl4DQzMzMqf7+/vpaABmGcYwxJgAAIIQKAwMDH1fq4RcXF22fz9dkWdZmAABKqZjNZv2WZf28GhhFUY5gjI+4XhTFkXg8frFSHwIA6OvrO+vxeFS3qOv6gKIoFdedUurr6+NkWd6LMX5peRKE7Kampk+q6ecBAG7fvu0oipI2DGMP/LOx2hoKhZpbWlpG0um0U01YNBoV0un0oUwm85r7qFwmSZKu6bp+pyogAIDe3t4pTdNwPp9f3u0RQtpyudwT4XA4q+t6olxQR0fHI8lk8g1N056BEocHQsjjzc3Nk7quT5XLuacxFouh+fn55zHGg5TS5def4zgQRXEaIRQXBGEcITQPAJRS2uA4TqvjOI8WCoUOxhh6YIbiyTiOhsPhd1VVHa4KyFVTU1NfJpM5btv2io5BPM9rjDGOUuovAcUCgcCZhYWFH0v2lioSQqZ6enq+Nu9qC2Os5PdKTaYoyoVgMHg6GAz+gjE+VGLt4kzT3N3d3f3X7OzszAMZlSZpb2+XU6lUBwD0WJa1hVLaQimVGGPA87yJEJoVBGGU5/lfZVm+NTU1lXZ7N2zYsFlV1beLH38RvBEOh99RVfXqPfVqfvlqFI1GH1ZV9ZRt28r9YwghGgqFzszNzV1xa1U9itUIY5yORqM3McZ7AeCe7StjjCOE7I5EItcxxnNrAgQAoGlaKhKJXNd1/WCJYUQI2ROJRH7DGC+sCRAAAMY41draGscY9zLG7jkOMcYEQshToVDojzUDAgDI5XKpxsbGPw3D2FkCinccp2tNgQAACCGq3++/blnW0/ePUUrlNQcCADBNcz4YDI6YprmHMba86a+vr7/2vwABAOTz+fmNGzeOmqbZjhCSeZ6/FgqF3vsb7AafMhX1W/sAAAAASUVORK5CYII=) 6px 5px no-repeat #fff;
  width: 100%;
  border: none;
  padding: 11px 40px 11px 15px;
  border-radius: 0;
  background-size: 15px;
  background-position: calc(100% - 15px) center;
  border: 1px solid #ddd;
}

.blog .navigation .search input:focus {
  outline: 0;
}

.blog .navbar-footer {
  justify-content: center;
  flex-wrap: wrap;
}

.blog .navbar-footer .nav-item {
  margin: 10px 0;
}

.blog .navbar-footer .nav-item .nav-link {
  color: #fff;
}

.blog .article-card {
  padding: 30px;
  border-radius: 0;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  height: 770px;
}

@media (max-width: 1200px) {
  .blog .article-card-sm {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .blog .article-card {
    padding: 25px;
  }
}

@media (max-width: 575px) {
  .blog .article-card {
    padding: 15px;
  }
}

.blog .card {
  border: 0;
  position: relative;
}

.blog .card-meta {
  padding-left: 0;
}

.blog .card-meta li {
  list-style-type: none;
  margin-right: 10px;
  display: inline-block;
}

.blog .card-meta li a {
  font-weight: 500;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.blog .card-meta li a:hover {
  color: #b4975a;
}

.blog .card-footer {
  background-color: transparent;
}

.blog .card-footer span {
  vertical-align: middle;
  color: #888;
}

.blog .card-img {
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog .card-image {
  position: relative;
}

.blog .card-image img {
  border-radius: 0;
}

.blog .card-image .post-info {
  position: absolute;
  right: 0;
  top: -5px;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.blog .card-image .post-info span {
  display: inline-block;
  line-height: 1.3;
  font-size: 12px;
  padding: 3px 8px;
  padding-top: 4px;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 0;
  margin-top: 5px;
}

.blog .read-more-btn {
  font-family: "Roboto", serif;
  font-size: 18px;
}

.blog .post-title {
  color: #131313;
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(#b4975a, #b4975a);
  background-position: 0% 80%;
  background-repeat: no-repeat;
  text-transform: capitalize;
  background-size: 0% 8px;
  transition: background-size 0.3s;
}

.blog .post-title-sm {
  background-size: 0% 3px;
}

.blog a.post-title:hover {
  color: #131313;
  background-size: 100% 8px;
}

.blog a.post-title-sm:hover {
  background-size: 100% 3px;
}


.blog .pagination {
  justify-content: center;
}

.blog .pagination .page-item .page-link {
  display: inline-block;
  width: 42px;
  height: 42px;
  border-radius: 0;
  border: 1px solid #ececec;
  text-align: center;
  margin: 0 4px;
  font-weight: 500;
  color: #131313;
  padding: 0;
  line-height: 41px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.blog .pagination .page-item .page-link:focus,
.pagination .page-item .page-link:hover {
  box-shadow: none;
  background: #b4975a;
  color: #fff;
}

.blog .pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
  border-radius: 0;
}

.blog .pagination .page-item.active .page-link {
  background: #b4975a;
  color: #fff;
  border-color: #b4975a;
}

.blog .post-meta {
  padding-left: 0;
}

.blog .post-meta li {
  list-style-type: none;
  display: inline-block;
  color: #888;
  font-weight: 500;
}

.blog .post-meta li a {
  background-color: rgba(19, 19, 19, 0.05);
  color: black;
  text-transform: capitalize;
  padding: 6px 16px;
  margin-bottom: 9px;
  margin-right: 9px;
  display: block;
  font-size: 14px;
  border-radius: 0;
  text-decoration: none;
}

.blog .post-meta li a:hover {
  background-color: #b4975a;
  text-decoration: none;
}

.blog .post-meta li svg {
  display: inline-block;
}

.blog .image-fallback {
  font-size: 0;
  height: 220px;
  width: 100%;
  background-color: #f2f2f2;
  text-align: center;
  border-radius: 0;
  display: inline-block;
}

.blog .image-fallback::first-letter {
  font-size: 80px;
  line-height: 220px;
  font-weight: bold;
  color: #19234C;
}

.blog .image-fallback.post-thumb-sm::first-letter {
  font-size: 50px;
  line-height: 60px;
}

.blog .image-fallback-sm {
  height: 120px;
  width: 120px;
  margin-bottom: 20px;
}

.blog .image-fallback-sm::first-letter {
  font-size: 50px;
  line-height: 120px;
}

.blog .image-fallback-xs {
  height: 80px;
  width: 80px;
}

.blog .image-fallback-xs::first-letter {
  font-size: 38px;
  line-height: 80px;
}

.blog .breadcrumbs {
  background-color: transparent;
  padding: 15px 0;
}

.blog .breadcrumbs a {
  color: #131313;
}

.blog .breadcrumbs a:hover {
  text-decoration: underline;
}

.blog .breadcrumbs a:last-child {
  color: rgba(19, 19, 19, 0.5);
  pointer-events: none;
}

.blog .content * {
  margin-bottom: 5px;
}

.blog .content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6,
.content .h1,
.content .h2,
.content .h3,
.content .h4,
.content .h5,
.content .h6 {
  margin-bottom: 20px;
  margin-top: 30px;
}

.blog .content a {
  color: inherit !important;
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(#b4975a, #b4975a);
  background-position: 0% 110%;
  background-repeat: no-repeat;
  background-size: 100% 3px;
  transition: 0.3s;
}

.blog .content a:hover {
  color: #131313;
  background-size: 100% 100%;
}

.blog .content.bg-dark a:hover {
  background-image: linear-gradient(rgba(19, 174, 111, 0.4), rgba(19, 174, 111, 0.4));
}

.blog .content ol {
  padding-left: 20px;
}

.blog .content ul {
  padding-left: 0;
}

.blog .content ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
  list-style-type: none;
}

.blog .content ul li a {
  display: inline-block;
  margin-bottom: 10px;
}

.blog .content ul li::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 100%;
  left: 0;
  top: 7px;
  background-color: #b4975a;
  transition: 0.3s ease;
}

.blog .content table {
  text-align: left;
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  border: 1px solid #dee2e6;
}

.blog .content table th,
.blog .content table td {
  padding: 0.75rem;
  vertical-align: top;
  border: 1px solid #dee2e6;
}

.blog .content table thead {
  background: #f1f1f1;
}

.blog .content table tbody {
  background: #F6F6F6;
}

.blog .content table tbody td {
  text-align: left !important;
}

.blog .content blockquote {
  border-left: 4px solid #b4975a;
  padding: 20px;
  margin: 20px 0;
}

.blog .content blockquote p {
  margin-bottom: 0;
  color: #333;
  font-style: italic;
  font-size: 20px;
  font-weight: 500;
}

.blog .content pre {
  padding: 10px 20px;
  background: #F6F6F6;
}

.blog .widget-blocks {
  padding-left: 20px;
}

@media (max-width: 991px) {
  .blog .widget-blocks {
    padding-left: 0;
  }
}

.blog .widget-blocks .row>.col:last-child .widget,
.widget-blocks .row>[class*=col-]:last-child .widget {
  margin-bottom: 0 !important;
}

.blog .widget {
  margin-bottom: 50px;
}

.blog .widget-body {
  padding: 30px;
  background-color: #FFF4E2;
  border-radius: 0;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1200px) {
  .blog .widget-body-sm {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .blog .widget-body {
    padding: 25px;
  }
}

@media (max-width: 575px) {
  .blog .widget-body {
    padding: 15px;
  }
}

.blog .widget-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog .widget-list .card {
  border-bottom: 1px dashed #ececec;
  padding-bottom: 15px;
}

.blog .widget-list .media img {
  height: 80px;
  width: 80px !important;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0;
}

.blog .widget-list .media:not(:last-child) {
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.blog .widget-list .media:hover {
  opacity: 0.8;
}

.blog .widget-list li {
  display: inline-block;
}

.blog .widget-list li a {
  background-color: rgba(19, 19, 19, 0.05);
  color: black;
  text-transform: capitalize;
  padding: 6px 16px;
  margin-bottom: 9px;
  margin-right: 9px;
  display: block;
  font-size: 14px;
  border-radius: 0;
}

.blog .widget-list li a:hover {
  background-color: #b4975a;
  text-decoration: none;
}

.blog .author-thumb-sm {
  height: 150px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 991px) {
  .blog .author-thumb-sm {
    height: 250px;
  }
}

@media (max-width: 767px) {
  .blog .author-thumb-sm {
    height: 200px;
  }
}

.blog .post-thumb-sm {
  height: 80px;
  width: 100px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0;
}

.blog .copyright {
  background-color: #0e0e0e !important;
  color: #e8e8e8;
  padding: 20px 0;
  font-size: 14px;
  text-align: center;
}

.blog footer .section {
  padding: 45px 0;
}

.blog .navbar-footer .nav-link:hover {
  color: #b4975a;
  text-decoration: none;
}

.blog .form-control {
  border-radius: 0;
  min-height: 50px;
  padding: 10px 15px;
}

.blog .form-control:focus {
  border-color: #131313;
  box-shadow: none;
}

.be-comment-block {
  margin-bottom: 50px !important;
  border: 1px solid #edeff2;
  border-radius: 2px;
  padding: 0px 0px;
  border: 1px solid #ffffff;
}

.comments-title {
  font-size: 16px;
  color: #262626;
  margin-bottom: 15px;
  font-family: 'Roboto';
}

.be-img-comment {
  width: 60px;
  height: 60px;
  float: left;
  margin-bottom: 15px;
}

.be-ava-comment {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.be-comment-content {
  margin-left: 80px;
}

.be-comment-content span {
  display: inline-block;
  width: 49%;
  margin-bottom: 15px;
}

.be-comment-name {
  font-size: 13px;
  font-family: 'Roboto';
}

.be-comment-content a {
  color: #383b43;
}

.be-comment-content span {
  display: inline-block;
  width: 49%;
  margin-bottom: 15px;
}

.be-comment-time {
  text-align: right;
}

.be-comment-time {
  font-size: 11px;
  color: #b4b7c1;
}

.be-comment-text {
  font-size: 13px;
  line-height: 18px;
  color: #7a8192;
  display: block;
  background: #f6f6f7;
  border: 1px solid #edeff2;
  padding: 15px 20px 20px 20px;
}

.form-group.fl_icon .icon {
  position: absolute;
  top: 1px;
  left: 16px;
  width: 48px;
  height: 48px;
  background: #f6f6f7;
  color: #b5b8c2;
  text-align: center;
  line-height: 50px;
  -webkit-border-top-left-radius: 2px;
  -webkit-border-bottom-left-radius: 2px;
  -moz-border-radius-topleft: 2px;
  -moz-border-radius-bottomleft: 2px;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

.form-group .form-input {
  font-size: 13px;
  line-height: 50px;
  font-weight: 400;
  color: #b4b7c1;
  width: 100%;
  height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  border: 1px solid #edeff2;
  border-radius: 3px;
}

.form-group.fl_icon .form-input {
  padding-left: 70px;
}

.form-group textarea.form-input {
  height: 150px;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #FFFFFF;
}

.blog-comment::before,
.blog-comment::after,
.blog-comment-form::before,
.blog-comment-form::after {
  content: "";
  display: table;
  clear: both;
}

.blog-comment {
  padding-right: 15%;
}

.blog-comment ul {
  list-style-type: none;
  padding: 0;
}

.blog-comment img {
  opacity: 1;
  filter: Alpha(opacity=100);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}

.blog-comment img.avatar {
  position: relative;
  float: left;
  margin-left: 0;
  margin-top: 0;
  width: 65px;
  height: 65px;
}

.blog-comment .post-comments {
  border: 1px solid #eee;
  margin-bottom: 20px;
  margin-left: 85px;
  margin-right: 0px;
  padding: 10px 20px;
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  background: #fff;
  color: #6b6e80;
  position: relative;
}

.blog-comment .meta {
  font-size: 13px;
  color: #aaaaaa;
  padding-bottom: 8px;
  margin-bottom: 10px !important;
  border-bottom: 1px solid #eee;
}

.blog-comment ul.comments ul {
  list-style-type: none;
  padding: 0;
  margin-left: 85px;
}

.blog-comment-form {
  padding-left: 15%;
  padding-right: 15%;
  padding-top: 40px;
}

.reply-a a {
  color: #1977cc;
}

.reply-a a:hover {
  color: #b4975a;
}

.blog-comment h3,
.blog-comment-form h3 {
  margin-bottom: 40px;
  font-size: 26px;
  line-height: 30px;
  font-weight: 800;
}

.open-button {
  background-color: #555;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
  bottom: 23px;
  right: 28px;
  width: 280px;
}

/* The popup form - hidden by default */
.form-popup {
  display: none;
  position: fixed;
  bottom: 0;
  right: 15px;
  border: 3px solid #f1f1f1;
  z-index: 9;
}

/* Add styles to the form container */
.form-container {
  max-width: 300px;
  padding: 10px;
  background-color: white;
}

/* Full-width input fields */
.form-container input[type=text],
.form-container input[type=password] {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
}

/* When the inputs get focus, do something */
.form-container input[type=text]:focus,
.form-container input[type=password]:focus {
  background-color: #ddd;
  outline: none;
}

/* Set a style for the submit/login button */
.form-container .btn {
  background-color: #04AA6D;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom: 10px;
  opacity: 0.8;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
  background-color: red;
}

/* Add some hover effects to buttons */
.form-container .btn:hover,
.open-button:hover {
  opacity: 1;
}

#container {
  position: relative;
  float: left;
  margin-left: 0;
  margin-top: 0;
  width: 65px;
  height: 65px;
  font-size: 35px;
  color: #fff;
  text-align: center;
  line-height: 65px;
}

.logo-list {
  padding: 20px 0;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.logo-list img {
  display: inline-block;
  max-width: 85%;
  padding: 15px 0;
  transition: all 0.3s ease-in-out;
  -webkit-filter: grayscale(100);
  -moz-filter: grayscale(100);
  filter: grayscale(100);
}

.logo-list img:hover {
  filter: none;
  transform: scale(1.2);
  -webkit-filter: none;
  -moz-filter: none;
}

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

/* ===================================================================
 *  14. clients-download - (_layout.scss)
 *
 * ------------------------------------------------------------------- */

.clients-download .btn-div a {
  width: 167px;
  margin-top: 4px;
  border: none;
  background-color: #000000;
}

.clients-download .btn-div a:hover {
  width: 167px;
  margin-top: 4px;
  border: none;
  background-color: #4b0d1b;
}

.clients-download img {
  width: 500px;
  height: 570px;
}

@media (max-width: 768px) {
  .clients-download img {
    width: 360px;
    height: 410px;
  }
}

/* ===================================================================
 *  14. providers-download - (_layout.scss)
 *
 * ------------------------------------------------------------------- */

.providers-download .btn-div a {
  width: 167px;
  margin-top: 4px;
  border: none;
  background-color: #000000;
}

.providers-download .btn-div a:hover {
  width: 167px;
  margin-top: 4px;
  border: none;
  background-color: #4b0d1b;
}

.providers-download img {
  width: 500px;
  height: 570px;
}

@media (max-width: 768px) {
  .providers-download img {
    width: 360px;
    height: 410px;
  }
}

.providers-download .join-btn {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 16px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: black;
  animation-delay: 0.8s;
  border: 2px solid #FFBA0D;
  background-color: #FFBA0D;
}

.providers-download .join-btn:hover {
  background: #FFBA0D;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/

.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #b4975a;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a {
  color: #b4975a;
  text-decoration: none;
}

.faq .faq-list a.collapse {
  color: #b4975a;
  text-decoration: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
  text-decoration: none;
}

.faq .faq-list a.collapsed:hover {
  color: #b4975a;
  text-decoration: none;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
  text-decoration: none;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
  text-decoration: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

.faq .faq-list .quastion-list {
  padding: 0 0px;
}

.faq .faq-list .quastion-list p {
  list-style: none;
  padding: 0;
}

.faq .faq-list .quastion-list ul {
  list-style: none;
  padding: 0;
}

.faq .faq-list .quastion-list ul li {
  padding: 10px 0 0 28px;
  position: relative;

}

.faq .faq-list .quastion-list ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: #b4975a;
}

.faq .faq-list .quastion-list a {
  color: rgb(119, 126, 240);
  font-size: 14px;
  display: inline-block;
  padding: 0px;
  text-decoration: none;
}

.faq .faq-list .quastion-list a:hover {
  text-decoration: none;
}

/* ===================================================================
 *  06. buttons - (_button-essentials.scss)
 *
 * ------------------------------------------------------------------- */

.button,
button,
/* input[type="submit"], */
input[type="reset"],
input[type="button"] {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  height: 5.4rem;
  line-height: calc(5.4rem - .6rem);
  padding: 0 3rem;
  margin: 0 .3rem 1.2rem 0;
  color: #222222;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  border-radius: .5rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #c5c5c5;
  border: .3rem solid #c5c5c5;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  background-color: #b8b8b8;
  border-color: #b8b8b8;
  color: #131313;
  outline: 0;
}

.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  background-color: #39b54a;
  border-color: #39b54a;
  color: #FFFFFF;
}

.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  background: #309a3f;
  border-color: #309a3f;
}

button.full-width,
.button.full-width {
  width: 100%;
  margin-right: 0;
}

button.medium,
.button.medium {
  height: 5.7rem !important;
  line-height: calc(5.7rem - .6rem) !important;
}

button.large,
.button.large {
  height: 6rem !important;
  line-height: calc(6rem - .6rem) !important;
}

button.stroke,
.button.stroke {
  /* background: transparent !important;
  color: #a5a5a5 !important; */
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 16px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #261C02;
  animation-delay: 0.8s;
  border: 2px solid #b4975a;
  background: #b4975a;
}

button.stroke:hover,
.button.stroke:hover {
  /* border: 0.3rem solid #39b54a;
  color: #39b54a; */
  background: #b4975a;
  color: #fff;
  text-decoration: none;
}

button.pill,
.button.pill {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
  border-radius: 1000px;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Join Us
--------------------------------------------------------------*/

.join-us-btn {
  background: #b4975a;
  border-radius: 4px;
  transition: all 0.4s;
  font-size: 28px;
  color: #131313;
  line-height: 0;
  border-color: #b4975a;
  margin-top: 14px;
}

.join-us-btn:hover {
  background: #b4975a;
  color: #fff;
  border-color: #b4975a;
}

label {
  margin-top: .5rem;
  margin-bottom: .5rem;
  color: #fff;
  cursor: pointer;

  &#first-title {
    font-size: 1rem;
  }

  &#second-title {
    font-size: .8rem;
  }
}

.app-download {
  display: flex;
  justify-content: space-around;
  align-items: center;
  direction: rtl;
  background-color: #dc1e4d;
  top: 0;
  /* position: fixed; */
  flex-direction: column;
  z-index: 100;
  left: 2rem;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  box-shadow: 1px 2px 14px 5px #00000070;
  padding: 1rem;

  &:focus {
    outline: none;
  }

  .fa-mobile-phone {
    color: #fff;
    font-size: 2.5rem;
    width: 45px;
    height: 45px;
    display: flex;
    border: 2px dotted #fff;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: .5rem 0;
    cursor: pointer;
  }
}

.bounce {
  animation: bounce 0.5s;
  animation-direction: alternate;
  animation-timing-function: cubic-bezier(.5, 0.05, 1, .5);
  animation-iteration-count: infinite;
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-direction: alternate;
  -webkit-animation-timing-function: cubic-bezier(.5, 0.05, 1, .5);
  -webkit-animation-iteration-count: infinite;
}

@keyframes bounce {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, 3px, 0);
  }
}

@-webkit-keyframes bounce {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 3px, 0);
    transform: translate3d(0, 3px, 0);
  }
}


/*--------------------------------------------------------------
# 404
--------------------------------------------------------------*/

/* @import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,300); */

/* body {
	background-color: #ffffff;
	background: -ms-radial-gradient(ellipse at center,  #ffffff 0%, #ffffff 100%) fixed no-repeat;
	background: -moz-radial-gradient(ellipse at center,  #ffffff 0%, #ffffff 100%) fixed no-repeat;
	background: -o-radial-gradient(ellipse at center, #ffffff 0%, #ffffff 100%) fixed no-repeat;
	background: -webkit-gradient(radial, center center, 0, center center, 497, color-stop(0, #ffffff), color-stop(1, #ffffff));
	background: -webkit-radial-gradient(ellipse at center,  #ffffff 0%, #ffffff 100%) fixed no-repeat;
	background: radial-gradient(ellipse at center, #ffffff 0%, #ffffff 100%) fixed no-repeat;
	font-family: 'Roboto', sans-serif;
	-webkit-font-smoothing: antialiased;
	margin: 0px;
} */

::selection {
  background-color: rgba(0, 0, 0, 0.2);
}

::-moz-selection {
  background-color: rgba(0, 0, 0, 0.2);
}


/* a {
	color: white;
	text-decoration: none;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	margin-right: 10px;
}

a:last-child { margin-right: 0px; }

a:hover {
	text-shadow: 0px 0px 1px rgba(255,255,255,.5);
	border-bottom: 1px solid rgba(255,255,255,1);
} */

#noscript-warning {
  width: 100%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.2);
  font-weight: 300;
  color: rgb(0, 0, 0);
  padding-top: 10px;
  padding-bottom: 10px;
}



/* === WRAP === */

#wrap {
  width: 80%;
  max-width: 1400px;
  margin: 0 auto;
  height: auto;
  position: relative;
  margin-top: 8%;
}



/* === MAIN TEXT CONTENT === */

#main-content {
  float: right;
  max-width: 45%;
  color: rgb(0, 0, 0);
  font-weight: 300;
  font-size: 18px;
  padding-bottom: 40px;
  line-height: 28px;
}

#main-content h1 {
  margin: 0px;
  font-weight: 400;
  font-size: 42px;
  margin-bottom: 40px;
  line-height: normal;
}



/* === NAVIGATION BUTTONS === */

#navigation {
  margin-top: 2%;
}

#navigation a.navigation {
  display: block;
  float: left;
  background-color: rgba(0, 0, 0, 0.2);
  padding-left: 15px;
  padding-right: 15px;
  color: rgb(0, 0, 0);
  height: 41px;
  line-height: 41px;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  margin-right: 2%;
  margin-bottom: 2%;
  border-bottom: none;
}

#navigation a.navigation i {
  line-height: 41px;
}

#navigation a.navigation:hover {
  background-color: #b4975a;
  border-bottom: none;
}



/* === WORDSEARCH === */

#wordsearch {
  width: 45%;
  float: left;
}

#wordsearch ul {
  margin: 0px;
  padding: 0px;
}

#wordsearch ul li {
  float: left;
  width: 12%;
  background-color: rgba(0, 0, 0, .2);
  list-style: none;
  margin-right: 0.5%;
  margin-bottom: 0.5%;
  padding: 0;
  display: block;
  text-align: center;
  color: rgba(0, 0, 0);
  text-transform: uppercase;
  overflow: hidden;
  font-size: 24px;
  font-size: 1.6vw;
  font-weight: 300;
  transition: background-color 0.75s ease;
  -moz-transition: background-color 0.75s ease;
  -webkit-transition: background-color 0.75s ease;
  -o-transition: background-color 0.75s ease;
}

#wordsearch ul li.selected {
  background-color: rgba(75, 0, 27, 0.7);
  color: #b4975a;
  font-weight: 400;
}



/* === SEARCH FORM === */

#search {
  margin-top: 30px;
}

#search input[type='text'] {
  width: 88%;
  height: 41px;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.2);
  border: none;
  outline: none;
  appearance: none;
  font-size: 16px;
  font-weight: 300;
  color: white;
  font-family: 'Roboto', sans-serif;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  border-radius: 0px;
}

#search .input-search {
  width: 10%;
  float: right;
  height: 41px;
  background-color: rgba(0, 0, 0, 0.2);
  outline: none;
  border: none;
  appearance: none;
  font-family: 'Roboto', sans-serif;
  color: white;
  font-weight: 300;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  text-align: center;
}

#search .input-search:hover {
  background-color: rgba(0, 0, 0);
}



/* === RESPONSIVE CSS === */

@media all and (max-width: 899px) {
  #wrap {
    width: 90%;
  }
}

@media all and (max-width: 799px) {
  #wrap {
    width: 90%;
    height: auto;
    margin-top: 40px;
    top: 0%;
  }

  #wordsearch {
    width: 90%;
    float: none;
    margin: 0 auto;
  }

  #wordsearch ul li {
    font-size: 4vw;
  }

  #main-content {
    float: none;
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
    margin-top: 30px;
    text-align: justify;
  }

  #main-content h1 {
    text-align: left;
  }

  #search input[type='text'] {
    width: 84%;
  }

  #search .input-search {
    width: 15%;
  }
}

@media all and (max-width: 499px) {
  #main-content h1 {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Sitemap
--------------------------------------------------------------*/

.sitemap .container {
  display: flex;
  bottom: 60px;
  top: 70px;
  left: 55px;
  right: 55px;
}

.sitemap .row {
  height: 500px;
  /*set height*/
  /* border:1px solid blue; */
  width: 100%;
  margin-bottom: 10px;
  padding: 20px;
}

.sitemap .h1 {
  font-size: 22px;
  font-weight: bold;
}

.sitemap .h2 {
  font-size: 18px;
  font-weight: bold;
}

.sitemap .a {
  font-size: 16px;
  margin-left: 10px;
  color: #069;
}

.sitemap .a:hover {
  font-size: 16px;
  margin-left: 10px;
  color: #b4975a;
}

.sitemap .i {
  font-size: 18px;
  margin-left: 20px;
  color: #b4975a;
}

.sitemap .col1 {
  /* border:1px solid red; */
  width: 100%;
  height: 80%;
}

.sitemap .col2 {
  /* border:1px solid green; */
  width: 49%;
  float: left;
  height: 80%;
  margin-right: 2%;
}

.sitemap .col2:last-child {
  margin-right: 0;
}

.sitemap .col3 {
  /* border:1px solid brown; */
  width: 32%;
  float: left;
  height: 80%;
  margin-right: 2%;
}

.sitemap .col3:last-child {
  margin-right: 0;
}

.sitemap .col3 .button-link {
  /* background: none!important; */
  background: transparent;
  border: none;
  padding: 0 !important;
  color: #069;
  cursor: pointer;
  height: 18.5px;
  font-size: 16px;
  margin-left: 13px;
}

.sitemap .col3 .button-link:hover {
  font-size: 16px;
  margin-left: 13px;
  color: #b4975a;
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #b4975a;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #b4975a;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 22px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

#footer a {
  color: white;
}

#footer .footer-top .footer-contact p {
  font-size: 12px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: rgba(255, 255, 255, 1);
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 14px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #b4975a;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: black;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-size: 14px;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: white;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #fff;
}

#footer .social-links {
  width: 330px;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: black;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  ;
  color: #fff;
  text-decoration: none;
}

/* Newsletter */

@import url("https://assets.mlcdn.com/fonts.css?version=1772539");

/* LOADER */
.ml-form-embedSubmitLoad {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.g-recaptcha {
transform: scale(1);
-webkit-transform: scale(1);
transform-origin: 0 0;
-webkit-transform-origin: 0 0;
height: ;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.ml-form-embedSubmitLoad:after {
  content: " ";
  display: block;
  width: 11px;
  height: 11px;
  margin: 1px;
  border-radius: 50%;
  border: 4px solid #fff;
border-color: #000000 #000000 #000000 transparent;
animation: ml-form-embedSubmitLoad 1.2s linear infinite;
}
@keyframes ml-form-embedSubmitLoad {
  0% {
  transform: rotate(0deg);
  }
  100% {
  transform: rotate(360deg);
  }
}
  #mlb2-38025432.ml-form-embedContainer {
    box-sizing: border-box;
    display: table;
    margin: 0 auto;
    position: static;
    /* width: 100% !important; */
  }
  #mlb2-38025432.ml-form-embedContainer h4,
  #mlb2-38025432.ml-form-embedContainer p,
  #mlb2-38025432.ml-form-embedContainer span,
  #mlb2-38025432.ml-form-embedContainer button {
    text-transform: none !important;
    letter-spacing: normal !important;
  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper {
    background-color: #f6f6f6;
    
    border-width: 0px;
    border-color: transparent;
    border-radius: 4px;
    border-style: solid;
    box-sizing: border-box;
    display: inline-block !important;
    margin: 0;
    padding: 0;
    position: relative;
          }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper.embedPopup,
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper.embedDefault { width: 400px; }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper.embedForm { max-width: 400px; width: 100%; }
  #mlb2-38025432.ml-form-embedContainer .ml-form-align-left { text-align: left; }
  #mlb2-38025432.ml-form-embedContainer .ml-form-align-center { text-align: center; }
  #mlb2-38025432.ml-form-embedContainer .ml-form-align-default { display: table-cell !important; vertical-align: middle !important; text-align: center !important; }
  #mlb2-38025432.ml-form-embedContainer .ml-form-align-right { text-align: right; }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedHeader img {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    height: auto;
    margin: 0 auto !important;
    max-width: 100%;
    width: undefinedpx;
  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
    padding: 20px 20px 0 20px;
  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody.ml-form-embedBodyHorizontal {
    padding-bottom: 0;
  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent,
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {
    text-align: left;
    margin: 0 0 20px 0;
  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4,
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {
    color: #000000;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 10px 0;
    text-align: left;
    word-break: break-word;
  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p,
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {
    color: #000000;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin: 0 0 10px 0;
    text-align: left;
  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ul,
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol,
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ul,
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol {
    color: #000000;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 14px;
  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol ol,
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol ol {
    list-style-type: lower-alpha;
  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol ol ol,
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol ol ol {
    list-style-type: lower-roman;
  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p a,
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p a {
    color: #000000;
    text-decoration: underline;
  }

  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-block-form .ml-field-group {
    text-align: left!important;
  }

  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-block-form .ml-field-group label {
    margin-bottom: 5px;
    color: #333333;
    font-size: 14px;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-weight: bold; font-style: normal; text-decoration: none;;
    display: inline-block;
    line-height: 20px;
  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p:last-child,
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p:last-child {
    margin: 0;
  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form {
    margin: 0;
    width: 100%;
  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent,
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {
    margin: 0 0 20px 0;
    width: 100%;
  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {
    float: left;
  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent.horozintalForm {
    margin: 0;
    padding: 0 0 20px 0;
    width: 100%;
    height: auto;
    float: left;
  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow {
    margin: 0 0 10px 0;
    width: 100%;
  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-last-item {
    margin: 0;
  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-formfieldHorizintal {
    margin: 0;
  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
    background-color: #ffffff !important;
    color: #333333 !important;
    border-color: #cccccc;
    border-radius: 4px !important;
    border-style: solid !important;
    border-width: 1px !important;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 14px !important;
    height: auto;
    line-height: 21px !important;
    margin-bottom: 0;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 10px 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-webkit-input-placeholder,
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input::-webkit-input-placeholder { color: #333333; }

  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-moz-placeholder,
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input::-moz-placeholder { color: #333333; }

  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-ms-input-placeholder,
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input:-ms-input-placeholder { color: #333333; }

  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-moz-placeholder,
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input:-moz-placeholder { color: #333333; }

  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow textarea, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow textarea {
    background-color: #ffffff !important;
    color: #333333 !important;
    border-color: #cccccc;
    border-radius: 4px !important;
    border-style: solid !important;
    border-width: 1px !important;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 14px !important;
    height: auto;
    line-height: 21px !important;
    margin-bottom: 0;
    margin-top: 0;
    padding: 10px 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
  }

  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::before, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::before, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {
      border-color: #cccccc!important;
      background-color: #ffffff!important;
  }

  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input.custom-control-input[type="checkbox"]{
    box-sizing: border-box;
    padding: 0;
    position: absolute;
    z-index: -1;
    opacity: 0;
    margin-top: 5px;
    margin-left: -1.5rem;
    overflow: visible;
  }

  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {
    border-radius: 4px!important;
  }


  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked~.label-description::after, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked~.label-description::after, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input:checked~.custom-control-label::after, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input:checked~.custom-control-label::after, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox input[type=checkbox]:checked~.label-description::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
  }

  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked~.custom-control-label::after, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  }

  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked~.custom-control-label::before, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input:checked~.custom-control-label::before, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input:checked~.custom-control-label::before, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input:checked~.custom-control-label::before, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked~.label-description::before, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox input[type=checkbox]:checked~.label-description::before, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked~.label-description::before  {
      border-color: #000000!important;
      background-color: #000000!important;
  }

  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::before, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::before, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::after, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::after, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::after, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::after {
       top: 2px;
       box-sizing: border-box;
  }

  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {
       top: 0px!important;
       box-sizing: border-box!important;
  }

  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {
    top: 0px!important;
       box-sizing: border-box!important;
  }

   #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::after {
        top: 0px!important;
        box-sizing: border-box!important;
        position: absolute;
        left: -1.5rem;
        display: block;
        width: 1rem;
        height: 1rem;
        content: "";
   }

  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before {
    top: 0px!important;
    box-sizing: border-box!important;
  }

  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-control-label::before {
      position: absolute;
      top: 4px;
      left: -1.5rem;
      display: block;
      width: 16px;
      height: 16px;
      pointer-events: none;
      content: "";
      background-color: #ffffff;
      border: #adb5bd solid 1px;
      border-radius: 50%;
  }

  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-control-label::after {
      position: absolute;
      top: 2px!important;
      left: -1.5rem;
      display: block;
      width: 1rem;
      height: 1rem;
      content: "";
  }

  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {
      position: absolute;
      top: 4px;
      left: -1.5rem;
      display: block;
      width: 16px;
      height: 16px;
      pointer-events: none;
      content: "";
      background-color: #ffffff;
      border: #adb5bd solid 1px;
      border-radius: 50%;
  }

  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after {
      position: absolute;
      top: 0px!important;
      left: -1.5rem;
      display: block;
      width: 1rem;
      height: 1rem;
      content: "";
  }

  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {
      position: absolute;
      top: 0px!important;
      left: -1.5rem;
      display: block;
      width: 1rem;
      height: 1rem;
      content: "";
  }

  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-radio .custom-control-label::after {
      background: no-repeat 50%/50% 50%;
  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-checkbox .custom-control-label::after, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::after, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {
      background: no-repeat 50%/50% 50%;
  }

  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-control, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-control {
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
  }

  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input {
      position: absolute;
      z-index: -1;
      opacity: 0;
      box-sizing: border-box;
      padding: 0;
  }

  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label {
      color: #000000;
      font-size: 12px!important;
      font-family: 'Open Sans', Arial, Helvetica, sans-serif;
      line-height: 22px;
      margin-bottom: 0;
      position: relative;
      vertical-align: top;
      font-style: normal;
      font-weight: 700;
  }

  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-select, #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-select {
    background-color: #ffffff !important;
    color: #333333 !important;
    border-color: #cccccc;
    border-radius: 4px !important;
    border-style: solid !important;
    border-width: 1px !important;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 14px !important;
    line-height: 20px !important;
    margin-bottom: 0;
    margin-top: 0;
    padding: 10px 28px 10px 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    background: url('https://assets.mlcdn.com/ml/images/default/dropdown.svg') no-repeat right .75rem center/8px 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }


  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow {
    height: auto;
    width: 100%;
    float: left;
  }
  .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal { width: 70%; float: left; }
  .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal { width: 30%; float: left; }
  .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal.labelsOn { padding-top: 25px;  }
  .ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields { box-sizing: border-box; float: left; padding-right: 10px;  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input {
    background-color: #ffffff;
    color: #333333;
    border-color: #cccccc;
    border-radius: 4px;
    border-style: solid;
    border-width: 1px;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
    margin-top: 0;
    padding: 10px 10px;
    width: 100%;
    box-sizing: border-box;
    overflow-y: initial;
  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button {
    background-color: #B49759 !important;
    border-color: #B49759;
    border-style: solid;
    border-width: 1px;
    border-radius: 4px;
    box-shadow: none;
    color: #000000 !important;
    cursor: pointer;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 14px !important;
    font-weight: 700;
    line-height: 20px;
    margin: 0 !important;
    padding: 10px !important;
    width: 100%;
    height: auto;
  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button:hover {
    background-color: #B49759 !important;
    border-color: #B49759 !important;
  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0;
    position: absolute;
    z-index: -1;
    opacity: 0;
    margin-top: 5px;
    margin-left: -1.5rem;
    overflow: visible;
  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description {
    color: #000000;
    display: block;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 12px;
    text-align: left;
    margin-bottom: 0;
    position: relative;
    vertical-align: top;
  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label {
    font-weight: normal;
    margin: 0;
    padding: 0;
    position: relative;
    display: block;
    min-height: 24px;
    padding-left: 24px;

  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label a {
    color: #000000;
    text-decoration: underline;
  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p {
    color: #000000 !important;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif !important;
    font-size: 12px !important;
    font-weight: normal !important;
    line-height: 18px !important;
    padding: 0 !important;
    margin: 0 5px 0 0 !important;
  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p:last-child {
    margin: 0;
  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit {
    margin: 0 0 20px 0;
    float: left;
    width: 100%;
  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {
    background-color: #B49759 !important;
    border: none !important;
    border-radius: 4px !important;
    box-shadow: none !important;
    color: #000000 !important;
    cursor: pointer;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 21px !important;
    height: auto;
    padding: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.loading {
    display: none;
  }
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover {
    background-color: #B49759 !important;
  }
  .ml-subscribe-close {
    width: 30px;
    height: 30px;
    background: url('https://assets.mlcdn.com/ml/images/default/modal_close.png') no-repeat;
    background-size: 30px;
    cursor: pointer;
    margin-top: -10px;
    margin-right: -10px;
    position: absolute;
    top: 0;
    right: 0;
  }
  .ml-error input, .ml-error textarea, .ml-error select {
    border-color: red!important;
  }

  .ml-error .custom-checkbox-radio-list {
    border: 1px solid red !important;
    border-radius: 4px;
    padding: 10px;
  }

  .ml-error .label-description,
  .ml-error .label-description p,
  .ml-error .label-description p a,
  .ml-error label:first-child {
    color: #ff0000 !important;
  }

  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p,
  #mlb2-38025432.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p:first-letter {
    color: #ff0000 !important;
  }
        @media only screen and (max-width: 400px){

    .ml-form-embedWrapper.embedDefault, .ml-form-embedWrapper.embedPopup { width: 100%!important; }
    .ml-form-formContent.horozintalForm { float: left!important; }
    .ml-form-formContent.horozintalForm .ml-form-horizontalRow { height: auto!important; width: 100%!important; float: left!important; }
    .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal { width: 100%!important; }
    .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal > div { padding-right: 0px!important; padding-bottom: 10px; }
    .ml-form-formContent.horozintalForm .ml-button-horizontal { width: 100%!important; }
    .ml-form-formContent.horozintalForm .ml-button-horizontal.labelsOn { padding-top: 0px!important; }

  }

/*--------------------------------------------------------------
# Cookie Banner
--------------------------------------------------------------*/

#cb-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  border-radius: 0;
  display: none;
  background-color: #b4975a;
  border-color: #b4975a;
  border-top-color: #000000;
  color: white;
}

.cookies-btn {
  background: #b4975a;
  border-radius: 4px;
  transition: all 0.4s;
  font-size: 12px;
  color: #131313;
  line-height: 0;
  margin-top: 14px;
  height: 28px;
  border-color: white;
  border-width: 0.1px;
}

.cookies-btn:hover {
  background: #b4975a;
  color: #fff;
  border-color: white;
  border-width: 0.1px;
}

.cookies-a {
  color: #C8D92B;
  text-decoration: none;
}

.cookies-a:hover {
  color: white;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Dialog
--------------------------------------------------------------*/

dialog {
  padding: 1rem 3rem;
  background: white;
  max-width: 400px;
  min-width: 400px;
  padding-top: 2rem;
  border-radius: 20px;
  border: 0;
  box-shadow: 0 5px 30px 0 rgb(0 0 0 / 10%);
  animation: fadeIn 1s ease both;

  &::backdrop {
    animation: fadeIn 1s ease both;
    background: rgb(255 255 255 / 40%);
    z-index: 2;
    backdrop-filter: blur(20px);
  }

  .x {
    filter: grayscale(1);
    border: none;
    background: none;
    position: absolute;
    top: 15px;
    right: 10px;
    transition: ease filter, transform 0.3s;
    cursor: pointer;
    transform-origin: center;

    &:hover {
      filter: grayscale(0);
      transform: scale(1.1);
    }
  }

  h2 {
    font-weight: 600;
    font-size: 2rem;
    padding-bottom: 1rem;
  }

  p {
    font-size: 1rem;
    line-height: 1.3rem;
    padding: 0.5rem 0;

    a {
      &:visited {
        color: rgb(var(--vs-primary));
      }
    }
  }
}

/*General Styles*/

button.primary {
  display: inline-block;
  font-size: 0.8rem;
  color: #fff !important;
  background: rgb(var(--vs-primary) / 100%);
  padding: 13px 25px;
  border-radius: 17px;
  transition: background-color 0.1s ease;
  box-sizing: border-box;
  transition: all 0.25s ease;
  border: 0;
  cursor: pointer;
  box-shadow: 0 10px 20px -10px rgb(var(--vs-primary) / 50%);

  &:hover {
    box-shadow: 0 20px 20px -10px rgb(var(--vs-primary) / 50%);
    transform: translateY(-5px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Privacy Policy
--------------------------------------------------------------*/
.privacy {
  padding-top: 0px;
}

.desc {
  display: none;
}

.privacy .content h2 {
  font-weight: 700;
  font-size: 42px;
  line-height: 60px;
  margin-bottom: 20px;
  text-transform: uppercase;
  direction: ltr;
}

.privacy .content h3 {
  font-weight: 500;
  line-height: 32px;
  font-size: 24px;
  direction: ltr;
}

.privacy .content h4 {
  margin-bottom: 1%;
}

.privacy .content h5 {
  margin-bottom: 1%;
  margin-top: 1%;
  margin-left: 15px;
}

.privacy .content p {
  list-style: none;
  padding: 0;
  margin-left: 15px;
}

.privacy .content ul {
  list-style: none;
  padding: 0;
}

.privacy .content ul li {
  padding: 10px 0 0 28px;
  position: relative;
  margin-left: 15px;
}

.privacy .content ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: #b4975a;
}

.privacy .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# latest articles
--------------------------------------------------------------*/
.more-btn {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 16px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: black;
  animation-delay: 0.8s;
  border: 2px solid #b4975a;
  background-color: #b4975a;
}

.more-btn:hover {
  background: #b4975a;
  color: #fff;
  text-decoration: none;
}

.post-slide {
  margin: 50px 15px;
  position: relative;
  background: #fff;
}

.post-slide .post-img {
  position: relative;
  overflow: hidden;
}

.post-slide .post-img img {
  /* width: 100%;
    height: auto; */
  width: 340px;
  height: 250px;
}

@media only screen and (max-width: 767px) {
  .post-slide .post-img img {
    /* width: 100%;
    height: auto; */
    width: 280px;
    height: 250px;
  }
}

.post-slide .post-info {
  position: absolute;
  right: 0;
  top: -5px;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.post-slide .post-info span {
  display: inline-block;
  line-height: 1.3;
  font-size: 12px;
  padding: 3px 8px;
  padding-top: 4px;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 0;
  margin-top: 5px;
}

.post-slide .post-content {
  padding: 10px;
}

.post-slide .post-title a {
  color: #131313;
  display: inline;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  background-image: linear-gradient(#b4975a, #b4975a);
  background-position: 0% 80%;
  background-repeat: no-repeat;
  background-size: 0% 8px;
  text-transform: capitalize;
  transition: background-size 0.3s;
}

.post-slide .post-title-sm {
  background-size: 0% 3px;
}

.post-slide .post-title a:hover {
  color: #131313;
  background-size: 100% 8px;
}

.post-slide a.post-title-sm:hover {
  background-size: 100% 3px;
}

.post-slide .post-description {
  font-size: 14px;
  line-height: 24px;
  color: #808080;
  height: 100px;
}

.post-slide .read-more {
  font-size: 14px;
  font-weight: bold;
  /* text-transform:uppercase; */
  position: relative;
  transition: color 0.20s linear;

  color: inherit !important;
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(#b4975a, #b4975a);
  background-position: 0% 110%;
  background-repeat: no-repeat;
  background-size: 100% 3px;
  transition: 0.3s;
}

.post-slide .read-more:hover {
  color: #131313;
  background-size: 100% 100%;
}

@media only screen and (max-width: 479px) {
  .post-slide .month {
    font-size: 14px;
  }

  .post-slide .date {
    font-size: 14px;
  }
}

.owl-controls .owl-buttons {
  margin-top: 20px;
  position: relative;
}

.owl-controls .owl-prev {
  position: absolute;
  left: -40px;
  bottom: 230px;
  padding: 8px 17px;
  background: #b4975a;
  transition: background 0.50s ease;
}

.owl-controls .owl-next {
  position: absolute;
  right: -40px;
  bottom: 230px;
  padding: 8px 17px;
  background: #b4975a;
  transition: background 0.50s ease;
}

.owl-controls .owl-prev:after,
.owl-controls .owl-next:after {
  content: "\f104";
  font-family: FontAwesome;
  color: #000000;
  font-size: 16px;
}

.owl-controls .owl-next:after {
  content: "\f105";
}

.owl-controls .owl-prev:hover,
.owl-controls .owl-next:hover {
  background: #b4975a;
}

@media only screen and (max-width: 990px) {
  .post-slide {
    margin: 0 20px;
  }

  .owl-controls .owl-buttons .owl-prev {
    left: -20px;
    padding: 5px 14px;
  }

  .owl-controls .owl-buttons .owl-next {
    right: -20px;
    padding: 5px 14px;
  }
}

@media only screen and (max-width: 767px) {
  .owl-controls .owl-buttons .owl-prev {
    left: 0px;
    bottom: 260px;
  }

  .owl-controls .owl-buttons .owl-next {
    right: 0px;
    bottom: 260px;
  }
}

/* instagram wrapper */

.instagram-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;   /* أهم سطر */
}

.instagram-wrapper * {
  max-width: 100% !important;
  box-sizing: border-box;
}

/* Redirection Popup */

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 150px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  font-family: sans-serif;
}

.modal .modal-content {
  background-color: rgba(191, 255, 0, 0.7);
  width: 100%;
  padding: 15px;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  max-width: 500px;
  height: 260px;
  margin: auto;
  border-radius: 4px;
  border: 0px solid #fcfcfc;
  padding: 15px;
  /* Safari 3.1-5 */
  -o-border-image: url(none) 30 stretch;
  /* Opera 11-12.1 */
  border-image: url(none) 30 stretch;
}

.coming-soon {
  margin-top: 10px;
  width: 100%;
  text-align: center;
  color: black;
  font-family: sans-serif;
  font-weight: bolder;
}

.modal-close {
  font-size: 20px;
  float: right;
  font-weight: 700;
  color: black;
  font-size: 25px;
  margin-top: -10px;
  transition: all .2s;
  cursor: pointer;
  width: auto;
}

.modal-close:hover {
  color: white;
  text-decoration: none;
}

.modal-img img {
  width: 50%;
  float: left;
}

.modal-redirection {
  display: flex;
  justify-content: center;
  font-size: 12px;
}

.modal-redirection .continue {
  background-color: rgba(191, 255, 0, 0.7);
  width: 50%;
  height: 140px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
  color: black;
  text-align: center;
}

.modal-redirection .continue h4 {
  margin-top: 20px;
}

.modal-redirection .service-booking {
  background-color: rgba(191, 255, 0, 0.5);
  width: 50%;
  height: 140px;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  color: black;
  text-align: center;
}

.modal-redirection .service-booking h4 {
  margin-top: 20px;
}

.modal-redirection .continue-btn {
  background-color: rgba(191, 255, 0, 1);
  border: none;
  color: black;
  width: 160px;
  font-weight: bold;
  font-size: 14px;
  border-radius: 16px;
  margin-top: 20px;
}

.modal-redirection .service-booking-btn {
  background-color: rgba(191, 255, 0, 1);
  border: none;
  color: black;
  width: 160px;
  font-weight: bold;
  font-size: 14px;
  border-radius: 16px;
  margin-top: 20px;
}

.modal-redirection .continue-btn:hover {
  background-color: rgba(191, 255, 0, 1);
  border: none;
  color: white;
  width: 160px;
  font-weight: bold;
  font-size: 14px;
  border-radius: 16px;
}

.modal-redirection .service-booking-btn:hover {
  background-color: rgba(191, 255, 0, 1);
  border: none;
  color: white;
  width: 160px;
  font-weight: bold;
  font-size: 14px;
  border-radius: 16px;
}


.modal-text {
  text-align: center;
  color: black;
}

.modal-text h2 {
  font-size: 20px;
  font-weight: 600;
  font-family: Lato;
}

.modal-text p {
  font-size: 15px;
  margin-top: -5px;
  margin-bottom: 20px;
  font-family: Lato;
}

.modal-footer {
  padding: 20px 20px;
  color: rgba(255, 255, 255, 0.5);
  width: auto;
  background-color: var(--ruby);
  margin: -15px;
  justify-content: center;
}

.modal-footer .modal-input {
  color: rgba(0, 0, 0, 0.5);
  width: 80%;
  background: rgb(255, 255, 255);
  border: none;
  border-radius: 4px;
  outline: rgba(0, 0, 0, 0.5) none 0px;
  padding: 15px;
}

.modal-footer .modal-submit-btn {
  padding: 14px;
  font-size: 14px;
  background-color: var(--orange);
  color: black;
  width: auto;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  height: 50px;
}

.modal-footer .modal-submit-btn:hover {
  color: white;
}

@media screen and (max-width: 27em) {
  .modal-footer .modal-input {
    width: auto;
    margin-bottom: 0px;
  }

  .modal-footer .modal-submit-btn {
    width: auto;
  }

  input[type=submit].modal-submit-btn:hover {
    color: white;
  }

  .modal-text p {
    font-size: 15px;
  }

}

/* Comming soon */

/* Set height to 100% for body and html to enable the background image to cover the whole page: */
body,
html {
  height: 100%
}

.bgimg {
  /* Background image */
  background-color: var(--ruby);
  /* Full-screen */
  height: 100%;
  /* Center the background image */
  background-position: center;
  /* Scale and zoom in the image */
  background-size: cover;
  /* Add position: relative to enable absolutely positioned elements inside the image (place text) */
  position: relative;
  /* Add a white text color to all elements inside the .bgimg container */
  color: var(--orange);
  /* Add a font */
  font-family: "Roboto", sans-serif;
  /* Set the font-size to 25 pixels */
  font-size: 20px;

}

#wrapper {
  /* border: 1px solid blue; */
  width: 800px;
}

#div1 {
  display: inline-table;
  width: 390px;
  text-align: left;
  line-height: 1.3;
  color: white;
  /* border: 1px solid red; */
}

#div2 {
  display: inline-table;
  width: 390px;
  direction: rtl;
  text-align: right;
  line-height: 1.3;
  color: white;
  /* border: 1px solid green; */
}

.logo {
  width: 400px;
}

/* Position text in the top-left corner */
.topleft {
  position: absolute;
  top: 0;
  left: 16px;
}

/* Position text in the bottom-left corner */
.bottomleft {
  position: absolute;
  bottom: 0;
  left: 16px;
}

/* Position text in the middle */
.middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* Style the <hr> element */
hr {
  margin: auto;
  width: 40%;
}


/* they trust us */

.ttu .scroll-container {
  display: flex;
  align-items: center;
  position: relative;
}

.ttu .container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  white-space: nowrap;
  padding: 20px;
  /* border: 1px solid #ccc; */
  background-color: #fff;
  border-radius: 10px;
  width: 100%;
  /* Ensures container uses the full width of the parent */
  max-width: 100%;
  /* Adjust the maximum width to hold more cards */
  /* Hide the scrollbar */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}

.ttu .container::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.ttu .card {
  flex: 0 0 auto;
  width: 180px;
  height: 90px;
  margin-right: 20px;
  padding: 10px;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ttu .card .img {
  border-radius: 100%;
  max-width: 50%;
  max-height: 50%;

}


.ttu .card h3 {
  margin: 10px 0;
}

.ttu .card p {
  font-size: 14px;
  color: #555;
  margin: 0;
  max-height: 4.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* Number of lines to show */
  -webkit-box-orient: vertical;
}

.ttu .card:hover {
  transform: scale(1.05);
}

.ttu .scroll-btn {
  /* Hide the buttons initially */
  background-color: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}

.ttu .scroll-btn.left {
  left: 0;
}

.ttu .scroll-btn.right {
  right: 0;
}

/* testimonial */

.testimonial-section {
  text-align: center;
  padding: 50px 20px;
}

.testimonial-section h1 {
  font-size: 2.5em;
  color: royalblue;
  margin-bottom: 20px;
}

.testimonial-carousel {
  display: flex;
  justify-content: center;
  overflow: hidden;
  width: 80%;
  margin: 0 auto;
  scroll-behavior: smooth;
  flex-wrap: nowrap;
  /* Default: No wrapping for larger screens */
}

.testimonial-card {
  min-width: 300px;
  margin: 0 10px;
  padding: 20px;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.testimonial-card:hover {
  transform: scale(1.05);
}

.client-image {
  width: 100px;
  height: 100px;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  overflow: hidden;
  /* border: 3px solid royalblue; */
}

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  font-size: 1.2em;
  font-style: italic;
  margin-bottom: 15px;
}

h3 {
  font-size: 1.3em;
  margin: 10px 0 5px 0;
  color: #333;
}

.client-role {
  font-size: 0.9em;
  color: gray;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonial-carousel {
    flex-wrap: wrap;
    /* Allow wrapping for smaller screens */
    justify-content: center;
    /* Center cards when stacked */
  }

  .testimonial-card {
    flex: 1 1 90%;
    /* Each card takes up 90% of the screen width */
    margin: 10px 0;
    /* Add vertical spacing */
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    flex: 1 1 100%;
    /* Each card takes up full width on mobile */
  }
}