body {
  padding-top: 110px;
}

.navbar {
  width: 100vw;
  padding: 10px 17px;
  position: fixed;
  top: 0;
  background: #ffffff;
  -webkit-box-shadow: rgba(17, 12, 46, 0.03) 0px 48px 100px 0px;
          box-shadow: rgba(17, 12, 46, 0.03) 0px 48px 100px 0px;
  z-index: 100;
}

.navbar .navbarBox {
  position: relative;
}

.about {
  width: 100%;
  height: auto;
  min-height: 35vw;
  background: url("../img/bg1.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.about .aboutContent {
  background: #ffffff66;
  -webkit-backdrop-filter: saturate(100%) blur(20px);
          backdrop-filter: saturate(100%) blur(20px);
  margin: 60px 12px;
  padding: 2rem 5rem;
}
@media screen and (min-width: 769px) {
  .navbar {
    height: 190px;
  }	
  .gtlogo {
    height: 180px;
  }
}

@media screen and (max-width: 768px) {
  .navbar {
    height: 130px;
  }
  .gtlogo {
    height: 120px;
  }
  .about .aboutContent {
    padding: 2rem;
  }
}

.about .aboutContent h1 {
  color: #329578;
}

.about .aboutContent p {
  color: #0E2A18;
  line-height: 2.1rem;
  text-align: justify;
  margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  .about .aboutContent p {
    text-align: left;
  }
}

.navBlock {
  list-style: none;
  margin: 1.2rem auto;
  padding: 0;
}

.navBlock li {
  margin: 0 0.8rem;
  border-radius: 99rem;
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}

.navBlock li:hover {
  background: #f2f2f2;
}

.navBlock li a {
  text-decoration: none;
  color: #034B36;
  padding: 1rem 2rem;
  display: block;
}

#products .productCard {
  display: block;
  width: 100%;
  height: 460px;
  background: #034B36;
  border: 1px solid #32E1AD;
  margin: 12px 0;
  padding: 30px;
  position: relative;
  text-decoration: none;
  overflow: hidden;
}

#products .productCard.p1 {
  background: url("../img/p1.png");
  background-size: cover;
}

#products .productCard.p2 {
  background: url("../img/p2.png");
  background-size: cover;
}

#products .productCard.p3 {
  background: url("../img/p3.png");
  background-size: cover;
  background-position: center;
}

#products .productCard::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: grayscale(1);
          backdrop-filter: grayscale(1);
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
  z-index: 0;
}

#products .productCard::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(247, 247, 247, 0)), to(#3a3a3a59));
  background: linear-gradient(180deg, rgba(247, 247, 247, 0) 0%, #3a3a3a59 100%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 1;
}

#products .productCard:hover::after {
  -webkit-backdrop-filter: grayscale(0);
          backdrop-filter: grayscale(0);
}

#products .productCard:hover::before {
  -webkit-transform: translateY(300px);
          transform: translateY(300px);
}

#products .productCard:hover .productTitle {
  color: #ffffff;
}

#products .productCard .productTitle {
  z-index: 1;
  font-size: 20px;
  margin-bottom: 0;
  color: #32E1AD;
}

.productsInner {
  position: relative;
}

.productsInner:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 300px;
  background: url("../img/bg4.png");
  background-size: cover;
  background-position: center bottom;
  z-index: 100;
  -webkit-transform: translateY(120px);
          transform: translateY(120px);
}

.productsInner .productsInnerBlock {
  margin-bottom: 120px;
}

.productsInner .productsInnerBlock p {
  line-height: 26px;
}

.productsInner .productInnerCard {
  width: 100%;
  height: 100%;
  min-height: 550px;
  background: #034B36;
  border: 1px solid #32E1AD;
}

.productsInner .productInnerCard.p1 {
  background: url("../img/p1.png");
  background-size: cover;
  background-position: center;
}

.productsInner .productInnerCard.p2 {
  background: url("../img/p2.png");
  background-size: cover;
  background-position: center;
}

.productsInner .productInnerCard.p3 {
  background: url("../img/p3.png");
  background-size: cover;
  background-position: 50% 10%;
}

#service {
  min-height: 900px;
  background: url("../img/bg2.png");
  background-size: cover;
  background-position: center bottom;
  position: relative;
}

#service .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

#service .serviceCard {
  background: #ffffffb8;
  -webkit-backdrop-filter: saturate(60%) blur(30px);
          backdrop-filter: saturate(60%) blur(30px);
  height: 100%;
  margin: 4rem 12px 2rem;
  padding: 2rem 5rem;
}

@media screen and (max-width: 768px) {
  #service .serviceCard {
    padding: 2rem;
  }
}

#service .serviceCard h1 {
  color: #329578;
}

#service .serviceCard p {
  line-height: 32px;
}

#service .bannerBtnPrev {
  position: absolute;
  top: 50%;
  left: -60px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
}

@media screen and (max-width: 1435px) {
  #service .bannerBtnPrev {
    left: -45px;
  }
}

@media screen and (max-width: 1235px) {
  #service .bannerBtnPrev {
    display: none;
  }
}

@media screen and (max-width: 900px) {
  #service .bannerBtnPrev {
    display: none;
  }
}

#service .bannerBtnNext {
  position: absolute;
  top: 50%;
  right: -60px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
}

@media screen and (max-width: 1435px) {
  #service .bannerBtnNext {
    right: -42px;
  }
}

@media screen and (max-width: 1235px) {
  #service .bannerBtnNext {
    display: none;
  }
}

@media screen and (max-width: 900px) {
  #service .bannerBtnNext {
    display: none;
  }
}

#partners {
  background: url("../img/bg3.png");
  background-size: cover;
  background-position: center center;
}

#partners .partnersCard {
  border: 1px solid #32E1AD;
  background: #ffffff;
  margin: 1rem 0;
  padding: 30px 15px;
  min-height: 590px;
}

#partners .partnersCard .partnersImg {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}

#partners .partnersCard .partnersContent {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-top: 1rem;
  text-align: justify-all;
  line-height: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 11;
}

#partners .partnersCard .partnersContentAll {
  text-align: justify-all;
  line-height: 30px;
  padding: 12px;
}

#partners .modal-content {
  border: 1px solid #32E1AD;
  border-radius: 0;
}

#footer {
  background: #102618;
  border-bottom: 2px solid #5AC982;
  color: #ffffff;
  font-weight: 100;
}

#footer .info {
  list-style: none;
  padding: 3px;
}

#footer .info li {
  line-height: 35px;
}

#footer .copyright {
  margin: 2rem 0;
  font-weight: 100;
  color: #5AC982;
}


.gtTitle {
  color: #1d644f;
}

.gtTitle2 {
  color: #52C6A4;
  font-weight: 300;
}

.gtSubtitle {
  color: #4fb173;
  font-weight: 600;
  line-height: 22px !important;
}

.gtbtn {
  text-decoration: none;
  color: #5AC982;
  font-weight: 500;
  padding: 1rem 2rem;
  border-radius: 99rem;
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}

.gtbtn:hover {
  background: #f2f2f2;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.gtbtn:focus {
  -webkit-box-shadow: 0 0 0 0.1rem #3aff371c;
          box-shadow: 0 0 0 0.1rem #3aff371c;
}

.gtbtnDownload {
  text-decoration: none;
  background: #52C6A4;
  color: #ffffff;
  font-weight: 500;
  padding: 1rem 2.2rem;
  border-radius: 99rem;
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 20px;
}

.gtbtnDownload:hover {
  background: #f2f2f2;
  color: #000000;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.gtbtnContact {
  text-decoration: none;
  background: #52C6A4;
  color: #ffffff;
  font-weight: 500;
  padding: 1rem 2.2rem;
  border-radius: 99rem;
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
}

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

.gtbtnContact:hover {
  background: #f2f2f2;
  color: #000000;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.gtfavicon {
  width: 35px;
  height: 35px;
}

.owl-theme .owl-dots .owl-dot span {
  background: #ffffff;
}

.owl-theme .owl-dots .owl-dot.active span {
  background: #00875e;
}
/*# sourceMappingURL=index.css.map */