:root {
  --main-color: #41383c;
  --body-bg: #FFF;
  --navbar-bg: #FFF;
  --icon-active: #2c2f32;
  --icon-idle: #8b88ff;
  --p-color: #071c1f;
  --subp-color: #adafca;
  --link-color: #6956e5;
  --a-light: #FFF;
  --shadow-color: rgba(94, 92, 154, 0.0588235294);
  --border-color: #eaeaf5;
  --sub-light: #fcfcfd;
  --border-input: #dedeea;
}

.dark-mode {
  --main-color: #6956e5;
  --body-bg: #151521;
  --navbar-bg: #1e1e2d;
  --icon-active: #FFF;
  --icon-idle: #8b88ff;
  --p-color: #FFF;
  --subp-color: #9aa4bf;
  --link-color: #6956e5;
  --a-light: #FFF;
  --shadow-color: rgba(0, 0, 0, 0.0588235294);
  --border-color: #2f3749;
  --sub-light: #21283b;
  --border-input: #3f485f;
}

.form-group {
  width: 100%;
  position: relative;
  margin: 0;
}
.form-group label {
  color: #adafca;
  font-size: 0.75rem;
  font-weight: 600;
  position: absolute;
  top: 16px;
  right: 20px;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  display: block;
  margin: 0;
  line-height: 1em;
}
.form-group .form-control {
  height: 50px;
  padding: 7px 20px 7px 20px;
  background-color: #ffffff;
  border: 1px solid #ebebeb;
  color: #3e3f5e;
  transition: border-color 0.2s ease-in-out;
  width: 100%;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
}
.form-group .form-control:focus {
  border-color: #41383c;
  box-shadow: none;
  outline: none;
}
.form-group .form-control::-moz-placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.8rem;
}
.form-group .form-control::placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.8rem;
}
.form-group select {
  cursor: pointer;
}

.create-account-btn {
  text-decoration: none;
  width: 100%;
  margin: auto;
  color: #FFF;
  display: inline-block;
  height: 43px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  line-height: 43px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  background-color: #7868e6;
  border: 0;
}
.create-account-btn svg {
  height: 18px;
  margin-left: 2px;
}
.create-account-btn svg path {
  fill: #FFF;
}
.create-account-btn:hover {
  background-color: #7868e6;
}

.form-check {
  display: flex;
  margin: 10px 5px 10px 0;
}
.form-check input {
  background-color: #fff;
  border: 1px solid #dedeea;
  height: 17px;
  width: 16px;
  position: unset;
  margin: 3px 0 0 5px;
}
.form-check p {
  color: #2c2f32;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 22px;
  cursor: pointer;
  display: block;
  margin: 0;
}
.form-check p a {
  text-decoration: none;
  color: #FFF;
}

p.text {
  margin-top: 30px;
  font-size: 0.875rem;
  line-height: 1.7142857143em;
  font-weight: 500;
  color: var(--p-color);
}
p.text a {
  text-decoration: none;
  color: #6956e5;
  font-weight: 700;
}

.active-input label {
  padding: 0 6px;
  font-size: 0.55rem;
  top: 9px;
  right: 20px;
}

@font-face {
  font-family: "en";
  font-style: normal;
  src: url(assets/fonts/din-regular.ttf);
}
.font-en {
  font-family: "en";
}

@font-face {
  font-family: "sf";
  font-style: normal;
  src: url(assets/fonts/sf.ttf);
}
.page-header {
  height: 40vh !important;
  margin: 0 !important;
}
@media (max-width: 575.98px) {
  .page-header {
    height: 30vh !important;
  }
}

.upper-header {
  background: #03031b;
  padding: 10px 0;
  color: #FFF;
}
.upper-header .upper-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.upper-header .upper-header-content .upper-header-actions {
  display: flex;
  align-items: center;
}
.upper-header .upper-header-content .upper-header-actions a {
  text-decoration: none;
  margin: 0 8px;
  font-size: 0.8rem;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .upper-header .upper-header-content .upper-header-actions {
    justify-content: space-between;
    width: 100%;
    display: none;
  }
}
.upper-header .upper-header-content .upper-header-info {
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .upper-header .upper-header-content .upper-header-info {
    justify-content: center;
    width: 100%;
  }
}
.upper-header .upper-header-content .upper-header-info .date {
  color: #FFF;
  padding-left: 15px;
  display: flex;
  align-items: center;
}
.upper-header .upper-header-content .upper-header-info .date svg {
  height: 16px;
  width: 16px;
  fill: #FFF;
  margin: 0 6px;
}
.upper-header .upper-header-content .upper-header-info .date span {
  font-size: 0.9rem;
  margin-top: 0px;
  margin-left: 10px;
  display: block;
  color: #9b7d31;
  font-weight: 600;
  word-spacing: 3px;
}

.header {
  background: #FFF;
  position: sticky;
  top: 0;
  z-index: 14;
  width: 100%;
  transition: all 0.1s ease-in-out;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.header:after {
  position: absolute;
  left: 0;
  bottom: -12px;
  content: "";
  height: 100px;
  width: 100%;
  background: url(assets/images/navbrush.png);
  z-index: -1;
  background-repeat: no-repeat;
  background-position: bottom;
}
.header .navbar {
  background: transparent;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 12px 0;
}
@media (max-width: 1199.98px) {
  .header .navbar {
    padding: 10px 0;
  }
}
@media (max-width: 991.98px) {
  .header .navbar {
    padding: 12px 15px;
  }
}
@media (max-width: 575.98px) {
  .header .navbar {
    padding: 12px 0;
  }
}
.header .navbar .nav-mobile-icon {
  display: none;
}
@media (max-width: 991.98px) {
  .header .navbar .nav-mobile-icon {
    display: block;
  }
}
.header .navbar .nav-mobile-icon svg {
  fill: #000;
}
.header .navbar .nav-part {
  display: flex;
  align-items: center;
}
.header .navbar .nav-logo {
  position: relative;
}
@media (max-width: 991.98px) {
  .header .navbar .nav-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}
.header .navbar .nav-logo .nav-mobile-icon {
  display: none;
}
@media (max-width: 991.98px) {
  .header .navbar .nav-logo .nav-mobile-icon {
    display: block;
  }
}
.header .navbar .nav-logo .nav-mobile-icon svg {
  height: 24px;
  width: 24px;
  fill: #000;
}
.header .navbar .nav-logo .nav-logo-container {
  position: relative;
  z-index: 10;
  width: 130px;
}
@media (max-width: 1199.98px) {
  .header .navbar .nav-logo .nav-logo-container {
    width: 150px;
  }
}
@media (max-width: 991.98px) {
  .header .navbar .nav-logo .nav-logo-container {
    width: auto;
  }
}
.header .navbar .nav-logo .nav-logo-container a {
  text-decoration: none;
  display: flex;
  align-items: center;
  vertical-align: middle;
}
.header .navbar .nav-logo .nav-logo-container img {
  max-width: 100%;
  height: 40px;
}
@media (max-width: 1199.98px) {
  .header .navbar .nav-logo .nav-logo-container img {
    height: 35px;
  }
}
.header .navbar .nav-logo .nav-logo-container .main-logo {
  display: block;
}
.header .navbar .nav-logo .nav-logo-container .img-dark {
  display: none;
}
.header .navbar .nav-logo .nav-search-icon {
  display: none;
}
@media (max-width: 991.98px) {
  .header .navbar .nav-logo .nav-search-icon {
    display: block;
  }
}
.header .navbar .nav-logo .nav-search-icon svg {
  height: 24px;
  width: 24px;
  fill: #000;
}
.header .navbar .nav-links {
  margin-top: 0;
  direction: ltr;
}
@media (max-width: 991.98px) {
  .header .navbar .nav-links {
    background: var(--body-bg);
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 5;
    overflow: auto;
    text-align: center;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    display: none;
  }
}
.header .navbar .nav-links .nav-close {
  display: none;
}
@media (max-width: 991.98px) {
  .header .navbar .nav-links .nav-close {
    display: block;
    position: fixed;
    top: 20px;
    left: 20px;
  }
}
.header .navbar .nav-links .nav-close svg {
  height: 25px;
  width: 25px;
  cursor: pointer;
}
.header .navbar .nav-links .nav-close svg g [fill] {
  fill: #000248;
}
.header .navbar .nav-links ul {
  display: flex;
  margin-bottom: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
}
.header .navbar .nav-links ul li {
  padding: 0 12px;
  display: flex;
  align-items: center;
  position: relative;
}
.header .navbar .nav-links ul li:hover a, .header .navbar .nav-links ul li:hover span {
  color: #41383c;
}
.header .navbar .nav-links ul li:hover .nav-link-dropdown {
  transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1199.98px) {
  .header .navbar .nav-links ul li {
    padding: 0 7px;
  }
}
@media (max-width: 991.98px) {
  .header .navbar .nav-links ul li {
    padding: 10px 15px;
    transform: perspective(400px) rotateY(-15deg);
    z-index: -1;
    margin: 7px 0;
  }
}
.header .navbar .nav-links ul li a, .header .navbar .nav-links ul li span {
  color: #000;
  position: relative;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 200;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 1199.98px) {
  .header .navbar .nav-links ul li a, .header .navbar .nav-links ul li span {
    font-size: 0.8rem;
  }
}
.header .navbar .nav-links ul li svg {
  height: 22px;
  width: 22px;
  margin: -1px 0px 0 0px;
  fill: #000;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.header .navbar .nav-links ul li .li-links {
  position: absolute;
  top: 0;
  right: 0;
  text-align: right;
  opacity: 0;
  visibility: hidden;
  transform: translate(0, -22px);
  transition: all 0.3s ease-in-out;
}
.header .navbar .nav-links ul li .li-links ul {
  display: block;
  background: var(--body-bg);
  width: 150px;
  display: block;
  text-align: right;
  padding: 10px 15px;
  border-radius: 8px;
  margin-top: 28px;
}
@media (max-width: 1199.98px) {
  .header .navbar .nav-links ul li .li-links ul {
    margin-top: 40px;
  }
}
.header .navbar .nav-links ul li .li-links ul li {
  display: block;
  margin: 8px 0;
  transition: all 0.3s ease-in-out;
  padding: 0 0;
}
.header .navbar .nav-links ul li .li-links ul li:hover {
  padding-right: 14px;
}
.header .navbar .nav-links ul li .li-links ul li:hover a {
  color: #41383c;
}
.header .navbar .nav-links ul li .li-links ul li a {
  color: var(--p-color);
}
.header .navbar .nav-links ul li .nav-link-dropdown {
  position: absolute;
  top: 30px;
  left: 4px;
  background: #FFF;
  z-index: 100;
  padding: 10px 10px 10px 10px;
  border-radius: 8px;
  box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  transform: translate(0, -10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  width: 200px;
}
@media (max-width: 991.98px) {
  .header .navbar .nav-links ul li .nav-link-dropdown {
    display: none;
  }
}
.header .navbar .nav-links ul li .nav-link-dropdown ul {
  display: block;
  text-align: left;
}
.header .navbar .nav-links ul li .nav-link-dropdown ul li {
  transition: all 0.2s ease-in-out;
  margin: 10px 0;
}
.header .navbar .nav-links ul li .nav-link-dropdown ul li:hover a {
  color: #41383c;
}
.header .navbar .nav-links ul li .nav-link-dropdown ul li a {
  font-size: 0.9rem;
  transition: all 0.2s ease-in-out;
  color: #000;
}
.header .navbar .nav-links ul .hover-drop:hover .li-links {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
.header .navbar .nav-links ul .nav-link-active a {
  color: #41383c;
}
@media (max-width: 991.98px) {
  .header .navbar .nav-links ul .nav-link-active a {
    color: #41383c;
  }
}
.header .navbar .nav-links ul .nav-link-active a:before {
  background: #000248;
  border-color: #000248;
}
.header .navbar .nav-actions .book-btn {
  background: #9b7d31;
  padding: 5px 25px;
  color: #FFF;
  font-size: 0.85rem;
  font-weight: 200;
  height: 35px;
  width: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  margin-left: 6px;
}
.header .navbar .nav-actions .book-btn svg {
  height: 20px;
  width: 20px;
  margin-left: 8px;
  fill: #FFF;
}
.header .navbar .nav-actions .book-btn span {
  display: inline-block;
}
@media (max-width: 991.98px) {
  .header .navbar .nav-actions .book-btn {
    display: none;
  }
}

.fixed-header:after {
  display: none;
}

.big-nav {
  width: 350px;
  padding-top: 0;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 20;
  box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  background: #FFF;
  height: 100vh;
  transition: all 0.4s ease-in-out;
  transition-delay: 0.1s;
  overflow: auto;
  direction: rtl;
}
@media (max-width: 575.98px) {
  .big-nav {
    width: 100%;
    height: 100vh;
  }
}
.big-nav .big-nav-header-title {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px 15px 20px;
  border-bottom: 1px solid #ebebeb;
  align-items: center;
  background: #FFF;
}
.big-nav .big-nav-header-title .nav-logo-container a {
  text-decoration: none;
  color: #000;
}
.big-nav .big-nav-header-title .nav-logo-container a img {
  height: 40px;
}
@media (max-width: 575.98px) {
  .big-nav .big-nav-header-title .nav-logo-container a img {
    height: 40px;
  }
}
.big-nav .big-nav-header-title .close-big-nav svg {
  fill: #000;
  width: 30px;
  cursor: pointer;
}
.big-nav .big-nav-header-title .close-link-popup svg {
  fill: #000;
}
.big-nav .big-nav-search .nav-search {
  width: 100%;
  padding: 10px 10px;
  display: flex;
}
.big-nav .big-nav-search .nav-search form {
  width: 100%;
}
.big-nav .big-nav-search .nav-search .form-group {
  width: 100%;
  position: relative;
  margin: 0;
}
.big-nav .big-nav-search .nav-search .form-group .form-control {
  height: 43px;
  padding: 0 40px 0 20px;
  background-color: #ffffff;
  border: 1px solid #ebebeb;
  color: #3e3f5e;
  transition: border-color 0.2s ease-in-out;
  width: 100%;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
}
.big-nav .big-nav-search .nav-search .form-group .form-control:focus {
  border-color: #41383c;
  box-shadow: none;
  outline: none;
}
.big-nav .big-nav-search .nav-search .form-group .form-control::-moz-placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.7rem;
}
.big-nav .big-nav-search .nav-search .form-group .form-control::placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.7rem;
}
.big-nav .big-nav-search .nav-search .form-group .search-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(0%, -50%);
}
.big-nav .big-nav-search .nav-search .form-group .search-icon svg {
  transform: rotateY(180deg);
  font-size: 0.7rem;
  height: 18px;
  width: 18px;
}
.big-nav .nav-links {
  width: 100%;
  height: 100%;
  position: relative;
}
@media (max-width: 767.98px) {
  .big-nav .nav-links ul {
    overflow: scroll;
    height: calc(100vh - 55px);
  }
}
.big-nav .nav-links ul .ul-head {
  padding-right: 30px;
  color: #adafca;
  font-size: 0.75rem;
  font-weight: 500;
}
.big-nav .nav-links ul li {
  text-decoration: none;
  color: #adafca;
  width: 100%;
  display: block;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  border-top: 1px solid rgba(229, 229, 229, 0.5411764706);
}
.big-nav .nav-links ul li .li-link {
  width: 100%;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.big-nav .nav-links ul li .li-link .link-info {
  white-space: nowrap;
  border-radius: 50px;
  margin: 0;
  transition: all 0.3s ease-in-out 0s;
  display: inline-flex;
  padding: 0 20px 0 0;
}
.big-nav .nav-links ul li .li-link .link-info a {
  text-decoration: none;
  color: #000;
  font-size: 0.9rem;
  line-height: 25px;
  font-weight: 500;
  transition: all 0.3s ease-in-out 0s;
  padding: 17px 0 17px 15px;
}
.big-nav .nav-links ul li .li-link .li-link-icon {
  width: 50px;
  display: flex;
  justify-content: end;
  cursor: pointer;
  padding: 17px 15px 17px 15px;
}
.big-nav .nav-links ul li .li-link .li-link-icon svg {
  height: 16px;
  width: 16px;
  fill: #000;
}
.big-nav .nav-links ul li .nav-link-popup {
  width: 350px;
  padding-top: 0;
  position: fixed;
  top: 0;
  z-index: 20;
  box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  background: #FFF;
  height: 100vh;
  transition: all 0.4s ease-in-out;
  transition-delay: 0.1s;
  overflow: auto;
}
@media (max-width: 575.98px) {
  .big-nav .nav-links ul li .nav-link-popup {
    width: 100%;
    height: 100vh;
  }
}
.big-nav .nav-links ul .li-active {
  background-color: #FFF;
  color: #000;
}
.big-nav .nav-links ul .li-active a svg {
  fill: #41383c;
}
.big-nav .nav-links ul .li-active a svg g [fill] {
  fill: #41383c;
}
.big-nav .nav-links ul .li-active a .svg-icon path {
  fill: #41383c;
  stroke: #41383c;
}
.big-nav .nav-links ul .li-active a .link-info {
  visibility: visible;
  padding-right: 8px;
}
.big-nav .nav-links ul .li-active a .link-info span {
  color: #41383c !important;
}
.big-nav .nav-links ul .li-active a .link-info span:hover {
  color: #41383c;
}
.big-nav .nav-links ul .li-active:hover {
  background: #FFF;
  color: #41383c;
}
.big-nav::-webkit-scrollbar {
  display: none;
}

.big-nav-hiddin {
  transform: translate(560px, 0);
  opacity: 0;
  z-index: -1 !important;
}

.close-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(22, 22, 34, 0.6);
  z-index: 10;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.open-over {
  opacity: 1;
  visibility: visible;
}

.active-dropdown {
  transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
}

.home-header {
  position: relative;
  height: 500px;
  width: 100%;
  background: #161b28;
  background-position: center center;
  background-size: cover;
}
@media (max-width: 991.98px) {
  .home-header {
    height: 325px;
  }
}
.home-header .header-overlay {
  height: 100%;
  width: 100%;
}
.home-header .header-content {
  text-align: center;
  color: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  width: 85%;
}
@media (max-width: 991.98px) {
  .home-header .header-content {
    width: 85%;
  }
}
.home-header .header-content figure {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 85px;
  width: 85px;
  text-align: center;
  margin: 0 auto 25px auto;
}
@media (max-width: 991.98px) {
  .home-header .header-content figure {
    margin: 0 auto 15px auto;
    height: 50px;
    width: 50px;
  }
}
.home-header .header-content h1 {
  text-transform: uppercase;
  font-size: 3.5rem;
}
@media (max-width: 991.98px) {
  .home-header .header-content h1 {
    font-size: 3.1rem;
  }
}
@media (max-width: 767.98px) {
  .home-header .header-content h1 {
    font-size: 2.7rem;
  }
}
@media (max-width: 575.98px) {
  .home-header .header-content h1 {
    font-size: 2.4rem;
  }
}

.home-header {
  height: calc(100vh - 108px);
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .home-header {
    height: 75vh;
  }
}
.home-header .header-overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.home-header .swiper-container {
  height: 100%;
  position: relative;
}
.home-header .swiper-container .swiper-wrapper .swiper-slide {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content {
  height: 100%;
  width: 100%;
  display: flex;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
  position: relative;
}
.home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content .swiper-overlay {
  background-image: linear-gradient(to right top, #5f4c1b, #5b412b, #0a0807, #9b7d31, #9b7d31);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.6;
}
.home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content .swiper-slider-content-inner {
  position: relative;
  z-index: 5;
}
.home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content .pretitle {
  text-align: center;
  font-size: 1.6rem;
  color: #fcdb5a;
  word-spacing: 15px;
  margin-bottom: -15px;
}
.home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content h1 {
  color: #FFF;
  font-size: 2.8rem;
  font-weight: 900;
  text-align: center;
  width: 100%;
  margin: 0 auto 15px auto;
}
@media (max-width: 767.98px) {
  .home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content h1 {
    font-size: 1.75rem;
    margin: 0 auto 5px auto;
  }
}
.home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content p {
  color: #FFF;
  font-size: 1.2rem;
  font-weight: 200;
  width: 75%;
  text-align: center;
  margin: auto;
}
@media (max-width: 991.98px) {
  .home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content p {
    width: 80%;
    font-size: 1.2rem;
  }
}
@media (max-width: 767.98px) {
  .home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content p {
    width: 85%;
    font-size: 1.1rem;
  }
}
@media (max-width: 575.98px) {
  .home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content p {
    width: 95%;
    font-size: 0.9rem;
  }
}

.home-btn {
  background-color: #fcdb5a;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  text-align: center;
  width: 175px;
  margin-top: 25px;
  padding: 15px 25px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
}

.swiper-pagination-bullet-active {
  background: #fcdb5a;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  height: 15px;
  width: 15px;
  border-radius: 50%;
}

.content {
  margin-top: 0;
}

.newsletter {
  background: #FAF9F7;
  padding: 75px 0;
}
.newsletter .newsletter-content .news-line .pretitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: #9b7d31;
}
@media (max-width: 575.98px) {
  .newsletter .newsletter-content .news-line .pretitle {
    font-size: 1rem;
    text-align: center;
  }
}
.newsletter .newsletter-content .news-line h3 {
  font-size: 3.5rem;
  font-weight: 500;
}
@media (max-width: 1199.98px) {
  .newsletter .newsletter-content .news-line h3 {
    font-size: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .newsletter .newsletter-content .news-line h3 {
    font-size: 1.75rem;
    text-align: center;
  }
}
.newsletter .newsletter-content .news-child-line .form-group .form-control {
  padding: 15px 5px 15px 15px;
  font-size: 17px;
  line-height: 22px;
  width: calc(100% - 75px);
  margin-right: auto;
  height: 55px;
  border: unset;
  border-bottom: 1px solid #0a0a0a;
  border-radius: unset;
  background: unset;
  font-family: "en";
}
.newsletter .newsletter-content .news-child-line .form-group .form-control::-moz-placeholder {
  font-size: 1rem;
  color: #918d89;
  font-family: "sf";
}
.newsletter .newsletter-content .news-child-line .form-group .form-control::placeholder {
  font-size: 1rem;
  color: #918d89;
  font-family: "sf";
}
@media (max-width: 1199.98px) {
  .newsletter .newsletter-content .news-child-line .form-group .form-control {
    width: calc(100% - 25px);
  }
}
@media (max-width: 767.98px) {
  .newsletter .newsletter-content .news-child-line .form-group .form-control {
    width: 90%;
    margin: 15px auto;
  }
}
.newsletter .newsletter-content .news-child-line button {
  outline: none;
  width: 150px;
  background: unset;
  border: unset;
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 35px;
}
.newsletter .newsletter-content .news-child-line button:focus, .newsletter .newsletter-content .news-child-line button:active {
  border: unset;
  box-shadow: unset;
  outline: none;
}
.newsletter .newsletter-content .news-child-line button svg {
  height: 20px;
  width: 20px;
  margin-right: 5px;
  transform: rotate(180deg);
}
@media (max-width: 767.98px) {
  .newsletter .newsletter-content .news-child-line button {
    margin: 15px auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.footer {
  background-color: #03031b;
  background-image: url(assets/images/footer-bg.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.footer .footer-container {
  padding: 75px 0 25px 0;
  height: 100%;
  width: 100%;
  display: inline-block;
  background-image: url(assets/images/footer-bg.jpg);
  background-position: center center;
}
.footer .social-links {
  margin-top: 25px;
  display: flex;
}
@media (max-width: 991.98px) {
  .footer .col-r {
    text-align: left !important;
  }
}
.footer .footer-col {
  text-align: left;
  display: inline-block;
  margin-bottom: 25px;
}
@media (max-width: 991.98px) {
  .footer .footer-col {
    padding: 0 25px;
  }
}
.footer .footer-col .Footer-head {
  margin-bottom: 25px;
}
.footer .footer-col .Footer-head a {
  text-decoration: none;
  color: #FFF;
  font-size: 1.3rem;
  display: block;
}
.footer .footer-col .Footer-head a.footer-logo {
  font-size: 1.4rem;
}
.footer .footer-col .Footer-head a.footer-logo img {
  width: 175px;
}
@media (max-width: 575.98px) {
  .footer .footer-col .Footer-head a.footer-logo img {
    width: unset;
    max-width: 100%;
    max-width: 175px;
  }
}
.footer .footer-col p.footer-address {
  color: #FFF;
  font-size: 13px;
  margin-bottom: 15px;
}
.footer .footer-col ul {
  margin: 0;
  padding: 0;
}
.footer .footer-col ul li {
  color: #FFF;
  font-size: 13px;
  margin: 0 0 15px;
  transition: all 0.3s ease-in-out;
}
.footer .footer-col ul li:hover {
  transform: translate(7px, 0);
}
.footer .footer-col ul li span {
  color: #FFF;
}
.footer .footer-col ul li a {
  color: #FFF;
  text-decoration: none;
}
.footer .sub-footer {
  padding: 20px 0;
  background: #03031b;
  color: #FFF;
  border-top: 1px solid #12122a;
}
.footer .sub-footer p.copy {
  color: #7e868e;
  font-size: 12px;
  margin: 0;
  text-align: left;
}
.footer .sub-footer p.copy a {
  color: #2ae99e;
  text-decoration: none;
}
@media (max-width: 767.98px) {
  .footer .sub-footer p.copy {
    text-align: center;
    margin-bottom: 0;
  }
}
.footer .links {
  font-size: 13px;
  color: #FFF;
  margin: 0 10px;
  text-decoration: none;
}
@media (max-width: 767.98px) {
  .footer .links {
    text-align: center;
    margin-bottom: 20px;
    display: inline-flex;
  }
}
.footer .links svg {
  fill: #FFF;
  height: 18px;
  width: 18px;
}
.footer .menamedia {
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  justify-content: end;
}
.footer .menamedia a {
  color: #9b7d31;
  font-family: "en";
  margin: 0 5px;
}
@media (max-width: 767.98px) {
  .footer .menamedia {
    justify-content: center;
  }
}
.footer .book-btn {
  background: #9b7d31;
  padding: 5px 25px;
  color: #FFF;
  font-size: 0.85rem;
  font-weight: 200;
  height: 35px;
  width: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  margin-left: 6px;
  margin-top: 25px;
}
.footer .book-btn svg {
  height: 20px;
  width: 20px;
  margin-left: 8px;
  fill: #FFF;
}
.footer .book-btn span {
  display: inline-block;
}

[lang=ar] footer {
  direction: rtl;
}
@media (max-width: 991.98px) {
  [lang=ar] footer .col-r {
    text-align: right !important;
  }
}
[lang=ar] footer .footer-col {
  text-align: right;
  padding-right: 50px;
}
[lang=ar] footer .footer-col li {
  transition: all 0.3s ease-in-out;
}
[lang=ar] footer .footer-col li:hover {
  transform: translate(-7px, 0);
}
[lang=ar] footer .sub-footer p.copy {
  text-align: center;
  direction: ltr;
}
@media (min-width: 767.98px) {
  [lang=ar] footer .sub-footer p.copy {
    text-align: right !important;
  }
}
@media (min-width: 767.98px) {
  [lang=ar] footer .sub-footer .text-md-right {
    text-align: left !important;
  }
}

[lang=ar] body {
  direction: rtl;
  text-align: right;
}
[lang=ar] .header .nav-links {
  direction: rtl;
}
[lang=ar] .header .nav-links .nav-link-dropdown {
  left: unset;
  right: 4px;
}
[lang=ar] .header .search-input {
  padding: 7px 35px 7px 20px;
  direction: rtl;
}
[lang=ar] .header .search-icon {
  left: unset;
  right: 10px;
}

.d-12-none {
  display: block !important;
}
@media (max-width: 1199.98px) {
  .d-12-none {
    display: none !important;
  }
}

.d-12-block {
  display: none !important;
}
@media (max-width: 1199.98px) {
  .d-12-block {
    display: block !important;
  }
}

.index-layout .upper-header {
  background: #FAF9F7;
  color: #41383c;
  padding: 10px 0 0 0;
  background-image: url(assets/images/pattern-paper.png);
}
.index-layout .upper-header .upper-header-content {
  padding-bottom: 12px;
  border-bottom: 1px solid #ddd;
}
.index-layout .upper-header .upper-header-content .upper-header-info .date a svg {
  fill: #41383c;
}
.index-layout .header {
  box-shadow: unset;
  background: #FAF9F7;
  background-image: url(assets/images/pattern-paper.png);
}
.index-layout .header .navbar .nav-actions a {
  border: 1px solid #DDD;
  background: unset;
}
.index-layout .header .navbar .nav-actions a svg {
  fill: #41383c;
}
.index-layout .header .navbar .nav-actions a span {
  color: #41383c;
}

.index-header {
  padding: 75px 0 0 0;
  background-color: #FAF9F7;
  background-image: url(assets/images/pattern-paper.png);
  background-position: center center;
}
.index-header h3 {
  font-size: 7rem;
  font-weight: 700;
  color: #41383c;
}
.index-header h3 span {
  color: #9b7d31;
}
@media (max-width: 1199.98px) {
  .index-header h3 {
    font-size: 5rem;
  }
}
@media (max-width: 991.98px) {
  .index-header h3 {
    font-size: 4rem;
  }
}
@media (max-width: 767.98px) {
  .index-header h3 {
    font-size: 3rem;
  }
}
@media (max-width: 575.98px) {
  .index-header h3 {
    font-size: 2.2rem;
  }
}
.index-header .header-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 50px 0 75px 0;
}
.index-header .header-text p {
  width: 500px;
  margin: 0 0 0 0;
  color: #918D89;
}
.index-header .header-text svg {
  fill: #9b7d31;
  height: 45px;
  width: 45px;
  border: 1px solid #d5d5d5;
  border-radius: 50%;
  padding: 7px;
}
@media (max-width: 575.98px) {
  .index-header .header-text svg {
    display: none;
  }
}
.index-header figure {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 750px;
  width: 100%;
}
@media (max-width: 1199.98px) {
  .index-header figure {
    height: 650px;
  }
}
@media (max-width: 991.98px) {
  .index-header figure {
    height: 550px;
  }
}
@media (max-width: 767.98px) {
  .index-header figure {
    height: 450px;
  }
}
@media (max-width: 575.98px) {
  .index-header figure {
    height: 350px;
  }
}

.contacts-page {
  padding: 0 0;
}
.contacts-page .contact-info-parent .contact-info-content-inner {
  border: 1px solid #d9e3e4;
  margin-bottom: 50px;
}
.contacts-page .contact-info-parent .contact-info-container {
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .contacts-page .contact-info-parent .contact-info-container {
    display: block;
    text-align: center;
  }
}
.contacts-page .contact-info-parent .contact-info-container .side {
  flex: 1;
}
@media (max-width: 991.98px) {
  .contacts-page .contact-info-parent .contact-info-container .side {
    margin: 20px 0;
  }
}
.contacts-page .contact-info-parent .contact-info-container .side a {
  text-decoration: none;
  display: block;
}
.contacts-page .contact-info-parent .contact-info-container .side .phone {
  font-size: 2.2rem;
  font-weight: 600;
  color: #41383c;
}
.contacts-page .contact-info-parent .contact-info-container .side .email {
  color: #000;
  font-size: 1.4rem;
  font-weight: 500;
}
.contacts-page .contact-info-parent .contact-info-container .side .address {
  font-weight: 400;
  font-size: 1.1rem;
  margin: 0;
}
.contacts-page .contact-info-parent .contact-info-container .side .social-links {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contacts-page .contact-info-parent .contact-info-container .side .social-links .links {
  margin: 0 7px;
  background: #e4e7ec;
  padding: 12px;
  border-radius: 50%;
}
.contacts-page .contact {
  position: relative;
}
.contacts-page .contact .contacts-container {
  height: 100%;
  width: 100%;
  display: inline-block;
}
.contacts-page .contact .contact-info h3 {
  font-size: 4rem;
  position: relative;
  color: #08344e;
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  .contacts-page .contact .contact-info h3 {
    font-size: 2.5rem !important;
  }
}
.contacts-page .contact .contact-info h3 svg {
  height: 84px;
  width: 295px;
  position: absolute;
  top: 99%;
  fill: #be0f5d;
  right: 0%;
  transform: translate(0%, 0);
}
@media (max-width: 991.98px) {
  .contacts-page .contact .contact-info h3 svg {
    right: unset;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.contacts-page .contact .contact-info p {
  margin-top: 25px;
  color: #838694;
  width: 80%;
  font-size: 1rem;
}
@media (max-width: 991.98px) {
  .contacts-page .contact .contact-info p {
    margin: auto;
    text-align: center;
  }
}
.contacts-page .contact .contact-info .contacts-line .contact-line {
  display: flex;
  align-items: center;
}
.contacts-page .contact .contact-info .contacts-line .contact-line svg {
  height: 40px;
  fill: #41383c;
  margin-left: 10px;
  margin-bottom: 0;
}
.contacts-page .contact .contact-info .contacts-line .contact-line .contact-line-part {
  margin: 20px 0;
}
.contacts-page .contact .contact-info .contacts-line .contact-line .contact-line-part h6 {
  margin: 0;
  font-size: 1.2rem;
  display: block;
}
.contacts-page .contact .contact-info .contacts-line .contact-line .contact-line-part p {
  margin: 0;
  width: 100%;
}
.contacts-page .contact .contact-form {
  margin: auto;
  margin-bottom: 0;
}
.contacts-page .contact .contact-form form {
  background: #FFF;
  padding: 0;
  border-radius: 20px;
  padding: 0 150px;
}
@media (max-width: 1199.98px) {
  .contacts-page .contact .contact-form form {
    padding: 0 50px;
  }
}
@media (max-width: 991.98px) {
  .contacts-page .contact .contact-form form {
    padding: 75px 100px;
  }
}
@media (max-width: 767.98px) {
  .contacts-page .contact .contact-form form {
    padding: 40px 100px;
  }
}
@media (max-width: 575.98px) {
  .contacts-page .contact .contact-form form {
    padding: 40px 50px;
  }
}
.contacts-page .contact .contact-form form span {
  color: #9b7d31;
  font-size: 1rem;
  font-weight: 600;
}
.contacts-page .contact .contact-form form h3 {
  font-size: 2.3rem;
  margin-bottom: 25px;
  font-weight: 700;
  color: #08344e;
}
.contacts-page .contact .contact-form form .form-group {
  margin-bottom: 20px;
}
.contacts-page .contact .contact-form form .form-group .form-control {
  padding: 15px 5px 15px 15px;
  font-size: 17px;
  line-height: 22px;
  margin-right: auto;
  height: 55px;
  border: unset;
  border-bottom: 1px solid #41383c;
  border-radius: unset;
  background: unset;
  font-family: "en";
}
.contacts-page .contact .contact-form form .form-group .form-control::-moz-placeholder {
  color: #797979;
  font-family: "sf";
}
.contacts-page .contact .contact-form form .form-group .form-control::placeholder {
  color: #797979;
  font-family: "sf";
}
.contacts-page .contact .contact-form form .form-group textarea {
  min-height: 180px;
}
.contacts-page .contact .contact-form form a {
  border: unset;
  background: #9b7d31;
  text-decoration: none;
  color: #FFF;
  padding: 8px 35px 8px 35px;
  font-size: 1rem;
  font-weight: 500;
  margin: 5px 0 15px 0;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
}
.contacts-page .contact-cards {
  padding: 75px 0;
  position: relative;
  z-index: 5;
  background: #FAF9F7;
}
.contacts-page .contact-cards .contact-card {
  background: #FFF;
  border-radius: 0;
  padding: 35px 40px;
  text-align: center;
}
@media (max-width: 991.98px) {
  .contacts-page .contact-cards .contact-card {
    margin-bottom: 12px;
  }
}
.contacts-page .contact-cards .contact-card .contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  border-radius: 12px;
  margin: 0px auto 22px auto;
}
.contacts-page .contact-cards .contact-card .contact-card-icon svg {
  height: 42px;
  width: 42px;
  fill: #9b7d31;
}
.contacts-page .contact-cards .contact-card .contact-card-info h3 {
  font-size: 1.4rem;
  color: #42393c;
  font-weight: 600;
  margin-bottom: 20px;
}
.contacts-page .contact-cards .contact-card .contact-card-info span {
  color: #7e868e;
  font-size: 0.9rem;
  display: block;
}
.contacts-page .contact-cards .contact-card .contact-card-info a {
  text-decoration: none;
  color: #41383c;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0px;
  display: block;
}
.contacts-page iframe {
  margin-bottom: -7px;
}

.team-page {
  padding: 75px 0;
}
.team-page .team-container .col-lg-4, .team-page .team-container .col-md-6 {
  display: flex;
  justify-content: center;
}
.team-page .team-container .team-card {
  position: relative;
  margin-bottom: 50px;
}
.team-page .team-container .team-card figure {
  margin: 0;
  height: 425px;
  width: 300px;
  border-radius: 12px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.team-page .team-container .team-card .team-card-info {
  background: #FAF9F7;
  position: absolute;
  bottom: -30px;
  right: 100px;
  padding: 30px 35px;
  width: 260px;
  border-radius: 12px;
}
.team-page .team-container .team-card .team-card-info h3 {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 0;
}
.team-page .team-container .team-card .team-card-info span {
  color: #9b7d31;
  font-weight: 600;
  font-size: 0.9rem;
}

.services-page {
  padding: 75px 0;
}

.services-container .service-card {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 350px;
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
}
.services-container .service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 12px;
  box-shadow: inset 0 -120px 50px -40px rgba(3, 3, 27, 0.7490196078);
}
.services-container .service-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.services-container .service-info h3 {
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 500;
  flex: 11;
}
.services-container .service-info p {
  color: #FFF;
  font-size: 0.9rem;
  font-weight: 400;
  display: none;
}
.services-container .service-info svg {
  fill: #FFF;
  height: 24px;
  width: 24px;
  flex: 1;
}

.one-service-container .about-service {
  background: #FAF9F7;
  padding: 75px 0;
}
.one-service-container .about-service span {
  color: #9b7d31;
  font-size: 1rem;
  font-weight: 600;
}
.one-service-container .about-service h3 {
  font-size: 2.3rem;
  margin-bottom: 25px;
  font-weight: 700;
  color: #41383c;
}
.one-service-container .about-service p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-weight: 500;
  color: #41383c;
}
.one-service-container .advan-service {
  padding: 75px 0;
}
.one-service-container .advan-service .advan-line {
  position: relative;
}
.one-service-container .advan-service .advan-line figure {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 650px;
  width: 87%;
  border-radius: 12px;
}
@media (max-width: 991.98px) {
  .one-service-container .advan-service .advan-line figure {
    width: 100%;
  }
}
.one-service-container .advan-service .advan-line .line-box {
  position: absolute;
  bottom: 25px;
  left: 0px;
  background: #171717;
  padding: 45px 45px;
  font-size: 2.6rem;
  font-weight: 600;
  color: #FFF;
  width: 350px;
  border-radius: 12px;
}
@media (max-width: 991.98px) {
  .one-service-container .advan-service .advan-line .line-box {
    display: none;
  }
}
.one-service-container .advan-service .advan-line-info {
  padding-right: 100px;
}
@media (max-width: 991.98px) {
  .one-service-container .advan-service .advan-line-info {
    padding-right: 0;
  }
}
.one-service-container .advan-service .advan-line-info span {
  color: #9b7d31;
  font-size: 1rem;
  font-weight: 600;
}
.one-service-container .advan-service .advan-line-info h3 {
  font-size: 3.3rem;
  margin-bottom: 25px;
  font-weight: 700;
  color: #41383c;
}
@media (max-width: 575.98px) {
  .one-service-container .advan-service .advan-line-info h3 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.one-service-container .advan-service .advan-line-info p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-weight: 500;
  color: #41383c;
}
@media (max-width: 575.98px) {
  .one-service-container .advan-service .advan-line-info p {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
}
.one-service-container .advan-service .advn-line-indent {
  margin-top: 25px;
}
@media (max-width: 575.98px) {
  .one-service-container .advan-service .advn-line-indent {
    margin-top: 10px;
  }
}
.one-service-container .advan-service .advn-line-indent .advan-line-part {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid #dddddd;
}
.one-service-container .advan-service .advn-line-indent .advan-line-part:first-child {
  border: unset;
}
.one-service-container .advan-service .advn-line-indent .advan-line-part span {
  color: #918D89;
  font-size: 1.6rem;
  font-weight: 500;
  margin-left: 15px;
  font-family: "en";
}
@media (max-width: 575.98px) {
  .one-service-container .advan-service .advn-line-indent .advan-line-part span {
    font-size: 1.3rem;
  }
}
.one-service-container .advan-service .advn-line-indent .advan-line-part h3 {
  font-size: 1.5rem;
  margin-bottom: 0;
  font-weight: 700;
  color: #41383c;
}
@media (max-width: 575.98px) {
  .one-service-container .advan-service .advn-line-indent .advan-line-part h3 {
    font-size: 1.2rem;
  }
}
.one-service-container .advan-service a {
  background: #9b7d31;
  padding: 5px 25px;
  color: #FFF;
  font-size: 1rem;
  font-weight: 500;
  height: 50px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  margin-left: 6px;
  margin-top: 25px;
}
.one-service-container .serv-nums {
  background: #FAF9F7;
  padding: 75px 0;
}
.one-service-container .serv-nums .num-line {
  text-align: center;
}
@media (max-width: 991.98px) {
  .one-service-container .serv-nums .num-line {
    margin-bottom: 35px;
  }
}
.one-service-container .serv-nums .num-line span {
  color: #9b7d31;
  font-size: 1.4rem;
  font-weight: 600;
}
.one-service-container .serv-nums .num-line h3 {
  font-size: 4rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #41383c;
}
.one-service-container .fq {
  padding: 75px 0;
}
.one-service-container .fq .advan-line {
  position: relative;
}
.one-service-container .fq .advan-line figure {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 650px;
  width: 87%;
  border-radius: 12px;
  margin-right: auto;
}
@media (max-width: 991.98px) {
  .one-service-container .fq .advan-line figure {
    display: none;
  }
}
.one-service-container .fq .advan-line .line-boxs {
  position: absolute;
  bottom: 25px;
  right: 15px;
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .one-service-container .fq .advan-line .line-boxs {
    display: none;
  }
}
.one-service-container .fq .advan-line .line-boxs .line-box {
  background: #171717;
  padding: 25px 35px;
  font-size: 2rem;
  font-weight: 600;
  color: #FFF;
  width: 240px;
  border-radius: 12px;
  margin-left: 15px;
}
.one-service-container .fq .advan-line .line-boxs .line-box span {
  font-size: 1rem;
  color: #FFF;
  margin-bottom: -1px;
  display: block;
}
.one-service-container .fq .advan-line .line-boxs .line-box h3 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.one-service-container .fq .advan-line .line-boxs .line-box p {
  font-size: 1rem;
  margin-bottom: 0;
}
.one-service-container .fq .advan-line .line-boxs .line-box-light {
  background: #FAF9F7 !important;
}
.one-service-container .fq .advan-line .line-boxs .line-box-light span {
  color: #41383c;
}
.one-service-container .fq .advan-line .line-boxs .line-box-light h3 {
  color: #41383c;
}
.one-service-container .fq .advan-line .line-boxs .line-box-light p {
  color: #41383c;
}
.one-service-container .fq .advan-line-info {
  padding-right: 0;
}
@media (max-width: 575.98px) {
  .one-service-container .fq .advan-line-info {
    padding-right: 0;
  }
}
.one-service-container .fq .advan-line-info span {
  color: #9b7d31;
  font-size: 1rem;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .one-service-container .fq .advan-line-info span {
    display: block;
    text-align: center;
  }
}
.one-service-container .fq .advan-line-info h3 {
  font-size: 3.3rem;
  margin-bottom: 25px;
  font-weight: 700;
  color: #41383c;
}
@media (max-width: 991.98px) {
  .one-service-container .fq .advan-line-info h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
  }
}
.one-service-container .fq .advan-line-info p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-weight: 500;
  color: #41383c;
}
.one-service-container .fq .fq-indent .faq-container {
  background-color: #fff;
  border-radius: 10px;
}
.one-service-container .fq .fq-indent .faq-item {
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.one-service-container .fq .fq-indent .faq-item:last-child {
  border: unset;
}
.one-service-container .fq .fq-indent .faq-item:last-child {
  border-bottom: none;
}
.one-service-container .fq .fq-indent .faq-question {
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 3px;
  padding-top: 3px;
}
.one-service-container .fq .fq-indent .faq-answer {
  font-size: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  text-align: right;
  padding-left: 10px;
  padding-right: 10px;
}
.one-service-container .fq .fq-indent .faq-answer p {
  padding: 25px 15px;
  margin: 0;
}
.one-service-container .fq .fq-indent .faq-answer.active {
  border-bottom: 1px solid #e0e0e0;
}
.one-service-container .fq .fq-indent .faq-answer.active:last-child {
  border: unset;
}
.one-service-container .fq .fq-indent .icon-container i {
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}
.one-service-container .fq .fq-indent .icon-container i.active {
  transform: rotate(90deg);
}
.one-service-container .fq a {
  background: #9b7d31;
  padding: 5px 25px;
  color: #FFF;
  font-size: 1rem;
  font-weight: 500;
  height: 50px;
  width: 225px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  margin-left: 6px;
  margin-top: 25px;
}

.blog-page {
  padding: 75px 0;
}

.blog-container .blog-card {
  margin-bottom: 25px;
}
.blog-container .blog-card figure {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 150px;
  width: 100%;
  border-radius: 12px;
  margin-bottom: 6px;
}
.blog-container .blog-card .blog-info {
  padding: 5px 10px;
}
.blog-container .blog-card .blog-info .blog-cat {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 5px;
  display: none;
}
.blog-container .blog-card .blog-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.blog-container .blog-card .blog-info .blog-info-details {
  color: #b5b3b1;
  font-size: 0.9rem;
  font-weight: 500;
}
.blog-container .blog-card .blog-info .blog-info-details span {
  margin-left: 3px;
}

.one-blog-container figure {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 450px;
  width: 100%;
  border-radius: 12px;
  margin-bottom: 25px;
}
.one-blog-container p {
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 35px;
  color: #42393c;
}
.one-blog-container h3 {
  margin: 25px 0;
  font-size: 2.5rem;
  font-weight: 600;
  color: #42393c;
}

.fq-page {
  padding: 75px 0;
}

.fq .fq-line {
  position: relative;
}
.fq .fq-line figure {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 650px;
  width: 87%;
  border-radius: 12px;
  margin-right: auto;
}
.fq .fq-line .line-boxs {
  position: absolute;
  bottom: 25px;
  right: 15px;
  display: flex;
  align-items: center;
}
.fq .fq-line .line-boxs .line-box {
  background: #171717;
  padding: 25px 35px;
  font-size: 2rem;
  font-weight: 600;
  color: #FFF;
  width: 240px;
  border-radius: 12px;
  margin-left: 15px;
}
.fq .fq-line .line-boxs .line-box span {
  font-size: 1rem;
  color: #FFF;
  margin-bottom: -1px;
  display: block;
}
.fq .fq-line .line-boxs .line-box h3 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.fq .fq-line .line-boxs .line-box p {
  font-size: 1rem;
  margin-bottom: 0;
}
.fq .fq-line .line-boxs .line-box-light {
  background: #FAF9F7 !important;
}
.fq .fq-line .line-boxs .line-box-light span {
  color: #41383c;
}
.fq .fq-line .line-boxs .line-box-light h3 {
  color: #41383c;
}
.fq .fq-line .line-boxs .line-box-light p {
  color: #41383c;
}
.fq .fq-line-info .fq-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
@media (max-width: 991.98px) {
  .fq .fq-line-info .fq-header {
    display: block;
    text-align: center;
  }
}
.fq .fq-line-info .fq-header .fq-header-info {
  flex: 1;
}
.fq .fq-line-info .fq-header .fq-text {
  padding-right: 50px;
  flex: 1;
}
@media (max-width: 991.98px) {
  .fq .fq-line-info .fq-header .fq-text {
    padding: 0;
  }
}
.fq .fq-line-info span {
  color: #9b7d31;
  font-size: 1rem;
  font-weight: 600;
}
.fq .fq-line-info h3 {
  font-size: 3.3rem;
  margin-bottom: 25px;
  font-weight: 700;
  color: #41383c;
}
@media (max-width: 991.98px) {
  .fq .fq-line-info h3 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.fq .fq-line-info p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-weight: 500;
  color: #41383c;
}
@media (max-width: 991.98px) {
  .fq .fq-line-info p {
    font-size: 0.9rem;
  }
}
.fq .fq-indent .faq-container {
  background-color: #fff;
  border-radius: 10px;
}
.fq .fq-indent .faq-item {
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fq .fq-indent .faq-item:last-child {
  border: unset;
}
.fq .fq-indent .faq-item:last-child {
  border-bottom: none;
}
.fq .fq-indent .faq-question {
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 3px;
  padding-top: 3px;
}
.fq .fq-indent .faq-answer {
  font-size: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  text-align: right;
  padding-left: 10px;
  padding-right: 10px;
}
.fq .fq-indent .faq-answer p {
  padding: 25px 15px;
  margin: 0;
}
.fq .fq-indent .faq-answer.active {
  border-bottom: 1px solid #e0e0e0;
}
.fq .fq-indent .faq-answer.active:last-child {
  border: unset;
}
.fq .fq-indent .icon-container i {
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}
.fq .fq-indent .icon-container i.active {
  transform: rotate(90deg);
}
.fq a {
  background: #9b7d31;
  padding: 5px 25px;
  color: #FFF;
  font-size: 1rem;
  font-weight: 500;
  height: 50px;
  width: 225px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  margin-left: 6px;
  margin-top: 25px;
}

.terms-text {
  background: #FAF9F7;
  padding: 75px 0;
}
.terms-text h3 {
  font-size: 1.75rem;
  margin-bottom: 25px;
  font-weight: 700;
  color: #41383c;
}
.terms-text p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-weight: 500;
  color: #41383c;
}
.terms-text ul {
  margin-bottom: 25px;
}

.fq {
  padding: 75px 0;
}
.fq .advan-line {
  position: relative;
}
.fq .advan-line figure {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 650px;
  width: 87%;
  border-radius: 12px;
  margin-right: auto;
}
@media (max-width: 991.98px) {
  .fq .advan-line figure {
    display: none;
  }
}
.fq .advan-line .line-boxs {
  position: absolute;
  bottom: 25px;
  right: 15px;
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .fq .advan-line .line-boxs {
    display: none;
  }
}
.fq .advan-line .line-boxs .line-box {
  background: #171717;
  padding: 25px 35px;
  font-size: 2rem;
  font-weight: 600;
  color: #FFF;
  width: 240px;
  border-radius: 12px;
  margin-left: 15px;
}
.fq .advan-line .line-boxs .line-box span {
  font-size: 1rem;
  color: #FFF;
  margin-bottom: -1px;
  display: block;
}
.fq .advan-line .line-boxs .line-box h3 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.fq .advan-line .line-boxs .line-box p {
  font-size: 1rem;
  margin-bottom: 0;
}
.fq .advan-line .line-boxs .line-box-light {
  background: #FAF9F7 !important;
}
.fq .advan-line .line-boxs .line-box-light span {
  color: #41383c;
}
.fq .advan-line .line-boxs .line-box-light h3 {
  color: #41383c;
}
.fq .advan-line .line-boxs .line-box-light p {
  color: #41383c;
}
.fq .advan-line-info {
  padding-right: 0;
}
@media (max-width: 575.98px) {
  .fq .advan-line-info {
    padding-right: 0;
  }
}
.fq .advan-line-info span {
  color: #9b7d31;
  font-size: 1rem;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .fq .advan-line-info span {
    display: block;
    text-align: center;
  }
}
.fq .advan-line-info h3 {
  font-size: 3.3rem;
  margin-bottom: 25px;
  font-weight: 700;
  color: #41383c;
}
@media (max-width: 991.98px) {
  .fq .advan-line-info h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
  }
}
.fq .advan-line-info p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-weight: 500;
  color: #41383c;
}
.fq .fq-indent .faq-container {
  background-color: #fff;
  border-radius: 10px;
}
.fq .fq-indent .faq-item {
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fq .fq-indent .faq-item:last-child {
  border: unset;
}
.fq .fq-indent .faq-item:last-child {
  border-bottom: none;
}
.fq .fq-indent .faq-question {
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 3px;
  padding-top: 3px;
}
.fq .fq-indent .faq-answer {
  font-size: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  text-align: right;
  padding-left: 10px;
  padding-right: 10px;
}
.fq .fq-indent .faq-answer p {
  padding: 25px 15px;
  margin: 0;
}
.fq .fq-indent .faq-answer.active {
  border-bottom: 1px solid #e0e0e0;
}
.fq .fq-indent .faq-answer.active:last-child {
  border: unset;
}
.fq .fq-indent .icon-container i {
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}
.fq .fq-indent .icon-container i.active {
  transform: rotate(90deg);
}
.fq a {
  background: #9b7d31;
  padding: 5px 25px;
  color: #FFF;
  font-size: 1rem;
  font-weight: 500;
  height: 50px;
  width: 225px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  margin-left: 6px;
  margin-top: 25px;
}

.about-vision {
  padding: 100px 0;
}
@media (max-width: 991.98px) {
  .about-vision {
    padding: 75px 0;
  }
}
.about-vision .vision-header {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 991.98px) {
  .about-vision .vision-header {
    display: block;
    text-align: center;
  }
}
.about-vision .vision-header span {
  color: #9b7d31;
  font-size: 1rem;
  font-weight: 600;
}
.about-vision .vision-header h3 {
  font-size: 3rem;
  margin-bottom: 25px;
  font-weight: 700;
  color: #41383c;
}
@media (max-width: 991.98px) {
  .about-vision .vision-header h3 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.about-vision .vision-header p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-weight: 500;
  color: #41383c;
}
@media (max-width: 991.98px) {
  .about-vision .vision-header p {
    font-size: 0.9rem;
  }
}
.about-vision .vision-header .vision-header-info {
  flex: 1;
  align-items: center;
}
.about-vision .vision-header .vision-text {
  padding-right: 50px;
  flex: 1;
}
@media (max-width: 991.98px) {
  .about-vision .vision-header .vision-text {
    padding: 0;
  }
}
.about-vision .vision-cards .vision-card {
  padding: 50px 25px;
  background: #FAF9F7;
  text-align: center;
  height: 375px;
}
@media (max-width: 575.98px) {
  .about-vision .vision-cards .vision-card {
    height: 325px;
  }
}
.about-vision .vision-cards .vision-card lord-icon {
  height: 100px;
  width: 100px;
}
@media (max-width: 575.98px) {
  .about-vision .vision-cards .vision-card lord-icon {
    height: 75px;
    width: 75px;
  }
}
@media (max-width: 991.98px) {
  .about-vision .vision-cards .vision-card {
    margin-bottom: 15px;
  }
}
.about-vision .vision-cards .vision-card h3 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  font-weight: 500;
  color: #41383c;
}
@media (max-width: 575.98px) {
  .about-vision .vision-cards .vision-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}

.about-section figure {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 550px;
  width: 80%;
  border-radius: 12px;
}
@media (max-width: 991.98px) {
  .about-section figure {
    height: 550px;
    width: 100%;
    margin-bottom: 25px;
  }
}

.team-section {
  padding: 100px 0;
}
.team-section .team-header {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 991.98px) {
  .team-section .team-header {
    display: block;
    text-align: center;
  }
}
.team-section .team-header span {
  color: #9b7d31;
  font-size: 1rem;
  font-weight: 600;
}
.team-section .team-header h3 {
  font-size: 3rem;
  margin-bottom: 25px;
  font-weight: 700;
  color: #41383c;
}
@media (max-width: 991.98px) {
  .team-section .team-header h3 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.team-section .team-header p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-weight: 500;
  color: #41383c;
}
@media (max-width: 991.98px) {
  .team-section .team-header p {
    font-size: 0.9rem;
  }
}
.team-section .team-header .team-header-info {
  flex: 1;
  align-items: center;
}
.team-section .team-header .team-text {
  padding-right: 50px;
  flex: 1;
}
@media (max-width: 991.98px) {
  .team-section .team-header .team-text {
    padding: 0;
  }
}
.team-section .col-lg-4, .team-section .col-md-6 {
  display: flex;
  justify-content: center;
}
.team-section .team-card {
  position: relative;
  margin-bottom: 50px;
}
.team-section .team-card figure {
  margin: 0;
  height: 425px;
  width: 300px;
  border-radius: 12px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.team-section .team-card .team-card-info {
  background: #FAF9F7;
  position: absolute;
  bottom: -30px;
  right: 100px;
  padding: 30px 35px;
  width: 260px;
  border-radius: 12px;
}
.team-section .team-card .team-card-info h3 {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 0;
}
.team-section .team-card .team-card-info span {
  color: #9b7d31;
  font-weight: 600;
  font-size: 0.9rem;
}

.client-page .partner-card {
  margin-bottom: 35px;
  text-align: center;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "en";
  background-color: #FFF;
  height: 100%;
  position: relative;
  overflow-x: hidden;
}

.row {
  overflow: hidden;
}

.container-fluid {
  padding-right: 50px;
  padding-left: 50px;
}

.row-inside-row {
  margin-right: -8px;
  margin-left: -8px;
}

.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-md-6,
.col-md-3,
.col-md-4,
.col-md-8,
.col-md-9,
.col-sm-4,
.col-sm-6 {
  padding-right: 8px;
  padding-left: 8px;
}

a {
  display: block;
  text-decoration: none;
  color: unset;
}
a:hover {
  color: unset;
  text-decoration: unset;
}

.section-header-center {
  text-align: center;
  margin-bottom: 50px;
  display: block;
}
.section-header-center h3 {
  color: #071c1f;
  font-size: 3rem;
  padding-left: 10px;
  margin-bottom: 0;
  font-weight: 700;
}
.section-header-center h3 span {
  font-weight: 400;
  color: #9b7d31;
}
@media (max-width: 575.98px) {
  .section-header-center h3 {
    font-size: 2rem;
  }
}
.section-header-center p {
  display: flex;
  align-items: center;
  width: 60%;
  margin: auto;
  color: #515151;
  font-weight: 500;
}
@media (max-width: 575.98px) {
  .section-header-center p {
    width: 100%;
  }
}

.lg-backdrop,
.lg-outer,
.lg-outer .lg-inner {
  direction: ltr;
}

.lg-progress-bar .lg-progress {
  background: #41383c !important;
}

.lg-backdrop {
  background-color: rgba(21, 21, 31, 0.96);
}

.lg-outer .lg-thumb-item {
  cursor: pointer !important;
  float: left;
  overflow: hidden;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  margin: 0 !important;
  opacity: 0.3;
  transition: all 0.3s ease-in-out;
}

.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
  opacity: 1;
}

.lg-outer .lg-thumb {
  margin: auto;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: linear-gradient(45deg, #f2fffc, #edf3ff);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #9b7d31;
}

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

.services-section {
  padding: 100px 0;
}
.services-section .services-header {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 991.98px) {
  .services-section .services-header {
    display: block;
    text-align: center;
  }
}
.services-section .services-header span {
  color: #9b7d31;
  font-size: 1rem;
  font-weight: 600;
}
.services-section .services-header h3 {
  font-size: 3rem;
  margin-bottom: 25px;
  font-weight: 700;
  color: #41383c;
}
@media (max-width: 991.98px) {
  .services-section .services-header h3 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.services-section .services-header p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-weight: 500;
  color: #41383c;
}
@media (max-width: 991.98px) {
  .services-section .services-header p {
    font-size: 0.9rem;
  }
}
.services-section .services-header .services-header-info {
  flex: 1;
  align-items: center;
}
.services-section .services-header .services-text {
  padding-right: 50px;
  flex: 1;
}
@media (max-width: 991.98px) {
  .services-section .services-header .services-text {
    padding: 0;
  }
}
.services-section .services-container .serv-card {
  border-left: 1px solid #dddddd;
  padding-right: 25px;
}
@media (max-width: 991.98px) {
  .services-section .services-container .serv-card {
    text-align: center;
    border: unset;
    margin-bottom: 50px;
  }
}
.services-section .services-container .serv-card lord-icon {
  height: 90px;
  width: 90px;
}
.services-section .services-container .serv-card h3 {
  margin-top: 25px;
  font-size: 1.5rem;
  font-weight: 600;
}
.services-section .services-container .serv-card svg {
  fill: #000;
  height: 25px;
  width: 25px;
  margin-top: 50px;
}
@media (max-width: 991.98px) {
  .services-section .services-container .serv-card svg {
    display: none;
  }
}

.about-section {
  background: #FAF9F7;
  padding: 125px 0;
}
@media (max-width: 991.98px) {
  .about-section {
    padding: 75px 0;
  }
}
.about-section .about-line .about-line-box {
  border: 4px solid #212529;
  width: 350px;
  padding: 35px 35px;
}
@media (max-width: 991.98px) {
  .about-section .about-line .about-line-box {
    margin: 0 auto 50px auto;
  }
}
.about-section .about-line .about-line-box h3 {
  margin-bottom: 100px;
  font-weight: 600;
  font-size: 2.5rem;
  color: #9b7d31;
}
.about-section .about-line .about-line-box .about-years span {
  font-size: 1.2rem;
}
.about-section .about-line .about-line-box .about-years h2 {
  font-size: 4rem;
  font-weight: 600;
  position: relative;
  z-index: 3;
}
.about-section .about-line .about-line-box .about-years h2:before {
  content: "";
  height: 75px;
  width: 75px;
  background: #9b7d31;
  display: inline-block;
  position: absolute;
  top: -10px;
  right: 25px;
  border-radius: 50%;
  opacity: 0.2;
  z-index: 1;
}
.about-section .about-line span {
  color: #9b7d31;
  font-size: 1rem;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .about-section .about-line span {
    text-align: center;
    display: block;
  }
}
.about-section .about-line h4 {
  font-size: 3.2rem;
  margin-bottom: 25px;
  font-weight: 700;
  color: #41383c;
}
@media (max-width: 991.98px) {
  .about-section .about-line h4 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
  }
}
@media (max-width: 575.98px) {
  .about-section .about-line h4 {
    font-size: 1.75rem;
    margin-bottom: 10px;
    text-align: center;
  }
}
.about-section .about-line p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-weight: 500;
  color: #41383c;
}
@media (max-width: 991.98px) {
  .about-section .about-line p {
    font-size: 1rem;
    margin-bottom: 15px;
    text-align: center;
  }
}
.about-section .about-line .about-num {
  margin-top: 40px;
}
.about-section .about-line .about-num h3 {
  font-size: 4rem;
  font-weight: 900;
  stroke: currentColor;
  -webkit-text-stroke-color: #41383c;
  -webkit-text-stroke-width: 1px;
  color: transparent;
}
@media (max-width: 991.98px) {
  .about-section .about-line .about-num h3 {
    text-align: center;
  }
}

.partener-section {
  padding: 100px 0;
}
.partener-section .partener-header {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 991.98px) {
  .partener-section .partener-header {
    display: block;
    text-align: center;
  }
}
.partener-section .partener-header span {
  color: #9b7d31;
  font-size: 1rem;
  font-weight: 600;
}
.partener-section .partener-header h3 {
  font-size: 3rem;
  margin-bottom: 25px;
  font-weight: 700;
  color: #41383c;
}
@media (max-width: 991.98px) {
  .partener-section .partener-header h3 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.partener-section .partener-header p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-weight: 500;
  color: #41383c;
}
@media (max-width: 991.98px) {
  .partener-section .partener-header p {
    font-size: 0.9rem;
  }
}
.partener-section .partener-header .partener-header-info {
  flex: 1;
  align-items: center;
}
.partener-section .partener-header .partener-text {
  padding-right: 50px;
  flex: 1;
}
@media (max-width: 991.98px) {
  .partener-section .partener-header .partener-text {
    padding: 0;
  }
}
@media (max-width: 991.98px) {
  .partener-section .partner-images .partner-card {
    margin-bottom: 25px;
    text-align: center;
  }
}
.partener-section .partner-images .partner-card:hover img {
  opacity: 1;
}
.partener-section .partner-images .partner-card img {
  opacity: 0.25;
  transition: all 0.3s ease-in-out;
}

.video-section {
  padding: 125px 0;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.video-section svg {
  height: 75px;
  width: 75px;
  border: 1px solid #FFF;
  fill: #FFF;
  border-radius: 50%;
  padding: 10px;
  margin-bottom: 50px;
  cursor: pointer;
  display: none;
}
.video-section h3 {
  color: #FFF;
  font-size: 3rem;
}
@media (max-width: 767.98px) {
  .video-section h3 {
    font-size: 2rem;
  }
}
.video-section p {
  color: #FFF;
  width: 60%;
  margin: auto;
}
@media (max-width: 767.98px) {
  .video-section p {
    width: 90%;
    margin: auto;
  }
}
.video-section .video-section-content {
  position: relative;
  z-index: 5;
}
.video-section .video-section-overlay {
  padding: 100px 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to right top, #5f4c1b, #5b412b, #0a0807, #9b7d31, #9b7d31);
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
}/*# sourceMappingURL=main.css.map */