@import url("https://fonts.googleapis.com/css?family=Roboto");
body {
  background-color: gray;
  font-family: "Roboto" !important;
  color: black;
  max-width: 100%;
  overflow-x: hidden;
}

.horizontal-center {
  display: flex;
  justify-content: center;
}

.horizontal-space {
  display: flex;
  justify-content: space-between;
}

.horizontal-end {
  display: flex;
  justify-content: flex-end;
}

.vertical-center {
  display: flex;
  align-items: center;
}

.vertial-end {
  display: flex;
  align-items: flex-end;
}

.wrap {
  flex-wrap: wrap;
}

.row-column {
  display: flex;
  flex-direction: column;
}

.cooperation {
  background-color: #051923;
  color: white;
  padding-top: 20px;
  padding-bottom: 20px;
}

.cooperation span {
  color: white;
  font-size: 20px;
  margin: auto;
  margin-bottom: 20px;
}

.pricelist {
  background-color: #003554;
  color: white;
}

.contact-form {
  background-color: #f8f8f8;
}

.footer {
  background-color: #051923;
  color: lightgray;
}

.tools {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}

.example-1 {
  background-color: #f8f8f8;
  box-shadow: 0 20px 10px -25px rgba(0, 0, 0, 0.3) inset, 0 -20px 10px -25px rgba(0, 0, 0, 0.3) inset;
}

.example-2 {
  background-color: white;
}

.portrait {
  display: flex;
  flex-direction: column;
  height: 360px;
  width: 28%;
  min-width: 300px;
  margin-top: 20px;
  margin-left: 2.5%;
  margin-right: 2.5%;
  border: 1px;
  border-style: solid;
  border-color: gray;
  border-radius: 20px;
  background-color: white;
}
.portrait div:nth-child(1) {
  height: 240px;
}
.portrait div:nth-child(2) {
  height: 60px;
  text-align: center;
  justify-content: center;
}
.portrait div:nth-child(2) span:nth-child(1) {
  font-size: 22px;
  font-weight: 500;
}
.portrait div:nth-child(2) span:nth-child(2) {
  font-size: 18px;
}
.portrait div:nth-child(3) {
  height: 60px;
}
.portrait div:nth-child(3) a:not(:first-child) {
  margin-left: 10px;
}
.portrait div:nth-child(3) a {
  color: #0e76a8;
}

.btn-about {
  width: 200px;
  margin: auto;
  margin-top: 20px;
}

.btn-more {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 100px;
  color: #4CB279;
  align-self: center;
  margin-top: 20px;
}
.btn-more:focus {
  outline: none !important;
  box-shadow: none !important;
}
.btn-more:hover {
  text-decoration: underline;
  color: #1ab5fe;
}

.btn-send-form {
  background-color: #eee;
  border: solid 2px grey;
  border-radius: 5px;
  padding: 5px;
  cursor: pointer;
  width: 120px;
  color: dimgray;
  align-self: center;
  margin-top: 20px;
  font-weight: 500;
  font-size: 16px;
}
.btn-send-form:focus {
  outline: none !important;
  box-shadow: none !important;
}
.btn-send-form:hover {
  text-decoration: none;
  color: white;
  background-color: #4CB279;
}

.contact {
  width: auto;
  text-align: right;
  position: relative;
  animation-name: contact-animation;
  animation-duration: 2.5s;
}

.logo {
  position: relative;
  animation-name: logo-animation;
  animation-duration: 2.5s;
}

.offer {
  position: relative;
  animation-name: offer-animation;
  animation-duration: 2.5s;
}

.contact-link {
  text-align: center;
  color: #4CB279;
}

.contact-link:hover {
  text-decoration: none;
  color: #4CB279;
}

.footer {
  height: 100px;
}

.footer > * {
  margin-left: 20px;
}

.tool-container {
  display: flex;
  flex-wrap: wrap;
}

.tool {
  margin: 10px;
  box-sizing: border-box;
  border: 2px solid #4CB279;
  background-color: #f8f8f8;
  border-radius: 20px;
  padding: 15px;
  padding-top: 8px;
  padding-bottom: 8px;
  transition: transform 0.2s;
  font-size: 16px;
  color: black;
  font-weight: 550;
  text-decoration: none !important;
}

.tool:visited {
  text-decoration: none;
}

.tool:hover {
  transform: scale(1.1);
  cursor: pointer;
  color: black;
  border: 2px solid orangered;
}

@keyframes contact-animation {
  0% {
    left: 0px;
    top: -200px;
  }
  100% {
    left: 0px;
    top: 0px;
  }
}
@keyframes logo-animation {
  0% {
    left: -1200px;
    top: 0px;
  }
  100% {
    left: 0px;
    top: 0px;
  }
}
@keyframes offer-animation {
  0% {
    left: 1500px;
    top: 0px;
  }
  100% {
    left: 0px;
    top: 0px;
  }
}
.offer-grid {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}

.offer-box {
  width: 31%;
  min-width: 340px;
  min-height: 300px;
  margin: 12px;
  flex-wrap: wrap;
  background-color: white;
  display: flex;
  flex-direction: column;
  border: 1px solid #4CB279;
  border-radius: 30px;
  padding: 30px;
  transition-duration: 1s;
  transition-property: transform;
}

.text-center {
  text-align: center;
}

.offer-box:hover {
  transform: scale(1.1);
}
.offer-box:hover .rotate {
  transform: rotate(360deg);
}

.offer-header {
  display: flex;
  align-items: center;
  height: 50px;
}
.offer-header img {
  transition-duration: 1s;
  transition-property: transform;
}
.offer-header h3 {
  font-size: 18px;
  line-height: 1.5 !important;
  font-weight: bold !important;
  margin: auto !important;
  margin-left: 10px !important;
}

.offer-content h4 {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.7;
  text-align: left;
}

.section {
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section h3 {
  font-size: 16px;
  font-weight: normal;
  line-height: 2;
  text-align: justify;
  margin-left: 60px;
  margin-right: 60px;
}

div.section > h2:nth-child(1) {
  margin: auto;
  color: #4CB279;
  font-size: 15px;
  display: inline-block;
  font-weight: 400;
  margin-bottom: 5px;
}

div.section > span:nth-child(2) {
  margin: auto;
  font-size: 30px;
  display: inline-block;
  font-weight: 500;
  margin-bottom: 40px;
}

.workflow {
  text-align: center;
}
.workflow span {
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  margin-top: 10px;
  display: inline-block;
  font-size: 20px;
}

.confirmation {
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: justify;
}
.confirmation svg {
  margin: auto;
  margin-top: 20px;
}
.confirmation span {
  margin: auto;
  display: inline-block;
  font-weight: 350;
}
.confirmation span:nth-child(2) {
  font-size: 30px;
  margin-top: 30px;
  margin-bottom: 20px;
}
.confirmation span:nth-child(3) {
  font-size: 25px;
  margin-bottom: 40px;
}

#filters {
  margin: 1%;
  padding: 0;
  list-style: none;
}

#filters li {
  float: left;
}

#filters li span {
  display: block;
  padding: 5px 20px;
  text-decoration: none;
  color: #666;
  cursor: pointer;
  transition: color 300ms ease-in-out;
}

#filters li span:hover {
  color: #fff;
}

#filters li span.active {
  background: #ededed;
  color: #333;
}

#portfoliolist .portfolio {
  display: none;
  float: left;
  overflow: hidden;
}

.portfolio-wrapper {
  overflow: hidden;
  position: relative !important;
  cursor: pointer;
}

.portfolio img {
  max-width: 100%;
  position: relative;
  top: 0;
  -webkit-transition: all 600ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 600ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

.portfolio .label {
  position: absolute;
  width: 100%;
  height: 40px;
  bottom: -40px;
  -webkit-transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

.portfolio .label-bg {
  background: #222;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.portfolio .label-text {
  color: #fff;
  position: relative;
  z-index: 500;
  padding: 5px 8px;
}

.portfolio .text-category {
  display: block;
  font-size: 9px;
}

.portfolio:hover .label {
  bottom: 0;
}

.portfolio:hover img {
  top: -30px;
}

/* #Tablet (Portrait) */
@media only screen and (min-width: 768px) and (max-width: 959px) {
  .container {
    width: 768px;
  }
}
/*  #Mobile (Portrait) - Note: Design for a width of 320px */
@media only screen and (max-width: 767px) {
  .container {
    width: 95%;
  }

  #portfoliolist .portfolio {
    width: 48%;
    margin: 1%;
  }

  #ads {
    display: none;
  }
}
/* #Mobile (Landscape) - Note: Design for a width of 480px */
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .container {
    width: 70%;
  }

  #ads {
    display: none;
  }
}
/* Self Clearing Goodness */
.container:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix:before,
.clearfix:after,
.row:before,
.row:after {
  content: " ";
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.row:after,
.clearfix:after {
  clear: both;
}

.row,
.clearfix {
  zoom: 1;
}

.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

/*# sourceMappingURL=styles.css.map */
