* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  width: 100%;
  min-height: 100vh;
}
img {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
  color: var(--white);
}

html,
body {
  scroll-behavior: smooth;
  color: #fff;
  background-image: url("../assets/images/contact-gray.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.para {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}
.h2 {
  font-size: 60px;
  letter-spacing: 1px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.h3 {
  font-size: 30px;
  letter-spacing: 1px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.website-container {
  width: 100%;
  max-width: 1400px;
  min-height: 100vh;
  margin: 0px auto;
}

nav {
  background-color: transparent;
  transition: all 0.5s ease;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99;
}
nav .container {
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
nav.scrolled {
  background-attachment: fixed;
  background-image: url("../assets/images/contact-gray.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 1px 4px rgba(255, 255, 255, 0.3);
  position: fixed;
}

nav.scrolled ul li a {
  /* color: white; */
}

nav .logo {
  font-size: 35px;
  transition: all 0.5s ease;
  color: #ffd700;
}

nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav ul li {
  margin-right: 50px;
}

nav ul li a {
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: rgb(238, 247, 156);
}

.checkbtn {
  font-size: 30px;
  color: white;
  cursor: pointer;
  display: none;
}

#check {
  display: none;
}

nav ul li a {
  display: inline-block;
  position: relative;
}

nav ul li a::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #ffd700;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

nav ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

@media (max-width: 768px) {
  .checkbtn {
    display: block;
    order: 1;
    margin-right: 20px;
  }

  nav ul {
    position: fixed;
    top: 80px;
    right: -100%;
    background-color: #000;
    width: 100%;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
  }

  nav ul li {
    margin: 20px 0;
  }

  nav ul li a {
    font-size: 20px;
    color: aliceblue;
  }

  #check:checked ~ ul {
    right: 0;
  }
}

/* footer  */

.footer .container {
  width: 90%;
  margin: auto;
}
.footer .row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
.footer .social-icons {
}

.footer {
  background: #000;
  width: 100%;
  padding: 70px 0;
}
.footer-col {
  width: 22%;
  padding: 0 15px;
}
.footer-col .footer-heading {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 24px;
}
.footer-col .footer-heading::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #ffd700;
  height: 3px;
  box-sizing: border-box;
  width: 130px;
}
.footer p {
  font-size: 17px;
  font-weight: 300 !important;
  text-align: justify;
  color: #bbbbbb;
  line-height: 24px;
  margin-bottom: 30px;
}
.footer .chat-button {
  background: #ffd700;
  border-radius: 6px;
  font-weight: 600;
  padding: 10px 22px;
  font-size: 16px;
  color: #000;

  cursor: pointer;
}
.footer .chat-button:hover {
  background: transparent;
  transition: all 0.3s ease;
  color: #ffd700;
  border: 3px solid #ffd700;
}
.footer-col ul {
  flex-direction: column;
  list-style: none;
}
.fa-map-marker-alt:before {
  content: "\f3c5";
  color: #ffd700 !important;
}
.fa-envelope:before {
  content: "\f0e0";
  color: #ffd700 !important;
}
.fa-phone:before {
  content: "\f095";
  color: #ffd700 !important;
}
.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}
.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #ffd700;
  height: 3px;
  box-sizing: border-box;
  width: 80px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 20px;
}
.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}
.footer-col ul li a:hover {
  color: #ffd700;
  padding-left: 8px;
}
.footer-col .address {
}

.footer-col .address-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.footer-col .address-item:last-child {
  margin-bottom: 0px;
}

.footer-col .address-item i {
  color: #ffffff;
  font-size: 18px;
  margin-right: 20px;
  margin-top: 6px;
}

.footer-col .address-item span {
  font-size: 16px;
  color: #bbbbbb;
  line-height: 1.5;
  display: inline-block;
}

.footer .social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 40px;
}
.footer .social-links {
  display: flex;
  gap: 20px;
}
.footer .social-links a {
  width: 36px;
}
.footer .social-links a img {
  border-radius: 50%;
  transition: filter 0.3s ease;
}
.footer .social-links a img:hover {
  filter: brightness(0) saturate(100%) invert(84%) sepia(93%) saturate(667%)
    hue-rotate(1deg) brightness(104%) contrast(104%);
  transform: scale(1.2);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer .left-bottom {
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer .left-bottom p {
  font-size: 15px;
  margin-bottom: 0;
  cursor: pointer;
}

@media all and (max-width: 1080px) {
  .footer-col {
    width: 18%;
  }
  .footer-col:last-child {
    width: 28%;
  }
  .footer-col:first-child {
    margin-right: 0px !important;
    width: 36% !important;
  }
  .footer .left-bottom p {
    font-size: 14px;
  }
  nav .container {
    padding: 18px 30px;
  }
  .footer .container {
    width: 96%;
    margin: auto;
  }
  nav ul li {
    margin-right: 30px;
  }
}
@media all and (max-width: 980px) {
  .footer-col {
    width: 28%;
    margin-bottom: 30px;
  }
  .footer-col:first-child {
    margin-right: 0px !important;
    width: 90% !important;
    margin-bottom: 30px;
  }
  .footer .row {
    flex-wrap: wrap;
    margin-bottom: 26px;
  }
  .footer-col:last-child {
    width: 34%;
  }
  .footer .social {
    padding-right: 0px;
    flex-direction: column-reverse;
  }
  .footer .social-links {
    gap: 34px;
    margin-bottom: 26px;
  }
  .footer .container {
    width: 90%;
  }
  nav ul li {
    margin-right: 20px;
  }
  nav .logo {
    font-size: 28px;
  }
}
@media all and (max-width: 768px) {
  .footer-col:last-child {
    width: 100%;
  }
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
  .footer-col:first-child {
    width: 100% !important;
  }
}
@media all and (max-width: 640px) {
  .footer-col {
    width: 100%;
    margin-bottom: 30px;
  }
  .footer .left-bottom {
    gap: 5px;
    flex-direction: column-reverse;
  }
  .footer .social-links {
    gap: 20px;
  }
  .footer {
    padding: 70px 0 30px;
  }
  nav .container {
  }
  .checkbtn {
    margin-right: 0px;
  }
}
@media all and (max-width: 480px) {
}
@media all and (max-width: 360px) {
}


