@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --secondary-color: #dc1728;
  --second-color: #8d1c20;
  --gray: rgb(54, 54, 54);
  --light-gray: rgb(158, 158, 158);
  --dark-white: rgb(207, 207, 207);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
}
/* Header section styles */

header {
  width: 100%;
  height: 80px;
  background-color: rgb(255, 255, 255);
  border-bottom: 1px solid rgb(216, 216, 216);
  z-index: 9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav {
  width: 100%;
  height: 80px;
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav .left .logo {
  height: 50px;
}
header nav .left .logo a {
  text-decoration: none;
}
header nav .left .logo a img {
  width: 45px;
  height: 50px;
}
header nav .right .list {
  display: flex;
  gap: 1.5rem;
}
.anchor {
  color: black;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.2s ease-in-out all;
  padding: 8px 0;
  align-items: center;
  display: inline-flex;
  gap: 0.3rem;
}
.anchor img {
  width: 17px;
  height: 22px;
  position: relative;
  top: 1px;
}
.anchor:hover {
  color: var(--secondary-color);
  cursor: pointer;
}
.light {
  color: black;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.2s ease-in-out all;
  border-radius: 12px;
  padding: 8px 13px;
  background-color: rgb(233, 233, 233);
  box-shadow: rgb(185, 185, 185) 0px 2px;
}
.light:hover {
  background-color: rgb(196, 196, 196);
  box-shadow: rgb(185, 185, 185) 0px 2px;
}
.themed {
  background-color: var(--secondary-color);
  color: white !important;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.2s ease-in-out all;
  border-radius: 12px;
  padding: 8px 13px;
  width: fit-content;
}
.themed:hover {
  background-color: var(--second-color);
}
.themed-with-img {
  background-color: var(--secondary-color);
  color: white !important;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.2s ease-in-out all;
  border-radius: 12px;
  padding: 8px 13px;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.themed-with-img img {
  width: 16px;
  height: 17px;
}
header nav .left .menu {
  display: none;
}
header nav .left .menu .bars {
  background-color: rgb(0, 0, 0);
  height: 3px;
  width: 45px;
  margin: 8px 0;
  transition: transform 0.4s ease-in-out;
}
/* Footer section styling */

footer {
  width: 100%;
  color: rgb(0, 0, 0);
  background: rgb(252, 252, 252);
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgb(212, 212, 212);
  font-family: "poppins", sans-serif;
  margin-top: 30px;
}
footer .footer {
  padding-left: 80px;
  padding-right: 80px;
  padding-top: 30px;
  padding-bottom: 0;
  width: 100%;
}
footer .footer .left-footer a {
  width: fit-content;
  position: relative;
  top: 5px;
}
footer .footer .left-footer a img {
  width: 75px;
  height: 85px;
}

footer .footer .left-footer {
  width: 73%;
  display: flex;
}

footer .footer .top-footer .right-footer {
  width: 35%;
  display: flex;
  gap: 3.5rem;
}

footer .footer .top-footer .right-footer .links {
  display: flex;
  flex-direction: column;
}

footer .footer .bottom-footer {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  margin: auto;
  border-top: 1px solid #818181;
}

footer .footer .top-footer {
  display: flex;
  align-items: center;
  height: 200px;
}

footer .footer .top-footer .right-footer .links a {
  padding: 2px;
  font-size: 1rem;
}
footer .footer .top-footer .right-footer .links h3 {
  margin-bottom: 10px;
}