* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 200;
  color: #2c2c2c;
  font-size: 18px;
}

h1 {
  font-weight: 200;
}
h2 {
  font-weight: 200;
}

a {
  color: rgb(255, 255, 255);
  text-decoration: none;
}

button {
  cursor: pointer;
  background-color: none;
}

.centre {
  text-align: center;
}

.container {
  max-width: 70rem;
  width: 90%;
  margin: 0 auto;
}

/*
.hero::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: rgba(12, 19, 80, 0.575);
}
*/
header {
  width: 100%;
  z-index: 99999999;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(46, 46, 46, 0.5) 0px 2px 8px 0px;
  position: fixed;
  top: 0px;
  left: 0px;
}
.logo_wrapper {
  display: flex;
  align-items: center;
}
.logo {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background-color: coral;
}
.logo img {
  width: 60%;
}
.logo-text {
  padding-left: 7px;
}

.header-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
}
.nav-list {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-list li {
  padding: 0 13px;
}

.nav-list li a {
  text-transform: uppercase;
  font-size: 15px;
  color: #2c2c2c;
}
.nav-list li a:hover {
  color: rgb(255, 106, 52);
}
li.call-btn a {
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

li.call-btn {
  margin-left: 10px;
  padding: 8px 16px;
  border-radius: 18px;
  background-color: coral;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

li.call-btn:hover {
  background-color: rgb(255, 106, 52);
}
li.call-btn:hover a {
  color: #ffffff;
}

.bigmac {
  font-size: 18px;
  display: none;
  padding: 12px;
  position: absolute;
  top: 32px;
  right: 20px;
  border: 0px solid;
  background-color: #ffffff;
}
.bigmac:active {
  color: #2c2c2c;
}
/*CODE for bigmac and nav for mobile devices*/
@media screen and (max-width: 760px) {
  .header-items {
    display: block;
  }
  .nav {
    text-align: center;
  }
  .nav-list {
    display: none;
    padding-top: 15px;
  }
  .nav-list li {
    padding-bottom: 15px;
    padding-left: 0px;
  }
  li.call-btn {
    margin-left: 0px;
    padding-left: 16px;
    padding-bottom: 9px;
  }
  .bigmac {
    display: block;
  }
  .shownav {
    display: inline-block;
  }
}
/*END OF CODE for bigmac and nav for mobile devices*/

.hero {
  position: relative;
  padding: 220px 0 120px 0;
  color: #ffffff;
  background-image: url(../img/house3.jpg);
  /* background-attachment: fixed; */
  background: cover;
}

.hero-text {
  width: 85%;
}

.hero-text h1 {
  padding-bottom: 49px;
  line-height: 1.5;
  font-size: 46px;
}

.hero-text h2 {
  text-transform: uppercase;
  font-size: 23px;
  line-height: 1.4;
}

.heading-underline {
  background-image: linear-gradient(rgb(255, 116, 51), rgb(255, 89, 0));
  background-size: 99% 5px;
  background-repeat: no-repeat;
  background-position: left bottom;

  animation-name: textline;
  animation-duration: 2.5s;
  animation-delay: 0.8s;
  animation-iteration-count: 1;
}

@keyframes textline {
  0% {
    background-size: 99% 5px;
  }
  35% {
    background-size: 0% 5px;
  }
  100% {
    background-size: 99% 5px;
  }
}

.hero-btn {
  display: inline-block;
  margin: 45px 0 25px 0;
  padding: 15px 28px;
  border-radius: 25px;
  background-color: coral;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.hero-btn:hover {
  background-color: rgb(255, 106, 52);
}

.heroimg img {
  margin-left: 40px;
  margin-top: 30px;
  width: 85%;
}

.banner {
  z-index: 999999;
  position: relative;
  /* top: -100px;  */
  margin: 0 0px;
  padding: 0px 0;
  display: flex;
  gap: 0px;
}

.product-icon {
  color: #ffffff;
}

.product-icon img {
  padding-top: 20px;
  height: 80px;
}

.product {
  color: #ffffff;
  flex: 1;
  padding: 25px 35px 38px 35px;
  /* box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; */
  background-color: #ffffff;
}
@media screen and (max-width: 900px) {
  .banner {
    flex-wrap: wrap;
  }
}

.pr1 {
  background-color: rgb(255, 138, 80);
}

.pr2 {
  background-color: rgb(255, 118, 60);
}

.pr3 {
  background-color: rgb(255, 144, 41);
}

.pr4 {
  background-color: rgb(255, 195, 30);
}

.product h2 {
  padding: 20px 0;
}

footer {
  color: #ffffff;
  background-color: rgb(61, 66, 65);
  padding: 80px 0 40px 0;
}

.footer-box {
  display: flex;
  gap: 15px;
}

.contacts {
  display: flex;
  justify-content: space-around;
}

.icon img {
  width: 40px;
}

.projekti {
  background-color: rgb(255, 255, 255);
}

.main-heading {
  padding: 120px 0 0px 0;
  position: relative;
}

.projekti-row {
  display: flex;
  gap: 30px;
  margin: 30px 30px;
}

.projekts {
  height: 350px;
  width: 100%;
  background-color: #ececec;
}

.copyrigths {
  padding-top: 100px;
  font-size: 12px;
}

#proj1 {
  background-image: url(../img/proj1.jpg);
  background-repeat: no-repeat;
  background-position: center;
}
#proj2 {
  background-image: url(../img/proj2.jpg);
  background-repeat: no-repeat;
  background-position: center;
}
#proj3 {
  background-image: url(../img/proj3.jpg);
  background-repeat: no-repeat;
  background-position: center;
}
#proj4 {
  background-image: url(../img/proj4.jpg);
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 500px) {
  .hero {
    padding: 155px 0 30px 0;
  }
  .hero-text {
    width: 100%;
  }
  .hero-text h1 {
    padding-bottom: 34px;
    line-height: 1.3;
    font-size: 33px;
  }

  .banner {
    display: block;
  }

  .projekti-row {
    display: block;
  }

  .projekts {
    margin-bottom: 35px;
  }

  .contacts {
    display: block;
    padding-left: 30px;
  }

  .footer-box {
    padding-bottom: 55px;
  }

  .copyrigths {
    padding-top: 35px;
  }
}
