@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;800;900&display=swap");

:root {
  /* #ff6633 */
  --Theme1: rgba(255, 102, 51, 1);
  /* #336699  */
  --Theme2: rgba(51, 102, 153, 1);
  --yellow: rgb(255, 255, 0, 1);
  --blue: rgb(5, 93, 255, 1);
  --white: rgba(255, 255, 255, 1);
  --black: rgba(0, 0, 0, 1);
  --black01: rgba(0, 0, 0, 0.1);
  --black02: rgba(0, 0, 0, 0.2);
  --black05: rgba(0, 0, 0, 0.5);
  --green: rgba(37, 211, 102, 1);
  --background: rgba(246, 246, 246, 1);
}
/* UNIVERSAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.container {
  margin: 50px 100px;
}
.display-flex {
  display: flex;
}
.col-4 {
  width: calc((4 / 12) * 100%);
  overflow: hidden;
}
.col-6 {
  width: calc((6 / 12) * 100%);
  overflow: hidden;
}
.col-8 {
  width: calc((8 / 12) * 100%);
  overflow: hidden;
}
.pt-2 {
  padding-top: 20px;
}

/* header and navbar */
header {
  width: 100%;
  height: 600px;
  background-color: var(--black);
}
.header-background-image {
  position: absolute;
  height: 100%;
  overflow: hidden;
}
.header-background-image img {
  width: 100%;
  /* height: 600px; */
}
.navbar-container {
  width: 100%;
  position: absolute;
  z-index: 10;
}
.navbar {
  width: 90%;
  display: flex;
  /* background-color: var(--black); */
  background-color: var(--white);
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  border-radius: 5px;
  cursor: pointer;
}
.navbar-brand,
.navbar-list ul li {
  padding: 10px 20px 5px 20px;
}
.navbar-brand,
.navbar-list {
  color: var(--black);
}
.navbar-brand {
  margin-right: auto;
}
.navbar-list ul {
  display: flex;
}
.navbar-list ul li,
.navbar-list ul li:hover {
  transition: 0.3s ease-in-out;
}
.navbar-list ul li {
  list-style: none;
  margin-right: auto;
  width: 100%;
  text-align: center;
}
.navbar-list ul li:hover {
  background-color: var(--blue);
  color: var(--white);
}
.navbar-list .active {
  width: 100%;
  border-bottom: 3px solid var(--blue);
  color: var(--blue);
}
.nav-search,
.nav-search:hover {
  transition: 0.2s ease-in-out;
  border-radius: 50%;
  margin: 5px;
  margin-right: 10px !important;
  padding: 4px 8px !important;
}
.nav-search:hover {
  scale: 1.2;
  background-color: var(--blue) !important;
}
.header-title {
  position: absolute;
  color: var(--white);
  width: 80%;
  justify-content: center;
}
.header-title h1 {
  margin-left: 100px;
  margin-top: 100px;
  font-size: 50px;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
}
.hamburger {
  display: none;
}
.hamburger-icon i {
  margin-top: 5px;
}

/* SECTION */
.section-title {
  text-align: center;
  font-size: 40px;
  color: var(--blue);
  text-transform: uppercase;
  margin: 20px;
}
.section-title h4 {
  font-family: "Oswald", sans-serif;
}

/* ABOUT US */
.about h4 {
  padding-top: 50px;
}
.about-img {
  margin: auto;
}
.about-img img {
  width: 90%;
}
.about-text {
  text-align: justify;
}
.about-text p {
  text-indent: 50px;
}

/* SERVICES */
.card-container {
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.card {
  position: relative;
  width: 25%;
  height: 400px;
  margin-right: 10px;
  margin-left: 10px;
  border: 1px solid var(--black);
  overflow: hidden;
}
.card-img {
  width: 100%;
  height: 50%;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
}
.card-description {
  height: 50%;
  background-color: var(--white);
  padding: 20px;
}
.card-description p {
  margin-top: 10px;
  text-align: justify;
  color: var(--black05);
}
.button {
  margin: 40px;
  text-align: center;
}
button {
  font-size: 20px;
  padding: 10px 20px;
  border-radius: 100px;
  background-color: var(--blue);
  border: none;
}
button a,
button:hover,
button:hover a {
  transition: 0.5s ease-in-out;
}
button a {
  text-decoration: none;
  color: var(--white);
}
button:hover {
  background-color: var(--yellow);
}
button:hover a {
  color: var(--black);
}
hr {
  width: 80%;
  margin: auto;
  opacity: 0.3;
}

/* CLIENT */
.logo {
  margin: auto;
}
.logo img {
  width: 100px;
  opacity: 0.5;
}
/* END OF CLIENT */

/* CONTACT */
.frame,
.frame iframe {
  border-radius: 10px;
}
.frame {
  width: 100%;
  height: 400px;
  background-color: var(--white);
  padding: 20px 100px 20px 20px;
  overflow: hidden;
}
.frame iframe {
  width: 100%;

  height: 100%;
}
.contact-content {
  padding: 50px;
  background-color: rgba(23, 162, 184, 1);
}
.contact-info {
  padding: 30px;
  background-color: rgba(15, 57, 89, 1);
  margin: auto;
  margin-left: -50px;
}
.contact-info h2 {
  color: var(--white);
  padding-bottom: 20px;
}
.info li i,
.info li a {
  color: var(--white);
}
.info li i {
  margin-right: 20px;
}
.info li {
  margin-top: 10px;
  list-style: none;
  font-size: 18px;
  font-weight: 600;
  animation: 0.5s ease-in-out;
}
.info li a {
  text-decoration: none;
}

.info li a:hover,
.info li a:hover i {
  animation: 0.5s ease-in-out;
  color: var(--blue);
}
/* FOOTER */
.footer-text {
  background-color: var(--white);
  text-align: center;
  padding: 10px;
}
.footer-text a {
  text-decoration: none;
  color: var(--black);
}

@media (max-width: 1024px) {
  header {
    height: 500px;
  }
  .header-background-image {
    height: fit-content;
  }
}

@media (max-width: 768px) {
  .container {
    margin: 20px 40px;
  }
  header {
    height: 400px;
  }
  .header-title h1 {
    margin-top: 85px;
    font-size: 35px;
  }
  .navbar {
    height: 45px;
  }
  .navbar-brand {
    padding: 5px 10px 5px 10px;
  }
  .navbar-brand {
    margin-top: 5px;
  }
  .navbar-list {
    display: none;
  }
  .hide {
    display: none;
  }
  .hamburger {
    display: block;
    margin: 10px 30px 45px 0;
    font-size: 16px;
  }
  .hamburger i {
    position: absolute;
  }
  .hamburger-menu ul {
    position: absolute;
    margin-top: 50px;
    margin-left: -200px;
    list-style: none;
  }
  .hamburger-menu ul li {
    padding: 10px 75px;
    color: var(--white);
    background-color: var(--Theme1);
    margin-bottom: 1px;
    text-align: right;
  }
  .hamburger-menu ul li:hover {
    cursor: pointer;
  }
  .hamburger-menu ul li a {
    text-decoration: none;
    color: var(--white);
  }
  .about h4 {
    padding-top: 10px;
  }
  .section-title {
    margin: 10px;
  }
  .section-title h4 {
    font-size: 24px;
  }
  .about-text p,
  .card-description p {
    font-size: 12px;
  }
  .card-description h4 {
    font-size: 16px;
  }
  .card {
    width: 30%;
  }
  .button {
    margin: 10px;
  }
  button {
    font-size: 12px;
  }
  .contact-content {
    padding: 20px;
    background-color: rgba(23, 162, 184, 1);
  }
  .frame {
    padding: 10px;
  }

  .contact-info {
    padding: 20px;
  }
  .contact-info h2 {
    font-size: 16px;
    padding-bottom: 0;
  }
  .info li {
    font-size: 12px;
  }
}

@media (max-width: 680px) {
  .header-title h1 {
    font-size: 24px;
  }
  header {
    height: 350px;
  }
  .card-container,
  .display-flex {
    display: block;
  }
  .about-img {
    padding: 20px;
    text-align: center;
  }
  .about-img,
  .about-text {
    width: fit-content;
  }
  .about-text {
    margin: auto;
  }
  .card {
    margin: 20px auto;
    width: 80%;
  }
  .logo {
    margin-top: 20px;
    text-align: center;
  }
  .logo img {
    width: 50%;
  }
  .contact-info {
    margin: 10px auto;
    width: 100%;
    border-radius: 10px;
  }
}
@media (max-width: 480px) {
  .header-title h1 {
    font-size: 18px;
    width: 100%;
    margin-top: 80px;
    margin-left: 50px;
  }
  header {
    height: 250px;
  }
}
