@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap");
/* Start Default */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cairo", sans-serif;
}

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

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

body {
  max-width: 2240px;
  margin: 0 auto;
  direction: rtl;
  overflow-x: hidden !important;
}
body::-webkit-scrollbar {
  width: 5px;
}
body::-webkit-scrollbar-track {
  background: #fff;
}
body::-webkit-scrollbar-thumb {
  background: #c09a11;
}

@media (max-width: 900px) {
  body::-webkit-scrollbar {
    width: 0px;
  }
}
html {
  width: 100%;
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #000;
}

button {
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* clears the ‘X’ from Internet Explorer */
input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #c09a11; /* Border color */
  border-radius: 4px;
  outline: none;
  transition: 0.3s;
}

/* Change the color of the checkbox when checked */
input[type=checkbox]:checked {
  border-color: #c09a11; /* Border color when checked */
  background-color: #c09a11; /* Background color when checked */
}

/* Style the checkmark inside the checkbox */
input[type=checkbox]::before {
  content: "✓"; /* Unicode character for checkmark */
  display: block;
  width: 16px;
  height: 16px;
  margin: 2px;
  font-size: 16px;
  color: #fff; /* Checkmark color */
  line-height: 16px;
  text-align: center;
  visibility: hidden;
}

/* Show the checkmark when the checkbox is checked */
input[type=checkbox]:checked::before {
  visibility: visible;
}

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

/* clears the ‘X’ from Chrome */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
}

.js-scroll {
  opacity: 0;
}

.js-scroll.scrolled {
  opacity: 1;
}

.scrolled.fade-left {
  animation: fadeleft 800ms cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.scrolled.fade-right {
  animation: faderight 800ms cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.scrolled.fade-top {
  animation: fadetop 800ms cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.scrolled.fade-btm {
  animation: fadebtm 800ms cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

@keyframes fadeleft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes faderight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadetop {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadebtm {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.opacity {
  opacity: 0;
}

.opacity-ani {
  opacity: 0;
  animation: opacityani 800ms ease 500ms forwards;
}

@keyframes opacityani {
  100% {
    opacity: 1;
  }
}
/* End Default */
.box {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}

.box2 {
  max-width: 1300px;
  width: 100%;
  padding: 0 20px;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* End Default */
nav {
  position: fixed;
  top: 30px;
  left: 0;
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  transition: 0.2s;
  z-index: 5;
}

nav.color {
  background-color: #222429;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.251);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.goTop {
  display: none;
  position: fixed;
  bottom: 5%;
  right: 20px;
  z-index: 5;
}
.goTop span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #222429;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.251);
  cursor: pointer;
  transition: 0.2s;
}
.goTop span:hover {
  background-color: #c09a11;
}
.goTop span:hover i {
  color: #fff;
}
.goTop span i {
  color: #fff;
  font-size: 1.5em;
}

.f-s {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  width: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}

.links {
  display: flex;
}

.mainLinks {
  display: flex;
  list-style: none;
  gap: 25px;
}

.link {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1em;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
}
.link i {
  transition: 0.2s;
}

.link {
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  height: 90px;
  gap: 5px;
  transition: 0.2s;
}
.link::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 3px;
  bottom: 25px;
  background-color: #c09a11;
  border-radius: 3px;
  left: -101%;
  transition: 0.2s;
}

.link.active::after {
  left: 0;
}

.menu {
  display: none;
  flex-direction: column;
  position: relative;
  height: 80px;
  width: 35px;
  border: none;
  outline: none;
  background-color: transparent;
}
.menu span {
  height: 2px;
  width: 30px;
  border-radius: 2px;
  background-color: #fff;
  position: absolute;
  transition: 0.3s;
}
.menu span:nth-child(1) {
  top: 28px;
}
.menu span:nth-child(2) {
  top: 40px;
}
.menu span:nth-child(3) {
  top: 52px;
}

.activeMenu .box .menu span:nth-child(1) {
  transform: rotate(45deg);
  top: 40px;
  background-color: red;
}

.activeMenu .box .menu span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.activeMenu .box .menu span:nth-child(3) {
  transform: rotate(-45deg);
  background-color: red;
  top: 40px;
}

.ls {
  display: flex;
  gap: 20px;
}

.home {
  width: 100%;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-bottom: 7px solid #c09a11;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.home img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home h1 {
  position: absolute;
  text-align: center;
  color: #fff;
  font-size: 3em;
  padding-top: 30px;
}

.homeImg {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}

.last {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mLinks {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.mLinks .sBTn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 0 15px;
  position: absolute;
  left: 0;
  cursor: pointer;
}
.mLinks .sBTn i {
  color: #fff;
  font-size: 1.2em;
}
.mLinks input {
  width: 250px;
  border: none;
  outline: none;
  background-color: transparent;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #fff;
  color: #fff;
  padding: 0 15px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.mLinks input::-moz-placeholder {
  color: #fff;
  text-transform: uppercase;
}
.mLinks input::placeholder {
  color: #fff;
  text-transform: uppercase;
}

@media (max-width: 401px) {
  .mLinks {
    width: 100%;
    padding-right: 10px;
  }
  .mLinks input {
    width: 100%;
    flex-grow: 1;
  }
}
@media (max-width: 901px) {
  .menu {
    display: flex;
  }
  .ls {
    display: flex;
    flex-direction: column;
    position: fixed;
    width: 100%;
    height: calc(100vh - 80px);
    overflow-y: scroll;
    top: 80px;
    left: -100%;
    gap: 0;
    transition: 0.4s;
    background-color: #222429;
    padding: 0 0 70px 0;
  }
  .ls::-webkit-scrollbar {
    width: 0px;
  }
  .mainLinks {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    width: 100%;
    gap: 20px;
  }
  .link {
    margin-left: 5%;
  }
  .link {
    height: 40px;
  }
  .link::after {
    bottom: 0;
  }
  .activeMenu .f-s .links .ls {
    left: 0;
  }
  .layer {
    display: none;
  }
}
.drop {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.drop .dropMenu {
  display: flex;
  align-items: center;
  flex-direction: column;
  display: none;
  position: absolute;
  top: 90%;
  background-color: #c09a11;
  border-radius: 5px;
  padding: 10px 20px;
}
.drop .dropMenu a {
  width: 100%;
  display: flex;
  justify-content: left;
  white-space: nowrap;
  color: #fff;
  font-weight: 500px;
  text-align: left;
}

.drop.active .dropMenu {
  display: flex;
}
.drop.active .link i {
  transform: rotate(-90deg);
}

footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  flex-direction: column;
  background-color: #322f27;
}

.footer {
  display: flex;
  justify-content: space-between;
}

.footerLogo {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footerLogo img {
  width: 80px;
}
.footerLogo p {
  color: #fff;
}
.footerLogo .aboutText {
  width: 400px;
}
.footerLogo .aboutText p {
  color: #fff;
  font-size: 1em;
}

.footerLinkGroup {
  display: flex;
  gap: 100px;
}

.linkGroup {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.linkGroup h2 {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 5px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
}
.linkGroup h2::after {
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background-color: #c09a11;
}
.linkGroup ul {
  display: flex;
  flex-direction: column;
  list-style: none;
}
.linkGroup ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1em;
  line-height: 1.7;
  color: #fff;
  text-transform: uppercase;
  transition: 0.2s all ease;
  font-weight: 300;
}
.linkGroup ul li a img {
  width: 8px;
  -o-object-fit: contain;
     object-fit: contain;
  transform: rotate(180deg);
}
.linkGroup ul li a:hover {
  color: #c09a11;
}

.cont.linkGroup ul li a img {
  transform: rotate(0);
}

.media {
  display: flex;
  gap: 10px;
  transform: translateY(-10px);
}
.media a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-decoration: none;
  background-color: #fff;
}
.media a i {
  color: #222429;
  font-size: 1.3em;
  transition: 200ms all ease;
}
.media a:hover i {
  color: #c09a11;
}

.cont ul li:nth-child(1) a {
  line-height: 1.5;
}
.cont ul li a {
  line-height: 2;
}
.cont ul li a img {
  width: 20px;
}

@media (max-width: 1001px) {
  .footer {
    flex-direction: column;
    gap: 20px;
  }
  .footerLinkGroup {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 701px) {
  .home h1 {
    font-size: 2em;
  }
}
@media (max-width: 501px) {
  .home {
    height: 300px;
  }
  .home h1 {
    font-size: 1.7em;
  }
}
@media (max-width: 376px) {
  .home h1 {
    font-size: 1.5em;
  }
}
@media (max-width: 331px) {
  .home h1 {
    font-size: 1.3em;
  }
}
@media (max-width: 901px) {
  .link {
    width: 100%;
  }
  .link.active::after {
    display: none;
  }
  .drop {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .drop .dropMenu {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    position: relative !important;
    top: auto !important;
    padding: 0;
    padding-left: 10%;
    background-color: transparent !important;
  }
  .drop .dropMenu a {
    width: -moz-fit-content;
    width: fit-content;
    padding: 0;
    height: auto;
  }
}
.container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 0 100px 0;
  background-color: #222429;
}

.section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}

.sec {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
}

header {
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-weight: 700;
  font-size: 2em;
  text-transform: uppercase;
  color: #fff;
}
header::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #c09a11;
}

.wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.news {
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.news p {
  padding: 10px 0;
  color: #fff;
}

.newsImg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 170px;
  border: 2px solid #c09a11;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.newsImg img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s all ease;
  border-radius: 5px;
}
.newsImg img:hover {
  width: 110%;
  height: 110%;
}

.btn {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  font-size: 0.9em;
  background-color: #c09a11;
  border-radius: 5px;
  color: #fff;
  transition: 0.3s all ease;
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
  overflow: hidden;
}
.btn img {
  width: 7px;
  z-index: 2;
}
.btn span {
  z-index: 2;
}
.btn i {
  position: absolute;
  right: -40px;
  width: 50px;
  height: 100px;
  transform: skewX(-34deg);
  background-color: rgba(0, 0, 0, 0.2);
  transition: 0.4s all ease;
  z-index: 1;
}
.btn:hover i {
  width: 100%;
  right: 0;
  transform: skewX(0deg);
}

.date {
  width: 60px;
  height: 55px;
  border-radius: 5px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  text-align: center;
  position: absolute;
  left: -28px;
  top: 20px;
  line-height: 1;
  color: #c09a11;
  font-weight: 700;
  font-size: 1em;
  z-index: 3;
  border: 2px solid #c09a11;
  text-transform: uppercase;
}
.date span:nth-child(1) {
  font-size: 1.3em;
}
.date::after {
  width: 25px;
  height: 17px;
  background-color: #9b7d0f;
  content: "";
  position: absolute;
  top: 53px;
  left: 2px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 100% 0);
          clip-path: polygon(0 0, 100% 50%, 100% 0);
}

table {
  max-width: 800px;
  width: 100%;
  direction: ltr;
  border-collapse: collapse;
}

thead th {
  background-color: #c09a11;
  text-align: center;
  font-weight: 600;
  overflow: hidden;
  height: 60px;
  padding: 0 10px;
  word-break: normal;
  text-transform: capitalize;
  font-size: 1em;
  color: #fff;
  text-transform: uppercase;
}
thead th:nth-child(1) {
  border-radius: 5px 0 0 0;
}
thead th:nth-child(3) {
  border-radius: 0 5px 0 0;
}

tbody td {
  height: 60px;
  padding: 0 5px;
  text-align: center !important;
  vertical-align: middle !important;
  background-color: rgba(192, 154, 17, 0.1);
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  color: #fff;
  text-transform: uppercase;
  border-top: 1px solid #c09a11;
  border-bottom: 1px solid #c09a11;
  border-left: 1px solid #c09a11;
}
tbody tr:nth-child(n) td:nth-child(1) {
  border-radius: 0 0 0 5px;
}
tbody tr:nth-child(n) td:nth-child(3) {
  border-radius: 0 0 5px 0;
  border-right: 1px solid #c09a11;
}

@media (max-width: 501px) {
  thead th {
    font-size: 0.8em;
  }
  tbody td {
    font-size: 0.8em;
  }
  header {
    font-size: 1.5em;
  }
}
.frame {
  max-width: 950px;
  width: 100%;
  outline: 1px solid #c09a11;
  border-radius: 3px;
}

.copy {
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 20px 20px;
  background-color: #423f38;
  color: #fff;
}
.copy a {
  color: #fff;
  text-decoration: underline;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 380px;
  position: relative;
  border-bottom: 5px solid #c09a11;
  overflow: hidden;
}
.header img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header h1 {
  font-size: 4em;
  color: #fff;
  position: absolute;
  z-index: 3;
  padding-top: 30px;
}

@media (max-width: 701px) {
  .header h1 {
    font-size: 3em;
  }
}
@media (max-width: 351px) {
  .header h1 {
    font-size: 2.5em;
  }
}
.about {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.fdc {
  flex-direction: column;
}

.aboutText {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.aboutText article {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
}
.aboutText article p {
  font-size: 1.5em;
  color: #fff;
  line-height: 1.2;
  font-weight: 300;
}
.aboutText h1 {
  width: -moz-fit-content;
  width: fit-content;
  text-align: right;
  gap: 4px;
  color: #fff;
  font-size: 3em;
  line-height: 0.75;
  text-transform: uppercase;
  padding-right: 40px;
  position: relative;
}
.aboutText h1::after {
  top: 0;
  content: "";
  position: absolute;
  right: 0;
  height: 100%;
  width: 20px;
  background-color: #c09a11;
}
.aboutText h1 span {
  color: #c09a11;
  font-size: 0.6em;
}
.aboutText h2 {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-size: 2.5em;
  line-height: 0.75;
  text-transform: uppercase;
  padding-left: 40px;
  position: relative;
  margin-bottom: 20px;
}
.aboutText h2::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 10px;
  background-color: #c09a11;
}
.aboutText h2 span {
  color: #c09a11;
  font-size: 1em;
}
.aboutText .btn img {
  width: 7px;
}

.txt {
  padding: 15px 0;
  font-size: 1.5em;
  color: #fff;
  font-weight: 300;
  line-height: 1.2;
}

@media (max-width: 701px) {
  .aImg {
    width: 170px;
  }
  .aboutText h1 {
    font-size: 2em;
  }
  .aboutText h1::after {
    width: 15px;
  }
  .aboutText article p {
    font-size: 1.2em;
  }
  .aboutText .txt {
    font-size: 1.2em;
  }
}
@media (max-width: 421px) {
  article p {
    font-size: 1em;
  }
  .txt {
    font-size: 1em;
  }
}
.teamMembers {
  width: 100%;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.member {
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.member h2 {
  font-size: 1em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
  padding-top: 10px;
  font-weight: 400;
  text-align: center;
}
.member span {
  text-transform: uppercase;
  color: #c09a11;
  font-size: 0.9em;
}

.memberImg {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  width: 150px;
  height: 150px;
}
.memberImg .imgInner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 150px;
  border: 5px solid;
  border-image-slice: 1;
  border-width: 5px;
  border-image-source: linear-gradient(to top left, #705801, #c09a11);
}
.memberImg img {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.2s all ease;
}
.memberImg:hover img {
  width: 155px;
  height: 155px;
}

.center {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 50px 0;
}

.forms {
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  padding: 50px 20px;
}

.dataCard {
  width: 450px;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 50px;
  gap: 30px;
}

.dataRow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.dataRow select {
  display: flex;
  gap: 10px;
  border: none;
  outline: none;
  background-color: transparent;
  background-color: #c09a11;
  padding: 5px;
  border-radius: 5px;
  color: #fff;
  font-weight: 400;
  font-size: 1em;
  text-transform: uppercase;
}
.dataRow select option {
  font-weight: 400;
  font-size: 1em;
}
.dataRow .media {
  padding: 0;
  margin: 0;
}
.dataRow iframe {
  width: 100%;
  height: 200px;
  border-radius: 14px;
  -o-object-fit: cover;
     object-fit: cover;
}
.dataRow span {
  text-transform: uppercase;
}
.dataRow span:nth-child(1) {
  color: #c09a11;
  font-size: 1.2em;
  font-weight: 700;
}
.dataRow span:nth-child(2) {
  color: #fff;
  font-size: 1.2em;
}
.dataRow span:nth-child(2) a {
  color: #fff;
}

@media (max-width: 421px) {
  .dataRow {
    flex-direction: column;
    align-items: flex-start;
  }
}
.jopA {
  display: flex;
  justify-content: center;
  align-items: center;
}

.form {
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
}
.form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form header {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.form header h1 {
  color: #fff;
  font-size: 1.7em;
  text-transform: uppercase;
}
.form header span {
  text-transform: uppercase;
  font-size: 0.8em;
  color: #fff;
  font-weight: 300;
}
.form header .hcen {
  text-align: center;
  padding-bottom: 10px;
}

.w600 {
  max-width: 600px;
}

@media (max-width: 501px) {
  .file #fileData {
    width: 60%;
  }
  .forms {
    padding: 50px 10px;
  }
  .form,
  .dataCard {
    width: 100%;
    padding: 30px 20px;
  }
  .bac {
    width: calc(100% - 40px);
  }
}
.input {
  width: 100%;
  display: flex;
  gap: 5px;
  flex-direction: column;
  position: relative;
}
.input label {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 10px;
  text-transform: uppercase;
  color: #fff;
  font-size: 1.1em;
}
.input label::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 6px;
  right: 0;
  background-color: #c09a11;
}
.input input[type=text],
.input input[type=number],
.input .in {
  width: 100%;
  display: flex;
  align-items: center;
  padding-right: 10px;
  color: #fff;
  font-size: 1em;
  border: none;
  outline: none;
  background-color: transparent;
  height: 40px;
  background-color: rgba(192, 154, 17, 0.14);
}
.input textarea {
  border: none;
  outline: none;
  background-color: transparent;
  width: 100%;
  height: 200px;
  padding: 10px;
  resize: none;
  background-color: rgba(192, 154, 17, 0.14);
  color: #fff;
  font-size: 1.1em;
}
.input .send .login {
  margin: 0 auto;
}
.input span {
  position: absolute;
  height: 40px;
  width: 6px;
  right: 0;
  background-color: #c09a11;
  bottom: 0;
}

.input.ta span {
  height: 200px;
}

.checks {
  display: flex;
  gap: 20px;
}

.check {
  display: flex;
  align-items: center;
}
.check label::before {
  display: none;
}

#years {
  display: none;
}

.fileInput {
  width: 100%;
  display: flex;
  gap: 5px;
  flex-direction: column;
  position: relative;
}
.fileInput .label {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 10px;
  text-transform: uppercase;
  color: #fff;
  font-size: 1.1em;
}
.fileInput .label::before {
  content: "";
  position: absolute;
  height: 80%;
  width: 4px;
  left: 0;
  background-color: #c09a11;
}

.file {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.file::before {
  content: "";
  position: absolute;
  height: 40px;
  width: 4px;
  left: 0;
  background-color: #c09a11;
}
.file #fileData {
  display: flex;
  align-items: center;
  text-align: left;
  padding-left: 10px;
  width: 200px;
  height: 40px;
  background-color: rgba(2, 136, 166, 0.14);
  color: #fff;
}
.file #label {
  background-color: #c09a11;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  height: 38px;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 300;
}

.send button {
  width: 200px;
  height: 40px;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  border: none;
  outline: none;
  background-color: transparent;
  background-color: #c09a11;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  transition: 0.2s;
}
.send button:hover {
  background-color: #705801;
}

.m0a {
  margin: 0 auto;
}

.contact {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.location {
  width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.location iframe {
  width: 100%;
  height: 350px;
  border-radius: 10px;
}

.coLinks li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  color: #c09a11;
}
.coLinks li span {
  font-size: 1.3em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 1071px) {
  .contact {
    gap: 25px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 601px) {
  .form {
    width: 100%;
    padding: 0;
  }
  .location {
    width: 100%;
  }
}
@media (max-width: 551px) {
  .coLinks li {
    align-items: flex-start;
    flex-direction: column;
  }
  .location iframe {
    height: 250px;
  }
  .du label {
    padding-left: 0;
  }
  .du label::before {
    display: none;
  }
  .du .check label {
    padding-right: 10px;
  }
}
.searchFilter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.sf {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  position: relative;
}
.sf button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 0 15px;
  position: absolute;
  left: 0;
  cursor: pointer;
}
.sf button i {
  color: #fff;
  font-size: 1.2em;
}
.sf input {
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  background-color: #38393e;
  height: 45px;
  border-radius: 5px;
  border: 1px solid #fff;
  color: #fff;
  padding: 0 15px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 1em;
}
.sf input::-moz-placeholder {
  color: #fff;
  text-transform: uppercase;
}
.sf input::placeholder {
  color: #fff;
  text-transform: uppercase;
}

@media (max-width: 500px) {
  .sf {
    width: 100%;
  }
}
.filterInner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.mySwiper {
  width: 100%;
  height: 100%;
  padding-left: 50px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@media (max-width: 520px) {
  .footer .aboutText {
    width: 100%;
  }
  .mySwiper {
    padding: 0;
  }
  .news {
    margin: 0 auto;
  }
}
@media (max-width: 340px) {
  .news {
    width: 220px;
  }
}
.comp {
  position: fixed;
  top: 0;
  width: 100%;
  height: 30px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  z-index: 5;
}

.pb {
  color: #2f4f7d;
  display: flex;
  align-items: center;
  font-weight: 500;
  gap: 10px;
}
.pb img {
  width: 80px;
}

.newsCo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 150px 0 100px 0;
  background-color: #222429;
}

.newsIns {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.newsIns img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.newsIns h1 {
  line-height: 1;
  color: #c09a11;
}
.newsIns p {
  color: #fff;
}

@media (max-width: 550px) {
  .newsIns img {
    height: auto;
    border-radius: 5px;
  }
  .newsIns h1 {
    line-height: 1;
    font-size: 1.7em;
  }
  .newsIns p {
    font-size: 0.9em;
  }
}/*# sourceMappingURL=style.css.map */



/* Custom navigation container */
.custom-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px; /* Space below the slider */
}

/* Style for custom navigation buttons */
.custom-navigation button {
    width: 50px;
    height: 50px;
    background-color: #c09a11; /* Semi-transparent black */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

/* Hover effect */
.custom-navigation button:hover {
    background-color: #333027;
}

/* Custom Icons */
.custom-navigation button::after {
    font-size: 24px; /* Adjust icon size */
}

