/* mixins */
/* mixin list */
/* animations */
@-webkit-keyframes top-animation {
  0% {
    -webkit-transform: translateY(-20px) scale(0.95);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px) scale(1);
    opacity: 1;
  }
}
@-moz-keyframes top-animation {
  0% {
    -moz-transform: translateY(-20px) scale(0.95);
    opacity: 0;
  }
  100% {
    -moz-transform: translateY(0px) scale(1);
    opacity: 1;
  }
}
@-o-keyframes top-animation {
  0% {
    -o-transform: translateY(-20px) scale(0.95);
    opacity: 0;
  }
  100% {
    -o-transform: translateY(0px) scale(1);
    opacity: 1;
  }
}
@-ms-keyframes top-animation {
  0% {
    -ms-transform: translateY(-20px) scale(0.95);
    opacity: 0;
  }
  100% {
    -ms-transform: translateY(0px) scale(1);
    opacity: 1;
  }
}
@keyframes top-animation {
  0% {
    transform: translateY(-20px) scale(0.95);
    opacity: 0;
  }
  100% {
    transform: translateY(0px) scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes bottom-animation {
  0% {
    -webkit-transform: translateY(20px) scale(0.95);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px) scale(1);
    opacity: 1;
  }
}
@-moz-keyframes bottom-animation {
  0% {
    -moz-transform: translateY(20px) scale(0.95);
    opacity: 0;
  }
  100% {
    -moz-transform: translateY(0px) scale(1);
    opacity: 1;
  }
}
@-o-keyframes bottom-animation {
  0% {
    -o-transform: translateY(20px) scale(0.95);
    opacity: 0;
  }
  100% {
    -o-transform: translateY(0px) scale(1);
    opacity: 1;
  }
}
@-ms-keyframes bottom-animation {
  0% {
    -ms-transform: translateY(20px) scale(0.95);
    opacity: 0;
  }
  100% {
    -ms-transform: translateY(0px) scale(1);
    opacity: 1;
  }
}
@keyframes bottom-animation {
  0% {
    transform: translateY(20px) scale(0.95);
    opacity: 0;
  }
  100% {
    transform: translateY(0px) scale(1);
    opacity: 1;
  }
}
/* layouts */
* {
  box-sizing: border-box;
  font-family: 'Fira Sans', sans-serif;
  margin: 0;
  padding: 0;
}
.clear:after {
  clear: both;
  content: "";
  display: block;
}
html,
body {
  min-height: 100%;
  scroll-behavior: smooth;
}
body {
  background-color: #fff;
  height: auto!important;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
b {
  font-weight: 500;
}
input {
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
}
input[type="submit"] {
  cursor: pointer;
}
ul {
  list-style: none;
}
.button {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  background-color: #8cc814;
  border: 1px solid #8cc814;
  border-radius: 7px;
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 40px;
  height: 40px;
  text-align: center;
  text-transform: uppercase;
  width: 130px;
}
.button.button-green {
  color: #fff;
}
.button.button-white {
  color: #fff;
}
.button:hover {
  background-color: #8cc814;
  color: #fff;
  text-decoration: none;
}
.button-holder {
  display: table;
  margin: 0 auto;
}
.button-holder .button {
  float: left;
  margin: 0 5px;
}
.block {
  position: relative;
}
.block.block-white {
  background-color: #fff;
}
.block.block-padding {
  padding: 80px 0;
}
.block.block-parallax {
  overflow: hidden;
}
.block.block-parallax .parallax-bg {
  height: calc(100% + 200px);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.block.block-parallax .parallax-content {
  position: relative;
  z-index: 2;
}
.block .title {
  color: #8cc814;
  font-size: 26px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 60px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}
.block .title:before {
  height: 20px;
  display: block;
  content: '';
}
.row.mod:before {
  height: 40px;
  display: block;
  content: '';
}
@media screen and (max-width: 700px){
  .row.mod:before,  .block .title:before  {
   height: 1px;
  }
  .block .title {
    margin-bottom: 10px;
  }
}

.block.block-image .title {
  color: #fff;
}
.block.block-text h3 {
  color: #8cc814;
  font-size: 22px;
  font-weight: 300;
  line-height: 26px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.block.block-text p {
  color: #002828;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
  font-weight: 300;
}
.block.block-text p span {
  color: #8cc814;
}
.block.block-text p + h3 {
  margin-top: 40px;
}
ul {
  margin-bottom: 10px;
}
li {
  font-size: 18px;
  line-height: 26px;
  font-weight: 300;
  margin-bottom: 5px;
  padding-left: 14px;
  position: relative;
}
li.no-bullet:before {
  content: "";
}
li:before {
  color: #8cc814;
  content: "\b7";
  font-weight: 500;
  font-size: 22px;
  left: 0;
  line-height: 26px;
  position: absolute;
}
header {
  background-color: #fff;
  height: 100px;
  left: 0;
  position: fixed;
  right: 0;
  z-index: 9999;
}
header .header-logo {
  float: left;
  margin-top: 32.5px;
}
header .header-logo img {
  width: 175px;
}

@media screen and (max-width: 380px){
  header .header-logo img {
    width: 140px;
  }
}

header .header-btn {
  border: 1px solid #8cc814;
  border-radius: 7px;
  color: #002828;
  float: right;
  font-size: 16px;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  margin-top: 30px;
  margin-left: 10px;
  text-align: center;
  text-transform: uppercase;
  width: 40px;
}
header .header-btn.login-btn {
  background-color: #8cc814;
  color: #fff;
  width: 90px;
}
header .header-btn.menu-btn {
  background-color: #fff;
  color: #8cc814;
  width: auto;
  padding-right: 1rem;
  padding-left: 1rem;
 /* transition-property: background-color color;
  transition-duration: 1s;*/
}
header .header-btn.menu-btn:hover {
  background-color: #8cc814;
  color: #fff;
  text-decoration: none;
}
/**************RESPONSIVE menu-btn******************/
header.responsive .header-btn.menu-btn {
  display: block;
  width: 100%;
  margin-top: 0px;
  border-radius: 0px; 
  border-top: 0px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  border: none;
}
/*header.responsive .header-btn.menu-btn.top {
  border-top: 1px solid #8cc814;
}*/

header .header-btn img {
  display: block;
  margin: 10px;
  height: 18px;
  width: 18px;
}
header .menu-bar {
  display: none;
}
@media screen and (max-width: 1200px){

  header .menu-bar {
    display: block;
  }
  header .header-btn.menu-btn {
    display: none;
  }

}
.pozi-button {
  height: 32px;
  line-height: 32px;
  float: right;
  text-align: center;
  text-transform: uppercase;
}
.pozi-button img {
  height: 100%;
  width: auto;
}
#block-top {
  padding-top: 160px;
}
#block-top .logo {
  -webkit-animation: top-animation 5s 0s forwards cubic-bezier(0.1, 0.97, 0.08, 0.95);
  -moz-animation: top-animation 5s 0s forwards cubic-bezier(0.1, 0.97, 0.08, 0.95);
  -o-animation: top-animation 5s 0s forwards cubic-bezier(0.1, 0.97, 0.08, 0.95);
  -ms-animation: top-animation 5s 0s forwards cubic-bezier(0.1, 0.97, 0.08, 0.95);
  animation: top-animation 5s 0s forwards cubic-bezier(0.1, 0.97, 0.08, 0.95);
  opacity: 0;
  margin: 0 auto;
  height: 180px;
  width: 180px;
}
#block-top .logo img {
  width: 100%;
}
#block-top h1 {
  -webkit-animation: top-animation 5s 0.5s forwards cubic-bezier(0.1, 0.97, 0.08, 0.95);
  -moz-animation: top-animation 5s 0.5s forwards cubic-bezier(0.1, 0.97, 0.08, 0.95);
  -o-animation: top-animation 5s 0.5s forwards cubic-bezier(0.1, 0.97, 0.08, 0.95);
  -ms-animation: top-animation 5s 0.5s forwards cubic-bezier(0.1, 0.97, 0.08, 0.95);
  animation: top-animation 5s 0.5s forwards cubic-bezier(0.1, 0.97, 0.08, 0.95);
  color: #002828;
  font-size: 42px;
  font-weight: 700;
  line-height: 46px;
  margin: 20px 0 15px;
  opacity: 0;
  padding: 0 10px;
  letter-spacing: -0.02em;
  text-align: center;
}
#block-top h2 {
  -webkit-animation: top-animation 5s 1s forwards cubic-bezier(0.1, 0.97, 0.08, 0.95);
  -moz-animation: top-animation 5s 1s forwards cubic-bezier(0.1, 0.97, 0.08, 0.95);
  -o-animation: top-animation 5s 1s forwards cubic-bezier(0.1, 0.97, 0.08, 0.95);
  -ms-animation: top-animation 5s 1s forwards cubic-bezier(0.1, 0.97, 0.08, 0.95);
  animation: top-animation 5s 1s forwards cubic-bezier(0.1, 0.97, 0.08, 0.95);
  color: #8cc814;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 25px;
  opacity: 0;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}
#block-top .button-holder {
  -webkit-animation: bottom-animation 5s 1.5s forwards cubic-bezier(0.1, 0.97, 0.08, 0.95);
  -moz-animation: bottom-animation 5s 1.5s forwards cubic-bezier(0.1, 0.97, 0.08, 0.95);
  -o-animation: bottom-animation 5s 1.5s forwards cubic-bezier(0.1, 0.97, 0.08, 0.95);
  -ms-animation: bottom-animation 5s 1.5s forwards cubic-bezier(0.1, 0.97, 0.08, 0.95);
  animation: bottom-animation 5s 1.5s forwards cubic-bezier(0.1, 0.97, 0.08, 0.95);
  opacity: 0;
}
#block-top .bottom-image {
  background-color: #527500;
  height: 100px;
  margin-top: 110px;
  position: relative;
}
#block-top .bottom-image .top-bottom-image {
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: transparent url('../aw_images/top-bottom-image_2.png') center center no-repeat;
  background-size: 1600px 185px;
  bottom: 0;
  height: 185px;
  left: 50%;
  max-width: 1600px;
  position: absolute;
  width: 100%;
}
#block-top .bottom-text {
  background-color: #78b414;
  padding: 60px 30px;
}
#block-top .bottom-text p {
  color: #fff;
  font-size: 22px;
  line-height: 28px;
  font-weight: 300;
  position: relative;
  text-align: center;
  z-index: 2;
}
#block-aspect .parallax-bg {
  /*background: transparent url('../images/block-aspect-bg.jpg') center center no-repeat;*/
  background: transparent url('../aw_images/block-aspect-bg.png') center center no-repeat;
  background-size: cover;
}
#block-aspect .row {
  padding-top: 16px;
  padding-bottom: 15px;
  position: relative;

}
#block-aspect .row:before {
  background: transparent url('../images/dot-bg.png') top left repeat-x;
  background-size: 6px 2px;
  content: "";
  display: block;
  height: 2px;
  left: 15px;
  position: absolute;
  right: 15px;
  top: 0;
}
#block-aspect .row:first-child:before {
  display: none;
}
#block-aspect .row div {
  color: #fff;
  font-size: 18px;
  line-height: 26px;
}
#block-aspect .row div.col-sm-4 {
  font-weight: 500;
  text-align: right;
}
#block-image {
  background: #648c28 url('../images/block-image-bg.jpg') center center no-repeat;
  background-size: 1600px 420px;
  box-shadow: inset 0px 0px 60px rgba(0, 0, 0, 0.4);
  height: 420px;
}
#block-technology {
  padding-bottom: 0;
  z-index: 3;
}
#block-technology .image-holder {
  border-radius: 50%;
  height: 120px;
  margin: 0 auto 30px;
  position: relative;
  width: 120px;
}
#block-technology .image-holder img {
  width: 100%;
}
#block-technology .image-holder div {
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #f73e25;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  height: 40px;
  left: 50%;
  line-height: 42px;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 40px;
}
#block-technology h3 {
  color: #8cc814;
  font-size: 22px;
  font-weight: 300;
  line-height: 26px;
  margin-bottom: 20px;
}
#block-technology .bottom-image {
  background-color: #e3edd4;
  height: 125px;
  margin-top: 275px;
  position: relative;
}
#block-technology .bottom-image div {
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: transparent url('../images/technology-image.jpg') center center no-repeat;
  background-size: 1600px 417px;
  bottom: -17px;
  height: 417px;
  left: 50%;
  max-width: 1600px;
  position: absolute;
  width: 100%;
}
#block-items .col-md-6 {

  /*margin-bottom: 20px;*/
}

#block-process {
  z-index: 2;
  padding-top: 0px;
}
#block-process .devices {
  -webkit-transform: translateX(-553px);
  -moz-transform: translateX(-553px);
  -o-transform: translateX(-553px);
  -ms-transform: translateX(-553px);
  transform: translateX(-553px);
  background: transparent url('../aw_images/devices.png') center center no-repeat;
  background-size: 1105px 358px;
  bottom: -308px;
  height: 358px;
  left: 50%;
  position: absolute;
  width: 1105px;
}
#block-bottom {
  margin-top: 160px;
  padding-top: 150px;
  position: relative;
}
#block-bottom .eu {
  bottom: 0;
  position: absolute;
  right: 0;
  width: 343px;
  z-index: 999;
}
#block-bottom .parallax-bg {
  background: transparent url('../aw_images/block-bottom-bg_Photo_by_Steven_Weeks_on_Unsplash.png') top center no-repeat;
  background-size: cover;
}
#block-bottom .button {
  width: 160px;
}
#block-bottom .winery-logo {
  display: block;
  margin: 180px auto 40px;
  width: 80px;
}
#block-bottom .winery-logo img {
  width: 100%;
}
#block-bottom .impressum {
  color: #fff;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 180px;
  margin-top: 120px;
}
#block-bottom .impressum a {
  color: #fff;
}
#block-bottom .impressum a:hover, 
#block-bottom .impressum a:active, 
#block-bottom .impressum a:focus {
  color: #fff;
  outline: 0;
  text-decoration: none;
}
#block-bottom .impressum span.separator {
  color: #8cc814;
}
#block-bottom .winery-logo {
  display: block;
  margin: 180px auto 40px;
  width: 80px;
}
#block-bottom .winery-logo img {
  width: 100%;
}
@media screen and (max-width: 991px) {
  #block-top .bottom-text br {
    display: none;
  }
  #block-process {
    z-index: 2;
  }
  #block-process .devices {
    -webkit-transform: translateX(-307px);
    -moz-transform: translateX(-307px);
    -o-transform: translateX(-307px);
    -ms-transform: translateX(-307px);
    transform: translateX(-307px);
    background: transparent url('../images/devices.png') center center no-repeat;
    background-size: 600px 277px;
    bottom: -283px;
    height: 277px;
    width: 600px;
  }
  #block-image {
    background-size: cover;
    height: 300px;
  }
  #block-technology .col-md-6 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .block.block-padding {
    padding: 40px 0;
  }
  #block-top .bottom-image {
    height: 62px;
    margin-top: 80px;
  }
  #block-top .bottom-image .top-bottom-image {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: transparent url('../aw_images/top-bottom-image_2.png') center center no-repeat;
    background-size: 1000px 115px;
    bottom: 0;
    height: 115px;
    left: 50%;
    max-width: 1000px;
    position: absolute;
    width: 100%;
  }
  #block-aspect .row div.col-sm-4 {
    font-weight: 600;
    margin-bottom: 10px;
    text-align: left;
  }
  #block-image {
    background-size: cover;
    height: 250px;
  }
  #block-technology .bottom-image {
    height: 79px;
    margin-top: 155px;
    position: relative;
  }
  #block-technology .bottom-image div {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: transparent url('../images/technology-image.jpg') center center no-repeat;
    background-size: 1000px 260px;
    bottom: -10px;
    height: 260px;
    left: 50%;
    max-width: 1000px;
    position: absolute;
    width: 100%;
  }
  #block-process {
    z-index: 2;
  }
  #block-process .devices {
    -webkit-transform: translateX(-163px);
    -moz-transform: translateX(-163px);
    -o-transform: translateX(-163px);
    -ms-transform: translateX(-163px);
    transform: translateX(-163px);
    background: transparent url('../images/devices.png') center center no-repeat;
    background-size: 320px 148px;
    bottom: -126px;
    height: 148px;
    width: 320px;
  }
  #block-bottom {
    margin-top: 60px;
    padding-top: 70px;
  }
  #block-bottom .parallax-bg {
    background: transparent url('../aw_images/block-bottom-bg_Photo_by_Steven_Weeks_on_Unsplash.png') top center no-repeat;
    background-size: cover;
  }
  #block-bottom .button {
    width: 160px;
  }
  #block-bottom .winery-logo {
    display: block;
    margin: 120px auto 40px;
    width: 60px;
  }
  #block-bottom .winery-logo img {
    width: 100%;
  }
}
@media screen and (max-width: 479px) {
  header .header-btn.login-btn {
    display: none;
  }
  .block .title {
    font-size: 20px;
    line-height: 24px;
  }
  .block.block-text h3 {
    font-size: 16px;
    line-height: 18px;
  }
  .block.block-text p {
    font-size: 14px;
    line-height: 16px;
  }
  .block.block-text p span {
    color: #8cc814;
  }
  li {
    font-size: 14px;
    line-height: 18px;
  }
  li:before {
    font-size: 18px;
    line-height: 26px;
  }
  .button-holder {
    display: block;
  }
  .button-holder .button {
    float: none;
    margin: 10px auto;
  }
  #block-top h1 {
    font-size: 25px;
    line-height: 30px;
  }
  #block-top h2 {
    font-size: 16px;
    line-height: 18px;
  }
  #block-top .bottom-image {
    height: 44px;
    margin-top: 60px;
  }
  #block-top .bottom-image .top-bottom-image {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: transparent url('../aw_images/top-bottom-image_2.png') center center no-repeat;
    background-size: 700px 81px;
    bottom: 0;
    height: 81px;
    left: 50%;
    max-width: 700px;
    position: absolute;
    width: 100%;
  }
  #block-top .bottom-text {
    padding: 40px 20px;
  }
  #block-top .bottom-text p {
    font-size: 18px;
    line-height: 26px;
  }
  #block-image {
    background-size: cover;
    height: 175px;
  }
  #block-technology .bottom-image {
    height: 55px;
    margin-top: 105px;
    position: relative;
  }
  #block-technology .bottom-image div {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: transparent url('../images/technology-image.jpg') center center no-repeat;
    background-size: 700px 182px;
    bottom: -6px;
    height: 182px;
    left: 50%;
    max-width: 700px;
    position: absolute;
    width: 100%;
  }
  #block-process {
    z-index: 2;
  }
  #block-process .devices {
    -webkit-transform: translateX(-163px);
    -moz-transform: translateX(-163px);
    -o-transform: translateX(-163px);
    -ms-transform: translateX(-163px);
    transform: translateX(-163px);
    background: transparent url('../images/devices.png') center center no-repeat;
    background-size: 320px 148px;
    bottom: -126px;
    height: 148px;
    width: 320px;
  }
  #block-bottom {
    margin-top: 60px;
    padding-top: 70px;
  }
  #block-bottom .parallax-bg {
    background: transparent url('../aw_images/block-bottom-bg_Photo_by_Steven_Weeks_on_Unsplash.png') top center no-repeat;
    background-size: cover;
  }
  #block-bottom .button {
    width: 160px;
  }
  #block-bottom .winery-logo {
    display: block;
    margin: 120px auto 40px;
    width: 60px;
  }
  #block-bottom .winery-logo img {
    width: 100%;
  }
}

/************TOPNAV DROPDOWN********************/
/* Dropdown container - needed to position the dropdown content */
.dropdown {
  float: right;
  overflow: hidden;

}

/* Style the dropdown button to fit inside the topnav */
.dropdown .dropbtn {
  font-size: 16px;
  border: 1px solid #8cc814;
  border-radius: 7px;
  font-weight: 500;
 
  outline: none;
  color: #8cc814;
  padding-right: 1rem;
  padding-left: 1rem;
  padding: 1rem;
  
  margin-left: 10px;
  text-align: center;
  text-transform: uppercase;
  background-color: white;
  font-family: inherit;
  margin-top: 30px;
  height: 40px;
  line-height: 40px;
}
.dropdown a {

}
/* Style the dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  color: #8cc814;
  background-color: white;/*#f9f9f9*/
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  margin-top: 70px;
}
/* Add a grey background to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #8cc814;/*#ddd*/
  color: white;
}
/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
  display: block;
}
/* Style the links inside the dropdown */
.dropdown-content a {
  float: none;
  color: #8cc814;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
   font-family: inherit;
}

@media screen and (max-width: 991.98px){
  .dropdown {
    display: none;
  }
} 

header.responsive .dropdown {
  display: block;
  width: 100%;
  margin-top: 0px;
  border-radius: 0px; 
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
header.responsive .dropbtn {
  width: 100%;
  margin: 0px;
  border-radius: 0px;
  background-color: white;
}
header.responsive .dropdown-content {
  width: 100%;
  text-align: center;
  margin-top: 40px;
}
header.responsive .dropdown-content a {
  width: 100%;
}


/********TITLES STYLE*****************/
#dv-title, #offer-title, #mod-title {
   -webkit-animation: top-animation 5s .5s forwards cubic-bezier(0.1, 0.97, 0.08, 0.95);
  -moz-animation: top-animation 5s .5s forwards cubic-bezier(0.1, 0.97, 0.08, 0.95);
  -o-animation: top-animation 5s .5s forwards cubic-bezier(0.1, 0.97, 0.08, 0.95);
  -ms-animation: top-animation 5s .5s forwards cubic-bezier(0.1, 0.97, 0.08, 0.95);
  animation: top-animation 5s .5s forwards cubic-bezier(0.1, 0.97, 0.08, 0.95);
  color: #8cc814;
  font-size: 26px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 25px;
  opacity: 0;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

@media screen and (max-width: 991.98px){
  #dv-title, #offer-title, #mod-title {
    font-size: 22px;
  }
} 
/*****************CONTACT***********************/
.card-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}
.card.contact {
  padding: 1rem;
}
.card-img-top.contact {
  width: 120px;
  padding: .5rem;
}
.card-body.contact p {
  font-size: 16px;
  margin-bottom: 0px;
}
.card-body.contact a {
  font-size: 16px;
  margin-bottom: 0px;
}

@media screen and (max-width: 479px) {
  .card.contact {
    text-align: center;
  }

  .card-body.contact {
    text-align: center;
  }
  .card-body.contact p {
    font-size: 14px;
  }
  .card-body.contact a {
    font-size: 14px;
  }
}
/*********DATA VISUALISATION STYLE**************/
.dv-img, .mod-img {
  width: 100%;
}
.dv, .mod {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.dv .title {
  margin-bottom: 20px;
}

@media screen and (max-width: 991.98px){
  .dv, .mod {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
} 
.reverse {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap-reverse;
}


/*********OFFERS STYLE**************/

.block.block-padding.offers {
  padding-bottom: 0px; 
}
.col-md-6.table {
  padding-right: 0px;
  padding-left: 0px;
  margin-bottom: 40px;
}
.table.table-bordered {
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.20);
/*  border: 2px solid lightgrey;*/
  border-radius: 20px;
  margin: 1rem;
  padding-right: 1rem;
  padding-left: 1rem;
  background-color: rgb(240, 244, 243);
  }

.table.table-bordered h3 {
  margin-bottom: 10px;
  
}
.table.table-bordered h3.basic {
  color: rgb(237, 184, 0);
}
.table.table-bordered p.basic {
  color: rgb(237, 184, 0);
}
.table.table-bordered h3.track {
  color: rgb(239, 125, 0);
}
.table.table-bordered p.track {
  color: rgb(239, 125, 0);
}
.table.table-bordered p.line-through {
  text-decoration: line-through;
}

.table-bordered tr {
  
}
.table.table-bordered p {
  padding: .5rem 2rem;
  margin-bottom: 0rem;
}
.table-bordered li {
  margin-left: 5rem;
  margin-bottom: 0rem;
}



.table.basic-price {
  background-color: red;
}

/**********MODULES STYLE**************/

.col-md-6.mod, .col-sm-6.mod, .col-sm-4.mod{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 991.98px){
  .col-sm-6.mod, .col-sm-4.mod {
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
    #column {
    display: none;
  }
}

.tools {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
.col-sm-12.tools {
  padding-bottom: 5rem;
}
.card.tools {
  width: 25rem;
  padding: 0rem;
  margin: .5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background-color: #8cc814;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
@media screen and (max-width: 991.98px){
  .card.tools {
    width: 22rem;
  }

}
.card-img-top.tools {
  width: 100%;
  padding-bottom: 0rem;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;

}
.card-body.tools {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.block.block-text p.tools {
  color: white;
  width: 100%;
  text-align: center;
  margin-bottom: 0rem;
}
#block-items {
  padding-top: 0rem;
}




/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 3; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.5); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: 8% auto;
  padding: 0rem 2rem 2rem 2rem;
 /* border: 1px solid #888;*/
  border-radius: 10px;
  width: 80%;
  max-width: 1000px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}
.modal-img {
  width: 100%;
}
/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}



/* The Close Button */
.close {
  color: grey;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

@media screen and (max-width: 991.98px){
  .modal {
    display: none !important;
  }
}

/**********NEWS STYLE**************/
.news .row {
  padding: 2rem;
}
.news .card {
  background-color: rgb(240, 244, 243);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.20);
  border-radius: 20px;
}
.news .card a {
  color: #8cc814;
}
.news .card-body {
  padding-left: 2rem;
  padding-top: 0rem;
}
