@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;900&display=swap");
@import "../../dpworld-landing/node_modules/swiper/swiper-bundle.css";
@font-face {
  font-family: Wix Madefor;
  src: url("../fonts/WixMadeforText-Regular.ttf");
}
* {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: rgb(30, 20, 80);
  background: radial-gradient(circle, rgb(30, 20, 80) 45%, rgb(67, 10, 253) 100%);
  background-size: 200%;
  animation: bg-animation 10s infinite alternate;
}

@keyframes bg-animation {
  0% {
    background-position: left;
  }
  100% {
    background-position: right;
  }
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

button {
  width: 150px;
  height: 40px;
  border: none;
  border-radius: 20px;
  background: #2a1c6f;
  color: white;
  font-family: Wix Madefor, sans-serif;
  font-size: 16px;
}
button:hover {
  cursor: pointer;
  background: #3e2b9f;
  transition: button 1s ease;
}

input {
  width: 300px;
  height: 30px;
  border: none;
  border-bottom: 1px solid white;
  background: transparent;
  color: white;
}

.link {
  font-family: Wix Madefor, sans-serif;
  font-size: 18px;
  color: white;
}

.list {
  text-decoration: none;
  list-style-type: none;
  color: white;
}
@media (max-width: 1100px) {
  .list {
    display: block;
    font-weight: 600px;
  }
}

.list:hover {
  color: rgb(206, 206, 206);
}

.text {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 30px;
  color: white;
}
@media (max-width: 675px) {
  .text {
    font-size: 20px;
  }
}

.title {
  font-size: 50px;
  font-weight: 900;
}
@media (max-width: 1100px) {
  .title {
    font-size: 40px;
  }
}

.logo {
  width: 400px;
  height: 80px;
}
@media (max-width: 1110px) {
  .logo {
    width: 280px;
    height: 60px;
  }
}

.logo-box {
  padding: 0px 10px;
  display: block;
}
.logo-box:hover {
  cursor: pointer;
}

.burger {
  position: relative;
  z-index: 4;
  align-items: center;
  justify-content: flex-end;
  width: 35px;
  height: 35px;
  display: none;
}
@media (max-width: 1100px) {
  .burger {
    display: block;
  }
}

.burger span {
  position: absolute;
  opacity: 1;
  left: 8px;
  width: 20px;
  height: 3px;
  background: white;
  transition: transform 0.5s, opacity 0.5s, background-color 0.5s;
}

.burger span:nth-child(1) {
  transform: translateY(-10px);
}

.burger span:nth-child(3) {
  transform: translateY(10px);
}

.container {
  display: block;
}
.container__header {
  position: static;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 9 0px;
  overflow-y: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #150e38;
  box-shadow: 0 -6px 10px 5px rgba(0, 0, 0, 0.9);
}
.container__header-navigation {
  display: flex;
  gap: 40px;
  justify-content: flex-end;
  align-items: center;
  align-self: center;
  margin-right: 30px;
  padding: 10px;
}
@media (max-width: 1100px) {
  .container__header-navigation {
    position: absolute;
    left: 0;
    top: 0;
    background: #150e38;
    flex-direction: column;
    z-index: 3;
    padding: 100px 20px;
    width: 100%;
    left: -100%;
    transition: transform 0.5s;
  }
}
@media (max-width: 1100px) {
  .container .container__header.open .container__header-navigation {
    transform: translateX(100%);
  }
}
.container .container__header.open .burger span:nth-child(1) {
  transform: translateY(0) rotate(-45deg);
}
.container .container__header.open .burger span:nth-child(2) {
  opacity: 0;
}
.container .container__header.open .burger span:nth-child(3) {
  transform: translateY(0) rotate(45deg);
}
.container__main {
  background-image: url("../components/images/panoram-port-photo-br.png");
  width: 100vw;
  height: 100vh;
  min-width: auto;
  min-height: 100vh;
  overflow-y: hidden;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 150px 210px;
}
@media (max-width: 830px) {
  .container__main {
    padding: 10px;
    justify-content: center;
    align-items: center;
    height: auto;
    overflow-y: hidden;
  }
}
.container__main-content-article {
  width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 830px) {
  .container__main-content-article {
    padding: 20px;
    max-width: 400px;
    min-width: 200px;
    height: auto;
    overflow-y: hidden;
  }
}
.container__section-content {
  padding: 100px;
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
  overflow: hidden;
}
.container__section-content-item {
  width: 600px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 500px) {
  .container__section-content {
    padding: 10px;
  }
}
.container__footer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}
.container__footer-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.container__footer-data {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 100px;
  align-items: center;
  gap: 150px;
}
@media (max-width: 675px) {
  .container__footer-data {
    padding: 10px;
    gap: 20px;
  }
}
.container__footer-data-left {
  display: flex;
}
.container__footer-data-center {
  display: flex;
}

.container__button-more {
  align-self: flex-start;
  padding: 20px 0px;
}

.info-pad {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.article-image {
  max-width: 800px;
  max-height: 400px;
  loading: lazy;
}

.submit-form {
  align-self: center;
}/*# sourceMappingURL=main.css.map */