* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Open Sans", sans-serif;
}

@font-face {
  font-family: Goldman;
  src: url("../fonts/Goldman-Regular.ttf");
}
@font-face {
  font-family: GoldmanB;
  src: url("../fonts/Goldman-Bold.ttf");
}

a {
  text-decoration: none;
}

.a:hover {
  color: #1f6b8c;
}
img {
  max-width: 100%;
}

ul {
  list-style-type: none;
}

/* CSS  */
/* Header  */
/* Header  */
/* Header  */
.header nav {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  background: #ffffff;
  box-shadow: 0 -6px 10px 5px rgba(0, 0, 0, 0.5);
}

.header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 150px;
}

.header .navbar .logo img {
  max-width: 250px;
}

.header .navbar .navbar-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header .navbar .navbar-links .a:hover {
  color: #1f6b8c;
}

.header .navbar .navbar-links a {
  font-size: 17px;
  color: #000;
}

/* Banner  */
/* Banner  */
/* Banner  */
.banner {
  background: rgb(0, 162, 232);
  background: #1f6b8c;
  width: 100%;
  min-height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 3rem 2rem;
  margin-top: 95px;
}

.banner .banner-container {
  width: 80%;
  /* margin: auto; */
}

.banner .banner-title h1 {
  text-align: center;
  color: #ffffff;
  font-size: 45px;
  padding: 20px 0;
}

.banner .banner-info {
  width: 100%;
  margin: auto;
}

.banner .banner-info h2 {
  text-align: center;
  color: #ffffff;
  font-weight: lighter;
  font-size: 30px;
  line-height: 130%;
}

/* Location Section */
/* Location Section */
/* Location Section */

.location .location-container {
  width: 80%;
  margin: auto;
  padding-top: 40px;
  padding-bottom: 100px;
  grid-template-columns: 30% 70%;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
  row-gap: 20px;
}

.location .location-container .location-item {
  text-align: center;
}

.location .location-container .location-item .location-title h3 {
  font-size: 25px;
  color: #00a2e8;
  color: #1f6b8c;
  padding-bottom: 10px;
}

.location .location-container .location-item .company-name p {
  font-weight: 600;
}

.location .location-container .location-info p {
  padding-top: 5px;
}

.location .location-container .location-info a {
  color: #00a2e8;
  color: #1f6b8c;
  transition: all 0.3s ease-in-out;
}

.location .location-container .location-info a:hover {
  border-bottom: 1px solid #00a2e8;
  border-bottom: 1px solid #1f6b8c;
}

/* map  */
.location .location-container .location-item .map iframe {
  width: 100%;
}

/* Footer  */
/* Footer  */
/* Footer  */
.footer {
  background-color: #000;
  padding: 3rem 10rem;
}

.footer .footer-logo {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  border-bottom: 3px solid #ffffff;
  padding: 20px 0;
}

.footer .footer-logo img {
  max-width: 250px;
}

.footer .links-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  row-gap: 20px;
  padding: 20px 0;
}

.footer .links-container .links-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.footer .links-container .links-item span {
  color: #ffffff;
}

.footer .links-container .links-item a {
  font-size: 15px;
  color: #ffffff;
}

.footer .links-container .copyright-text p {
  color: #ffffff;
  font-size: 15px;
  text-align: right;
}

.footer .footer-container .footer-info p {
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  padding-top: 1rem;
}

.footer .footer-container .footer-info p a {
  color: #ffffff;
}

.footer .brand-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 3rem;
}

.footer .brand-logo img {
  max-width: 100%;
}

/* Responsive Section  */
@media screen and (max-width: 1024px) {
  .banner .banner-container {
    width: 100%;
  }
}

@media screen and (max-width: 992px) {
  .banner .banner-info {
    width: 100%;
  }

  .location .location-container {
    width: 100%;
    /* grid-template-columns: 40% 60%; */
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .location .location-container .location-item {
    text-align: center;
  }

  .location .location-container {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 653px) {
  .banner {
    padding: 3rem 10px;
  }

  .location {
    padding: 3rem 10px;
  }

  .banner .banner-title h1 {
    font-size: 35px;
  }
}

@media screen and (max-width: 604px) {
  .header .navbar {
    flex-direction: column;
  }

  /* .header .navbar .navbar-links{
        flex-direction: column;
    } */
  .footer .links-container {
    grid-template-columns: 1fr;
  }

  .footer .links-container .links-item {
    justify-content: center;
    align-items: center;
  }

  .footer .links-container .copyright-text p {
    text-align: center;
  }
  .footer {
    padding: 1rem 1rem;
  }

  .footer-logo {
    display: contents;
  }
}

@media screen and (max-width: 600px) {
  .footer-logo {
    display: none;
  }

  .footer {
    padding: 1rem 1rem;
  }
}
