* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

main {
  margin: 2% 10%;
}

body {
  background-color: #ecebeb;
}

header {
  color: #ecebeb;
  display: flex;
  align-items: center;
  align-content: center;
  width: 100%;
  margin: 1% 1% 1% auto;

}

header nav ul {
  display: flex;
  text-decoration: none;
  list-style: none;
  margin: 0;
}

header nav ul li {
  width: auto;
  display: flex;
  margin: 2%;
  align-items: center;
  align-content: center;
  justify-content: center;
}

header nav ul li a {
  width: 100px;
  color: #ecebeb;
  text-decoration: none;
  font-weight: bold;
}

header nav {
  background-color: #0f2857;
  display: flex;
  backdrop-filter: blur(30px);
  overflow: hidden;
  position: relative;
  width: 40%;
  margin: 0% 2% 0% 2%;
  border-radius: 50px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  border: 2px solid rgba(255, 255, 255, 0.18);
}

header nav:hover {
  box-shadow: 0px 0px 30px rgba(227, 228, 237, 0.37);
  transition: 1s;
  cursor: pointer;
}

section {
  margin: 1%;
}

.logo {
  position: relative;
}

.logo img {
  width: 200px;
}

.contactButton {
  margin: 0 10px 0 10px;
}

.contactButton button {
  border: none;
  padding: 15px 20px 15px 20px;
  color: #ecebeb;
  background-color: #1b3d90;
  border-radius: 10px;
  width: auto;
  height: auto;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
}

footer {
  background-color: #0f2857;
  color: #ecebeb;
  display: flex;
  position: relative;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  bottom: 0;
  flex-direction: column;
  margin-top: 1%;
  padding-left: 2%;
  padding-right: 2%;

  p {
    color: #ecebeb;
  }
}

.footer-section1 {
  display: flex;
  align-items: center;
  align-content: center;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  padding: 1%;
}


.tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.tag p {
  font-weight: bold;
  margin: 1%;
}

.tag a {
  margin: 5px;
  text-decoration: none;
  color: #ecebeb;
  font-weight: bold;
}

.copyright {
  font-weight: bold;
  text-transform: capitalize;
  color: #ecebeb;
  align-content: center;
  align-items: center;
  width: 100%;
}

.container {
  width: 90%;
  padding: 2%
}

img {
  max-width: 100%;
  height: auto;
}

/* Side Menu Start */

.side-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 76vw;
  max-width: 330px;
  height: 100vh;
  background: #0f2857;
  color: #ecebeb;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transition: left 0.3s;
  box-shadow: 2px 0 24px rgba(0, 0, 0, 0.17);
}

.side-menu.open {
  left: 0;
}

.side-menu .side-header {
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-weight: bold;
  font-size: 1.15em;
}

.side-menu .side-links {
  list-style: none;
  margin: 0;
  padding: 32px 0 0 28px;
  flex: 1;
  font-size: 1.15em;
}

.side-menu .side-links li {
  margin-bottom: 24px;
}

.side-menu .side-links li a {
  color: #ecebeb;
  text-decoration: none;
  font-weight: 600;
  padding: 6px;
  display: block;
}

.side-menu .side-links li a:hover {
  color: #2f4e9d;
  background: rgba(255, 255, 255, 0.11);
  border-radius: 4px;
}


.side-contact-btn {
  margin: 18px 28px 40px;
  padding: 14px 0;
  background: #ecebeb;
  color: #2f4e9d;
  border: 2px solid #2f4e9d;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

.side-menu .side-contact-btn:hover {
  background: #2f4e9d;
  color: #ecebeb;
}

@media (min-width:1080px) {
  .side-menu {
    display: none;
  }
}

/* Side Menu End */

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 12px;
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 1;
}

.hamburger span {
  height: 4px;
  width: 28px;
  background: #2f4e9d;
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* Small Devices (Phones) */
@media (max-width: 768px) {
  main {
    margin: 2% 2%;
  }
  body {
    font-size: 14px;
  }

 header {
    width: 100%;
  }


  .navbar {
    display: none;
  }

  .hamburger {
    display: flex;
    position: static;
    margin-left: 0;
  }

  .nav-ham {
    display: flex;
    /* padding: 0 20px; */
    justify-content: space-between;
    width: 100%;
    padding: 0;

    .hamburger {
      width: 45%;
    }

    .logo-ham {
      width: 55%;
      align-items: center;
      align-content: center;
      justify-content: center;
      justify-items: center;

      img {
        width: 60px;
      }
    }
  }
}

/* Medium Devices (Tablets) */
@media (min-width: 768px) and (max-width: 1080px) {
  main {
    margin: 2% 2%;
  }
  body {
    font-size: 16px;
  }

  header {
    width: 100%;
  }


  .navbar {
    display: none;
  }

  .hamburger {
    display: flex;
    position: static;
    margin-left: 0;
  }

  .nav-ham {
    display: flex;
    /* padding: 0 20px; */
    justify-content: space-between;
    width: 100%;
    padding: 0;

    .hamburger {
      width: 45%;
    }

    .logo-ham {
      width: 55%;
      align-items: center;
      align-content: center;
      justify-content: center;
      justify-items: center;

      img {
        width: 60px;
      }
    }
  }
}

/* Large Devices (Desktops) */
@media (min-width: 1080px) {
  body {
    font-size: 18px;
  }

  .hamburger,
  .logo-ham {
    display: none;
  }
}

header {
  justify-content: center;
}

button {
  padding: 12px 20px;
  font-size: 1rem;
}

html,
body {
  overflow-x: hidden;
}