﻿@import "header.css";
@import "breadcrumb.css";

:root {
  --indent-lr: 10%;
  --indent-tb: 5px;
  --hover-color: #23AF47;
  --space-between: 10px;
  --main-bg-color: #23bf47;
  --bg-color: rgb(64, 229, 13, 0.1);
  --dark-bg-color: darkgreen;
  --font-size: 16px;
  --line-height: 24px;
  --main-border-color: darkgreen;
  --font-color: black;
  --font-color-last: black;
  --transition: all 0.7s;
  --shadow: 0 4px 8px rgba(0,0,0,0.2), 0 10px 16px rgba(0,0,0,0.2);
  --padding:10px;
}



html {
  font-size: var(--font-size);
  margin: 0;
  padding: 0;
  outline: none;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  /*box-sizing: border-box;*/
}

body {
  /*height:1024px;*/  
}
.indent {
  padding: var(--indent-tb) var(--indent-lr) var(--indent-tb) var(--indent-lr);
}
/**/

header {
}

a {
  text-decoration: none;
}

.hide {
  display: none;
}


.container {
  
}

.shadow {
  box-shadow: 0 4px 8px rgba(0,0,0,0.2), 0 10px 16px rgba(0,0,0,0.2);
}

.content{
  overflow:auto;
  
}

.content:last-child{
  margin-bottom:10vh;
}

.home {
  overflow: hidden;
  /*position: relative;*/
  min-height: 100vh;
}

.container-flex-row {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  position:relative;
  z-index: 10;
}

.container-flex-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: stretch;
}

.align-left {
  align-self: flex-start;
}
/***/
 .title span {
  position: relative;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #EA3D3D;
  background: #fff;
  padding: 5px 15px 0px 15px;
  margin-left: 150px;
  font-size: 28px;
  z-index: 2;
}

.title::first-letter {
  text-transform: capitalize;
}

 .title::after {
  content: '';
  position: relative;
  top: -15px;
  left: 0;
  background: #23AF47;
  height: 1px;
  width: 100%;
  z-index: 1;
  display: block;
}



.all {
  position: absolute;
  top: 45px;
  right: 10px;
  font-size: 14px;
  line-height: normal;
  color: #EA3D3D;
  cursor: pointer;
  padding-right: 30px;
  text-transform:lowercase;
}

.all h2{
  font-size:14px;
  font-weight:normal;
  padding:0;
  margin:0;
}

  .all svg {
    position: absolute;
    top: 2px;
    right: 2px;
  }

 a.button{
   display:block;
   background-color:var(--main-bg-color);
   color:white;
   box-sizing:border-box;
   font-size:var(--font-size);
   padding:var(--padding);
   border-radius:0;   
   transition:var(--transition);
 }

 a.button:hover{
   background-color:red;
 }

/*owl-carousel*/
.owl-carousel .item {
  background-color: var(--bg-color);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 10px;
  min-height: 200px;
}

  .owl-carousel .item div img {    
    width: 100px;
    height: 100px;
    border-radius: 50%;
  }

  .owl-carousel .item a.text {
    text-align: center;
    color: darkgreen;
    cursor: pointer;
    padding-top: 10px;
    transition: var(--transition);
  }

  .owl-carousel .item a.text div.name{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
  }

  .owl-carousel .item a.text:hover {
    color: red;
  }

  .owl-carousel .item a.text .desc {    
    font-size: 12px;
    color:black;
    min-height:30px;
  }
  .owl-carousel .item .link{
    display:flex;
    flex-direction:column;
    margin-bottom:5px;
  }

    .owl-carousel .item .link a.link-detail {
      display: block;
      flex-grow: 1;
      background-color: var(--dark-bg-color);
      padding: 5px;
      margin-top: 5px;
      border-radius: 5px;
      color: white;
      font-size:14px;
      transition:var(--transition);
      
    }

      .owl-carousel .item .link a.link-detail:hover{
        background-color:red;
      }

      .owl-carousel .item .link a.link-detail:first-letter {
        text-transform: lowercase;
      }

      .owl-nav {
        margin-top: 10px;
        text-align: center;
      }
/***/
footer {
  position: page;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 14px;
}

  footer .container-flex-row {    
    background-color: var(--bg-color);
    padding: var(--indent-tb) var(--indent-lr) var(--indent-tb) var(--indent-lr);
  }

  footer .container-flex-row .column {
    flex-basis: 25%;
  }

    footer .container-flex-row .column .logo {
      height: 72px;
      width: auto;
    }

  footer .column .callcenter p {
    margin: 0;
    padding: 0;
  }

    footer .column .callcenter p:first-letter {
      text-transform: capitalize;
    }

  footer .column .callcenter .phones > a {
    display: inline-block;
    color: black;
    padding: 4px 4px 4px 4px;
    cursor: pointer;
    font-weight: bold;
  }

  footer .column .callcenter .phones a:hover {
    background-color: red;
    color: white;
  }

  footer .column .callcenter .phones:hover ul {
    display: inline-block;
  }

  footer .column .callcenter .phones:hover > a {
    display: none;
  }

  footer .column .phones ul li {
    padding: 5px;
    margin-top: 2px;
    display: block;
    background-color: var(--main-bg-color);
  }

    footer .column .phones ul li a {
      color: white;
    }

    footer .column .phones ul li:hover {
      color: white;
      background-color: red;
      cursor: pointer;
    }

  footer .column .callcenter .phones ul {
    display: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
  }

  footer .column .callcenter .time span {
    font-weight: bold;
  }

  footer .column .schedule p {
    margin: 0;
    padding: 0;
  }

    footer .column .schedule p:first-letter {
      text-transform: capitalize;
    }

  footer .column .schedule .time span {
    font-weight: bold;
  }

  footer .column .menu {
  }

    footer .column .menu ul {
      list-style-type: none;
      margin: 0;
      padding: 0;
    }

      footer .column .menu ul li {
        margin: 0;
        padding: 0;
      }

        footer .column .menu ul li a {
          display: block;
          padding: 5px;
          color: darkgreen;
          cursor: pointer;
        }
          footer .column .menu ul li a:hover{
            color:red;
          }

          footer .column .other a {
            color: darkgreen;
            cursor: pointer;
          }
  footer .column .other a:hover {
    color: red;    
  }

  footer .column .other ul {
    list-style-type:none;
    margin:0;
    padding:0;
  }
    footer .column .other ul li{
      float:left;
      margin-left:20px;
    }

    footer .column .other ul li svg {
      height: 25px
    }
  footer .column .other ul li svg path {
    /*fill: rgba(255,255,255,0.71)*/
    fill:darkgreen;
  }

@media screen and (max-width:800px) {
  :root {
    --indent-lr: 1%;
    --font-size: 14px;
  }
  a.button{
    padding:5px;
  }
}