/* Header & Footer */

* {
  zoom: 1;
}

.icon {
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

body {
  margin: 0;
}

header ul,
footer ul {
  list-style: none;
  padding: 0;
}

header ul {
  margin-top: 0;
}

a {
  text-decoration: none;
  color: #000000;
}

.menu {
  font-size: 16px;
}

.social_link li {
  float: left;
  margin-left: 13px;
}

.toggle-menu {
  display: none;
}

.menu li {
  float: left;
  margin-left: 25px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.nav .logo {
  justify-content: center;
}

.logo {
  width: 300px;
  height: 60px;
  margin-left: 80px;
  overflow: hidden;
}

.logo img,
.footer_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

header {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  /* making header unchangable while scrolling used in blog page */
}

.left {
  margin-left: 20px;
}

.right {
  margin-right: 20px;
}

/*end heading fix*/

/* Main */
main {
  height: 300vh;
  /*height can be modified according to the need of your page but don't change other code*/
  max-width: 100%;
}

/* Footer */
.bottom-background {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: top;
  overflow: hidden;
}

.bottom-background img {
  width: 100%;
  object-fit: cover;
}

footer {
  width: 100%;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.footer_bottom p {
  font-size: 14px;
  letter-spacing: 3px;
  margin: 5px;
}

.footer-menu li,
.footer_link li {
  float: left;
}

.footer-menu li {
  padding: 0 50px;
  font-weight: 900;
  font-size: 20px;
}

.footer_body {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.footer_logo {
  width: 200px;
  height: 60px;
  overflow: hidden;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.footer_bottom,
.footer_body,
.footer-menu {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer_link li {
  margin-left: 20px;
}

footer ul {
  margin: 10px;
}
