@import url("https://fonts.googleapis.com/css2?family=Itim&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Itim&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --yellow: rgba(201, 205, 26, 1);
  --white: rgba(255, 255, 255, 1);
  --very-dark: rgba(28, 28, 28, 1);
  --light-dark: rgba(48, 48, 48, 1);
  --light: rgba(160, 160, 160, 1);
  --itim: "Itim", sans-serif;
  --torqouise: rgba(26, 205, 173, 1);
--Open-sans: "Open-Sans", sans-serif;
}

body {
  max-width: 1936px;
  margin: 0 auto;
}

.container {
  max-width: 85%;
  margin: 0 auto;
}
nav {
  padding: 30px 0 30px 0;
  background-color: var(--very-dark);
  font-family: var(--itim);
  color: var(--yellow);
}
#nav-inner ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--white);
}

#nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-li a {
  color: var(--white);
  font-weight: 400;
  font-size: 18px;
}
.nav-li a:hover {
  color: var(--yellow);
}
.Hamburger-icon {
  display: none;
}

.main-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 50px;
}

.main-section-1{
  max-width: 487px;
  font-family: var(--itim);
  font-weight: 400;
}

.main-section-1-div-1{
  padding-bottom: 3rem;
  max-width: 100%;
}

.main-section-1-div-1 h2{
  font-size: 98px;
  color: var(--very-dark);
}

.main-section-1-div-1 ul{
  display: flex;
  gap: 26px;
  color: var(--yellow);
}

.main-section-1-div-1 li:first-child::marker{
  color: var(--white);
}

.main-section-1-div-1 li::marker{
  color:var(--torqouise);
}

.main-section-1 p{
  font-size: 28px;
  line-height: 39.9px;
}

.main-section-1 button{
  width: 205px;
  height: 58px;
  background-color: var(--yellow);
  color: var(--white);
  font-family: var(--itim);
  font-size: 28px;
  border-radius: 10px;
  border: none;
  margin-top: 3rem;
}

.main-section-2{
  max-width: 545px;
}

.main-section-2 img{
  max-width: 100%;
}

footer{
  background-color: var(--light-dark);
  margin-top: 3.5rem;
  padding: 2rem;
  text-align: center;
}
.main-section-3-div-2{
font-size: 16px;
font-weight: 400;
text-align: center;
font-family: var(--itim);
color: var(--light);
}

.footer-div-1{
  width: 500px;
}

.footer-div-3-img{
  max-width: 15px;
}

#facebook-img{
  max-width: 8px;
}

.footer-div-3{
  display: flex;
  gap: 30px;
  justify-content: center;
  padding-top: 1rem;
}

.footer-div-4{
  background-color: var(--very-dark);
  text-align: center;
  color: var(--white);
  font-family: var(--Open-sans);
  font-family: Open Sans;
font-size: 13px;
font-weight: 400;
}


@media (max-width: 765px) {
  .container {
    max-width: 90%;
  }
   #nav-inner ul{
    display: none;
  }
  .Hamburger-icon {
    display: block;
  }
  #menu-img{
    display: block;
  }

  .main-container{
    flex-direction: column-reverse;
  }

  .main-section-1{
    text-align: center;
  }

  .main-section-1-div-1 h2{
    font-size: 60.34px;
    padding-top: 1rem;
  }
  .main-section-1-div-1 ul{
    font-size: 16px;
    padding-top: 1rem;
  }

  .main-section-1-div-1{
    max-width: 90%;
    margin: auto;
  }

  .main-section-1 p{
    font-size: 17.34px;
    line-height: 24.57px;
  }
  .footer-div-4-p{
    display: none;
  }
}
 