@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900;1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap");
:root {
  --main-color: #49a760;
  --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: #49a760;
  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;
}

.page-header {
  height: 40vh !important;
  margin: 0 !important;
}

.upper-header {
  background: #1a4133;
  padding: 12px 0;
}
.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;
}
@media (max-width: 575.98px) {
  .upper-header .upper-header-content .upper-header-actions {
    justify-content: space-between;
    width: 100%;
  }
}
.upper-header .upper-header-content .upper-header-actions .social {
  border-right: 1px solid #818181;
  padding-right: 15px;
}
@media (max-width: 575.98px) {
  .upper-header .upper-header-content .upper-header-actions .social {
    border: unset;
  }
}
.upper-header .upper-header-content .upper-header-actions .social ul {
  display: flex;
  align-items: center;
}
.upper-header .upper-header-content .upper-header-actions .social ul .social-icon {
  margin: 0 8px;
}
.upper-header .upper-header-content .upper-header-actions .social ul .social-icon a {
  display: block;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}
.upper-header .upper-header-content .upper-header-actions .social ul .social-icon a:hover svg {
  fill: #49a760;
}
.upper-header .upper-header-content .upper-header-actions .social ul .social-icon a svg {
  height: 22px;
  width: 22px;
  fill: #FFF;
  transition: 0.2s ease-in-out;
}
@media (max-width: 575.98px) {
  .upper-header .upper-header-content .upper-header-actions .social ul .social-icon a svg {
    height: 18px;
    width: 18px;
  }
}
@media (max-width: 991.98px) {
  .upper-header .upper-header-content .upper-header-actions .nav-actions {
    display: none;
  }
}
.upper-header .upper-header-content .upper-header-actions .search-input {
  height: 40px;
  padding: 7px 35px 7px 35px;
  background-color: #1f4e3d;
  border: 1px solid transparent;
  color: #FFF;
  transition: border-color 0.2s ease-in-out;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  width: 220px;
  direction: ltr;
}
@media (max-width: 1199.98px) {
  .upper-header .upper-header-content .upper-header-actions .search-input {
    width: 190px;
  }
}
@media (max-width: 575.98px) {
  .upper-header .upper-header-content .upper-header-actions .search-input {
    width: auto;
  }
}
.upper-header .upper-header-content .upper-header-actions .search-input:active {
  border: 1px solid #49a760;
  box-shadow: none;
  outline: none;
}
.upper-header .upper-header-content .upper-header-actions .search-input:focus {
  border: 1px solid #49a760;
  box-shadow: none;
  outline: none;
}
.upper-header .upper-header-content .upper-header-actions .search-input::-moz-placeholder {
  color: #cacaca;
  font-weight: 400;
  font-size: 0.8rem;
}
.upper-header .upper-header-content .upper-header-actions .search-input::placeholder {
  color: #cacaca;
  font-weight: 400;
  font-size: 0.8rem;
}
.upper-header .upper-header-content .upper-header-actions .search-icon {
  position: absolute;
  left: 10px;
  top: 46%;
  transform: translate(0, -50%);
}
.upper-header .upper-header-content .upper-header-actions .search-icon svg {
  height: 18px;
  width: 18px;
  fill: #fcdb5a;
}
.upper-header .upper-header-content .upper-header-actions .lang {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0 0 0 15px;
  z-index: 10;
  width: auto;
  justify-content: end;
}
.upper-header .upper-header-content .upper-header-actions .lang .switch-langs {
  flex: 1;
  order: 2 !important;
  -webkit-box-ordinal-group: 2;
}
.upper-header .upper-header-content .upper-header-actions .lang .switch-langs h6 {
  margin: 1px 0 0 0;
  color: var(--p-color);
  font-family: "en";
}
.upper-header .upper-header-content .upper-header-actions .lang .li-links {
  position: absolute;
  top: 0;
  left: 0;
  text-align: right;
  opacity: 0;
  visibility: hidden;
  transform: translate(0, -22px);
  transition: all 0.3s ease-in-out;
  z-index: 100;
}
.upper-header .upper-header-content .upper-header-actions .lang .li-links ul {
  display: block;
  width: 150px;
  display: block;
  text-align: left;
  padding: 10px 10px;
  border-radius: 8px;
  margin-top: 28px;
  background: #FFF;
}
@media (max-width: 1199.98px) {
  .upper-header .upper-header-content .upper-header-actions .lang .li-links ul {
    margin-top: 40px;
  }
}
.upper-header .upper-header-content .upper-header-actions .lang .li-links ul li {
  display: flex;
  margin: 8px 0;
  transition: all 0.3s ease-in-out;
  padding: 0 0;
}
.upper-header .upper-header-content .upper-header-actions .lang .li-links ul li:hover a {
  color: #6956e5;
}
.upper-header .upper-header-content .upper-header-actions .lang .li-links ul li a {
  color: var(--p-color);
  text-decoration: none;
}
.upper-header .upper-header-content .upper-header-actions .lang .hover-drop {
  display: flex;
  align-items: center;
}
.upper-header .upper-header-content .upper-header-actions .lang .hover-drop span {
  color: #FFF;
  position: relative;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  margin: 0 3px;
  display: flex;
  align-items: center;
}
.upper-header .upper-header-content .upper-header-actions .lang .hover-drop .lang-icon svg {
  fill: #FFF;
  height: 18px;
  width: 18px;
  margin: 0 5px;
}
.upper-header .upper-header-content .upper-header-actions .lang .hover-drop .arrow {
  height: 20px;
  width: 20px;
  margin: 0px 8px 0 8px;
  fill: #FFF;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.upper-header .upper-header-content .upper-header-actions .lang .hover-drop .flag-svg {
  height: 20px;
  width: 20px;
  margin: 0 2px;
  border-radius: 50%;
}
.upper-header .upper-header-content .upper-header-actions .lang .hover-drop:hover .li-links {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 2px);
}
@media (max-width: 1199.98px) {
  .upper-header .upper-header-content .upper-header-actions .lang .hover-drop:hover .li-links {
    transform: translate(0, -8px);
  }
}
.upper-header .upper-header-content .upper-header-actions .lang .hover-drop .li-links {
  z-index: 150;
}
.upper-header .upper-header-content .upper-header-actions .lang .hover-drop .li-links li svg {
  height: 20px;
  width: 20px;
  margin: 0px 8px 0 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  transform: rotate(0);
}
.upper-header .upper-header-content .upper-header-actions .lang .hover-drop .li-links li a {
  font-weight: 600;
}
.upper-header .upper-header-content .upper-header-info {
  display: flex;
  align-items: center;
}
.upper-header .upper-header-content .upper-header-info .temp {
  border-right: 1px solid #164722;
  padding-right: 15px;
  color: #FFF;
  display: flex;
  align-items: center;
}
.upper-header .upper-header-content .upper-header-info .temp svg {
  height: 18px;
  width: 18px;
  fill: #fcdb5a;
  margin: 0px 6px;
  transform: rotate(12deg);
}
.upper-header .upper-header-content .upper-header-info .date {
  color: #FFF;
  padding-left: 15px;
  display: flex;
  align-items: center;
}
@media (max-width: 575.98px) {
  .upper-header .upper-header-content .upper-header-info .date {
    display: none;
  }
}
.upper-header .upper-header-content .upper-header-info .date svg {
  height: 18px;
  width: 18px;
  fill: #fcdb5a;
  margin: 0 6px;
}

.header {
  background: #FFF;
  position: sticky;
  top: 0;
  z-index: 6;
  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: #49a760;
}
.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: 600;
  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: #49a760;
}
.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: #49a760;
}
.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: #49a760;
}
@media (max-width: 991.98px) {
  .header .navbar .nav-links ul .nav-link-active a {
    color: #49a760;
  }
}
.header .navbar .nav-links ul .nav-link-active a:before {
  background: #000248;
  border-color: #000248;
}

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

.big-nav {
  width: 350px;
  padding-top: 0;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 15;
  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: #49a760;
  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: #49a760;
}
.big-nav .nav-links ul .li-active a svg g [fill] {
  fill: #49a760;
}
.big-nav .nav-links ul .li-active a .svg-icon path {
  fill: #49a760;
  stroke: #49a760;
}
.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: #49a760 !important;
}
.big-nav .nav-links ul .li-active a .link-info span:hover {
  color: #49a760;
}
.big-nav .nav-links ul .li-active:hover {
  background: #FFF;
  color: #49a760;
}
.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;
}

.content {
  margin-top: 0;
}

footer {
  margin-top: 0;
  background: #1f4e3d;
  padding: 75px 0 0 0;
  position: relative;
}
footer:before {
  position: absolute;
  left: 0;
  top: -83px;
  content: "";
  height: 100px;
  width: 100%;
  background: url(assets/images/navbrush.png);
  z-index: 2;
  background-repeat: no-repeat;
  background-position: bottom;
}
footer .nav-actions .search-input {
  height: 55px;
  padding: 12px 57px 12px 20px;
  background-color: #FFF;
  border: 1px solid transparent;
  color: #000;
  transition: border-color 0.2s ease-in-out;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  width: 99%;
  direction: ltr;
}
footer .nav-actions .search-input:active {
  border: 1px solid #49a760;
  box-shadow: none;
  outline: none;
}
footer .nav-actions .search-input:focus {
  border: 1px solid #49a760;
  box-shadow: none;
  outline: none;
}
footer .nav-actions .search-input::-moz-placeholder {
  color: #212529;
  font-weight: 500;
  font-size: 0.8rem;
}
footer .nav-actions .search-input::placeholder {
  color: #212529;
  font-weight: 500;
  font-size: 0.8rem;
}
footer .nav-actions .search-icon button {
  position: absolute;
  right: 8px;
  top: 8px;
  border-radius: 12px;
  background: #f7c35f;
  border: none;
  height: 40px;
  width: 40px;
  text-transform: uppercase;
  font-weight: 900;
  padding: 0 !important;
}
footer .footer-container {
  height: 100%;
  width: 100%;
  background-image: url(assets/images/footer-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@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-left: 50px;
  }
}
footer .footer-col .Footer-head {
  margin-bottom: 20px;
}
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-family: "en-bold";
  font-size: 1.4rem;
}
footer .footer-col .Footer-head a.footer-logo img {
  width: 150px;
}
footer .footer-col p.footer-address {
  color: #FFF;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
}
footer .footer-col ul {
  margin: 0;
  padding: 0;
}
footer .footer-col ul li {
  color: #FFF;
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0 0 15px;
  transition: all 0.3s ease-in-out;
}
footer .footer-col ul li:hover a {
  color: #f7c35f;
}
footer .footer-col ul li span {
  color: #FFF;
}
footer .footer-col ul li a {
  color: #FFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease-in-out;
}
footer .sub-footer {
  padding: 20px 0;
  background: #1a4133;
  color: #FFF;
  margin-top: 0;
  align-items: center;
}
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 .sub-footer .links {
  font-size: 0.9px;
  font-weight: 600;
  color: #FFF;
  margin: 0 10px;
  text-decoration: none;
}
@media (max-width: 767.98px) {
  footer .sub-footer .links {
    text-align: center;
    margin-bottom: 20px;
    display: inline-flex;
  }
}
footer .sub-footer .links svg {
  fill: #FFF;
  height: 18px;
  width: 18px;
}

[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-left: 0;
  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: center !important;
  }
}
@media (min-width: 767.98px) {
  [lang=ar] footer .sub-footer .text-md-right {
    text-align: center !important;
  }
}

[lang=ar] body {
  direction: rtl;
  text-align: right;
  font-family: "cairo";
}
[lang=ar] .upper-header {
  direction: ltr;
}
[lang=ar] .upper-header .date {
  direction: rtl;
}
[lang=ar] .upper-header .temp {
  direction: rtl;
}
[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;
  }
}

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

.product-card {
  text-align: left;
  position: relative;
  margin-bottom: 12px;
}
.product-card .product-card-image figure {
  height: 150px;
  width: 100%;
  margin-bottom: 0;
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.product-card .product-card-content {
  background: #eff2f5;
  padding: 20px 25px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  height: 236px;
}
.product-card .product-card-content .pretitle {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 6px 0;
  display: inline-block;
  background: #49a760;
  color: #FFF;
  padding: 2px 13px;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 5;
}
.product-card .product-card-content h3 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #071c1f;
  margin: 0;
  text-transform: uppercase;
  height: 96px;
}
.product-card .product-card-content p {
  font-size: 0.9rem;
  font-weight: 500;
  color: gray;
  margin: 0;
}
.product-card .product-card-content a {
  background-color: #fcdb5a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 120px;
  margin-top: 15px;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
}

.product-page-header figure {
  height: 450px;
  width: 100%;
  margin-bottom: 0;
  border-radius: 12px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 991.98px) {
  .product-page-header figure {
    height: 350px;
  }
}
@media (max-width: 767.98px) {
  .product-page-header figure {
    height: 300px;
  }
}
.product-page-header .product-page-header-info {
  background: #1f4e3d;
  color: #FFF;
  border-radius: 12px;
  padding: 25px 50px;
  width: 90%;
  margin: -100px auto 0 auto;
}
.product-page-header .product-page-header-info .info-line {
  margin: 16px;
}
.product-page-header .product-page-header-info .info-line h3 {
  margin-bottom: 5px;
  font-size: 1.1rem;
  font-weight: 600;
}
.product-page-header .product-page-header-info .info-line h3:after {
  content: "";
  height: 1px;
  width: 20px;
  background: #fcdb5a;
  display: block;
}
.product-page-header .product-page-header-info .info-line p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.8;
}

[lang=ar] .product-card {
  text-align: right;
}

.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: #49a760;
}
.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 {
  padding: 75px 0 100px 0;
  background: #eff2f5;
  position: relative;
  background-image: url(../assets/images/pt3.png);
  background-repeat: no-repeat;
  background-position: 50% 100%;
}
.contacts-page .contact .contacts-container {
  height: 100%;
  width: 100%;
  display: inline-block;
  margin: 0 0 50px 0;
}
.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: #49a760;
  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 {
  border-radius: 20px;
  margin: auto;
  margin-bottom: 0;
}
.contacts-page .contact .contact-form form {
  background: #FFF;
  padding: 35px;
  border-radius: 20px;
  padding: 60px 65px;
  box-shadow: 0 0 15px 0px rgba(109, 117, 143, 0.2);
}
@media (max-width: 767.98px) {
  .contacts-page .contact .contact-form form {
    padding: 40px 25px;
  }
}
.contacts-page .contact .contact-form form span {
  color: #49a760;
  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 {
  border-style: solid;
  background: #f8f8f8;
  padding: 14px 25px 14px 25px;
  border-radius: 8px;
}
.contacts-page .contact .contact-form form .form-group .form-control::-moz-placeholder {
  color: #797979;
}
.contacts-page .contact .contact-form form .form-group .form-control::placeholder {
  color: #797979;
}
.contacts-page .contact .contact-form form .form-group textarea {
  min-height: 200px;
}
.contacts-page .contact .contact-form form a {
  border: unset;
  background: #f7c35f;
  text-decoration: none;
  color: #000;
  padding: 8px 35px 8px 35px;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 5px 0 15px 0;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  border-radius: 12px;
}
.contacts-page .contact-cards {
  margin-top: -100px;
  position: relative;
  z-index: 5;
}
.contacts-page .contact-cards .contact-card {
  background: #FFF;
  border-radius: 12px;
  padding: 45px 50px;
  border: 1px solid #f5f8fa;
  text-align: center;
}
.contacts-page .contact-cards .contact-card .contact-card-icon {
  border: 1px solid #f5f8fa;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  border-radius: 12px;
  background: #eff2f5;
  margin: 0px auto 22px auto;
}
.contacts-page .contact-cards .contact-card .contact-card-icon svg {
  height: 32px;
  width: 32px;
  fill: #000;
}
.contacts-page .contact-cards .contact-card .contact-card-info h3 {
  font-size: 2rem;
  color: #000;
  font-weight: 500;
  margin: 0;
}
.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: #49a760;
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 25px;
  display: block;
}
.contacts-page .contacts-map {
  padding: 75px 0;
}

.fq {
  padding: 75px 0;
  background: #eff2f5;
}
.fq .accordion .card {
  border-radius: 6px !important;
  border: 1px solid #FFF !important;
  margin-bottom: 12px;
}
.fq .accordion .card .card-header {
  background: #FFF;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  border-radius: 6px 6px 0 0;
  border-bottom: none;
  cursor: pointer;
}
.fq .accordion .card-header:hover {
  background: #f7c35f;
}
.fq .accordion .card-header h2 span {
  float: left;
  margin-top: 10px;
}
.fq .accordion .card-header .btn {
  color: #000;
  font-size: 1.1rem;
  font-weight: 600;
  width: 100%;
  text-align: right;
  position: relative;
  top: 4px;
}
.fq .accordion .card-header i {
  float: left;
  font-size: 1.3rem;
  font-weight: bold;
  position: relative;
  top: -4px;
  font-style: normal;
}
.fq .accordion .card-header .btn:hover {
  color: #000;
}
.fq .accordion .card-body {
  color: #324353;
  text-align: right;
  border-top: 1px solid #eceded;
  font-family: "cairo", serif;
  line-height: 2em;
}
.fq .page-title {
  text-align: center;
  font-size: 2.3rem;
  color: #005aff;
  margin: 2rem 0;
  font-family: "cairo", serif;
  position: relative;
}
.fq .page-title::after {
  content: "";
  width: 100px;
  position: absolute;
  margin: 0 auto;
  height: 4px;
  border-radius: 1px;
  background: #005aff;
  left: 0;
  right: 0;
  bottom: -15px;
}

.expert {
  padding: 75px 0;
}
.expert .expert-text {
  text-align: center;
  font-size: 6rem;
  background-image: url(assets/images/text.jpg);
  background-position: 50% 58%;
  background-repeat: no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  line-height: 90px;
  margin-bottom: 100px;
}
@media (max-width: 991.98px) {
  .expert .expert-text {
    font-size: 4rem;
    line-height: 60px;
    margin-bottom: 75px;
  }
}
@media (max-width: 991.98px) {
  .expert .expert-text {
    font-size: 2.5rem;
    line-height: 40px;
    margin-bottom: 50px;
  }
}
.expert .expert-product {
  position: relative;
}
.expert .expert-product:before {
  content: "TRONCO";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25rem;
  font-weight: 900;
  color: #fef7db;
}
@media (max-width: 991.98px) {
  .expert .expert-product:before {
    display: none;
  }
}
.expert .expert-product .expert-line h3 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 3.8rem;
}
@media (max-width: 991.98px) {
  .expert .expert-product .expert-line h3 {
    text-align: center;
  }
}
@media (max-width: 575.98px) {
  .expert .expert-product .expert-line h3 {
    font-size: 3rem;
  }
}
.expert .expert-product .expert-line h4 {
  font-weight: 400;
  font-size: 2.5rem;
}
@media (max-width: 991.98px) {
  .expert .expert-product .expert-line h4 {
    text-align: center;
  }
}
@media (max-width: 575.98px) {
  .expert .expert-product .expert-line h4 {
    font-size: 2rem;
  }
}
.expert .expert-product .expert-line p {
  color: #7e868e;
  font-size: 1rem;
  font-weight: 600;
  display: block;
}
.expert .expert-product .expert-line a {
  background-color: #fcdb5a;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  text-align: center;
  width: 175px;
  margin-top: 50px;
  padding: 15px 25px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
}
@media (max-width: 991.98px) {
  .expert .expert-product .expert-line a {
    text-align: center;
    margin: 25px auto;
  }
}
.expert .expert-product .expert-line .expert-img {
  height: 275px;
  width: 225px;
  background: rgba(255, 255, 255, 0.5803921569);
  border: 5px solid #f7c35f;
  text-align: center;
  margin: auto;
  position: relative;
}
@media (max-width: 991.98px) {
  .expert .expert-product .expert-line .expert-img {
    margin: 50px auto;
  }
}
.expert .expert-product .expert-line .expert-img img {
  max-width: 355px;
  margin: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -58%);
}

.nums {
  background: #eff2f5;
  padding: 75px 0 0 0;
}
.nums .nums-content {
  padding-bottom: 75px;
  text-align: center;
  margin-top: 75px;
  background-image: url(assets/images/pt5.png);
  background-repeat: no-repeat;
}
@media (max-width: 991.98px) {
  .nums .nums-content .nums-line {
    margin-bottom: 12px;
  }
}
.nums .nums-content .nums-line h3 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 0;
  color: #333;
}
.nums .nums-content .nums-line span {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
}

.about-section {
  padding: 75px 0;
}
.about-section .section-header-center {
  text-align: left;
  margin-bottom: 0;
}
.about-section .section-header-center .pretitle {
  color: #49a760;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
}
@media (max-width: 991.98px) {
  .about-section .section-header-center .pretitle {
    text-align: center;
  }
}
.about-section .section-header-center h3 {
  padding: 0;
  font-size: 4rem;
  line-height: 58px;
  margin-bottom: 13px;
}
@media (max-width: 991.98px) {
  .about-section .section-header-center h3 {
    padding: 0;
    font-size: 2.4rem;
    line-height: 39px;
    margin-bottom: 17px;
    text-align: center;
  }
}
.about-section .section-header-center .header-text {
  margin: 0;
  width: 90%;
  margin-bottom: 25px;
}
@media (max-width: 991.98px) {
  .about-section .section-header-center .header-text {
    text-align: center;
    width: 100%;
  }
}
.about-section .about-line figure {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  aspect-ratio: 16/15;
  margin: 15px 35px 0 105px;
  border-radius: 12px;
}
@media (max-width: 991.98px) {
  .about-section .about-line figure {
    margin: 0;
    aspect-ratio: 16/9;
  }
}

[lang=ar] .expert .expert-text {
  font-size: 5.5rem;
}
[lang=ar] .expert .expert-product .expert-line a {
  margin-right: 0;
  margin-left: auto;
}
[lang=ar] .about-section .section-header-center {
  text-align: right;
}

.animal-page {
  padding: 75px 0;
}
.animal-page .home-animal-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  border-radius: 12px;
  height: 100%;
  width: 100%;
}
.animal-page .animal-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 25px 15px 0px 15px;
}
.animal-page .animal-card-content .pretitle {
  color: #f7c35f;
  font-size: 1rem;
  margin-bottom: -10px;
  font-weight: 500;
}
.animal-page .animal-card-content .title {
  color: #FFF;
  font-size: 2rem;
  font-weight: 600;
}
.animal-page .animal-card {
  display: block;
  position: relative;
  border-radius: 12px;
  margin-bottom: 12px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.animal-page .h-500 .animal-card {
  height: 400px;
}
.animal-page .h-250 .animal-card {
  height: 194px;
}

.exporting-page .exporting-table {
  background: #eff2f5;
  padding: 75px 0;
}
.exporting-page .exporting-table .table thead tr {
  background: #f7c35f;
}
.exporting-page .exporting-table .table thead th {
  border-bottom: 1px solid #dee2e6;
}
.exporting-page .exporting-table .table-bordered td, .exporting-page .exporting-table .table-bordered th {
  font-size: 1.2rem;
}
.exporting-page .exporting-videos {
  padding: 75px 0;
}
.exporting-page .exporting-videos .video-card {
  border-radius: 12px;
  margin-bottom: 12px;
}
.exporting-page .exporting-videos .video-card video {
  border-radius: 12px;
  height: 225px;
}
.exporting-page .exporting-videos .video-card .plyr--video {
  border-radius: 12px;
}
.exporting-page .exporting-videos .video-card .plyr--full-ui input[type=range] {
  color: #49a760 !important;
}
.exporting-page .exporting-videos .video-card .plyr__control--overlaid, .exporting-page .exporting-videos .video-card .plyr--video .plyr__control.plyr__tab-focus, .exporting-page .exporting-videos .video-card .plyr--video .plyr__control:hover, .exporting-page .exporting-videos .video-card .plyr--video .plyr__control[aria-expanded=true] {
  background: #49a760 !important;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Rajdhani", sans-serif;
  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: #f7c35f;
}
@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%;
  }
}

.page-header {
  margin: 40px 0;
}

.load-more:hover a {
  background: #000;
  color: #FFF;
}
.load-more a {
  background: #49a760;
  padding: 10px 35px;
  border-radius: 0;
  display: table;
  margin: 20px auto 40px auto;
  color: #FFF;
  font-weight: 500;
  font-size: 1.2rem;
  transition: all 0.3s ease-in-out;
}
.load-more a img {
  width: 30px;
  margin: 0 6px;
}

.req {
  background: #49a760;
  padding: 10px 25px;
  display: table;
  margin: auto;
  text-align: center;
  margin-top: 35px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  color: #FFF;
  cursor: pointer;
  border-radius: 12px;
}

.req-one-ser {
  margin: 0;
}
.req-one-ser svg {
  fill: #FFF;
}

[lang=ar] .toggle-font-family {
  font-family: "cairo", sans-serif;
}

[lang=en] .toggle-font-family {
  font-family: "cairo";
}

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

.lg-progress-bar .lg-progress {
  background: #49a760 !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;
}

.order-service, .contact-container {
  position: fixed;
  z-index: 5555;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 60%;
  background: #FFF;
  padding: 15px 40px;
  border-radius: 12px;
  transition: opacity 0.5s ease-in-out 0s, visibility 0.5s ease-in-out 0s, transform 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767.98px) {
  .order-service, .contact-container {
    width: 95%;
  }
}
.order-service .order-service-content .order-servive-header, .contact-container .order-service-content .order-servive-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #ebebeb;
}
.order-service .order-service-content .order-servive-header h6, .contact-container .order-service-content .order-servive-header h6 {
  font-size: 2rem;
}
.order-service .order-service-content .order-servive-header svg, .contact-container .order-service-content .order-servive-header svg {
  fill: #000;
  height: 30px;
  width: 30px;
  cursor: pointer;
}
.order-service .order-service-content .order-service-form, .contact-container .order-service-content .order-service-form {
  margin: 15px 5px 15px 5px;
}
.order-service .order-service-content .order-service-form .form-group, .contact-container .order-service-content .order-service-form .form-group {
  margin: 6px 0;
}
.order-service .order-service-content .order-service-form textarea, .contact-container .order-service-content .order-service-form textarea {
  min-height: 200px;
}
.order-service .order-service-content .order-service-form button, .contact-container .order-service-content .order-service-form button {
  margin-top: 15px;
  width: 100%;
  background: #49a760;
  color: #FFF;
  font-size: 1rem;
  font-weight: 500;
  border: 0;
  outline: unset;
  box-shadow: unset;
  padding: 12px 0;
  border-radius: 8px;
  margin: 10px 10px 0 10px;
}

.open-popup {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translate(-50%, -50%) !important;
}

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

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

/* Handle */
::-webkit-scrollbar-thumb {
  background: #49a760;
}

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

.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 .navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  background: transparent;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 50px;
}
@media (max-width: 1199.98px) {
  .home-header .navbar {
    padding: 25px 25px;
  }
}
.home-header .navbar .nav-logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
  vertical-align: middle;
}
.home-header .navbar .nav-logo p {
  color: #FFF;
  font-family: "en-bold";
  font-size: 1.3rem;
  margin-bottom: 0;
  margin-bottom: 0;
  margin-left: 6px;
  margin-top: 0px;
  text-transform: uppercase;
}
@media (max-width: 1199.98px) {
  .home-header .navbar .nav-logo p {
    font-size: 1.1rem;
  }
}
@media (max-width: 575.98px) {
  .home-header .navbar .nav-logo p {
    display: none;
  }
}
.home-header .navbar .nav-logo img {
  width: 75px;
}
@media (max-width: 575.98px) {
  .home-header .navbar .nav-logo img {
    height: 40px;
    width: 40px;
  }
}
@media (max-width: 991.98px) {
  .home-header .navbar .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #00d2ff; /* fallback for old browsers */ /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, #3a7bd5, #00d2ff); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    z-index: 5;
    overflow: auto;
    text-align: center;
  }
}
.home-header .navbar .nav-links .nav-close {
  display: none;
}
@media (max-width: 991.98px) {
  .home-header .navbar .nav-links .nav-close {
    display: block;
    position: fixed;
    top: 20px;
    left: 20px;
  }
}
.home-header .navbar .nav-links .nav-close svg {
  height: 25px;
  width: 25px;
}
.home-header .navbar .nav-links .nav-close svg g [fill] {
  fill: #FFF;
}
.home-header .navbar .nav-links ul {
  display: flex;
  margin-bottom: 0;
  padding: 0;
}
@media (max-width: 991.98px) {
  .home-header .navbar .nav-links ul {
    display: block;
    text-align: left;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.home-header .navbar .nav-links ul li {
  padding: 0 10px;
  display: flex;
  align-items: center;
  position: relative;
}
.home-header .navbar .nav-links ul li:hover a, .home-header .navbar .nav-links ul li:hover span, .home-header .navbar .nav-links ul li:hover svg {
  color: #6956e5;
  fill: #6956e5;
}
@media (max-width: 1199.98px) {
  .home-header .navbar .nav-links ul li {
    padding: 15px 8px;
  }
}
.home-header .navbar .nav-links ul li a, .home-header .navbar .nav-links ul li span {
  color: #FFF;
  position: relative;
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .home-header .navbar .nav-links ul li a:before, .home-header .navbar .nav-links ul li span:before {
    content: "";
    height: 12px;
    width: 12px;
    border: 1px solid #FFF;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    margin: 0 10px;
    margin-top: -2px;
  }
}
.home-header .navbar .nav-links ul li svg {
  height: 10px;
  width: 10px;
  margin: 0px 8px 0 8px;
  fill: #FFF;
  transform: rotate(90deg);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.home-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;
}
.home-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: 12px;
  margin-top: 28px;
}
@media (max-width: 1199.98px) {
  .home-header .navbar .nav-links ul li .li-links ul {
    margin-top: 40px;
  }
}
.home-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;
}
.home-header .navbar .nav-links ul li .li-links ul li:hover {
  padding-right: 14px;
}
.home-header .navbar .nav-links ul li .li-links ul li:hover a {
  color: #6956e5;
}
.home-header .navbar .nav-links ul li .li-links ul li a {
  color: var(--p-color);
}
.home-header .navbar .nav-links ul .hover-drop:hover .li-links {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
.home-header .navbar .nav-links ul .nav-link-active a {
  color: #6956e5;
  font-weight: 900;
}
@media (max-width: 991.98px) {
  .home-header .navbar .nav-links ul .nav-link-active a {
    color: #000;
  }
}
.home-header .navbar .nav-links ul .nav-link-active a:before {
  background: #FFF;
  border-color: #FFF;
}
.home-header .navbar .nav-actions {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 17px 0 32px;
}
.home-header .navbar .nav-actions .icon {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.home-header .navbar .nav-actions .icon svg {
  fill: #FFF;
  height: 20px;
  width: 20px;
  margin: 0 10px;
}
@media (max-width: 575.98px) {
  .home-header .navbar .nav-actions .icon svg {
    margin: 0 8px;
  }
}
.home-header .navbar .nav-actions .icon span {
  color: var(--p-color);
}
.home-header .navbar .nav-actions .icon.dark-mode svg {
  height: 25px !important;
  width: 25px !important;
}
.home-header .navbar .nav-actions .icon.dark-mode svg g [fill] {
  fill: #FFF;
}
.home-header .navbar .nav-actions .switch-langs h6.page-lang {
  color: #FFF;
  font-weight: 900;
  font-family: "ar-reg";
  margin-bottom: 0;
  margin-top: 6px;
}
.home-header .navbar .nav-actions .nav-toggler {
  display: none;
}
@media (max-width: 991.98px) {
  .home-header .navbar .nav-actions .nav-toggler {
    display: block;
  }
}
.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 - 128px);
  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 .navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  background: transparent;
  width: 100%;
}
.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: url(assets/images/05.png);
  background-repeat: repeat;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
}
.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 h1 {
  color: #FFF;
  font-size: 7.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content h1 {
    font-size: 2.5rem;
    margin: 30px 15px 10px 15px;
  }
}
.home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content p {
  color: #FFF;
  font-size: 1.2rem;
  width: 60%;
  text-align: center;
  margin: auto;
}
@media (max-width: 991.98px) {
  .home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content p {
    width: 70%;
  }
}
@media (max-width: 767.98px) {
  .home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content p {
    width: 80%;
  }
}
@media (max-width: 575.98px) {
  .home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content p {
    width: 90%;
  }
}

.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%;
}

.brands {
  padding: 0 0 0px 0;
  border-bottom: 1px solid #F2F5FA;
}
.brands .swiper {
  width: 100%;
  margin-right: auto;
  margin-left: 0;
}
.brands .swiper-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.brands .companies-slider {
  height: 167px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brands .companies-slider .brand-card {
  text-align: center;
  padding: 0 25px;
}
.brands .companies-slider .brand-card:hover img {
  opacity: 1;
}
.brands .companies-slider .brand-card img {
  max-width: 100%;
  text-align: center;
  transition: all 0.3s ease-in-out;
  opacity: 0.4;
}

.products-intro {
  padding: 75px 0 0 0;
}
.products-intro .pro-intro-line .pretitle {
  color: #f7c35f;
  font-size: 1.2rem;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .products-intro .pro-intro-line .pretitle {
    text-align: center;
  }
}
.products-intro .pro-intro-line .heading-text {
  line-height: 60px;
  font-size: 4rem;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .products-intro .pro-intro-line .heading-text {
    line-height: 30px;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
  }
}
.products-intro .pro-intro-line .text {
  color: #515151;
  font-weight: 600;
  font-size: 1.1rem;
}
@media (max-width: 991.98px) {
  .products-intro .pro-intro-line .text {
    text-align: center;
  }
}

.products {
  padding: 50px 0 0 0;
}
.products .home-product-card {
  display: block;
  position: relative;
  height: 350px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 12px;
}
@media (max-width: 991.98px) {
  .products .home-product-card {
    margin-bottom: 12px;
  }
}
.products .home-product-card .home-product-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.2392156863);
  border-radius: 12px;
  height: 100%;
  width: 100%;
}
.products .home-product-card .home-product-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 25px 15px 10px 25px;
}
.products .home-product-card .home-product-card-content h3 {
  color: #FFF;
}

.animals {
  padding: 75px 0;
  background-image: url(assets/images/animals.jpg);
  background-size: cover;
  background-position: center center;
}
.animals .section-header-center h3 {
  color: #FFF;
}
.animals .section-header-center .header-text {
  color: #FFF;
}
.animals .home-animal-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  border-radius: 12px;
  height: 100%;
  width: 100%;
}
.animals .animal-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 25px 15px 10px 25px;
}
.animals .animal-card-content .pretitle {
  color: #f7c35f;
  font-size: 2rem;
  margin-bottom: -20px;
  font-weight: 500;
}
.animals .animal-card-content .title {
  color: #FFF;
  font-size: 3rem;
  font-weight: 600;
}
.animals .animal-card {
  display: block;
  position: relative;
  border-radius: 12px;
  margin-bottom: 12px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.animals .h-500 .animal-card {
  height: 400px;
}
.animals .h-250 .animal-card {
  height: 194px;
}

.h-350 .animal-card {
  height: 344px;
}

.fullscreen-bg {
  overflow: hidden;
  height: calc(100vh - 128px);
  width: 100%;
  position: relative;
}
.fullscreen-bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.26), rgba(0, 85, 103, 0));
  z-index: 2;
}
.fullscreen-bg .fullscreen-bg-content {
  height: 100%;
  width: 100%;
  display: flex;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
  color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  text-align: center;
}
.fullscreen-bg .fullscreen-bg-content h1 {
  font-size: 3.5rem;
  font-weight: 600;
  display: block;
}
.fullscreen-bg .fullscreen-bg-content p {
  font-size: 1.5rem;
  font-weight: 500;
  display: block;
}

.fullscreen-bg__video {
  width: 100%;
  height: 100%;
  transform: scale(1.4);
}/*# sourceMappingURL=main.css.map */