* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  background-color: #fff;
}

button {
  border: none;
}

a {
  text-decoration: none;
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

header {
  background: #2f4858;
  color: #fff;
  padding: 10px 140px;
  height: 85px;
  margin-bottom: 35px;
  position: sticky;
  top: 0;
  z-index: 9999;
}

header ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  font-weight: 700;
}

header ul li {
  display: inline;
  margin-right: 20px;
  font-size: 14px;
  cursor: pointer;
}

header ul button {
  border-radius: 8px;
  color: #fff;
  background-color: #39ff14;
  width: 180px;
  height: 44px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

header ul li a {
  color: white;
  text-decoration: none;
}

header ul .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-left: 8%;
}

header ul image {
  width: 80px;
  height: 80px;
}

header ul #hamburger {
  display: none;
}

.side-menu {
  display: none;
}

.side-menu ul {
  list-style: none;
}

.side-menu ul li {
  margin: 1rem 0;
}

.side-menu ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
}

.flex {
  display: flex;
  align-items: center;
  gap: 0 10px;
}

.hero {
  background-image: url("/assets/hero.png");
  background-repeat: no-repeat;
  background-position: center;
  height: 650px;
  position: relative;
  background-color: #fff;
}

.hero div {
  position: absolute;
  top: 180px;
  left: 350px;
  color: #fff;
}

.hero div p {
  width: 450px;
  margin-top: 30px;
}

.hero div h1 {
  margin-bottom: 0;
  font-size: 45px;
}

.hero div button {
  margin-top: 30px;
  border-radius: 8px;
  color: #fff;
  background-color: #39ff14;
  width: 180px;
  height: 44px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.aboutUs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 150px 0;
  padding: 0 400px;
  color: #2f4858;
  background-color: #fff;
}

.aboutUs h1 {
  font-size: 35px;
  width: 350px;
  font-weight: 800;
  margin-bottom: 20px;
}

.aboutUs h2 {
  font-size: 32px;
}

.aboutUsContainer {
  display: flex;
  margin-top: 100px;
  line-height: 50px;
  gap: 0 150px;
}

.aboutUsContainer * {
  flex: 1;
}

.aboutUsContainer p {
  line-height: 20px;
  margin-bottom: 15px;
  font-size: 15px;
}

.services {
  background-color: #2f4858;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 140px;
  --p: 200px;
  aspect-ratio: 1;
  clip-path: polygon(0 var(--p), 100% 0, 100% calc(100% - var(--p)), 0 100%);
  padding-top: 200px;
  padding-bottom: 200px;
  position: relative;
}

.services .service {
  display: flex;
  /* gap: 0 400px; */
  width: 100%;
  justify-content: space-between;
  margin-bottom: 70px;
}

.services .service .first p {
  font-size: 20px;
}

.services .service .first h1 {
  font-size: 32px;
  line-height: 35px;
  width: 450px;
  margin-bottom: 20px;
}

.services .service .first .list {
  margin-bottom: 10px;
}

.services .service .first span {
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
}

.services .service .first .services-technology {
  display: flex;
  align-items: center;
  gap: 0 15px;
  margin-bottom: 10px;
}

.services .service .first .services-technology p {
  margin: 0;
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
}

.services .service .first .qa span {
  font-size: 30px;
  color: gray;
  font-weight: 800;
}

.services .service .first .qa {
  margin-bottom: 0;
  gap: 0 10px;
  text-transform: uppercase;
}

.services .service .first .database-item {
  display: flex;
  flex-direction: column;
}

.services .service .first .database-item ul {
  font-size: 13px;
  width: 500px;
}

.services .service {
  margin-bottom: 100px;
}

.services .service div p {
  width: 550px;
  font-size: 14px;
  margin-bottom: 20px;
}

.services .heading {
  width: 350px;
  font-weight: 700;
  margin-bottom: 100px;
  font-size: 40px;
}

.services .service-2 .first {
  order: 2;
}

.services .service .database {
  order: 2;
}

.services button {
  background-color: #39ff14;
  color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  font-weight: 700;
  width: 200px;
}

.contactUs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #2f4858;
  color: #fff;
  --p: 200px;
  clip-path: polygon(0 var(--p), 100% 0, 100% calc(100% - var(--p)), 0 100%);
  padding-top: 200px;
  padding-bottom: 200px;
  height: 900px;
  margin-top: 80px;
}

.contactUs h1 {
  font-size: 36px;
  margin-bottom: 40px;
}

.contactUs input {
  border-radius: 30px;
  background-color: #556976;
  border: 3px solid #fff;
  padding: 5px 10px;
  width: 350px;
  height: 60px;
  margin: 15px 50px;
  color: #fff;
}

.contactUs input::-webkit-input-placeholder {
  color: #a8b3b9;
  opacity: 70%;
}

.contactUs input:focus {
  outline: none;
  box-shadow: none;
}

.contactUs form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contactUs textarea {
  border-radius: 25px;
  background-color: #556976;
  border: 3px solid #fff;
  padding: 5px 10px;
  margin: 15px 50px;
  color: #fff;
  height: 130px;
}

.contactUs button {
  background-color: #39ff14;
  color: #fff;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 28px;
  cursor: pointer;
  font-weight: 700;
  width: 160px;
  margin-top: 30px;
}

.contactUs textarea:focus {
  outline: none;
  box-shadow: none;
}

.contactUs textarea::-webkit-input-placeholder {
  color: #a8b3b9;
  opacity: 70%;
  font-size: 16px;
}

.contactUs .msg {
  width: 89%;
}

.contactUs #responseMessage {
    color: #39ff14;
  }

.footer {
  /* padding: 20px 200px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer .info {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 0 50px;
}

.footer .info .icon-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 600;
  color: #2f4858;
  cursor: pointer;
}

.footer .info .mail p {
  margin-top: 5px;
}

.footer .info {
  margin: 60px 0;
  padding: 0 140px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.rights-reserved {
  background-color: #2f4858;
  width: 100%;
  text-align: center;
  color: #fff;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.swiper {
  background-color: #fff;
  font-size: 20px;
  color: #2f4858;
  text-align: center;
  width: 90%;
  height: 400px;
}

.swiper .custom-next-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: transparent;
  background-image: url("/assets/tech-stack-icons/strelica\ desno.png");
  background-size: cover;
}

.swiper .custom-prev-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: transparent;
  background-image: url("/assets/tech-stack-icons/strelica\ levo.png");
  background-size: cover;
}

.swiper .swiper-wrapper {
  margin-top: 100px;
}

.swiper h1 {
  font-size: 54px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80%;
  color: #2f4858;
  height: 600px;
  /* padding: 0 550px; */
}

.testimonials .cards {
  /* display: flex;
  justify-content: center; */
}

.testimonials h1 {
  font-size: 35px;
  margin-bottom: 50px;
}

.testimonials .cards .swiper-slide {
  width: 435px;
  height: 435px;
}

.testimonials .cards .swiper-slide img {
  width: 400px;
  height: 400px;
  box-shadow: 5px -5px 10px rgba(0, 0, 0, 0.2);
}

.techStackHeading {
  color: #2f4858;
  text-align: center;
}

.cookieBanner {
  position: sticky;
  z-index: 9999;
  background-color: #2f4858;
  height: 80px;
  width: 100%;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 150px;
  gap: 0 15px;
  color: #fff;
}

.cookieBanner button {
  height: 40px;
  background-color: #39ff14;
  padding: 10px;
  border-radius: 8px;
}

@media only screen and (max-width: 1500px) {
  .cookieBanner {
    position: sticky;
    z-index: 9999;
    background-color: #2f4858;
    height: 120px;
    width: 100%;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    justify-content: center;
    gap: 10px 15px;
    font-size: 15px;
    color: #fff;
  }

  header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  header ul li {
    margin-right: 0;
  }

  header ul li img {
    width: 200px;
    height: 50px;
  }

  header ul #hamburger {
    display: block;
    position: absolute;
    right: 30px;
  }

  header ul .nav {
    display: none;
  }

  .aboutUs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0;
    padding: 0 70px;
    color: #2f4858;
    background-color: #fff;
  }

  .aboutUs .aboutUsContainer .aboutUsImg {
    display: none;
  }

  .aboutUs .aboutUsContainer {
    margin-top: 30px;
  }

  .aboutUs .aboutUsContainer p {
    text-align: justify;
  }

  .aboutUs h1 {
    font-size: 25px;
    width: 200px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 30px;
  }

  .aboutUsContainer h1 {
    width: 100%;
    font-size: 20px;
  }

  .aboutUs h2 {
    font-size: 35px;
  }

  .swiper {
    height: 300px;
  }

  .swiper h1 {
    font-size: 35px;
  }

  .techStackHeading {
    padding-top: 100px;
  }

  .services {
    padding: 250px 70px;
    aspect-ratio: 0;
  }

  .services .heading {
    width: 350px;
    font-weight: 700;
    margin-bottom: 50px;
    font-size: 35px;
    text-align: center;
  }

  .services .service .first p {
    width: 100%;
    text-align: justify;
  }

  .services .service .second {
    display: none;
  }

  .services .service .first h1 {
    width: 100%;
    text-align: center;
    font-size: 25px;
  }

  .services .service .first .list .cons span {
    width: 10%;
  }

  .services .service .first .list .cons p {
    width: 100%;
  }

  .services .service {
    margin-bottom: 50px;
  }

  .services .service .first .database-item ul {
    width: 100%;
  }

  .services .service .first .database-item ul li {
    width: 100%;
  }

  .services .service .first .list .services-technology {
    margin-bottom: 20px;
  }

  .testimonials {
    color: #2f4858;
    width: 100%;
    height: 500px;
    margin-top: 50px;
    padding: 0 70px;
  }

  .testimonials h1 {
    font-size: 35px;
    margin-bottom: 0;
  }

  .testimonials .cards .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .testimonials .cards .swiper-slide img {
    cursor: default;
    /* width: 70%; */
  }

  .mySwiper2 .cards {
    margin: 30px 0;
  }

  .contactUs {
    height: 1100px;
    padding-top: 100px;
    padding-bottom: 100px;
    width: 100%;
  }

  .contactUs input {
    margin: 20px 10px;
  }

  .contactUs form {
    text-align: center;
  }

  .contactUs form .emailCompany {
    text-align: center;
  }

  .contactUs .msg {
    width: 725px;
    margin: 15px 0;
  }

  .footer .info {
    flex-direction: column;
    gap: 50px 0;
    margin: 50px 0;
    padding: 0;
    align-items: center;
  }

  .footer .info .icon-text {
    width: 80%;
  }

  .rights-reserved {
    font-size: 16px;
  }

  .side-menu {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #2f4858;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: left 0.3s ease;
  }

  .side-menu img {
    position: absolute;
    top: 30px;
    right: 30px;
  }
}

@media only screen and (max-width: 800px) {
  .testimonials .cards .swiper-slide {
    width: 40%;
  }

  .hero div {
    left: 20%;
  }

  .contactUs .msg {
    width: 355px;
    margin: 15px 0;
  }
}

@media only screen and (max-width: 500px) {
  header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  header ul li {
    margin-right: 0;
  }

  header ul li img {
    width: 200px;
    height: 50px;
  }

  header ul #hamburger {
    display: block;
    position: absolute;
    right: 30px;
  }

  header ul .nav {
    display: none;
  }

  .hero {
    background-image: url("/assets/heroMobile.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 650px;
    position: relative;
    background-color: #fff;
  }

  .hero div {
    position: absolute;
    top: 180px;
    left: 30px;
    color: #fff;
  }

  .hero div p {
    width: 100%;
  }

  .hero div h1 {
    margin-bottom: 0;
    font-size: 35px;
  }

  .aboutUs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0;
    padding: 0 20px;
    color: #2f4858;
    background-color: #fff;
  }

  .aboutUs .aboutUsContainer .aboutUsImg {
    display: none;
  }

  .aboutUs .aboutUsContainer {
    margin-top: 30px;
  }

  .aboutUs .aboutUsContainer p {
    text-align: justify;
  }

  .aboutUs h1 {
    font-size: 25px;
    width: 200px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 30px;
  }

  .aboutUsContainer h1 {
    width: 100%;
    font-size: 20px;
  }

  .aboutUs h2 {
    font-size: 35px;
  }

  .swiper {
    height: 300px;
  }

  .swiper h1 {
    font-size: 35px;
  }

  .techStackHeading {
    padding-top: 100px;
  }

  .services {
    padding: 250px 20px;
    aspect-ratio: 0;
  }

  .services .heading {
    width: 350px;
    font-weight: 700;
    margin-bottom: 50px;
    font-size: 35px;
    text-align: center;
  }

  .services .service .first p {
    width: 100%;
    text-align: justify;
  }

  .services .service .second {
    display: none;
  }

  .services .service .first h1 {
    width: 100%;
    text-align: center;
    font-size: 25px;
  }

  .services .service .first .list .cons span {
    width: 10%;
  }

  .services .service .first .list .cons p {
    width: 100%;
  }

  .services .service {
    margin-bottom: 50px;
  }

  .services .service .first .database-item ul {
    width: 100%;
  }

  .services .service .first .database-item ul li {
    width: 100%;
  }

  .services .service .first .list .services-technology {
    margin-bottom: 20px;
  }

  .testimonials {
    color: #2f4858;
    width: 100%;
    height: 500px;
    margin-top: 50px;
  }

  .testimonials h1 {
    font-size: 35px;
    margin-bottom: 0;
  }

  .testimonials .cards .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .testimonials .cards .swiper-slide img {
    cursor: default;
    width: 90%;
  }

  .mySwiper2 .cards {
    margin: 30px 0;
  }

  .contactUs {
    height: 1100px;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-right: 10px;
    padding-left: 10px;
    width: 100%;
  }

  .contactUs input {
    margin: 20px 0;
    width: 90%;
  }

  .contactUs form {
    text-align: center;
  }

  .contactUs form .emailCompany {
    text-align: center;
  }

  .contactUs .msg {
    width: 90%;
    margin: 15px 0;
  }

  .footer .info {
    flex-direction: column;
    gap: 50px 0;
    margin: 50px 0;
    padding: 0;
    align-items: center;
  }

  .footer .info .icon-text {
    width: 80%;
  }

  .rights-reserved {
    font-size: 16px;
  }

  .side-menu {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgb(56, 56, 56);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: left 0.3s ease;
  }

  .side-menu img {
    position: absolute;
    top: 30px;
    right: 30px;
  }
}
