/* Common stuff, recurring items */
:root {
  --text-color: #4e7c70;
  --background1: #daf0e4;
  --background2: #f8f8f8;
  --background3: #f0ebe7;
  --underline: #91cfb6;
  --orange: #d4751a;
  --side-padding: 400px;
}
* {
  font-family: "Roboto", sans-serif;
}
a {
  text-decoration: none;
}
.free-of-use-left {
  text-align: end !important;
  padding-right: 2rem;
  border-right: 2px solid black;
}
.free-of-use-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 2rem;
}
.to-bottom {
  position: absolute;
  bottom: 5%;
}
.orange-button-container {
  margin: 0.8rem 0;
}
.orange-button {
  color: white;
  background-color: var(--orange);
  padding: 0.8rem;
  font-size: 0.8rem;
  border-radius: 5pt;
}
.orange-button:hover {
  color: white;
}
.italic {
  font-style: italic;
}
.uppercase {
  text-transform: uppercase;
}
.green-text {
  color: var(--text-color);
}
.orange-text {
  color: var(--orange);
}
/* Sequential parts */
body {
  background-color: var(--background2);
  margin: 0;
}
.section1 {
  top: 0;
  width: 100%;
  background-color: var(--background1);
}
.big-plant-col {
  position: relative;
}
.logo {
  position: absolute;
  top: 50px;
  left: 50px;
  height: 150px;
}
.logo-mobile {
  display: none;
  position: absolute;
  top: 120px;
  left: 91px;
  height: 112px;
}
.navigation-bar {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  font-weight: 800;
}
.nav-element {
  margin-right: 32px;
  color: #fff !important;
  padding: 6px;
  display: inline-block;
  font-weight: 400;
}
.nav-element:hover {
  color: #4E7C70 !important;
}
.nav-element:last-of-type {
  margin: 0;
}

.nav-element:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 6px;
  left: 0;
  background: var(--underline);
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.nav-element:hover:after {
  width: 50%;
}
.container-fluid-extra {
  width: auto;
  margin: 0;
  padding: 0;
}
.nav-link:last-of-type {
  padding-right: 0 !important;
}
.color1 {
  color: var(--text-color);
}
.text-section {
  display: flex;
  flex-direction: column;
  text-align: right;
  text-transform: uppercase;
}
.text-size-36 {
  line-height: 24px;
  font-size: 24px;
}
.text-size-54 {
  line-height: 54px;
  font-size: 54px;
}
.text-size-60 {
  line-height: 60px;
  font-size: 60px;
}
.text-size-108 {
  line-height: 108px;
  font-size: 108px;
}
.text-thicker {
  text-shadow: 0px 1px, 1px 0px, 1px 1px;
}
.letter-spacing-2 {
  letter-spacing: 2px;
}
.inner-text > div {
  margin: 12px 0;
}
.divider {
  height: 1px;
  border-bottom: 1px solid black;
  width: 25%;
}
.bg-1 {
  background-color: var(--background1);
}
.bg-2 {
  background-color: var(--background2);
}
.bg-3 {
  background-color: var(--background3);
}
.text-color-bg-2 {
  color: var(--background2);
}
.section2 {
  background: var(--background2);
  background: linear-gradient(
    to left bottom,
    var(--background2) 50%,
    var(--background3) 50%
  );
}

.section3 {
  background-color: var(--background2);
  margin-bottom: 24px;
}

.counter-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: var(--text-color);
}

.counter-number {
  font-size: 2rem;
}
.counter-type {
  font-weight: 800;
}
/* https://codepad.co/snippet/only-corner-border-for-an-element */
.border-corner {
  border: 2px solid black;
  padding: 10px 25px;
  position: relative;
  display: flex;
  justify-content: center;
}
.border-corner img {
  position: relative;
  display: block;
  margin: 0;
  padding-right: 10px;
  z-index: 5;
  width: 25%;
  filter: invert(78%) sepia(68%) saturate(6955%) hue-rotate(6deg)
  brightness(98%) contrast(80%);
}
.border-corner::before,
.border-corner::after {
  content: "";
  position: absolute;
  background: var(--background2);
}

.border-corner::before {
  width: calc(100% + 50px + 4px - 120px);
  height: calc(100% + 4px);
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.border-corner::after {
  height: calc(100% + 50px + 4px - 120px);
  width: calc(100% + 4px);
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.text10 {
  color: var(--text-color1);
  position: relative;
  z-index: 5;
}

.section4 {
  background: linear-gradient(
    to right bottom,
    var(--background2) 50%,
    var(--background1) 50%
  );
}
.img-w-bg {
  display: flex;
  justify-content: flex-end;
  height: 200px;
}
.color-svg1 {
  position: relative;
  top: -15px;
  left: -15px;
  filter: invert(18%) sepia(15%) saturate(1392%) hue-rotate(160deg)
  brightness(95%) contrast(90%);
}
.bg-circle {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(237, 159, 84, 255);
  pointer-events: initial;
}
.img-w-decs:hover .bg-circle {
  background-color: rgba(237, 159, 84, 255);
}
.section5 {
  margin: 2rem 0;
}
.arrow {
  width: 69px;
  margin: auto;
}
.section6 {
  background: url(assets/vetem_53.png) no-repeat center;
  background-size: cover;
  min-height: 401px;
  display: flex;
  align-items: center;
}
.text11 {
  color: var(--background2);
}
.reg-button {
  font-size: 20px;
  font-weight: 900;
  padding-left: 50px;
  padding-right: 50px;
  line-height: 20px;
}
.text-justify {
  text-align: justify;
}
.text-italic {
  font-style: italic;
}
@media screen and (max-width: 1400px) {
  .free-of-use-left {
    text-align: center !important;
    padding-right: 12px;
    border: 0;
  }
  .free-of-use-right {
    padding-left: 12px;
    align-items: center;
    text-align: center !important;
  }
  .section6 {
    background: rgba(35, 57, 71, 255);
  }
  .img-w-bg {
    display: flex;
    justify-content: center;
  }
  .big-plant {
    display: none;
  }
  .big-plant-col {
    display: none;
  }
  .logo-mobile {
    display: block;
  }
  .text-size-60 {
    line-height: 40px;
    font-size: 40px;
  }
  .text-size-108 {
    line-height: 80px;
    font-size: 80px;
  }
}

.fixed-top {
  position: fixed;
  z-index: 1030;
}

.navbar {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 10px;
  background-color: rgba(78, 124, 112, 0.4);
}

.header-start {
  padding-top: 59px;
}

.navbar-nav {
  padding-top: 6px;
  padding-right: 32px;
}

.navbar-collapse {
  padding-left: 5px;
}

.container-fluid-extra {
  padding-left: 10px;
}

.navbar-light .navbar-toggler-icon {
  background:  url(icons8-menu-vertical-64.png) center;
display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70%;
    margin-left:  -8px;
}


.navbar-light .navbar-toggler {
  border-color: #fff;
  width: 40px;
}

a {
  text-decoration: none;
  color: #212529;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
  color: #4E7C70;
  cursor: pointer;
}

.post-title {
  color: #4E7C70;
  font-size: 18px;
}

.post-date {
  font-size: 12px;
}

.post-block {
  width: 25%;
}

.post-img {
  vertical-align: middle;
  object-fit: cover;
}

.card-img-top {
  width: 100%;
  height: 15vw;
  object-fit: cover;
}

.card {
  background-color: transparent;
  border-color: transparent;
}

h3 {
  font-size: 20px;
}

@media screen and (max-width: 414px) {
.logo-mobile {
    position: absolute;
    top: 100px;
    left: 1px;
    height: 95px;
}

.mobile-center {
    padding-right: 25%;
}
}

@media screen and (max-width: 335px) {
  .logo-mobile {
    position: absolute;
    top: 100px;
    left: 25px;
    height: 95px;
}
.mobile-center {
    padding-right: 20%;
}
}

@media screen and (max-width: 301px) {
.mobile-center {
    padding-right: 15%;
}
}

@media screen and (max-width: 767px) {
  .logo-mobile {
    position: absolute;
    top: 70px;
    left: 10px;
    height: 115px;
}
}

@media screen and (max-width: 320px) {
  .logo-mobile {
    position: absolute;
    top: 70px;
    left: 10px;
    height: 120px;
}
}

@media screen and (max-width: 310px) {
  .logo-mobile {
    position: absolute;
    top: 100px;
    left: 10px;
    height: 95px;
}
}

.row{
    overflow: hidden; 
}

.blog [class*="col-"]{
    margin-bottom: -99999px;
    padding-bottom: 99999px;
}
