:root {
  --container-padding: 200px;
}

@media screen and (max-width: 1200px) {
  :root {
    --container-padding: 130px;
  }
}
@media screen and (max-width: 1000px) {
  :root {
    --container-padding: 100px;
  }
}
@media screen and (max-width: 800px) {
  :root {
    --container-padding: 70px;
  }
}
@media screen and (max-width: 700px) {
  :root {
    --container-padding: 40px;
  }
}
@media screen and (max-width: 600px) {
  :root {
    --container-padding: 30px;
  }
}
body {
  display: block;
}

a {
  text-decoration: none;
  color: unset;
}

.title-text {
  font-size: 60px;
  font-weight: bold;
}

.heading-text {
  font-size: 45px;
  font-weight: bold;
}

.body-text {
  font-size: 20px;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
}

span.base {
  color: #2761E0;
}

h1, h2 {
  margin: 0px;
}
h1.heading, h2.heading {
  letter-spacing: -2px;
}

h3 {
  margin: 0px;
}
h3.heading {
  letter-spacing: -1px;
}

h1.heading {
  font-size: 75px;
  line-height: 95%;
}

h2.heading {
  font-size: 57px;
  line-height: 95%;
}
@media screen and (max-width: 800px) {
  h2.heading {
    font-size: 45px;
  }
}
@media screen and (max-width: 600px) {
  h2.heading {
    font-size: 37px;
  }
}

.box {
  border-radius: 20px;
  background-color: #ffffff;
  box-shadow: rgba(182, 182, 183, 0.2) 0px 7px 29px 0px;
  box-sizing: border-box;
  border: 1px #cccccc solid;
}

p, li {
  font-size: 18px;
}

ul {
  margin: 0px;
}

html {
  scroll-behavior: smooth;
}

.mobile-show {
  display: none;
}

.pointer {
  cursor: pointer;
}

@media screen and (max-width: 650px) {
  .mobile-hide {
    display: none !important;
  }
  .mobile-show {
    display: block;
  }
}
button, .button {
  padding: 10px 15px;
  border-radius: 4px;
  border: 0px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  margin: 0px;
  display: inline-block;
  background-color: #ffffff;
  border: 1px #cccccc solid;
  font-weight: 500;
  text-decoration: none;
  color: #000000;
  cursor: pointer;
  transition: 0.1s background-color ease-in-out;
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
button:disabled, .button:disabled {
  cursor: unset;
  color: #cccccc;
}
button.base, .button.base {
  background-color: #2761E0;
  color: #ffffff;
  border-color: #2761E0;
}
button.base:hover, .button.base:hover {
  background-color: #306cef;
}
button.base:active, .button.base:active {
  background-color: #2259d0;
}
button.red, .button.red {
  background-color: #a20b0d;
  color: #ffffff;
  border-color: #a20b0d;
}
button.red.accents, .button.red.accents {
  background-color: #ffffff;
  color: #a20b0d;
}
button.red.accents:hover, .button.red.accents:hover {
  background-color: #f9f8f8;
}
button.red.accents:active, .button.red.accents:active {
  background-color: #f2f2f2;
}
button.red:hover, .button.red:hover {
  background-color: #b41113;
}
button.red:active, .button.red:active {
  background-color: #970a0c;
}
button.small, .button.small {
  padding: 5px 10px;
}
button.transparant, .button.transparant {
  border: unset;
}
button.transparant:hover, .button.transparant:hover {
  background-color: #f2f2f2;
}
button.transparant:active, .button.transparant:active {
  background-color: #dfe9ff;
}
button.white, .button.white {
  border: 1px #cccccc solid;
  background-color: #ffffff;
}
button.white:hover, .button.white:hover {
  background-color: #f9f8f8;
}
button.white:active, .button.white:active {
  background-color: #f2f2f2;
}
button.green, .button.green {
  background-color: rgb(36, 178, 84);
  color: #ffffff;
  border-color: rgb(36, 178, 84);
}

input[type=text], input[type=email], input[type=date], textarea {
  padding: 10px 15px;
  border: 1px #cccccc solid;
  border-radius: 4px;
  box-sizing: border-box;
}
input[type=text].invisible, input[type=email].invisible, input[type=date].invisible, textarea.invisible {
  padding: 0px;
  border: 0px;
  cursor: text;
}
input[type=text].invisible:hover, input[type=email].invisible:hover, input[type=date].invisible:hover, textarea.invisible:hover {
  background-color: #f2f2f2;
}

input {
  font-family: "Inter", sans-serif;
  font-size: 12px;
}
input:disabled {
  background-color: #f2f2f2;
}

textarea {
  resize: vertical;
}

input:focus {
  outline: none;
}

.field:not(:first-of-type) {
  padding-top: 10px;
}
.field label {
  font-size: 12px;
  font-weight: 600;
  padding-bottom: 5px;
  display: inline-block;
}

.input-symbol {
  display: flex;
}
.input-symbol span {
  border: 1px #cccccc solid;
  padding: 10px 15px;
  font-size: 12px;
  border-radius: 4px;
  background-color: #f2f2f2;
  width: -moz-fit-content;
  width: fit-content;
}
.input-symbol input {
  width: 100%;
}
.input-symbol.left span {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-right: 0px;
}
.input-symbol.left input {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.carousel .element {
  width: 400px;
}
.carousel .element img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#page-contact {
  padding-bottom: 100px;
}
#page-contact > div {
  padding: 160px var(--container-padding) 40px var(--container-padding);
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 900px) {
  #page-contact > div {
    display: block;
    padding: 100px var(--container-padding) 0px var(--container-padding);
  }
}
@media screen and (max-width: 1100px) {
  #page-contact > div > div:first-child > h1 {
    font-size: 65px;
  }
}
@media screen and (max-width: 900px) {
  #page-contact > div > div:first-child > h1 {
    font-size: 50px;
  }
}
@media screen and (max-width: 500px) {
  #page-contact > div > div:first-child > h1 {
    font-size: 40px;
  }
}
#page-contact > div > div:first-child > p {
  color: rgb(109, 109, 109);
  margin: 10px 0px 0px 0px !important;
}
#page-contact > div > div:first-child > div {
  margin-top: 10px;
}
#page-contact > div > div:last-child {
  max-width: 400px;
  padding: 35px;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 900px) {
  #page-contact > div > div:last-child {
    margin-top: 20px;
    width: 100%;
    max-width: unset;
  }
}
#page-contact > div > div:last-child > h3 {
  margin: 0px;
  font-size: 28px;
}
#page-contact > div > div:last-child > form input, #page-contact > div > div:last-child > form textarea {
  width: 100%;
  margin-top: 10px;
}
#page-contact > div > div:last-child > form textarea {
  min-height: 150px;
}
#page-contact > div > div:last-child > form button {
  margin-top: 10px;
}

#page-home #lander {
  background-color: #000000;
  padding: 160px 40px;
  height: 100vh;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 700px) {
  #page-home #lander {
    padding: 100px 0px;
  }
}
#page-home #lander > div {
  display: block;
  margin: 0px auto;
  width: 1000px;
}
@media screen and (max-width: 1100px) {
  #page-home #lander > div {
    width: 900px;
  }
}
@media screen and (max-width: 1000px) {
  #page-home #lander > div {
    width: 800px;
  }
}
@media screen and (max-width: 900px) {
  #page-home #lander > div {
    width: 700px;
  }
}
@media screen and (max-width: 800px) {
  #page-home #lander > div {
    width: 600px;
  }
}
@media screen and (max-width: 700px) {
  #page-home #lander > div {
    width: 550px;
  }
}
@media screen and (max-width: 600px) {
  #page-home #lander > div {
    width: 480px;
  }
}
@media screen and (max-width: 520px) {
  #page-home #lander > div {
    width: 430px;
  }
}
@media screen and (max-width: 480px) {
  #page-home #lander > div {
    width: 390px;
  }
}
@media screen and (max-width: 420px) {
  #page-home #lander > div {
    width: 370px;
  }
}
@media screen and (max-width: 400px) {
  #page-home #lander > div {
    width: 350px;
  }
}
@media screen and (max-width: 380px) {
  #page-home #lander > div {
    width: 330px;
  }
}
#page-home #lander > div > div {
  position: relative;
  z-index: 100;
}
#page-home #lander > div > div h1 {
  transition: width 0.3s ease;
}
@media screen and (max-width: 1100px) {
  #page-home #lander > div > div h1 {
    font-size: 65px;
  }
}
@media screen and (max-width: 900px) {
  #page-home #lander > div > div h1 {
    font-size: 53px;
  }
}
@media screen and (max-width: 600px) {
  #page-home #lander > div > div h1 {
    font-size: 50px;
  }
}
@media screen and (max-width: 400px) {
  #page-home #lander > div > div h1 {
    font-size: 40px;
  }
}
#page-home #lander > div > div h1 span {
  display: inline-block;
  animation-duration: 0.2s;
}
#page-home #lander > div > div h1 span.hide {
  display: none;
}
#page-home #lander > div > div h1, #page-home #lander > div > div p {
  text-align: center;
  margin: 0px;
  color: #ffffff;
  text-shadow: 0 20px 20px #030303;
}
#page-home #lander > div > div p {
  color: rgb(109, 109, 109);
  font-size: 16px;
  width: 500px;
  display: block;
  margin: 10px auto 0px auto;
  z-index: 10;
  position: relative;
}
@media screen and (max-width: 600px) {
  #page-home #lander > div > div p {
    width: 100%;
  }
}
#page-home #lander > div > div .button-container {
  display: flex;
  margin-top: 20px;
  justify-content: center;
  gap: 10px;
}
#page-home #lander > div #mockup-image-1 {
  z-index: 99;
  width: 500px;
  position: absolute;
  left: 30px;
  bottom: 20px;
  animation: move 10s ease-in-out infinite;
}
@media screen and (max-width: 1200px) {
  #page-home #lander > div #mockup-image-1 {
    width: 400px;
  }
}
@media screen and (max-width: 1100px) {
  #page-home #lander > div #mockup-image-1 {
    left: 20px;
    width: 350px;
  }
}
@media screen and (max-width: 900px) {
  #page-home #lander > div #mockup-image-1 {
    left: -20px;
  }
}
@media screen and (max-width: 700px) {
  #page-home #lander > div #mockup-image-1 {
    display: none;
  }
}
#page-home #lander > div #mockup-image-2 {
  z-index: 99;
  width: 600px;
  position: absolute;
  right: 0px;
  bottom: -30px;
  animation: move 10s ease-in-out infinite;
}
@media screen and (max-width: 1200px) {
  #page-home #lander > div #mockup-image-2 {
    width: 500px;
  }
}
@media screen and (max-width: 1100px) {
  #page-home #lander > div #mockup-image-2 {
    bottom: 0px;
  }
}
@media screen and (max-width: 900px) {
  #page-home #lander > div #mockup-image-2 {
    bottom: -20px;
    right: -80px;
  }
}
@media screen and (max-width: 750px) {
  #page-home #lander > div #mockup-image-2 {
    bottom: -30px;
    right: -120px;
  }
}
@media screen and (max-width: 700px) {
  #page-home #lander > div #mockup-image-2 {
    display: none;
  }
}
@keyframes move {
  0% {
    transform: translate(0, 0);
  }
  30% {
    transform: translate(-10px, 0px);
  }
  70% {
    transform: translate(10px, 0px);
  }
  70% {
    transform: translate(0px, 10px);
  }
  100% {
    transform: translate(0, 0);
  }
}
#page-home #topics {
  padding: 100px var(--container-padding);
}
@media screen and (max-width: 600px) {
  #page-home #topics {
    padding-top: 50px;
  }
}
#page-home #topics > div > div {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}
@media screen and (max-width: 1500px) {
  #page-home #topics > div > div {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 900px) {
  #page-home #topics > div > div {
    grid-template-columns: 1fr;
  }
}
#page-home #topics > div > div > div {
  padding: 35px;
  position: relative;
  height: 560px;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1500px) {
  #page-home #topics > div > div > div {
    height: 580px;
  }
}
@media screen and (max-width: 400px) {
  #page-home #topics > div > div > div {
    height: 650px;
  }
}
#page-home #topics > div > div > div > h3 {
  font-size: 28px;
  margin: 0px;
}
@media screen and (max-width: 1100px) {
  #page-home #topics > div > div > div > h3 {
    font-size: 23px;
  }
}
#page-home #topics > div > div > div > p {
  color: rgb(109, 109, 109);
  margin: 3px 0px;
}
#page-home #topics > div > div > div > .button {
  margin-top: 3px;
}
#page-home #topics > div > div #topic-website img {
  position: absolute;
  width: 200px;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -200px;
}
@media screen and (max-width: 600px) {
  #page-home #topics > div > div #topic-website img {
    bottom: -230px;
  }
}
#page-home #topics > div > div #topic-software img {
  position: absolute;
  width: 400px;
  right: -120px;
  bottom: -90px;
}
@media screen and (max-width: 900px) {
  #page-home #topics > div > div #topic-software img {
    left: 0;
    right: 0;
    margin: auto;
  }
}
@media screen and (max-width: 600px) {
  #page-home #topics > div > div #topic-software img {
    width: 330px;
    bottom: -70px;
  }
}
@media screen and (max-width: 500px) {
  #page-home #topics > div > div #topic-software img {
    width: 300px;
    bottom: -60px;
  }
}
@media screen and (max-width: 400px) {
  #page-home #topics > div > div #topic-software img {
    width: 230px;
    bottom: -50px;
  }
}
#page-home #topics > div > div #topic-app img {
  position: absolute;
  width: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0%);
  bottom: -100px;
}
#page-home #success-stories > .content {
  padding: 20px var(--container-padding);
}
#page-home #success-stories > .content p {
  color: rgb(109, 109, 109);
  margin-top: 3px;
}
#page-home #success-stories .carousel {
  height: 500px;
}
@media screen and (max-width: 1100px) {
  #page-home #success-stories .carousel {
    height: 450px;
  }
}
@media screen and (max-width: 900px) {
  #page-home #success-stories .carousel {
    height: 400px;
  }
}
@media screen and (max-width: 450px) {
  #page-home #success-stories .carousel {
    height: 300px;
  }
}
#page-home #success-stories .carousel .element {
  width: 1000px;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  margin: 0px 10px;
  position: relative;
}
#page-home #success-stories .carousel .element > div {
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4444371499) 100%);
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
}
#page-home #success-stories .carousel .element > div > div {
  position: absolute;
  bottom: 30px;
  left: 50px;
}
@media screen and (max-width: 850px) {
  #page-home #success-stories .carousel .element > div > div {
    bottom: 20px;
    left: 30px;
  }
}
#page-home #success-stories .carousel .element > div > div > img {
  height: 80px;
  max-width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}
@media screen and (max-width: 850px) {
  #page-home #success-stories .carousel .element > div > div > img {
    height: 60px;
    max-width: 170px;
  }
}
@media screen and (max-width: 1100px) {
  #page-home #success-stories .carousel .element {
    width: 900px;
    height: 450px;
  }
}
@media screen and (max-width: 1000px) {
  #page-home #success-stories .carousel .element {
    width: 800px;
  }
}
@media screen and (max-width: 900px) {
  #page-home #success-stories .carousel .element {
    width: 700px;
    height: 400px;
  }
}
@media screen and (max-width: 800px) {
  #page-home #success-stories .carousel .element {
    width: 550px;
  }
}
@media screen and (max-width: 650px) {
  #page-home #success-stories .carousel .element {
    width: 480px;
  }
}
@media screen and (max-width: 550px) {
  #page-home #success-stories .carousel .element {
    width: 400px;
  }
}
@media screen and (max-width: 450px) {
  #page-home #success-stories .carousel .element {
    width: 330px;
    height: 300px;
  }
}
#page-home #success-stories .carousel .element img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#page-home #connections > .desktop-grid {
  padding: 100px var(--container-padding) 0px var(--container-padding);
}
@media screen and (max-width: 700px) {
  #page-home #connections > .desktop-grid {
    padding-bottom: 20px;
  }
}
#page-home #connections > .desktop-grid h2 {
  max-width: 800px;
}
#page-home #connections > .desktop-grid > .subtext {
  color: rgb(109, 109, 109);
}
#page-home #connections > .desktop-grid > .grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 700px) {
  #page-home #connections > .desktop-grid > .grid {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  #page-home #connections > .desktop-grid > .grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  #page-home #connections > .desktop-grid > .grid {
    grid-template-columns: 1fr;
  }
}
#page-home #connections > .desktop-grid > .grid > div {
  padding: 35px;
}
#page-home #connections > .desktop-grid > .grid > div h3 {
  margin: 0px;
  font-size: 23px;
}
#page-home #connections > .desktop-grid > .grid > div p {
  margin: 3px 0px 0px 0px;
  color: rgb(109, 109, 109);
}
#page-home #connections > .carousel {
  width: 100%;
  height: 300px;
  display: none;
  margin-bottom: 100px;
}
@media screen and (max-width: 700px) {
  #page-home #connections > .carousel {
    display: block;
  }
}
#page-home #connections > .carousel .element {
  width: 300px;
  height: 400px;
  padding: 35px;
}
#page-home #connections > .carousel .element h3 {
  margin: 0px;
  font-size: 23px;
}
#page-home #connections > .carousel .element p {
  margin: 3px 0px 0px 0px;
  color: rgb(109, 109, 109);
}
#page-home #contact {
  padding: 100px var(--container-padding);
}
#page-home #contact > div {
  background-color: #ffffff;
  padding: 40px;
  height: 300px;
  position: relative;
  overflow: hidden;
}
#page-home #contact > div > div > h3 {
  font-size: 40px;
  margin: 0px;
}
@media screen and (max-width: 600px) {
  #page-home #contact > div > div > h3 {
    font-size: 30px;
  }
  #page-home #contact > div > div > h3 br {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  #page-home #contact > div > div > h3 {
    font-size: 23px;
  }
}
#page-home #contact > div > div div {
  margin-top: 10px;
}
@media screen and (max-width: 450px) {
  #page-home #contact > div > div div .button, #page-home #contact > div > div div button {
    width: 100%;
    text-align: center;
  }
  #page-home #contact > div > div div .button:not(:first-child), #page-home #contact > div > div div button:not(:first-child) {
    margin-top: 5px;
  }
}
#page-home #contact > div img {
  position: absolute;
  right: 0px;
  bottom: -100px;
  height: 400px;
}
@media screen and (max-width: 950px) {
  #page-home #contact > div {
    height: 450px;
  }
  #page-home #contact > div img {
    display: block;
    margin: 0px auto;
    position: unset;
  }
}

#page-website-development #lander {
  position: relative;
  height: 550px;
  background: #2761E0;
  background: linear-gradient(90deg, #2761E0 0%, rgb(35, 83, 189) 100%);
  border-radius: 0px 0px 20px 20px;
}
@media screen and (max-width: 1150px) {
  #page-website-development #lander {
    height: 700px;
  }
}
@media screen and (max-width: 1000px) {
  #page-website-development #lander {
    height: 750px;
  }
}
@media screen and (max-width: 800px) {
  #page-website-development #lander {
    overflow: hidden;
  }
}
#page-website-development #lander > div {
  z-index: 100;
  padding: 150px var(--container-padding) 0px var(--container-padding);
  position: relative;
  width: 550px;
}
@media screen and (max-width: 800px) {
  #page-website-development #lander > div {
    width: 100%;
    box-sizing: border-box;
    padding-top: 100px;
  }
}
#page-website-development #lander > div h1, #page-website-development #lander > div p {
  text-shadow: 0px 0px 3px #C3C3C3;
  color: #ffffff;
}
#page-website-development #lander > div h1 {
  font-size: 65px;
}
@media screen and (max-width: 900px) {
  #page-website-development #lander > div h1 {
    font-size: 50px;
  }
}
@media screen and (max-width: 500px) {
  #page-website-development #lander > div h1 {
    font-size: 40px;
  }
}
#page-website-development #lander img {
  z-index: 99;
  position: absolute;
  right: 20px;
  bottom: -80px;
  width: 600px;
}
@media screen and (max-width: 1300px) {
  #page-website-development #lander img {
    width: 450px;
    bottom: 40px;
  }
}
@media screen and (max-width: 1000px) {
  #page-website-development #lander img {
    bottom: 0px;
  }
}
@media screen and (max-width: 800px) {
  #page-website-development #lander img {
    position: unset;
    display: block;
    margin: 0px auto;
    width: 600px;
  }
}
@media screen and (max-width: 600px) {
  #page-website-development #lander img {
    width: 450px;
  }
}
@media screen and (max-width: 500px) {
  #page-website-development #lander img {
    width: 350px;
  }
}
#page-website-development #important-principles {
  padding: 15px var(--container-padding) 0px var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 60px;
}
#page-website-development #important-principles > div {
  padding: 35px;
}
#page-website-development #important-principles > div h3 {
  font-size: 28px;
  margin: 0px;
}
#page-website-development #important-principles > div p {
  margin: 3px 0px;
}
#page-website-development #advantages {
  position: relative;
}
#page-website-development #advantages > div {
  padding: 100px var(--container-padding) 100px var(--container-padding);
}
@media screen and (max-width: 1100px) {
  #page-website-development #advantages > div {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 600px) {
  #page-website-development #advantages > div {
    padding-top: 50px;
  }
}
#page-website-development #advantages > div > div {
  width: 600px;
  z-index: 3;
  position: relative;
}
#page-website-development #advantages > div > div h2, #page-website-development #advantages > div > div li {
  text-shadow: 1px 0px rgba(185, 185, 185, 0.0862745098);
}
#page-website-development #advantages > div > div ul {
  margin-top: 10px;
  padding-left: 0px;
  list-style: none;
}
#page-website-development #advantages > div > div ul li {
  position: relative;
  padding-left: 25px;
  text-indent: -25px;
  margin-top: 10px;
}
#page-website-development #advantages > div > div ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 10px;
}
#page-website-development #advantages > div > div ul span {
  text-decoration: underline;
}
#page-website-development #advantages > div > div ul span:hover {
  color: #2761E0;
}
@media screen and (max-width: 800px) {
  #page-website-development #advantages > div > div {
    width: 100%;
  }
}
#page-website-development #advantages > img {
  position: absolute;
  right: 50px;
  top: 100px;
  height: 380px;
  z-index: 2;
}
@media screen and (max-width: 1300px) {
  #page-website-development #advantages > img {
    right: 25px;
    height: 280px;
    top: 150px;
  }
}
@media screen and (max-width: 1100px) {
  #page-website-development #advantages > img {
    position: unset;
    display: block;
    margin: 0px auto;
    height: 400px;
    padding: 0px var(--container-padding) 100px var(--container-padding);
  }
}
@media screen and (max-width: 600px) {
  #page-website-development #advantages > img {
    height: 250px;
  }
}

#page-webapp-development {
  overflow-x: hidden;
}
#page-webapp-development #lander {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  background: #2761E0;
  background: linear-gradient(90deg, #2761E0 0%, rgb(35, 83, 189) 100%);
  border-radius: 0px 0px 20px 20px;
}
#page-webapp-development #lander > div {
  z-index: 100;
  padding: 150px var(--container-padding) 100px var(--container-padding);
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 800px) {
  #page-webapp-development #lander > div {
    padding-top: 100px;
  }
}
#page-webapp-development #lander > div h1, #page-webapp-development #lander > div p {
  text-shadow: 0px 0px 3px #C3C3C3;
  color: #ffffff;
}
#page-webapp-development #lander > div h1 {
  font-size: 65px;
}
@media screen and (max-width: 900px) {
  #page-webapp-development #lander > div h1 {
    font-size: 50px;
  }
}
@media screen and (max-width: 500px) {
  #page-webapp-development #lander > div h1 {
    font-size: 40px;
  }
}
#page-webapp-development #advantages {
  position: relative;
}
@media screen and (max-width: 1150px) {
  #page-webapp-development #advantages {
    padding-bottom: 100px;
  }
}
#page-webapp-development #advantages > div {
  padding: 100px var(--container-padding) 100px var(--container-padding);
}
@media screen and (max-width: 1150px) {
  #page-webapp-development #advantages > div {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 600px) {
  #page-webapp-development #advantages > div {
    padding-top: 50px;
  }
}
#page-webapp-development #advantages > div > div {
  width: 600px;
  z-index: 3;
  position: relative;
}
#page-webapp-development #advantages > div > div h2, #page-webapp-development #advantages > div > div li {
  text-shadow: 1px 0px rgba(185, 185, 185, 0.0862745098);
}
#page-webapp-development #advantages > div > div ul {
  margin-top: 10px;
  padding-left: 0px;
  list-style: none;
}
#page-webapp-development #advantages > div > div ul li {
  position: relative;
  padding-left: 25px;
  text-indent: -25px;
  margin-top: 10px;
}
#page-webapp-development #advantages > div > div ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 10px;
}
#page-webapp-development #advantages > div > div ul span {
  text-decoration: underline;
}
#page-webapp-development #advantages > div > div ul span:hover {
  color: #2761E0;
}
@media screen and (max-width: 800px) {
  #page-webapp-development #advantages > div > div {
    width: 100%;
  }
}
#page-webapp-development #advantages > img {
  position: absolute;
  right: -400px;
  top: 100px;
  z-index: 2;
  height: 500px;
  width: 1000px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border: 3px solid black;
}
@media screen and (max-width: 1300px) {
  #page-webapp-development #advantages > img {
    height: 400px;
    width: 800px;
  }
}
@media screen and (max-width: 1150px) {
  #page-webapp-development #advantages > img {
    position: relative;
    right: 0px;
    display: block;
    margin: 0px auto;
    top: 0px;
  }
}
@media screen and (max-width: 950px) {
  #page-webapp-development #advantages > img {
    width: 600px;
    height: 300px;
  }
}
@media screen and (max-width: 700px) {
  #page-webapp-development #advantages > img {
    width: 400px;
    height: 200px;
  }
}
@media screen and (max-width: 700px) {
  #page-webapp-development #advantages > img {
    width: 300px;
    height: 160px;
  }
}

#page-projects #lander {
  padding: 160px var(--container-padding);
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  background: #2761E0;
  background: linear-gradient(90deg, #2761E0 0%, rgb(35, 83, 189) 100%);
  border-radius: 0px 0px 20px 20px;
}
@media screen and (max-width: 900px) {
  #page-projects #lander {
    padding: 100px var(--container-padding) 100px var(--container-padding);
  }
}
#page-projects #lander h1, #page-projects #lander p {
  color: #ffffff;
}
@media screen and (max-width: 1100px) {
  #page-projects #lander h1 {
    font-size: 65px;
  }
}
@media screen and (max-width: 900px) {
  #page-projects #lander h1 {
    font-size: 50px;
  }
}
@media screen and (max-width: 500px) {
  #page-projects #lander h1 {
    font-size: 40px;
  }
}
#page-projects #projects-grid {
  margin-top: -100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  padding: 0px 150px 100px 150px;
  gap: 20px;
  z-index: 3;
  position: relative;
}
@media screen and (max-width: 1100px) {
  #page-projects #projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    padding: 0px var(--container-padding) 100px var(--container-padding);
  }
}
#page-projects #projects-grid > div img {
  border-radius: 20px 20px 0px 0px;
  width: 100%;
  z-index: 4;
  position: relative;
  height: 300px;
}
#page-projects #projects-grid > div > div:last-child {
  margin-top: -25px;
  background-color: #ffffff;
  z-index: 5;
  padding: 35px;
  position: relative;
  border-radius: 20px;
  box-sizing: border-box;
}
#page-projects #projects-grid > div > div:last-child h3 {
  margin: 0px;
  font-size: 30px;
  word-wrap: break-word;
}
@media screen and (max-width: 850px) {
  #page-projects #projects-grid > div > div:last-child .button {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
  }
}

#page-article > div {
  padding: 160px var(--container-padding);
  display: block;
}
#page-article > div p {
  margin: 0px;
}

#page-404 > div {
  padding: 160px var(--container-padding);
}
#page-404 > div .button {
  margin-top: 10px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0px;
  width: 100%;
  box-sizing: border-box;
  padding: 7px var(--container-padding);
  background-color: #000000;
  color: #ffffff;
  z-index: 999;
}
header .logo {
  height: 35px;
}
header ul {
  display: flex;
  list-style: none;
  padding-left: 0px;
  gap: 20px;
}
header #dropdown p, header #dropdown a, header #dropdown li {
  font-size: 14px;
}

#menu {
  width: 100%;
  position: fixed;
  display: none;
  z-index: 10000;
}
#menu > div:first-child {
  width: 20%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5803921569);
}
#menu > div:last-child {
  color: #ffffff;
  padding: 7px var(--container-padding);
  box-sizing: border-box;
  width: 80%;
  height: 100vh;
  background-color: #2761E0;
}
#menu > div:last-child > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#menu > div:last-child > div img {
  height: 35px;
}
#menu > div:last-child .button {
  margin-top: 10px;
  color: #2761E0;
}
#menu > div:last-child ul {
  list-style: none;
  padding-left: 0px;
}
#menu > div:last-child ul hr {
  height: 1px;
  border: 0px;
  background-color: rgba(255, 255, 255, 0.4588235294);
}
@media screen and (max-width: 650px) {
  #menu.active {
    display: flex;
  }
}

footer {
  background: #2761E0;
  background: linear-gradient(90deg, #2761E0 0%, rgb(35, 83, 189) 100%);
  color: #ffffff;
  padding: 80px var(--container-padding) 30px var(--container-padding);
}
@media screen and (max-width: 750px) {
  footer {
    padding: 30px var(--container-padding);
  }
}
footer p {
  margin: 0px;
}
footer > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 750px) {
  footer > div {
    grid-template-columns: 1fr;
  }
}
footer > div .logo {
  height: 45px;
}
@media screen and (max-width: 750px) {
  footer > div .logo {
    display: block;
    margin: 0px auto;
    margin-bottom: 30px;
  }
}
footer > div .links {
  display: flex;
  gap: 70px;
  justify-content: end;
}
@media screen and (max-width: 750px) {
  footer > div .links {
    justify-content: unset;
    gap: 30px;
  }
}
footer > div .links ul {
  padding-left: 0px;
  list-style: none;
}
footer > div .links ul a {
  font-size: 14px;
}
footer > div .links ul a:hover {
  text-decoration: underline;
}
footer #credits-bar {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  footer #credits-bar {
    display: block;
  }
}
footer #credits-bar > p {
  font-size: 14px;
}

body {
  margin: 0px;
  position: relative;
  font-family: "Inter", sans-serif;
  background-color: #F5F5F7;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body #container {
  flex: 1;
}/*# sourceMappingURL=style.css.map */