body {
  margin: 0;
  font-family: "GoogleSansRegular";
  font-size: 16px;
}

a:hover {
  text-decoration: none;
}

:root {
  --orange-color: #5fbfec;
  --Green-color: rgb(6, 123, 98);
  --blue-color: rgba(35, 95, 149, 1);
  --white-color: rgba(255, 255, 255, 1);
  --yellow-color: #eca540;
  --light-green-color: rgba(7, 171, 177, 1);
  --dark-blue--color: rgba(18, 57, 75, 1);
  --black-color: rgba(61, 61, 61, 1);
  --light-blackColor: #7d7f80;
  --red-color: rgba(228, 60, 92, 1);
  --light-red-color: rgba(253, 239, 242);
  --darkBlack-color: rgba(21, 21, 21, 1);
  --purple-color: rgba(103, 84, 152, 1);
  --light-purple-color: rgba(148, 136, 180, 1);
  --main-color: #82ab28;
  --light-main-color: rgba(229, 246, 228, 0.7);
  --link-hover-color: #f97d0f;
}

p a[href],
li > a[href],
h3 > a[href] {
  color: var(--blue-color);
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
p a[href]:hover,
li > a[href]:hover,
h3 > a[href]:hover {
  color: var(--yellow-color);
}
.noul{
  padding-left: 0;
  list-style: none;
}
main {
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.row-layout {
  display: flex;
}
ul.row-layout{
  margin-bottom: 0;
}

@media screen and (max-width: 1080px) {
  .row-layout {
    flex-direction: column;
  }
}
@media screen and (min-width: 1081px) {
  .row-layout {
    flex-direction: row;
  }
}
/**********************************************headLayout********************************************************/
.headLayout {
  position: relative;
  width: 100%;
}

.gotop {
  position: fixed;
  border: 1px solid white;
  background: none;
  height: 40px;
  width: 40px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  bottom: 140px;
  right: 10px;
  z-index: 100;
  box-shadow: 1px 1px 6px 3px rgba(0,0,0,.1);
  cursor: pointer;
  outline: none;
  display: none;
}

.gotop > span {
  font-size: 24px;
  color: #d4d0d0;
}

.topnavi {
  position: fixed;
  width: 100%;
  height: 80px;
  background: #0c0c0c;
  display: none;
  -webkit-animation: topnaishow cubic-bezier(0.85, 0.25, 0.2, 1.5) 0.3s;
  -o-animation: topnaishow cubic-bezier(0.85, 0.25, 0.2, 1.5) 0.3s;
  animation: topnaishow cubic-bezier(0.85, 0.25, 0.2, 1.1) 0.3s;
  z-index: 20;
}

@media screen and (max-width: 1080px) {
  .barmobile {
    position: fixed;
    right: 10px;
    top: 13px;
    width: 2.5em;
    height: 2em;
    z-index: 138;
    cursor: pointer;
  }

  .barmobile svg rect:first-child {
    -webkit-transition: all ease-in-out 0.6s;
    -moz-transition: all ease-in-out 0.6s;
    -ms-transition: all ease-in-out 0.6s;
    -o-transition: all ease-in-out 0.6s;
    transition: all ease-in-out 0.6s;
  }

  .barmobile svg rect:last-child {
    -webkit-transition: all ease-in-out 0.6s;
    -moz-transition: all ease-in-out 0.6s;
    -ms-transition: all ease-in-out 0.6s;
    -o-transition: all ease-in-out 0.6s;
    transition: all ease-in-out 0.6s;
  }

  .mobile-move {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
}
.header-shell {
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
  left: 0;
}

@media screen and (min-width: 1081px) {
  .barmobile {
    display: none;
  }

  /*  .header-shell
    {
      height: 159px;
    }*/
}
.fixed_header-shell {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  /*  background: rgba(255,255,255,1);*/
  -webkit-animation: ease-in-out frombottom 0.5s;
  -o-animation: ease-in-out frombottom 0.5s;
  animation: ease-in-out frombottom 0.5s;
  height: max-content;
  box-shadow: 1px 2px 4px 1px rgba(12, 12, 12, 0.3);
  background: var(--darkBlack-color);
}

.fixed_header-shell .navigation_shell {
  display: none;
}

@keyframes frombottom {
  0% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}


.footer-logo .logo img {
  width: 260px;
  margin-bottom: 15px;
  height: 60px;
}

@media screen and (max-width: 1080px) {
  .header-shell .logo img {
    width: 200px;
    height: 54px;
  }
}
.naviBlock {
  position: relative;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid #ddd;
}

.naviBlock .contact-data > li {
  margin-left: 10px;
}
.naviBlock .contact-data > li a {
  color: var(--black-color)
}
.naviBlock .contact-data > li a:hover {
  color: var(--orange-color);
}
.naviBlock .contact-address::before,
.naviBlock .contact-email::before,
.naviBlock .contact-call::before,
.naviBlock .contact-fax::before {
  color: var(--main-color);
}

.naviBlock .row-layout {
  align-items: center;
  justify-content: space-between;
}

.navigation_title > li {
  cursor: pointer;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.navigation_title > li > a {
  position: relative;
  z-index: 2;
  color: var(--black-color);
}

@media screen and (min-width: 1081px) {
  .navigation_title {
    height: 100%;
  }
}
@media screen and (max-width: 1080px) {
  .navigation_title {
    position: relative;
    flex-direction: column;
    z-index: 10;
    top: 0;
    right: 0;
    width: 300px;
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
    align-items: flex-start;
    padding: 0 20px;
    margin: 40px 0;
  }

  .navigation_title > li {
    width: 100%;
    font-size: 1em;
    padding: 10px 0;
    border-bottom: 1px solid #d4d4d4;
    position: relative;
  }

  .navigation_title > li:first-child {
    border-top: 1px solid #d4d4d4;
  }

  .navigation_title > li > a{
    color: #fff;
  }
  .top-layout{
    flex-direction: row;
  }

  .rotate-angle{
    transform: rotate(90deg);
  }
  .navigation_title > li > span,
  .navi_cont_chtitle > li span {
    position: absolute;
    right: -10px;
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
  }

  .navigation_title > li > span {
    top: 0
  }

  .navi_cont_chtitle,
  .navi_cont_chtitle ul {
    padding-left: 10px;
    list-style: none;
  }

  .navi_cont_chtitle li {
    margin: 10px 0;
  }

  .navi_cont_chtitle > li span {
    top: -5px;
  }

  .navi_cont_chtitle ul {
    display: none;
    list-style: none;
  }

  .navi_cont_chtitle,
  .navi_cont_chtitle ul {
    padding-left: 10px;
    list-style: none;
  }

  .navi_cont_chtitle > li a {
    color: white;
    display: block;
    line-height: 20px;
    padding-right: 10px;
  }
}
.navi_cont_chtitle li {
  position: relative;
}

@media screen and (min-width: 1081px) {
  .navigation_title > li {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 20px 10px 20px;
     margin-bottom: 0;
  }

  .navigation_title > li > a {
    position: relative;
    z-index: 1;
    -webkit-transition: all ease 0.6s;
    -moz-transition: all ease 0.6s;
    -ms-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    transition: all ease 0.4s;
    height: 100%;
    /* vertical-align: text-bottom; */
    display: flex;
    align-items: center;
    padding: 5px 0;
    overflow: hidden;
    white-space: nowrap;
    /* text-transform: uppercase;*/
    /*    font-family: "Oswald";*/
    --line: 0;
    font-weight: bold;
  }
  .navigation_title > li > a::before {
    position: absolute;
    content: "";
    width: var(--line);
    background: var(--white-color);
    height: 1px;
    bottom: 0;
    -webkit-transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
  }

  .navigation_title > li > a:hover {
    --line: 100%;
  }

  .navigation_title > li > span {
    position: absolute;
    right: 0;
    -webkit-transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
  }


  .navigation_title > li:hover > span {
    -webkit-transform: rotateZ(180deg);
    -moz-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
    -o-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
  }


  .navigation_title > li > a::after {
    position: absolute;
    content: "";
    background: var(--main-color);
    width: 0;
    height: 1px;
    z-index: 0;
    -webkit-transition: all ease 0.6s;
    -moz-transition: all ease 0.6s;
    -ms-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    transition: all ease 0.6s;
  }

  .navigation_title > li > a::after {
    bottom: 0;
    left: 0;
  }

  .navigation_Solutions {
    position: absolute;
    top: 80%;
    left: 0;
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 1;
    padding-top: 20px;
    /*opacity: 0;*/
  }

  .fixed_header-shell .navigation_Solutions {
    top: 90px;
  }

  .navigation_content {
    position: relative;
    box-shadow: 1px 4px 6px 2px rgba(90, 90, 90, 0.6);
    background: var(--white-color);
    -webkit-transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 1.4s;
    display: flex;
    justify-content: center;
    width: 88%;
    max-width: 1320px;
    padding: 20px;
    overflow-y: auto;
    max-height: 90vh;

  }

  .navi_cont_chtitle {
    position: relative;
    display: grid;
    padding-bottom: 10px;
    grid-template-columns: repeat(auto-fill, 22%);
    justify-content: space-between;
    width: 100%;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
  }

  .navi_cont_chtitle span {
    position: absolute;
    right: -2px;
    font-size: 20px;
    top: 5px;
    width: 20px;
    height: 20px;
    color: #969894;
    -webkit-transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .navi_cont_chtitle ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 10px;
  }

  .navi_cont_chtitle > li {
    position: relative;
    margin: 10px 0;
  }

  .navi_cont_chtitle > li > ul > li ul {
    position: relative;
    display: none;
    margin-left: 10px;
  }

  .navi_cont_chtitle > li > a {
    display: block;
    padding: 6px 0;
    border-bottom: 1px solid #e7e7e7;
    -webkit-transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
    margin-bottom: 5px;
  }

  .navi_cont_chtitle > li > a[href]:hover {
    color: var(--orange-color);
  }

  .navi_cont_chtitle ul > li {
    position: relative;
     margin-bottom: 3px;
  }

  .navi_cont_chtitle ul > li a {
    display: block;
    line-height: 20px;
    padding: 6px 0;
    -webkit-transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
    color: var(--black-color);
  }

  .navi_cont_chtitle li > a[href]:hover {
    -webkit-transform: translateX(2px);
    -moz-transform: translateX(2px);
    -ms-transform: translateX(2px);
    -o-transform: translateX(2px);
    transform: translateX(2px);
    color: var(--main-color);
  }

  .navi_cont_chtitle > li {
    -webkit-transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
    position: relative;
  }
}
@media screen and (min-width: 1081px) and (max-width: 1440px) {
  .navi_cont_chtitle li {
    font-size: 0.7em;
  }

  .navi_cont_chtitle ul > li {
    max-width: 230px;
  }
}
@media screen and (max-width: 1080px) {
  .mobile-nav {
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
    position: fixed;
    top: 0;
    right: 0;
    background: #555;
    height: calc(100vh);
    overflow-y: auto;
  }

  .mobile-move {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
}
/**********************************************headLayout********************************************************/
/*********************************head search***************************************/
.search-layout {
  position: relative;
  z-index: 1000;
}

.search-open {
  position: relative;
  border: 1px solid var(--black-color);
  padding: 10px;
  width: 35px;
  height: 35px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  cursor: pointer;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

.searchForm-pey {
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.searchForm-pey > span {
  margin: 20px;
  background: var(--yellow-color);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: var(--white-color);
  padding: 10px;
  cursor: pointer;
}
@media screen and (max-width: 1080px) {
  .searchForm-pey > span {
    display: none;
  }
}
.searchForm {
  /* background: var(--white-color);
   border: 1px solid rgba(211,211,211,1);*/
  padding: 10px 0 10px 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.search-platform {
  position: relative;
  padding: 0;
  background: var(--white-color);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--yellow-color);
}

@media screen and (min-width: 1081px) {
  .searchForm {
    position: absolute;
    top: 90%;
    right: 20px;
    display: none;
  }
}
.search-layout:hover .searchForm-pey {
  display: block;
}

.search-platform > select {
  border: none;
  outline: none;
  color: var(--black-color);
}

.search-platform > input {
  position: relative;
  padding: 10px 20px;
  border: 1px solid var(--main-color);
  outline: none;
}

.search-platform > button {
  position: relative;
  outline: none;
  color: var(--white-color);
  cursor: pointer;
  border: none;
  background: var(--yellow-color);
  width: 60px;
  font-size: 1.2em;
}

.search-platform > input {
  position: relative;
  padding: 10px 20px;
  outline: none;
  border: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  width: 300px;
}

.search-platform > input::-webkit-input-placeholder {
  color: rgba(19, 19, 19, 0.4);
}

.search-platform > input::-moz-placeholder {
  color: rgba(19, 19, 19, 0.4);
}

.search-platform > input:-ms-input-placeholder {
  color: rgba(19, 19, 19, 0.4);
}

.search-platform > span {
  position: relative;
  border: none;
  background: white;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
  padding: 10px;
  font-size: 18px;
  color: var(--back-color);
  display: flex;
  width: 42px;
  height: 42px;
  justify-content: center;
  align-items: center;
}

.header-search > .search-close {
  display: none;
}

@media screen and (min-width: 1081px) {
  .search-platform > input {
    width: 300px;
  }
}
/*********************************head search***************************************/
/**************************************footer*******************************************/
.main-four + .footerLayout{
  padding-top: 120px;
  margin-top: 0;
}
.footerLayout {
  position: relative;
  width: 100%;
  margin-top: 60px;
  border-top: 1px solid #ddd;
}
@media screen and (max-width: 1080px) {
  .footerLayout {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.bottom_message {
  position: relative;
  display: grid;
  padding: 50px 0 20px 0;
  margin: auto;
  grid-gap: 20px;
  color: var(--black-color);
}

.bottom_message a:hover {
  color: var(--main-color);
}

@media screen and (min-width: 1081px) {
  .bottom_message {
    grid-template-columns: 25% 15% 30% 20%;
    justify-content: space-between;
  }
}
.share-box{
  margin-bottom: 25px;
}
.share-box a{
  display: inline-block;
  margin-right: 15px;
}
.cap-title {
  position: relative;
  width: 100%;
  font-size: 1.25em;
  padding-bottom: 10px;
  font-weight: bold;
}

.cap-title > a {
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  color: var(--black-color);
}

.cap-title > a:hover {
  color: var(--main-color);
}

.cap-title::after {
  position: absolute;
  width: 100%;
  height: 1px;
  content: "";
  /*    background: rgba(255,255,255,1);*/
  left: 0;
  bottom: 0;
}

.contact-data {
  position: relative;
  list-style: none;
  padding-left: 0;
}

.contact-data > li {
  position: relative;
  padding-left: 35px;
  list-style: none;
}
.header-shell .contact-data{
  margin-top: 10px;
}
.header-shell .contact-data > li:last-child{
  margin-bottom: 10px;
}
.contact-data > li a {
  color: var(--black-color);
}
.contact-data > li a:hover {
  color: var(--main-color);
}

.contact-data a:hover {
  color: var(--main-color);
}

.contact-address::before,
.contact-email::before,
.contact-call::before,
.contact-fax::before {
  position: absolute;
  content: "";
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  font-family: "icomoon";
  width: 30px;
  height: 30px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -5px;
  color: var(--black-color);
}

.contact-address::before {
  content: "\e904";
}

.contact-email::before {
  content: "\e931";
}

.contact-call::before {
  content: "\e980";
}

.contact-fax::before {
  content: "\e942";
}

.bottom_median {
  text-align: center;
  padding: 20px;
  color: rgba(40, 40, 40, 0.9);
  border-top: 1px solid #ddd;
}


.footer-link {
  position: relative;
  list-style: none;
  padding-left: 0;
}

.footer-link a {
  color: var(--black-color) !important;
  margin: 10px 0;
  display: block;
}

.footer-link a:hover {
  color: var(--orange-color) !important;
}

.footer-form {
  position: relative;
  margin: 20px 0;
}

.footer-form > div {
  position: relative;
  /* background:var(--white-color);*/
  width: 100%;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  /* border: 1px solid rgb(181 185 187);*/
  box-shadow: inset 0.2rem 0.2rem 0.5rem #1b2329, inset -0.2rem -0.2rem 0.5rem #6a8292;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.footer-form > div input {
  position: relative;
  border: none;
  width: 70%;
  outline: none;
  padding: 12px 20px;
  background: none;
  color: var(--black-color);
}

.footer-form > div input::-moz-placeholder {
  color: var(--black-color);
}

.footer-form > div input:-ms-input-placeholder {
  color: var(--black-color);
}

.footer-form > div input::placeholder {
  color: var(--black-color);
}

.footer-form > div button {
  position: relative;
  width: 30%;
  border: none;
  background: var(--main-color);
  color: var(--white-color);
  cursor: pointer;
  /*    box-shadow: -1px 0 2px 3px rgb(165 162 162);*/
}

.bottom_message .header-contact {
  justify-content: flex-start;
}

.footer-aboutTitle {
  position: relative;
  padding-left: 60px;
  font-weight: 400;
  padding-bottom: 5px;
  color: var(--black-color);
  margin: 40px 0;
  display: block;
  width: max-content;
}

.footer-aboutTitle::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  left: 0;
  top: 0;
}

.footer-logo .footer-aboutTitle::after {
  background: url("../images/bottom-people.png");
  -webkit-background-size: cover;
  background-size: cover;
}

.footer-aboutTitle::before {
  position: absolute;
  content: "";
  background: var(--black-color);
  height: 1px;
  width: calc(100% - 60px);
  right: 0;
  bottom: 0;
}

a.footer-aboutTitle::after {
  background: url("../images/bottom-search.png");
  -webkit-background-size: cover;
  background-size: cover;
  width: 40px;
  height: 40px;
}

.footer-aboutTitle.contact::after {
  background: url("../images/bottom-person.png");
  -webkit-background-size: cover;
  background-size: cover;
}

.cap-mess li {
  position: relative;
  margin: 10px 0;
  display: flex;
}

.cap-mess li:last-child {
  margin: 15px 0 0 0;
}

.cap-mess a:hover {
  color: var(--light-blue);
}

@media screen and (min-width: 1081px) {
  .footer-logo h3,
  .footer-aboutTitle {
    font-size: 1.4em;
  }
}
/**************************************footer*******************************************/
@media screen and (min-width: 1081px) {
  .header-contact {
    justify-content: space-between;
  }
}
.header-contact {
  position: relative;
  display: flex;
  list-style: none;
  padding-left: 0;
}

.header-contact > li {
 margin-right: 15px;
}

.header-contact > li > a {
  color: var(--main-color) !important;
  -webkit-transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -ms-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
  transition: all ease 0.6s;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  /*  background:var(--main-color);*/
  padding: 5px;
  border: 1px solid var(--main-color);
}

.header-contact > li > a:hover {
  background: var(--yellow-color);
   border: 1px solid  var(--yellow-color);
  color: var(--white-color) !important;
}

.center-layout {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/************************************btnWord****************************************/
.btnWord {
  border: none;
  outline: none;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  padding: 5px 30px;
  /*height: 40px;*/
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--white-color);
}

.btnWord > span {
  color: white;
  display: block;
  position: relative;
}

.btnWord:hover > span:nth-child(odd) {
  -webkit-animation: word_to_up cubic-bezier(0.85, 0.2, 0.25, 1.2) 0.4s;
  -o-animation: word_to_up cubic-bezier(0.85, 0.2, 0.25, 1.2) 0.4s;
  animation: word_to_up cubic-bezier(0.85, 0.2, 0.25, 1.2) 0.4s;
}

.btnWord:hover > span:nth-child(even) {
  -webkit-animation: wordtodown cubic-bezier(0.85, 0.2, 0.25, 1.2) 0.4s;
  -o-animation: wordtodown cubic-bezier(0.85, 0.2, 0.25, 1.2) 0.4s;
  animation: wordtodown cubic-bezier(0.85, 0.2, 0.25, 1.2) 0.4s;
}

@-webkit-keyframes word_to_up {
  0% {
    -webkit-transform: translate3d(0, -100px, 0);
    -moz-transform: translate3d(0, -100px, 0);
    -ms-transform: translate3d(0, -100px, 0);
    -o-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes word_to_up {
  0% {
    -webkit-transform: translate3d(0, -100px, 0);
    -moz-transform: translate3d(0, -100px, 0);
    -ms-transform: translate3d(0, -100px, 0);
    -o-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes wordtodown {
  0% {
    -webkit-transform: translate3d(0, 100px, 0);
    -moz-transform: translate3d(0, 100px, 0);
    -ms-transform: translate3d(0, 100px, 0);
    -o-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wordtodown {
  0% {
    -webkit-transform: translate3d(0, 100px, 0);
    -moz-transform: translate3d(0, 100px, 0);
    -ms-transform: translate3d(0, 100px, 0);
    -o-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.btnWord:hover > span:nth-child(2) {
  animation-delay: 0.01s;
}

.btnWord:hover > span:nth-child(3) {
  animation-delay: 0.1s;
}

.btnWord:hover > span:nth-child(4) {
  animation-delay: 0.15s;
}

.btnWord:hover > span:nth-child(5) {
  animation-delay: 0.2s;
}

.btnWord:hover > span:nth-child(6) {
  animation-delay: 0.25s;
}

.btnWord:hover > span:nth-child(7) {
  animation-delay: 0.3s;
}

.btnWord:hover > span:nth-child(8) {
  animation-delay: 0.35s;
}

.btnWord:hover > span:nth-child(9) {
  animation-delay: 0.4s;
}

.btnWord:hover > span:nth-child(10) {
  animation-delay: 0.45s;
}

.btnWord:hover > span:nth-child(11) {
  animation-delay: 0.5s;
}

.btnWord:hover > span:nth-child(12) {
  animation-delay: 0.55s;
}

.btnWord:hover > span:nth-child(13) {
  animation-delay: 0.6s;
}

.btnWord:hover > span:nth-child(14) {
  animation-delay: 0.65s;
}

/************************************btnWord****************************************/
/****************************************inquiryForm*******************************************/
.inquiry-form {
  position: relative;
  width: 100%;
}
.inquiry-form .row > div {
  margin-bottom: 10px;
}
.inquiry-form .row .row{
  margin-left: -4px;
  margin-right: -4px;
}
.inquiry-form .row .row>div{
   padding-left: 4px;
  padding-right: 4px;
}
.inquiry-form > div {
  position: relative;
}

.inquiry-form img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 38px;
  width: 110px;
  border: 1px solid #ddd;
  cursor: pointer;
}

.inquiry-form input,
.inquiry-form textarea,
.inquiry-form select {
  position: relative;
  padding: 10px;
  outline: none;
  border: 1px solid rgba(18, 18, 18, 0.1);
  width: 100%;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background: #eef2f5;
  font-family: "GoogleSansRegular";
}

.inquiry-form button {
  position: relative;
  width: max-content;
  height: auto;
  cursor: pointer;
  padding: 10px 80px;
  border: 1px solid var(--yellow-color);
  background: var(--yellow-color);
  font-size: 1.1em;
  margin: 20px 0;
}

.inquiry-form input::-webkit-input-placeholder,
.inquiry-form textarea::-webkit-input-placeholder {
  color: #bebebe;
  font-size: 1em;
  font-family: "GoogleSansRegular";
}

.inquiry-form input::-moz-placeholder,
.inquiry-form textarea::-moz-placeholder {
  color: #bebebe;
  font-size: 1em;
  font-family: "GoogleSansRegular";
}

.inquiry-form input::-ms-input-placeholder,
.inquiry-form textarea::-ms-input-placeholder {
  color: #bebebe;
  font-size: 1em;
  font-family: "GoogleSansRegular";
}

/****************************************inquiryForm*******************************************/
/********************************simplyBtn*****************************************/
.simplyBtn {
  position: relative;
  border: 1px solid var(--red-color);
  background: var(--red-color);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding: 5px 20px;
  color: var(--white-color);
  display: block;
  width: max-content;
}

/********************************simplyBtn*****************************************/
/**********************************************************************new-nuka-btn*********************************************************************************/
/* Nuka */
.new-nuka-btn {
  position: relative;
  max-width: 200px;
  height: 50px;
  color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  text-transform: uppercase;
  border: 1px solid var(--yellow-color);
  background: var(--yellow-color);
  --bckgroundHeight: 0;
  z-index: 10;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  overflow: hidden;
}
.new-nuka-btn::before {
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  height: var(--bckgroundHeight);
  background: linear-gradient(to right, rgba(255, 255, 255, .9), rgba(255, 255, 255, .2));
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.2s;
  z-index: -1;
}
.new-nuka-btn:hover {
  --bckgroundHeight: 100%;
   color: var(--yellow-color);
  background: none;
  backdrop-filter: blur(4px);
}

/**********************************************************************new-nuka-btn*********************************************************************************/
.gridrow-layout {
  position: relative;
  display: grid;
}

@media screen and (min-width: 1081px) {
  .gridrow-layout {
    grid-template-columns: 24% 72%;
    place-content: space-between;
  }
}
/**************************************************************side-navi*******************************************************************/
.side-navi-block {
  position: relative;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  border: 1px solid rgba(200, 200, 200, 0.3);
  overflow: hidden;
}

.title-side {
  display: block;
  font-size: 1.17em;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  position: relative;
  font-weight: 100;
  color: #3c6a36;
  padding: 15px 20px 10px 20px;
  margin-top: 10px;
}
.title-side::before {
  position: absolute;
  content: "";
  background: #ddd;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
}

@media screen and (min-width: 1081px) {
  .title-side {
    font-size: 1.4em;
  }
}
.side-navi {
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
  list-style: none;
}

.side-navi > li {
  position: relative;
  margin: 5px 0;
}

.side-navi > li > a {
  position: relative;
  padding: 5px 10px;
  display: block;
  /* line-height: 20px;*/
  width: 100%;
  color: var(--black-color);
}

.side-navi > li span {
  position: absolute;
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 4px;
  right: 0;
  cursor: pointer;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.side-navi > li > span {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  right: 0;
  width: 28px;
  height: 28px;
}

.side-navi > li > ul {
  padding-left: 20px;
}

.side-navi > li ul {
  position: relative;
  display: none;
  padding-left: 10px;
  list-style: none;
  margin-bottom: 5px;
}

.side-navi > li > ul li {
  position: relative;
  margin-bottom: 0;
}

.side-navi > li > ul li a {
  position: relative;
  padding: 6px 10px;
  display: block;
  line-height: 24px;
  padding-right: 20px;
}

.side-navi-block .inquiry-form > div {
  margin-bottom: 0;
}
.side-navi-block .inquiry-form > .row > .col-md-4,
.side-navi-block .inquiry-form > .row > .col-md-6 {
  width: 100% !important;
}
.side-navi-block .inquiry-form .verify.col-md-6 {
  width: 100% !important;
}

.inquiry-form  .checkright,.inquiry-form  .checkerror{
  left: auto !important;
  right: 125px !important;
  bottom: 5px;
}


.rotate_angle {
  -webkit-transform: rotateZ(90deg);
  -moz-transform: rotateZ(90deg);
  -ms-transform: rotateZ(90deg);
  -o-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}

.side-navi-block .inquiry-form {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding: 0 20px;
  overflow: hidden;
}

/**************************************************************side-navi*******************************************************************/
/*********************************************simplyAnimate**************************************************/
.simplyAnimateTop {
  -webkit-animation: simplyRunTop ease-in-out 1.2s forwards;
  -o-animation: simplyRunTop ease-in-out 1.2s forwards;
  animation: simplyRunTop 2s ease-in-out forwards;
}

@keyframes simplyRunTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30%);
    -moz-transform: translateY(30%);
    -ms-transform: translateY(30%);
    -o-transform: translateY(30%);
    transform: translateY(10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes simplyRunTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30%);
    -moz-transform: translateY(30%);
    -ms-transform: translateY(30%);
    -o-transform: translateY(30%);
    transform: translateY(10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
.simplyAnimateRight {
  -webkit-animation: simplyRunRight ease-in-out 1.2s forwards;
  -o-animation: simplyRunRight ease-in-out 1.2s forwards;
  animation: simplyRunRight 2s ease-in-out forwards;
}

@keyframes simplyRunRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20%);
    -moz-transform: translateX(-20%);
    -ms-transform: translateX(-20%);
    -o-transform: translateX(-10%);
    transform: translateX(-10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes simplyRunRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20%);
    -moz-transform: translateX(-20%);
    -ms-transform: translateX(-20%);
    -o-transform: translateX(-10%);
    transform: translateX(-10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
.simplyAnimateLeft {
  -webkit-animation: simplyRunLeft ease-in-out 1.2s forwards;
  -o-animation: simplyRunLeft ease-in-out 1.2s forwards;
  animation: simplyRunLeft 2s ease-in-out forwards;
}

@keyframes simplyRunLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20%);
    -moz-transform: translateX(20%);
    -ms-transform: translateX(20%);
    -o-transform: translateX(20%);
    transform: translateX(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes simplyRunLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20%);
    -moz-transform: translateX(20%);
    -ms-transform: translateX(20%);
    -o-transform: translateX(20%);
    transform: translateX(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes wordEffectLeft {
  0% {
    /*  opacity: 0;*/
    -webkit-transform: translateX(20%);
    -moz-transform: translateX(20%);
    -ms-transform: translateX(20%);
    -o-transform: translateX(20%);
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes wordEffectLeft {
  0% {
    /*        opacity: 0;*/
    -webkit-transform: translateX(20%);
    -moz-transform: translateX(20%);
    -ms-transform: translateX(20%);
    -o-transform: translateX(20%);
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
.wordEffect {
  position: relative;
}
.wordEffect span {
  position: relative;
  display: inline-block;
}
.wordEffect span:nth-child(1) {
  -webkit-animation: wordEffectLeft 0.2s linear 0.05s forwards;
  -o-animation: wordEffectLeft 0.2s linear 0.05s forwards;
  animation: wordEffectLeft 0.2s linear 0.05s forwards;
}
.wordEffect span:nth-child(2) {
  -webkit-animation: wordEffectLeft 0.2s linear 0.1s forwards;
  -o-animation: wordEffectLeft 0.2s linear 0.1s forwards;
  animation: wordEffectLeft 0.2s linear 0.1s forwards;
}
.wordEffect span:nth-child(3) {
  -webkit-animation: wordEffectLeft 0.2s linear 0.15s forwards;
  -o-animation: wordEffectLeft 0.2s linear 0.15s forwards;
  animation: wordEffectLeft 0.2s linear 0.15s forwards;
}
.wordEffect span:nth-child(4) {
  -webkit-animation: wordEffectLeft 0.2s linear 0.2s forwards;
  -o-animation: wordEffectLeft 0.2s linear 0.2s forwards;
  animation: wordEffectLeft 0.2s linear 0.2s forwards;
}
.wordEffect span:nth-child(5) {
  -webkit-animation: wordEffectLeft 0.2s linear 0.25s forwards;
  -o-animation: wordEffectLeft 0.2s linear 0.25s forwards;
  animation: wordEffectLeft 0.2s linear 0.25s forwards;
}
.wordEffect span:nth-child(6) {
  -webkit-animation: wordEffectLeft 0.2s linear 0.3s forwards;
  -o-animation: wordEffectLeft 0.2s linear 0.3s forwards;
  animation: wordEffectLeft 0.2s linear 0.3s forwards;
}
.wordEffect span:nth-child(7) {
  -webkit-animation: wordEffectLeft 0.2s linear 0.35s forwards;
  -o-animation: wordEffectLeft 0.2s linear 0.35s forwards;
  animation: wordEffectLeft 0.2s linear 0.35s forwards;
}
.wordEffect span:nth-child(8) {
  -webkit-animation: wordEffectLeft 0.2s linear 0.4s forwards;
  -o-animation: wordEffectLeft 0.2s linear 0.4s forwards;
  animation: wordEffectLeft 0.2s linear 0.4s forwards;
}
.wordEffect span:nth-child(9) {
  -webkit-animation: wordEffectLeft 0.2s linear 0.45s forwards;
  -o-animation: wordEffectLeft 0.2s linear 0.45s forwards;
  animation: wordEffectLeft 0.2s linear 0.45s forwards;
}
.wordEffect span:nth-child(10) {
  -webkit-animation: wordEffectLeft 0.2s linear 0.5s forwards;
  -o-animation: wordEffectLeft 0.2s linear 0.5s forwards;
  animation: wordEffectLeft 0.2s linear 0.5s forwards;
}
.wordEffect span:nth-child(11) {
  -webkit-animation: wordEffectLeft 0.2s linear 0.55s forwards;
  -o-animation: wordEffectLeft 0.2s linear 0.55s forwards;
  animation: wordEffectLeft 0.2s linear 0.55s forwards;
}
.wordEffect span:nth-child(12) {
  -webkit-animation: wordEffectLeft 0.2s linear 0.6s forwards;
  -o-animation: wordEffectLeft 0.2s linear 0.6s forwards;
  animation: wordEffectLeft 0.2s linear 0.6s forwards;
}
.wordEffect span:nth-child(13) {
  -webkit-animation: wordEffectLeft 0.2s linear 0.65s forwards;
  -o-animation: wordEffectLeft 0.2s linear 0.65s forwards;
  animation: wordEffectLeft 0.2s linear 0.65s forwards;
}
.wordEffect span:nth-child(14) {
  -webkit-animation: wordEffectLeft 0.2s linear 0.7s forwards;
  -o-animation: wordEffectLeft 0.2s linear 0.7s forwards;
  animation: wordEffectLeft 0.2s linear 0.7s forwards;
}
.wordEffect span:nth-child(15) {
  -webkit-animation: wordEffectLeft 0.2s linear 0.75s forwards;
  -o-animation: wordEffectLeft 0.2s linear 0.75s forwards;
  animation: wordEffectLeft 0.2s linear 0.75s forwards;
}
.wordEffect span:nth-child(16) {
  -webkit-animation: wordEffectLeft 0.2s linear 0.8s forwards;
  -o-animation: wordEffectLeft 0.2s linear 0.8s forwards;
  animation: wordEffectLeft 0.2s linear 0.8s forwards;
}
.wordEffect span:nth-child(17) {
  -webkit-animation: wordEffectLeft 0.2s linear 0.85s forwards;
  -o-animation: wordEffectLeft 0.2s linear 0.85s forwards;
  animation: wordEffectLeft 0.2s linear 0.85s forwards;
}
.wordEffect span:nth-child(18) {
  -webkit-animation: wordEffectLeft 0.2s linear 0.9s forwards;
  -o-animation: wordEffectLeft 0.2s linear 0.9s forwards;
  animation: wordEffectLeft 0.2s linear 0.9s forwards;
}
.wordEffect span:nth-child(19) {
  -webkit-animation: wordEffectLeft 0.2s linear 0.95s forwards;
  -o-animation: wordEffectLeft 0.2s linear 0.95s forwards;
  animation: wordEffectLeft 0.2s linear 0.95s forwards;
}
.wordEffect span:nth-child(20) {
  -webkit-animation: wordEffectLeft 0.2s linear 1s forwards;
  -o-animation: wordEffectLeft 0.2s linear 1s forwards;
  animation: wordEffectLeft 0.2s linear 1s forwards;
}
.wordEffect span:nth-child(21) {
  -webkit-animation: wordEffectLeft 0.2s linear 1.05s forwards;
  -o-animation: wordEffectLeft 0.2s linear 1.05s forwards;
  animation: wordEffectLeft 0.2s linear 1.05s forwards;
}
.wordEffect span:nth-child(22) {
  -webkit-animation: wordEffectLeft 0.2s linear 1.1s forwards;
  -o-animation: wordEffectLeft 0.2s linear 1.1s forwards;
  animation: wordEffectLeft 0.2s linear 1.1s forwards;
}
.wordEffect span:nth-child(23) {
  -webkit-animation: wordEffectLeft 0.2s linear 1.15s forwards;
  -o-animation: wordEffectLeft 0.2s linear 1.15s forwards;
  animation: wordEffectLeft 0.2s linear 1.15s forwards;
}
.wordEffect span:nth-child(24) {
  -webkit-animation: wordEffectLeft 0.2s linear 1.2s forwards;
  -o-animation: wordEffectLeft 0.2s linear 1.2s forwards;
  animation: wordEffectLeft 0.2s linear 1.2s forwards;
}
.wordEffect span:nth-child(25) {
  -webkit-animation: wordEffectLeft 0.2s linear 1.25s forwards;
  -o-animation: wordEffectLeft 0.2s linear 1.25s forwards;
  animation: wordEffectLeft 0.2s linear 1.25s forwards;
}
.wordEffect span:nth-child(26) {
  -webkit-animation: wordEffectLeft 0.2s linear 1.3s forwards;
  -o-animation: wordEffectLeft 0.2s linear 1.3s forwards;
  animation: wordEffectLeft 0.2s linear 1.3s forwards;
}
.wordEffect span:nth-child(27) {
  -webkit-animation: wordEffectLeft 0.2s linear 1.35s forwards;
  -o-animation: wordEffectLeft 0.2s linear 1.35s forwards;
  animation: wordEffectLeft 0.2s linear 1.35s forwards;
}
.wordEffect span:nth-child(28) {
  -webkit-animation: wordEffectLeft 0.2s linear 1.4s forwards;
  -o-animation: wordEffectLeft 0.2s linear 1.4s forwards;
  animation: wordEffectLeft 0.2s linear 1.4s forwards;
}
.wordEffect span:nth-child(29) {
  -webkit-animation: wordEffectLeft 0.2s linear 1.45s forwards;
  -o-animation: wordEffectLeft 0.2s linear 1.45s forwards;
  animation: wordEffectLeft 0.2s linear 1.45s forwards;
}
.wordEffect span:nth-child(30) {
  -webkit-animation: wordEffectLeft 0.2s linear 1.5s forwards;
  -o-animation: wordEffectLeft 0.2s linear 1.5s forwards;
  animation: wordEffectLeft 0.2s linear 1.5s forwards;
}
.wordEffect span:nth-child(31) {
  -webkit-animation: wordEffectLeft 0.2s linear 1.55s forwards;
  -o-animation: wordEffectLeft 0.2s linear 1.55s forwards;
  animation: wordEffectLeft 0.2s linear 1.55s forwards;
}
.wordEffect span:nth-child(32) {
  -webkit-animation: wordEffectLeft 0.2s linear 1.6s forwards;
  -o-animation: wordEffectLeft 0.2s linear 1.6s forwards;
  animation: wordEffectLeft 0.2s linear 1.6s forwards;
}
.wordEffect span:nth-child(33) {
  -webkit-animation: wordEffectLeft 0.2s linear 1.65s forwards;
  -o-animation: wordEffectLeft 0.2s linear 1.65s forwards;
  animation: wordEffectLeft 0.2s linear 1.65s forwards;
}
.wordEffect span:nth-child(34) {
  -webkit-animation: wordEffectLeft 0.2s linear 1.7s forwards;
  -o-animation: wordEffectLeft 0.2s linear 1.7s forwards;
  animation: wordEffectLeft 0.2s linear 1.7s forwards;
}
.wordEffect span:nth-child(35) {
  -webkit-animation: wordEffectLeft 0.2s linear 1.75s forwards;
  -o-animation: wordEffectLeft 0.2s linear 1.75s forwards;
  animation: wordEffectLeft 0.2s linear 1.75s forwards;
}
.wordEffect span:nth-child(36) {
  -webkit-animation: wordEffectLeft 0.2s linear 1.8s forwards;
  -o-animation: wordEffectLeft 0.2s linear 1.8s forwards;
  animation: wordEffectLeft 0.2s linear 1.8s forwards;
}
.wordEffect span:nth-child(37) {
  -webkit-animation: wordEffectLeft 0.2s linear 1.85s forwards;
  -o-animation: wordEffectLeft 0.2s linear 1.85s forwards;
  animation: wordEffectLeft 0.2s linear 1.85s forwards;
}
.wordEffect span:nth-child(38) {
  -webkit-animation: wordEffectLeft 0.2s linear 1.9s forwards;
  -o-animation: wordEffectLeft 0.2s linear 1.9s forwards;
  animation: wordEffectLeft 0.2s linear 1.9s forwards;
}
.wordEffect span:nth-child(39) {
  -webkit-animation: wordEffectLeft 0.2s linear 1.95s forwards;
  -o-animation: wordEffectLeft 0.2s linear 1.95s forwards;
  animation: wordEffectLeft 0.2s linear 1.95s forwards;
}
.wordEffect span:nth-child(40) {
  -webkit-animation: wordEffectLeft 0.2s linear 2s forwards;
  -o-animation: wordEffectLeft 0.2s linear 2s forwards;
  animation: wordEffectLeft 0.2s linear 2s forwards;
}
.wordEffect span:nth-child(41) {
  -webkit-animation: wordEffectLeft 0.2s linear 2.05s forwards;
  -o-animation: wordEffectLeft 0.2s linear 2.05s forwards;
  animation: wordEffectLeft 0.2s linear 2.05s forwards;
}
.wordEffect span:nth-child(42) {
  -webkit-animation: wordEffectLeft 0.2s linear 2.1s forwards;
  -o-animation: wordEffectLeft 0.2s linear 2.1s forwards;
  animation: wordEffectLeft 0.2s linear 2.1s forwards;
}
.wordEffect span:nth-child(43) {
  -webkit-animation: wordEffectLeft 0.2s linear 2.15s forwards;
  -o-animation: wordEffectLeft 0.2s linear 2.15s forwards;
  animation: wordEffectLeft 0.2s linear 2.15s forwards;
}
.wordEffect span:nth-child(44) {
  -webkit-animation: wordEffectLeft 0.2s linear 2.2s forwards;
  -o-animation: wordEffectLeft 0.2s linear 2.2s forwards;
  animation: wordEffectLeft 0.2s linear 2.2s forwards;
}
.wordEffect span:nth-child(45) {
  -webkit-animation: wordEffectLeft 0.2s linear 2.25s forwards;
  -o-animation: wordEffectLeft 0.2s linear 2.25s forwards;
  animation: wordEffectLeft 0.2s linear 2.25s forwards;
}
.wordEffect span:nth-child(46) {
  -webkit-animation: wordEffectLeft 0.2s linear 2.3s forwards;
  -o-animation: wordEffectLeft 0.2s linear 2.3s forwards;
  animation: wordEffectLeft 0.2s linear 2.3s forwards;
}
.wordEffect span:nth-child(47) {
  -webkit-animation: wordEffectLeft 0.2s linear 2.35s forwards;
  -o-animation: wordEffectLeft 0.2s linear 2.35s forwards;
  animation: wordEffectLeft 0.2s linear 2.35s forwards;
}
.wordEffect span:nth-child(48) {
  -webkit-animation: wordEffectLeft 0.2s linear 2.4s forwards;
  -o-animation: wordEffectLeft 0.2s linear 2.4s forwards;
  animation: wordEffectLeft 0.2s linear 2.4s forwards;
}
.wordEffect span:nth-child(49) {
  -webkit-animation: wordEffectLeft 0.2s linear 2.45s forwards;
  -o-animation: wordEffectLeft 0.2s linear 2.45s forwards;
  animation: wordEffectLeft 0.2s linear 2.45s forwards;
}
.wordEffect span:nth-child(50) {
  -webkit-animation: wordEffectLeft 0.2s linear 2.5s forwards;
  -o-animation: wordEffectLeft 0.2s linear 2.5s forwards;
  animation: wordEffectLeft 0.2s linear 2.5s forwards;
}
.wordEffect span:nth-child(51) {
  -webkit-animation: wordEffectLeft 0.2s linear 2.55s forwards;
  -o-animation: wordEffectLeft 0.2s linear 2.55s forwards;
  animation: wordEffectLeft 0.2s linear 2.55s forwards;
}
.wordEffect span:nth-child(52) {
  -webkit-animation: wordEffectLeft 0.2s linear 2.6s forwards;
  -o-animation: wordEffectLeft 0.2s linear 2.6s forwards;
  animation: wordEffectLeft 0.2s linear 2.6s forwards;
}
.wordEffect span:nth-child(53) {
  -webkit-animation: wordEffectLeft 0.2s linear 2.65s forwards;
  -o-animation: wordEffectLeft 0.2s linear 2.65s forwards;
  animation: wordEffectLeft 0.2s linear 2.65s forwards;
}
.wordEffect span:nth-child(54) {
  -webkit-animation: wordEffectLeft 0.2s linear 2.7s forwards;
  -o-animation: wordEffectLeft 0.2s linear 2.7s forwards;
  animation: wordEffectLeft 0.2s linear 2.7s forwards;
}
.wordEffect span:nth-child(55) {
  -webkit-animation: wordEffectLeft 0.2s linear 2.75s forwards;
  -o-animation: wordEffectLeft 0.2s linear 2.75s forwards;
  animation: wordEffectLeft 0.2s linear 2.75s forwards;
}
.wordEffect span:nth-child(56) {
  -webkit-animation: wordEffectLeft 0.2s linear 2.8s forwards;
  -o-animation: wordEffectLeft 0.2s linear 2.8s forwards;
  animation: wordEffectLeft 0.2s linear 2.8s forwards;
}
.wordEffect span:nth-child(57) {
  -webkit-animation: wordEffectLeft 0.2s linear 2.85s forwards;
  -o-animation: wordEffectLeft 0.2s linear 2.85s forwards;
  animation: wordEffectLeft 0.2s linear 2.85s forwards;
}
.wordEffect span:nth-child(58) {
  -webkit-animation: wordEffectLeft 0.2s linear 2.9s forwards;
  -o-animation: wordEffectLeft 0.2s linear 2.9s forwards;
  animation: wordEffectLeft 0.2s linear 2.9s forwards;
}
.wordEffect span:nth-child(59) {
  -webkit-animation: wordEffectLeft 0.2s linear 2.95s forwards;
  -o-animation: wordEffectLeft 0.2s linear 2.95s forwards;
  animation: wordEffectLeft 0.2s linear 2.95s forwards;
}
.wordEffect span:nth-child(60) {
  -webkit-animation: wordEffectLeft 0.2s linear 3s forwards;
  -o-animation: wordEffectLeft 0.2s linear 3s forwards;
  animation: wordEffectLeft 0.2s linear 3s forwards;
}

/*********************************************simplyAnimate**************************************************/
.noMainService-row {
  position: relative;
  display: grid;
  grid-gap: 30px;
  margin: 40px auto;
}

.noMainService-row h4 {
  position: relative;
  text-transform: capitalize;
  color: var(--light-green-color);
}

@media screen and (min-width: 1081px) {
  /*  .noMainService-row .career-img
    {
      width: 360px;
    }*/
  .noMainService-row {
    grid-template-columns: 38% 56%;
    justify-content: space-between;
    grid-gap: 10px;
  }

  .noMainService-row._tab {
    grid-template-columns: 55% 42%;
  }

  .noMainService-row h4 {
    font-size: 1.8em;
  }
}
.noMainService-row div {
  position: relative;
}

.noMainService-row .career-img {
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

.noMainService-row .career-img > img {
  /*height: 100%;*/
  max-width: unset;
  width: 100%;
  vertical-align: top;
}

.noMainService-row .career-mess {
  position: relative;
  padding-bottom: 30px;
}

.newBtnBack {
  position: relative;
  display: block;
  padding: 5px 20px;
  background: var(--light-purple-color);
  border: 1px solid var(--light-purple-color);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  color: var(--white-color);
  font-weight: bold;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.newBtnBack:hover {
  background: var(--white-color);
  color: var(--black-color);
}

.newBtnBorder {
  position: relative;
  display: block;
  padding: 5px 20px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  border: 1px solid var(--light-purple-color);
  color: var(--black-color);
  font-weight: bold;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.newBtnBorder:hover {
  background: var(--light-purple-color);
  color: var(--white-color);
}

/*****************************************************slideHorizontal**************************************************************/
.slideHorizontal {
  position: relative;
  margin: 60px -50px;
  display: flex;
  align-items: center;
}

.slideHorizontal .operateLeft,
.slideHorizontal .operateRight {
  position: absolute;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  font-size: 2em;
  cursor: pointer;
}

.slideHorizontal .operateLeft {
  left: 10px;
}

.slideHorizontal .operateRight {
  right: 10px;
}

.slideHorizontal .border_ {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.slideHorizontal .border_ .moveCurrent {
  transition: all linear 0.4s;
}

.slideHorizontal .border_ > ul {
  position: relative;
  display: flex;
  margin: 20px 0;
  width: 9000px;
}

.slideHorizontal .border_ > ul li {
  position: relative;
  margin: 0 10px;
}

/*****************************************************slideHorizontal**************************************************************/




@media(min-width: 992px) {
  .grid-item {
    --number:auto-fill;
    --width: 160px;
    margin-bottom: 25px;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(var(--number),minmax(var(--width),1fr));
  }

  .grid {
    display: grid;
    --rate: 48% 48%;
    row-gap: 15px;
    grid-template-columns: var(--rate);
    justify-content: space-between;
    margin-bottom: 25px;
  }
}

@media(max-width: 992px) {
  .grid-item>*,.grid >* {
    margin-bottom:30px;
  }
}

.grid-item:before,.grid-item:after,.grid:before,.grid:after {
  display: none;
}

.img-box,.pic-box {
  position: relative;
  min-height: 140px;
  overflow: hidden;
}

.img-box img,.pic-box img {
  min-height: 100%;
  min-width: 100%;
  max-width: 110%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
