/* general */

/* palette colours

#c2ffc7 rgb 194,255,199
#9edf96 rgb 158,223,156
#62825d rgb 98,130,93
#526e48 rgb 88,110,72

*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: verdana;
  color: #526e48; 
}

a {
  text-decoration: none;
}

.cl-blk {
  color: #000000;
}

.cl-inv {
  color: #c2ffc7;
  background-color: #62825d;
  padding: 10px;
}

.center {
  text-align: center;
}

/* header style */

header {
  width: 100%;
  height: 60px;
  background-color: #ffffff;
  /*box-shadow: 0px 5px 5px #c2ffc7;*/
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation-name: navbar;
	animation-duration: 2s;
}
@keyframes navbar {
	0% {width: 20%;}
	100% {transform: width(100%);}
}

#logo-div {
  padding: 0 10px;
}

.logo a {
  text-decoration: none;
  padding: 5px;
}

/* style for hamburger and cross */

.bars-container {
  display: inline-block;
  cursor: pointer;
}
.bar1, .bar2, .bar3 {
  width: 25px;
  height: 5px;
  background-color: #62825d;
  margin: 6px 0;
  transition: 0.4s;
}
.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 7px);
  transform: rotate(-45deg) translate(-9px, 7px);
}
.change .bar2 {
  opacity: 0;
}
.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-9px, -7px);
  transform: rotate(45deg) translate(-9px, -7px);
}

/* style for navbar and menu */

#navbar {
  padding: 0 10px;
}
.menu {
  display: none;
}
.menu-toggle {
  display: block;
  position: absolute;
  width: 100%;
  top: 60px;
  left: 0;
  text-align: right;
  background-color: #62825d;
  animation-name: navbar;
	animation-duration: 2s;
}
.menu-item {
  list-style-type: none;
  text-align: center;
  cursor: pointer;
  width: 100%;
  padding: 10px;
}
.menu-item a {
  text-decoration: none;
  color: #c2ffc7;
}

/* section 1 */

.section-1 {
  height: 750px;
  background-image: url("img/background-1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.space {
  height: 200px;
}

.box-text {
  width: 50%;
  float: right;
  margin-top: 20px;
}

.title-1 {
  padding: 10px:;
  color: white;
}

.title-3 {
  margin-top: 20px;
  color: white;
}

.button-box {
  margin-top: 40px;
}

.button-tr {
  padding: 10px;
  color: white;
  background-color: transparent;
  text-decoration: none;
  border: solid 1px white;
}

.button-tr:hover {
  background-color: #c2ffc7;
  color: #62825d;
}

/* section 2 */

.section-2 {
  height: 800px;
}

.box-white {
  width: 70%;
  background-color: white;
  text-align: center;
  margin: -150px auto 10px auto;
  padding: 20px;
  border: 1px solid #9ede95;
}

.consultant {
  height: 400px;
  width: 70%;
  margin: 50px auto;
  background-image: url("img/consultant.png");
  background-size: cover;
  background-repeat: no-repeat;
}

/* section 3 */

.section-3 {
  margin-top: 50px;
}

.center-box {
  width: 95%;
  margin: 10px auto;
  border: 3px solid #526E48;
}

.text-h3 {
  margin: 20px;
}

.text-box {
  background-image: url("img/background-3.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  border: solid 1px transparent;
  height: 1500px:
}

.cl-wht1 {
  background-color: #ffffff;
  margin: 50px 10px 0px 10px;
  width: 70%;
  padding: 12px;
  border: solid 1px white;
}

.cl-wht2 {
  background-color: #ffffff;
  margin: -5px 10px 70px 100px;
  width: 70%;
  padding: 12px;
  border: solid 1px white;
}

.text {
  line-height: 24px;
}

/* page about */

.div-title-about{
  height: 200px;
  background-image: url("img/leaf-photo.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.text-about {
  margin: 10px;
}

.parag {
  padding: 10px;
}

.leaf {
  text-align: center;
  padding: 10px;
}

/* style for services page */

.space-page {
  height: 70px;
}

.div-title {
  height: 200px;
  background-image: url("img/background-5-2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.title-h1-serv {
  margin: -10px 20px 10px 20px;
  padding: 90px 10px;
  text-align: center;
  color: white;
}

.title-h2-serv {
  margin: 10px;
}

.service-list {
  list-style: square inside url("img/leaf-15-2.svg");
}

.services-it {
  padding: 10px;
  margin: 10px;
}

/* style contact page */

.text-contact {
  width: 80%;
  margin: 20px auto;
}

.section-form {
  padding: 20px;
}

.div-title-contact {
  height: 200px;
  background-image: url("img/background-6-2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.text-form {
  width: 80%;
  margin: 20px auto;
}

.container-form {
  width: 80%;
  margin: auto;
  padding: 10px;
  border: 2px solid #c2ffc7;
}

.red-point {
  color: red;
}

.button-cont {
  padding: 10px;
  color: white;
  background-color: #526E48;
  text-decoration: none;
  border: solid 1px white;
}

.button-cont:hover {
  background-color: #c2ffc7;
  color: #62825d;
}

.privacy-list {
  padding: 20px;
  list-style-type: none;
}

/* footer */

footer {
  background-color: #526E48;
  margin-top: -1px;
}

.wht {
  color: #c2ffc7;
}

.box-footer {
  padding: 20px;
}

.menu-footer {
  padding: 5px 0px;
  list-style-type: none;
}

.social-container {
  padding: 10px;
  display: flex;
  justify-content: center;
}

.menu-social {
  padding: 0px 10px;
}

.menu-social:hover {
  opacity: 0.7;
}

.cookie {
  text-align: center;
  padding: 20px;
}



/* for wide screen */

@media screen and (min-width: 768px) {
  .bars-container {
    display: none;
  }
  
  nav {
    display: block;
    padding: 20px;
  }
  
  .menu {
    display: flex;
    position: static;
  }
  
  .menu-item {
    width: 100px;
    padding: 0px;
  }
  
  .menu-item a:hover, .menu-item a:active {
    color: #9edf96;
  }
  
  .menu-item a {
    color: #62825d;
  }
  
  .menu-toggle {
    animation: none;
    background-color: #62825d;
  }
  
  .bar1, .bar2, .bar3 {
    background-color: inherit;
  }
  
  /* section 1 */
  
  .space {
    height: 100px;
  }
  
  /* section 2 */
  
  .section-2 {
    display:flex;
    justify-content: space-between;
    margin-top: -200px;
  }
  
  .box-white {
    width: 40%;
    height: 400px;
    margin: 30px;
    padding: 10px;
    line-height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
  }
  
  .consultant {
    width: 40%;
    height: 400px;
    margin: 30px;
    padding: 10px;
  }
  
  /* section 3 */
  
  .section-3 {
    margin-top: -280px;
  }
  
  .cl-wht1 {
    margin: 50px 10px 0px 50px;
  }
  
  .cl-wht2 {
    margin: -5px 10px 70px 250px;
  }
  
  /* page about */
  
  .div-title-about{
    height: 450px;
  }
  
  .text-about {
    margin: 50px;
  }
  /* page services */
  
  .div-title {
    height: 450px;
  }
  
  .title-h1-serv {
    margin: -10px 20px 10px 20px;
    padding: 180px;
    font-size: 80px;
  }
  
  /* page contact */
  
  .text-contact {
    width: 50%;
    margin: auto;
  }
  
  .section-form: {
    padding: 20px 100px;
  }
  
  .div-title-contact {
    height: 450px;
  }
  
  .container-form {
    width: 50%;
    margin: auto;
  }
  
  /* footer */
  
  .footer-container {
    display: flex;
    justify-content: center;
  }
  .box-footer {
    width: 45%;
  }
}