body {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  height: 100%;
  min-height: 100vh;
  position: relative;
}

body:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  background-color: #D2DFE5;
  max-width: 605px;
  width: 100%;
  height: 100%;

}
@media(min-width: 1500px) {
  body:after {
    max-width: 900px;
  }
}

.page {
  max-width: 1440px;
  width: 100%;
  margin: 0 100px;
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 9;
}
.button {
  color: #131A2C;
  font-family: DM Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.16px;
  text-decoration: none;
  padding: 13px 51px;
  border-radius: 100px;
  border: 2px solid #131A2C; 
  transition: 0.3s;
}
.button:hover {
  background-color: #131A2C;
  color: #fff;
  transition: 0.3s;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 23px;
}
.top__logo {
  z-index: 9999;
}
.top__menu {
  display: flex;
  align-items: center;
}

.top__menu-docs {
  color: #131A2C;
  font-family: DM Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.16px;
  margin-right: 48px;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.top__menu-docs.expand img, .menu__mobile-docs.expand img {
  transform: rotate(180deg);
}

.top__menu-docs-list {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 30px;
  background-color: #fff;
  padding: 0 23px;
  left: -35px;
  min-width: 125px;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: 0.3s;
}
.top__menu-docs-list.expand {
  z-index: 9999;
  padding: 22px 23px;
  height: 150px;
  opacity: 1;
  overflow: visible;
  overflow-y: hidden;
  transition: 0.3s;
}
.top__menu-docs-list a {
  text-decoration: none;
  color: #131A2C;
  font-family: DM Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.14px;
  margin-bottom: 15px;
}
.top__menu-docs img {
  margin-left: 4px;
}

footer {
  color: #6B6B6B;
  font-family: DM Sans;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 216.667% */
}
footer span:first-child {
  margin-right: 48px;
}

.mid {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  /* position: relative; */
  margin-top: 100px;
  margin-bottom: 40px;
  min-height: 600px;
}

.mid__heading {
  color: #131A2C;
  font-family: Playfair Display;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.48px;
  max-width: 639px;
  left: 0;
  margin-top: -40px;
  z-index: 999;
}
.mid__heading span {
  color: #131A2C;
  font-family: Playfair Display;
  font-size: 48px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.48px;
}
.mid__img {
  /* margin-right: -100px; */
  position: absolute;
  right: 0;
}

@media(min-width: 768px) {
  .menu__mobile, .menu__mobile-items {
    display: none;
  }
}

@media(max-width: 440px) {
  footer span {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  
  .page {
    margin: 0 20px;
    justify-content: flex-start;
  }
  body:after { 
    width: 100%;
    max-width: 100%;
    height: 60%;
  }
  .mid {
    flex-direction: column;
    padding-top: 60px;
    margin-top: 60px;
    min-height: unset;
  }
  .mid__heading {
    position: relative;
    width: 100%;
    max-width: 100%;
    left: 0;
    font-size: 36px;
    margin-bottom: 48px;
    z-index: unset;
  }
  .mid__heading span {
    font-size: 36px;
  }
  .mid__img {
    width: 100%;
    margin-right: -40px;
    position: relative;
    min-height: unset;
    /* object-fit: fill; */
  }
  .top__menu {
    display: none;
  }
  .menu__mobile {
    cursor: pointer;
    z-index: 9999;
  }
  .menu__mobile-items {
    position: absolute;
    top: -1000px;
    left: 0;
    transition: 0.3s;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 200px;
  }
  .menu__mobile-items.expanded {
    z-index: 9;
    transition: 0.3s;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #D2DFE5;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 200px;
  }
  .menu__mobile-docs {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: DM Sans; 

  }
  .menu__mobile-docs-list {
    display: flex;
    flex-direction: column;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: 0.3s;
  }
  .menu__mobile-docs-list.expand {
    padding: 22px 23px;
    height: 150px;
    opacity: 1;
    overflow: visible;
    overflow-y: hidden;
    transition: 0.3s;
    margin-top: 20px;
    margin-bottom: 40px;
    z-index: 999999999;
  }
  .menu__mobile-docs-list a{
    text-decoration: none;
    color: #131A2C;
    font-family: DM Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.14px;
    margin-bottom: 29px;
    text-align: center;
    min-width: 100px;
  }
  .menu__mobile-docs img {
    margin-left: 4px;
  }
  footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    line-height: 17.5px; 
  }
}
.footer-link {
  text-decoration: none;
  color: #6B6B6B;
  font-family: DM Sans;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
