
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

:root {
  --theme-light-color: hsl(0, 0%, 98%);
  --theme-dark-color: hsl(0, 0%, 8%);
  --text-gray-color: hsl(0, 0%, 41%);
  --body-font: "Epilogue", sans-serif;
}

body {
  background-color: var(--theme-light-color);
  font-family: var(--body-font);
  line-height: 1;
}

img {
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
}

ol,
ul {
  list-style: none;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media screen and (max-width: 1440px) {
  .container {
    max-width: 1200px;
  }
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--theme-light-color);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  transition: all 0.5s ease;
}
.navbar img{
    height:45px!important ;
}
.navbar__menu {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .navbar__menu {
    position: absolute;
    top: 100%;
    right: -100%;
    width: 280px;
    min-height: calc(100vh - 78px);
    background-color: var(--theme-light-color);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2rem;
    padding: 2rem 1rem;
    transition: all 0.5s ease;
  }
  .navbar__menu.right-open {
    right: 0;
  }
}
.navbar__list {
  display: flex;
  justify-content: center;
  flex-grow: 1;
  gap: 2rem;
  padding-top: 4px;
}
@media screen and (max-width: 1024px) {
  .navbar__list {
    flex-direction: column;
    flex-grow: 0;
  }
}
.navbar__list li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  transition: all 0.5s ease;
  color: #0C1179;
  font-size: 15px;
    font-weight: 500;
    font-family: "poppins";
}
.navbar__list li a:hover {
  color: #1CAF07;
  text-decoration: none;
}
.navbar__list li .arrow {
  transition: 0.3s ease;
}
.navbar__list li .arrow.up {
  transform: rotate(180deg);
}
.navbar__list-drop {
  display: inline-block;
  position: relative;
}
.navbar__list-drop-menu {
  display: none;
  position: absolute;
  margin-top: 1rem;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--theme-light-color);
  border-radius: 1rem;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.122);
  z-index: 999;
}
@media screen and (max-width: 1024px) {
  .navbar__list-drop-menu {
    position: inherit;
    background-color: transparent;
    box-shadow: none;
    padding: 0.5rem 1rem;
  }
}
.navbar__list-drop-menu.open {
  display: flex;
}
.navbar__list-drop-menu.features {
  right: 0;
}
.navbar__list-drop-menu.company {
  left: 0;
  width: max-content;
}
.navbar__buttons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .navbar__buttons {
    width: 100%;
    flex-direction: column;
  }
}
.navbar__buttons a {
  color: #0C1179;
  font-size: 15px;
    font-weight: 600;
    font-family: "poppins";
  transition: 0.3s ease;
}
.navbar__buttons a:hover {
  color: #1CAF07;
  text-decoration: none;
}
.navbar__buttons-register {
  width: 100%;
  font-weight: 500;
  color: #fff;
  padding: 0.5rem 1.5rem;
  background-color: #1CAF07;
  border-radius: 0.5rem;
  transition: 0.3s ease;
}
.navbar__buttons-register:hover {
    background-color: #148a04;
}
.navbar .menu {
  display: none;
  float: left;
  transition: all 275ms ease;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .navbar .menu {
    display: block;
  }
}
.navbar .menu span {
  display: block;
  width: 22px;
  height: 4px;
  background: #0C1179;
  margin-bottom: 2px;
  border-radius: 1px;
  transition: all 275ms ease;
}
.navbar .menu.active {
  transform: rotate(-45deg);
}
.navbar .menu.active .bar1 {
  transform: rotate(0deg) translateY(6px);
}
.navbar .menu.active .bar2 {
  opacity: 0;
}
.navbar .menu.active .bar3 {
  transform: rotate(-90deg) translateX(5px);
}

@media only screen and (max-width: 480px){
    .navbar img{
        width: 150px!important ;
    }
}

