body{
  font-size: 15px;
  font-family: "Montserrat-Light";
  color: rgb(64, 64, 64);
  line-height: 1.6;
/*  margin: 0 10px;*/
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a, 
button{
  text-decoration: none;
  transition: all .3s linear;
}

a:hover, 
button:hover{
  transition: all .3s linear;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

:focus-visible {
  outline: 0px;
}

.align-items-center {
  align-items: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.d-flex {
  display: flex !important;
}

ul,
ul li{
  padding: 0 ;
  margin: 0;  
  list-style: none;
}

h1, h2, h3{
  font-weight: normal;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;  
}

.content{
  width: 100%;
  max-width: 1486px;
  margin: 0 auto;  
}

.gray{
  background: #f2f2f2;
} 

/*content start*/
h1{
  font-size: 36px;
  font-family: "AGOpus";
  color: rgb(0, 0, 0);
  line-height: 1.2;
  margin: 0;
  padding-top: 31px;
  padding-bottom: 45px;
}

.content p{
  margin: 0;
  padding: 0 0 24px ;
}

.content a {
  color: rgb(107, 147, 36);
  border-bottom: 1px dashed rgb(107, 147, 36);
}

.content a:hover {
  border-bottom: none;
}

.content ul,
.content ol{
  margin: 0 0 16px 20px;
  padding: 0 ; 
}

.content ul li,
.content ol li{
  padding: 0 0 4px;
  line-height: 2.133;
  margin-top: -4px;
}

.content ul li{
  list-style: disc;
}

.content ul li::marker,
.content ol li::marker {
	color: #6b9324;
}
/*content end*/

/*checkbox start*/
.checkbox-input{
  appearance: none;
  position: relative;
  overflow: hidden;
  background-color: rgb(107, 147, 36);
  width: 46px;
  height: 30px;
  border-radius: 20px;
  border: 1px solid #FFFFFF;
  cursor: pointer;
}

.checkbox-input::after{
  content: "\2714";
  position: absolute;
  width: 0px;
  height: 0px;
  font-size: 26px;
  overflow: hidden;
}

.checkbox-input::after{
  content: "*";
  color: rgb(255, 255, 255);
  font-size: 30px;
  line-height: 1.35;
  position: absolute;
  width: 0px;
  height: 0px;
  text-align: center;
}

.checkbox-input:checked::after{
  width: 46px;
  height: 30px;
}
/*checkbox end*/
.btn{
  display: block;
  position: relative;
  border-radius: 30px;
  background-image: -moz-linear-gradient( -45deg, rgb(107,147,36) 0%, rgb(31,79,51) 100%);
  background-image: -webkit-linear-gradient( -45deg, rgb(107,147,36) 0%, rgb(31,79,51) 100%);
  background-image: -ms-linear-gradient( -45deg, rgb(107,147,36) 0%, rgb(31,79,51) 100%);
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 1;
  width: 158px;
  height: 50px;
}

.btn:before{
  content: "";
  display: block;
  position: absolute;
  width: 176px;
  height: 94px;
  background: url(../img/icon/btn-shadow.png) center no-repeat;
  top: -14px;
  left: -9px;
  z-index: -1;
}

.btn:hover{
  opacity: 0.8;
}

input[type=text],
input[type=tel],
input[type=email] {
  border-radius: 30px;
  border-style: solid;
  border-width: 1px;
  border-color: rgb(107, 147, 36);
  background-color: rgba(255, 255, 255, 0);
  padding: 0 22px ;
}

.page-hr{
  height: 11px;
  background:  url(../img/hr-content.png) top center no-repeat;
}


.header-hidden{
  display: none;
}


/*header start*/
.header-menu{
  padding: 35px 0 36px ;      
  display: flex;
}

.header-menu li{
  border-style: solid;
  border-width: 2px;
  border-color: rgb(240, 240, 240);
  background-color: rgba(242, 242, 242, 0);
  margin: 0 18px 0 0;
  border-radius: 30px;
  transition: all .3s linear;
}

.header-menu li a{
  line-height: 46px;
  display: block;
  text-align: center;
  color: rgb(64, 64, 64);
  padding: 0 30px ;
}

.header-menu li:hover,
.header-menu li.active {
  background-color: #6b9324;
  border-color: #6b9324;
}

.header-menu  li:hover a,
.header-menu  li.active a{
  color: #fff;
}

.header-info{
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 9px 21px 0px rgba(230, 230, 230, 0.75);
  height: 110px;
  display: flex;
  justify-content: space-between;
}

.header-mobile{
  display: none;
}

.header-logo{
  display: flex;
  padding: 25px 0 0 37px ;
}

.header-logo img{
  width: 116px;
  height: 57px;
}

.header-logo .header-logo-text{
  padding: 5px 0 0 37px;
}

.header-logo .header-logo-text .line1{
  font-size: 18px;
  font-family: "AGOpus";
  color: rgb(0, 0, 0);
  line-height: 1.2;
}

.header-logo .header-logo-text .line2{
  font-size: 15px;
  color: rgb(107, 147, 36);
  line-height: 1.6;
}

.header-contacts{
  display: flex;
  align-items: center;
}

header .phone a{
  display: flex;
  align-items: center;
  font-size: 18px;
  color: rgb(0, 0, 0);
}

header .header-icon{
  display: flex;
  justify-content: center;
  align-items: center;
  border-style: solid;
  border-width: 2px;
  border-color: rgb(240, 240, 240);
  border-radius: 50%;
  background-color: rgba(107, 147, 36, 0);
  width: 50px;
  height: 50px;
}

header .header-icon.phone-icon{
  background:  url(../img/icon/phone.png) center no-repeat;
  margin-right: 25px;
}

header .phone a:hover .phone-icon{
  background:  url(../img/icon/phone-white.png) center no-repeat;
  background-color: rgb(107, 147, 36);
  transition: all .3s linear;
}

.header-icon.mail-icon{
  background:  url(../img/icon/mail.png) center no-repeat;
  margin: 0 30px 0 27px;
}

.header-icon.mail-icon:hover{
  background:  url(../img/icon/mail-white.png) center no-repeat;
  background-color: rgb(107, 147, 36);
  transition: all .3s linear;
}

.header-icon.time-icon{
  background:  url(../img/icon/time.png) center no-repeat;
  position: relative;
}

.header-icon.time-icon:hover,
.header-icon.time-icon.active{
  background:  url(../img/icon/time-white.png) center no-repeat;
  background-color: rgb(107, 147, 36);
  transition: all .3s linear;
  cursor: pointer;
}

.time-icon .time-popup {
  transition: all .3s linear;
  border-radius: 25px;
  background-color: rgb(242, 242, 242);
  position: absolute;
  right: 0;
  top: 66px;
  width: 334px;
  cursor: default;
  padding: 0 33px ;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.time-icon.active .time-popup {
  transition: all .3s linear;
  opacity: 1;
  min-height: 310px;
  height: auto;
  z-index: 10;
}

.header-soc{
  display: flex; 
  padding: 34px 0 0 0; 
  justify-content: center;
}

.header-soc a{
  display: block;
  border-radius: 50%;
  background-color: rgb(107, 147, 36);
  width: 50px;
  height: 50px;
  margin-right: 22px;
}

.header-soc a:last-child{
  margin-right: 0;
}

.header-soc a:hover{
  opacity: .8;
}

.header-soc .vk{
  background-image:  url(../img/icon/vk-header.png);
  background-position: center;
  background-repeat: no-repeat;
}

.header-soc .ok{
  background-image:  url(../img/icon/ok-header.png);
  background-position: center;
  background-repeat: no-repeat;
}

.header-soc .youtube{
  background-image:  url(../img/icon/youtube-header.png);
  background-position: center;
  background-repeat: no-repeat;
}

.header-soc .telegram{
  background-image:  url(../img/icon/telegram-header.png);
  background-position: center;
  background-repeat: no-repeat;
}
.underline_big_copy_2 {
  background-image: url("underline_big copy 2.png");
  position: absolute;
  left: 1295px;
  top: 336px;
  width: 129px;
  z-index: 580;
}

.time-popup .hr{
  background:  url(../img/hr-header.png) center no-repeat;
  height: 11px;
  margin: 35px 0 29px ;
  
}

.time-popup .time-popup-title {
  font-size: 18px;
  font-family: "AGOpus";
  color: rgb(0, 0, 0);
  line-height: 1.2;
}

.time-popup .time-popup-address {
  font-size: 14px;
  color: rgb(64, 64, 64);
  line-height: 1.929;
}

.time-popup .time-popup-phone{
  margin: 14px 0 7px ;
}

.time-popup .time-popup-phone a {
  font-size: 18px;
  color: rgb(0, 0, 0);
  line-height: 1.2;
}

.time-popup .time-popup-mail a {
  font-size: 14px;
  color: rgb(107, 147, 36);
  line-height: 1.929;
  border-bottom: 1px dashed rgb(107, 147, 36);
}

.time-popup .time-popup-mail a:hover {
  border-bottom: none;
}

.header-services{
  display: flex;
  justify-content: space-between;
  border-radius: 30px;
  border-style: solid;
  border-width: 2px;
  border-color: rgb(240, 240, 240);
  background-color: rgba(242, 242, 242, 0);
  width: 158px;
  height: 50px;
  margin: 0 40px 0 36px;
  color: #404040;
  position: relative;
}

.header-services .header-services-title{
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.header-services .header-services-icon{
  width: 30px;
  background:  url(../img/icon/dropdown.png) left center no-repeat;
}

.header-services:hover,
.header-services.active{
  transition: all .3s linear;
  background: #6b9324;  
  color: #fff;
}

.header-services:hover .header-services-icon,
.header-services.active .header-services-icon{
  transition: all .3s linear;
  background:  url(../img/icon/dropdown-white.png) left center no-repeat;
}

.header-services-popup{
  transition: all .3s linear;
  border-radius: 25px;
  background-color: rgb(242, 242, 242);
  position: absolute;
  right: 0;
  top: 66px;
  width: 326px;
  text-align: right;
  opacity: 0;
  height: 0;
  overflow: hidden;
  z-index: 1;  
}

.header-services-popup ul{
  padding: 26px 38px 26px 0;
  max-height: 290px;
  overflow-y: scroll;
  scroll-margin-right: 18px;  
}

.header-services-popup ul::-webkit-scrollbar {
    box-sizing: unset;
    width: 23px;
    border-radius: 33px;
}

.header-services-popup ul::-webkit-scrollbar-track {
    box-sizing: unset;
    box-shadow: inset 0 0 2px 2px #e3e4e6;
    border-right: solid 18px transparent;
    border-top: solid 32px transparent;
    border-bottom: solid 12px transparent;
}

.header-services-popup ul::-webkit-scrollbar-thumb {
    box-sizing: unset;
    box-shadow: inset 0 0 4px 4px rgb(107, 147, 36);
    border-right  : solid 18px transparent;
    border-top: solid 32px transparent;
    border-bottom: solid 12px transparent;
}

.header-services.active .header-services-popup{
  transition: all .3s linear;
  opacity: 1;
  min-height: 278px;
  height: auto;
  z-index: 10;
}

.header-services-popup a{
  font-size: 14px;
  color: rgb(64, 64, 64) !important;
  line-height: 2.3 !important;
  text-align: right !important;
  padding: 0 !important;
  display: unset !important;
}

.header-services-popup a:hover,
.header-services-popup .active a{
  color: rgb(107, 147, 36)  !important; 
  border-bottom: 1px dashed rgb(107, 147, 36);
}

.header-services-popup li{
  background: none !important;
  margin: 0 !important;
}

header .header-icon.menu-icon{
  display: none;
  font-size: 18px;
  color: rgb(64, 64, 64);
  text-align: center;
  cursor: pointer;
  margin-right: 30px;
}

.menu-icon span{
  position: relative;
  top: -5px;
}

.menu-icon:hover,
.menu-icon.active{
  color: rgb(255, 255, 255) !important;
  background-color: rgb(107, 147, 36);
  transition: all .3s  linear;
  position: relative;
}


.menu-popup{
  transition: all .3s linear;
  border-radius: 25px;
  background-color: rgb(242, 242, 242);
  box-shadow: 0px 0px 21px 0px rgba(204, 204, 204, 0.75);
  position: absolute;
  top: 66px;
  width: 142px;
  height: 0;
  overflow: hidden;  
  opacity: 0;
  cursor: auto;  
  z-index: 1;
}


.menu-icon.active .menu-popup{
  transition: all .3s linear;
  opacity: 1;
  height: auto;
  padding: 25px 0 ;
  z-index: 10;
}

.menu-popup a{
  font-size: 14px;
  color: rgb(64, 64, 64);
  line-height: 2.3;
}

.menu-popup a:hover,
.menu-popup .active a{
  color: rgb(107, 147, 36);
  border-bottom: 1px dashed rgb(107, 147, 36);
}
/*header end*/

/*header-inner start*/
.header-inner {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 9px 21px 0px rgba(230, 230, 230, 0.75);
  height: 111px;
  position: fixed;
  width: 100%;
  z-index: 10;
}

.header-info-inner{
  display: flex;
  align-items: center;
  height: 111px;
}

.header-inner .header-logo{
  padding-top: 0 ;
}

.header-inner .header-menu{
  padding-left: 77px;
}

.header-inner .header-menu li:nth-child(3n) a{
    padding: 0 26px;
}

.header-inner .header-menu li:nth-child(4n) a{
    padding: 0 25px;
}

.header-inner .header-services-popup,
.header-inner .time-popup{
  box-shadow: 0px 0px 21px 0px rgba(204, 204, 204, 0.75);
}

.header-inner .header-menu li li{
  border: none;
  
}

header.header-inner .header-icon.menu-icon{
  display: flex;
  margin-left: 10px;
}

.header-inner .hidden-menu{
  display: none;
} 
/*header-inner end*/

/*breadcrumb start*/
.breadcrumbs{
  font-size: 14px;
  padding: 40px 0 0 10px;
  margin-top: 111px;
}

.breadcrumb{
  display: flex;
}

.breadcrumb  li{
  text-transform: lowercase;
}

.breadcrumb  li img{
  margin-right: 4px;
}

.breadcrumb  a{
  color: rgb(64, 64, 64);
  line-height: 1.714;
  border-bottom: 1px dashed rgb(64, 64, 64);
}

.breadcrumb  li:first-child a{
  border-bottom: none;
}

.breadcrumb  a:hover{
  color: rgb(107, 147, 36);
  border-bottom: 1px dashed rgb(107, 147, 36);
}
/*breadcrumb end*/

/*footer start*/
.top{
  position: relative;
  width: 50px;
  height: 50px;
  margin: 48px auto 59px;
}

.top a{
  background:  url(../img/icon/top.png) center no-repeat;
  border-radius: 50%;
  background-color: rgb(107, 147, 36);
  position: absolute;
  width: 50px;
  height: 50px;
}

.top a:hover{
  opacity: .8;
}

footer{
  background-image: -moz-linear-gradient( 0deg, rgb(107,147,36) 0%, rgb(31,79,51) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(107,147,36) 0%, rgb(31,79,51) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(107,147,36) 0%, rgb(31,79,51) 100%);
  height: 416px;
  margin-top: auto;
}

footer .container{
  padding: 0 65px ;
}

.footer-line1{
  display: flex;
  height: 351px;
  overflow: hidden;
}

.footer-line1 .left-col{
  width: 454px;
}

.footer-logo{
  display: flex;
  padding: 42px 0 0 0;
}

.footer-logo img{
  width: 116px;
  height: 57px;
}

.footer-logo .footer-logo-text{
  padding: 5px 0 0 37px;
}

.footer-logo .footer-logo-text .line1{
  font-size: 18px;
  font-family: "AGOpus";
  color: rgb(255, 255, 255);
  line-height: 1.2;
}

.footer-logo .footer-logo-text .line2{
  font-size: 15px;
  color: rgb(255, 255, 255);
  line-height: 1.6;
}


.footer-text{
  font-size: 14px;
  color: rgb(255, 255, 255);
  line-height: 1.714;
  width: 356px;
  padding-top: 29px;
}

.footer-info-mobile{
  display: none;
}

.footer-line1 .footer-nav{
  padding-top: 42px;
  width: 280px;
}

.footer-nav-title{
  font-size: 24px;
  font-family: "AGOpus";
  color: rgb(255, 255, 255);
  line-height: 1.2;
}
  
.footer-menu{
  display: flex;
  padding-top: 23px;
}

.footer-menu ul{
  width: 112px;
}

.footer-menu ul li{
  padding-bottom: 5px;
}

.footer-menu ul li a{
  font-size: 14px;
  color: rgb(255, 255, 255);
  line-height: 1.929;
}

.footer-menu ul li a:hover,
.footer-menu ul li.active a{
  border-bottom: 1px dashed #fff;
}

.footer-line1 .footer-info{
  padding: 42px 0 0;
  width: 280px;
}

.footer-info-title{
  font-size: 24px;
  font-family: "AGOpus";
  color: rgb(255, 255, 255);
  line-height: 1.2;
  padding-bottom: 23px;
}

.footer-info-address,
.footer-info-phone,
.footer-info-mail{
  padding-bottom: 5px;
}

.footer-info-address,
.footer-info-phone a,
.footer-info-mail a {
  font-size: 14px;
  color: rgb(255, 255, 255);
  line-height: 1.929;
}

.footer-info-phone a:hover,
.footer-info-mail a:hover {
  border-bottom: 1px dashed #fff;
}

.footer-line1 .footer-connect{
  padding: 42px 0 0 0;
}

.footer-connect-title{
  font-size: 24px;
  font-family: "AGOpus";
  color: rgb(255, 255, 255);
  line-height: 1.2;
  padding-bottom: 23px;
}

.footer-soc{
  display: flex; 
  padding: 5px 0 0 5px; 
}

.footer-soc a{
  display: block;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  width: 50px;
  height: 50px;
  margin-right: 22px;
}

.footer-soc a:hover{
  opacity: .8;
}
.footer-soc .vk{
  background-image:  url(../img/icon/vk-footer.png);
  background-position: center;
  background-repeat: no-repeat;
}

.footer-soc .ok{
  background-image:  url(../img/icon/ok-footer.png);
  background-position: center;
  background-repeat: no-repeat;
}

.footer-soc .youtube{
  background-image:  url(../img/icon/youtube-footer.png);
  background-position: center;
  background-repeat: no-repeat;
}

.footer-soc .telegram{
  background-image:  url(../img/icon/telegram-footer.png);
  background-position: center;
  background-repeat: no-repeat;
}

.footer-connect .callback,
.footer-connect .writeus{
  display: block;
  margin-top: 30px;
  margin-left: 5px;
  border-radius: 30px;
  background: #fff;
  text-align: center;
  width: 158px;
  line-height: 50px;
  font-size: 15px;
  color: rgb(64, 64, 64);
}

.footer-connect .callback:hover,
.footer-connect .writeus:hover{
  color: #6b9324;
}

.footer-line2{
  height: 10px;
  background:  url(../img/footer-line.png) left top repeat-x;
}

.footer-copy{
  height: 55px;
  display: flex;
  justify-content: space-between;
  align-items: center;  
}

.footer-copy,
.footer-copy a{
  font-size: 14px;
  color: rgb(255, 255, 255);
  line-height: 1.714;
}

.footer-copy a span{
  border-bottom: 1px dashed #fff;
}

.footer-copy a:hover span{
  border: none;
}

.footer-copy .made{
  padding-right: 211px;
}
/*footer end*/

/*modal start*/
.modal .form-ok img{
  padding: 73px 0 28px 22px
}

.modal.modal-application .form-ok img{
  padding-top: 239px;
}

.modal .form-ok .modal-desc{
  font-size: 14px;
  line-height: 1.714;
}

.modal .form-ok h4{
  padding-bottom: 3px;
}

.modal{
  border-radius: 30px;
  background-color: rgb(242, 242, 242);
  margin: 30px 0;
  height: 100%;
}

.modal .modal-form-block{
  margin: 15px;
  overflow-y: auto;
  max-height: calc(100% - 30px);
}

.modal-callback,
.modal-application{
  width: 396px;
}

.modal-callback{
  max-height: 556px;
}

.modal-application{
  max-height: 724px;
}

.modal-writeus{
  max-height: 504px;
}

.modal-writeus.fancybox-content {
  padding: 0px 45px 15px;
}

.fancybox-close-small{
  padding: 0 !important;
  margin-left: auto;
  margin-right: auto;
  opacity: 1;
  left: 0;
  right: 0;    
  top: -22px !important;
  border-style: solid;
  border-width: 7px;
  border-color: rgb(242, 242, 242);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  background: rgb(107, 147, 36) url(../img/icon/fancybox-close.png) center no-repeat;
}

.fancybox-close-small:hover{
  background: rgb(107, 147, 36, .8) url(../img/icon/fancybox-close.png) center no-repeat;
}

.fancybox-close-small svg{
  display: none;
}

.modal h4,
.footer-form h4{
  font-size: 24px;
  font-family: "AGOpus";
  color: rgb(0, 0, 0);
  line-height: 1.2;
  text-align: center;
  padding: 17px 0 10px;
  margin: 0; 
  font-weight: normal; 
}

.modal .modal-desc,
.footer-form .footer-form-desc{
  color: rgb(64, 64, 64);
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
}

.modal-callback .modal-desc,
.modal-writeus .modal-desc{
  padding-bottom: 21px;
}

.modal-application .modal-desc{
  display: block;
  line-height: 1.714;
  font-size: 14px;
  max-width: 330px;
  margin: 0 auto;
  padding-top: 16px;
  padding-bottom: 35px;
}

.modal input[type=text],
.modal input[type=tel],
.modal input[type=email] {
  display: block;
  margin: 0 auto;
  width: 270px;
  height: 50px;
  margin-bottom: 22px;
}

.modal button{
  margin: 0 auto; 
}

.modal .button-group{
  padding-top: 15px;
}

.form-user-police {
  font-size: 14px;
  color: rgb(64, 64, 64);
  line-height: 1.714;
}

.modal-callback .form-user-police input,
.modal-application .form-user-police input{
  display: block;
  margin: 28px auto 17px;
}

.modal-callback .form-user-police,
.modal-application .form-user-police{
  padding-bottom: 15px;
}

.form-user-police label {
  font-size: 14px;
  color: rgb(64, 64, 64);
  line-height: 1.714;
  cursor: pointer;
}

.form-user-police label a{
  color: #6b9324;
  border-bottom: 1px dashed #6b9324;
}

.form-user-police label a:hover{
  border-bottom: none;
}
/*modal end*/

/*footer form start*/
.footer-form{
  width: 882px;
  margin: 0 auto;
  height: 100%;
}

.modal-writeus .footer-form{
  width: 912px;
}

h4.footer-form-h4{
  font-size: 36px;
  padding-top: 34px;
}

.footer-form .footer-form-desc{
  margin: 0;
  padding: 3px 0 28px ;
}

.footer-form .row{
  display: flex;
  justify-content: space-between;
}

.footer-form input[type=text],
.footer-form input[type=tel],
.footer-form input[type=email] {
  width: 270px;
  height: 50px;
  margin-left: 0;
  margin-right: 0;
}

.footer-form textarea{
  border-style: solid;
  border-width: 1px;
  border-color: rgb(107, 147, 36);
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0);
  width: 878px;
  max-width: 100%;
  height: 106px;
  padding: 14px 25px;
  resize: none;
}

.footer-form textarea.footer-form-textarea{
  margin: 30px auto 0;
  display: block;
}

.footer-form .button-group{
  padding-top: 30px;
}

.footer-form button {
  margin: 0 auto;
}

.footer-form .form-user-police{
  display: flex;
  align-items: center;
  padding-top: 33px;
}

.footer-form .form-user-police label{
  font-size: 15px;
}

.footer-form .form-user-police input{
  margin-right: 20px;
}

.footer-form .footer-form-ok{
  text-align: center;
  padding-bottom: 62px;
}

.footer-form .form-ok img{
  padding-top: 105px;
}

.footer-form .form-ok .button-group{
  padding-top: 15px;
}

.footer-form .footer-form-ok img{
  padding: 165px 0 0 22px;
}

.footer-form .footer-form-ok h4{
  padding-top: 13px;
}

.footer-form .footer-form-ok .modal-desc{
  font-size: 14px;
  line-height: 1.714;
  margin: 0 0 43px;
}
/*footer form end*/


/*contact page start*/
.content-contacts .contacts a{
  border-bottom: none;
}

.contacts{
  width: 1022px;
  margin: 0 auto;
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  }
  
.contacts .slick-list{
  width: 100%;
}

.contacts .slick-list .slick-track{
  display: flex;
  justify-content: space-between;
}

.contacts .slick-list .slick-track:before,
.contacts .slick-list .slick-track:after{
  display: none;
}

.contacts .slick-dots{
  display: none;
}

.contacts .slick-dots{
  margin: 0;
}

.contacts .slick-dots li {
  border-style: solid;
  border-width: 2px;
  border-color: rgb(107, 147, 36);
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0);
  width: 10px;
  height: 10px;
  padding: 0 ;
}

.contacts .slick-dots li.slick-active {
  background-color: rgb(107, 147, 36);
}

.contacts .slick-dots li button:before{
  display: none;
}

.contacts .icon{
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  transition: all .3s linear;
  margin-bottom: 13px;
}

.contacts .contacts-phone-icon,
.contacts .contacts-mail-icon,
.contacts .contacts-address-icon{
  width: 223px !important;
  text-align: center;
  font-size: 14px;
  line-height: 1.929;
  text-align: center;
}

.contacts .contacts-phone-icon .icon{
  background: rgb(107, 147, 36) url(../img/icon/phone-white.png) center no-repeat;
}

.contacts .contacts-mail-icon .icon{
  background: rgb(107, 147, 36) url(../img/icon/mail-white.png) center no-repeat;
}

.contacts .contacts-address-icon .icon{
  background: rgb(107, 147, 36) url(../img/icon/address-white.png) center no-repeat;
}

.contacts span {
  color: rgb(107, 147, 36);
  border-bottom: 1px dashed rgb(107, 147, 36);
}

.contacts .contacts-phone-icon:hover .icon,
.contacts .contacts-mail-icon:hover .icon{ 
  border-style: solid;
  border-width: 2px;
  border-color: rgb(240, 240, 240);
  transition: all .3s linear;
}

.contacts .contacts-phone-icon:hover .icon{
  background: #fff url(../img/icon/phone.png) center no-repeat;
}

.contacts .contacts-mail-icon:hover .icon{
  background: #fff url(../img/icon/mail.png) center no-repeat;
}

.contacts .contacts-phone-icon:hover span,
.contacts .contacts-mail-icon:hover span{
  border: none ;
}

.content-contacts #map{
  max-width: 100%;
  border-radius: 30px;
  width: 1710px;
  height: 486px;
  margin: 0 auto;
  overflow: hidden;
  margin-top: 49px;
  margin-bottom: 51px;  
}
/*contact page end*/

/*error page star*/
.content-error .content picture{
  display: block;
  max-width: 100%;
  text-align: center;
}

.content-error .content h3{
  font-size: 18px;
  font-family: "AGOpus";
  color: rgb(0, 0, 0);
  line-height: 1.2;
  padding: 15px 0 7px ;
}

.content-error .content button{
  margin: 11px auto 53px; 
}

.content-error .page-hr{
  height: 17px;
}
/*error page end*/

/*cookiePopup start*/
#cookiePopup{
  border-radius: 25px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 21px 0px rgba(204, 204, 204, 0.75);
  width: 486px;
  height: 334px;
  transition: all 0.5s ease-in;
  z-index: 100000;
  bottom: 25px;
  left: 50%;
  transform: translate(-50%, 0);
}

#cookiePopup h3{
  font-size: 30px;
  font-family: "AGOpus";
  color: rgb(0, 0, 0);
  line-height: 1.2;
  text-align: center;
  margin: 28px 0 0;
}

#cookiePopup p{
  margin: 14px 22px 34px;
}

#cookiePopup a {
  color: rgb(107, 147, 36);
  border-bottom: 1px dashed rgb(107, 147, 36);
}

#cookiePopup a:hover {
  border-bottom: none;
}

#cookiePopup button {
  margin: 20px auto 0;
}

#cookiePopup.hide {
  visibility: hidden;
  display:none;
}

#cookiePopup.show {
  visibility: visible;
  position: fixed;
}
/*cookiePopup end*/

/*gallary start*/
.gallary-list .rows{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  padding: 3px 0 20px;
}

.gallary-list .gallary-list-item{
  padding-bottom: 23px;
}

.gallary-list .gallary-list-item a{
  border-bottom: none ;
}

.gallary-list .gallary-list-item picture img{
  border-radius: 30px;  
  max-width: 100%;
}

.gallary-list .gallary-list-item .title{
  font-size: 24px;
  font-family: "AGOpus";
  color: rgb(0, 0, 0);
  line-height: 1.2;
  padding: 21px 0 8px 15px;
  text-align: left;
}

.gallary-list .gallary-list-item .title a{
  line-height: 1;
  color: rgb(0, 0, 0);
  border-bottom: 1px dashed rgb(0, 0, 0);;
}

.gallary-list .gallary-list-item .title a:hover{
  color: rgb(107, 147, 36);
  border-color: rgb(107, 147, 36);
}

.gallary-list .gallary-list-item span{
  display: block;
  padding: 0 0 0 15px;
}

.content-gallary .btn{
  margin-top: 65px; 
  margin-bottom: 53px;
}

.content-gallary .btn:after{
  content: "";
  position: absolute;
  height: 11px;
  width: 158px;
  background: url(../img/hr-content.png) top center no-repeat;
  left: 0;
  top: -65px;  
}

.content-gallary h2 {
  margin: 0;
  font-size: 30px;
  font-family: "AGOpus";
  color: rgb(0, 0, 0);
  line-height: 1.333;
  padding: 38px 0 12px 2px;
}

.content-gallary .hr2{
  margin: 20px 0 6px;
}


.gallary-inner .rows{
  display: flex;
  flex-wrap: wrap;
  padding: 2px 0 51px;
  width: 1394px;
  margin: 0 auto;
  gap: 26px;
}

.gallary-inner .rows .gallary-inner-item a{
  border-bottom: none ;
  display: block;
  position: relative;
}


.gallary-inner .rows .gallary-inner-item picture{
  display: block;
  height: 326px;
}

.gallary-inner .rows .gallary-inner-item picture img{
  border-radius: 40px;  
  max-width: 100%;
}

.gallary-inner .rows .gallary-inner-item a span{
  display: block;
  position: absolute;
  border-radius: 40px;  
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(64, 64, 64, .25);
  opacity: 0;
  transition: all .3s linear;
}

.gallary-inner .rows .gallary-inner-item a:hover span{
  opacity: 1;
  transition: all .3s linear;
}

.gallary-inner .rows .gallary-inner-item a span:before{
  content: "";
  display: block;
  position: absolute;
  border-radius: 50%; 
  background-color: rgb(107, 147, 36);
  opacity: 0.71;
  width: 50px;
  height: 50px;
  background-image: url(../img/icon/plus.png);
  background-position: center;
  background-repeat: no-repeat;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
/*gallary end*/


/*material start*/
.material-list .rows{
  display: flex;
  column-gap: 28px;
  row-gap: 60px;
  padding: 3px 0 51px;
  flex-wrap: wrap;
}

.material-list .material-list-item{
  position: relative;
}

.material-list .material-list-item a{
  border-bottom: none ;
}

.material-list .material-list-item picture{
  display: block;
  height: 348px;
  width: 476px;
}

.material-list .material-list-item picture img{
  border-radius: 30px;  
  max-width: 100%;
}

.material-list .material-list-item .title{
  border-radius: 0 30px;
  position: absolute;
  font-size: 18px;
  font-family: "AGOpus";
  color: rgb(255, 255, 255);
  line-height: 1.333;
  bottom: 0 ;
  width: 320px;
  background-color: rgba(0, 0, 0, 0.71);
  padding: 23px 10px 23px 30px;
  transition: all .3s linear;
  text-align: left;
}

.material-list .material-list-item a:hover .title{
  transition: all .3s linear;
  background-color: rgba(107, 147, 36, .71);
}

.material-list ul.pagination{
  display: flex;
  flex-wrap: wrap;
  column-gap: 22px;
  justify-content: center;
  padding: 60px 0 53px;
}

.material-list ul.pagination li{
  list-style: none;
  border-style: solid;
  border-width: 2px;
  border-color: rgb(240, 240, 240);
  border-radius: 50%;
  background-color: rgba(242, 242, 242, 0);
  width: 50px;
  height: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s linear;
}

.material-list ul.pagination li a{
  color: rgb(64, 64, 64);
  border: none ;
  display: block;
  width: 100%;
}

.material-list ul.pagination li.active{
  background-color: rgb(107, 147, 36);
  border-color: rgb(107, 147, 36);
}

.material-list ul.pagination li.active a{
  color: rgb(255, 255, 255);
}

.material-list ul.pagination li:hover{
  background-color: rgba(107, 147, 36, 0.71);
  border: none;
  width: 50px;
  height: 50px;
  transition: all .3s linear;
}

.material-list ul.pagination li:hover a{
  color: rgb(255, 255, 255);
}

.material-list ul.pagination li.control,
.material-list ul.pagination li.disabled{
  display: block;
  border: none;
  padding: 0 58px;
  width: auto;
  height: auto;
}

.material-list ul.pagination li.control img,
.material-list ul.pagination li.disabled img{
  padding-top: 15px;

}

.material-list ul.pagination li.control:hover,
.material-list ul.pagination li.disabled:hover{
  background: none;
}

.material-list .hr2{
  margin: 0 0 6px;
}

/*material-inner*/

.material-inner-h1{
  padding-bottom: 37px;
}

.material-slider,
.material-picture{
  width: 1150px;
  margin: 26px auto 48px ;   
}

.material-inner picture img {
  display: block;
  margin: 0 auto;
  border-radius: 30px;
  width: 1150px;
  height: 494px;
  max-width: 100%;
}
 
.material-inner .slick-prev,
.material-inner .slick-next{
  border-radius: 50%;
  background-color: rgba(107, 147, 36, 0.71);
  width: 50px;
  height: 50px;
  z-index: 5;
}           

.slick-prev:before, 
.slick-next:before{
  content: "";
  width: 100%;
  height: 100%;
} 

.slick-prev{
  background-image: url(../img/icon/slider-prev.png);
  background-repeat: no-repeat;
  background-position: center;
  left: 10px;
}

.slick-next{
  background-image: url(../img/icon/slider-next.png);
  background-repeat: no-repeat;
  background-position: center;
  right: 10px;
}


.material-inner .slick-dots{
  visibility: hidden;
}

.material-inner .slick-dots{
  margin: 0;
}

.material-inner .slick-dots li {
  border-style: solid;
  border-width: 2px;
  border-color: rgb(107, 147, 36);
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0);
  width: 10px;
  height: 10px;
  padding: 0 ;
}

.material-inner .slick-dots li.slick-active {
  background-color: rgb(107, 147, 36);
}

.material-inner .slick-dots li button:before{
  display: none;
}

.material-inner a.material-slider-link{
  position: relative;
  display: block;
  border-bottom: none ;
}

.material-inner a.material-slider-link span{
  display: block;
  position: absolute;
  border-radius: 40px;  
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(64, 64, 64, .25);
  opacity: 0;
  transition: all .3s linear;
}

.material-inner a.material-slider-link:hover span{
  opacity: 1;
  transition: all .3s linear;
}

.material-inner a.material-slider-link span:before{
  content: "";
  display: block;
  position: absolute;
  border-radius: 50%; 
  background-color: rgb(107, 147, 36);
  opacity: 0.71;
  width: 50px;
  height: 50px;
  background-image: url(../img/icon/plus.png);
  background-position: center;
  background-repeat: no-repeat;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.material-inner .hr2{
  margin: 19px 0 0 0;
}

.material-inner .hr3{
  margin: 20px 0 0 0;
}

.material-inner h2,
.material-inner h3,
.material-inner h4,
.material-inner h5{
  font-family: "AGOpus";
  color: rgb(0, 0, 0);
  line-height: 1.333;
  font-weight: normal;
}

.material-inner h2{
  font-size: 30px;
  margin: 38px 0 12px;
}

.material-inner h3{
  font-size: 28px;
  margin: 0 0 20px;
}

.material-inner h4{
  font-size: 26px;
  margin: 0 0 20px;
}

.material-inner h5{
  font-size: 24px;
  margin: 0 0 20px;
}

.content a.ya-share2__link{
  border-bottom: none ;
}

.ya-share2__container_size_m{
  text-align: center;
}

.ya-share2__list.ya-share2__list_direction_horizontal{
  margin: 50px 0 30px  !important;
}

/*material end*/

/*service start*/
.service-list .rows{
  display: flex;
  column-gap: 28px;
  row-gap: 60px;
  padding: 27px 0 51px;
  flex-wrap: wrap;
}

.service-list .service-list-item{
  position: relative;
  width: 476px;
}

.service-list .service-list-item a{
  border: none ;
  position: relative;
  display: block;
}

.service-list .service-list-item picture{
  display: block;
  height: 297px;
  width: 100%;
}

.service-list .service-list-item picture img{
  border-radius: 35px;  
  max-width: 100%;
}

.service-list .service-list-item a .service-list-price{
  position: absolute;
  background: rgb(0, 0, 0,0.71);
  border-radius: 0 30px 0 30px;
  padding: 22px 15px 23px 40px;
  right: 0;
  top: 0;
  font-family: "AGOpus";
  font-size: 18px;
  color: rgb(255, 255, 255);
  line-height: 1.333;
  text-align: right;
  transition: all .3s linear;
}

.service-list .service-list-item a:hover .service-list-price{
  background: rgb(107, 147, 36,0.71);
  transition: all .3s linear;
}

.service-list .service-list-item a .service-list-icon{
  border-radius: 50%;
  background-color: rgb(107, 147, 36);
  position: absolute;
  width: 100px;
  height: 100px;
  bottom: -35px ;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  }

.service-list .service-list-item .service-list-info{
  max-width: 100%;
  border-radius: 30px;
  background-color: rgb(242, 242, 242);
  padding: 24px 24px 30px  ;
  margin-top: 55px;
  text-align: center;
}

.service-list .service-list-item .service-list-info .service-list-title{
  display: block;
  font-size: 24px;
  font-family: "AGOpus";
  color: rgb(0, 0, 0);
  line-height: 1.2;
  text-align: center;
}

.service-list .service-list-item .service-list-info .service-list-title:hover{
  opacity: 0.6;
}

.service-list .service-list-item .service-list-info .service-list-intro{
  font-size: 15px;
  color: rgb(64, 64, 64);
  line-height: 1.6;
  text-align: center;
  padding: 16px 0 17px ;
}

.service-lists .service-list-item .service-list-info  .service-list-more{
  font-size: 14px;
  color: rgb(64, 64, 64);
  line-height: 1.2;
  text-align: center;
}

.service-list .service-list-item .service-list-info  .service-list-more svg{
  margin-left: 7px;
}

.service-list .service-list-item .service-list-info  .service-list-more svg path{
  fill: rgb(64, 64, 64);
  transition: all .3s linear;
}

.service-list .service-list-item .service-list-info  .service-list-more:hover svg path{
  fill: rgb(107, 147, 36);
  transition: all .3s linear;
}

.content-service .hr1{
  margin-bottom: 41px;
}

.content-service .hr3{
  margin: 20px 0 6px;
}
/*service end*/

/*service inner start*/
.content-service-inner .hr1{
  margin-top: 20px;
}

.content-service-inner .hr4{
//  margin-top: 20px;
}

.service-banner-img{
  width: 1710px;
  margin: 0 auto;
  position: relative;
  margin-bottom: 117px;
}

.service-banner-img img{
  border-radius: 50px;
}

.service-banner-bg{
  width: 1710px;
  margin: 0 auto;
  position: absolute;
  top: 0;
}



.service-banner-img .application {
  border-radius: 50%;
  position: absolute;
  background-color: #6b9324;
  width: 165px;
  height: 165px;
  bottom: -73px;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-size: 18px;
  font-family: "AGOpus";
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  line-height: 1.3;
  text-align: center;
  padding: 60px 20px 0;
}

.service-banner-img .application:hover {
  opacity: 0.8;
}

.content-service-inner h2 {
  font-size: 30px;
  font-family: "AGOpus";
  color: rgb(0, 0, 0);
  line-height: 1.333;
  margin-bottom: 12px;
}

.service-inner-price .title {
  font-size: 30px;
  font-family: "AGOpus";
  color: rgb(0, 0, 0);
  line-height: 1.333;
  text-align: center;
  padding: 5px 0 47px ;
}

.service-inner-price .service-price-item {
  border-radius: 30px;
  background-color: rgb(242, 242, 242);
  height: 92px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 10px 60px;
}

.service-inner-price .service-price-item:last-child {
  margin-bottom: 52px;
}


.service-inner-price .service-price-item .left{
  font-size: 24px;
  font-family: "AGOpus";
  color: rgb(0, 0, 0);
  line-height: 1.2;
  padding-left: 30px;
}

.service-inner-price .service-price-item .right{
  font-size: 24px;
  font-family: "AGOpus";
  color: rgb(107, 147, 36);
  line-height: 1.2;
  padding-right: 30px;
}

.content-service-inner .mainwhychooseus-block .title {
  font-size: 30px;
  font-family: "AGOpus";
  color: rgb(0, 0, 0);
  line-height: 1.2;
  padding: 40px 0 4px ;
}

.service-gallary .title{
  font-size: 30px;
  font-family: "AGOpus";
  color: rgb(0, 0, 0);
  line-height: 1.333;
  text-align: center;
}

.main-faq{
  margin: 60px 0 8px;
  background-color: rgb(242, 242, 242);
}

.main-faq .title{
  font-size: 30px;
  font-family: "AGOpus";
  color: rgb(0, 0, 0);
  line-height: 1.333;
  text-align: center;
  padding: 43px 0 47px ;
}

.main-faq .bottom-text{
  padding-bottom: 40px;
}

.main-faq .bottom-text p{
  margin: 0;
  padding: 0 ;
  font-size: 18px;
  font-family: "Montserrat";
  color: rgb(64, 64, 64);
  line-height: 1.333;
  text-align: center;
  
}

/*service inner end*/

/*reviews start*/
.reviews-item {
  border-radius: 30px;
  background-color: rgb(255, 255, 255);
  display: flex;
  margin-bottom: 60px;
  padding-bottom: 29px;
  padding-right: 32px;
}

.reviews-list{
  padding-top: 3px;
}

.reviews-item .reviews-item-image{
  padding: 36px 32px 0 ;
  border-radius: 50%;
  position: relative;
}

.reviews-item .reviews-item-image:after{
  content: "”";
  font-size: 30px;
  font-family: "AGOpus";
  color: rgb(255, 255, 255);
  line-height: 1.2;
  border-radius: 50%;
  background-color: rgb(107, 147, 36);
  position: absolute;
  width: 35px;
  height: 35px;
  top: 101px;
  right: 32px;
  padding-left: 13px;
  padding-top: 7px;
  }

.reviews-item .reviews-item-text{
  font-size: 15px;
  font-family: "Montserrat";
  color: rgb(64, 64, 64);
  line-height: 1.6;
  flex-grow: 1;
}

.reviews-item .reviews-item-text span{
  display: block;
  font-size: 24px;
  font-family: "AGOpus";
  color: rgb(0, 0, 0);
  line-height: 1.2;
  padding-top: 32px;
  padding-bottom: 8px;
}

.moreblock{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;  
  transition: all .3s linear;
}

.moreblock-open,
.moreblock-close{
  display: none;
  padding-top: 8px;
}

.moreblock-open a{
  color: rgb(64, 64, 64);
  border-color: rgb(64, 64, 64);
}


.content-reviews .btn-more{
  margin-bottom: 53px;
}

/*reviews end*/

/*faq start*/
.faq-item{
  margin-bottom: 60px;
}

.faq-item-question {
  position: relative;
  border-radius: 30px;
  background-color: rgb(255, 255, 255);
  font-size: 24px;
  font-family: "AGOpus";
  color: rgb(0, 0, 0);
  line-height: 1.2;
  padding: 32px 65px 31px 30px;
  
}

.faq-item-question .faqmore{
  position: absolute;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  right: 25px;
  top: 0;
  bottom: 0; 
  margin: auto 0; 
  border: none ;
  background:  rgb(107, 147, 36) url(../img/icon/faq-open.png) center no-repeat;
}

.faq-item-question .faqmore.close{
  background:  rgb(107, 147, 36) url(../img/icon/faq-close.png) center no-repeat;
}

.faq-item-answer {
  display: none;
  border-radius: 30px;
  background-color: rgb(255, 255, 255);
  font-size: 15px;
  color: rgb(64, 64, 64);
  line-height: 1.6;
  padding: 29px 30px 31px 30px ;  
  margin-top: 12px;
}

.faq-list .btn-more{
  margin-bottom: 53px;
}
/*faq end*/

/*about start*/
.content-about .hr1{
  margin: 19px 0 40px 0; 
}

.content-about .hr2{
  margin: 51px 0 40px 0; 
}

.content-about .hr3{
  margin: 41px 0 40px 0; 
}

.content-about .hr4{
  margin: 53px 0 41px 0; 
}


.content-about .slick-list .slick-track:before,
.content-about .slick-list .slick-track:after{
  display: none;
}

.content-about .slick-dots{
  bottom: 17px;
}

.content-about .slick-dots{
  margin: 0;
  display: none;
}

.content-about .slick-dots li {
  border-style: solid;
  border-width: 2px;
  border-color: rgb(107, 147, 36);
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0);
  width: 10px;
  height: 10px;
  padding: 0 ;
}

.content-about .slick-dots li.slick-active {
  background-color: rgb(107, 147, 36);
}

.content-about .slick-dots li button:before{
  display: none;
}

.content-about .slick-prev,
.content-about .slick-next{
  border-radius: 50%;
  background-color: rgba(107, 147, 36, 0.71);
  width: 50px;
  height: 50px;
  z-index: 5;
}           

/*about mission start*/
.mission-block .title{
  font-size: 30px;
  font-family: "AGOpus";
  color: rgb(0, 0, 0);
  line-height: 1.2;
  text-align: center;
}

.mission-block .desc{
  font-size: 18px;
  color: rgb(64, 64, 64);
  line-height: 1.333;
  text-align: center;
  padding: 14px 0 50px ;
}

.mission-slider.slick-dotted.slick-slider{
  margin: 0;
}

.mission-item{
  padding: 23px 31px 40px 31px;
  border-radius: 30px;
  background-color: rgb(242, 242, 242);
  margin-right: 18px;
}

.mission-item .mission-item-icon{
  border-radius: 50%;
  background-color: rgb(107, 147, 36);
  width: 120px;
  height: 120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;  
}

.mission-item .mission-item-title{
  font-size: 24px;
  font-family: "AGOpus";
  color: rgb(0, 0, 0);
  line-height: 1.2;
  text-align: center;
  padding: 18px 0 16px ;
}

.mission-item .mission-item-text{
  font-size: 15px;
  color: rgb(64, 64, 64);
  line-height: 1.6;
  text-align: center;
}
/*about mission end*/

/*about whatdoing start*/
.whatdoing-block .title{
  font-size: 30px;
  font-family: "AGOpus";
  color: rgb(0, 0, 0);
  line-height: 1.2;
  text-align: center;
}

.whatdoing-block .desc{
  font-size: 18px;
  color: rgb(64, 64, 64);
  line-height: 1.333;
  text-align: center;
  padding: 14px 0 50px ;
}

.whatdoing-slider{
  width: 1168px;
  margin: 0 auto;
}

.whatdoing-item{
  width: 168px;
  text-align: center;
}

.whatdoing-item .whatdoing-item-icon{
  display: block;
  border-radius: 50%;
  background-color: rgb(107, 147, 36);
  width: 100px;
  height: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;  
  border-bottom: none ;
  margin: 0 auto;
  transition: all .3s linear;
}

.whatdoing-item .whatdoing-item-icon:hover{
  background-color: rgba(107, 147, 36, 0.8);
  transition: all .3s linear;
}

.whatdoing-item .whatdoing-item-title{
  display: block;
  border-bottom: none ;
  font-size: 18px;
  font-family: "AGOpus";
  color: rgb(0, 0, 0);
  line-height: 1.2;
  padding-top: 18px;
}

.whatdoing-item .whatdoing-item-title:hover span{
  color: rgb(107, 147, 36);
  border-bottom: 1px dashed rgb(107, 147, 36);  
  display: inline-block;
  transition: all .3s linear;
}

.whatdoing-slider .slick-prev{
  left: -108px;
  top: 50px;
  transition: all .3s linear;
} 

.whatdoing-slider .slick-next{
  right: -108px;
  top: 50px;
  transition: all .3s linear;
}

.whatdoing-slider .slick-prev:hover,
.whatdoing-slider .slick-next:hover{
  background-color: #6b9324;
  transition: all .3s linear;
}

.content .whatdoing-btn{
  color: #fff;
  margin: 70px auto 0;
  line-height: 50px;
}

.whatdoing-btn-text{
  font-size: 15px;
  color: rgb(64, 64, 64);
  line-height: 1.6;
  text-align: center;
  padding-top: 35px;
}

.whatdoing-slider .slick-dots{
  display: none !important;
}
/*about whatdoing end*/

/*about whychooseus start*/
.whychooseus-block .title{
  font-size: 30px;
  font-family: "AGOpus";
  color: rgb(0, 0, 0);
  line-height: 1.2;
  text-align: center;
}

.whychooseus-block .desc{
  font-size: 18px;
  color: rgb(64, 64, 64);
  line-height: 1.333;
  text-align: center;
  padding: 14px 0 50px ;
}

.whychooseus-slider.slick-dotted.slick-slider{
  margin: 0;
}

.whychooseus-item{
  padding: 23px 31px 40px 31px;
  border-radius: 30px;
  background-color: rgb(242, 242, 242);
  margin-left: 11px;
  margin-right: 11px;
}



.whychooseus-item .whychooseus-item-icon{
  border-radius: 50%;
  background-color: rgb(107, 147, 36);
  width: 120px;
  height: 120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;  
}

.whychooseus-item .whychooseus-item-title{
  font-size: 24px;
  font-family: "AGOpus";
  color: rgb(0, 0, 0);
  line-height: 1.2;
  text-align: center;
  padding: 18px 0 16px ;
}

.whychooseus-item .whychooseus-item-text{
  font-size: 15px;
  color: rgb(64, 64, 64);
  line-height: 1.6;
  text-align: center;
}
/*about whychooseus end*/

/*about howwework start*/
.howwework-block{
  margin-top: 58px;
  padding: 44px 0 13px 0;
}

.howwework-block .title{
  font-size: 30px;
  font-family: "AGOpus";
  color: rgb(0, 0, 0);
  line-height: 1.2;
  text-align: center;
}

.howwework-block .desc{
  font-size: 18px;
  color: rgb(64, 64, 64);
  line-height: 1.333;
  text-align: center;
  padding: 14px 0 50px ;
}

.howwework-list .howwework-item {
  border-radius: 30px;
  background-color: rgb(255, 255, 255);
  display: flex;
  margin: 0 9px 44px 9px;
  padding: 36px 32px ;
  gap: 32px;
}

.howwework-list .howwework-item .howwework-item-number{
  border-radius: 50%;
  background-color: rgb(242, 242, 242);
  width: 100px;
  height: 100px;
  font-size: 48px;
  font-family: "AGOpus";
  color: rgb(107, 147, 36);
  line-height: 1.2;
  text-align: center;
  padding-top: 22px;
}

.howwework-list .howwework-item .howwework-item-text-block{
  max-width: calc(100% - 132px);
  width: 100%;
}

.howwework-list .howwework-item .howwework-item-title{
  font-size: 24px;
  font-family: "AGOpus";
  color: rgb(0, 0, 0);
  line-height: 1.2;
  margin-top: -4px;
  padding-bottom: 8px;
}

.howwework-list .howwework-item .howwework-item-text{
  font-size: 15px;
  color: rgb(64, 64, 64);
  line-height: 1.6;
  flex-wrap: wrap;  
}
/*about howwework end*/

/*about galleryworks start*/
.galleryworks-block .title{
  font-size: 30px;
  font-family: "AGOpus";
  color: rgb(0, 0, 0);
  line-height: 1.2;
  text-align: center;
  padding-top: 46px;
}

.galleryworks-block .desc{
  font-size: 18px;
  color: rgb(64, 64, 64);
  line-height: 1.333;
  text-align: center;
  padding: 14px 0 50px ;
}

.galleryworks-block .gallary-list .gallary-list-item .title{
  padding-top: 28px;
}

.galleryworks-block  .gallary-list .gallary-list-item{
  padding-bottom: 0;
}

.galleryworks-block .whatdoing-btn {
    margin: 52px auto 0;
}

.galleryworks-block .slick-prev, 
.galleryworks-block .slick-next{
  display: none !important;
}
/*about galleryworks end*/

/*about documents start*/
 .documents-block .title{
  font-size: 30px;
  font-family: "AGOpus";
  color: rgb(0, 0, 0);
  line-height: 1.2;
  text-align: center;
  padding-bottom: 46px;
}

.documents-slider{
  width: 1092px;
  margin: 0 auto;
} 

.documents-slider.slick-dotted.slick-slider{
  margin-bottom: 52px;
  }

.documents-slider .slick-dots{
  display: none !important;
}

.documents-slider .slick-prev{
  left: -150px;
  transition: all .3s linear;
} 

.documents-slider .slick-next{
  right: -150px;
  transition: all .3s linear;
}

.documents-slider .slick-prev:hover,
.documents-slider .slick-next:hover{
  background-color: #6b9324;
  transition: all .3s linear;
}

.documents-item{
  margin: 0 19px;
}

.documents-item a{
  border-bottom: none ;
  display: block;
  position: relative;
}

.documents-item picture{
  display: block;
}

.documents-item picture img{
  border-radius: 40px;  
  max-width: 100%;
}

.documents-item a span{
  display: block;
  position: absolute;
  border-radius: 40px;  
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(64, 64, 64, .25);
  opacity: 0;
  transition: all .3s linear;
}

.documents-item a:hover span{
  opacity: 1;
  transition: all .3s linear;
}

.documents-item a span:before{
  content: "";
  display: block;
  position: absolute;
  border-radius: 50%; 
  background-color: rgb(107, 147, 36);
  opacity: 0.71;
  width: 50px;
  height: 50px;
  background-image: url(../img/icon/plus.png);
  background-position: center;
  background-repeat: no-repeat;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
/*about documents end*/
/*about end*/

/*main start*/
.main .hr1{
  margin: 6px 0 40px 0; 
}

.main .hr2{
  margin: 50px 0 40px 0; 
}

.main .hr3{
  margin: 45px 0 0 0; 
}

.main .slick-dotted.slick-slider {
    margin-bottom: 0px;
}

.main .title{
  font-size: 48px;
  font-family: "AGOpus";
  color: rgb(0, 0, 0);
  line-height: 1.2;
}

.main .slick-list .slick-track:before,
.main .slick-list .slick-track:after{
  display: none;
}

.main .slick-dots{
  bottom: 17px;
}

.main .slick-dots{
  margin: 0;
  display: none;
}

.main .slick-dots li {
  border-style: solid;
  border-width: 2px;
  border-color: rgb(107, 147, 36);
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0);
  width: 10px;
  height: 10px;
  padding: 0 ;
}

.main .slick-dots li.slick-active {
  background-color: rgb(107, 147, 36);
}

.main .slick-dots li button:before{
  display: none;
}

.main .slick-prev,
.main .slick-next{
  border-radius: 50%;
  background-color: rgba(107, 147, 36, 0.71);
  width: 50px;
  height: 50px;
  z-index: 5;
} 

/*main banner start*/
.main-banner h1 {
  font-size: 100px;
  font-family: "MiamaNueva";
  color: rgb(0, 0, 0);
  line-height: 1.2;
  text-align: center;
  margin: 70px 0 90px ;
}

.main-banner-img{
  width: 1710px;
  margin: 0 auto;
  position: relative;
  max-width: 100%;
  margin-bottom: 129px;
}

.main-banner-img img{
  max-width: 100%;
}

.main-banner-text-block{
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 800px;
}

.main-banner-text-block .banner-title{
  font-size: 24px;
  font-family: "AGOpus";
  color: rgb(0, 0, 0);
  line-height: 1.2;
  padding-top: 8px;
}

.main-banner-text-block .desc{
  font-size: 18px;
  color: rgb(64, 64, 64);
  line-height: 1.333;
  padding-top: 8px;
}

.main-banner-img .application {
  border-radius: 50%;
  position: absolute;
  background-color: #6b9324;
  width: 165px;
  height: 165px;
  bottom: -73px;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-size: 18px;
  font-family: "AGOpus";
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  line-height: 1.3;
  text-align: center;
  padding: 60px 20px 0;
}

.main-banner-img .application:hover {
  opacity: 0.8;
}
/*main banner end*/

/*main about start*/
.mainabout{
  display: flex;
  gap: 14px;
}

.mainabout-mobile{
  display: none;
}

.mainabout .left,
.mainabout .right{
  width: calc(50% - 7px);
}

.mainabout .left{
  background:  url(../img/mainabout-bg.png) 89% 185px no-repeat;
}

.mainabout .title{
  padding: 13px 0 0 ;
}

.mainabout .desc{
  font-size: 18px;
  color: rgb(64, 64, 64);
  line-height: 1.333;
}

.mainabout-list{
  width: 200px;
  margin: 52px 85px;
}

.mainabout-list .mainabout-item{
  padding-bottom: 27px;
}

.mainabout-item .mainabout-item-icon{
  border-radius: 50%;
  background-color: rgb(107, 147, 36);
  width: 100px;
  height: 100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center; 
   
}

.mainabout-item .mainabout-item-title{
  font-size: 48px;
  font-family: "AGOpus";
  color: rgb(64, 64, 64);
  line-height: 1.2;
  text-align: center;
  padding: 6px 0 3px 0;
}

.mainabout-item .mainabout-item-text{
  font-size: 18px;
  font-family: "AGOpus";
  color: rgb(0, 0, 0);
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
}

.mainabout-content{
  padding: 23px 0 0 ;
}

.mainabout-btn-block{
  display: flex;
  flex-wrap: wrap;
  align-items: center; 
  gap: 33px;
  padding-top: 12px;
  padding-bottom: 60px;
}

.content .mainabout-btn {
  color: #fff;
  line-height: 50px;
}

.mainabout-btn-text {
    font-size: 15px;
    color: rgb(64, 64, 64);
    line-height: 1.6;
}

.mainabout-slider-pk{
  width: 500px;
  margin: 0 auto;
}

.mainabout-slider-pk .slick-dots{
  display: none !important;
}

.mainabout-slider-pk .slick-prev{
  left: -114px;
  top: 50px;
  transition: all .3s linear;
} 

.mainabout-slider-pk .slick-next{
  right: -114px;
  top: 50px;
  transition: all .3s linear;
}

.mainabout-slider-pk .slick-prev:hover,
.mainabout-slider-pk .slick-next:hover{
  background-color: #6b9324;
  transition: all .3s linear;
}
/*main about end*/

/*main mainwhatdoing start*/
.mainwhatdoing .desc{
  font-size: 18px;
  color: rgb(64, 64, 64);
  line-height: 1.333;
  padding: 9px 0 16px ;
}

.mainwhatdoing .text{
  font-size: 15px;
  color: rgb(64, 64, 64);
  line-height: 1.6;
  width: 50%;
  float: right;
  padding-left: 7px;
  padding-bottom: 52px;
}

.clear{
  clear: both;
}

.mainservice-slider .service-list-item{
    margin: 0 10px;
}

.mainservice-slider .service-list-item.top-info .service-list-info{
  margin-bottom: 21px;
  margin-top: 0;
}

.mainservice-slider .slick-list{
  padding-bottom: 106px;
}

.main .mainservice-slider .slick-prev, 
.main .mainservice-slider .slick-next{
  bottom: -30px;
  top: auto;
  transition: all .3s linear;
  width: 60px;
  height: 60px;
}

.main .mainservice-slider .slick-prev{
  left: 0;
}

.main .mainservice-slider .slick-next{
  right: 0;
}

.main .mainservice-slider .slick-prev:hover,
.main .mainservice-slider .slick-next:hover{
  background-color: #6b9324;
  transition: all .3s linear;
}
/*main mainwhatdoing end*/

/*main mainwhychooseus start*/
.mainwhychooseus-block{
  position: relative;
}

.mainwhychooseus-left-bg{
  display: block;
  position: absolute;
  left: 0;
  top: -62px
}

.mainwhychooseus-right-bg{
  display: block;
  position: absolute;
  right: 0;
  top: -62px
}

.mainwhychooseus-block .title{
  text-align: center;
}

.mainwhychooseus-block .desc{
  text-align: center;
  font-size: 18px;
  color: rgb(64, 64, 64);
  line-height: 1.333;
  padding: 10px 0 50px ;
}

.mainwhychooseus-block .whychooseus-item,
.whychooseus-block .whychooseus-item,
.mission-item{
  margin-top: 50px ;
  margin-bottom: 50px ;
  position: relative;
}

.mainwhychooseus-block .whychooseus-item-img,
.whychooseus-block .whychooseus-item-img,
.mission-item .whychooseus-item-img{
  position: absolute;
  left: 0;
  top: -50px;
  transition: all .5s linear;
  opacity: 0;
}

.mainwhychooseus-block .whychooseus-item-img:hover,
.whychooseus-block .whychooseus-item-img:hover,
.mission-item .whychooseus-item-img:hover{
  transition: all .5s linear;
  opacity: 1;
}


.mainwhychooseus-block .whychooseus-item-img img,
.whychooseus-block .whychooseus-item-img img,
.mission-item .whychooseus-item-img img{
  border-radius: 35px;
}


/*main mainwhatdoing end*/

/*main maingalleryworks start*/
.maingalleryworks-block .title{ 
  padding-top: 41px;
}
/*main maingalleryworks end*/

/*main mainreviews start*/
.mainreviews-block{
  margin-top: 60px;
  padding: 56px 0 ;
}  

.mainreviews-block .title{
  margin-top: -5px;
}

.mainreviews-block .desc{
  font-size: 18px;
  color: rgb(64, 64, 64);
  line-height: 1.333;
  padding: 8px 0 64px ;
}

.mainreviews-block .reviews-list{
  margin: 0 10px;
}

.mainreviews-block .reviews-item {
  margin-bottom: 30px;
}

.mainreviews-block .content{
  display: flex;
}

.mainreviews-block .left,
.mainreviews-block .right{
  width: 50%;
}

.mainreviews-block .content .right{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.mainreviews-block .content .right img{
  border-radius: 40px;
  display: block;
}

.mainreviews-block .img1,
.mainreviews-block .img2{
  margin-left: 33px;
}

.mainreviews-block .img1{
  margin-bottom: 26px;
}

.mainreviews-block .img3{
  margin-left: 14px;
}
/*main mainreviews end*/

/*main action start*/
.action-block{
  background:  url(../img/action-bg.jpg) center  no-repeat;
  width: 1486px;
  height: 566px;
  margin: 50px auto;
  color: #fff;
  border-radius: 40px;    
}

.action-block .title{
  position: relative;
  color: #fff;
  text-align: center;
  font-size: 48px;
  padding: 58px 0 57px 0;
  margin: 0 auto;
  width: 200px;
}

.action-block .title-icon{
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  position: absolute;
  width: 100px;
  height: 100px;
  font-size: 36px;
  font-family: "AGOpus";
  color: rgb(64, 64, 64);
  line-height: 1.2;
  text-align: center;
  right: -90px;
  top: 40px;
  padding-top: 30px;
  }

.action-block .title-icon:after{
  content: "%";
  border-radius: 50%;
  background-color: rgb(107, 147, 36);
  position: absolute;
  width: 35px;
  height: 35px;
  font-size: 18px;
  font-family: "AGOpus";
  color: rgb(255, 255, 255);
  line-height: 1.2;
  text-align: center;
  top: 0;
  right: 0;
  padding-top: 6px;
}

.action-block .desc{
  font-size: 18px;
  color: rgb(255, 255, 255);
  line-height: 1.333;
  text-align: center;
}

.action-block .text{
  font-size: 18px;
  color: rgb(255, 255, 255);
  line-height: 1.333;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 0 37px;
}

.action-block .footer-form input[type=text],
.action-block .footer-form input[type=tel], 
.action-block .footer-form input[type=email]{
  border-color: #fff;
  background: #fff;
}

.action-block .footer-form .button-group{
  padding-top: 46px;
}

.action-block .checkbox-input{
  background-color: #fff;
}

.action-block .form-user-police label,
.action-block .form-user-police label a{
  color: #fff;
  border-color: #fff;
}
.action-block .checkbox-input::after {
  color: rgb(107, 147, 36);
}

.action-block .footer-form-ok {
  border-radius: 25px;
  background-color: rgba(107, 147, 36, 0.71);
  width: 880px;
  height: 192px;
  padding: 26px 0;
}

.action-block .modal h4, 
.action-block .footer-form h4{
  color: #fff;
}

.action-block .footer-form .footer-form-ok img{
  padding-top: 0;
}

.action-block .footer-form .footer-form-ok .button-group{
  padding: 0 ;
}

.action-block .footer-form .footer-form-ok .modal-desc{
  margin-bottom: 32px;
}
/*main action end*/

/*main mainfaq start*/
.mainfaq-block{
  padding: 51px 0 58px;
}

.mainfaq-block .title{
  text-align: center;
}

.mainfaq-block .desc{
  text-align: center;
  font-size: 18px;
  color: rgb(64, 64, 64);
  line-height: 1.333;
  padding: 9px 0 67px ;
}

.mainfaq-block .faq-list{
  margin: 0 9px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-bottom: 20px;
}

.mainfaq-block .faq-item{
  margin-bottom: 24px;  
}

.mainfaq-block .mainabout-btn{
  margin: 0 auto;
  
}
/*main mainfaq end*/

/*main mainmaterial start*/
.mainmaterial-block{
  padding: 44px 0 53px ;
}

.mainmaterial-block .title{
  text-align: center;
}

.mainmaterial-block .desc{
  font-size: 18px;
  color: rgb(64, 64, 64);
  line-height: 1.333;
  text-align: center;
  padding: 9px 0 52px ;
}

.mainmaterial-block .material-list .material-list-item{
  padding: 0 10px ;
}

.content .mainmaterial-block .whatdoing-btn {
    margin-top: 45px;
}

.mainmaterial-block .slick-arrow{
  display: none !important;
}
/*main mainmaterial end*/

/*main maincontact start*/
.maincontact-map{
  position: relative;
  padding-bottom: 17px;
}

.mainfooter-form2{
  display: none;
}

.maincontact-block #map{
  max-width: 100%;
  border-radius: 30px;
  width: 1710px;
  height: 486px;
  margin: 0 auto;
  overflow: hidden;
  margin-top: 49px;
  margin-bottom: 51px;  
}

.maincontact-block .title{
  text-align: center;
  padding: 39px 0 27px ;
}

.maincontact-form {
  border-radius: 30px;
  background-image: -moz-linear-gradient( -45deg, rgb(107,147,36) 0%, rgb(31,79,51) 100%);
  background-image: -webkit-linear-gradient( -45deg, rgb(107,147,36) 0%, rgb(31,79,51) 100%);
  background-image: -ms-linear-gradient( -45deg, rgb(107,147,36) 0%, rgb(31,79,51) 100%);
  position: absolute;
  left: 320px;
  top: -55px;
  width: 356px;
  height: 596px;
}

.maincontact-form .maincontact-form-title {
  font-size: 24px;
  font-family: "AGOpus";
  color: rgb(255, 255, 255);
  line-height: 1.2;
  text-align: center;
  padding-top: 32px;
}

.maincontact-form .maincontact-form-desc {
  font-size: 14px;
  color: rgb(255, 255, 255);
  line-height: 1.714;
  text-align: center;
  padding-top: 25px;
  padding-bottom: 13px;
}

.maincontact-form .footer-form{
  width: auto;
}

.maincontact-form .footer-form input[type=text], 
.maincontact-form .footer-form input[type=tel], 
.maincontact-form .footer-form input[type=email]{
  border-color: #fff;
  margin: 0 auto;
  display: block;
  margin-top: 22px;
  color: #fff;
}

.maincontact-form .footer-form input[type=text]::placeholder, 
.maincontact-form .footer-form input[type=tel]::placeholder, 
.maincontact-form .footer-form input[type=email]::placeholder{
  color: rgb(255, 255, 255);
}

.maincontact-form .footer-form .btn {
  background: rgb(255, 255, 255);
  font-size: 15px;
  color: rgb(64, 64, 64);
  margin-top: 8px;
}

.maincontact-form .footer-form .btn:before {
  display: none;
}

.maincontact-form .footer-form .form-user-police {
  padding-top: 28px;
  display: block;
  text-align: center;
}

.maincontact-form .footer-form .form-user-police input {
    display: block;
    margin: 0 auto 17px;    
}

.maincontact-form .checkbox-input {
    background-color: #fff;
}

.maincontact-form .checkbox-input::after {
    color: rgb(107, 147, 36);
}

.maincontact-form .form-user-police label, 
.maincontact-form .form-user-police label a {
  font-size: 14px;
  color: #fff;
  border-color: #fff;
  line-height: 1.714;
}

.maincontact-form .footer-form .footer-form-ok img {
    padding: 120px 0 0 22px;
}

.maincontact-form .footer-form .footer-form-ok h4{
  color: #fff;
  padding-top: 45px;
}    

.maincontact-form .footer-form .footer-form-ok .modal-desc{
  color: #fff;
  width: 240px;
  margin: 0 auto;
  padding: 7px 0 28px ;
}




/*main maincontact end*/

/*main end*/