*{
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	/*scroll animate*/
	scroll-behavior: smooth;
}

/*--------------------------------
    variables of the  site
--------------------------------*/

:root 
{
  --yellow-site: #fcaf3b;
  --yellow-light-site: #fcb900;
  --gray-site: #abb8c3;
  --gray-light-site: #E3E3E3;
  --gray-light-t-site: #AAAAAA;
  --gray-light-o-site: #7a7a7a;
  --gray-light-r-site: #c4c4c4;
  --gray-dark-site: #636363;
  --gray-dark-l-site: #787878;
  --gray-light-org-site: #f7f7f7;
  --white-site: #ffffff;
  --dark-site: #282C2D;
  --black-dark-site: #14171c;
  --dark-light-site: #303030;
  --green-site: #77b978;
  --green-light-site: #15D532;
  --blue-site: #0E40E6;
  --font-family-roboto-serif: 'Roboto', sans-serif;
  --font-family-poppins: Poppins;
  --font-family-font-awesome: 'Font Awesome 6 Free';
  --font-family-font-awesome-brands: 'Font Awesome 6 Brands';
}

/*--------------------------------
            body
--------------------------------*/

body {
  scrollbar-face-color: transparent;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--dark-site);
  text-align: left;
  background-color: var(--white-site);
}

/*--------------------------------------
		   Styles Globals
--------------------------------------*/

/* --- contentID ---*/

#contentID
{
  opacity: 0;
  overflow: hidden;
}

/*--- loading ---*/

.loader-container
{
  width: 100%;
  height: auto;
  min-height: 100vh;
  position: fixed;
  background-color: var(--white-site);
  z-index: 5000;
  transition: all 500ms ease-in-out;
}

.loader-animation
{
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%,-50%);
}

.closelg 
{
    z-index: 0;
    opacity: 0;
}

/* lds-dual-ring */

.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid rgba(188, 191, 191, 1);
  border-color: rgba(188, 191, 191, 1) transparent rgba(188, 191, 191, 1) transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/*--- style elements ---*/

a
{
  text-decoration: none;
}

a, button
{ 
  cursor: pointer;
  outline: none;
  -ms-touch-action: none !important;
  touch-action: none !important;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img 
{
    vertical-align: middle;
    border-style: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, 
h1, h2, h3, h4, h5, h6
{
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}

p
{
  margin-top: 0;
  margin-bottom: 1rem;
}

hr 
{
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0,0,0,.1);
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

button[disabled]
{
  cursor: not-allowed;
  box-shadow: none; 
  opacity: 0.65;
}

.message-alerts
{
  width: 100%;
  height: auto;
  position: relative;
}

.alert
{
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
    font-family: var(--font-family-roboto-serif);
}

.alert ul
{
  list-style: none;
}

.alert-site
{
    width: 100%;
    margin-bottom: 10px;
    display: none;
}

.alert-success 
{
    color: #fff;
    background-color: #21aa93;
    border-color: #21aa93;
}

.alert-info 
{
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}

.alert-danger,
.alert-error 
{
    color: #fff;
    background-color: #ee4540;
    border-color: #c72c41;
}

.alert-warning 
{
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.alert-dismissible 
{
    padding-right: 2.8em;
}

.close 
{
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000 !important;
    text-shadow: 0 1px 0 #fff; 
    opacity: .5;
    cursor: pointer;
}

.alert-dismissible .close 
{
    position: absolute;
    top: 0;
    right: 0;
    padding: .75rem 1.25rem;
    color: inherit;
}

button.close 
{   
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

.show 
{
    opacity: 1;
    visibility: visible;
}

.fade 
{
    transition: opacity .15s linear;
}

.section-site
{
  width: 100%;
  height: auto;
  position: relative;
}


/*--- buttons ---*/

.btn {
  font-family: var(--font-family-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: var(--white-site);
  text-decoration: none;
  outline: none;
  border: none;
  padding: 14px 16px;
  background: var(--green-site);
  border-radius: 5px;
  display: inline-block;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

/*--------------------------------
            menu
--------------------------------*/

header.menu-site {
  width: 100%;
  height: auto;
  position: relative;
}

header.menu-site nav {
  width: 100%;
  height: auto;
  position: relative;
  border-bottom: 2px solid var(--gray-light-site);
}

header.menu-site nav > .container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0px 15px;
}

/* --- style menu horizontal --- */

.menu_horizontal {
  display: flex;
  align-items: center;
  padding: 20px 10px;
}

.menu_horizontal > .logo {
  width: 100%;
  max-width: 105px;
  position: relative;
  align-items: flex-start;
}

.menu_horizontal > .logo > a > img {
  width: 100%;
  object-fit: contain;
}

/* --- style items --- */

.items-m-h {
  margin-left: 30px;
  display: flex;
  align-items: center;
  list-style: none;
}

.items-m-h > li {
  margin: 0px 10px;
}

.items-m-h > li > a {
  text-transform: uppercase;
  font-size: 0.8em;
  font-family: var(--font-family-poppins);
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--dark-site);
  text-decoration: none;
  transition: all 300ms ease-in-out;
}

.items-m-h > li > a:hover,
.items-m-h > li > a:focus,
.items-m-h > li > a:active,
.items-m-h > li > a.active {
  color: var(--yellow-site);
}

/* --- style button contact --- */

.btn-contat {
  margin-left: auto;
}

.btn-contat > a {
  padding: 13px 16px;
  border-radius: 5px;
  background: var(--yellow-site);
  font-size: 15px;
  font-family: var(--font-family-poppins);
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--dark-site);
  text-decoration: none;
  transition: all 300ms ease-in-out;
}

.btn-contat > a:hover {
  background: var(--yellow-light-site);
}

/* --- style button menu --- */

.btn-close-m-h {
  margin-left: auto;
  display: none;
}

.btn-close-m-h button {
  background: transparent;
  border: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-close-m-h .toogle-label {
  font-family: var(--font-family-poppins);
  font-weight: 600;
  font-size: 0.95em;
  padding-right: 5px;
}

.btn-close-m-h .bars {
  display: inline-block;
}

.btn-close-m-h .bars span {
  width: 15px;
  height: 2px;
  background-color: var(--dark-site);
  display: block;
  margin: 3px 0px;
  border-radius: 2px;
  position: relative;
  transition: all 300ms ease-in-out;
}

.btn-close-m-h.active .bars span:first-child {
  transform: rotate(45deg);
  top: 5px;
}

.btn-close-m-h.active .bars span:nth-child(2) {
  opacity: 0;
  transform: 200ms ease-out;
}

.btn-close-m-h.active .bars span:last-child {
  transform: rotate(-45deg);
  top: -5px;
}


/* --- responsive menu horizontal --- */

@media (max-width: 980px) {
  .items-m-h {
      display: none;
  }

  .btn-contat {
      display: none;
  }
  .btn-close-m-h {
      display: inline-flex;
  }
}

/* --- style menu vertical --- */

.menu_vertical {
  top: 0px;
  width: 100%;
  height: 100vh;
  left: 0px;
  position: fixed;
  background: rgba(0,0,0,0.4);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease-in-out;
  z-index: 1000;
}

.menu_vertical.active {
  opacity: 1;
  visibility: visible;
  z-index: 1000;
}

.menu_vertical .content_menu {
  width: 100%;
  max-width: 360px;
  height: 100vh;
  background: var(--white-site);
  position: relative;
  padding: 0px 15px;
  padding-bottom: 30px;
  overflow: auto;
  left: -100%;
  transition: all 600ms ease-in-out;
}

.menu_vertical.active .content_menu {
  left: 0px;
}

/* --- style button close menu vertical  --- */

.btn-close-menu-m-v {
  top: 0px;
  left: 0px;
  width: 100%;
  height: auto;
  position: sticky;
  z-index: 40;
  background: var(--white-site);
  padding: 10px 0px;
  display: flex;
  justify-content: end;
}

.btn-close-menu-m-v button {
  background: var(--white-site);
  border: 1px solid var(--white-site);
  border-radius: 5px;
}

.btn-close-menu-m-v span {
  line-height: 0px;
  padding: 14px 14px;
  display: inline-block;
}

.btn-close-menu-m-v button:hover,
.btn-close-menu-m-v button:focus,
.btn-close-menu-m-v button:active,
.btn-close-menu-m-v button.active
{
  border: 1px solid var(--dark-site);
}

/* --- style container input search --- */

.seach_menu {
  margin-top: 40px;
  position: relative;
}

.seach_menu input[type=search] {
  width: 100%;
  height: 40px;
  border: solid 2px var(--dark-site);
  padding: 10px 16px;
  font-size: 17px;
  color: var(--dark-site);
  font-family: var(--font-family-poppins);
}

/* --- style input placeholder --- */

.seach_menu input[type=search]::placeholder {
  color: var(--gray-light-o-site);
  font-weight: 300;
}

.seach_menu input[type=search]::-webkit-input-placeholder {
color: var(--gray-light-o-site);
font-weight: 300;
}

.seach_menu input[type=search]::-moz-placeholder {
color: var(--gray-light-o-site);
font-weight: 300;
opacity: 1;
}

.seach_menu input[type=search]:-moz-placeholder {
color: var(--gray-light-o-site);
font-weight: 300; 
opacity: 1;
}

.seach_menu input[type=search]:-ms-input-placeholder {
color: var(--gray-light-o-site);
font-weight: 300; 
}

.seach_menu input[type=search]:hover,
.seach_menu input[type=search]:focus,
.seach_menu input[type=search]:focus-visible,
.seach_menu input[type=search]:active
{
  border-radius: 0px;
}

/* --- style button search --- */

.seach_menu button {
  top: 2px;
  right: 2px;
  width: 50px;
  height: 36px;
  position: absolute;
  z-index: 10;
  color: var(--gray-light-o-site);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-site);
  border: 0px;
  padding: 0px 16px;
}

.seach_menu span {
  color: var(--gray-light-o-site);
}

.items-m-v {
  list-style: none;
  position: relative;
  margin-top: 20px;
}

.items-m-v > li {
  display: block;
  margin-bottom: 20px;
}

.items-m-v > li > a {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 1em;
  font-family: var(--font-family-poppins);
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--dark-site);
  text-decoration: none;
  padding: 5px 0px;
  transition: all 300ms ease-in-out;
}

.items-m-v > li > a:hover,
.items-m-v > li > a:focus,
.items-m-v > li > a:active,
.items-m-v > li > a.active {
  color: var(--yellow-site);
}

/* --- style button contact menu vertical --- */

.btn-contat-m-v {
  position: relative;
  margin-top: 20px;
}

.btn-contat-m-v > a {
  padding: 13px 16px;
  border-radius: 5px;
  background: var(--yellow-site);
  font-size: 15px;
  font-family: var(--font-family-poppins);
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--dark-site);
  text-decoration: none;
  display: inline-block;
  transition: all 300ms ease-in-out;
}

.btn-contat-m-v > a:hover {
  background: var(--yellow-light-site);
}

/*--------------------------------
          footer
--------------------------------*/

.footer-site {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  padding-bottom: 50px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}


.footer-content .footer-item {
  width: 100%;
  height: auto;
  padding: 10px;
  position: relative;
}

.footer-content .footer-item:first-child {
  width: 48.673%;
}

.footer-content .footer-item:nth-child(2) {
  width: 28.666%;
}

.footer-content .footer-item:last-child {
  width: 22.296%;
}

/* --- info company --- */

.footer-content .footer-item .logo-footer {
  width: 100%;
  max-width: 220px;
  height: auto;
  margin-bottom: 20px;
}

.footer-content .footer-item .logo-footer img {
  width: 100%;
  object-fit: cover;
}

.footer-content .footer-item .address-footer {
  width: 100%;
  height: auto;
  position: relative;
}

.footer-content .footer-item .address-footer p {
  font-family: var(--font-family-roboto-serif);
  font-weight: 400;
  color: var(--gray-light-o-site);
  margin-bottom: 25px;
}

.footer-content .footer-item .address-footer p > a {
  color: var(--gray-light-o-site);
  text-decoration: none;
}

.footer-content .footer-item .address-footer p > a:hover,
.footer-content .footer-item .address-footer p > a:active,
.footer-content .footer-item .address-footer p > a:focus {
  text-decoration: underline;
}

.footer-content .footer-item .address-footer p:last-child
{
  margin-bottom: 0px;
}

/* --- menu footer --- */

.footer-content .footer-item .menu-footer {
  width: 100%;
  height: auto;
  position: relative;
}

.footer-content .footer-item .menu-footer h2 {
  font-size: 24px;
  font-family: var(--font-family-poppins);
  font-weight: 600;
  color: var(--green-light-site);
  margin-bottom: 15px;
}

.footer-content .footer-item .menu-footer ul {
  list-style: none;
}

.footer-content .footer-item .menu-footer ul > li {
  display: block;
  margin-bottom: 5px;
}

.footer-content .footer-item .menu-footer ul > li > a {
  font-family: var(--font-family-poppins);
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-site);
  display: inline-block;
  text-decoration: none;
  transition: all 300ms ease-in-out;
}

.footer-content .footer-item .menu-footer ul > li > a:hover,
.footer-content .footer-item .menu-footer ul > li > a:focus,
.footer-content .footer-item .menu-footer ul > li > a:active,
.footer-content .footer-item .menu-footer ul > li > a.active
{
  color: var(--yellow-site);
}

/* --- copy right --- */

.footer-content .copy-right {
  width: 100%;
  height: auto;
  position: relative;
  padding-top: 70px;
}

.footer-content .copy-right p {
  font-family: var(--font-family-roboto-serif);
  font-size: 18px;
  line-height: 18px;
  font-weight: 600;
  color: var(--gray-light-o-site)
}

/* --- responsive footer --- */

@media (max-width: 1024px) and (min-width: 768px) {
  .footer-content .footer-item:first-child {
      width: 40%;
  }

  .footer-content .footer-item:nth-child(2) {
      width: 22%;
  }

  .footer-content .footer-item:last-child {
      width: 37%;
  }

  .footer-content .footer-item .logo-footer {
      max-width: 180px;
      margin-bottom: 20px;
  }

  .footer-content .copy-right {
      text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-content .footer-item .logo-footer {
      max-width: 150px;
      margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .footer-site {
      padding-top: 30px;
      padding-bottom: 30px;
  }

  .footer-content .footer-item:first-child,
  .footer-content .footer-item:nth-child(2),
  .footer-content .footer-item:last-child {
      width: 100%
  }

  .footer-content .footer-item .logo-footer {
      max-width: 180px;
      margin: 0 auto;
      margin-bottom: 40px;
  }

  .footer-content .footer-item .address-footer {
     text-align: center;
  }

  .footer-content .footer-item .menu-footer {
      text-align: center;
      margin-top: 30px;
  }

  .footer-content .footer-item .menu-footer ul > li > a {
      font-size: 14px;
  }

  .footer-content .copy-right {
      text-align: center;
      padding-top: 30px;
  }
}

/*--------------------------------
          Home
--------------------------------*/

/* --- banner home --- */

.banner_home {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 50px;
  border-bottom: 3px solid var(--gray-light-site);
}

.container {
  width: 100%;
  max-width: 1170px;
  height: auto;
  margin: 0 auto;
  padding: 0px 15px;
  position: relative;
}

.content_b_h {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 0px 5px
}

/* --- style image banner --- */

.content_b_h .img_content_b_h {
  width: 50%;
  max-width: 800px;
}

.content_b_h .img_content_b_h img {
  width: 100%;
  object-fit: cover;
}

/* --- style text banner --- */

.content_b_h .text_content_b_h {
  width: 50%;
  max-width: 900px;
  padding-left: 30px;
}

.content_b_h .text_content_b_h h2 {
  font-family: var(--font-family-roboto-serif);
  font-size: 41px;
  line-height: 41px;
  color: var(--dark-site);
  margin-bottom: 20px;
}

.content_b_h .text_content_b_h h2 > b,
.content_b_h .text_content_b_h h2 > strong {
  color: var(--green-light-site);
}

.content_b_h .text_content_b_h p {
  font-family: var(--font-family-roboto-serif);
  font-size: 16px;
  color: var(--gray-light-o-site);
  margin-bottom: 20px;
}

/* --- responsive banner home  --- */

@media (max-width: 1025px) {
  .banner_home {
      padding-top: 30px;
      padding-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .content_b_h {
      justify-content: center;
      align-items: center;
  }

  .content_b_h .img_content_b_h {
      width: 100%;
      max-width: 500px;
      margin-bottom: 20px;
  }

  .content_b_h .text_content_b_h {
      width: 100%;
      max-width: 900px;
      padding-left: 0px;
  }

  .content_b_h .text_content_b_h h2,
  .content_b_h .text_content_b_h p {
      text-align: center;
  }
}

/* --- services home --- */

.services_home {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--green-light-site);
}

.services-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.service-item {
  width: 100%;
  max-width: 33.33%;
  height: auto;
  position: relative;
  padding: 10px;
  display: inline-block;
}

.service-item .img-service {
  width: 100%;
  max-width: 120px;
  margin: 0 auto;
  height: auto;
  position: relative;
  margin-bottom: 10px;
}

.service-item .img-service img {
  width: 100%;
  object-fit: cover;
}

.service-item .text-service {
  width: 100%;
  height: auto;
  position: relative;
}

.service-item .text-service p {
  font-family: var(--font-family-roboto-serif);
  color: var(--gray-dark-site);
  font-weight: 600;
  font-size: 20px;
  text-align: center;
}

/* --- responsive services home --- */

@media (max-width: 1025px) {
  .services_home {
      padding-top: 50px;
      padding-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .service-item {
      width: 100%;
      max-width: 100%;
  }

  .service-item .img-service {
      max-width: 140px;
  }

  .service-item .text-service p {
      font-size: 14px;
  }
}

/*--------------------------------
          services
--------------------------------*/

.banner_services {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 50px;
}

.content_b_s {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 0px 5px
}

/* --- style text banner --- */

.content_b_s .text_content_b_s {
  width: 50%;
  max-width: 900px;
  padding-left: 30px;
  order: 1;
}

.content_b_s .text_content_b_s h2 {
  font-family: var(--font-family-roboto-serif);
  font-size: 41px;
  line-height: 41px;
  color: var(--dark-site);
  margin-bottom: 20px;
}

.content_b_s .text_content_b_s h2 > b,
.content_b_s .text_content_b_s h2 > strong {
  color: var(--green-light-site);
}

.content_b_s .text_content_b_s p {
  font-family: var(--font-family-roboto-serif);
  font-size: 16px;
  color: var(--gray-light-o-site);
  margin-bottom: 20px;
}

/* --- style image banner --- */

.content_b_s .img_content_b_s {
  width: 50%;
  max-width: 500px;
  order: 2;
}

.content_b_s .img_content_b_s img {
  width: 100%;
  object-fit: cover;
}

/* --- responsive banner home  --- */

@media (max-width: 1025px) {
  .banner_services {
      padding-top: 30px;
      padding-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .content_b_s {
      justify-content: center;
      align-items: center;
  }

  .content_b_s .img_content_b_s {
      width: 100%;
      max-width: 500px;
      margin-bottom: 20px;
      order: 1;
  }

  .content_b_s .text_content_b_s {
      width: 100%;
      max-width: 900px;
      padding-left: 0px;
      order: 2;
  }

  .content_b_s .text_content_b_s,
  .content_b_s .text_content_b_s h2,
  .content_b_s .text_content_b_s p {
      text-align: center;
  }
}

/* --- banner full services --- */

.banner-full-services {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 100px;
  padding-bottom: 100px;
}

.banner-full-services::before {
  content: '';
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(255,255,255,0.93);
}

.banner-full-services .content-b-f-s {
  width: 100%;
  height: auto;
  position: relative;
  text-align: center;
}

.banner-full-services .content-b-f-s h4,
.banner-full-services .content-b-f-s h5 {
  text-transform: uppercase;
}

.banner-full-services .content-b-f-s h4 {
  font-family: var(--font-family-roboto-serif);
  font-weight: 600;
  font-size: 45px;
  line-height: 45px;
  color: var(--dark-site);
  margin-bottom: 20px;
}

.banner-full-services .content-b-f-s h5 {
  font-family: var(--font-family-roboto-serif);
  font-weight: 600;
  font-size: 47px;
  line-height: 47px;
  letter-spacing: 3px;
  color: var(--gray-dark-site);
}

@media (max-width: 767px)
{
  .banner-full-services {
      padding-top: 50px;
      padding-bottom: 50px;
  }
  .banner-full-services .content-b-f-s h4 {
      font-size: 35px;
      line-height: 35px;
      margin-bottom: 20px;
  }
  
  .banner-full-services .content-b-f-s h5 {
      font-size: 21px;
      line-height: 21px;
  }
}

/* --- services --- */

.services_section {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--green-light-site);
}

.services-content-s {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.services-content-s .service-item {
  width: 100%;
  max-width: 33.33%;
  height: auto;
  position: relative;
  padding: 10px;
  display: inline-block;
}

.services-content-s .service-item .img-service {
  width: 100%;
  max-width: 120px;
  margin: 0 auto;
  height: auto;
  position: relative;
  margin-bottom: 10px;
}

.services-content-s .service-item .img-service img {
  width: 100%;
  object-fit: cover;
}

.services-content-s .service-item .text-service {
  width: 100%;
  height: auto;
  position: relative;
}

.services-content-s .service-item .text-service h3 {
  font-family: var(--font-family-roboto-serif);
  color: var(--dark-site);
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.services-content-s .service-item .text-service p {
  font-family: var(--font-family-roboto-serif);
  color: var(--gray-light-o-site);
  font-weight: 400;
  font-size: 17px;
  text-align: center;
}

/* --- responsive services section --- */

@media (max-width: 1025px) {
  .services_section {
      padding-top: 50px;
      padding-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .services-content-s .service-item {
      width: 100%;
      max-width: 100%;
  }

  .services-content-s .service-item .img-service {
      max-width: 140px;
  }

  .services-content-s .service-item .text-service p {
      font-size: 14px;
  }
}


/*--------------------------------
          about us
--------------------------------*/

.about_text {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 100px;
  border-bottom: 1px solid var(--green-light-site);
}

.content_a_t {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.text_content_a_t {
  width: 100%;
  max-width: 50%;
  height: auto;
  position: relative;
  padding-right: 20px;
  order: 1;
}

.img_content_a_t {
  width: 100%;
  max-width: 50%;
  height: auto;
  position: relative;
  margin-top: 200px;
  padding-left: 20px;
  order: 2;
}

.text_content_a_t h1,
.text_content_a_t h2 {
  font-family: var(--font-family-roboto-serif);
  font-size: 50px;
  position: relative;
  color: var(--dark-light-site);
  margin-top: 50px;
  margin-bottom: 30px;
}

.text_content_a_t h1:first-child,
.text_content_a_t h2:first-child {
  margin-top: 0px;
}

.text_content_a_t h2::after,
.text_content_a_t h2::after {
  content: '';
  bottom: -10px;
  left: 0px;
  width: 60px;
  height: 2px;
  position: absolute;
  background-color: var(--green-light-site);
}

.text_content_a_t h3,
.text_content_a_t h4,
.text_content_a_t h5 {
  font-family: var(--font-family-roboto-serif);
  color: var(--dark-light-site);
  font-size: 26px;
  position: relative;
  margin-top: 15px;
  margin-bottom: 15px;
}

.text_content_a_t p {
  font-family: var(--font-family-roboto-serif);
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: var(--gray-light-o-site);
  margin-bottom: 30px;
}

.img_content_a_t img {
  width: 100%;
  object-fit: cover;
}

/* --- responsive about --- */

@media (max-width: 960px) {

  .about_text {
      width: 100%;
      height: auto;
      position: relative;
      overflow: hidden;
      padding-top: 150px;
      padding-bottom: 100px;
      border-bottom: 1px solid var(--green-light-site);
  }
  
  .content_a_t {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: flex-start;
  }

  .text_content_a_t h2 {
      font-family: var(--font-family-roboto-serif);
      font-size: 35px;
      position: relative;
      margin-top: 50px;
      margin-bottom: 30px;
  }
  
  .text_content_a_t h2::after {
      content: '';
      bottom: -10px;
      left: 0px;
      width: 60px;
      height: 2px;
      position: absolute;
      background-color: var(--green-light-site);
  }
  
  .text_content_a_t p {
      font-family: var(--font-family-roboto-serif);
      font-size: 16px;
      line-height: 28px;
      font-weight: 400;
      color: var(--gray-light-o-site);
      margin-bottom: 30px;
  }

}

@media (max-width: 767px) {
  .about_text {
      padding-top: 50px;
      padding-bottom: 50px;
  }

  .text_content_a_t {
      width: 100%;
      max-width: 100%;
      height: auto;
      position: relative;
      padding-right: 0px;
  }
  
  .img_content_a_t {
      width: 100%;
      max-width: 500px;
      padding-left: 0px;
      margin: 0 auto;
      margin-top: 20px;
  }

  .text_content_a_t {
      text-align: center;
  }

  .text_content_a_t h2 {
      font-family: var(--font-family-roboto-serif);
      font-size: 35px;
  }
  
  .text_content_a_t h2::after {
      left: 50%;
      position: absolute;
      transform: translateX(-50%);
  }
}

/*--------------------------------
      terms and conditions
--------------------------------*/

.terms_text {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 100px;
  border-bottom: 1px solid var(--green-light-site);
}

.content_t_c {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}


.img_content_t_c {
  width: 100%;
  max-width: 500px;
  height: auto;
  position: relative;
  margin-bottom: 80px;
  order: 1;
}

.img_content_t_c img {
  width: 100%;
  object-fit: cover;
}

.text_content_t_c {
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
  order: 2;
}

.text_content_t_c h1,
.text_content_t_c h2 {
  font-family: var(--font-family-roboto-serif);
  font-size: 33px;
  line-height: 33px;
  font-weight: 600;
  color: var(--dark-light-site);
  position: relative;
  margin-bottom: 40px;
}

.text_content_t_c h1::after,
.text_content_t_c h2::after {
  content: '';
  bottom: -15px;
  left: 0px;
  width: 60px;
  height: 2px;
  position: absolute;
  background-color: var(--green-light-site);
}

.text_content_t_c h3,
.text_content_t_c h4,
.text_content_t_c h5 {
  color: var(--dark-light-site);
  font-family: "Roboto", Sans-serif;
  font-size: 26px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 15px;
}

.text_content_t_c h4,
.text_content_t_c h5 {
  font-size: 22px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.text_content_t_c p {
  font-family: var(--font-family-roboto-serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-site);
  position: relative;
  margin-bottom: 30px;
}

.text_content_t_c p a {
  color: var(--dark-site);
  font-weight: 600;
  text-decoration: none;
  transition: all 300ms ease-in-out;
}

.text_content_t_c p a:hover {
  color: var(--yellow-light-site);
  text-decoration: underline;
}

/* --- responsive terms --- */

@media (max-width: 767px) {
  .img_content_t_c {
      width: 100%;
      max-width: 400px;
      height: auto;
      position: relative;
      margin-bottom: 80px;
  }
}

/*--------------------------------
        privacy policy
--------------------------------*/

.privacy_text {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  padding-top: 50px;
  padding-bottom: 100px;
  border-bottom: 1px solid var(--green-light-site);
}

.content_p_t {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}


.img_content_p_t {
  width: 100%;
  max-width: 500px;
  height: auto;
  position: relative;
  margin-bottom: 50px;
  order: 1;
}

.img_content_p_t img {
  width: 100%;
  object-fit: cover;
}

.text_content_p_t {
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
  order: 2;
}

.text_content_p_t h1,
.text_content_p_t h2 {
  font-family: var(--font-family-roboto-serif);
  font-size: 33px;
  line-height: 33px;
  font-weight: 600;
  color: var(--dark-light-site);
  position: relative;
  margin-bottom: 40px;
}

.text_content_p_t h1::after,
.text_content_p_t h2::after {
  content: '';
  bottom: -15px;
  left: 0px;
  width: 60px;
  height: 2px;
  position: absolute;
  background-color: var(--green-light-site);
}

.text_content_p_t h3,
.text_content_p_t h4,
.text_content_p_t h5 {
  color: var(--dark-light-site);
  font-family: "Roboto", Sans-serif;
  font-size: 26px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 15px;
}

.text_content_p_t h4,
.text_content_p_t h5 {
  font-size: 22px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.text_content_p_t p {
  font-family: var(--font-family-roboto-serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--gray-light-o-site);
  position: relative;
  margin-bottom: 30px;
}

.text_content_p_t p a {
  color: var(--gray-light-o-site);
  font-weight: 600;
  text-decoration: none;
  transition: all 300ms ease-in-out;
}

.text_content_p_t p a:hover {
  color: var(--yellow-light-site);
  text-decoration: underline;
}

/* --- responsive terms --- */

@media (max-width: 767px) {
  .privacy_text {
      padding-top: 50px;
      padding-bottom: 100px;
  }

  .img_content_p_t {
      width: 100%;
      max-width: 400px;
      height: auto;
      position: relative;
      margin-bottom: 40px;
  }
}

/*--------------------------------
           contact
--------------------------------*/

.form-contact {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid var(--green-light-site);
}

.content-contact {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.form-c {
  width: 100%;
  max-width: 50%;
  height: auto;
  position: relative;
  padding-right: 20px;
  padding-left: 15px;
}

.info-c {
  width: 100%;
  max-width: 50%;
  height: auto;
  position: relative;
  padding-left: 20px;
  padding-right: 15px;
}

.title-form-c {
  width: 100%;
  height: auto;
  display: block;
}

.title-form-c h4 {
  font-family: var(--font-family-roboto-serif);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 2.3px;
  color: var(--gray-light-t-site);
  margin-top: -29px;
}

.title-form-c h2 {
  font-family: var(--font-family-roboto-serif);
  font-weight: 600;
  font-size: 36px;
  color: var(--dark-site);
  position: relative;
  margin-bottom: 60px;
}

.title-form-c h2::after {
  content: '';
  bottom: -20px;
  left: 0px;
  width: 60px;
  height: 2px;
  position: absolute;
  background-color: var(--green-light-site);
}

.title-form-c p {
  font-family: var(--font-family-roboto-serif);
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: var(--gray-light-o-site);
  position: relative;
}

/* --- form and inputs --- */

.input-content {
  width: 100%;
  height: auto;
  position: relative;
}

.label-s label {
  font-family: var(--font-family-roboto-serif);
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  display: inline-block;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.input-form-control {
  width: 100%;
  height: 50px;
  position: relative;
  display: block;
  background: var(--gray-light-org-site);
  border: 1px solid var(--gray-light-r-site);
  border-radius: 0;
  box-shadow: none;
  color: var(--gray-dark-l-site);
  transition: all .5s;
  font-size: 16px;
  font-family: var(--font-family-roboto-serif);
  padding: 12px;
  margin-bottom: 25px;
}

.input-form-control:hover,
.input-form-control:focus,
.input-form-control:active {
  outline: none;
  background: var(--white-site);
}

/* --- style input placeholder --- */

.input-form-control::placeholder {
  color: var(--gray-light-o-site);
  font-weight: 300;
}

.input-form-control::-webkit-input-placeholder {
color: var(--gray-light-o-site);
font-weight: 400;
}

.input-form-control::-moz-placeholder {
color: var(--gray-light-o-site);
font-weight: 400;
opacity: 1;
}

.input-form-control:-moz-placeholder {
color: var(--gray-light-o-site);
font-weight: 400; 
opacity: 1;
}

.input-form-control:-ms-input-placeholder {
color: var(--gray-light-o-site);
font-weight: 400; 
}

.input-form-control:hover,
.input-form-control:focus,
.input-form-control:focus-visible,
.input-form-control:active
{
  border-radius: 0px;
}

/* --- textarea --- */

.textarea {
  height: auto;
  min-height: 200px;
  resize: vertical;
}

/*--- checkbox ---*/

input[type=checkbox] 
{
display: none;
}

.checkmark 
{
top: 0px;
left: 0px;
width: 20px;
height: auto;
max-height: 16px;
padding: 0px 1px;
position: relative;
background-color: var(--white-site);
z-index: 20;
display: inline-block !important;
cursor: pointer;
float: left;
margin-right: 10px;
}

.checkmark:after
{
content: "\f111";
font-family: var(--font-family-font-awesome);
font-size: 20px;
font-weight: 800;
color: var(--gray-site);
float: left;
}

/* The container */

.input_checkbox {
display: inline-block;
position: relative;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
line-height: 18px;
margin-bottom: 25px;
}

.input_checkbox input {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
}

.input_checkbox:hover input ~ .checkmark {
background-color: var(--white-site);
}

.input_checkbox input:checked ~ .checkmark:after {
content: "\f058";
font-weight: 800;
color: var(--yellow-site);
}

.input_checkbox a {
color: var(--dark-site);
font-size: 18px;
line-height: 18px;
font-weight: 700;
font-family: var(--font-family-roboto-serif);
text-decoration: none; 
position: relative;
display: table !important;
cursor: pointer;
margin-top: 0px;
}

.input_checkbox a:hover {
text-decoration: underline;
}

.checkmark,
.input_checkbox a {
vertical-align: middle;
}

/* --- btn send --- */

.btn-send {
  background: var(--dark-site)
}

/* --- info data --- */

.info-data {
  width: 100%;
  height: auto;
  position: relative;
}

.info-data .item-info-data {
  width: 100%;
  height: auto;
  padding-left: 70px;
  margin-top: 40px;
  position: relative;
}

.info-data .item-info-data i {
  top: 1px;
  left: 0px;
  color: var(--dark-site);
  font-size: 50px;
  position: absolute;
}

.info-data .item-info-data h3 {
  width: 100%;
  height: auto;
  font-family: var(--font-family-roboto-serif);
  font-size: 24px;
  line-height: 24px;
  position: relative;
  margin-bottom: 30px;
}

.info-data .item-info-data p {
  width: 100%;
  font-family: var(--font-family-roboto-serif);
  font-size: 16px;
  line-height: 28px;
  color: var(--gray-light-o-site);
  height: auto;
  position: relative;
}

.info-data .item-info-data p > a {
  font-family: var(--font-family-roboto-serif);
  color: var(--gray-light-o-site);
  text-decoration: none;
}

.info-data .item-info-data p > a:hover {
  text-decoration: underline;
}

/* --- responsive form contact --- */

@media (max-width: 767px) {

  .form-contact {
      padding-top: 60px;
      padding-bottom: 60px;
  }
  
  .form-c {
      max-width: 100%;
      padding-right: 10px;
      padding-left: 10px;
  }
  
  .info-c {
      margin-top: 50px;
      max-width: 100%;
      padding-left: 0px;
      padding-right: 0px;
  }

  .title-form-c {
      width: 100%;
      height: auto;
      display: block;
  }
  
  .title-form-c h4 {
      text-align: center;
  }
  
  .title-form-c h2 {
      text-align: center;
  }
  
  .title-form-c h2::after {
      left: 50%;
      transform: translateX(-50%);
  }
  
  .title-form-c p {
      text-align: center;
  }

  .info-data .item-info-data {
      padding-left: 0px;
      text-align: center;
  }
  
  .info-data .item-info-data i {
      top: 0px;
      left: 0px;
      position: relative;
      margin: 0 auto;
  }
  
}

/*-----------------------------------------
                style Notify
-----------------------------------------*/

.ui-pnotify
{
    right: 36px !important;
    top: 46px !important;
 }

@media screen and (max-width: 575px)
{
  .ui-pnotify
  {
      right: 50% !important;
      top: 10px !important;
      transform: translateX(50%) !important;
  }

}

/*---------------------------------------
			     google recaptcha
---------------------------------------*/

.grecaptcha-badge
{
   display: none !important;
}

/*----------------------------------------------
                end styles
----------------------------------------------*/