* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Quicksand", sans-serif !important;
}

body {
  font-family: "Quicksand", sans-serif !important;
}

::-moz-selection {
  background: #f9ff00;
  color: #000;
}
::selection {
  background: #f9ff00;
  color: #000;
}

::-webkit-scrollbar {
  width: 10px;
  background: #000;
}
::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #000;
}
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #1b1e26;
}
::-webkit-scrollbar-thumb:hover {
  background: #1b1e26;
}

header {
  background: #1c1f29;
  width: 100%;
  height: auto;
  /* padding-top: 6px; */
  /* padding: 0 24px; */
}

nav {
  position: unset;
  transition: 0.5s;
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 12.5px 0px 12.5px;
  max-width: 1360px;
  margin: 0 auto;
}
nav .nav-dollar {
  display: flex;
  align-items: center;
  justify-content: start;
  max-width: 250px;
  width: 100%;
}
nav .nav-dollar a {
  margin: 0 !important;
  padding: 0 !important;
}
nav .nav-dollar a img {
  margin: 5px 0px 0px -15px !important;
  padding: 0 !important;
  /* max-width: 160px !important;
  width: 100%; */
}
nav .nav-logo {
  height: 80px;
  min-width: 120px;
}
nav .nav-logo img {
  height: 100%;
  width: 100%;
}
nav .nav-button {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 262px;
  width: 100%;
}

nav .nav-button a button {
  border: 2px solid transparent;
  padding: 10px 24px;
  gap: 10px;
  max-width: 126px;
  border-radius: 10px;
  font-size: 16px;
  background: linear-gradient(
    90deg,
    #ffc700 0,
    #ffeca8 51%,
    #ffc700 100%
  ) !important;
  position: relative;
  min-height: 44px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  color: #000;
  width: 100%;
}
nav .nav-button a button::after {
  background: url("./images/bottomArrow.png") 50% / cover;

  content: "";
  height: 36px;
  width: 100px;
  position: absolute;
  right: -10px;
  bottom: -36px;
}

nav .nav-button a button::before {
  background: url("./images/TopArrow.png") 50% / cover;
  content: "";
  height: 40px;
  width: 78px;
  left: -30px;
  position: absolute;
  top: -41px;
}

footer {
  background: #1c1f29;
  width: 100%;
  height: auto;
  /* border-top: 1px solid #fff; */
}

.footer {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
}

/* .footer-grid {
  padding: 15px 8px 50px 8px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
} */
.footer-grid {
  padding-top: 15px;
  padding-bottom: 50px;
  display: flex;
  justify-content: space-between;
  gap: 35px;
  /* flex-wrap: wrap; */
}

.footer-info {
  position: relative;
  /* max-width: 250px; */
}

.footer-info p {
  color: #fff;
  font-size: 16px;
  line-height: 20px;
}

.footer-info p img {
  max-width: 40px;
  max-height: 40px;
  width: 100%;
  height: 100%;
}

.footer-info .footer-logo {
  color: transparent;
  display: inline-block;
  height: 120px;
  max-width: 270px;
  width: 100%;
  min-width: 120px;
  /* margin-left: -20px; */
}
.footer-info .footer-logo img {
  vertical-align: middle;
  max-height: 100%;
  object-fit: contain;
  margin-left: -50px;
}
.footer-menu {
  padding-top: 144px;
}

.footer-contact {
  margin-top: 144px;
}

.footer-menu h3,
.footer-contact h3 {
  font-weight: 700;
  font-size: 16px;
  color: #ffc700 !important;
  padding-bottom: 20px;
}
.footer-contact h3 {
  font-weight: 700;
  font-size: 16px;
  color: #ffc700 !important;
  padding-bottom: 8px !important;
}

.footer-menu ul {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
}
.footer-menu ul li {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #868693;
  text-decoration: none;
  transition: 0.5s;
  cursor: pointer;
}
.footer-menu ul,
.footer-support,
.footer-social {
  list-style: none;
  padding: 0;
}
.footer-social {
  list-style-type: none;
  margin: 0 0 34px;
  padding: 0;
  display: flex;
}
.footer-social li {
  margin-right: 15px;
}

.footer-menu ul li {
  padding-left: 15px;
  position: relative;
}

.footer-menu ul li:before {
  content: "";
  width: 5px;
  height: 5px;
  background: #ffc700;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}

.footer-menu ul li a {
  color: #868693;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.5s;
  font-family: 500;
  line-height: 20px;
  font-weight: 500;
  cursor: pointer;
}

.footer-menu ul li a:hover {
  color: #ffc700;
}

.footer-contact ul.footer-social li a {
  background: #343a40;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  transition: background 0.5s;
}

.footer-contact ul.footer-social li a img {
  width: 20px;
  height: 20px;
}
.footer-contact ul.footer-social li:nth-child(2) a img {
  width: 12px;
  height: 12px;
}

.footer-contact ul.footer-social li a:hover {
  background: #ffc700;
}

.footer-support li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.5s;
  margin-bottom: 1.5rem !important;
  gap: 5px;
}
.footer-support li .mail-icon {
  width: 14px;
  height: 14px;
}

.footer-support li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.5s;
}

.footer-support li a:hover {
  color: #ffc700;
}

.at-scrooge {
  color: #f33 !important;

  max-width: 530px;
  width: 100%;
  margin: 0;
  color: #f33 !important;
  font-size: 14px !important;
  padding-top: 15px;
}

.at-scrooge a {
  color: #f33;
  text-decoration: underline;
  width: 100%;
  height: 30px;
}
.address-footer {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.5s;
  margin-bottom: 15px;
}

.footer-info .copyright {
  margin-top: 16px !important;
  font-weight: 300;
  color: fff;
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  text-wrap: nowrap;
  /* border: 1px solid red; */
  display: flex;
  justify-content: start;
  align-items: center;
}
.footer-info .copyright span {
  font-weight: 700;
}
.footer-info .copyright span .all-right {
  font-weight: 300 !important;
}
.footer-info .copyright span .all-right-flag {
  display: inline-block;
  /* max-width: 40px !important;
  width: 100% !important;
  max-height: 20px !important;
  min-height: 16px;
  height: 100% !important; */
  width: 40px !important;
  height: 20px !important;
}
.footer-info .copyright img {
  max-width: 40px;
  padding-left: 5px;
  min-width: 20px;
  /* padding-top: 5px; */
}
.footer-info .icon_18 a {
  height: auto;
  width: 100%;
  display: flex;
  color: white;
  justify-content: start;
  align-items: center;
  font-size: 16px;
  line-height: 20px;
  color: #fff !important;
  font-weight: 700;
  padding-top: 16px;
}

.footer-info .icon_18 a img {
  width: 30px !important;
  height: 30px !important;
}
.footer-info .icon_18 a span {
  margin-right: 8px;
}
.footer-info .icon_18 a span .image_18_icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  /* border: 1px solid rgb(255, 255, 255); */
  margin: 0px 0px -15px -9px !important;
}
.main-container {
  width: 100%;
  height: auto;
  position: relative;
  overflow-x: hidden;
  background-color: #10121a;
}

.hero-section {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}
.hero-section .image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
  max-height: 560px;
  height: 100%;
}
.hero-section .image-container img {
  max-width: 450px;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

@media screen and (max-width: 1380px) {
  nav {
    position: unset;
    transition: 0.5s;
    height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 6px 24px 6px 24px;
    max-width: 1360px;
    margin: 0 auto;
  }
  .footer {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media screen and (max-width: 1200px) {
  .footer-info .copyright {
    text-wrap: wrap;
  }
  .footer-grid {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1024px) {
  .hero-section .image-container {
    min-height: 560px;
    max-height: 560px;
  }
}
@media screen and (max-width: 991px) {
  .footer-grid {
    padding: 20px 0;
  }

  .footer-menu,
  .footer-contact {
    padding-top: 35px;
  }

  .footer-info .footer-logo {
    color: transparent;
    display: inline-block;
    height: 120px;
    max-width: 210px;
    width: 100%;
    min-width: 120px;
    /* margin-left: -20px; */
  }
  .footer-contact {
    margin-top: 0px;
    padding-top: 0px;
  }

  .footer-menu {
    padding-top: 0px;
  }
}

@media screen and (max-width: 767px) {
  .hero-section .image-container {
    min-height: 460px;
    max-height: 460px;
  }
  nav {
    position: unset;
    transition: 0.5s;
    height: 95px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 6px 24px 6px 24px;
    max-width: 1360px;
    margin: 0 auto;
  }

  nav .nav-button a button {
    border-radius: 10px;
    max-width: 105px !important;
    width: 105px !important;
    height: 35px;
    font-size: 12px !important;
  }
  nav .nav-button a button::before {
    background: url(./images/TopArrow.png) 50% / cover;
    content: "";
    height: 28px !important;
    width: 51px !important;
    left: -3px !important;
    top: -30px !important;
  }
  nav .nav-button a button::after {
    background: url(./images/bottomArrow.png) 50% / cover;
    content: "";
    height: 25px !important;
    width: 65px !important;
    right: -6px !important;
    bottom: -26px !important;
  }
  nav .nav-logo {
    height: 40px;
    width: 120px;
  }
  .footer-info .footer-logo {
    max-width: 190px;
  }
}
@media screen and (max-width: 557px) {
  .hero-section .image-container {
    min-height: 500px;
    max-height: 500px;
  }
  .footer-contact {
    margin-top: 5px;
    padding-top: 0px;
  }
}
@media screen and (max-width: 480px) {
  .hero-section .image-container {
    min-height: 420px;
    max-height: 420px;
  }
  .footer-info {
    max-width: 100%;
  }
  nav .nav-dollar {
    max-width: 120px;
    width: 100%;
  }
  .footer-menu ul li a {
    color: #ffd336;
  }
  .hero-section {
    padding: 40px 16px;
  }
}
@media screen and (max-width: 425px) {
  .footer-info {
    max-width: 100%;
  }
  nav .nav-dollar {
    max-width: 90px;
    width: 100%;
  }
}
@media screen and (max-width: 375px) {
  nav .nav-dollar {
    max-width: 60px;
    width: 100%;
  }
}
