/*=========
Font load
===========*/
@import url('https://fonts.googleapis.com/css2?family=Bellota+Text:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Kaisei+Opti&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap");
@font-face {
  font-family: 'optima';
  src: url('../fonts/Optima.ttc') format('ttc');
  font-weight: normal;
  font-style: normal;

}
/*global area*/
/*----------------------------------------------------*/
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.875;
  color: var(--body-color);
  font-family: var(--body-font);
  -moz-osx-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
}

.headline h1,
.headline h2,
.headline h3,
.headline h4,
.headline h5,
.headline h6 {
  margin: 0;
  font-weight: normal;
  font-family: var(--heading);
}

p {
  font-size: 18px;
  line-height: 30px;
}

.agc-home {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.875;
  color: var(--body-color-2);
  font-family: var(--body-font-2);
  -moz-osx-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
}
.agc-home .scrollup {
  background-color: var(--main-color-2);
}

.agc-home .container {
  max-width: 1425px;
}

.scrollup {
  width: 55px;
  right: 20px;
  z-index: 5;
  height: 55px;
  bottom: 20px;
  display: none;
  position: fixed;
  border-radius: 100%;
  line-height: 55px;
  /* background-color: var(--main-color); */
  background-color: #65725e;
}

.scrollup i {
  color: #fff;
}

.agc-home .scrollup {
  background-color: var(--main-color-2);
}

.headline-2 h1,
.headline-2 h2,
.headline-2 h3,
.headline-2 h4,
.headline-2 h5,
.headline-2 h6 {
  margin: 0;
  font-weight: normal;
  font-family: var(--heading-2);
}

.no-padding {
  padding: 0;
}

.agdev-appointment-form-wrap form button, .agdev-btn a {
  z-index: 1;
  width: 195px;
  height: 60px;
  font-weight: 600;
  border-radius: 5px;
  position: relative;
  color: var(--white-color);
  font-family: var(--heading);
  background-color: var(--main-color);
}
.agdev-appointment-form-wrap form button:before, .agdev-btn a:before {
  top: 10px;
  left: 10px;
  z-index: -2;
  width: 100%;
  content: "";
  height: 100%;
  position: absolute;
  /* border-radius: 5px; */
  border-radius: 1px;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  border: 1px solid var(--black-color);
}
.agdev-appointment-form-wrap.white-asset form button:before, .agdev-btn.white-asset a:before {
  border: 1px solid #ffffff;
}
.agdev-appointment-form-wrap form button:after, .agdev-btn a:after {
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  content: "";
  height: 100%;
  /* border-radius: 2px; */
  border-radius: 1px;
  position: absolute;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  /* background-color: var(--main-color); */
  background-color: #a7ad99;
  /* background-color: #232322; */
}
.agdev-btn.white-cta a {
  color: #232323 !important;
}
.agdev-btn.white-cta a:after {
  background-color: #ffffff !important;
}
.agdev-appointment-form-wrap form button:hover:before, .agdev-btn a:hover:before {
  top: 0px;
  left: 0px;
}
.agdev-appointment-form-wrap form button:hover:after, .agdev-btn a:hover:after {
  /* background-color: var(--black-color); */
  background-color: #58694f;
}

@-webkit-keyframes Move_animation_1 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  75% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes Move_animation_1 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  75% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.agdev-btn-2 a {
  z-index: 1;
  color: #fff;
  width: 195px;
  height: 60px;
  font-weight: 600;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  font-family: var(--heading);
  background-color: var(--black-color);
}
.agdev-btn-2 a:before {
  top: 17px;
  right: 45px;
  z-index: -1;
  width: 25px;
  content: "";
  height: 25px;
  position: absolute;
  border-radius: 100%;
  -webkit-transition: 800ms all ease;
  transition: 800ms all ease;
  background-color: var(--main-color);
}
.agdev-btn-2 a:hover:before {
  -webkit-animation: Move_animation_1 12s infinite linear alternate;
          animation: Move_animation_1 12s infinite linear alternate;
}

.agdev-section-title .sub-title,
.agdev-section-title-2 .sub-title {
  font-weight: 700;
  letter-spacing: 3px;
  /* color: var(--main-color); */
  color: #a7ad99;
  font-family: var(--heading);
  font-size: 18px;
}
.agdev-section-title h2,
.agdev-section-title-2 h2 {
  font-size: 45px;
  font-weight: 600;
  padding: 10px 0px 20px;
  color: var(--black-color);
  font-family: var(--heading-2);
}
.agdev-section-title.text-center,
.agdev-section-title-2.text-center {
  margin: 0 auto;
  max-width: 670px;
}

.agdev-section-title-2 .sub-title {
  padding-left: 35px;
  position: relative;
}
.agdev-section-title-2 .sub-title:before {
  top: 0;
  left: 2px;
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  background-repeat: no-repeat;
  background-image: url(../img/shape/title-shape.png);
}
.agdev-section-title-2 h2 {
  font-weight: 500;
  padding: 20px 0 30px;
}
.agdev-section-title-2 h2 span {
  font-weight: 700;
}
.agdev-section-title-2 p {
  line-height: 1.875;
}

.acrk-img-shape1,
.acrk-img-shape2 {
  top: 0;
  right: 0;
  width: 200px;
  height: 155px;
}
.acrk-img-shape1:before, .acrk-img-shape1:after,
.acrk-img-shape2:before,
.acrk-img-shape2:after {
  top: 0;
  right: 0;
  content: "";
  width: 100px;
  height: 52px;
  position: absolute;
  background-color: var(--white-color);
}
.acrk-img-shape1:after,
.acrk-img-shape2:after {
  bottom: 0;
  top: auto;
}
.acrk-img-shape1 i,
.acrk-img-shape2 i {
  left: 2px;
  top: 52px;
  height: 52px;
  width: 100px;
  position: absolute;
  background-color: var(--white-color);
}

.acrk-img-shape2 {
  left: 0;
  bottom: 0;
  top: auto;
}
.acrk-img-shape2:before, .acrk-img-shape2:after {
  left: 0;
  right: auto;
}
.acrk-img-shape2 i {
  right: 2px;
  left: auto;
}

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

.agdev-testimonial-slider .slick-dots li, .agdev-project-slider .slick-dots li, .agdev-service-details-testimonial-slider .slick-dots li {
  height: 5px;
  width: 25px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--black-color);
}
.agdev-testimonial-slider .slick-dots li button, .agdev-project-slider .slick-dots li button, .agdev-service-details-testimonial-slider .slick-dots li button {
  display: none;
}
.agdev-testimonial-slider .slick-dots li:hover, .agdev-project-slider .slick-dots li:hover, .agdev-service-details-testimonial-slider .slick-dots li:hover, .agdev-testimonial-slider .slick-dots li.slick-active, .agdev-project-slider .slick-dots li.slick-active, .agdev-service-details-testimonial-slider .slick-dots li.slick-active {
  background-color: var(--main-color);
}

.inner-page-padding {
  padding: 125px 0px;
}

.agdev-pagination {
  margin-top: 35px;
}
.agdev-pagination li a {
  width: 45px;
  height: 45px;
  color: var(--black-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0px 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #dcdcdc;
}
.agdev-pagination li a:hover, .agdev-pagination li a.active {
  color: var(--main-color);
  border: 1px solid var(--main-color);
}

.padding-top-120 {
  padding-top: 125px;
}

.agdev-slider-inner-item {
  padding: 0 15px;
}

/*---------------------------------------------------- */
/*Header area*/
/*----------------------------------------------------*/
.agdev-header-section .brand-logo {
  max-width: 150px;
}
.agdev-header-section .navbar-nav {
  display: inherit;
}
.agdev-header-section .dropdown {
  position: relative;
}
.agdev-header-section .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  clip: inherit;
  -webkit-transform: scaleY(1);
  -khtml-transform: scaleY(1);
  transform: scaleY(1);
}
.agdev-header-section .dropdown-menu {
  left: 0;
  top: 68px;
  z-index: 100;
  margin: 0px;
  padding: 20px 0;
  height: auto;
  min-width: 250px;
  display: block;
  border: none;
  border-radius: 0;
  position: absolute;
  opacity: 0;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  transform-origin: 0 0 0;
  -webkit-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  -o-transform-origin: 0 0 0;
  text-align: left;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.agdev-header-section .dropdown-menu .dropdown-menu {
  top: 30px;
  left: 250px;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  opacity: 0 !important;
}
.agdev-header-section .dropdown-menu .dropdown-menu a {
  font-size: 12px;
  font-weight: 600;
  color: #1a2428;
}
.agdev-header-section .dropdown-menu .dropdown-menu a:before {
  display: none;
}
.agdev-header-section .dropdown-menu li {
  display: block;
  margin: 0 !important;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.agdev-header-section .dropdown-menu li:last-child {
  border-bottom: none;
}
.agdev-header-section .dropdown-menu li:after {
  display: none;
}
.agdev-header-section .dropdown-menu li:hover .dropdown-menu {
  top: 0;
  opacity: 1 !important;
}
.agdev-header-section .dropdown-menu a {
  width: 100%;
  display: block;
  position: relative;
  padding: 10px 30px !important;
  color: #1a2428 !important;
  font-weight: 600 !important;
  font-size: 14px !important;
}
.agdev-header-section .dropdown-menu a:before {
  display: none;
}
.agdev-header-section .dropdown-menu a:hover {
  color: var(--main-color) !important;
}
.agdev-header-section .main-navigation li {
  margin: 0px 30px;
}
.agdev-header-section .main-navigation li a {
  font-weight: 600;
  /* color: var(--white-color); */
  color: #1e1e1f;
  text-transform: uppercase;
  padding-bottom: var(--padding-bottom-45);
}
.agdev-header-section .main-navigation li:hover a {
  color: var(--main-color);
}
.agdev-header-section.header-style-one {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 35px 60px;
  position: absolute;
  background-color: var(--black-color-2);
}
.agdev-header-section.header-style-one.inner-page-header {
  background-color: rgba(31, 31, 31, 0.302);
}
.agdev-header-section.header-style-one .header-cta-social {
  /* color: var(--white-color); */
  color: #1e1e1f;
}
.agdev-header-section.header-style-one .header-cta-social .header-cta {
  font-weight: 600;
}
.agdev-header-section.header-style-one .header-cta-social .header-social {
  position: relative;
  margin-left: var(--margin-left-80);
}
.agdev-header-section.header-style-one .header-cta-social .header-social:before {
  top: -10px;
  width: 1px;
  left: -30px;
  content: "";
  height: 40px;
  position: absolute;
  background-color: #363636;
}
.agdev-header-section.header-style-one .header-cta-social .header-social li {
  margin-left: var(--margin-left-20);
}
.agdev-header-section.header-style-one .header-cta-social .header-social li a:hover {
  color: var(--main-color);
}
.agdev-header-section.header-style-one .header-side-btn {
  margin-left: 75px;
}
.agdev-header-section.header-style-one .header-side-btn button {
  color: #fff;
  border: none;
  line-height: 1;
  font-size: 25px;
  position: relative;
  background-color: transparent;
}
.agdev-header-section.header-style-one .header-side-btn button:before {
  top: -10px;
  width: 1px;
  left: -35px;
  content: "";
  height: 40px;
  position: absolute;
  background-color: #363636;
}
.agdev-header-section.inner-page-header {
  background-color: #1c2834;
}

.agdev-header-section.sticky-on {
  top: 0;
  width: 100%;
  z-index: 20;
  position: fixed;
  padding: 30px 60px;
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  background-color: var(--black-color);
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  -webkit-box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.1);
}
.agdev-header-section.sticky-on .dropdown-menu {
  top: 60px;
}
.agdev-header-section.sticky-on.inner-page-header {
  background-color: rgb(31, 31, 31);
}

/*Mobile area*/
/*----------------------------------------------------*/
.mobile_menu {
  display: none;
}

.mobile_logo {
  top: 10px;
  left: -15px;
  display: none;
  position: absolute;
}

.mobile_menu_content {
  top: 0px;
  bottom: 0;
  left: -350px;
  height: 100vh;
  z-index: 101;
  position: fixed;
  width: 310px;
  overflow-y: scroll;
  overflow-y: auto;
  /* background-color: #fff; */
  background-color: #65745c;
  padding: 20px 15px 35px 15px;
  -webkit-box-shadow: 0px 3px 5px rgba(100, 100, 100, 0.19);
          box-shadow: 0px 3px 5px rgba(100, 100, 100, 0.19);
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}
.mobile_menu_content .mobile-main-navigation {
  width: 100%;
}
.mobile_menu_content .mobile-main-navigation .navbar-nav {
  width: 100%;
}
.mobile_menu_content .dropdown:after {
  display: none;
}
.mobile_menu_content .navbar-nav .dropdown-menu {
  position: static !important;
  -webkit-transform: none !important;
          transform: none !important;
}
.mobile_menu_content .mobile-main-navigation .navbar-nav li {
  width: 100%;
  display: block;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.mobile_menu_content .mobile-main-navigation .navbar-nav li a {
  padding: 0;
  width: 100%;
  color: var(--black-color);
  display: block;
  font-weight: 600;
  font-size: 14px;
  font-family: var(--heading);
  text-transform: uppercase;
  padding: 10px 30px 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}
.mobile_menu_content .m-brand-logo {
  width: 180px;
  /* margin: 20px auto; */
  margin: 20px 20px;
}

.mobile_menu_content  .main-navigation li a {
  padding: 0px 0px !important;
  border-right: none !important;
}

.mobile_menu_wrap.mobile_menu_on .mobile_menu_content {
  left: 0px;
  -webkit-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;
}

.mobile_menu_overlay {
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 100;
  right: 0%;
  height: 120vh;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.fav-mobile-ex {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.mobile_menu_overlay_on {
  overflow: hidden;
}

.mobile_menu_wrap.mobile_menu_on .mobile_menu_overlay {
  opacity: 1;
  visibility: visible;
}

.mobile_menu_button {
  right: 15px;
  top: 20px;
  z-index: 5;
  color: #fff;
  display: none;
  font-size: 24px;
  cursor: pointer;
  line-height: 38px;
  position: absolute;
  text-align: center;
}

.mobile_menu .mobile-main-navigation .navbar-nav li a:after {
  display: none;
}
.mobile_menu .mobile-main-navigation .dropdown > .dropdown-menu {
  opacity: 1 !important;
  visibility: visible;
}
.mobile_menu .mobile_menu_content .mobile-main-navigation .navbar-nav .dropdown-menu {
  border: none;
  display: none;
  -webkit-transition: none;
  transition: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 5px 0px;
  width: 100%;
  background-color: transparent;
}
.mobile_menu .mobile_menu_content .mobile-main-navigation .navbar-nav .dropdown-menu li {
  border: none;
  padding: 0 10px;
  line-height: 1;
}
.mobile_menu .mobile_menu_content .mobile-main-navigation .navbar-nav .dropdown-menu li:hover {
  background-color: transparent;
}
.mobile_menu .mobile_menu_content .mobile-main-navigation .navbar-nav .dropdown-menu li a {
  color: var(--black-color) !important;
}
.mobile_menu .mobile_menu_content .mobile-main-navigation .navbar-nav .dropdown-menu li a:hover {
  color: var(--main-color);
  background-color: transparent;
}
.mobile_menu .dropdown {
  position: relative;
}
.mobile_menu .dropdown .dropdown-btn {
  color: #9397a7;
  position: absolute;
  top: 3px;
  right: 0;
  height: 30px;
  padding: 5px 10px;
}
.mobile_menu .dropdown .dropdown-btn.toggle-open {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.mobile_menu .mobile_menu_close {
  color: #D28F51;
  cursor: pointer;
  top: 25px;
  right: 25px;
  font-size: 20px;
  position: absolute;
}

/*// off canvas style*/
/*----------------------------------------------------*/
.sidebar-info-contents {
  position: relative;
}

.sidebar-info-contents .content-inner {
  position: relative;
}

.sidebar-info-contents .content-inner .logo {
  padding-bottom: 20px;
  max-width: 180px;
}

.sidebar-info-contents .content-inner .logo img {
  display: inline-block;
  max-width: 100%;
}

.sidebar-info-contents .content-inner .content-box {
  position: relative;
  margin-top: 50px;
}

.sidebar-info-contents .content-inner h5 {
  color: #fff;
  font-weight: 700;
  margin: 25px 0px 15px;
}

.sidebar-info-contents .content-inner .content-box .text {
  color: #fff;
  margin-bottom: 35px;
}

.sidebar-info-contents .content-inner .social-box {
  position: relative;
  margin-top: 0px;
  padding-left: 0;
  margin-bottom: 30px;
}

.sidebar-info-contents .content-inner .social-box li {
  position: relative;
  display: inline-block;
  margin-right: 5px;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.sidebar-info-contents .content-inner .social-box li a {
  position: relative;
  width: 36px;
  height: 36px;
  color: var(--black-color);
  z-index: 1;
  font-size: 14px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  background-color: #fff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar-info-contents .content-inner .social-box li a:hover {
  color: #fff;
  background-color: var(--main-color);
}

.close-side-widget,
.close-side-widget:hover {
  color: #fff !important;
  font-size: 24px;
}

.xs-sidebar-group .xs-overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  position: fixed;
  pointer-events: none;
  cursor: url(../img/cross-out.png), pointer;
}
.xs-sidebar-group .xs-overlay .loader-area {
  height: 100vh;
}

.xs-sidebar-group.info-group .xs-overlay {
  z-index: 35;
}

.xs-sidebar-group .preloader-wrap {
  padding: 0px;
}

.xs-sidebar-group .loader-area {
  height: 100vh;
}

.xs-sidebar-group.info-group.isActive .preloader-wrap .loader-bg {
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  -webkit-transition: 800ms all cubic-bezier(0.77, 0, 0.175, 1);
  transition: 800ms all cubic-bezier(0.77, 0, 0.175, 1);
}

.xs-sidebar-group.info-group .preloader-wrap .loader-bg {
  left: 0;
  width: 0;
  opacity: 0;
  opacity: 0.95;
  height: 100%;
  -webkit-transition: 800ms all cubic-bezier(0.1, 0.1, 0.1, 1);
  transition: 800ms all cubic-bezier(0.1, 0.1, 0.1, 1);
}

.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}

.xs-sidebar-widget {
  position: fixed;
  right: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  z-index: 999999;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #272727;
  -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  visibility: hidden;
  opacity: 0;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  right: 0;
  -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.sidebar-textwidget {
  padding: 40px;
}

.close-side-widget {
  color: #1768dd;
  font-size: rem(15px);
  display: block;
}

.sidebar-widget-container {
  position: relative;
  top: 150px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in 0.3s;
  transition: all 0.3s ease-in 0.3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
  top: 0px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 1s ease-out 1.2s;
  transition: all 1s ease-out 1.2s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.sidebar-info-contents .gallery-box li {
  margin-bottom: 5px;
}

.tl-thx-header-section.sticky-on {
  top: 0;
  width: 100%;
  z-index: 20;
  position: fixed;
  padding-top: 0;
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  background-color: #fff;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  -webkit-box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.1);
}

/*---------------------------------------------------- */
/*Slider area*/
/*----------------------------------------------------*/
.agdev-slider-section-1 {
  overflow: hidden;
  z-index: 1;
  /* padding: 100px 55px 0px 55px; */
  padding: 0px 0px 0px 0px;
  /* background-color: var(--black-color-2); */
  /* background-color: #408345; */
  /* background: rgb(64,131,69);
  background: -moz-linear-gradient(0deg, rgba(64,131,69,1) 0%, rgba(2,24,4,1) 46%);
  background: -webkit-linear-gradient(0deg, rgba(64,131,69,1) 0%, rgba(2,24,4,1) 46%);
  background: linear-gradient(0deg, rgba(64,131,69,1) 0%, rgba(2,24,4,1) 46%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#408345",endColorstr="#021804",GradientType=1); */

/* background: #a7ad99; */
/* background: #58694f; */

  /* background: rgb(255,255,255);
  background: -moz-linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(50,50,50,1) 46%);
  background: -webkit-linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(50,50,50,1) 46%);
  background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(50,50,50,1) 46%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#323232",GradientType=1); */

  /* background: rgb(88,105,79);
  background: -moz-linear-gradient(180deg, rgba(88,105,79,1) 0%, rgba(167,173,153,1) 46%);
  background: -webkit-linear-gradient(180deg, rgba(88,105,79,1) 0%, rgba(167,173,153,1) 46%);
  background: linear-gradient(180deg, rgba(88,105,79,1) 0%, rgba(167,173,153,1) 46%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#58694f",endColorstr="#a7ad99",GradientType=1); */


  background: rgb(88,105,79);
  background: -moz-linear-gradient(180deg, rgba(88,105,79,1) 0%, rgba(167,173,153,0.30575980392156865) 46%);
  background: -webkit-linear-gradient(180deg, rgba(88,105,79,1) 0%, rgba(167,173,153,0.30575980392156865) 46%);
  background: linear-gradient(180deg, rgba(88,105,79,1) 0%, rgba(167,173,153,0.30575980392156865) 46%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#58694f",endColorstr="#a7ad99",GradientType=1);
}
.agdev-slider-section-1 .slick-list {
  height: 100vh;
}
.agdev-slider-section-1:before, .agdev-slider-section-1:after {
  content: "";
  z-index: -1;
  height: 70px;
  width: 100px;
  bottom: -20px;
  position: absolute;
  background-color: #f4f4f4;
}
.agdev-slider-section-1:before {
  left: -20px;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}
.agdev-slider-section-1:after {
  right: -20px;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}

.agdev-main-slider-item {
  z-index: 1;
  /* padding: 245px 0px 190px; */
  /* padding: 345px 0px 190px; */
  padding: 345px 0px 225px;
}
.btn-trigger-map {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px !important;
}
.btn-trigger-map::after {
  background: #58694f !important;
}
body.modal-is-open {
  overflow: hidden !important;
}

.modal-map-kit {
  width: 100%;
  height: 100%;
  position: fixed;
  overflow: auto;
  top: 0px;
  left: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99999;
}
.modal-map-kit.hide-modal {
  display: none !important;
}
.modal-map-kit.equipamiento-modal {
  background: rgba(0, 0, 0, 0.8);
  background-image: url(../img/bg/map-pattern1.png);
  background-position: left;
}
.modal-map-kit .modal-dialog-bodyplace{
  width: 100%;
  max-width: 96%;
  height: 90vh;
  padding: 20px;
  background: rgb(101,116,92);
  background: -moz-linear-gradient(180deg, rgba(101,116,92,1) 31%, rgba(47,56,28,1) 96%);
  background: -webkit-linear-gradient(180deg, rgba(101,116,92,1) 31%, rgba(47,56,28,1) 96%);
  background: linear-gradient(180deg, rgba(101,116,92,1) 31%, rgba(47,56,28,1) 96%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#65745c",endColorstr="#2f381c",GradientType=1);
  position: relative;
}
.modal-map-kit .modal-dialog-bodyplace.lotificacion{
  /* width: calc(100% + 20px); */
  width: fit-content;
  max-width: 1845px;
  height: auto;
  /* height: 98vh; */
  padding: 10px 10px 0px 10px;
  background: #C2D2A1;
  background: -moz-linear-gradient(180deg, rgba(101,116,92,1) 31%, #C2D2A1 96%);
  background: -webkit-linear-gradient(180deg, rgba(101,116,92,1) 31%, #C2D2A1 96%);
  background: linear-gradient(180deg, rgba(101,116,92,1) 31%, #C2D2A1 96%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#C2D2A1",endColorstr="#C2D2A1",GradientType=1);
  /* border-radius: 10px 10px 10px 10px; */
  border-radius: 0px 0px 0px 0px;
}
.modal-map-kit .modal-dialog-bodyplace.lotificacion canvas {
  /* border: solid 1px #000; */
  cursor: crosshair;
}
.modal-map-kit .modal-dialog-bodyplace.lotificacion canvas:active {
  cursor: grabbing;
}
.modal-map-kit .modal-dialog-bodyplace.smallkit{
  width: 100%;
  max-width: 1000px;
  height: 600px;
  padding: 10px;
  background: rgb(101,116,92);
  background: -moz-linear-gradient(180deg, rgba(101,116,92,1) 31%, rgba(47,56,28,1) 96%);
  background: -webkit-linear-gradient(180deg, rgba(101,116,92,1) 31%, rgba(47,56,28,1) 96%);
  background: linear-gradient(180deg, rgba(101,116,92,1) 31%, rgba(47,56,28,1) 96%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#65745c",endColorstr="#2f381c",GradientType=1);
  position: relative;
}
.modal-map-kit .modal-dialog-bodyplace.flex-split{
  display: flex;
}
.modal-map-kit .modal-dialog-bodyplace .modal-close-trigger{
  position: absolute;
  right: 0px;
  top: -30px;
  text-decoration: none;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.7);
  /* background: #ffffff; */
  /* color: #232323; */
  padding: 0px 15px;
}
.modal-map-kit .modal-dialog-bodyplace.lotificacion .modal-close-trigger{
  right: 20px;
  top: 20px;
}
.modal-map-kit .modal-dialog-bodyplace .modal-close-trigger:hover{
  color: var(--main-color-2);
}
.modal-map-kit .modal-dialog-bodyplace.lotificacion .lotes-render-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
}
.modal-map-kit .modal-dialog-bodyplace.lotificacion .lotes-render-wrapper img{
  width: 100%;
  height: auto;
}
.modal-map-kit .modal-dialog-bodyplace .record-list-wrapper{
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  /* border: solid 1px red; */
  width: 100%;
  max-width: 300px;
  overflow-y: auto;
  padding: 10px;
  border-radius: 5px;
}
.modal-map-kit .modal-dialog-bodyplace .record-list-wrapper h3 {
  color: #232323;
  font-size: 22px;
  font-weight: bold;
  padding-left: 5px;
  margin-bottom: 15px;
}
.modal-map-kit .modal-dialog-bodyplace .record-list-wrapper .list-component-dots {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}
.modal-map-kit .modal-dialog-bodyplace .record-list-wrapper .list-component-dots li{
  list-style: none;
  padding: 0px;
  width: 100%;
}
.modal-map-kit .modal-dialog-bodyplace .record-list-wrapper .list-component-dots li a{
  color: #232323;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  padding: 8px 10px;
  border: solid 1px #dddddd;
  border-radius: 4px;
  gap: 5px;
}
.modal-map-kit .modal-dialog-bodyplace .record-list-wrapper .list-component-dots li a:hover{
  color: #ffffff;
  background: #58694f !important;
}
.modal-map-kit .modal-dialog-bodyplace .record-list-wrapper .list-component-dots li a.active-record{
  color: #ffffff;
  background: #58694f !important;
}
.modal-map-kit .modal-dialog-bodyplace .record-list-wrapper .list-component-dots li a.active-record:hover{
  background: #4e5d46 !important;
}
.modal-map-kit .modal-dialog-bodyplace .record-details{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 20px 20px 20px;
}
.modal-map-kit .modal-dialog-bodyplace .record-details h1{
  color: #ffffff;
}
.modal-map-kit .modal-dialog-bodyplace .record-details p{
  color: #eeeeee;
}
.modal-map-kit .modal-dialog-bodyplace .record-details .img-detailed-record{
  width: auto;
  height: 100%;
  max-height: 360px;
  margin-top: 10px;
  border-radius: 2px;
}
.modal-map-kit .modal-dialog-bodyplace iframe{
  width: 100%;
  /* height: 560px; */
  height: calc(90vh - 40px);
}

.agdev-main-slider-item .agdev-main-slider-img {
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: calc(100% + 60px);
}
.agdev-main-slider-item .agdev-slider-main-text {
  max-width: 650px;
  margin-top: -10px;
}
.agdev-main-slider-item .agdev-slider-main-text:before, .agdev-main-slider-item .agdev-slider-main-text:after {
  top: -160px;
  left: -80px;
  width: 2px;
  content: "";
  height: 0;
  position: absolute;
  -webkit-transition: all 1500ms ease;
  transition: all 1500ms ease;
  background-color: rgba(255, 255, 255, 0.5);
}
.agdev-main-slider-item .agdev-slider-main-text:after {
  top: -110px;
  height: 2px;
  left: -135px;
  width: 0px;
}
.agdev-main-slider-item .agdev-slider-main-text .line-shape {
  bottom: -80px;
  right: 30px;
  height: 350px;
  width: 350px;
}
.agdev-main-slider-item .agdev-slider-main-text .line-shape:before, .agdev-main-slider-item .agdev-slider-main-text .line-shape:after {
  bottom: 0;
  right: -80px;
  width: 2px;
  content: "";
  height: 0px;
  position: absolute;
  -webkit-transition: all 1500ms ease;
  transition: all 1500ms ease;
  background-color: rgba(255, 255, 255, 0.5);
}
.agdev-main-slider-item .agdev-slider-main-text .line-shape:after {
  bottom: 50px;
  height: 2px;
  right: -135px;
  width: 0px;
}
.agdev-main-slider-item .agdev-slider-main-text .slider-sub-text {
  opacity: 0;
  color: var(--main-color);
  font-size: 18px;
  font-weight: 600;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
.agdev-main-slider-item .agdev-slider-main-text h1 {
  color: var(--white-color);
  /* font-size: 80px; */
  /* font-size: 72px; */
  font-size: 65px;
  font-weight: 600;
  line-height: 1.125;
  padding: 15px 0px 50px;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
.agdev-main-slider-item .agdev-slider-main-text .agdev-btn {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
.agdev-main-slider-item .agdev-slider-main-text .agdev-btn a:before {
  border: 1px solid var(--white-color);
}
.agdev-main-slider-item .agdev-slider-main-text .agdev-btn a:hover::after {
  background-color: var(--white-color);
}
.agdev-main-slider-item .agdev-slider-main-text .agdev-btn a:hover {
  color: var(--black-color);
}
.agdev-main-slider-item.slick-current.slick-active .img-zooming {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  -webkit-transition: all 7000ms linear;
  transition: all 7000ms linear;
}
.agdev-main-slider-item.slick-current.slick-active .agdev-slider-main-text:before {
  height: 300px;
}
.agdev-main-slider-item.slick-current.slick-active .agdev-slider-main-text:after {
  width: 300px;
}
.agdev-main-slider-item.slick-current.slick-active .agdev-slider-main-text .line-shape:before {
  height: 300px;
}
.agdev-main-slider-item.slick-current.slick-active .agdev-slider-main-text .line-shape:after {
  width: 300px;
}
.agdev-main-slider-item.slick-current.slick-active .agdev-slider-main-text .slider-sub-text {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 1500ms ease;
  transition: all 1500ms ease;
  -webkit-transition-delay: 900ms;
          transition-delay: 900ms;
}
.agdev-main-slider-item.slick-current.slick-active .agdev-slider-main-text h1 {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 1500ms ease;
  transition: all 1500ms ease;
  -webkit-transition-delay: 1200ms;
          transition-delay: 1200ms;
          font-family: var(--heading-2);
}
.agdev-main-slider-item.slick-current.slick-active .agdev-slider-main-text .agdev-btn {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 1500ms ease;
  transition: all 1500ms ease;
  -webkit-transition-delay: 1500ms;
          transition-delay: 1500ms;
}

.agdev-slider-area .slick-prev,
.agdev-slider-area .slick-next {
  display: none !important;
}
.agdev-slider-area .slick-dots {
  top: 50%;
  left: auto;
  width: auto;
  right: 120px;
  bottom: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.agdev-slider-area .slick-dots li {
  width: 5px;
  height: 25px;
  display: block;
  margin-bottom: 10px;
  background-color: var(--white-color);
}
.agdev-slider-area .slick-dots li.slick-active {
  background-color: var(--main-color);
}

.agdev-slider-section-2 {
  overflow: hidden;
  background-color: #fbfbfb;
}
.agdev-slider-section-2 .slider-social {
  left: 50px;
  z-index: 2;
  bottom: 50px;
}
.agdev-slider-section-2 .slider-social a {
  margin-left: 15px;
  color: var(--black-color);
}
.agdev-slider-section-2 .slider-social a:hover {
  color: var(--main-color);
}

.agdev-main-slider-item-2 {
  padding: 350px 0px 215px;
}
.agdev-main-slider-item-2 .agdev-slider-img-2 {
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
}
.agdev-main-slider-item-2 .agdev-slider-img-2 img {
  width: 100%;
  height: 100%;
}
.agdev-main-slider-item-2 .slider-shape {
  top: 25%;
  opacity: 0;
  left: 160px;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
.agdev-main-slider-item-2 .agdev-slider-main-text {
  max-width: 530px;
}
.agdev-main-slider-item-2 .agdev-slider-main-text .slider-sub-text {
  opacity: 0;
  color: var(--main-color);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 3px;
  font-family: var(--heading);
  padding-left: 35px;
  position: relative;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
.agdev-main-slider-item-2 .agdev-slider-main-text .slider-sub-text:before {
  top: 0;
  left: 2px;
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  background-repeat: no-repeat;
  background-image: url(../img/shape/title-shape.png);
}
.agdev-main-slider-item-2 .agdev-slider-main-text h1 {
  opacity: 0;
  color: var(--black-color);
  font-size: 70px;
  line-height: 1.071;
  font-weight: 600;
  padding: 23px 0px 30px;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
.agdev-main-slider-item-2 .agdev-slider-main-text h1 span {
  font-weight: 700;
}
.agdev-main-slider-item-2 .agdev-slider-main-text p {
  opacity: 0;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 40px;
  font-family: var(--heading);
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
.agdev-main-slider-item-2 .agdev-slider-main-text .agdev-btn-2 {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
.agdev-main-slider-item-2.slick-current.slick-active .agdev-slider-main-text .slider-sub-text {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 1500ms ease;
  transition: all 1500ms ease;
  -webkit-transition-delay: 300ms;
          transition-delay: 300ms;
}
.agdev-main-slider-item-2.slick-current.slick-active .agdev-slider-main-text h1 {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 1500ms ease;
  transition: all 1500ms ease;
  -webkit-transition-delay: 600ms;
          transition-delay: 600ms;
}
.agdev-main-slider-item-2.slick-current.slick-active .agdev-slider-main-text p {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 1500ms ease;
  transition: all 1500ms ease;
  -webkit-transition-delay: 800ms;
          transition-delay: 800ms;
}
.agdev-main-slider-item-2.slick-current.slick-active .agdev-slider-main-text .agdev-btn-2 {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 1500ms ease;
  transition: all 1500ms ease;
  -webkit-transition-delay: 1000ms;
          transition-delay: 1000ms;
}
.agdev-main-slider-item-2.slick-current.slick-active .slider-shape {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 1500ms ease;
  transition: all 1500ms ease;
  -webkit-transition-delay: 1200ms;
          transition-delay: 1200ms;
}

.agdev-main-slider-area-2 .carousel_nav {
  top: 50%;
  left: -100px;
  z-index: 2;
  position: absolute;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.agdev-main-slider-area-2 .carousel_nav:before, .agdev-main-slider-area-2 .carousel_nav:after {
  top: -15px;
  width: 2px;
  content: "";
  height: 60px;
  right: 140px;
  position: absolute;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background-color: var(--black-color);
}
.agdev-main-slider-area-2 .carousel_nav:after {
  top: 0px;
  height: 30px;
  right: 118px;
  background-color: var(--main-color);
}
.agdev-main-slider-area-2 .carousel_nav button {
  color: var(--black-color);
  padding: 0;
  border: none;
  font-weight: 600;
  margin: 0 50px;
  font-family: var(--heading);
  background-color: transparent;
}
.agdev-main-slider-area-2 .carousel_nav button:hover {
  color: var(--main-color);
}

/*---------------------------------------------------- */
/*Service area*/
/*----------------------------------------------------*/
.agdev-service-section {
  padding: 130px 0px;
  background-color: #f4f4f4;
}

.agdev-service-content {
  margin: 0px -15px;
  padding: 0px 15px;
  background-color: var(--white-color);
  -webkit-box-shadow: 0px 0px 50px 0px rgba(35, 31, 32, 0.1);
          box-shadow: 0px 0px 50px 0px rgba(35, 31, 32, 0.1);
}

.agdev-service-item {
  z-index: 1;
  overflow: hidden;
  padding: 70px 45px 95px;
}
.agdev-service-item:before, .agdev-service-item:after {
  top: 38px;
  left: 20px;
  content: "";
  height: 2px;
  width: 100px;
  position: absolute;
  background-color: #efefef;
}
.agdev-service-item:after {
  top: 20px;
  width: 2px;
  left: 38px;
  height: 100px;
}
.agdev-service-item .hover-img {
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
  overflow: hidden;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.agdev-service-item .hover-img:before {
  top: 0;
  left: 0;
  width: 100%;
  content: "";
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
}
.agdev-service-item .hover-img img {
  width: 100%;
  height: 100%;
}
.agdev-service-item .serial-no {
  right: 20px;
  bottom: 20px;
  color: #e8e8e8;
  font-size: 90px;
  line-height: 0.75;
  font-weight: 700;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-family: var(--heading);
}
.agdev-service-item .inner-icon {
  z-index: 1;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  margin-bottom: var(--margin-bottom-50);
}
.agdev-service-item .inner-icon:before {
  z-index: -1;
  width: 50px;
  content: "";
  right: -15px;
  height: 45px;
  bottom: -15px;
  position: absolute;
  border: 5px solid #ebebeb;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.agdev-service-item .agdev-inner-text {
  position: relative;
}
.agdev-service-item .agdev-inner-text h3 {
  font-weight: 700;
  color: var(--black-color);
  font-size: var(--font-24);
  padding-bottom: var(--padding-bottom-20);
}
.agdev-service-item .agdev-inner-text p {
  line-height: 1.625;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  padding-bottom: var(--padding-bottom-20);
}
.agdev-service-item .agdev-inner-text .btn-more {
  font-weight: 600;
  color: var(--black-color);
  font-family: var(--heading);
}
.agdev-service-item .agdev-inner-text .btn-more i {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.agdev-service-item .agdev-inner-text .btn-more:hover {
  color: var(--main-color);
}
.agdev-service-item .agdev-inner-text .btn-more:hover i {
  margin-left: var(--margin-left-10);
}
.agdev-service-item:hover .hover-img, .agdev-service-item.active .hover-img {
  opacity: 1;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
.agdev-service-item:hover .serial-no, .agdev-service-item.active .serial-no {
  color: #fff;
}
.agdev-service-item:hover .agdev-inner-text h3, .agdev-service-item.active .agdev-inner-text h3 {
  color: #fff;
}
.agdev-service-item:hover .agdev-inner-text p, .agdev-service-item.active .agdev-inner-text p {
  color: #fff;
}
.agdev-service-item:hover .agdev-inner-text .btn-more, .agdev-service-item.active .agdev-inner-text .btn-more {
  color: #fff;
}
.agdev-service-item:hover .agdev-inner-text .btn-more:hover, .agdev-service-item.active .agdev-inner-text .btn-more:hover {
  color: var(--main-color);
}
.agdev-service-item:hover .inner-icon:before, .agdev-service-item.active .inner-icon:before {
  opacity: 0.4;
}

.agdev-service-content-2 {
  padding-top: 40px;
}

.agdev-service-item-2 {
  overflow: hidden;
  margin-bottom: 30px;
  background-color: #fff;
  padding: 50px 35px 45px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-box-shadow: 0px 0px 50px 0px rgba(35, 31, 32, 0.1);
          box-shadow: 0px 0px 50px 0px rgba(35, 31, 32, 0.1);
}
.agdev-service-item-2 .service-shape {
  top: -15px;
  right: -10px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.agdev-service-item-2 .inner-icon {
  z-index: 1;
  width: 80px;
  height: 70px;
  margin-bottom: 40px;
  border: 5px solid #ebebeb;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.agdev-service-item-2 .inner-icon:before {
  left: 0;
  right: 0;
  top: -5px;
  content: "";
  z-index: -1;
  width: 28px;
  height: 116%;
  margin: 0 auto;
  position: absolute;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--white-color);
}
.agdev-service-item-2 .inner-icon:after {
  top: 50%;
  left: -5px;
  content: "";
  z-index: -1;
  width: 116%;
  height: 28px;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--white-color);
}
.agdev-service-item-2 .inner-text h3 {
  font-weight: 600;
  padding-bottom: 18px;
  color: #1a1a1a;
  font-size: var(--font-24);
}
.agdev-service-item-2 .inner-text p {
  line-height: 1.75;
  padding-bottom: 30px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.agdev-service-item-2:hover {
  background-color: var(--black-color);
}
.agdev-service-item-2:hover .inner-icon {
  border: 5px solid #2f2f2f;
}
.agdev-service-item-2:hover .inner-icon:before, .agdev-service-item-2:hover .inner-icon:after {
  background-color: var(--black-color);
}
.agdev-service-item-2:hover .inner-text h3, .agdev-service-item-2:hover .inner-text p, .agdev-service-item-2:hover .inner-text .read-more-btn {
  color: var(--white-color);
}

.agdev-service-details-category li {
  margin-bottom: 10px;
}
.agdev-service-details-category li a {
  color: var(--black-color);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 25px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--heading);
  -webkit-box-shadow: 0px 0px 25px 0px rgba(72, 72, 72, 0.08);
          box-shadow: 0px 0px 25px 0px rgba(72, 72, 72, 0.08);
}
.agdev-service-details-category li a:hover, .agdev-service-details-category li a.active {
  color: var(--white-color);
  background-color: var(--main-color);
}

.agdev-project-details-slider .slick-prev, .agdev-service-details-slider .slick-prev, .agdev-project-details-slider .slick-next, .agdev-service-details-slider .slick-next {
  color: var(--white-color);
  width: 40px;
  z-index: 2;
  height: 40px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--black-color);
}
.agdev-project-details-slider .slick-prev:hover, .agdev-service-details-slider .slick-prev:hover, .agdev-project-details-slider .slick-next:hover, .agdev-service-details-slider .slick-next:hover {
  background-color: var(--main-color);
}
.agdev-project-details-slider .slick-next, .agdev-service-details-slider .slick-next {
  right: 18px;
}
.agdev-project-details-slider .slick-prev, .agdev-service-details-slider .slick-prev {
  left: 15px;
}
.agdev-project-details-slider .slick-prev.slick-disabled:before, .agdev-service-details-slider .slick-prev.slick-disabled:before, .agdev-project-details-slider .slick-next.slick-disabled:before, .agdev-service-details-slider .slick-next.slick-disabled:before {
  opacity: 1;
}

.agdev-service-details-slider {
  margin: 0px -15px;
}

.service-details-img-item {
  padding: 0px 15px;
}

.agdev-service-details-progress-wrap {
  margin-bottom: 60px;
}

.agdev-service-details-text-area {
  margin: 45px 0px 25px;
}
.agdev-service-details-text-area h3 {
  color: var(--black-color);
  font-size: 42px;
  font-weight: 600;
  padding-bottom: 35px;
}
.agdev-service-details-text-area p {
  line-height: 1.875;
  padding-bottom: 30px;
}

.agdev-service-details-progress {
  padding: 40px 30px;
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0px 0px 25px 0px rgba(72, 72, 72, 0.08);
          box-shadow: 0px 0px 25px 0px rgba(72, 72, 72, 0.08);
}
.agdev-service-details-progress h3, .agdev-service-details-progress h4 {
  font-size: 36px;
  color: var(--black-color);
  font-weight: 600;
}
.agdev-service-details-progress h4 {
  font-size: 22px;
  padding-bottom: 10px;
}
.agdev-service-details-progress p {
  line-height: 1.875;
}
.agdev-service-details-progress .agdev-skill-progress-bar {
  padding-top: 25px;
}
.agdev-service-details-progress .agdev-skill-progress-bar .progress span {
  display: none;
}
.agdev-service-details-progress .agdev-skill-progress-bar .skill-set-percent {
  margin-bottom: 20px;
}

.service-details-img-wrap {
  margin-bottom: 55px;
}

.agdev-blog-details-main-content .agdev-blog-details-text-wrap li, .agdev-service-details-img-list-wrap li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 25px;
}
.agdev-blog-details-main-content .agdev-blog-details-text-wrap li:before, .agdev-service-details-img-list-wrap li:before {
  top: 0;
  left: 0;
  content: "\f058";
  position: absolute;
  font-weight: 900;
  font-family: "Font Awesome 5 Pro";
}

.agdev-service-details-img-list-wrap p {
  line-height: 1.875;
  padding-bottom: 30px;
}
.agdev-service-details-testimonial-slider {
  padding-top: 35px;
}
.agdev-service-details-testimonial-slider .agdev-testimonial-slider-2 {
  margin: 0px -15px;
}
.agdev-service-details-testimonial-slider .agdev-testimonial-slider-2 .slick-list {
  overflow: visible;
}
.agdev-service-details-testimonial-slider .agdev-testimonial-slider-2 .slick-slide {
  -webkit-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  opacity: 0;
}
.agdev-service-details-testimonial-slider .agdev-testimonial-slider-2 .slick-slide.slick-active {
  opacity: 1;
}
.agdev-service-details-testimonial-slider .service-testimonial-item {
  padding: 0px 15px;
}
.agdev-service-details-testimonial-slider .slick-dots {
  right: 0;
  width: auto;
  position: static;
}

.agdev-service-details-section {
  overflow: hidden;
}

/*---------------------------------------------------- */
/*About area*/
/*----------------------------------------------------*/
.agdev-about-section {
  overflow: hidden;
  padding: 130px 0px;
}

.agdev-about-text-wrapper {
  /* padding-top: 30px; */
  margin-top: -50px;
  max-width: 540px;
}
.agdev-about-text-wrapper .about-bg {
  right: 50px;
  top: 0px;
  transition: 0.5s ease-in-out;
}
.agdev-about-text-wrapper:hover > .about-bg {
  transform: scaleX(-1);
}
.agdev-about-text-wrapper .agdev-year-experience {
  padding: 40px 0px;
}
.agdev-about-text-wrapper .agdev-year-experience h3 {
  font-size: 90px;
  font-weight: 700;
  padding: 30px 45px;
  margin-right: 35px;
  color: var(--main-color);
  background-color: var(--white-color);
  -webkit-box-shadow: 0px 0px 41px 0px rgba(35, 31, 32, 0.1);
          box-shadow: 0px 0px 41px 0px rgba(35, 31, 32, 0.1);
}
.agdev-about-text-wrapper .agdev-year-experience p {
  color: #333333;
  font-size: 24px;
  max-width: 145px;
}

.agdev-about-img-wrapper {
  z-index: 1;
}
.agdev-about-img-wrapper .shape1 {
  z-index: -1;
  right: -40px;
  bottom: -40px;
}

.agdev-about-section-2 {
  overflow: hidden;
  padding: 160px 0 215px;
}
.agdev-about-section-2 .about-shape-1 {
  left: 0;
  z-index: -1;
  right: 255px;
  bottom: 125px;
  margin: 0 auto;
  text-align: center;
}

.agdev-about-text-wrap-2 {
  padding-top: 25px;
  padding-left: 40px;
}

.about-signature-img {
  padding-top: 40px;
  margin-bottom: 60px;
}
.about-signature-img .inner-img {
  width: 120px;
  height: 100px;
  overflow: hidden;
  margin-right: 25px;
  border-radius: 10px;
}
.about-signature-img .inner-text h3 {
  color: var(--black-color);
  font-size: 18px;
  font-weight: 600;
  max-width: 360px;
  line-height: 1.667;
}
.about-signature-img .sign-img {
  right: -45px;
  bottom: -40px;
}
.about-signature-img .about-author {
  margin-top: 20px;
}
.about-signature-img .about-author h4 {
  color: var(--black-color);
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 5px;
}
.about-signature-img .about-author span {
  font-size: 14px;
}

.about-page-about-section {
  padding: 130px 0px 180px;
}

.about-page-about-content .agdev-about-img-wrapper .shape1 {
  left: -40px;
  right: auto;
}
.about-page-about-content .acrk-img-shape2 {
  top: 0;
  left: 0;
  bottom: 0;
}
.about-page-about-content .acrk-img-shape1 {
  right: 0;
  top: auto;
  bottom: 0;
}

/*---------------------------------------------------- */
/*Project area*/
/*----------------------------------------------------*/
.agdev-project-section {
  padding-top: 40px;
  padding-bottom: 110px;
}

.agdev-project-slider-wrapper {
  padding: 0px 45px;
}

.agdev-project-top-content {
  padding-bottom: var(--padding-bottom-60);
}
.agdev-project-top-content .agdev-section-title h2 {
  padding: 0;
}

.agdev-project-filter-btn li, .agdev-project-filter-btn button,
.agdev-project-filter-btn li,
.agdev-project-filter-btn button {
  font-size: 18px;
  cursor: pointer;
  font-weight: 600;
  color: var(--black-color);
  margin-left: var(--margin-left-30);
}
.agdev-project-filter-btn li.active, .agdev-project-filter-btn button.active,
.agdev-project-filter-btn li.active,
.agdev-project-filter-btn button.active {
  color: var(--main-color);
}
.agdev-project-filter-btn li.is-checked, .agdev-project-filter-btn button.is-checked,
.agdev-project-filter-btn li.is-checked,
.agdev-project-filter-btn button.is-checked {
  color: var(--main-color);
}
.agdev-project-filter-btn button,
.agdev-project-filter-btn button {
  padding: 0;
  border: none;
  background-color: transparent;
}

.agdev-project-item {
  margin: 15px;
  overflow: hidden;
}
.agdev-project-item:before {
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  z-index: 1;
  content: "";
  height: 100%;
  position: absolute;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: rgba(0, 0, 0, 0.7);
}
.agdev-project-item .inner-img {
  overflow: hidden;
}
.agdev-project-item .inner-img img {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.agdev-project-item .inner-text {
  top: 95px;
  left: 40px;
  z-index: 2;
  position: absolute;
}
.agdev-project-item .inner-text .project-title-desc {
  max-width: 340px;
}
.agdev-project-item .inner-text .project-title-desc span {
  opacity: 0;
  font-weight: 700;
  font-size: var(--font-14);
  color: var(--main-color);
  display: inline-block;
  margin-bottom: var(--margin-bottom-15);
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.agdev-project-item .inner-text .project-title-desc h3 {
  opacity: 0;
  font-weight: 700;
  color: var(--white-color);
  font-size: var(--font-28);
  padding-bottom: var(--padding-bottom-25);
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.agdev-project-item .inner-text .project-title-desc p {
  opacity: 0;
  line-height: 1.75;
  color: var(--white-color);
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.agdev-project-item .view-more-btn {
  opacity: 0;
  left: 20px;
  z-index: 2;
  bottom: 70px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.agdev-project-item .view-more-btn a {
  font-weight: 600;
  color: var(--main-color);
  font-family: var(--heading);
}
.agdev-project-item .view-more-btn a i {
  margin-left: var(--margin-left-5);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.agdev-project-item .view-more-btn a:hover i {
  margin-left: var(--margin-left-10);
}
.agdev-project-item:hover:before {
  opacity: 1;
}
.agdev-project-item:hover .inner-text .project-title-desc span, .agdev-project-item:hover .inner-text .project-title-desc h3, .agdev-project-item:hover .inner-text .project-title-desc p {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.agdev-project-item:hover .view-more-btn {
  opacity: 1;
  left: 40px;
}
.agdev-project-item:hover .inner-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.agdev-project-slider .slick-slide {
  -webkit-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  opacity: 0;
}
.agdev-project-slider .slick-track .slick-active {
  animation: zoomIn 600ms ease-out infinite;
  -webkit-animation: zoomIn 600ms ease-out infinite;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.agdev-project-slider .slick-slide.slick-active {
  opacity: 1;
}
.agdev-project-slider .slick-dots {
  margin-top: 40px;
  position: static;
}

.agdev-project-section-2 {
  padding-top: 80px;
}

.agdev-project-item-2:before {
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  content: "";
  z-index: 1;
  height: 100%;
  position: absolute;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: rgba(0, 0, 0, 0.7);
}
.agdev-project-item-2 .inner-img img {
  width: 100%;
  height: 100%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.agdev-project-item-2 .inner-text {
  left: 0px;
  z-index: 2;
  opacity: 0;
  bottom: 50px;
  position: absolute;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.agdev-project-item-2 .inner-text h3 {
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 10px;
  color: var(--white-color);
}
.agdev-project-item-2 .inner-text span {
  font-size: 14px;
  font-weight: 600;
  color: var(--main-color);
}
.agdev-project-item-2:hover:before {
  opacity: 1;
}
.agdev-project-item-2:hover .inner-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.agdev-project-item-2:hover .inner-text {
  left: 50px;
  opacity: 1;
}

.agdev-project-filter-content {
  padding: 0px 60px;
}

.filtr-container-area .grid-sizer {
  width: 25%;
}
.filtr-container-area .grid-sizer,
.filtr-container-area .grid-item {
  float: left;
  overflow: hidden;
  position: relative;
  display: inline-block;
}
.filtr-container-area .grid-sizer img,
.filtr-container-area .grid-item img {
  width: 100%;
}
.filtr-container-area .grid-size-25 {
  width: 25%;
}
.filtr-container-area .grid-size-50 {
  width: 50%;
}
.filtr-container-area .grid-size-75 {
  width: 75%;
}
.filtr-container-area .grid_2-sizer {
  width: 41.2%;
}
.filtr-container-area .grid_2-sizer,
.filtr-container-area .grid_2-item {
  float: left;
  overflow: hidden;
  position: relative;
  display: inline-block;
}
.filtr-container-area .grid_2-sizer img,
.filtr-container-area .grid_2-item img {
  width: 100%;
}
.filtr-container-area .grid_2-size-40 {
  width: 41.2%;
}
.filtr-container-area .grid_2-size-60 {
  width: 58.8%;
}

.agdev-project-feed-section .agdev-project-filter-btn {
  padding-bottom: 55px;
}

.agdev-project-feed-content-2 {
  margin: 0px -15px;
}

.agdev-project-feed-item-2 {
  margin: 15px;
  overflow: hidden;
}
.agdev-project-feed-item-2 .agdev-project-item-2 .inner-text {
  bottom: 30px;
}
.agdev-project-feed-item-2 .agdev-project-item-2:hover .inner-text {
  left: 30px;
}

.agdev-project-details-img-slider {
  margin-bottom: 55px;
}

.agdev-project-details-text-wrapper {
  padding-bottom: 60px;
}

.agdev-project-details-slider .slick-next {
  right: 6px;
}
.agdev-project-details-slider .slick-prev {
  left: 0;
}

.agdev-project-details-text h3, .agdev-project-details-text h4 {
  font-size: 42px;
  font-weight: 600;
  padding-bottom: 35px;
  color: var(--black-color);
}
.agdev-project-details-text h4 {
  font-size: 36px;
  padding-bottom: 25px;
}
.agdev-project-details-text p {
  line-height: 1.875;
  padding-bottom: 35px;
}
.agdev-project-details-text li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 25px;
}
.agdev-project-details-text li:before {
  top: 0;
  left: 0;
  content: "\f058";
  position: absolute;
  font-weight: 900;
  font-family: "Font Awesome 5 Pro";
}

.agdev-project-details-feature {
  padding: 50px 40px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.08);
}
.agdev-project-details-feature h3 {
  color: var(--black-color);
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 40px;
}
.agdev-project-details-feature .feature-list li {
  width: 100%;
  color: var(--black-color);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 13px;
  padding-bottom: 13px;
  font-family: var(--heading);
  border-bottom: 1px solid #dedede;
}
.agdev-project-details-feature .feature-list li span {
  float: right;
  font-weight: 400;
  color: var(--body-color);
}
.agdev-project-details-feature .project-share {
  margin-top: 30px;
}
.agdev-project-details-feature .project-share .title {
  color: var(--black-color);
  font-weight: 700;
}
.agdev-project-details-feature .project-share .share-social a {
  color: var(--black-color);
  margin-left: 5px;
}
.agdev-project-details-feature .project-share .share-social a:hover {
  color: var(--main-color);
}

.agdev-project-details-img-wrapper {
  padding-bottom: 55px;
}

.agdev-project-next-prev-btn {
  margin-top: 80px;
}
.agdev-project-next-prev-btn a {
  font-weight: 600;
  font-family: var(--heading);
}
.agdev-project-next-prev-btn a i {
  margin-right: 15px;
}
.agdev-project-next-prev-btn a:hover {
  color: var(--main-color);
}
.agdev-project-next-prev-btn a:nth-child(2) i {
  margin-right: 0;
  margin-left: 15px;
}

.agdev-project-section-2 .agdev-project-top-content {
  padding-bottom: 70px;
}

/*---------------------------------------------------- */
/*Work Process area*/
/*----------------------------------------------------*/
.agdev-work-process-section {
  padding-bottom: 150px;
}

.agdev-work-process-content {
  padding-top: 85px;
}

.agdev-work-process-item {
  z-index: 1;
  padding: 50px 30px 0px;
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0px 0px 50px 0px rgba(35, 31, 32, 0.1);
          box-shadow: 0px 0px 50px 0px rgba(35, 31, 32, 0.1);
}
.agdev-work-process-item:before {
  left: 0;
  right: 0;
  top: -20px;
  z-index: -2;
  width: 85%;
  content: "";
  /* height: 111%; */
  height: 100%;
  margin: 0 auto;
  position: absolute;
  border: 2px solid #e5e5e5;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.agdev-work-process-item:after {
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  content: "";
  height: 100%;
  position: absolute;
  background-color: #fff;
}
.agdev-work-process-item .inner-icon {
  margin-bottom: 30px;
}
.agdev-work-process-item .inner-icon img{
  width: auto;
  height: 200px;
}
.agdev-work-process-item .inner-text h3 {
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 20px;
  color: var(--black-color);
  font-family: var(--heading-2);
}
.agdev-work-process-item .inner-text p {
  padding-bottom: 15px;
}
.agdev-work-process-item .work-serial {
  top: 20px;
  width: 110px;
  height: 90px;
  margin: 0 auto;
  padding-top: 10px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  /* background-color: var(--main-color); */
  background-color: #a7ad99;
}
.agdev-work-process-item .work-serial h4 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white-color);
}
.agdev-work-process-item .work-serial span {
  color: #fff;
  font-weight: 600;
  font-family: var(--heading);
}
.agdev-work-process-item:hover:before {
  border: 2px solid #a7ad99;
  background-color: #a7ad99;
  /* border: 2px solid var(--main-color);
  background-color: var(--main-color); */
}
.agdev-work-process-item:hover .work-serial {
  /* background-color: var(--black-color); */
  background-color: #58694f;
}
.agdev-work-process-item.stage1:hover .work-serial {
  /* background-color: var(--black-color); */
  background-color: #bbc8da !important;
}
.agdev-work-process-item.stage1:hover:before {
  border: 2px solid #bbc8da;
  background-color: #bbc8da;
}
.agdev-work-process-item.stage3:hover .work-serial {
  /* background-color: var(--black-color); */
  background-color: #cac1d4 !important;
}
.agdev-work-process-item.stage3:hover:before {
  border: 2px solid #cac1d4;
  background-color: #cac1d4;
}
.agdev-work-process-item.stage4:hover .work-serial {
  /* background-color: var(--black-color); */
  background-color: #c0e0e0 !important;
}
.agdev-work-process-item.stage4:hover:before {
  border: 2px solid #c0e0e0;
  background-color: #c0e0e0;
}

/*---------------------------------------------------- */
/*Counter area*/
/*----------------------------------------------------*/
.agdev-counter-section {
  padding: 70px 0px 75px;
  /* background-color: #f4f4f4; */
  background-color: #ffffff;
}

.agdev-counter-inner-item {
  padding-top: 80px;
}
.agdev-counter-inner-item:before {
  top: 0;
  left: 0;
  right: 0;
  width: 2px;
  content: "";
  height: 50px;
  margin: 0 auto;
  position: absolute;
  /* background-color: var(--main-color); */
  background-color: #58694f;
}
.agdev-counter-inner-item:after {
  top: 50px;
  left: 0;
  right: 0;
  width: 10px;
  content: "";
  height: 10px;
  margin: 0 auto;
  position: absolute;
  border-radius: 100%;
  /* background-color: var(--main-color); */
  background-color: #a7ad99;
}
.agdev-counter-inner-item h3 {
  z-index: 1;
  font-size: 42px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  color: #58694f;
  /* color: var(--main-color); */
}
.agdev-counter-inner-item h3:after {
  left: 0;
  z-index: -1;
  content: "";
  width: 100%;
  bottom: -60px;
  height: 10px;
  position: absolute;
  background-color: #a7ad99;
}
.agdev-counter-inner-item p {
  font-weight: 600;
  padding-top: 5px;
  font-size: var(--font-22);
  color: var(--black-color);
  font-family: var(--heading);
}

/*---------------------------------------------------- */
/*Team area*/
/*----------------------------------------------------*/
.agdev-team-section {
  z-index: 1;
  overflow: hidden;
  padding: 125px 0px 100px;
}
.agdev-team-section:before, .agdev-team-section:after {
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  content: "";
  height: 605px;
  position: absolute;
  background: url(../img/bg/tm-bg.jpg);
}
.agdev-team-section:after {
  background: rgba(0, 0, 0, 0.6);
}
.agdev-team-section .agdev-section-title h2, .agdev-team-section .agdev-section-title p {
  color: #fff;
}

.agdev-team-content {
  margin: 0px -15px;
  padding-top: 75px;
}

.agdev-team-item {
  overflow: hidden;
  max-width: 370px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.agdev-team-item:before {
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  width: 100%;
  content: "";
  height: 100%;
  position: absolute;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: rgba(0, 0, 0, 0.7);
}
.agdev-team-item .inner-img img {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.agdev-team-item .inner-text {
  left: 0;
  right: 0;
  top: 70px;
  z-index: 1;
  opacity: 0;
  position: absolute;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.agdev-team-item .inner-text h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 10px;
}
.agdev-team-item .inner-text span {
  color: #fff;
}
.agdev-team-item .inner-social {
  left: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  bottom: 70px;
  margin: 0 auto;
  position: absolute;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.agdev-team-item .inner-social a {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0px 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--white-color);
}
.agdev-team-item .inner-social a:hover {
  color: var(--white-color);
  background-color: var(--main-color);
}
.agdev-team-item:hover .inner-text {
  opacity: 1;
  top: 112px;
}
.agdev-team-item:hover:before {
  opacity: 1;
}
.agdev-team-item:hover .inner-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.agdev-team-item:hover .inner-social {
  opacity: 1;
  bottom: 110px;
}

.agdev-team-details-content {
  margin-bottom: 65px;
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.05);
}

.agdev-team-details-text-wrap {
  padding: 75px 30px;
}
.agdev-team-details-text-wrap .about-bg {
  right: 25px;
  bottom: 20px;
}
.agdev-team-details-text-wrap h3 {
  font-size: 36px;
  color: var(--black-color);
  font-weight: 600;
  padding-bottom: 12px;
}
.agdev-team-details-text-wrap .agdev-team-details-info {
  padding-top: 35px;
  max-width: 350px;
}
.agdev-team-details-text-wrap .agdev-team-details-info li {
  font-weight: 600;
  font-family: var(--heading);
  color: var(--black-color);
  text-transform: uppercase;
  margin-bottom: 15px;
}
.agdev-team-details-text-wrap .agdev-team-details-info li span {
  float: right;
  font-weight: 400;
  text-transform: capitalize;
}
.agdev-team-details-text-wrap .agdev-team-details-social {
  margin-top: 40px;
}
.agdev-team-details-text-wrap .agdev-team-details-social a {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--black-color);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 10px;
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.08);
}
.agdev-team-details-text-wrap .agdev-team-details-social a:hover {
  color: var(--white-color);
  background-color: var(--main-color);
}

.agdev-team-details-text-content-wrap h3 {
  color: var(--black-color);
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 30px;
}
.agdev-team-details-text-content-wrap p {
  line-height: 1.875;
  padding-bottom: 30px;
}

.agdev-team-details-skill {
  max-width: 500px;
}
.agdev-team-details-skill .agdev-skill-progress-bar {
  padding-top: 0;
}

/*---------------------------------------------------- */
/*Testimonial area*/
/*----------------------------------------------------*/
.agdev-testimonial-section {
  padding-bottom: 130px;
}

.agdev-testimonial-text-wrap {
  padding-top: var(--padding-top-50);
  padding-left: var(--padding-left-40);
}

.agdev-testimonial-slider-wrap {
  padding-top: var(--padding-top-20);
}

.agdev-teestimonial-item .inner-text,
.agdev-teestimonial-item-2 .inner-text {
  font-size: var(--font-22);
  font-weight: 500;
  line-height: 1.818;
  margin-bottom: var(--margin-bottom-90);
}
.agdev-teestimonial-item .inner-text i,
.agdev-teestimonial-item-2 .inner-text i {
  color: #ffe1df;
  margin-right: 10px;
  font-size: var(--font-50);
}
.agdev-teestimonial-item .inner-author .author-img,
.agdev-teestimonial-item-2 .inner-author .author-img {
  width: 90px;
  height: 80px;
  overflow: hidden;
  margin-bottom: 20px;
}
.agdev-teestimonial-item .inner-author .author-text h3,
.agdev-teestimonial-item-2 .inner-author .author-text h3 {
  color: var(--black-color);
  font-weight: 600;
  font-size: var(--font-28);
  padding-bottom: var(--padding-bottom-15);
}

.agdev-teestimonial-item-2 .inner-text {
  padding: 30px 30px 80px;
  font-size: var(--font-16);
  margin-bottom: 0;
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0px 0px 25px 0px rgba(72, 72, 72, 0.08);
          box-shadow: 0px 0px 25px 0px rgba(72, 72, 72, 0.08);
}
.agdev-teestimonial-item-2 .inner-text i {
  margin-right: 5px;
  font-size: var(--font-20);
}
.agdev-teestimonial-item-2 .inner-author {
  top: -35px;
  left: 40px;
  position: relative;
}
.agdev-teestimonial-item-2 .inner-author .author-img {
  width: 90px;
  height: 80px;
  overflow: hidden;
}
.agdev-teestimonial-item-2 .inner-author .author-text h3 {
  color: var(--black-color);
  font-weight: 600;
  font-size: var(--font-20);
  padding-bottom: var(--padding-bottom-5);
}

.agdev-testimonial-slider .slick-dots {
  right: 0;
  width: auto;
  bottom: -52px;
}
.agdev-testimonial-slider .slick-prev, .agdev-testimonial-slider .slick-next {
  display: none !important;
}

.agdev-testimonial-appointment {
  z-index: 1;
  padding: 130px 0px;
  background-color: var(--black-color);
}
.agdev-testimonial-appointment:before {
  top: 0;
  right: 0;
  width: 50.5%;
  content: "";
  z-index: -1;
  height: 100%;
  position: absolute;
  background-image: url(../img/bg/ta-bg.jpg);
}

.agdev-testimonial-appointment-content .agdev-testimonial-text-wrap {
  padding-top: 0;
  padding-left: 0;
  padding-right: 70px;
}
.agdev-testimonial-appointment-content .agdev-section-title-2 h2 {
  color: #fff;
}
.agdev-testimonial-appointment-content .agdev-teestimonial-item .inner-text i {
  color: var(--main-color);
}
.agdev-testimonial-appointment-content .agdev-teestimonial-item .inner-text {
  color: var(--white-color);
}
.agdev-testimonial-appointment-content .agdev-teestimonial-item .inner-author .author-img {
  margin-right: 30px;
}
.agdev-testimonial-appointment-content .agdev-teestimonial-item .inner-author .author-text h3,
.agdev-testimonial-appointment-content .agdev-teestimonial-item .inner-author .author-text span {
  color: var(--white-color);
}
.agdev-testimonial-appointment-content .agdev-testimonial-slider .slick-dots li, .agdev-testimonial-appointment-content .agdev-project-slider .slick-dots li {
  background-color: var(--white-color);
}
.agdev-testimonial-appointment-content .agdev-testimonial-slider .slick-dots li:hover,
.agdev-testimonial-appointment-content .agdev-testimonial-slider .slick-dots li.slick-active {
  background-color: var(--main-color);
}
.agdev-testimonial-appointment-content .agdev-testimonial-slider .slick-dots {
  bottom: 0;
}
.agdev-testimonial-appointment-content .agdev-appointment-form-wrap {
  padding-left: 45px;
}
.agdev-testimonial-appointment-content .agdev-appointment-form-wrap form {
  padding-top: 30px;
}
.agdev-testimonial-appointment-content .agdev-appointment-form-wrap form input, .agdev-testimonial-appointment-content .agdev-appointment-form-wrap form textarea {
  background-color: #fff;
}
.agdev-testimonial-appointment-content .agdev-appointment-form-wrap form button {
  border: none;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
}
.agdev-testimonial-appointment-content .agdev-appointment-form-wrap form button:before, .agdev-testimonial-appointment-content .agdev-appointment-form-wrap form button:after {
  display: none;
}
.agdev-testimonial-appointment-content .agdev-appointment-form-wrap form button:hover {
  color: var(--block-color);
  background-color: var(--white-color);
}

.agdev-testimonial-appointment-content .agdev-appointment-form-wrap form input,
.agdev-blog-details-content .agdev-contact-page-form .agdev-appointment-form-wrap form input,
.agdev-blog-details-content .agdev-contact-page-form .agdev-appointment-form-wrap form textarea,
.agdev-contact-page-form .agdev-appointment-form-wrap form input, .agdev-contact-page-form .agdev-appointment-form-wrap form textarea {
  color: var(--black-color);
}

.agdev-testimonial-feed-section {
  padding: 120px 0px 60px;
}

/*---------------------------------------------------- */
/*Appointment-Video area*/
/*----------------------------------------------------*/
.agdev-appointment-video-section {
  z-index: 1;
  padding: 120px 0px 130px;
  background-color: var(--black-color);
}
.agdev-appointment-video-section .side-icon {
  bottom: 0;
  left: 65px;
  z-index: -1;
}

.agdev-video-play-wrap {
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
}
.agdev-video-play-wrap:after {
  top: 0;
  left: 0;
  width: 100%;
  content: "";
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
}
.agdev-video-play-wrap .agdev-video-img-wrap {
  display: none;
}

.agdev-video-play-btn {
  left: 0;
  top: 45%;
  right: 0;
  z-index: 1;
  margin: 0 auto;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.agdev-video-play-btn a {
  width: 85px;
  height: 85px;
  margin: 0 auto;
  border-radius: 100%;
  font-size: var(--font-20);
  color: var(--main-color);
  border: 3px solid var(--white-color);
}

.agdev-appointment-form-wrap {
  max-width: 570px;
}
.agdev-appointment-form-wrap .agdev-section-title {
  padding-bottom: 30px;
}
.agdev-appointment-form-wrap .agdev-section-title h2 {
  color: var(--white-color);
}
.agdev-appointment-form-wrap form input, .agdev-appointment-form-wrap form textarea {
  width: 100%;
  height: 55px;
  border: none;
  color: #fff;
  padding-left: 20px;
  border-radius: 5px;
  margin-bottom: 30px;
  background-color: #2d2d2d;
}
.agdev-appointment-form-wrap form input::-webkit-input-placeholder, .agdev-appointment-form-wrap form textarea::-webkit-input-placeholder {
  color: rgb(108, 108, 108);
}
.agdev-appointment-form-wrap form input::-moz-placeholder, .agdev-appointment-form-wrap form textarea::-moz-placeholder {
  color: rgb(108, 108, 108);
}
.agdev-appointment-form-wrap form input:-ms-input-placeholder, .agdev-appointment-form-wrap form textarea:-ms-input-placeholder {
  color: rgb(108, 108, 108);
}
.agdev-appointment-form-wrap form input::-ms-input-placeholder, .agdev-appointment-form-wrap form textarea::-ms-input-placeholder {
  color: rgb(108, 108, 108);
}
.agdev-appointment-form-wrap form input::placeholder, .agdev-appointment-form-wrap form textarea::placeholder {
  color: rgb(108, 108, 108);
}
.agdev-appointment-form-wrap form textarea {
  height: 105px;
  padding-top: 15px;
}
.agdev-appointment-form-wrap form button {
  border: none;
  text-transform: uppercase;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
}
.agdev-appointment-form-wrap form button:before {
  border: 1px solid var(--white-color);
}
.agdev-appointment-form-wrap form button:hover {
  color: var(--white-color);
}
.agdev-appointment-form-wrap form button:hover:after {
  background-color: var(--white-color);
}

.agdev-video-cta-wrap {
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  background-color: #2d2d2d;
}
.agdev-video-cta-wrap .video-cta-item {
  width: 33.33%;
  padding: 30px 25px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.agdev-video-cta-wrap .video-cta-item.active {
  background-color: var(--main-color);
}
.agdev-video-cta-wrap .video-cta-item .inner-icon {
  margin-right: 20px;
}
.agdev-video-cta-wrap .video-cta-item .inner-text {
  width: 180px;
}
.agdev-video-cta-wrap .video-cta-item .inner-text p {
  color: var(--white-color);
}
.agdev-video-cta-wrap .video-cta-item .inner-text h3 {
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 8px;
  color: var(--white-color);
}

/*---------------------------------------------------- */
/*Blog area*/
/*----------------------------------------------------*/
.agdev-blog-item .inner-text .read-more-btn,
.agdev-blog-item-2 .inner-text .read-more-btn, .agdev-service-item-2 .inner-text .read-more-btn {
  color: var(--black-color);
  font-weight: 600;
  font-family: var(--heading);
}
.agdev-blog-item .inner-text .read-more-btn i,
.agdev-blog-item-2 .inner-text .read-more-btn i, .agdev-service-item-2 .inner-text .read-more-btn i {
  margin-left: 3px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.agdev-blog-item .inner-text .read-more-btn:hover,
.agdev-blog-item-2 .inner-text .read-more-btn:hover, .agdev-service-item-2 .inner-text .read-more-btn:hover {
  color: var(--main-color);
}
.agdev-blog-item .inner-text .read-more-btn:hover i,
.agdev-blog-item-2 .inner-text .read-more-btn:hover i, .agdev-service-item-2 .inner-text .read-more-btn:hover i {
  margin-left: 8px;
}

.agdev-blog-section {
  padding: 120px 0px 95px;
}

.agdev-blog-content {
  padding-top: 65px;
}

.agdev-blog-details-main-content .blog-meta, .agdev-blog-item .blog-meta,
.agdev-blog-item-2 .blog-meta {
  margin-bottom: 25px;
}
.agdev-blog-details-main-content .blog-meta a, .agdev-blog-item .blog-meta a,
.agdev-blog-item-2 .blog-meta a {
  margin-right: 15px;
}
.agdev-blog-details-main-content .blog-meta a:last-child, .agdev-blog-item .blog-meta a:last-child,
.agdev-blog-item-2 .blog-meta a:last-child {
  margin-right: 0;
}
.agdev-blog-details-main-content .blog-meta .blog-cat, .agdev-blog-item .blog-meta .blog-cat,
.agdev-blog-item-2 .blog-meta .blog-cat {
  color: #fff;
  font-size: 12px;
  padding: 7px 10px;
  background-color: var(--main-color);
}
.agdev-blog-details-main-content .blog-meta .date, .agdev-blog-item .blog-meta .date,
.agdev-blog-item-2 .blog-meta .date {
  color: #7a7a7a;
}

.agdev-blog-item,
.agdev-blog-item-2 {
  margin-bottom: 32px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
}
.agdev-blog-item .inner-img,
.agdev-blog-item-2 .inner-img {
  overflow: hidden;
}
.agdev-blog-item .inner-img img,
.agdev-blog-item-2 .inner-img img {
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
}
.agdev-blog-item .inner-text,
.agdev-blog-item-2 .inner-text {
  padding: 45px 15px 20px;
}
.agdev-blog-item .inner-text h3,
.agdev-blog-item-2 .inner-text h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.333;
  padding-bottom: 15px;
  color: var(--black-color);
}
.agdev-blog-item .inner-text h3:hover,
.agdev-blog-item-2 .inner-text h3:hover {
  color: var(--main-color);
}
.agdev-blog-item .inner-text p,
.agdev-blog-item-2 .inner-text p {
  line-height: 1.875;
  padding-bottom: 25px;
}
.agdev-blog-item:hover .inner-img img,
.agdev-blog-item-2:hover .inner-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.agdev-blog-item-2 .inner-text {
  padding-left: 30px;
}

.agdev-sponsor-section {
  overflow: hidden;
  padding: 105px 0px;
  background-color: #f4f4f4;
}

.agdev-sponsor-slider .slick-initialized .slick-slide,
.agdev-sponsor-slider .agdev-sponsor-slider-item {
  text-align: center;
}
.agdev-sponsor-slider .slick-slide img {
  display: inline-block;
}

.agdev-blog-feed-content .agdev-blog-item-2 {
  max-width: 770px;
  margin-bottom: 60px;
}
.agdev-blog-feed-content .agdev-blog-item-2 .inner-text {
  padding: 45px 40px;
}
.agdev-blog-feed-content .agdev-blog-item-2 .inner-text h3 {
  font-size: 30px;
}

.agdev-side-bar-widget {
  margin-bottom: 50px;
  background-color: #fff;
  padding: 30px 30px 40px;
  -webkit-box-shadow: 0px 5px 50px 0px rgba(110, 110, 110, 0.1);
          box-shadow: 0px 5px 50px 0px rgba(110, 110, 110, 0.1);
}
.agdev-side-bar-widget .widget-title {
  color: var(--black-color);
  font-size: 22px;
  font-weight: 600;
  padding-bottom: 25px;
}
.agdev-side-bar-widget .search-widget form {
  position: relative;
}
.agdev-side-bar-widget .search-widget input {
  width: 100%;
  height: 50px;
  padding: 15px;
  border: 1px solid #e7e7e7;
}
.agdev-side-bar-widget .search-widget button {
  top: 15px;
  padding: 0;
  right: 15px;
  border: none;
  position: absolute;
  background-color: transparent;
}
.agdev-side-bar-widget .category-widget li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 15px;
}
.agdev-side-bar-widget .category-widget li a {
  width: 100%;
}
.agdev-side-bar-widget .category-widget li a span {
  float: right;
  padding: 0px 10px;
  position: relative;
}
.agdev-side-bar-widget .category-widget li a span:before, .agdev-side-bar-widget .category-widget li a span:after {
  top: 15px;
  left: 0;
  width: 5px;
  height: 1px;
  content: "";
  position: absolute;
  background-color: var(--black-color);
}
.agdev-side-bar-widget .category-widget li a span:after {
  right: 0;
  left: auto;
}
.agdev-side-bar-widget .category-widget li a:hover {
  color: var(--main-color);
}
.agdev-side-bar-widget .category-widget li:before {
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  content: "";
  position: absolute;
  border-radius: 100%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--black-color);
}
.agdev-side-bar-widget .category-widget li:last-child {
  margin-bottom: 0;
}
.agdev-side-bar-widget .category-widget li:hover:before {
  background-color: var(--main-color);
}
.agdev-side-bar-widget .recent-post-widget .recent-blog-img-text {
  padding-bottom: 25px;
}
.agdev-side-bar-widget .recent-post-widget .recent-blog-img-text:last-child {
  padding-bottom: 0;
}
.agdev-side-bar-widget .recent-post-widget .recent-blog-img-text .recent-blog-img {
  width: 70px;
  height: 70px;
  overflow: hidden;
  margin-right: 15px;
  border-radius: 5px;
}
.agdev-side-bar-widget .recent-post-widget .recent-blog-img-text .recent-blog-text {
  width: 190px;
}
.agdev-side-bar-widget .recent-post-widget .recent-blog-img-text .recent-blog-text h3 {
  color: var(--black-color);
  font-size: 16px;
  line-height: 1.375;
  font-weight: 600;
  padding-bottom: 8px;
}
.agdev-side-bar-widget .recent-post-widget .recent-blog-img-text .recent-blog-text span {
  font-size: 14px;
}
.agdev-side-bar-widget .popular-tag-widget a {
  font-size: 13px;
  padding: 7px 20px;
  margin-right: 5px;
  margin-bottom: 8px;
  display: inline-block;
  background-color: #f4f4f4;
}
.agdev-side-bar-widget .popular-tag-widget a:hover {
  color: #fff;
  background-color: var(--main-color);
}
.agdev-side-bar-widget .newslatter-widget input {
  width: 100%;
  height: 50px;
  border: none;
  padding-left: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  background-color: #e9f6f6;
}
.agdev-side-bar-widget .newslatter-widget button {
  color: #fff;
  height: 50px;
  border: none;
  width: 170px;
  border-radius: 5px;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  background-color: var(--main-color);
}
.agdev-side-bar-widget .newslatter-widget button:hover {
  background-color: #000e58;
}
.agdev-side-bar-widget .brochure-widget h3 {
  color: var(--black-color);
  font-size: 22px;
  font-weight: 600;
  padding: 30px 0px 50px;
}

.agdev-blog-details-content .agdev-project-next-prev-btn {
  margin-top: 50px;
}
.agdev-blog-details-content .agdev-contact-page-form {
  padding-left: 0;
}
.agdev-blog-details-content .agdev-appointment-form-wrap {
  max-width: 100%;
}
.agdev-blog-details-content .agdev-contact-page-form .agdev-appointment-form-wrap form input,
.agdev-blog-details-content .agdev-contact-page-form .agdev-appointment-form-wrap form textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #e7e7e7;
}
.agdev-blog-details-content .agdev-contact-page-form .agdev-appointment-form-wrap form textarea {
  height: 170px;
}

.agdev-blog-details-main-content {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
}
.agdev-blog-details-main-content .agdev-blog-details-text-wrap {
  padding: 50px 40px 20px;
}
.agdev-blog-details-main-content .agdev-blog-details-text-wrap h2, .agdev-blog-details-main-content .agdev-blog-details-text-wrap h3 {
  color: var(--black-color);
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 30px;
}
.agdev-blog-details-main-content .agdev-blog-details-text-wrap h3 {
  font-size: 24px;
  padding-bottom: 20px;
}
.agdev-blog-details-main-content .agdev-blog-details-text-wrap p {
  line-height: 1.875;
  padding-bottom: 30px;
}
.agdev-blog-details-main-content .agdev-blog-details-text-wrap blockquote {
  font-size: 20px;
  line-height: 1.7;
  padding: 10px 55px;
  margin-bottom: 30px;
  border-left: 5px solid var(--main-color);
  font-family: var(--heading);
  color: var(--black-color);
}
.agdev-blog-details-main-content .agdev-blog-details-text-wrap ul {
  margin-bottom: 30px;
}
.agdev-blog-details-main-content .agdev-blog-details-text-wrap li {
  margin-bottom: 10px;
}
.agdev-blog-details-main-content .agdev-blog-details-text-wrap .agdev-blog-details-img-wrap {
  margin-bottom: 30px;
}
.agdev-blog-details-main-content .agdev-blog-details-text-wrap .agdev-blog-details-img-wrap-2 {
  margin-bottom: 50px;
}
.agdev-blog-details-main-content .agdev-blog-share-tag {
  border-top: 1px solid #ebebeb;
  padding: 20px 40px 30px;
}
.agdev-blog-details-main-content .agdev-blog-share-tag .blog-share span {
  color: var(--black-color);
  font-size: 18px;
  font-weight: 600;
  margin-right: 15px;
}
.agdev-blog-details-main-content .agdev-blog-share-tag .blog-share a {
  margin-right: 10px;
  color: var(--black-color);
}
.agdev-blog-details-main-content .agdev-blog-share-tag .blog-hash-tag a {
  color: #101010;
  margin-left: 20px;
}

.agdev-blog-author {
  margin-top: 60px;
  padding: 45px 30px;
  margin-bottom: 70px;
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 50px 0px rgba(110, 110, 110, 0.1);
          box-shadow: 0px 5px 50px 0px rgba(110, 110, 110, 0.1);
}
.agdev-blog-author .inner-img {
  width: 114px;
  height: 114px;
  overflow: hidden;
  margin-right: 30px;
  border-radius: 100%;
}
.agdev-blog-author .inner-text {
  max-width: 510px;
}
.agdev-blog-author .inner-text h4 {
  color: var(--black-color);
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 15px;
}
.agdev-blog-author .inner-text p {
  padding-bottom: 15px;
}
.agdev-blog-author .inner-text .inner-social a {
  margin-right: 25px;
}
.agdev-blog-author .inner-text .inner-social a:hover {
  color: var(--main-color);
}

.blog_comment_box h3 {
  color: var(--black-color);
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 35px;
}
.blog_comment_box .comment_itemlist .comment_element {
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ebebeb;
}
.blog_comment_box .comment_itemlist .comment_img {
  width: 90px;
  height: 90px;
  overflow: hidden;
  margin-right: 25px;
  border-radius: 100%;
}
.blog_comment_box .comment_itemlist .comment_content {
  max-width: 590px;
}
.blog_comment_box .comment_itemlist .comment_content h4 {
  color: var(--black-color);
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 5px;
}
.blog_comment_box .comment_itemlist .comment_content p {
  padding: 10px 0px 15px;
}
.blog_comment_box .comment_itemlist .reply-btn {
  top: 0;
  right: 0;
  font-size: 15px;
  color: var(--main-color);
}

.comment_box_area {
  margin-bottom: 40px;
}

.comment_formfield .clenix-contact-form {
  margin-top: 10px;
}

/*---------------------------------------------------- */
/*Before After area*/
/*----------------------------------------------------*/
.agdev-before-after-section {
  padding: 125px 0px;
}
.agdev-before-after-section:before, .agdev-before-after-section:after {
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  content: "";
  height: 605px;
  position: absolute;
  background: url(../img/bg/bg-concepto.jpg);
  background-position: bottom;
}
.agdev-before-after-section:after {
  background: rgba(0, 0, 0, 0.4);
}
.agdev-before-after-section .agdev-section-title-2 {
  max-width: 480px;
}
.agdev-before-after-section .agdev-section-title-2 h2 {
  color: var(--white-color);
}

.agdev-before-item {
  margin-right: 10px;
}

.agdev-before-after-content {
  margin-top: 45px;
  /* padding-top: 45px; */
  border: solid 1px #a7ad99;
}
.agdev-before-after-content .twentytwenty-handle {
  /* background-color: var(--main-color); */
  background-color: #58694f;
  border: none;
}
.agdev-before-after-content .twentytwenty-after-label:before {
  content: "TU FUTURO";
  font-weight: bold !important;
}
.agdev-before-after-content .twentytwenty-before-label:before {
  content: "EL INICIO";
  font-weight: bold !important;
}
.agdev-before-after-content .twentytwenty-before-label:before, .agdev-before-after-content .twentytwenty-after-label:before {
  top: auto;
  bottom: 30px;
  font-size: 12px;
  font-weight: 500;
  padding: 0px 15px;
  line-height: 30px;
  color: var(--white-color);
  /* background-color: var(--main-color); */
  background-color: #a7ad99;
}
.agdev-before-after-content .twentytwenty-horizontal .twentytwenty-before-label:before {
  left: 30px;
}
.agdev-before-after-content .twentytwenty-horizontal .twentytwenty-after-label:before {
  right: 30px;
}
.agdev-before-after-content .twentytwenty-overlay:hover {
  background-color: transparent;
}
.agdev-before-after-content .twentytwenty-before-label,
.agdev-before-after-content .twentytwenty-after-label {
  opacity: 1;
} /*---------------------------------------------------- */
/*Skill area*/
/*----------------------------------------------------*/
.agdev-working-skill-section {
  padding: 130px 0px;
}
.agdev-working-skill-section .agdev-section-title-2 h2 {
  padding-bottom: 20px;
}
.agdev-working-skill-section .agdev-section-title {
  padding-bottom: 20px;
}

.agdev-working-skill-text-wrap {
  max-width: 540px;
  padding-top: 50px;
}

.agdev-skill-progress-bar {
  padding-top: 20px;
}
.agdev-skill-progress-bar .skill-set-percent {
  margin-bottom: 32px;
}
.agdev-skill-progress-bar .skill-set-percent h4 {
  color: var(--black-color);
  font-size: 16px;
  padding-bottom: 15px;
  text-transform: uppercase;
}
.agdev-skill-progress-bar .skill-set-percent .progress {
  height: 10px;
  border-radius: 0;
  position: relative;
  overflow: visible;
  border: 1px solid var(--black-color);
  background-color: transparent;
}
.agdev-skill-progress-bar .skill-set-percent .progress span {
  right: 0;
  top: -25px;
  font-weight: 600;
  position: absolute;
  font-family: var(--heading);
}
.agdev-skill-progress-bar .skill-set-percent .progress-bar {
  width: 0;
  left: 2px;
  top: 2px;
  float: left;
  height: 4px;
  position: relative;
  border-radius: 0;
  -webkit-transition: 1s all ease-in-out;
  transition: 1s all ease-in-out;
  background-color: var(--black-color);
}

/*---------------------------------------------------- */
/*Price area*/
/*----------------------------------------------------*/
.agdev-pricing-section {
  padding: 125px 0px;
}
.agdev-pricing-section .agdev-section-title-2 {
  max-width: 570px;
}

.agdev-pricing-content {
  padding-top: 30px;
}

.agdev-pricing-item {
  padding: 50px 30px;
  background-color: var(--white-color);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-box-shadow: 0px 0px 25px 0px rgba(72, 72, 72, 0.05);
          box-shadow: 0px 0px 25px 0px rgba(72, 72, 72, 0.05);
}
.agdev-pricing-item .inner-title {
  padding-bottom: 25px;
  border-bottom: 1px solid #e5e5e5;
}
.agdev-pricing-item .inner-title h3 {
  font-size: 26px;
  font-weight: 600;
  padding-bottom: 10px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: var(--black-color);
}
.agdev-pricing-item .inner-title .inner-price h4 {
  font-size: 60px;
  font-weight: 600;
  padding-bottom: 10px;
  color: var(--main-color);
}
.agdev-pricing-item .inner-title .inner-price h4 sup {
  font-size: 24px;
}
.agdev-pricing-item .inner-title .inner-price span {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--black-color);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.agdev-pricing-item .inner-feature-list {
  margin: 35px 0px 40px;
}
.agdev-pricing-item .inner-feature-list li {
  margin-bottom: 20px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.agdev-pricing-item .inner-feature-list li span {
  font-size: 17px;
  font-weight: 700;
  margin-right: 5px;
  color: var(--black-color);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.agdev-pricing-item.active {
  background-color: var(--black-color);
}
.agdev-pricing-item.active .inner-title {
  border-bottom: 1px solid #363636;
}
.agdev-pricing-item.active .inner-title h3 {
  color: var(--white-color);
}
.agdev-pricing-item.active .inner-price span {
  color: var(--white-color);
}
.agdev-pricing-item.active .inner-feature-list li {
  color: var(--white-color);
}
.agdev-pricing-item.active .inner-feature-list li span {
  color: var(--white-color);
}
.agdev-pricing-item.active .agdev-btn-2 a {
  color: var(--black-color);
  background-color: var(--white-color);
}

/*---------------------------------------------------- */
/*Breadcrumb area*/
/*----------------------------------------------------*/
.agdev-breadcrumb-section .background_overlay {
  opacity: 0.7;
  background-color: #030303;
}
.agdev-breadcrumb-section .acrk-img-shape2 {
  left: 0;
  bottom: 0;
}
.agdev-breadcrumb-section .acrk-img-shape1 {
  top: auto;
  right: 0;
  bottom: 0;
}

.agdev-breadcrumb-content {
  padding: 310px 0px 235px;
}
.agdev-breadcrumb-content h1 {
  font-size: 60px;
  font-weight: 600;
  padding-bottom: 28px;
  color: var(--white-color);
}
.agdev-breadcrumb-content li {
  color: var(--white-color);
  font-weight: 600;
  margin: 0px 10px;
  position: relative;
  text-transform: uppercase;
  font-family: var(--heading);
}
.agdev-breadcrumb-content li:before {
  top: 0;
  right: -18px;
  color: #fff;
  content: "//";
  position: absolute;
}
.agdev-breadcrumb-content li:last-child:before {
  display: none;
}

/*---------------------------------------------------- */
/*CTA area*/
/*----------------------------------------------------*/
.agdev-cta-section {
  background-attachment: fixed;
}
.agdev-cta-section .background_overlay {
  background-color: rgba(0, 0, 0, 0.6);
}

.agdev-cta-content {
  margin: 0 auto;
  max-width: 770px;
  padding: 120px 0px 140px;
}
.agdev-cta-content h2 {
  font-size: 48px;
  font-weight: 600;
  color: var(--white-color);
}
.agdev-cta-content .agdev-cta-button-group {
  margin-top: 50px;
}
.agdev-cta-content .agdev-btn {
  margin-right: 40px;
}
.agdev-cta-content .agdev-btn a:before {
  border: 1px solid var(--white-color);
}
.agdev-cta-content .agdev-cta-number i {
  color: #fff;
  width: 60px;
  height: 60px;
  font-size: 25px;
  line-height: 60px;
  margin-right: 20px;
  border-radius: 100%;
  /* background-color: var(--main-color); */
  background-color: #58694f;
}
.agdev-cta-content .agdev-cta-number a {
  color: var(--white-color);
  font-weight: 600;
  font-size: 30px;
  font-family: var(--heading);
}

/*---------------------------------------------------- */
/*Faq area*/
/*----------------------------------------------------*/
.agdev-faq-video-section {
  padding: 125px 0px;
}

.agdev-faq-content {
  max-width: 540px;
  padding-top: 35px;
}

.agdev-faq-accordion {
  margin-top: 10px;
}
.agdev-faq-accordion .accordion-header button {
  color: var(--black-color);
  font-size: 18px;
  font-weight: 600;
  padding: 20px 30px;
}
.agdev-faq-accordion .accordion-button:focus {
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.agdev-faq-accordion .accordion-item {
  border: none;
  border-radius: 5px;
  margin-bottom: 15px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
}
.agdev-faq-accordion .accordion-body {
  color: #fff;
  background-color: var(--black-color);
  padding: 20px 30px 30px;
}
.agdev-faq-accordion .accordion-button:not(.collapsed) {
  color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: var(--black-color);
}
.agdev-faq-accordion .accordion-button::after {
  right: 25px;
  height: auto;
  width: auto;
  font-size: 15px;
  content: "\f078";
  font-weight: 900;
  position: absolute;
  background-image: none;
  font-family: "Font Awesome 5 Pro";
}
.agdev-faq-accordion .accordion-button:not(.collapsed)::after {
  content: "\f068";
}

.agdev-faq-feed-section {
  padding: 125px 0px;
  background-color: #f4f4f4;
}

.agdev-faq-feed-content {
  padding-top: 60px;
}
.agdev-faq-feed-content .faq-feed-item {
  margin-bottom: 40px;
}
.agdev-faq-feed-content .faq-feed-item h3 {
  color: var(--black-color);
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 15px;
}

/*---------------------------------------------------- */
/*Shop area*/
/*----------------------------------------------------*/
.agdev-shop-product-item {
  margin: 0 auto;
  max-width: 370px;
  margin-bottom: 30px;
}
.agdev-shop-product-item .inner-img {
  margin-bottom: 25px;
}
.agdev-shop-product-item .inner-text h3 {
  color: var(--black-color);
  font-size: 22px;
  font-weight: 600;
  padding-bottom: 5px;
}
.agdev-shop-product-item .inner-text span {
  font-weight: 600;
  font-family: var(--heading);
  color: var(--main-color);
}
.agdev-shop-product-item .hover-item {
  left: 0;
  right: 0;
  opacity: 0;
  bottom: 15px;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
}
.agdev-shop-product-item .hover-item a {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--main-color);
  border-radius: 100%;
  margin: 0px 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.agdev-shop-product-item .hover-item a:hover {
  color: #fff;
  background-color: var(--main-color);
}
.agdev-shop-product-item:hover .hover-item {
  opacity: 1;
  bottom: 50px;
}

.shop-details-text-wrap {
  padding-top: 15px;
  padding-left: 30px;
}
.shop-details-text-wrap h3 {
  color: var(--black-color);
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 12px;
}
.shop-details-text-wrap .agdev-price {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--heading);
  color: var(--main-color);
  margin-bottom: 28px;
}
.shop-details-text-wrap .agdev-code-category {
  margin-bottom: 30px;
}
.shop-details-text-wrap .agdev-code-category li {
  margin-right: 30px;
}
.shop-details-text-wrap .agdev-code-category li:last-child {
  margin-right: 0;
}
.shop-details-text-wrap .agdev-code-category li span {
  color: var(--main-color);
}
.shop-details-text-wrap .item-desc-text {
  padding-bottom: 40px;
}
.shop-details-text-wrap .quantity-btn-area p {
  font-weight: 500;
  margin-right: 15px;
}
.shop-details-text-wrap .quantity-btn-area .quantity-field {
  margin-right: 30px;
}
.shop-details-text-wrap .quantity-btn-area .quantity-field input {
  width: 90px;
  height: 55px;
  border-radius: 5px;
  border: 1px solid #d9d9d9;
}
.shop-details-text-wrap .quantity-btn-area .quantity-field .custom-next,
.shop-details-text-wrap .quantity-btn-area .quantity-field .custom-prev {
  top: 50%;
  cursor: pointer;
  font-size: 20px;
  margin: 0px 5px;
  position: absolute;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.shop-details-text-wrap .quantity-btn-area .quantity-field .custom-next:hover,
.shop-details-text-wrap .quantity-btn-area .quantity-field .custom-prev:hover {
  color: var(--main-color);
}
.shop-details-text-wrap .quantity-btn-area .quantity-field .custom-next {
  right: 5px;
}
.shop-details-text-wrap .quantity-btn-area .quantity-field .custom-prev {
  left: 8px;
}
.shop-details-text-wrap .quantity-btn-area .add-cart-btn a {
  color: #fff;
  height: 55px;
  width: 170px;
  font-weight: 500;
  background-color: var(--main-color);
}

.agdev-shop-details-content {
  margin-bottom: 70px;
}

.shop-details-text-wrap .product-share {
  margin-top: 48px;
}
.shop-details-text-wrap .product-share a {
  color: #fff;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.shop-details-text-wrap .product-share a.fb-bg {
  background-color: #3b579d;
}
.shop-details-text-wrap .product-share a.tw-bg {
  background-color: #1da1f2;
}
.shop-details-text-wrap .product-share a.yt-bg {
  background-color: #ea4335;
}
.shop-details-text-wrap .product-share a.bh-bg {
  background-color: #0177b5;
}

.agdev-shop-details-review-content .shop-review-tab-btn {
  margin-bottom: 40px;
}
.agdev-shop-details-review-content .shop-review-tab-btn .nav-tabs {
  border-bottom: none;
}
.agdev-shop-details-review-content .shop-review-tab-btn .nav-tabs .nav-link {
  border: none;
}
.agdev-shop-details-review-content .shop-review-tab-btn li {
  color: #161616;
  margin-right: 15px;
  font-family: var(--heading);
  background-color: #f4f4f4;
}
.agdev-shop-details-review-content .shop-review-tab-btn .nav-tabs .nav-link {
  font-size: 18px;
  border-radius: 0;
  padding: 8px 30px;
}
.agdev-shop-details-review-content .shop-review-tab-btn .nav-tabs .nav-link.active {
  color: #fff;
  background-color: var(--main-color);
}
.agdev-shop-details-review-content .review-comment-area {
  max-width: 800px;
}
.agdev-shop-details-review-content .review-comment-area .buyer-review-inner {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
}
.agdev-shop-details-review-content .review-comment-area .buyer-review-pic {
  width: 80px;
  height: 80px;
  overflow: hidden;
  margin-right: 20px;
  border-radius: 100%;
}
.agdev-shop-details-review-content .review-comment-area .buyer-review-text {
  overflow: hidden;
}
.agdev-shop-details-review-content .review-comment-area .buyer-review-text h4 {
  color: var(--black-color);
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 10px;
}
.agdev-shop-details-review-content .review-comment-area .buyer-review-text span {
  display: block;
  padding-bottom: 15px;
}
.agdev-shop-details-review-content .review-comment-area .buyer-review-text .buyer-review-rate {
  margin-top: 5px;
}
.agdev-shop-details-review-content .review-comment-area .buyer-review-text .buyer-review-rate a {
  font-size: 14px;
  color: var(--main-color);
}
.agdev-shop-details-review-content .review-comment-area .buyer-review-text .buyer-review-date {
  color: rgba(105, 105, 105, 0.6);
  font-size: 14px;
  padding-left: 30px;
}
.agdev-shop-details-review-content .review-comment-area .buyer-review-text .buyer-review-date:before {
  top: 3px;
  left: 10px;
  width: 2px;
  content: "";
  height: 15px;
  position: absolute;
  background-color: rgba(105, 105, 105, 0.6);
}
.agdev-shop-details-review-content .review-comment-area .buyer-review-comment-box .customer-rate-option {
  margin: 4px 0px 20px;
}
.agdev-shop-details-review-content .review-comment-area .buyer-review-comment-box .customer-rate-option li {
  width: 16px;
}
.agdev-shop-details-review-content .review-comment-area .buyer-review-comment-box .customer-rate-option .customer-rate {
  display: none;
}
.agdev-shop-details-review-content .review-comment-area .buyer-review-comment-box .customer-rate-option .rate-value {
  position: relative;
}
.agdev-shop-details-review-content .review-comment-area .buyer-review-comment-box .customer-rate-option .rate-value:before {
  left: 0;
  top: -10px;
  content: "\f005";
  cursor: pointer;
  position: absolute;
  font-weight: 900;
  font-family: "Font Awesome 5 Pro";
}
.agdev-shop-details-review-content .review-comment-area .buyer-review-comment-box .customer-rate-option .customer-rate:checked ~ .rate-value:before {
  content: "\f005";
  color: var(--main-color);
}
.agdev-shop-details-review-content .review-comment-area .buyer-review-comment-box h4 {
  font-size: 18px;
  padding-right: 40px;
}
.agdev-shop-details-review-content .review-comment-area .buyer-review-comment-box textarea,
.agdev-shop-details-review-content .review-comment-area .buyer-review-comment-box input {
  width: 100%;
  height: 60px;
  margin-bottom: 20px;
  padding-left: 40px;
  border: 1px solid #e5e5e5;
}
.agdev-shop-details-review-content .review-comment-area .buyer-review-comment-box textarea {
  height: 200px;
  padding-top: 30px;
  margin-bottom: 15px;
}
.agdev-shop-details-review-content .review-comment-area .buyer-review-comment-box button {
  color: #fff;
  border: none;
  font-weight: 500;
  padding: 15px 50px;
  font-family: var(--heading);
  text-transform: uppercase;
  font-weight: 700;
  background-color: var(--main-color);
}

.agdev-shop-feed-content {
  margin: 0px -15px;
}

.agdev-more-product {
  padding-top: 40px;
}
.agdev-more-product .agdev-section-title {
  padding-bottom: 30px;
}
.agdev-more-product .agdev-section-title h2 {
  font-size: 30px;
}

/*---------------------------------------------------- */
/*Contact area*/
/*----------------------------------------------------*/
.agdev-contact-page-cta .agdev-video-cta-wrap {
  background-color: transparent;
}
.agdev-contact-page-cta .agdev-video-cta-wrap .video-cta-item {
  width: 100%;
  padding: 0;
  margin-bottom: 30px;
}
.agdev-contact-page-cta .agdev-video-cta-wrap .video-cta-item:hover {
  background-color: transparent;
}
.agdev-contact-page-cta .agdev-video-cta-wrap .video-cta-item .inner-text {
  width: auto;
  padding: 0;
}
.agdev-contact-page-cta .contact-cta-inner-text {
  top: 50px;
  right: 0;
  padding: 45px 40px 15px;
}
.agdev-contact-page-cta .contact-cta-inner-text h3 {
  color: var(--white-color);
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 45px;
}

.agdev-contact-page-form {
  padding-left: 30px;
}
.agdev-contact-page-form .agdev-appointment-form-wrap .agdev-section-title h2 {
  color: var(--black-color);
}
.agdev-contact-page-form .agdev-section-title {
  padding-bottom: 45px;
}
.agdev-contact-page-form .agdev-appointment-form-wrap form input, .agdev-contact-page-form .agdev-appointment-form-wrap form textarea {
  background-color: var(--white-color);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
}
.agdev-contact-page-form .agdev-appointment-form-wrap form button {
  border: none;
  background-color: #58694f;
}
.agdev-contact-page-form .agdev-appointment-form-wrap form button:before {
  border: 1px solid #000;
}
.agdev-contact-page-form .agdev-appointment-form-wrap form button:after {
  background-color: #a7ad99;
}
.agdev-contact-page-form .agdev-appointment-form-wrap form button:hover:after {
  background-color: #58694f;
}

.agdev_map {
  height: 475px;
}
.agdev_map iframe {
  width: 100%;
}
.small-textarea {
  max-height: 80px;
}

/*---------------------------------------------------- */
/*Footer area*/
/*----------------------------------------------------*/
.agdev-footer-widget-wrapper {
  /* padding: 100px 0px; */
  padding: 80px 0px 50px;
}

.agdev-footer-widget .widget-title {
  color: var(--white-color);
  font-size: 24px;
  font-weight: 600;
  /* padding-bottom: var(--padding-bottom-50); */
  padding-bottom: 35px;
}
.agdev-footer-widget .contact-cta-widget li {
  color: #fff;
  margin-bottom: 15px;
}
.agdev-footer-widget .contact-cta-widget li i {
  top: 5px;
  float: left;
  font-size: 20px;
  padding-top: 3px;
  margin-right: 12px;
  position: relative;
  /* color: var(--main-color); */
  color: #a7ad99;
}
.agdev-footer-widget .contact-cta-widget li span {
  display: block;
  overflow: hidden;
  max-width: 225px;
}
.agdev-footer-widget .menu-widget li {
  color: #fff;
  margin-bottom: 10px;
}
.agdev-footer-widget .menu-widget li a {
  padding-left: 25px;
  position: relative;
}
.agdev-footer-widget .menu-widget li a:hover {
  color: var(--main-color);
  margin-left: 8px;
}
.agdev-footer-widget .menu-widget li a:before {
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  content: "";
  position: absolute;
  border-radius: 100%;
  /* background-color: var(--main-color); */
  background: url(../img/logo/favicon_agua_clara_white.png) no-repeat;
  background-size: 18px 18px;
  background-position: center;
}
.agdev-footer-widget .blog-img-content {
  max-width: 300px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #4a4a4a;
}
.agdev-footer-widget .blog-img-content .blog-img {
  width: 70px;
  height: 70px;
  margin-right: 15px;
}
.agdev-footer-widget .blog-img-content .blog-text {
  width: 200px;
}
.agdev-footer-widget .blog-img-content .blog-text h3 {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 5px;
  color: var(--white-color);
}
.agdev-footer-widget .blog-img-content .blog-text .blog-meta {
  color: #cccccc;
  font-size: 14px;
}
.agdev-footer-widget .blog-img-content:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.agdev-footer-widget .newslatter-widget .footer-social {
  margin-top: 30px;
}
.agdev-footer-widget .newslatter-widget .footer-social a {
  color: #fff;
  margin-right: 15px;
}
.agdev-footer-widget .newslatter-widget .footer-social a:hover {
  color: var(--main-color);
}
.agdev-footer-widget .newsleter-form input {
  width: 100%;
  height: 50px;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 30px;
  border: 1px solid #fff;
  background-color: transparent;
}
.agdev-footer-widget .newsleter-form input::-webkit-input-placeholder {
  color: #fff;
}
.agdev-footer-widget .newsleter-form input::-moz-placeholder {
  color: #fff;
}
.agdev-footer-widget .newsleter-form input:-ms-input-placeholder {
  color: #fff;
}
.agdev-footer-widget .newsleter-form input::-ms-input-placeholder {
  color: #fff;
}
.agdev-footer-widget .newsleter-form input::placeholder {
  color: #fff;
}
.agdev-footer-widget .newsleter-form button {
  width: 100%;
  color: #fff;
  height: 50px;
  border: none;
  font-weight: 500;
  border-radius: 5px;
  text-align: center;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  /* background-color: var(--main-color); */
  background-color: #a7ad99;
}
.agdev-footer-widget .newsleter-form button:hover {
  color: var(--main-color);
  background-color: #fff;
}

.agdev-footer-copyright {
  color: #fff;
  padding: 15px;
  background-color: #a7ad99;
}

/*---------------------------------------------------- */
/*New Home area*/
/*----------------------------------------------------*/
/*Global Style*/
/*----------------------------------------------------*/
.agc-section-title {
  padding-bottom: 50px;
}
.agc-section-title .title-serial {
  line-height: 1;
  font-size: 80px;
  font-weight: 700;
  padding-bottom: 15px;
  display: inline-block;
  color: var(--main-color-2);
  font-family: var(--heading-2);
}
.agc-section-title h2 {
  color: #000000;
  font-size: 38px;
  font-weight: 500;
  line-height: 50px;
}
.agc-section-title h2 span {
  font-weight: 400;
  position: relative;
  display: inline-block;
  /* color: var(--main-color-2); */
  color: #a7ad99;
}
/* .agc-section-title h2 span:before {
  left: 0;
  bottom: 3px;
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  background-color: var(--main-color-2);
} */

/*Header Section 3*/
/*----------------------------------------------------*/
.agc-header-section {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding-top: 20px;
  position: absolute;
}
.agc-header-section .container {
  max-width: 1505px;
}
.agc-header-section .navbar-nav {
  display: inherit;
}
.agc-header-section .dropdown {
  position: relative;
}
.agc-header-section .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  clip: inherit;
  -webkit-transform: scaleY(1);
  -khtml-transform: scaleY(1);
  transform: scaleY(1);
}
.agc-header-section .dropdown-menu {
  left: 0;
  top: 60px;
  z-index: 100;
  margin: 0px;
  padding: 10px 0;
  height: auto;
  min-width: 250px;
  display: block;
  border: none;
  border-radius: 0;
  position: absolute;
  opacity: 0;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  transform-origin: 0 0 0;
  -webkit-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  -o-transform-origin: 0 0 0;
  text-align: left;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.agc-header-section .dropdown-menu .dropdown-menu {
  top: 30px;
  left: 250px;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  opacity: 0 !important;
}
.agc-header-section .dropdown-menu .dropdown-menu a {
  font-size: 12px;
  font-weight: 600;
  color: #1a2428;
}
.agc-header-section .dropdown-menu .dropdown-menu a:before {
  display: none;
}
.agc-header-section .dropdown-menu li {
  display: block;
  margin: 0 !important;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.agc-header-section .dropdown-menu li:last-child {
  border-bottom: none;
}
.agc-header-section .dropdown-menu li:after {
  display: none;
}
.agc-header-section .dropdown-menu li:hover .dropdown-menu {
  top: 0;
  opacity: 1 !important;
}
.agc-header-section .dropdown-menu a {
  width: 100%;
  display: block;
  position: relative;
  padding: 10px 30px !important;
  color: #1a2428 !important;
  font-weight: 600 !important;
  font-size: 14px !important;
}
.agc-header-section .dropdown-menu a:before {
  display: none;
}
.agc-header-section .dropdown-menu a:hover {
  color: var(--main-color-2) !important;
}
.agc-header-section .main-navigation li {
  /* margin: 0px 30px; */
  /* margin: 0px 20px; */
  /* padding: 0px 20px; */
  position: relative;
}
.agc-header-section .main-navigation li.active:hover {
  color: var(--main-color-2) !important;
}
.agc-header-section .main-navigation li a{
  padding: 0px 20px;
  border-right: solid 2px #ffffff;
}
/* .agc-header-section .main-navigation li::before {
  content: "";
  width: 1px;
  height: 30px;
  background: #ffffff;
  display: block;
  position: absolute;
} */
.agc-header-section .main-navigation li:after {
  top: 7px;
  width: 18px;
  height: 18px;
  content: "";
  right: -22px;
  position: absolute;
  -webkit-transform: scale(0);
          transform: scale(0);
  border-radius: 100%;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  /* background-color: var(--main-color-2); */
  /* background: url(../img/logo/favicon_agua_clara.png) no-repeat; */
  background: url(../img/logo/favicon_agua_clara_white.png) no-repeat;
  background-size: 18px 18px;
  background-position: center;
  display: none !important;
}
.agc-header-section .main-navigation li.active a {
  /* color: #D28F51 !important; */
  color: #ffffff !important;
}
.agc-header-section .main-navigation li.active:after {
  top: 7px;
  width: 18px;
  height: 18px;
  content: "";
  right: -22px;
  position: absolute;
  -webkit-transform: scale(1);
          transform: scale(1);
  border-radius: 100%;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  /* background-color: var(--main-color-2); */
  /* background: url(../img/logo/favicon_agua_clara.png) no-repeat; */
  background: url(../img/logo/favicon_agua_clara_white.png) no-repeat;
  background-size: 18px 18px;
  background-position: center;
}
.agc-header-section .main-navigation li a {
  font-weight: 700;
  /* color: var(--black-color); */
  color: #ffffff;
  /* padding-bottom: var(--padding-bottom-35); */
  /* font-size: 18px; */
  /* font-size: 20px; */
  font-size: 18px;
}
.agc-header-section .main-navigation li:hover:after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.agc-header-section .main-navigation li:hover a {
  color: var(--main-color-2);
  /* color: #408345; */
}
.agc-header-section .header-top-content {
  margin-bottom: 20px;
}
.agc-header-section .header-top-content .header-top-cta li {
  color: #fff;
  font-size: 15px;
  position: relative;
  margin-right: 30px;
}
.agc-header-section .header-top-content .header-top-cta li:before {
  top: 3px;
  width: 1px;
  content: "";
  right: -18px;
  height: 18px;
  position: absolute;
  background-color: rgba(229, 229, 229, 0.1882352941);
}
.agc-header-section .header-top-content .header-top-cta li:last-child:before {
  display: none;
}
.agc-header-section .header-top-content .header-top-cta li i {
  margin-right: 10px;
  color: var(--main-color-2);
}
.agc-header-section .header-top-content .brand-logo {
  top: 0;
  left: 0;
  right: 0;
  width: 115px;
  margin: 0 auto;
  position: absolute;
}
.brand-logo a img {
  width: 100% !important; 
  max-width: 165px !important;
}
.img-bullet-onmenu {
  width: 100% !important; 
  max-width: 20px !important;
}
.agc-header-section .header-top-content .header-social {
  margin-left: 15px;
  position: relative;
}
.agc-header-section .header-top-content .header-social:before {
  top: 5px;
  width: 1px;
  content: "";
  left: -5px;
  height: 18px;
  position: absolute;
  background-color: rgba(229, 229, 229, 0.1882352941);
}
.agc-header-section .header-top-content .header-social a {
  color: #fff;
  margin-left: 15px;
}
.agc-header-section .header-top-content .header-social a:hover {
  color: var(--main-color-2);
}
.agc-header-section .header-top-content .header-language-select select {
  color: #fff;
  border: none;
  background-color: transparent;
  padding: 0px 10px;
}
.agc-header-section .header-top-content .header-language-select select option {
  color: var(--main-color-2);
}
.agc-header-section .header-main-menu-wrapper {
  z-index: 1;
  padding: 18px 15px;
  /* background-color: #fff; */
  background: rgb(101,116,92);
  background: -moz-linear-gradient(180deg, rgba(101,116,92,1) 31%, rgba(47,56,28,1) 96%);
  background: -webkit-linear-gradient(180deg, rgba(101,116,92,1) 31%, rgba(47,56,28,1) 96%);
  background: linear-gradient(180deg, rgba(101,116,92,1) 31%, rgba(47,56,28,1) 96%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#65745c",endColorstr="#2f381c",GradientType=1);
  
}
/* .agc-header-section .header-main-menu-wrapper:before {
  left: 0;
  width: 0;
  top: 0px;
  height: 0;
  z-index: -1;
  content: "";
  position: absolute;
  border-right: 100px solid transparent;
  border-bottom: 92px solid var(--main-color-2);
} */
.agc-header-section .agc-side-bar-button {
  cursor: pointer;
  padding-left: 20px;
  margin-right: 25px;
}
.agc-header-section .agc-side-bar-button span {
  height: 2px;
  display: block;
  margin: 5px 0px;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  background-color: #000000;
}
.agc-header-section .agc-side-bar-button span:nth-child(1) {
  width: 14px;
}
.agc-header-section .agc-side-bar-button span:nth-child(2) {
  width: 22px;
}
.agc-header-section .agc-side-bar-button span:nth-child(3) {
  width: 18px;
}
.agc-header-section .agc-side-bar-button:hover span:nth-child(1), .agc-header-section .agc-side-bar-button:hover span:nth-child(2), .agc-header-section .agc-side-bar-button:hover span:nth-child(3) {
  width: 22px;
}
.agc-header-section .header-cta-number {
  line-height: 1;
}
.agc-header-section .header-cta-number .header-cta-icon {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  border-radius: 100%;
  background-color: #F5F5F5;
}
.agc-header-section .header-cta-number .header-cta-icon i {
  color: var(--black-color);
}
.agc-header-section .header-cta-number .ar-title {
  font-size: 13px;
  font-weight: 500;
  color: #eeeeee;
}
.agc-header-section .header-cta-number .ar-value {
  display: block;
  /* color: #408345; */
  color: var(--main-color-2);
  font-weight: 700;
  font-size: 14px;
  font-family: "Bellota Text";
}
.agc-header-section .header-cta-btn {
  margin-left: 30px;
}
.agc-header-section .header-cta-btn a {
  width: 155px;
  height: 55px;
  font-size: 16px;
  font-weight: 700;
  /* background-color: var(--main-color-2); */
  /* background-color: #408345; */
  background-color: #ffffff;
  color: var(--black-color);
}
.agc-header-section .header-cta-btn a:hover {
  color: #ffffff !important;
}
.agc-header-section .header-cta-btn a i {
  margin-left: 8px;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  font-size: 20px;
}
.agc-header-section .header-cta-btn a:hover {
  background-color: #000;
}
.agc-header-section .header-cta-btn a:hover i {
  margin-left: 10px;
}

.agc-header-section.sticky_on {
  top: 0;
  padding: 0;
  width: 100%;
  z-index: 20;
  position: fixed;
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  background-color: var(--white-color);
  -webkit-box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.1);
}
.agc-header-section.sticky_on .header-top-content {
  display: none !important;
}
.agc-header-section.sticky_on .header-main-menu-wrapper:before {
  display: none;
}
.agc-header-section.sticky_on .agc-side-bar-button {
  padding-left: 0;
}

.agc-header-section.agc-header-style-two {
  padding-top: 0;
  background-color: #fff;
}
.agc-header-section.agc-header-style-two .header-main-menu-wrapper {
  /* padding: 20px 85px; */
  padding: 10px 85px;
}
.agc-header-section.agc-header-style-two .header-main-menu-wrapper:before {
  display: none;
}
.agc-header-section.agc-header-style-two .agc-side-bar-button {
  padding-left: 0;
}

/*Slider Section*/
/*---------------------------------------------------*/
.agc-slider-section {
  padding: 340px 0px 250px;
}
.agc-slider-section .agc-slider-side1 {
  top: 90px;
  left: 30px;
  color: #fff;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
.agc-slider-section .agc-slider-side2 {
  left: 30px;
  bottom: 80px;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
.agc-slider-section .agc-slider-side2 li {
  margin-bottom: 40px;
}
.agc-slider-section .agc-slider-side2 li a {
  color: #fff;
}
.agc-slider-section .agc-slider-side2 li a:hover {
  color: var(--main-color-2);
}

.agc-slider-counter {
  z-index: 1;
}
.agc-slider-counter .ar-slider-shape-img {
  left: 0px;
  top: -80px;
  z-index: -1;
  opacity: 0.2;
}
.agc-slider-counter .agc-slider-counter-text {
  max-width: 480px;
}
.agc-slider-counter .agc-slider-counter-text h2 {
  line-height: 1;
  font-size: 200px;
  font-weight: 700;
  color: var(--main-color-2);
}
.agc-slider-counter .agc-slider-counter-text p {
  color: #fff;
  font-size: 18px;
  font-family: var(--heading-2);
}

.agc-slider-content:before {
  left: 0;
  right: 0;
  top: -85px;
  width: 1px;
  content: "";
  height: 530px;
  margin: 0 auto;
  position: absolute;
  background-color: var(--main-color-2);
}

.agc-slider-text {
  padding-left: 80px;
}
.agc-slider-text .slider-slug {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 3px 25px;
  margin-bottom: 25px;
  display: inline-block;
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  background-color: var(--main-color-2);
}
.agc-slider-text h1 {
  color: #fff;
  font-size: 44px;
  font-weight: 700;
  line-height: 55px;
  padding-bottom: 20px;
}
.agc-slider-text p {
  color: #fff;
  padding-bottom: 30px;
}

.agc-video-play-btn .agc-slider-btn {
  margin-right: 25px;
}
.agc-video-play-btn .agc-slider-btn a {
  color: #fff;
  width: 165px;
  height: 55px;
  background-color: var(--main-color-2);
}
.agc-video-play-btn .agc-slider-btn a i {
  margin-left: 5px;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
}
.agc-video-play-btn .agc-slider-btn a:hover {
  color: #000;
  background-color: #fff;
}
.agc-video-play-btn .agc-slider-btn a:hover i {
  margin-left: 10px;
}
.agc-video-play-btn .agc-video-play-btn a {
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  border: 1px solid #fff;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.agc-slider-section-2 {
  padding-top: 95px;
  background-color: #f5f5f5;
}
.agc-slider-section-2 .agc-banner-img1 {
  left: 55px;
  top: 120px;
  z-index: 1;
}
.agc-slider-section-2 .agc-banner-img2 {
  top: 210px;
  left: 140px;
}
.agc-slider-section-2 .agc-banner-img3 {
  left: 75px;
  bottom: 230px;
}
.agc-slider-section-2 .agc-banner-img4 {
  left: 220px;
  bottom: 100px;
}
.agc-slider-section-2 .agc-banner-img5 {
  top: 210px;
  right: 160px;
  z-index: 1;
}
.agc-slider-section-2 .agc-banner-img6 {
  right: 60px;
  z-index: 1;
  bottom: 130px;
}
.agc-slider-section-2 .agc-banner-img7 {
  z-index: 0;
  right: 205px;
  bottom: 160px;
  -webkit-animation-name: spin;
          animation-name: spin;
  -webkit-animation-duration: 5000ms;
          animation-duration: 5000ms;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}
.agc-slider-section-2 .agc-banner-counter {
  bottom: 255px;
  right: 275px;
}
.agc-slider-section-2 .agc-banner-counter h3 {
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  color: var(--main-color-2);
}
.agc-slider-section-2 .agc-banner-counter p {
  font-size: 18px;
  color: #000000;
  font-family: var(--heading-2);
}

.agc-slider-content-2 .agc-slider-text-2 {
  margin: 0 auto;
  max-width: 550px;
  padding: 250px 0 285px;
}
.agc-slider-content-2 .agc-slider-text-2 .slider-slug {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 3px 30px;
  border-radius: 20px;
  display: inline-block;
  background-color: #000000;
}
.agc-slider-content-2 .agc-slider-text-2 h1 {
  color: #000000;
  font-size: 48px;
  font-weight: 500;
  padding: 20px 0px 30px;
}
.agc-slider-content-2 .agc-slider-text-2 h1 span {
  color: var(--main-color-2);
}
.agc-slider-content-2 .agc-slider-text-2 p {
  color: #000000;
  padding-bottom: 40px;
}
.agc-slider-content-2 .agc-slider-text-2 .agc-video-play-btn .agc-slider-btn a:hover {
  color: #fff;
  background-color: #000;
}
.agc-slider-content-2 .agc-slider-text-2 .agc-video-play-btn .agc-video-play-btn a {
  color: #000;
  border: 1px solid #000;
}

.slider-side-content {
  top: 0;
  left: 0;
  width: 85px;
  z-index: 12;
  height: 100%;
  background-color: #fff;
}
.slider-side-content .agc-slider-side1 {
  top: 100px;
  left: 25px;
  color: #000;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
.slider-side-content .agc-slider-side2 {
  color: #000;
  left: 25px;
  bottom: 100px;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
.slider-side-content .agc-slider-side2 li {
  margin-bottom: 20px;
}
.slider-side-content .agc-slider-side2 li a:hover {
  color: var(--main-color-2);
}

/*Feature Section*/
/*----------------------------------------------------*/
.agc-feature-section .agc-bg {
  left: 0;
  top: -150px;
}

.agc-feature-content {
  margin: 0 auto;
  max-width: 1920px;
}

.agc-feature-img_2 {
  z-index: 1;
  top: -85px;
  margin-bottom: -115px;
}
.agc-feature-img_2 .agc-ft-shape {
  top: 40px;
  z-index: -1;
  left: -30px;
}
.agc-feature-img_2 .award-wining-text {
  top: 120px;
  right: -70px;
  color: #020202;
  padding: 5px 20px;
  background-color: #fff;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.agc-feature-img_2 .award-wining-text span {
  color: var(--main-color-2);
}
.agc-feature-img_2 .agc-experience-text {
  color: #fff;
  left: 15px;
  bottom: 35px;
  width: 130px;
  height: 120px;
  font-size: 50px;
  line-height: 1.1;
  font-weight: 500;
  padding-top: 15px;
  font-family: var(--heading-2);
  background-color: var(--main-color-2);
}
.agc-feature-img_2 .agc-experience-text sub {
  bottom: 0;
  line-height: 1;
  font-size: 23px;
  font-weight: 700;
}
.agc-feature-img_2 .agc-experience-text p {
  margin: 0 auto;
  font-size: 14px;
  max-width: 100px;
  font-weight: 400;
}

.agc-feature-content-item_2 {
  padding-top: 60px;
  padding-left: 15px;
}

.agc-feature-item_2 .agc-feature-icon,
.agc-service-section-2 .agc-feature-item .agc-feature-icon {
  margin-bottom: 20px;
  display: inline-block;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  -webkit-transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
}
.agc-feature-item_2 .agc-feature-icon:before,
.agc-service-section-2 .agc-feature-item .agc-feature-icon:before {
  top: -5px;
  right: -5px;
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 100%;
  position: absolute;
  background-color: rgba(210, 143, 81, 0.1411764706);
}
.agc-feature-item_2 .agc-feature-text h3,
.agc-service-section-2 .agc-feature-item .agc-feature-text h3 {
  color: #020202;
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 12px;
}
.agc-feature-item_2 .agc-feature-text p,
.agc-service-section-2 .agc-feature-item .agc-feature-text p {
  line-height: 32px;
  padding-bottom: 8px;
}
.agc-feature-item_2 .agc-feature-text a,
.agc-service-section-2 .agc-feature-item .agc-feature-text a {
  color: #020202;
  font-size: 500;
}
.agc-feature-item_2 .agc-feature-text a i,
.agc-service-section-2 .agc-feature-item .agc-feature-text a i {
  margin-left: 5px;
  -webkit-transition: 200ms all ease;
  transition: 200ms all ease;
}
.agc-feature-item_2 .agc-feature-text a:hover,
.agc-service-section-2 .agc-feature-item .agc-feature-text a:hover {
  color: var(--main-color-2);
}
.agc-feature-item_2 .agc-feature-text a:hover i,
.agc-service-section-2 .agc-feature-item .agc-feature-text a:hover i {
  margin-left: 8px;
}
.agc-feature-item_2:hover .agc-feature-icon,
.agc-service-section-2 .agc-feature-item:hover .agc-feature-icon {
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}

.agc-service-section-2 .agc-feature-item .agc-feature-text p {
  max-width: 240px;
}

.agc-feature-cta-text {
  color: #000000;
  font-size: 14px;
  padding: 3px 20px;
  margin-top: 30px;
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.168627451);
}
.agc-feature-cta-text a {
  color: #D28F51;
}

.agc-produce-section {
  padding-top: 75px;
  overflow: hidden;
}

.agc-produce-title {
  padding-bottom: 40px;
}
.agc-produce-title h3 {
  color: #000000;
  font-size: 28px;
  font-weight: 700;
}

/*Faq Section*/
/*----------------------------------------------------*/
.agc-faq-section {
  z-index: 1;
  overflow: hidden;
  padding: 90px 0px 70px;
}
.agc-faq-section .agc-section-title {
  max-width: 730px;
}
.agc-faq-section .ar-bg {
  right: 0;
  bottom: 0;
  z-index: -1;
}

.agc-faq-content-wrapper .accordion-item {
  border: none;
  margin-bottom: 10px;
  border-bottom: 1px solid #D9D9D9;
}
.agc-faq-content-wrapper .accordion-item:first-of-type .accordion-button {
  border-radius: 0;
}
.agc-faq-content-wrapper .accordion-button:not(.collapsed) {
  background-color: transparent;
}
.agc-faq-content-wrapper .accordion-item:first-of-type {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #D9D9D9;
}
.agc-faq-content-wrapper .accordion-button {
  padding: 0;
  border: none;
  border: none;
  height: 50px;
  color: #000000;
  font-size: 18px;
  font-weight: 500;
}
.agc-faq-content-wrapper .accordion-button:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.agc-faq-content-wrapper .accordion-body {
  padding: 0;
  color: rgba(0, 0, 0, 0.5019607843);
  line-height: 42px;
}
.agc-faq-content-wrapper .accordion-button:not(.collapsed)::after,
.agc-faq-content-wrapper .accordion-button::after {
  width: auto;
  height: auto;
  background-image: none;
  content: "\f067";
  font-weight: 900;
  font-family: "Font Awesome 5 Pro";
}
.agc-faq-content-wrapper .accordion-button:not(.collapsed)::after {
  content: "\f068";
}

.agc-faq-section-2 {
  z-index: 1;
  padding: 120px 0px 90px;
}
.agc-faq-section-2:before {
  top: 0;
  right: 0;
  z-index: -1;
  width: 53%;
  content: "";
  height: 100%;
  position: absolute;
  background-color: #f7f4f3;
}

.agc-faq-accordion-2 .agc-faq-content-wrapper .accordion-item:first-of-type,
.agc-faq-accordion-2 .agc-faq-content-wrapper .accordion-item,
.agc-faq-accordion-2 .accordion-item:last-of-type .accordion-button.collapsed,
.agc-faq-accordion-2 .agc-faq-content-wrapper .accordion-item:first-of-type .accordion-button {
  border: none;
  background-color: #f7f4f3;
}
.agc-faq-accordion-2 .accordion-button:not(.collapsed) {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.agc-faq-pointer-wrapper {
  top: 0;
  left: 0;
  width: 47%;
  height: 100%;
  /* background-color: #fcfcfc; */
}
.agc-faq-pointer-wrapper .agc-faq-exp {
  top: 80px;
  left: 25px;
  width: 140px;
  height: 120px;
  padding-top: 25px;
  background-color: #000;
}
.agc-faq-pointer-wrapper .agc-faq-exp h3 {
  color: #fff;
  line-height: 0.75;
  font-size: 50px;
  font-weight: 700;
}
.agc-faq-pointer-wrapper .agc-faq-exp p {
  color: #fff;
  font-size: 12px;
}

.agc-point-area {
  top: 10%;
  right: 10%;
  position: absolute;
}
.agc-point-area .agc-pointer-indicatior {
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
  cursor: pointer;
  position: absolute;
  border-radius: 100%;
  /* background-color: #fff; */
  background-color: #a7ad99;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.agc-point-area .agc-pointer-indicatior:hover {
  color: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  /* background-color: var(--main-color-2); */
  background-color: #58694f;
}
.agc-point-area .agc-pointer-text {
  top: -25px;
  opacity: 0;
  right: 40px;
  width: 240px;
  padding: 20px;
  position: absolute;
  background-color: #fff;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
.agc-point-area .agc-pointer-text:before {
  width: 0;
  height: 0;
  top: 40px;
  content: "";
  right: -20px;
  position: absolute;
  border-left: 20px solid #a7ad99;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.agc-point-area.west .agc-pointer-text{
  right: -240px !important;
  left: unset !important;
}

.agc-point-area.west:hover .agc-pointer-text{
  right: -280px !important;
  left: unset !important;
}
.agc-point-area.west .agc-pointer-text:before {
  width: 0;
  height: 0;
  top: 40px;
  content: "";
  left: -20px;
  transform: rotate(180deg);
  position: absolute;
  border-left: 20px solid #a7ad99;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.agc-point-area .agc-pointer-text h3 {
  color: #000000;
  font-size: 14px;
  font-weight: 700;
  padding-bottom: 10px;
}
.agc-point-area .agc-pointer-text p {
  font-size: 12px;
  line-height: 19px;
}
.agc-point-area:hover .agc-pointer-text {
  opacity: 1;
  right: 80px;
}
.agc-point-area:nth-child(1) {
  top: -12px;
  right: 55.8%;
}
.agc-point-area:nth-child(2) {
  top: 110px;
  right: 95%;
}
.agc-point-area:nth-child(3) {
  top: auto;
  right: 0;
  bottom: 40%;
}
.agc-point-area:nth-child(4) {
  top: auto;
  right: 30%;
  bottom: 50%;
}
.agc-point-area:nth-child(5) {
  top: auto;
  left: 40%;
  right: auto;
  bottom: 30%;
}

/*Fun Fact Section*/
/*----------------------------------------------------*/
.agc-fun-fact-section {
  padding: 45px 0px;
  background-color: var(--main-color-2);
}

.agc-fun-fact-title h3 {
  color: #fff;
  font-size: 34px;
  font-weight: 500;
  padding-bottom: 15px;
}
.agc-fun-fact-title p {
  color: #fff;
}

.agc-fun-fact-item h3 {
  opacity: 0.3;
  color: #FFFFFF;
  line-height: 1;
  font-size: 93px;
}
.agc-fun-fact-item p {
  color: #000000;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 5px;
}

/*Team Section*/
/*----------------------------------------------------*/
.agc-team-section {
  overflow: hidden;
}
.agc-team-section .container {
  max-width: 1500px;
}

.agc-team-content {
  padding: 100px 60px;
  background-color: #fbf8f6;
}
.agc-team-content .agc-section-title {
  margin: 0 auto;
  max-width: 560px;
}

.agc-team-slider-area {
  margin: 0px -15px;
}

.agc-team-item-wrap {
  padding: 0px 15px;
}

.agc-team-item {
  max-width: 322px;
}
.agc-team-item .team-text {
  left: 0;
  right: 0;
  width: 80%;
  opacity: 0;
  bottom: 0px;
  margin: 0 auto;
  padding: 20px 15px;
  position: absolute;
  background-color: #fff;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
}
.agc-team-item .team-text span {
  font-size: 13px;
  color: var(--main-color-2);
}
.agc-team-item .team-text h3 {
  color: #241616;
  font-size: 16px;
}
.agc-team-item .team-social {
  top: 80px;
  right: 30px;
  position: absolute;
}
.agc-team-item .team-social:before {
  top: -45px;
  left: -11px;
  width: 34px;
  height: 34px;
  color: #5D5D70;
  content: "\f067";
  font-weight: 900;
  line-height: 34px;
  text-align: center;
  position: absolute;
  border-radius: 100%;
  background-color: #fff;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  font-family: "Font Awesome 5 Pro";
}
.agc-team-item .team-social ul {
  opacity: 0;
  margin-top: 20px;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
}
.agc-team-item .team-social li {
  margin-bottom: 5px;
}
.agc-team-item .team-social li a {
  color: #3E3E4F;
}
.agc-team-item .team-social li a:hover {
  color: var(--main-color-2);
}
.agc-team-item:hover .team-text {
  opacity: 1;
  bottom: 25px;
}
.agc-team-item:hover .team-social:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.agc-team-item:hover .team-social ul {
  opacity: 1;
  margin-top: 0;
}

.ar-team_left_arrow,
.ar-team_right_arrow {
  top: 50%;
  border: none;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: transparent;
}

.ar-team_left_arrow {
  left: -180px;
}

.ar-team_right_arrow {
  right: -180px;
}

/*Project Section*/
/*----------------------------------------------------*/
.agc-project-section {
  overflow: hidden;
  border-top: 1px solid #D7D8E3;
}

.agc-project-item {
  width: 25%;
  overflow: hidden;
  padding: 40px 50px 50px;
  border-right: 1px solid #D7D8E3;
}
.agc-project-item:last-child {
  border-right: none;
}
.agc-project-item .hover-item {
  top: 0;
  opacity: 0;
  left: -30px;
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
}
.agc-project-item .hover-item .inner-text {
  left: 0;
  right: 0;
  width: 90%;
  opacity: 0;
  bottom: -40px;
  margin: 0 auto;
  padding: 28px 25px;
  background-color: #fff;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.agc-project-item .hover-item .inner-text .inner-serial {
  font-size: 40px;
  font-weight: 700;
  margin-left: 20px;
  color: var(--main-color-2);
  font-family: var(--heading-2);
}
.agc-project-item .hover-item .inner-title {
  margin-top: 15px;
}
.agc-project-item .hover-item .inner-title h3 {
  color: #000000;
  font-size: 28px;
  font-weight: 500;
  line-height: 38px;
}
.agc-project-item .hover-item .inner-title a {
  color: #020202;
  font-size: 14px;
  font-weight: 500;
}
.agc-project-item .hover-item .inner-title a i {
  margin-left: 5px;
  -webkit-transition: 200ms all ease;
  transition: 200ms all ease;
}
.agc-project-item .hover-item .inner-title a:hover {
  color: var(--main-color-2);
}
.agc-project-item .hover-item .inner-title a:hover i {
  margin-left: 8px;
}
.agc-project-item .img-bg {
  left: 0;
  bottom: 0;
}
.agc-project-item .project-icon {
  margin-bottom: 130px;
}
.agc-project-item .project-text h3 {
  color: #000000;
  font-size: 28px;
  font-weight: 500;
  line-height: 38px;
  padding-bottom: 15px;
}
.agc-project-item .project-text p {
  padding-bottom: 20px;
}
.agc-project-item .project-text a {
  color: #020202;
  font-size: 14px;
  font-weight: 500;
}
.agc-project-item .project-text a i {
  margin-left: 5px;
}
.agc-project-item:hover .hover-item {
  left: 0;
  opacity: 1;
}
.agc-project-item:hover .hover-item .inner-text {
  opacity: 1;
  bottom: 25px;
}

/*Before After Section*/
/*----------------------------------------------------*/
.agc-before-after-section {
  z-index: 1;
  overflow: hidden;
  padding: 70px 0px 110px;
  background-color: #232A31;
}
.agc-before-after-section .agc-section-title {
  margin: 0 auto;
  max-width: 680px;
}
.agc-before-after-section .agc-section-title h2 {
  color: #fff;
}
.agc-before-after-section .agc-before-after-shape {
  top: 70px;
  left: 20px;
  z-index: -1;
  opacity: 0.2;
}
.agc-before-after-section .tab-content > .tab-pane {
  height: 0;
  display: block;
}
.agc-before-after-section .tab-content > .active {
  height: auto;
  display: block;
}

.agc-before-after-tab-btn {
  padding-left: 30px;
}
.agc-before-after-tab-btn:before {
  top: 0;
  left: 0;
  width: 4px;
  content: "";
  height: 100%;
  border-radius: 5px;
  position: absolute;
  background-color: #EAEAEA;
}
.agc-before-after-tab-btn .nav {
  display: inherit;
}
.agc-before-after-tab-btn .nav-link {
  padding: 0;
}
.agc-before-after-tab-btn .nav-pills .nav-link {
  color: #fff;
  border-radius: 0;
}
.agc-before-after-tab-btn .nav-pills .nav-link.active, .agc-before-after-tab-btn .nav-pills .show > .nav-link,
.agc-before-after-tab-btn .nav-pills .nav-link {
  position: relative;
  background-color: transparent;
}
.agc-before-after-tab-btn .nav-pills .nav-link.active:before, .agc-before-after-tab-btn .nav-pills .show > .nav-link:before,
.agc-before-after-tab-btn .nav-pills .nav-link:before {
  top: 0;
  left: -30px;
  width: 4px;
  content: "";
  height: 0px;
  position: absolute;
  border-radius: 5px;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  /* background-color: var(--main-color-2); */
  background-color: #58694f;
}
.agc-before-after-tab-btn .nav-pills .nav-link.active {
  position: relative;
  color: var(--main-color-2);
}
.agc-before-after-tab-btn .nav-pills .nav-link.active:before {
  height: 50px;
}
.agc-before-after-tab-btn li {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 25px;
}

.beforeafter-wrap .twentytwenty-handle {
  border: none;
  background-color: var(--main-color-2);
}
.beforeafter-wrap .twentytwenty-after-label:before {
  content: "AFTER DESIGN";
}
.beforeafter-wrap .twentytwenty-before-label:before {
  content: "BEFORE DESIGN";
}
.beforeafter-wrap .twentytwenty-before-label:before, .beforeafter-wrap .twentytwenty-after-label:before {
  top: auto;
  bottom: 30px;
  font-size: 12px;
  font-weight: 500;
  padding: 0px 15px;
  line-height: 30px;
  color: var(--white-color);
  background-color: var(--main-color-2);
}
.beforeafter-wrap .twentytwenty-horizontal .twentytwenty-before-label:before {
  left: 30px;
}
.beforeafter-wrap .twentytwenty-horizontal .twentytwenty-after-label:before {
  right: 30px;
}
.beforeafter-wrap .twentytwenty-overlay:hover {
  background-color: transparent;
}
.beforeafter-wrap .twentytwenty-before-label,
.beforeafter-wrap .twentytwenty-after-label {
  opacity: 1;
}

/*Service Section*/
/*----------------------------------------------------*/
.agc-service-section {
  overflow: hidden;
  padding: 80px 0px;
}

.agc-service-text-area {
  max-width: 400px;
}
.agc-service-text-area .agc-section-title {
  padding-bottom: 35px;
}
.agc-service-text-area .agc-section-title h2 {
  font-size: 28px;
  line-height: 44px;
}
.agc-service-text-area .agc-section-title h2 span:before {
  bottom: 5px;
}

.agc-service-list-wraper li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
}
.agc-service-list-wraper li:before {
  left: 0;
  top: 8px;
  width: 20px;
  content: "";
  height: 20px;
  position: absolute;
  background-repeat: no-repeat;
  background-image: url(../icon/check.png);
}

.agc-service-item {
  padding: 40px 35px;
  position: relative;
  border: 1px solid #fff;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
}
.agc-service-item .bg-img {
  left: 0;
  right: 0;
  opacity: 0;
  top: 45px;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
}
.agc-service-item:before {
  left: 0;
  right: 0;
  bottom: 0;
  width: 0%;
  height: 5px;
  content: "";
  margin: 0 auto;
  position: absolute;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  background-color: var(--main-color-2);
}
.agc-service-item.active, .agc-service-item:hover {
  border: 1px solid rgba(0, 0, 0, 0.168627451);
}
.agc-service-item.active:before, .agc-service-item:hover:before {
  width: 100%;
}
.agc-service-item.active .bg-img, .agc-service-item:hover .bg-img {
  top: 25px;
  opacity: 1;
}
.agc-service-item .service-serial {
  font-size: 40px;
  color: rgba(0, 0, 0, 0.1490196078);
  font-weight: 600;
  margin-bottom: 5px;
}
.agc-service-item .service-title-text h3 {
  color: #020202;
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 10px;
}
.agc-service-item .service-title-text p {
  padding-bottom: 15px;
}
.agc-service-item .service-title-text .more-btn {
  font-size: 20px;
}
.agc-service-item .service-title-text .more-btn:hover {
  color: var(--main-color-2);
}

.agc-service-section-2 {
  z-index: 1;
}
.agc-service-section-2 .container {
  max-width: 1490px;
}
.agc-service-section-2 .agc-section-title {
  max-width: 520px;
  padding-bottom: 0;
  padding-top: 60px;
}

.agc-service-top-content-2 .agc-feature-item {
  margin-top: 30px;
}
.agc-service-top-content-2 .agc-feature-item:after {
  right: 5px;
}
.agc-service-top-content-2 .top-service-item {
  margin-left: 180px;
}

.agc-service-content-2 .agc-feature-item .agc-feature-text p {
  max-width: 235px;
}
.agc-service-content-2 .agc-feature-item {
  margin-top: 90px;
}
.agc-service-content-2 .agc-feature-item:after {
  right: 5px;
}
.agc-service-content-2 .agc-feature-item:last-child:after {
  display: block;
}
.agc-service-content-2 .col-lg-3:nth-child(3) .agc-feature-item:after, .agc-service-content-2 .col-lg-3:nth-child(6) .agc-feature-item:after {
  display: none;
}
.agc-service-content-2 .agc-feature-item .agc-feature-icon:before {
  display: none;
}

.agc-service-section-2 {
  z-index: 1;
  padding: 40px 0px 0px;
}
.agc-service-section-2:before {
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  width: 100%;
  height: 700px;
  position: absolute;
  background-color: #fbf8f6;
  background-image: url(../img/bg/shape-bg.png);
  background-repeat: no-repeat;
}
.agc-service-section-2:after {
  left: 0;
  top: 40px;
  z-index: -1;
  content: "";
  width: 830px;
  height: 275px;
  position: absolute;
  background-color: #fff;
}

.agc-service-content-2 {
  padding-bottom: 130px;
}

.agc-service-img-2 {
  right: 0;
  z-index: 1;
  bottom: 20px;
  position: absolute;
}
.agc-service-img-2:before {
  top: 20px;
  width: 100%;
  content: "";
  z-index: -1;
  height: 100%;
  right: -20px;
  position: absolute;
  background-color: var(--main-color-2);
}
.agc-service-img-2 .circle-shape {
  top: -40px;
  left: -75px;
  z-index: -1;
}

.agc-service-text-wrapper {
  padding-top: 150px;
}

.agc-service-text-area-2 {
  color: #000000;
}
.agc-service-text-area-2 span {
  font-size: 15px;
}
.agc-service-text-area-2 h3 {
  font-size: 20px;
}
.agc-service-text-area-2:before {
  top: 25px;
  right: 50px;
  height: 2px;
  content: "";
  width: 200px;
  position: absolute;
  background-color: var(--main-color-2);
}

.agc-service-text-content {
  max-width: 970px;
}

.agc-service-top-content-2 {
  padding-left: 85px;
}

/*About Section*/
/*----------------------------------------------------*/
.agc-about-section {
  z-index: 1;
  overflow: hidden;
  padding: 95px 0px 115px;
  background-color: #fcfcfc;
}
.agc-about-section:before {
  top: 0;
  right: 0;
  width: 56.5%;
  z-index: -1;
  content: "";
  height: 100%;
  position: absolute;
  background-color: #f8f6f4;
}

.agc-about-sub-text {
  margin-bottom: 40px;
}
.agc-about-sub-text h3 {
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 15px;
}
.agc-about-sub-text p {
  line-height: 35px;
}

.agc-about-feature-list li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
}
.agc-about-feature-list li:before {
  left: 0;
  top: 8px;
  width: 30px;
  content: "";
  height: 30px;
  position: absolute;
  background-repeat: no-repeat;
  background-image: url(../icon/check.png);
}

.agc-about-sponsor-scroller {
  padding-left: 20px;
}

.agc-about-sponsor-wrapper {
  margin: 0px -10px;
}
.agc-about-sponsor-wrapper .agc-sponsor-item {
  height: 90px;
  width: 170px;
  margin: 0px 10px;
  padding-top: 25px;
  background-color: #fff;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
}
.agc-about-sponsor-wrapper .agc-sponsor-item img {
  margin: 0 auto;
}
.agc-about-sponsor-wrapper .agc-sponsor-item:hover {
  background-color: var(--main-color-2);
}

.agc-about-experience-scoller {
  margin-top: 80px;
}

.agc-about-experience {
  width: 170px;
  height: 275px;
  border: 1px solid #D28F51;
}
.agc-about-experience .agc-about-exp-text h3 {
  font-size: 50px;
  font-weight: 500;
  padding-bottom: 15px;
  color: var(--main-color-2);
}
.agc-about-experience .agc-about-exp-text h3 sub {
  bottom: 0;
}
.agc-about-experience .agc-about-exp-text p {
  color: #32302E;
  font-size: 14px;
  line-height: 1.3;
  max-width: 105px;
  font-family: var(--heading-2);
}

.agc-about-scroller-wrapper {
  width: 605px;
  height: 275px;
  margin-left: 35px;
  overflow-y: scroll;
}
.agc-about-scroller-wrapper::-webkit-scrollbar {
  width: 4px;
}
.agc-about-scroller-wrapper::-webkit-scrollbar-track {
  background: #EAEAEA;
}
.agc-about-scroller-wrapper::-webkit-scrollbar-thumb {
  background: var(--main-color-2);
}

.agc-about-scroller-item {
  margin-bottom: 50px;
}
.agc-about-scroller-item h3 {
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 20px;
}
.agc-about-scroller-item p {
  line-height: 35px;
}

.agc-about-section-2 {
  z-index: 1;
  padding: 100px 0px;
}
.agc-about-section-2 .container {
  max-width: 1490px;
}
.agc-about-section-2 .agc-about-counter-img {
  left: 0;
  right: 0;
  top: 70px;
  z-index: -1;
  margin: 0 auto;
  text-align: center;
}

.agc-about-img-wrapper-2 .agc-about-img-2 {
  z-index: 1;
  max-width: 335px;
}
.agc-about-img-wrapper-2 .agc-about-img-2:before {
  top: 0;
  z-index: -1;
  width: 100%;
  content: "";
  height: 100%;
  right: -20px;
  position: absolute;
  border-radius: 170px;
  background-color: var(--main-color-2);
}
.agc-about-img-wrapper-2 .agc-about-exp-text {
  top: 50%;
  z-index: 1;
  left: -20px;
  color: #000;
  font-weight: 500;
  padding: 30px 5px;
  background-color: #fff;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.0509803922);
          box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.0509803922);
}
.agc-about-img-wrapper-2 .agc-about-exp-text span {
  color: var(--main-color-2);
}
.agc-about-img-wrapper-2 .agc-about-mail {
  bottom: 0;
  z-index: 1;
  left: -70px;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.agc-about-img-wrapper-2 .agc-about-mail img {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.agc-about-img-wrapper-2 .agc-about-mail span {
  top: 3px;
  left: -45px;
  color: #fff;
  position: relative;
  padding: 10px 40px;
  border-radius: 30px;
  background-color: var(--main-color-2);
}

.agc-about-counter {
  padding-top: 110px;
}
.agc-about-counter h3 {
  line-height: 1;
  font-size: 200px;
  font-weight: 700;
  color: var(--main-color-2);
}
.agc-about-counter p {
  color: #000000;
  font-size: 18px;
  font-weight: 500;
}
.agc-about-counter .counter-text {
  margin-top: 80px;
}

.agc-about-service-area {
  width: 350px;
  padding: 15px;
  border: 1px solid rgba(222, 212, 212, 0.6);
}
.agc-about-service-area .agc-about-service {
  padding: 25px;
}
.agc-about-service-area .agc-about-service .about-service-icon {
  margin-right: 25px;
}
.agc-about-service-area .agc-about-service .about-service-title h3 {
  color: #000000;
  font-size: 16px;
  font-weight: 700;
}
.agc-about-service-area .agc-about-service .about-service-title p {
  font-size: 15px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.2784313725);
}
.agc-about-service-area .agc-about-service .agc-service-list-item {
  margin-top: 55px;
}
.agc-about-service-area .agc-about-service .agc-service-list-item li {
  color: #020202;
  margin-bottom: 28px;
}
.agc-about-service-area .agc-about-service .agc-service-list-item li img {
  margin-right: 15px;
}
.agc-about-service-area .about-service-btn a {
  color: #fff;
  width: 100%;
  height: 45px;
  font-size: 14px;
  background-color: var(--main-color-2);
}
.agc-about-service-area .about-service-btn a:hover {
  background-color: #000000;
}

/*Work Process Section*/
/*---------------------------------------------------*/
.agc-work-process-section {
  z-index: 1;
  margin-top: 50px;
  overflow: hidden;
}
.agc-work-process-section .container {
  max-width: 1490px;
}
.agc-work-process-section .agc-wp-exp-text1,
.agc-work-process-section .agc-wp-exp-text2 {
  left: 130px;
  color: #000000;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
.agc-work-process-section .agc-wp-exp-text1 span,
.agc-work-process-section .agc-wp-exp-text2 span {
  color: var(--main-color-2);
}
.agc-work-process-section .agc-wp-exp-text1 {
  top: 50px;
}
.agc-work-process-section .agc-wp-exp-text2 {
  bottom: 50px;
}
.agc-work-process-section .agc-work-pro-img {
  top: 0;
  right: 0;
  z-index: -1;
}

.agc-work-process-system-content {
  background-color: #fdfdfd;
}

.agc-work-process-item-wrap {
  padding: 0px 15px;
}

.agc-work-process-item {
  max-width: 260px;
  position: relative;
}
.agc-work-process-item:after {
  top: 15px;
  right: -25px;
  width: 1px;
  height: 100%;
  content: "";
  position: absolute;
  background-color: rgba(217, 217, 217, 0.4392156863);
}
.agc-work-process-item .agc-work-porcess-icon {
  width: 75px;
  height: 75px;
  border-radius: 100%;
  border: 1px solid rgba(210, 143, 81, 0.3490196078);
}
.agc-work-process-item .agc-work-process-serial {
  opacity: 0.5;
  font-size: 60px;
  font-weight: 500;
  color: var(--main-color-2);
  font-family: var(--heading-2);
}
.agc-work-process-item .agc-work-process-text {
  margin-top: 10px;
}
.agc-work-process-item .agc-work-process-text h3 {
  color: #020202;
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 15px;
}
.agc-work-process-item .agc-work-process-text p {
  max-width: 265px;
}

.agc-work-process-system {
  right: 0;
  top: 50%;
  max-width: 1070px;
  overflow: hidden;
  position: absolute;
  background-color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.agc-work-process-system .agc-work-process-system-content {
  padding: 65px 55px;
}

.agc-work-process-title {
  margin-top: 35px;
  margin-left: 15px;
}
.agc-work-process-title h3 {
  color: #000000;
  font-size: 38px;
  font-weight: 700;
}
.agc-work-process-title h3 span {
  font-weight: 400;
  color: var(--main-color-2);
}

/*Contact Section*/
/*---------------------------------------------------*/
.agc-contact-section {
  padding: 55px 0px 90px;
}

.agc-contact-img {
  z-index: 1;
  top: -170px;
  margin-bottom: -170px;
}
.agc-contact-img .img-shape {
  top: 45px;
  width: 80%;
  z-index: -1;
  height: 85%;
  right: -20px;
  position: absolute;
  background-color: var(--main-color-2);
}

.agc-counter-wrapper {
  margin-top: 40px;
}

.agc-counter-item h3 {
  font-size: 32px;
  font-weight: 500;
  color: var(--main-color-2);
}
.agc-counter-item p {
  color: #000000;
}

.agc-contact-form-wrapper {
  padding-left: 100px;
}

.agc-contact-form input, .agc-contact-form textarea {
  width: 100%;
  height: 50px;
  border: none;
  margin-bottom: 40px;
  border-bottom: 1px solid #E0E0E0;
}
.agc-contact-form input::-webkit-input-placeholder, .agc-contact-form textarea::-webkit-input-placeholder {
  color: #817F7E;
}
.agc-contact-form input::-moz-placeholder, .agc-contact-form textarea::-moz-placeholder {
  color: #817F7E;
}
.agc-contact-form input:-ms-input-placeholder, .agc-contact-form textarea:-ms-input-placeholder {
  color: #817F7E;
}
.agc-contact-form input::-ms-input-placeholder, .agc-contact-form textarea::-ms-input-placeholder {
  color: #817F7E;
}
.agc-contact-form input::placeholder, .agc-contact-form textarea::placeholder {
  color: #817F7E;
}
.agc-contact-form textarea {
  height: 90px;
}
.agc-contact-form button {
  color: #fff;
  height: 58px;
  width: 252px;
  border: none;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  background-color: var(--main-color-2);
}
.agc-contact-form button i {
  margin-left: 5px;
}
.agc-contact-form button:hover {
  background-color: #000;
}

.agc-contact-section-2 {
  overflow: hidden;
  padding-bottom: 20px;
}
.agc-contact-section-2 .agc-contact-form-wrapper {
  max-width: 750px !important;
}

.agc-contact-map-form .agc-contact-map {
  width: 50%;
  -webkit-filter: invert(90%);
          filter: invert(90%);
  background-color: #fff;
}
.agc-contact-map-form .agc-contact-form-wrapper {
  width: 50%;
  max-width: 100%;
  padding-top: 80px;
  padding-left: 60px;
  padding-right: 15px;
}

.agc-testimonial-section-2 {
  overflow: hidden;
  padding: 80px 0px 160px;
}
.agc-testimonial-section-2 .agc-testimonial-bg-2 {
  bottom: 0;
  left: -50px;
}

.agc-testimonial-2-slider-wrapper {
  margin: 0 auto;
  max-width: 1270px;
}

.agc-testimonial-img-2 {
  z-index: 1;
  width: 360px;
  margin-right: 120px;
}
.agc-testimonial-img-2 .inner-img {
  width: 340px;
  height: 335px;
  overflow: hidden;
  border-radius: 100%;
}
.agc-testimonial-img-2 .testimonial-social {
  left: 20px;
  bottom: -10px;
  padding: 3px 15px;
  position: absolute;
  background-color: #fff;
  -webkit-transform: skew(-15deg);
          transform: skew(-15deg);
  -webkit-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.0784313725);
          box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.0784313725);
}
.agc-testimonial-img-2 .testimonial-social li {
  margin: 0px 10px;
}
.agc-testimonial-img-2 .testimonial-social li a {
  color: #1E1919;
}
.agc-testimonial-img-2 .testimonial-social li a:hover {
  color: var(--main-color-2);
}
.agc-testimonial-img-2 .agc-shape1 {
  left: -50px;
  bottom: -65px;
}
.agc-testimonial-img-2 .agc-shape2 {
  right: 0;
  bottom: 0;
  z-index: -1;
}
.agc-testimonial-img-2 .agc-testimonial-quote {
  top: -35px;
  right: -10px;
  line-height: 0;
  color: #DADADA;
  font-size: 55px;
}

.agc-testimonial-img-text-2 {
  padding-top: 40px;
}

.agc-textimonial-text-2 h3 {
  color: #020202;
  font-size: 38px;
  padding-bottom: 20px;
}
.agc-textimonial-text-2 p {
  color: #000000;
  font-size: 20px;
  line-height: 45px;
  padding-bottom: 20px;
}

.agc-testimonial-author-2 h4 {
  color: #445658;
  font-size: 16px;
  margin-right: 25px;
}
.agc-testimonial-author-2 span {
  color: #445658;
  font-size: 13px;
  letter-spacing: 5px;
}

.agc-testimonial-slider-2 .slick-dots li {
  color: #000;
  position: relative;
}
.agc-testimonial-slider-2 .slick-dots li:after {
  top: 0;
  right: -7px;
  content: "/";
  position: absolute;
}
.agc-testimonial-slider-2 .slick-dots li:last-child:after {
  display: none;
}
.agc-testimonial-slider-2 .slick-dots li.slick-active {
  color: var(--main-color-2);
}
.agc-testimonial-slider-2 .ar-tst_2_left_arrow,
.agc-testimonial-slider-2 .ar-tst_2_right_arrow {
  border: none;
  background-color: transparent;
}

.agc-testimonial-2-slider-wrapper .ar-tst_2_left_arrow,
.agc-testimonial-2-slider-wrapper .ar-tst_2_right_arrow {
  border: none;
  position: relative;
  background-color: transparent;
}
.agc-testimonial-2-slider-wrapper .ar-tst_2_left_arrow {
  top: -5px;
  left: -40px;
}
.agc-testimonial-2-slider-wrapper .ar-tst_2_right_arrow {
  top: -5px;
  right: -40px;
}
.agc-testimonial-2-slider-wrapper .carousel_nav {
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  position: absolute;
}

/*Project Section*/
/*---------------------------------------------------*/
.agc-project-section-2 {
  overflow: hidden;
  padding: 100px 0px 50px;
  background-color: #232A31;
}
.agc-project-section-2 .agc-section-title {
  max-width: 480px;
  padding-bottom: 0;
}
.agc-project-section-2 .agc-section-title h2 {
  color: #fff;
}

.agc-project-slider-area {
  margin: 0px -10px;
  padding-top: 75px;
}

.ar-pro_left_arrow,
.ar-pro_right_arrow {
  width: 55px;
  height: 40px;
  border: none;
  font-size: 20px;
  margin-left: 10px;
  background-color: #fff;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  color: var(--main-color-2);
}
.ar-pro_left_arrow:hover,
.ar-pro_right_arrow:hover {
  color: #fff;
  background-color: var(--main-color-2);
}

.agc-project-item-2 {
  width: 368px;
  margin: 0px 10px;
}
.agc-project-item-2 .serial-no {
  top: 0px;
  right: 0px;
  opacity: 0;
  width: 45px;
  height: 45px;
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  border-radius: 23px;
  border-top-right-radius: 0;
  background-color: #FFFFFF;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
}
.agc-project-item-2 .agc-project-text-2 {
  left: 0;
  right: 0;
  width: 90%;
  opacity: 0;
  bottom: 0px;
  height: 70px;
  margin: 0 auto;
  padding: 0px 15px;
  background-color: #fff;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
}
.agc-project-item-2 .agc-project-text-2 h3 {
  color: #020202;
  font-size: 16px;
}
.agc-project-item-2 .agc-project-text-2 .more_btn {
  color: #fff;
  width: 50px;
  height: 45px;
  font-size: 20px;
  background-color: var(--main-color-2);
}
.agc-project-item-2:hover .serial-no {
  top: 12px;
  opacity: 1;
  right: 12px;
}
.agc-project-item-2:hover .agc-project-text-2 {
  opacity: 1;
  bottom: 20px;
}

.agc-project-section-3 {
  z-index: 1;
  padding: 100px 0px 120px;
}
.agc-project-section-3 .agc-section-title {
  margin: 0 auto;
  max-width: 750px;
}
.agc-project-section-3 .agc-project-pro-img {
  top: 0;
  right: 0;
  z-index: -1;
}
.agc-project-content-3 .agc-before-after-tab-btn .nav-pills .nav-link {
  color: #000000;
  text-align: left;
}
.agc-project-content-3 .agc-before-after-tab-btn .nav-pills .nav-link.active {
  /* color: var(--main-color-2); */
  color: #a7ad99;
  font-weight: 600;
  text-align: left;
}

.agc-project-item-3 {
  max-width: 938px;
}
.agc-project-item-3 .agc-project-text {
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 15px 45px;
  background-color: rgba(0, 0, 0, 0.7);
}
.agc-project-item-3 .agc-project-text h3 {
  color: #fff;
  font-size: 20px;
}
.agc-project-item-3 .agc-project-text .read-more-btn {
  width: 42px;
  height: 42px;
  color: #000000;
  border-radius: 0px;
  background-color: #a7ad99;
  border-top-right-radius: 0;
  margin-right: -30px;
}
.agc-project-item-3 .agc-project-text .read-more-btn:hover {
  color: #fff;
  /* background-color: var(--main-color-2); */
  background-color: #58694f !important;
}

/*News Latter Section*/
/*---------------------------------------------------*/
.agc-newslatter-content {
  max-width: 870px;
  padding-top: 75px;
}

.agc-newslatter-cta {
  width: 270px;
}
.agc-newslatter-cta .inner-icon {
  margin-right: 15px;
}
.agc-newslatter-cta .inner-text {
  color: #fff;
  font-size: 14px;
}
.agc-newslatter-cta .inner-text span {
  display: block;
}
.agc-newslatter-cta .inner-text .cta-no {
  font-weight: 500;
}
.agc-newslatter-cta .inner-text .cta-text a {
  color: var(--main-color-2);
}

.newslatter-form {
  width: 470px;
}
.newslatter-form:before {
  top: 25px;
  left: 30px;
  width: 1px;
  content: "";
  height: 12px;
  position: absolute;
  background-color: #949392;
}
.newslatter-form .bg-icon {
  left: 0;
  top: 15px;
}
.newslatter-form input {
  width: 100%;
  border: none;
  height: 60px;
  padding-left: 45px;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6705882353);
}
.newslatter-form input::-webkit-input-placeholder {
  color: #949392;
}
.newslatter-form input::-moz-placeholder {
  color: #949392;
}
.newslatter-form input:-ms-input-placeholder {
  color: #949392;
}
.newslatter-form input::-ms-input-placeholder {
  color: #949392;
}
.newslatter-form input::placeholder {
  color: #949392;
}
.newslatter-form button {
  right: 0;
  top: 20px;
  color: #fff;
  border: none;
  font-weight: 500;
  position: absolute;
  font-family: var(--heading-2);
  background-color: transparent;
}

/*Testimonial Section*/
/*---------------------------------------------------*/
.agc-testimonial-section {
  z-index: 1;
  padding-bottom: 120px;
}
.agc-testimonial-section:before {
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  width: 952px;
  height: 200px;
  position: absolute;
  background-color: #f4f2f1;
}
.agc-testimonial-section .agc-section-title {
  max-width: 450px;
  padding-bottom: 0px;
}

.agc-testimonial-top-content {
  max-width: 760px;
  padding-top: 60px;
}

.agc-testimonial-carousel-btn .carousel-control-next,
.agc-testimonial-carousel-btn .carousel-control-prev {
  opacity: 1;
  width: 60px;
  color: #fff;
  height: 55px;
  position: static;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  background-color: var(--main-color-2);
}
.agc-testimonial-carousel-btn .carousel-control-next:hover,
.agc-testimonial-carousel-btn .carousel-control-prev:hover {
  color: #000000;
  background-color: #fff;
}
.agc-testimonial-carousel-btn .carousel-control-prev-icon,
.agc-testimonial-carousel-btn .carousel-control-next-icon {
  background-image: none;
}

.agc-testimonial-slider {
  padding-top: 95px;
}
.agc-testimonial-slider .carousel-indicators {
  margin: 0;
  position: static;
  display: inline-block;
}
.agc-testimonial-slider .carousel-indicators:hover [data-bs-target] {
  margin-left: 0px;
}
.agc-testimonial-slider .carousel-indicators:hover [data-bs-target]:nth-child(1) {
  margin-left: 0px;
}
.agc-testimonial-slider .carousel-indicators [data-bs-target] {
  opacity: 1;
  width: 50px;
  height: 50px;
  border: none;
  text-indent: 0;
  margin-right: 0;
  overflow: hidden;
  margin-left: -20px;
  border-radius: 100%;
  border: 3px solid #fff;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
}
.agc-testimonial-slider .carousel-indicators [data-bs-target]:nth-child(1) {
  margin-left: 0;
}
.agc-testimonial-slider .carousel-indicators [data-bs-target].active {
  border: 3px solid var(--main-color-2);
}
.agc-testimonial-slider .carousel-indicators-wrap {
  margin-top: 40px;
}
.agc-testimonial-slider .carousel-indicators-wrap .more-testimonial-btn {
  margin-left: 15px;
}
.agc-testimonial-slider .carousel-indicators-wrap .more-testimonial-btn a {
  color: #000000;
  font-weight: 500;
}
.agc-testimonial-slider .carousel-indicators-wrap .more-testimonial-btn a i {
  margin-left: 5px;
}

.agc-testimonial-item h3 {
  color: #020202;
  font-size: 30px;
  padding-bottom: 20px;
}
.agc-testimonial-item p {
  color: #000000;
  max-width: 805px;
  line-height: 30px;
}

.agc-testimonial-img-wrap .inner-img {
  z-index: 1;
  top: -90px;
  padding-right: 30px;
  margin-bottom: -90px;
}
.agc-testimonial-img-wrap .inner-img:before {
  right: 0;
  top: 30px;
  width: 90%;
  z-index: -1;
  content: "";
  height: 100%;
  position: absolute;
  background-color: var(--main-color-2);
}

/*Blog Section*/
/*---------------------------------------------------*/
.agc-blog-section {
  overflow: hidden;
  padding-bottom: 115px;
}
.agc-blog-section .agc-section-title {
  margin: 0 auto;
  max-width: 570px;
}

.agc-blog-item {
  max-width: 445px;
}
.agc-blog-item .blog-img {
  overflow: hidden;
  margin-bottom: 20px;
}
.agc-blog-item .blog-img img {
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
}
.agc-blog-item .blog-category {
  left: 30px;
  color: #fff;
  width: 145px;
  height: 35px;
  bottom: 30px;
  font-weight: 700;
  background-color: #000000;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
}
.agc-blog-item .blog-meta {
  margin-bottom: 12px;
}
.agc-blog-item .blog-meta li {
  margin-right: 20px;
}
.agc-blog-item .blog-meta li a {
  color: #000000;
}
.agc-blog-item .blog-meta li:last-child {
  margin-right: 0;
}
.agc-blog-item .blog-meta i {
  margin-right: 5px;
  color: var(--main-color-2);
}
.agc-blog-item .blog-title h3 {
  color: #000000;
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
}
.agc-blog-item .blog-title h3:hover {
  color: var(--main-color-2);
}
.agc-blog-item .blog-read-more {
  margin-top: 20px;
}
.agc-blog-item .blog-read-more a {
  color: #000000;
}
.agc-blog-item .blog-read-more a i {
  margin-left: 5px;
  -webkit-transition: 200ms all ease;
  transition: 200ms all ease;
}
.agc-blog-item .blog-read-more a:hover {
  color: var(--main-color);
}
.agc-blog-item .blog-read-more a:hover i {
  margin-left: 8px;
}
.agc-blog-item .blog-read-more a:hover {
  color: var(--main-color-2);
}
.agc-blog-item:hover .blog-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.agc-blog-item:hover .blog-category {
  background-color: var(--main-color-2);
}

.agc-blog-section-2 {
  padding: 110px 0px 70px;
  background-color: #fbf8f6;
}
.agc-blog-section-2 .agc-section-title {
  margin: 0 auto;
  max-width: 650px;
}
.agc-blog-section-2 .agc-blog-item {
  background-color: #fff;
}
.agc-blog-section-2 .agc-blog-item .blog-text {
  padding: 0px 25px 30px;
}

.agc-blog-more-btn {
  margin-top: 40px;
}
.agc-blog-more-btn a {
  color: #fff;
  width: 200px;
  height: 65px;
  background-color: var(--main-color-2);
}
.agc-blog-more-btn a i {
  margin-left: 5px;
}
.agc-blog-more-btn a:hover {
  background-color: #000000;
}

/*Map Social Section*/
/*---------------------------------------------------*/
.agc-map-section {
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.1490196078);
}

.agc-map-wrap {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.agc-map-info {
  top: 50%;
  right: 15%;
  position: absolute;
  background-color: #fff;
  padding: 50px 40px 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-bottom: 3px solid var(--main-color-2);
}

.agc-map-info-item {
  margin-bottom: 40px;
}
.agc-map-info-item .info-title {
  margin-bottom: 10px;
}
.agc-map-info-item .info-title span {
  font-size: 24px;
  margin-right: 15px;
  color: var(--main-color-2);
}
.agc-map-info-item .info-title h3 {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
}
.agc-map-info-item .info-text {
  color: #000000;
  max-width: 250px;
}
.agc-map-info-item .info-text li i {
  margin-right: 15px;
  color: var(--main-color-2);
}

.agc-social-content .agc-social-item {
  width: 16.667%;
}
.agc-social-content .agc-social-item a {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-right: 1px solid #D9D9D9;
}
.agc-social-content .agc-social-item a:hover i {
  color: var(--main-color-2);
}
.agc-social-content .agc-social-item i {
  color: #000000;
  margin-right: 8px;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
}

/*Footer Section*/
/*---------------------------------------------------*/
.agc-newslatter-content-area {
  padding-bottom: 50px;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(222, 226, 238, 0.0784313725);
}
.agc-newslatter-content-area .agc-newslatter-text h3 {
  color: #fff;
  font-size: 38px;
  font-weight: 500;
}
.agc-newslatter-content-area .agc-newslatter-text h3 span {
  color: var(--main-color-2);
}
.agc-newslatter-content-area .agc-newslatter-text p {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
.agc-newslatter-content-area .agc-newslatter-form input {
  width: 495px;
  height: 60px;
  border: none;
  max-width: 100%;
  padding-left: 20px;
  background-color: rgba(255, 255, 255, 0.1019607843);
}
.agc-newslatter-content-area .agc-newslatter-form button {
  top: 0;
  right: 0;
  color: #fff;
  width: 160px;
  height: 60px;
  border: none;
  position: absolute;
  background-color: var(--main-color-2);
}
.agc-newslatter-content-area .agc-newslatter-form button i {
  margin-left: 5px;
}

.agc-footer-section {
  padding-top: 140px;
  overflow: hidden;
  background-color: #000000;
}
.agc-footer-section .agc-footer-mail {
  top: 60px;
  left: 20px;
  color: #fff;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
.agc-footer-section .agc-footer-address {
  left: 20px;
  color: #fff;
  bottom: 50px;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
.agc-footer-section .agc-footer-address b {
  font-weight: 400;
  color: var(--main-color-2);
}

.agc-footer-content {
  padding-bottom: 70px;
}
.agc-footer-content .agc-footer-widget .widget-title {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  padding-bottom: 25px;
}
.agc-footer-content .agc-footer-widget .logo-widget .brand-logo {
  margin-bottom: 25px;
}
.agc-footer-content .agc-footer-widget .logo-widget .logo-text {
  color: #B4B4B4;
  line-height: 30px;
  margin-bottom: 30px;
}
.agc-footer-content .agc-footer-widget .logo-widget .logo-cta-info li {
  color: #B4B4B4;
  margin-bottom: 20px;
}
.agc-footer-content .agc-footer-widget .logo-widget .logo-cta-info li:last-child {
  margin-bottom: 0;
}
.agc-footer-content .agc-footer-widget .logo-widget .logo-cta-info li i {
  color: #fff;
  margin-right: 15px;
}
.agc-footer-content .agc-footer-widget .menu-widget {
  padding-left: 50px;
}
.agc-footer-content .agc-footer-widget .menu-widget li {
  margin-bottom: 15px;
}
.agc-footer-content .agc-footer-widget .menu-widget li:last-child {
  margin-bottom: 0;
}
.agc-footer-content .agc-footer-widget .menu-widget li a {
  color: #B4B4B4;
  font-family: var(--heading-2);
}
.agc-footer-content .agc-footer-widget .menu-widget li a:hover {
  color: var(--main-color-2);
}
.agc-footer-content .agc-footer-widget .award-widget .aw-title {
  color: #B4B4B4;
}
.agc-footer-content .agc-footer-widget .award-widget .aw-number {
  color: #fff;
  line-height: 1;
  font-size: 55px;
  font-weight: 600;
  margin-left: 50px;
}
.agc-footer-content .agc-footer-widget .aw-instagram-wrap {
  margin: 40px 0px;
}
.agc-footer-content .agc-footer-widget .aw-instagram-wrap li a {
  width: 110px;
  height: 115px;
  height: 115px;
  display: block;
  border-radius: 5px;
  position: relative;
  margin-right: 30px;
}
.agc-footer-content .agc-footer-widget .aw-instagram-wrap li a:before {
  top: 0;
  left: 0;
  width: 100%;
  content: "";
  opacity: 0;
  height: 100%;
  position: absolute;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  background-color: rgba(0, 0, 0, 0.6);
}
.agc-footer-content .agc-footer-widget .aw-instagram-wrap li a i {
  left: 0;
  right: 0;
  top: 60%;
  opacity: 0;
  color: #fff;
  position: absolute;
  text-align: center;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.agc-footer-content .agc-footer-widget .aw-instagram-wrap li a:hover:before {
  opacity: 1;
}
.agc-footer-content .agc-footer-widget .aw-instagram-wrap li a:hover i {
  top: 50%;
  opacity: 1;
}
.agc-footer-content .agc-footer-widget .aw-btn-wrap {
  padding-bottom: 10px;
}
.agc-footer-content .agc-footer-widget .aw-btn-wrap img {
  margin-right: 5px;
}
.agc-footer-content .agc-footer-widget .aw-btn-wrap span {
  color: #DD1D26;
}
.agc-footer-content .agc-footer-widget .aw-btn-wrap .aw-line {
  bottom: 0;
  left: 40px;
}

.agc-footer-copyright {
  padding: 35px 0px;
}

.agc-footer-copyright-social a {
  color: #fff;
  width: 45px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 10px;
  border-radius: 2px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(255, 255, 255, 0.1);
}
.agc-footer-copyright-social a:hover {
  background-color: var(--main-color-2);
}

.fill-space-title {
  width: 100%;
  max-width: 100% !important;
}

.fill-space-title h2 {
  width: 100%;
  /* border: solid 1px red; */
  max-width: 100% !important;
}
.logo-footer img{
  width: 100%;
  max-width: 180px;
}
.markers-on-croquis {
  position: relative;
  width: auto;
  min-height: 500px;
  background-size: 100%;
}
.title-marked-point {
  font-size: 22px !important;
}
.sub-marked-point {
  font-size: 16px !important;
}
.activated-360 .container {
  pointer-events: none !important;
}
.activated-360 .container .agdev-btn{
  pointer-events: all !important;
}
.activated-360 .background-overlay-screen {
  pointer-events: none !important;
}

.logo-slider {
  max-width: 140px;
  margin-top: -20px;
}
.initial-frames {
  width: 100%;
  height: 100%;
}

.scrollmouse-icon {
  width: 1px;
  height: 1px;
  display: block;
  position: absolute;
  right: 50%;
  bottom: 10px;
  background: #a7ad99;
  border-radius: 100%;
  backface-visibility: hidden;
  transition: opacity .5s ease-out, transform .25s;
  transform: scale(1), translate(-50%,-50%);
  z-index: 999 !important;
}

.scrollmouse-icon img{
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  filter: brightness(0) invert(1);
  margin-top: -20px;
  margin-left: -20px;
  cursor: pointer !important;
}

.scrollmouse-icon img.r360{
  display: block;
}

.scrollmouse-icon img.flat{
  display: none;
}

.activated-360 .scrollmouse-icon img.r360{
  display: none !important;
}

.activated-360 .scrollmouse-icon img.flat{
  display: block !important;
}

.scrollmouse-icon:before,.scrollmouse-icon:after {
    content: "";
    display: block;
    width: 120px;
    height: 120px;
    position: absolute;
    top: -56px;
    left: -56px;
    background: rgba(105, 156, 120, 0.5);
    border: 1px solid #a7ad99;
    border-radius: 50%;
    z-index: -1;
    animation: sonar-marker-pulse 1.7s infinite ease-out;
}

.background-overlay-screen {
  background: rgba(0, 0, 0, 0.25);
  /* background: red; */
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 9;
  width: 100%;
  height: calc(100% + 100px);
}

/* .background--screen {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 9;
  width: 100%;
  height: calc(100%);
}

.background--screen.lv1 {
  background: rgba(0, 0, 0, 0.2);
}

.background--screen.lv2 {
  background: rgba(0, 0, 0, 0.35);
} */

.full-iframe {
  width: 100%;
  height: 500px;
  position: relative;
  z-index: 1;
}

.show-front {
  z-index: 999 !important;
}

.context-slider {
  z-index: 99 !important;
}

.no-events {
  pointer-events: none;
}

@keyframes sonar-marker-pulse {
  0% {
    opacity: .65;
    transform: scale(.1)
  }
  100% {
    opacity: 0;
    transform: scale(1)
  }
}

@keyframes sonar-marker-pulse-inner {
  0% {
    opacity: 0;
    transform: scale(.1)
  }
  24%,90% {
    opacity: 0
  }
  25% {
    opacity: .65;
    transform: scale(.1)
  }
  100% {
    opacity: 0;
    transform: scale(1)
  }
}

.poi-info-macrolote {
  position: relative;
  /* border: solid 1px red; */
  width: auto;
  height: 100%;
}
.poi-info-macrolote .poi-macrolote-holder{
  /* border: solid 1px orange; */
  width: fit-content;
  /* position: relative; */
}
.poi-info-macrolote .poi-macrolote-holder.macrolote-a{
  position: absolute;
  left: 140px;
  top: 155px;
}
.poi-info-macrolote .poi-macrolote-holder.macrolote-b{
  position: absolute;
  left: 275px;
  bottom: 140px;
}
.poi-info-macrolote .poi-macrolote-holder.macrolote-c{
  position: absolute;
  right: 110px;
  bottom: 180px;
}
.poi-info-macrolote .poi-macrolote-holder.macrolote-d{
  position: absolute;
  right: 130px;
  bottom: 80px;
}
.poi-info-macrolote .poi-info-marker{
  border-radius: 50%;
  background: var(--main-color-2);
  color: #ffffff;
  font-weight: bold;
  -webkit-box-shadow: 0px 0px 24px -15px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 24px -15px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 24px -15px rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  font-size: 25px;
  position: relative;
}
.poi-info-macrolote .poi-info-marker::after{
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  z-index: -1;
  top: 0px;
  left: 0px;
  background: rgb(222, 212, 188);
  opacity: 0;
  transition: 0.2s all ease;
}
.poi-info-macrolote .poi-info-marker:hover::after{
  width: 100px;
  height: 100px;
  opacity: 0.7;
  top: -25px;
  left: -25px;
}
.poi-info-macrolote .poi-info-card{
  width: 100%;
  max-width: 250px;
  min-width: 250px;
  height: auto;
  display: flex;
  flex-direction: column;
  border-radius: 4px 4px 4px 4px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 24px -11px rgba(0,0,0,0.55);
  -moz-box-shadow: 0px 0px 24px -11px rgba(0,0,0,0.55);
  box-shadow: 0px 0px 24px -11px rgba(0,0,0,0.55);
  padding: 8px;
  margin-left: -100px;
  margin-top: -80px;
  position: relative;
  z-index: 999999;
}
.poi-info-macrolote .poi-info-card .poi-closer{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  min-width: 25px;
  min-height: 25px;
  color: red;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  position: absolute;
  right: 10px;
  top: 10px;
}
.poi-info-macrolote .poi-info-card .poi-closer:hover{
  background: #65725e !important;
  color: #ffffff;
}
.poi-info-macrolote .poi-info-card.closed{
  display: none !important;
}
.poi-info-macrolote .poi-info-card img{
  width: 100%;
}
.poi-info-macrolote .poi-info-card .title-info-card{
  font-size: 22px;
  color: #232323;
  font-weight: bold;
  padding-left: 10px;
  margin-top: 15px;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.poi-info-macrolote .poi-info-card .poi-info{
  display: flex;
  flex-direction: column;
  padding: 10px;
}
.poi-info-macrolote .poi-info-card .poi-info div{
  line-height: 18px;
}
.logo-equipamiento {
  width: 100%;
  max-width: 150px;
  margin-bottom: 15px;
}
.img-holder-wrapper-stages .image{
  overflow: inherit !important;
}
.stages-holder {
  /* border: solid 1px red; */
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stages-holder .stage{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  min-width: 90px;
  min-height: 90px;
}
.stages-holder .stage:hover{
  transform: scale(1.08);
}
.stages-holder .stage img{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  min-width: 90px;
  min-height: 90px;
  border-radius: 50%;
  border: solid 4px #65725e !important;
}
.stages-holder .stage:hover img{
  border: solid 4px var(--main-color-2) !important;
}
.stages-holder .stage.stage-1{

}
.stages-info {
  /* border: solid 1px red; */
  background: rgba(0, 0, 0, 0.65);
  position: absolute;
  bottom: 0px;
  padding: 14px;
}
.stages-info .e-info{
  color: #ffffff;
  display: flex;
  flex-direction: column;
  transition: 0.2s all linear;
  display: none;
}
.stages-info .e-info h3{
  margin: 0;
  padding: 0;
  font-weight: bold;
  font-size: 24px;
}
.stages-info .e-info p{
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 10px;
  max-width: 80%;
}
.stages-info .e-info .size{
  font-size: 18px;
  font-weight: bold;
  margin-bottom: -10px;
}
.stages-info .e-info .e-info-action-footer{
  display: flex;
  align-items: center;
  gap: 25px;
}
.stages-info .e-info .e-info-action-footer a{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  background: #65725e !important;
}
.e1-active .stages-info .e-info.e1-info{
  display: flex;
}
.e2-active .stages-info .e-info.e2-info{
  display: flex;
}
.e3-active .stages-info .e-info.e3-info{
  display: flex;
}
.e4-active .stages-info .e-info.e4-info{
  display: flex;
}
.img-decor-macrolote {
  top: 65%;
  left: 60.5%;
  transform: translate(-40%, -60%);
  position: inherit;
  width: 700px;
  height: 700px;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s all ease;
}
#section4 .pinWrapper:hover .img-decor-macrolote {
  opacity: 0.17;
}



.to-hide {
  display: none !important;
}
.section-video-holder {
  width: 100%;
}
.section-video-holder video{
  width: 100%;
  min-height: 400px;
  height: 700px;
}
.north-marker {
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/north-gris.png) no-repeat;
  background-size: 80px 80px;
  background-position: center;
  position: absolute;
  right: 35px;
  top: 35px;
}
.north-marker.entorno-north {
  right: 45px !important;
  top: -15px !important;
}

.img-layer-zmg.map-zoom-holder .north-marker{
  right: 0px !important;
}
.img-layer-zmg.map-zoom-holder.satellite-mod .north-marker.satellite {
  right: 125px !important;
  top: 30px !important;
}
.aguaclara-pin {
  width: 60px;
  height: 95px;
  min-width: 60px;
  min-height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/pin.png) no-repeat;
  background-size: 60px 95px;
  background-position: center;
  position: absolute;
  left: 26%;
  top: 5.5%;
  -webkit-animation: moverpin 1s infinite  alternate;
  animation: moverpin 1s infinite  alternate;
}
.aguaclara-pin.pin-onzoom-map {
  left: unset;
  right: 32%;
  top: 29%;
}
.aguaclara-pin.pin-satellite {
  left: unset;
  right: 27.5%;
  top: 30%;
}
.aguaclara-pin.pin-entorno {
  left: unset;
  right: 26%;
  top: 25%;
}
.nomax-width {
  max-width: unset !important;
}
@-webkit-keyframes moverpin {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
@keyframes moverpin {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
.img-layer-zmg {
  position: relative;
}
.img-layer-zmg.map-zoom-holder {
  display: flex !important;
  align-items: center;
  justify-content: center;
  /* border: solid 1px orange; */
}
.img-layer-zmg.map-zoom-holder .map-zoom{
  width: 100%;
  height: 580px;
  max-width: 1000px;
  /* border: solid 1px red; */
  animation-name: imageslide;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 10s;
  background: url(../img/sections/plano-zoom-1.jpg) no-repeat;
  background-size: contain;
  background-position: center;
}
.img-layer-zmg.map-zoom-holder.satellite-mod .map-zoom{
  width: 100%;
  height: 720px;
  max-width: 1600px;
  /* border: solid 1px green; */
  animation-name: imageslidesatellite;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 8s;
  background: url(../img/sections/plano-zoom-5.jpg) no-repeat;
  background-size: contain;
  background-position: center;
}
@keyframes imageslide {
  0% {
    background: url(../img/sections/plano-zoom-1.jpg) no-repeat;
    background-size: contain;
    background-position: center;
  }
  20% {
    background: url(../img/sections/plano-zoom-2.jpg) no-repeat;
    background-size: contain;
    background-position: center;
  }
  40% {
    background: url(../img/sections/plano-zoom-3.jpg) no-repeat;
    background-size: contain;
    background-position: center;
  }
  60% {
    background: url(../img/sections/plano-zoom-4.jpg) no-repeat;
    background-size: contain;
    background-position: center;
  }
  80% {
    background: url(../img/sections/plano-zoom-5.jpg) no-repeat;
    background-size: contain;
    background-position: center;
  }
  100% {
    background: url(../img/sections/plano-zoom-5.jpg) no-repeat;
    background-size: contain;
    background-position: center;
  }
}
@keyframes imageslidesatellite {
  0% {
    background: url(../img/sections/plano-zoom-5.jpg) no-repeat;
    background-size: contain;
    background-position: center;
  }
  30% {
    background: url(../img/sections/plano-zoom-satellite.jpg) no-repeat;
    background-size: contain;
    background-position: center;
  }
  40% {
    background: url(../img/sections/plano-zoom-satellite.jpg) no-repeat;
    background-size: contain;
    background-position: center;
  }
  80% {
    background: url(../img/sections/plano-zoom-5.jpg) no-repeat;
    background-size: contain;
    background-position: center;
  }
  100% {
    background: url(../img/sections/plano-zoom-5.jpg) no-repeat;
    background-size: contain;
    background-position: center;
  }
}



.circle-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  box-shadow: 0px 0px 1px 1px #0000001a;
  background: #007ecb;
  position: absolute;
  left: 38.5%;
  bottom: 24%;
}
.pulse-dot {
  animation: pulse-animation 1s infinite;
}
@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}
.img-layer-zmg:hover .north-marker {
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/north-orange.png) no-repeat;
  background-size: 80px 80px;
  background-position: center;
  position: absolute;
  right: 35px;
  top: 35px;
}
.north-marker-alone {
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/north-orange.png) no-repeat;
  background-size: 80px 80px;
  background-position: center;
  position: absolute;
  right: 35px;
  top: 35px;
  z-index: 99;
}
.north-marker-alone-gris {
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/north-gris.png) no-repeat;
  background-size: 80px 80px;
  background-position: center;
  position: absolute;
  right: 35px;
  top: 35px;
  z-index: 99;
}
.zmg-plate-text {
  font-weight: bold;
  font-style: italic;
}
.img-layer-zmg .agdev-btn{
  position: absolute;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.poi-info-map {
  position: absolute;
  /* border: solid 1px red; */
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}
.poi-info-map .poi-onmap-holder{
  /* border: solid 1px orange; */
  width: fit-content;
  /* position: relative; */
}
.map-zone {
  z-index: -1 !important;
}
.poi-info-map .poi-info-marker{
  border-radius: 50%;
  background: #c55a12;
  color: #ffffff;
  font-weight: bold;
  -webkit-box-shadow: 0px 0px 24px -15px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 24px -15px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 24px -15px rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  font-size: 25px;
  position: relative;
}
.poi-info-map.macrolotes .poi-info-marker:hover{
  opacity: 0 !important;
}
.poi-info-map.masterplan .poi-info-marker:hover{
  opacity: 0 !important;
}
.poi-info-map .poi-info-marker::after{
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50% -50%);
  border: solid 18px rgb(222, 212, 188);
  opacity: 0;
  transition: 0.2s all ease;
  pointer-events: none !important;
}
.poi-info-map .poi-info-marker:hover::after{
  width: 76px;
  height: 76px;
  opacity: 0.7;
  top: -20px;
  left: -20px;
  pointer-events: none !important;
}
.poi-info-map .poi-onmap-holder.poi-item-1{
  position: absolute;
  left: 18.7%;
  top: 10.5%;
}
.poi-info-map .poi-onmap-holder.poi-item-2{
  position: absolute;
  left: 30%;
  top: 30%;
}
.poi-info-map .poi-onmap-holder.poi-item-3{
  position: absolute;
  left: 31.5%;
  top: 40%;
}
.poi-info-map .poi-onmap-holder.poi-item-4{
  position: absolute;
  left: 41.9%;
  top: 34.5%;
}
.poi-info-map .poi-onmap-holder.poi-item-5{
  position: absolute;
  left: 44%;
  top: 68%;
}
.poi-info-map .poi-onmap-holder.poi-item-6{
  position: absolute;
  left: 11%;
  bottom: 28%;
}
.poi-info-map .poi-onmap-holder.poi-item-7{
  position: absolute;
  left: 25.5%;
  bottom: 31%;
}
.poi-info-map .poi-onmap-holder.poi-item-8{
  position: absolute;
  left: 45.5%;
  top: 43.5%;
}
.poi-info-map .poi-onmap-holder.poi-item-9{
  position: absolute;
  right: 22%;
  top: 50%;
}
.poi-info-map .poi-onmap-holder.poi-item-10{
  position: absolute;
  right: 11%;
  top: 27%;
}
.poi-info-map .poi-onmap-holder.poi-item-11{
  position: absolute;
  right: 0%;
  top: 12%;
}
.poi-info-map .poi-onmap-holder.poi-item-12{
  position: absolute;
  left: 38.5%;
  top: 11%;
}
.poi-info-map .poi-onmap-holder.poi-item-13{
  position: absolute;
  left: 15%;
  top: 28%;
}
.poi-info-map .poi-onmap-holder.poi-item-14{
  position: absolute;
  right: 14%;
  bottom: 30%;
}
.poi-info-map .poi-onmap-holder.poi-item-15{
  position: absolute;
  left: 26%;
  top: 40%;
}
.poi-info-map .poi-onmap-holder.poi-item-16{
  position: absolute;
  left: 43%;
  top: 62%;
}
.poi-info-map .poi-onmap-holder.poi-item-17{
  position: absolute;
  right: 25%;
  top: 55%;
}
.poi-info-map .poi-onmap-holder.poi-item-18{
  position: absolute;
  right: 26%;
  bottom: 17%;
}
.poi-info-map .poi-onmap-holder.poi-item-19{
  position: absolute;
  left: 30%;
  top: 25%;
}
.poi-info-map .poi-onmap-holder.poi-item-20{
  position: absolute;
  right: 44%;
  top: 29%;
}
.poi-info-map .poi-onmap-holder.poi-item-21{
  position: absolute;
  right: 39%;
  top: 57%;
}
.poi-info-map .poi-onmap-holder.poi-item-22{
  position: absolute;
  left: 32.5%;
  bottom: 32%;
}
.img-full-width {
  width: 100%;
}
.macrolotes-img {
  transition: 0.3s all ease-in-out;
}
.masterplan-img {
  transition: 0.3s all ease-in-out;
}
.show-hovered-imagebg {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.show-hovered-imagebg > div {
  display: none;
}
.show-hovered-imagebg > div img{
  width: 100%;
  margin-top: 20px;
  margin-bottom: 8px;
}
.show-hovered-imagebg > div .info-around{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.show-hovered-imagebg > div .info-around .number-tag{
  border-radius: 50%;
  background: #c55a12;
  color: #ffffff;
  font-weight: bold;
  -webkit-box-shadow: 0px 0px 24px -15px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 24px -15px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 24px -15px rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  font-size: 20px;
  position: relative;
}
.show-hovered-imagebg > div .info-around .name-plate{
  all: unset !important;
  font-weight: bold !important;
  font-style: italic !important;
  font-size: 18px !important;
}
.holderbox-access-plate {
  display: none;
  flex-direction: column;
  padding: 15px 18px;
  width: 100%;
  height: auto;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  left: 0px;
  bottom: 0px;
}
.holderbox-access-plate h2{
  color: #ffffff;
  font-weight: bolder;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.holderbox-access-plate p{
  color: #ffffff;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.holderbox-access-plate.macrolotes-hold {
  display: none;
  flex-direction: column;
  padding: 15px 18px;
  width: 100%;
  height: auto;
  background: none;
  position: absolute;
  left: 15%;
  bottom: 25px;
}
.holderbox-access-plate.macrolotes-hold h2{
  color: #000000;
  font-weight: bolder;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.holderbox-access-plate.macrolotes-hold p{
  color: #000000;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.holderbox-access-plate.masterplan-hold {
  display: none;
  flex-direction: column;
  padding: 15px 18px;
  width: 100%;
  height: auto;
  background: none;
  position: absolute;
  left: 15%;
  bottom: 25px;
}
.holderbox-access-plate.masterplan-hold h2{
  color: #000000;
  font-weight: bolder;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.holderbox-access-plate.masterplan-hold p{
  color: #000000;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.show-item-access-mobile {
  width: 100%;
  display: none;
  flex-direction: column;
  margin-top: 25px;
}
@media screen and (max-width: 991px) {
  .show-item-access-mobile {
    display: flex;
  }
}
.sshow-item-access-mobile > div {
  display: none;
}
.show-item-access-mobile > div .info-around{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.show-item-access-mobile > div .info-around .number-tag{
  border-radius: 50%;
  background: #c55a12;
  color: #ffffff;
  font-weight: bold;
  -webkit-box-shadow: 0px 0px 24px -15px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 24px -15px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 24px -15px rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  font-size: 20px;
  position: relative;
}
.show-item-access-mobile > div .info-around .name-plate{
  all: unset !important;
  font-weight: bold !important;
  font-style: italic !important;
  font-size: 18px !important;
}
.show-item-access-mobile > div .info-around .name-plate b{
  font-weight: 900 !important;
  color: #000 !important;
  font-style: normal !important;
}
.content-slick-image {
  padding: 120px 10px 10px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0px;
  bottom: 0px;
  background: rgb(255,255,255);
  background: -moz-linear-gradient(180deg, rgba(255,255,255,0) 34%, rgba(31,31,31,0.70640756302521) 93%);
  background: -webkit-linear-gradient(180deg, rgba(255,255,255,0) 34%, rgba(31,31,31,0.70640756302521) 93%);
  background: linear-gradient(180deg, rgba(255,255,255,0) 34%, rgba(31,31,31,0.70640756302521) 93%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#1f1f1f",GradientType=1);
  width: calc(100% - 30px);
  margin-left: 16px;
}
.content-slick-image h2{
  padding-bottom: 0px;
  margin-bottom: 0px;
  color: #ffffff;
  font-weight: bold !important;
  font-family: var(--heading-2);
}
.content-slick-image p{
  font-size: 25px;
  color: #ffffff;
}
.agdev-service-details-slider .slick-next {
  right: -8px;
}
.agdev-service-details-slider .slick-prev {
  left: -8px;
}
.max-400 {
  max-width: 400px;
}
.agdev-contact-page-section {
  padding-top: 180px;
}
.contact_map iframe {
  width: 100%;
  height: 450px;
}
/* .agdev-work-process-section {
  margin-top: -80px;
} */
/*---------------------------------------------------- */







/*Responsive*/
/*----------------------------------------------------*/
@media screen and (max-width: 1600px) {
  .agc-slider-section .agc-slider-side1,
.agc-slider-section .agc-slider-side2 {
    display: none;
  }
  .agc-feature-img {
    margin-left: 15px;
  }
  .agc-feature-item {
    width: 230px;
  }
  .agc-feature-img .agc-ft-shape {
    display: none;
  }
  .agc-feature-item:after {
    display: none;
  }
  .agc-project-item .project-icon {
    width: 110px;
    margin-bottom: 40px;
  }
  .agc-project-item .hover-item .inner-title h3 {
    font-size: 20px;
    line-height: 30px;
  }
  .agc-project-item .hover-item .inner-text .inner-icon {
    width: 40px;
  }
  .agc-project-item .hover-item .inner-text .inner-serial {
    font-size: 30px;
  }
  .agc-newslatter-content {
    max-width: 790px;
  }
  .agc-footer-section .agc-footer-address,
.agc-footer-section .agc-footer-mail {
    display: none;
  }
  .agc-footer-content {
    padding-bottom: 30px;
  }
  .agc-service-section-2:after {
    width: 585px;
  }
  .agc-service-img-2 .circle-shape {
    left: -35px;
  }
  .agc-service-img-2:before {
    display: none;
  }
  .agc-header-section.agc-header-style-two .header-main-menu-wrapper {
    padding: 20px 20px;
  }
  .slider-side-content {
    display: none;
  }
  .agc-slider-section-2 .agc-banner-img1 {
    left: 0;
  }
  .agc-slider-section-2 .agc-banner-img2 {
    left: 80px;
  }
  .agc-slider-section-2 .agc-banner-img3 {
    left: 0;
  }
  .agc-slider-section-2 .agc-banner-img4 {
    left: 120px;
  }
  .agc-slider-section-2 .agc-banner-img5 {
    right: 0;
  }
  .agc-slider-section-2 .agc-banner-img7 {
    display: none;
  }
  .agc-slider-section-2 .agc-banner-counter {
    display: none;
  }
  .agc-about-img-wrapper-2 .agc-about-exp-text {
    left: 0;
  }
  .agc-service-top-content-2 .top-service-item {
    margin-left: 50px;
  }
  .agc-service-top-content-2 {
    padding-left: 15px;
  }
}
@media screen and (max-width: 1300px) {
  .agc-feature-img {
    top: -40px;
    width: 285px;
    margin-bottom: -40px;
  }
  .agc-project-item {
    width: 50%;
    margin: 0 auto;
    max-width: 475px;
    border-right: 0;
  }
  .agc-project-content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .agc-project-item .project-text h3 {
    font-size: 20px;
    line-height: 30px;
  }
  .agc-testimonial-img-wrap .inner-img {
    top: 0;
    padding-top: 50px;
  }
  .agc-newslatter-content {
    max-width: 100%;
  }
  .agc-service-img-2 .circle-shape {
    display: none;
  }
  .agc-service-text-area-2:before {
    width: 140px;
    right: 140px;
  }
}
@media screen and (max-width: 1100px) {
  .agc-header-section .main-navigation li {
    margin: 0px 25px;
  }
  .agc-header-section .header-top-content .header-top-cta {
    display: none;
  }
  .agc-header-section .header-top-content .brand-logo {
    margin: 0;
    position: static;
  }
  .agc-feature-img {
    display: none;
  }
  .agc-feature-item-content {
    padding: 0px 15px;
  }
  .agc-feature-item {
    width: 260px;
  }
  .agc-section-title h2 {
    font-size: 30px;
  }
  .agc-section-title .title-serial {
    font-size: 45px;
  }
  .agc-section-title {
    padding-bottom: 30px;
  }
  .agc-footer-content .agc-footer-widget .aw-instagram-wrap li a {
    width: 85px;
  }
  .agc-footer-content .agc-footer-widget .aw-btn-wrap .aw-line {
    display: none;
  }
  .agc-header-section.agc-header-style-two .main-navigation li {
    /* margin: 0px 15px; */
    margin: 0px 10px 0px 0px;
  }
  .agc-testimonial-img-2 {
    margin-right: 40px;
  }
  .agc-service-section-2:before {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .agc-header-section .main-navigation li {
    margin: 0px 5px;
  }
  .agc-feature-item {
    margin-bottom: 30px;
  }
  .agc-about-scroller-wrapper {
    width: 470px;
  }
  .agc-contact-img {
    top: -140px;
    margin-bottom: -140px;
  }
  .agc-footer-content .agc-footer-widget .aw-instagram-wrap li a {
    width: 75px;
  }
  .agc-header-section.agc-header-style-two .header-cta-number {
    display: none !important;
  }
  .agc-about-counter h3 {
    font-size: 120px;
  }
  .agc-about-counter .counter-text {
    margin-top: 15px;
  }
  .agc-service-img-2 {
    display: none;
  }
  .agc-service-text-wrapper {
    padding-top: 0;
  }
  .agc-work-process-system {
    position: static;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .agc-work-process-section .agc-wp-exp-text2,
.agc-work-process-section .agc-wp-exp-text1 {
    display: none;
  }
  .ar-team_left_arrow, .ar-team_right_arrow {
    position: static;
    margin: 0px 5px;
    display: inline-block;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .agc-team-content .carousel_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .agc-slider-section-2 .agc-banner-img2,
.agc-slider-section-2 .agc-banner-img1,
.agc-slider-section-2 .agc-banner-img3,
.agc-slider-section-2 .agc-banner-img4,
.agc-slider-section-2 .agc-banner-img5,
.agc-slider-section-2 .agc-banner-img6,
.agc-slider-section-2 .agc-banner-img7 {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .scrollmouse-icon {
      bottom: 70px !important;
  }
  .mobile_menu_content .navbar-nav li{
    width: 100%;
  }
  .agc-side-bar-menu-wrapper {
    display: none !important;
  }
  .agc-header-section .header-main-menu-wrapper {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: end !important;
  }
  .agc-slider-content:before {
    display: none;
  }
  .agc-slider-counter .agc-slider-counter-text {
    margin: 0 auto;
  }
  .agc-slider-counter .ar-slider-shape-img {
    display: none;
  }
  .agc-slider-text {
    text-align: center;
  }
  .agc-video-play-btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .agc-slider-counter .agc-slider-counter-text h2 {
    font-size: 130px;
  }
  .agc-slider-text {
    padding-left: 0;
  }
  .agc-faq-img-wrap {
    margin: 0 auto;
    max-width: 470px;
    margin-top: 30px;
  }
  .agc-service-text-area {
    margin: 0 auto;
    max-width: 570px;
    margin-bottom: 40px;
  }
  .agc-about-section:before {
    display: none;
  }
  .agc-about-text-content {
    margin-bottom: 30px;
  }
  .agc-about-experience-scoller {
    margin: 0 auto;
    max-width: 700px;
    margin-top: 40px;
  }
  .agc-contact-img {
    top: 0;
    margin: 0 auto;
    max-width: 450px;
    margin-bottom: 0;
  }
  .agc-contact-form-wrapper {
    padding-left: 0;
    margin-top: 40px;
  }
  .agc-testimonial-img-wrap {
    display: none !important;
  }
  .agc-blog-item {
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .agc-footer-content .agc-footer-widget .menu-widget {
    padding-left: 0;
  }
  .agc-footer-content .agc-footer-widget {
    margin-bottom: 30px;
  }
  .agc-footer-content .agc-footer-widget .aw-instagram-wrap li a {
    height: auto;
  }
  .agc-testimonial-section {
    overflow: hidden;
  }
  .agc-header-section .mobile_menu_button {
    top: 50%;
    left: 15px;
    right: auto;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    /* color: var(--main-color-2); */
    color: #ffffff;
  }
  .agc-header-section.agc-header-style-two .agc-main-navigation-wrap {
    display: none;
  }
  .agc-header-section.agc-header-style-two .header-main-menu-wrapper {
    padding: 10px 15px;
  }
  .agc-header-section.agc-header-style-two .brand-logo {
    left: 0;
    top: 50%;
    right: 0;
    margin: 0 auto;
    max-width: 150px;
    position: absolute;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .agc-slider-section-2 {
    padding-top: 65px;
  }
  .agc-about-img-wrapper-2 {
    margin: 0 auto;
    max-width: 370px;
  }
  .agc-about-service-content {
    margin: 0 auto;
    margin-top: 40px;
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: start !important;
  }
  .agc-about-service-area {
    width: 100%;
    margin: 0 auto;
  }
  .agc-about-counter {
    padding-top: 50px;
  }
  .agc-service-section-2 .agc-section-title {
    padding-top: 0;
  }
  .agc-service-section-2 .agc-section-title {
    margin: 0 auto;
    text-align: center;
  }
  .agc-service-content-2 .agc-feature-item:last-child:after {
    display: none;
  }
  .agc-service-content-2 .agc-feature-item,
.agc-service-content-2 .agc-feature-item .agc-feature-text p,
.agc-service-top-content-2 .agc-feature-item .agc-feature-text p {
    width: 100%;
    max-width: 100%;
  }
  .agc-service-top-content-2 .agc-feature-item {
    width: 50%;
  }
  .agc-service-top-content-2 .top-service-item {
    margin-left: 0;
  }
  .agc-service-content-2 .agc-feature-item {
    margin-top: 0;
  }
  .agc-service-text-wrapper {
    display: none;
  }
  .agc-service-content-2 {
    padding-bottom: 0px;
  }
  .agc-faq-pointer-wrapper {
    display: none;
  }
  .agc-faq-section-2:before {
    width: 100%;
  }
  .agc-fun-fact-title {
    margin-bottom: 30px;
  }
  .agc-team-item .team-text {
    padding: 10px 15px;
  }
  .agc-work-process-system .agc-work-process-system-content {
    padding: 40px 15px;
  }
  .agc-service-top-content-2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 800px) {
  .agc-textimonial-text-2 h3 {
    font-size: 28px;
  }
}
@media screen and (max-width: 680px) {
  .agc-project-top-content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .ar-pro_left_arrow, .ar-pro_right_arrow {
    margin-left: 0;
    margin-top: 20px;
    margin-right: 5px;
  }
  .agc-newslatter-content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .agc-project-item-content {
    margin: 0 auto;
    max-width: 368px;
  }
  .agc-contact-map-form .agc-contact-map {
    width: 100%;
  }
  .agc-contact-map-form .agc-contact-form-wrapper {
    width: 100%;
  }
  .agc-contact-map-form {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .agc-contact-map-form .agc-contact-form-wrapper {
    padding-left: 15px;
  }
  .agc-testimonial-img-text-2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .agc-textimonial-text-2 {
    padding-top: 30px;
  }
  .agc-service-top-content-2 .agc-feature-item {
    width: 100%;
    padding-right: 15px;
  }
  .agc-slider-content-2 .agc-slider-text-2 h1 {
    font-size: 30px;
    padding-bottom: 20px;
  }
  .agc-slider-content-2 .agc-slider-text-2 {
    padding: 130px 0px 150px;
  }
  .agc-project-item-3 .agc-project-text {
    padding: 15px 20px;
  }
  .agc-fun-fact-counter {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .agc-fun-fact-item {
    width: 100%;
    margin-bottom: 20px;
  }
  .agc-produce-slider .slick-slide img {
    display: inherit;
  }
  .agc-contact-section-2 .agc-contact-form-wrapper {
    margin-top: 0;
  }
}
@media screen and (max-width: 480px) {
  .agc-header-section .header-cta-number {
    display: none !important;
  }
  .agc-slider-section {
    padding: 290px 0px 150px;
  }
  .agc-slider-counter .agc-slider-counter-text {
    margin-bottom: 30px;
  }
  .agc-slider-counter .agc-slider-counter-text h2 {
    font-size: 100px;
  }
  .agc-slider-text h1 {
    font-size: 36px;
    line-height: 40px;
  }
  .agc-slider-text .agc-video-play-btn .agc-slider-btn a {
    height: 50px;
    width: 150px;
  }
  .agc-project-item {
    width: 100%;
  }
  .agc-about-experience-scoller {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .agc-about-scroller-wrapper {
    margin-left: 0;
  }
  .agc-about-experience {
    width: 100%;
    margin-bottom: 30px;
  }
  .agc-about-sponsor-scroller {
    padding-left: 0;
  }
  .agc-contact-img .img-shape {
    display: none;
  }
  .header-language-select {
    display: none;
  }
  .agc-section-title h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .agc-faq-section,
.agc-before-after-section,
.agc-service-section,
.agc-about-section,
.agc-project-section-2 {
    padding: 60px 0px;
  }
  .agc-feature-cta-text {
    margin-top: 10px;
  }
  .agc-service-text-area {
    margin-bottom: 20px;
  }
  .agc-about-section {
    background-color: #f7f7f7;
  }
  .ar-pro_left_arrow, .ar-pro_right_arrow {
    margin-top: 0;
  }
  .agc-project-section-2 .agc-section-title .title-serial {
    padding-bottom: 0;
  }
  .agc-newslatter-form {
    width: 100%;
  }
  .agc-newslatter-form .newslatter-form {
    max-width: 100%;
  }
  .agc-testimonial-top-content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .agc-testimonial-section .agc-section-title {
    padding-bottom: 20px;
  }
  .agc-testimonial-slider {
    padding-top: 40px;
  }
  .agc-testimonial-section {
    padding-bottom: 60px;
  }
  .agc-social-content .agc-social-item {
    width: 50%;
  }
  .agc-social-content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .agc-footer-section {
    padding-top: 60px;
  }
  .agc-footer-content .agc-footer-widget .aw-instagram-wrap {
    margin: 20px 0px;
  }
  .agc-footer-content .agc-footer-widget .award-widget .aw-number {
    font-size: 40px;
  }
  .agc-footer-copyright {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .agc-footer-copyright-social {
    margin-top: 10px;
  }
  .agc-footer-copyright-social a {
    margin-left: 0;
    margin: 0px 5px;
  }
  .agc-header-section .header-main-menu-wrapper {
    padding: 10px 15px;
  }
  .agc-header-section.sticky_on .header-main-menu-wrapper {
    padding: 10px 0px;
  }
  .agc-header-section .header-main-menu-wrapper:before {
    display: none;
  }
  .agc-blog-section {
    margin-bottom: 60px;
  }
  .agc-faq-content-wrapper .accordion-button:not(.collapsed)::after,
.agc-faq-content-wrapper .accordion-button::after {
    font-size: 12px;
  }
  .agc-header-section.agc-header-style-two .header-cta-btn a {
    width: 100px;
    font-size: 12px;
  }
  /* .agc-header-section.agc-header-style-two .header-cta-btn a i {
    display: none;
  } */
  .agc-about-img-wrapper-2 {
    max-width: 330px;
  }
  .agc-about-section-2 {
    padding: 60px 0px;
  }
  .agc-service-content-2 .agc-feature-item {
    margin-top: 20px;
  }
  .agc-work-process-item:after {
    display: none;
  }
  .agc-work-process-title h3 {
    font-size: 28px;
  }
  .agc-work-process-item .agc-work-process-serial {
    font-size: 30px;
  }
  .agc-project-section-3,
.agc-faq-section-2,
.agc-team-content,
.agc-testimonial-section-2,
.agc-blog-section-2 {
    padding: 60px 0px;
  }
  .agc-fun-fact-item h3 {
    font-size: 40px;
  }
  .agc-fun-fact-item p {
    font-size: 14px;
  }
  .agc-team-item {
    margin: 0 auto;
  }
  .agc-newslatter-content-area {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .agc-newslatter-text {
    margin-bottom: 30px;
  }
  .agc-service-section-2 {
    overflow: hidden;
  }
  .agc-service-section-2 .agc-section-title {
    padding-bottom: 40px;
  }
  .agc-header-section.agc-header-style-two.sticky_on .header-main-menu-wrapper {
    padding: 10px 15px;
  }
  .agc-testimonial-slider-2 .slick-dots {
    display: none !important;
  }
  .agc-testimonial-2-slider-wrapper .carousel_nav {
    position: static;
    margin-top: 30px;
  }
  .agc-testimonial-2-slider-wrapper .ar-tst_2_left_arrow,
.agc-testimonial-2-slider-wrapper .ar-tst_2_right_arrow {
    position: static;
  }
}


/*Breadrumb Section*/
/*---------------------------------------------------*/
/*---------------------------------------------------*/
.agdev-breadcrumb-section-2 {
  background-color: #f5f5f5;
}
.agdev-breadcrumb-section-2 .agdev-breadcrumb-content {
  padding: 205px 0px 115px;
}
.agdev-breadcrumb-section-2 .agdev-breadcrumb-content h1 {
  color: #000000;
  font-size: 48px;
  padding-bottom: 18px;
}
.agdev-breadcrumb-section-2 .agdev-breadcrumb-content li {
  color: #000000;
  text-transform: capitalize;
}
.agdev-breadcrumb-section-2 .agdev-breadcrumb-content li:before {
  display: none;
}

.no-scrolling {
  overflow: hidden !important;
}

.loading-screen-sendmail {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
}
.loading-screen-sendmail.hide-screen-sending {
  display: none !important
}

.loader-mail-send {
  width: 100px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 12px solid #a7ad99;
  animation:
    l20-1 0.8s infinite linear alternate,
    l20-2 1.6s infinite linear;
}


.poi-lot-map {
  width: 100%;
}
.poi-lot-map .poi-lot-marker{
  border-radius: 50%;
  background: #c55a12;
  color: #ffffff;
  font-weight: bold;
  -webkit-box-shadow: 0px 0px 24px -15px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 24px -15px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 24px -15px rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  font-size: 16px;
  position: relative;
}
.poi-lot-map .poi-lot-marker::after{
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50% -50%);
  border: solid 18px rgb(222, 212, 188);
  opacity: 0;
  transition: 0.2s all ease;
  pointer-events: none !important;
}
.poi-lot-map .poi-lot-marker:hover::after{
  width: 56px;
  height: 56px;
  opacity: 0.7;
  top: -17px;
  left: -17px;
  pointer-events: none !important;
}

.detail-modal-lot {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  width: 100%;
  max-width: 300px;
  height: 100%;
  position: absolute;
  right: 0px;
  top: 0px;
  box-shadow: 1px 0px 12px 9px rgba(0,0,0,0.15);
  -webkit-box-shadow: 1px 0px 12px 9px rgba(0,0,0,0.15);
  -moz-box-shadow: 1px 0px 12px 9px rgba(0,0,0,0.15);
  z-index: 99;
  /* border-radius: 10px 10px 10px 0px; */
  border-radius: 10px 0px 0px 0px;
}

.detail-modal-lot.disabled-lot-modal {
  display: none !important;
}
.detail-modal-lot .img-pre-head{
  position: relative;
}
.detail-modal-lot .img-pre-head img{
  width: 100%;
  border-radius: 10px 0px 0px 0px;
}
.detail-modal-lot .img-pre-head .close-lot-modal{
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 99;
  background: #ffffff;
  /* border: solid 1px red; */
}
.detail-modal-lot .lot-modal-head{
  padding: 20px 20px 12px;
  background: #f1f1f1;
}
.detail-modal-lot .lot-modal-head.available-tag{
  background: #bbd54c;
  color: #000000 !important;
}
.detail-modal-lot .lot-modal-head.reserved-tag{
  background: #d5b04c;
  color: #000000 !important;
}
.detail-modal-lot .lot-modal-head.sold-tag{
  background: #b72530;
  color: #ffffff !important;
}
.detail-modal-lot .lot-modal-head h3{
  font-weight: 300;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.detail-modal-lot .lot-modal-head h3 span{
  font-weight: 900 !important;
  font-size: 25px;
  font-family: 'Kaisei Opti' !important;
}
.detail-modal-lot .lot-modal-body{
  padding: 20px 20px 2px;
  height: 100%;
  border-bottom: solid 1px #eeeeee;
}
.detail-modal-lot .lot-modal-body .platename-initial{
  margin-bottom: 10px;
}
.detail-modal-lot .lot-modal-body .platename-initial h3{
  font-weight: 300;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.detail-modal-lot .lot-modal-body .platename-initial h3 span{
  font-weight: 900 !important;
  font-size: 25px;
}
.detail-modal-lot .lot-modal-body .record-info{
  display: flex;
  flex-direction: column;
  gap: 0px;
  margin-bottom: 15px;
  line-height: 18px;
}
.detail-modal-lot .lot-modal-body .record-info .labeled {
    font-size: 10px;
}
.detail-modal-lot .lot-modal-footer{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.detail-modal-lot .lot-modal-footer.group-flex{
  flex-direction: column;
  gap: 14px;
}
.detail-modal-lot .lot-modal-footer .download-trigger{
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #a7ad99;
  width: 100%;
  padding: 6px 12px;
}
.detail-modal-lot .lot-modal-footer .download-trigger:hover{
  background: #6a705c;
}
.detail-modal-lot .lot-modal-footer .download-trigger.slim{
  border: solid 2px #a7ad99;
  background: #ffffff;
  color: #a7ad99;
}
.detail-modal-lot .lot-modal-footer .download-trigger.slim:hover{
  border: solid 2px #a7ad99;
  background: #a7ad99;
  color: #ffffff;
}


.lot-list-full-mobile-view {
  width: 100%;
  height: auto;
  background: #ffffff;
  padding: 10px;
}

.lot-list-full-mobile-view .lotlist-head{
  display: flex;
  align-items: center;
}

.lot-list-full-mobile-view .lot-list-ul{
  width: 100%;
  padding: 0px;
  margin: 0px;
}

.lot-list-full-mobile-view .lot-list-ul li{
  padding: 5px;
  list-style: none;
  border-bottom: dashed 2px #cccccc;
}
.lot-list-full-mobile-view .lot-list-ul li .status-info-lotlist{
  display: flex;
  flex-direction: column;
}

.lot-list-full-mobile-view .lot-list-ul li .status-info-lotlist .lot-list-status{
  display: flex;
  align-items: center;
  border-radius: 4px;
  font-weight: 600px;
}

.lot-list-full-mobile-view .lot-list-ul li .status-info-lotlist .no-lotlist-number{
  font-weight: 900 !important;
}


@keyframes l20-1{
   0%    {clip-path: polygon(50% 50%,0       0,  50%   0%,  50%    0%, 50%    0%, 50%    0%, 50%    0% )}
   12.5% {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100%   0%, 100%   0%, 100%   0% )}
   25%   {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100% 100%, 100% 100%, 100% 100% )}
   50%   {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100% 100%, 50%  100%, 0%   100% )}
   62.5% {clip-path: polygon(50% 50%,100%    0, 100%   0%,  100%   0%, 100% 100%, 50%  100%, 0%   100% )}
   75%   {clip-path: polygon(50% 50%,100% 100%, 100% 100%,  100% 100%, 100% 100%, 50%  100%, 0%   100% )}
   100%  {clip-path: polygon(50% 50%,50%  100%,  50% 100%,   50% 100%,  50% 100%, 50%  100%, 0%   100% )}
}
@keyframes l20-2{ 
  0%    {transform:scaleY(1)  rotate(0deg)}
  49.99%{transform:scaleY(1)  rotate(135deg)}
  50%   {transform:scaleY(-1) rotate(0deg)}
  100%  {transform:scaleY(-1) rotate(-135deg)}
}

@media screen and (max-width: 1600px) {
  .agc-feature-img_2 .agc-ft-shape {
    display: none;
  }
}
@media screen and (max-width: 1300px) {
  .agc-feature-content-item_2 {
    padding-left: 0;
    padding-top: 100px;
  }
  .agc-feature-img_2 {
    top: 0;
    margin-bottom: 0;
    margin-top: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .agc-feature-content-item_2 {
    padding-top: 50px;
  }
  .agc-feature-img_2 .award-wining-text {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .agc-feature-img_2 {
    max-width: 355px;
    margin: 50px auto 0px;
  }
  .agc-feature-item_2 {
    margin: 0 auto;
    max-width: 370px;
    text-align: center;
    margin-bottom: 40px;
  }
  .agc-feature-cta-text {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    max-width: 370px;
    text-align: center;
  }
}




/*---------------------------------------------------- */
/*Responsive area*/
/*----------------------------------------------------*/
@media screen and (max-width: 1500px) {
  .agdev-main-slider-item {
      padding: 270px 80px 300px !important;
  }
  .agdev-header-section.header-style-one {
    padding: 25px 20px;
  }
  .agc-header-section .main-navigation li a {
      padding: 0px 10px;
      font-size: 17px ;
  }
  .agdev-slider-section-1 {
    /* padding: 80px 20px 0px 20px; */
    padding: 80px 0px 0px 0px;
  }
  .agc-header-section .header-cta-btn a {
    width: 140px;
  }
  .agdev-header-section .main-navigation li {
    margin: 0px 20px;
  }
  .agdev-header-section.header-style-one .header-cta-social .header-social {
    margin-left: 20px;
  }
  .agdev-header-section.header-style-one .header-cta-social .header-social:before {
    left: 0;
  }
  .agdev-header-section .dropdown-menu {
    top: 55px;
  }
  .agdev-header-section.sticky-on .dropdown-menu {
    top: 52px;
  }
  .agdev-main-slider-item .agdev-slider-main-text:before {
    left: -45px;
    top: -50px;
  }
  .agdev-main-slider-item .agdev-slider-main-text:after {
    left: -55px;
    top: -40px;
  }
  .agdev-video-cta-wrap .video-cta-item .inner-icon {
    margin-right: 10px;
  }
  .agdev-video-cta-wrap .video-cta-item .inner-text h3 {
    font-size: 16px;
  }
  .agdev-video-cta-wrap .video-cta-item {
    padding: 20px 15px;
  }
  .agdev-video-play-wrap {
    width: 52%;
  }
  .agdev-appointment-form-wrap {
    max-width: 530px;
  }
}
@media screen and (max-width: 1280px) {
  .agdev-about-section.plano-realidad-section-block {
    padding-bottom: 0px !important;
  }
  .agdev-counter-section {
    padding-top: 0px;
  }
  .agdev-counter-section .container-fluid {
    padding-left: 0px;
    padding-right: 0px;
  }
  .agc-header-section .header-cta-btn {
      margin-left: 15px !important;
  }
  .header-cta-number {
    display: none !important;
  }
  .agc-header-section .header-cta-btn a {
    width: 60px !important;
    margin-left: 0px !important;
  }
  .agc-header-section .header-cta-btn a:hover i {
    margin-left: 0px !important;
  }
  .agc-header-section .header-cta-btn a i{
    font-size: 30px;
    margin-left: 1px;
    margin-top: 2px;
  }
  .agc-header-section .header-cta-btn a span{
    display: none;
  }
  .agc-header-section .main-navigation li a {
      padding: 0px 10px 0px 0px;
      font-size: 17px;
  }
  .agdev-slider-section-1 {
    /* padding: 80px 20px 0px 20px; */
    padding: 80px 0px 0px 0px;
  }
  .agdev-main-slider-item .agdev-slider-main-text:before,
.agdev-main-slider-item .agdev-slider-main-text:after {
    display: none;
  }
  .agdev-header-section.header-style-one .header-cta-social .header-cta {
    display: none;
  }
  .agdev-header-section.header-style-one .header-cta-social .header-social:before {
    display: none;
  }
  .agdev-project-item .inner-text {
    max-width: 300px;
  }
  .agdev-main-slider-area-2 .carousel_nav {
    display: none;
  }
  .agdev-main-slider-item-2 {
    padding: 230px 0px 110px;
  }
}
@media screen and (max-width: 1024px) {
  .agdev-project-slider-wrapper {
    padding: 0px 15px;
  }
  .agdev-project-item .inner-text .project-title-desc p {
    display: none;
  }
  .agdev-project-item .inner-text {
    top: 40px;
    left: 40px;
    max-width: 230px;
  }
  .agdev-project-item .view-more-btn {
    bottom: 40px;
  }
  .agdev-video-play-wrap {
    width: 48%;
  }
  /* .agdev-appointment-form-wrap {
    max-width: 50%;
  } */
  .agdev-video-cta-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .agdev-video-cta-wrap .video-cta-item {
    width: 50%;
  }
  .agdev-sponsor-section {
    padding: 70px 0px;
  }
  .agdev-blog-item-2 .inner-text p,
.agdev-blog-item .inner-text p {
    display: none;
  }
  .agdev-blog-item-2 .inner-text {
    padding: 45px 15px 40px;
  }
  .about-signature-img .sign-img {
    right: 0;
  }
  .filtr-container-area .grid-size-25 {
    width: 50%;
  }
  .agdev-working-skill-text-wrap {
    padding-top: 0px;
  }
  .agdev-skill-progress-bar {
    padding-top: 20px;
  }
  .agdev-testimonial-appointment-content .agdev-appointment-form-wrap {
    max-width: 100%;
  }
  .agdev-testimonial-appointment-content .agdev-appointment-form-wrap {
    padding-left: 20px;
  }
  .agdev-main-slider-item-2 .agdev-slider-main-text {
    max-width: 485px;
  }
  .agdev-main-slider-item-2 .agdev-slider-main-text h1 {
    font-size: 60px;
  }
  .agdev-slider-section-2 .slider-social {
    left: 0;
  }
}
@media screen and (max-width: 991px) {
  .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    padding-right: 25px !important;
    padding-left: 25px !important;
  }
  .north-marker-alone {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    background-size: 70px 70px;
    right: 10px;
    top: 15%;
  }
  .agdev-main-navigation-wrap {
    display: none;
  }
  .agdev-slider-area .slick-dots {
    right: 30px;
  }
  .agdev-header-section.header-style-one .header-cta-social {
    display: none !important;
  }
  .mobile_menu_button {
    display: block;
  }
  .no-padding {
    padding-right: calc(var(--bs-gutter-x) / 2);
    padding-left: calc(var(--bs-gutter-x) / 2);
  }
  .agdev-about-text-wrapper {
    margin: 0 auto;
    margin-bottom: 40px;
    max-width: unset !important;
  }
  .agdev-about-section.video-section-block {
    overflow: hidden;
    padding: 0px 0px;
}
  .img-layer-zmg.map-zoom-holder.satellite-mod .map-zoom {
    height: 620px;
  }
  .section-video-holder video {
    min-height: 500px !important;
    height: 500px !important;
}
  .agdev-about-img-wrapper,
.agdev-testimonial-img-wrap {
    /* max-width: 570px; */
    max-width: unset !important;
    margin: 0 auto;
  }
  .agdev-work-process-item {
    margin-bottom: 60px;
  }
  .agdev-work-process-section {
    margin-top: 50px;
    padding-bottom: 90px;
  }
  .logo-footer img {
    width: 100%;
    max-width: 150px;
}
.agdev-counter-section {
  padding-top: 0px;
  padding-bottom: 0px;
}
  .agdev-counter-inner-item {
    margin-bottom: 40px;
  }
  .agdev-testimonial-text-wrap {
    padding-left: 0;
    margin: 0 auto;
    max-width: 570px;
  }
  .agdev-blog-item,
.agdev-blog-item-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    max-width: 770px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 40px;
  }
  .agdev-blog-item-wrapper .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .agdev-blog-item-2 .inner-text {
    padding: 45px 35px 40px;
  }
  .agdev-footer-widget {
    margin-bottom: 40px;
  }
  .agdev-footer-widget .widget-title {
    padding-bottom: 20px;
  }
  .agdev-footer-widget-wrapper {
    padding-bottom: 50px;
  }
  .agdev-slider-section-2 .agdev-slider-img-2 {
    display: none;
  }
  .agdev-about-img-wrap-2,
.agdev-working-skill-text-wrap,
.agdev-contact-page-cta {
    margin: 0 auto;
    max-width: 570px;
    margin-bottom: 30px;
  }
  .agdev-about-text-wrap-2,
.agdev-working-skill-img,
.agdev-testimonial-appointment-content .agdev-appointment-form-wrap,
.agdev-faq-video-play-wrap,
.agdev-appointment-form-wrap {
    margin: 0 auto;
    padding-left: 0;
    max-width: 570px;
  }
  .agdev-pricing-item {
    margin-bottom: 30px;
  }
  .agdev-testimonial-appointment:before {
    display: none;
  }
  .agdev-testimonial-appointment-content .agdev-testimonial-text-wrap {
    padding-right: 0;
    padding-bottom: 60px;
  }
  .about-page-about-content .agdev-about-img-wrapper {
    margin-bottom: 60px;
  }
  .agdev-faq-content {
    margin: 0 auto;
    margin-bottom: 40px;
  }
  .shop-details-text-wrap {
    padding-left: 0;
  }
  .agdev-service-details-category {
    margin-bottom: 40px;
  }
  .agdev-blog-sidebar {
    margin-top: 50px;
  }
  .agdev-contact-page-form {
    padding-left: 0;
  }
  .agdev-project-details-img-item {
    margin-bottom: 30px;
  }
  .agdev-project-details-text {
    margin-top: 30px;
  }
  .mobile_menu {
    display: block;
  }
  .agc-header-section .header-main-menu-wrapper:before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .agdev-section-title.headline {
    text-align: center !important;
  }
  .agdev-contact-page-section {
    padding-top: 180px !important;
  } 
  .agdev-work-process-section {
    margin-top: 120px;
  }
  .frame-finale-3dscenes {
    height: 500px !important;
  }
  .show-hovered-imagebg {
    margin-top: 20px !important;
  }
  .show-hovered-imagebg > div {
    display: flex !important;
  }
  .show-hovered-imagebg > div img{
    display: none !important;
  }
  .show-hovered-imagebg > div .info-around {
    margin-bottom: 10px !important;
  }
  .img-layer-zmg.map-zoom-holder.satellite-mod .north-marker.satellite {
      right: 5px !important;
      top: 135px !important;
  }
  .north-marker-alone {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    background-size: 70px 70px;
    right: 10px;
    top: 15%;
  }
  .enter-access-section-block .north-marker-alone {
    top: 15px;
  }
  .coto01-section-block .north-marker-alone {
    top: 15px;
  }
  .agdev-counter-section {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .content-slick-image{
    padding: 80px 10px 0px 10px;
    margin-bottom: -10px;
  }
  .content-slick-image h2{
    font-size: 16px;
  }
  .content-slick-image p{
    font-size: 14px;
  }
  .north-marker-alone-gris {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    background-size: 70px 70px;
    right: 35px;
    top: 35px;
  }
  .plano-realidad-section-block {
    padding-bottom: 0px !important;
  }
  .empalme-section-block {
    padding-top: 55px !important;
    /* padding-bottom: 130px !important; */
  }
  .empalme-section-block .north-marker-alone {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    background-size: 50px 50px;
    right: 10px;
    top: 15px;
  }
  .poi-info-map.access-points {
    margin-bottom: 10px;
  }
  .show-item-access-mobile > div .info-around {
    align-items: flex-start;
    margin-bottom: 10px;
  }
  .aguaclara-pin.pin-satellite {
    left: unset;
    right: 25%;
    top: 36%;
  }
  .img-layer-zmg.map-zoom-holder.satellite-mod .map-zoom {
      height: 520px;
  }
  .poi-info-map .poi-info-marker {
    width: 26px;
    height: 26px;
    min-width: 26px;
    min-height: 26px;
    font-size: 20px;
  }
  .poi-info-map.masterplan .poi-info-marker {
    width: 26px;
    height: 26px;
    min-width: 26px;
    min-height: 26px;
    font-size: 16px;
  }
  .aguaclara-pin {
    width: 40px;
    height: 63px;
    min-width: 40px;
    min-height: 63px;
    background-size: 40px 63px;
  }
  .img-layer-zmg .agdev-btn {
    right: -30px;
    bottom: -5px;
    transform: scale(0.6);
    z-index: 99 !important;
  }
  .north-marker {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    background-size: 70px 70px;
    top: 90px;
  }
  .img-layer-zmg:hover .north-marker {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    background-size: 70px 70px;
    top: 90px;
  }
  .aguaclara-pin.pin-onzoom-map {
      left: unset;
      right: 25%;
      top: 37%;
  }
  .img-layer-zmg.map-zoom-holder {
    margin-top: -70px;
  }
  .section-video-holder {
    margin-top: -70px;
  }
  .section-video-holder video {
      min-height: 300px !important;
      height: 300px !important;
  }
  .agdev-about-section {
    overflow: hidden;
    padding: 100px 0px;
}
  .agdev-main-slider-item {
      padding: 230px 60px 340px !important;
      /* padding: 170px 60px 200px !important */
  }
  .agdev-main-slider-item .agdev-slider-main-text h1 {
    font-size: 50px;
  }
  .agdev-main-slider-item .agdev-slider-main-text {
    max-width: 530px;
  }
  .agdev-section-title h2, .agdev-section-title-2 h2 {
    font-size: 40px;
  }
  .agdev-project-filter-btn li,
.agdev-project-filter-btn button,
.agdev-project-filter-btn li,
.agdev-project-filter-btn button {
    margin-left: 15px;
  }
  .agdev-project-top-content {
    padding-bottom: 40px;
  }
  .agdev-appointment-form-wrap {
    max-width: 100%;
  }
  .agdev-video-play-wrap {
    width: 100%;
    height: 500px;
    margin-top: 50px;
    position: relative !important;
  }
  .agdev-video-cta-wrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .agdev-appointment-video-section {
    padding-bottom: 0;
  }
  .agdev-blog-item, .agdev-blog-item-2 {
    margin: 0 auto;
    display: block;
    max-width: 370px;
    margin-bottom: 40px;
  }
  .filtr-container-area .grid-sizer,
.filtr-container-area .grid-size-50,
.filtr-container-area .grid-size-25 {
    width: 100%;
  }
  .agdev-blog-details-main-content .agdev-blog-share-tag {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 680px) {
  .agdev-main-slider-item .agdev-slider-main-text .line-shape {
    display: none;
  }
  .agdev-video-cta-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative !important;
  }
  .agdev-video-cta-wrap .video-cta-item {
    width: 100%;
  }
  .agdev-video-play-wrap .agdev-video-img-wrap {
    display: block;
  }
  .agdev-video-play-wrap {
    height: auto;
  }
  .agdev-video-play-btn {
    top: 25%;
  }
  .agdev-cta-content h2 {
    font-size: 30px;
  }
  .agdev-cta-content .agdev-cta-button-group {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .agdev-cta-number {
    margin-top: 30px;
  }
  .agdev-cta-content .agdev-cta-number i {
    width: 50px;
    height: 50px;
    font-size: 20px;
    line-height: 50px;
  }
  .agdev-cta-content .agdev-cta-number a {
    font-size: 20px;
  }
  .filtr-container-area .grid_2-size-40,
.filtr-container-area .grid_2-size-60,
.filtr-container-area .grid_2-sizer {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .img-layer-zmg .agdev-btn {
    right: -50px;
    bottom: -5px;
    transform: scale(0.6);
    z-index: 99 !important;
}
.north-marker {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  background-size: 60px 60px;
  top: 30px;
  right: 20px;
}
.img-layer-zmg.map-zoom-holder .north-marker {
  top: 50px !important;
}
.img-layer-zmg.map-zoom-holder.satellite-mod .north-marker-alone {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  background-size: 50px 50px;
  top: 170px;
}
.aguaclara-pin.pin-satellite {
  top: 40%;
}
.img-layer-zmg:hover .north-marker {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  background-size: 60px 60px;
  top: 30px;
  right: 20px;
}
.poi-info-map .poi-info-marker {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  font-size: 17px;
}
.img-layer-zmg.map-zoom-holder .map-zoom {
  height: 400px;
}
.aguaclara-pin {
  width: 30px;
  height: 47px;
  min-width: 30px;
  min-height: 47px;
  background-size: 30px 47px;
}
.north-marker-alone-gris {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  background-size: 60px 60px;
  right: 5px;
  top: 0px;
}
.logo-footer img {
  width: 100%;
  max-width: 140px;
}
.agdev-about-section.enter-access-section-block {
  padding: 150px 0px;
}
.agdev-about-section {
  padding: 100px 0px;
}
  .agdev-main-slider-item {
    padding: 270px 35px 300px !important;
}
  .agdev-main-slider-item .agdev-slider-main-text h1 {
    font-size: 40px;
  }
  .agdev-main-slider-item .agdev-slider-main-text {
    max-width: 310px;
  }
  .agdev-slider-section-1 {
    padding: 80px 0px 0px;
  }
  .agdev-slider-area .slick-dots {
    right: 15px;
  }
  .agdev-main-slider-item .agdev-slider-main-text h1 {
    padding-bottom: 30px;
  }
  .agdev-slider-section-1:before, .agdev-slider-section-1:after {
    display: none;
  }
  .agdev-main-slider-item {
    padding: 150px 0px 160px;
  }
  .agdev-appointment-form-wrap form button, .agdev-btn a {
    height: 50px;
    margin: auto;
    display: block;
    /* width: fit-content; */
  }
  /* .agdev-service-section,
.agdev-about-section {
    padding: 60px 0px;
  } */
  .agdev-section-title h2, .agdev-section-title-2 h2 {
    font-size: 30px;
    padding-bottom: 20px;
  }
  .agdev-about-text-wrapper .agdev-year-experience h3 {
    font-size: 60px;
  }
  .agdev-project-top-content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 20px;
  }
  .agdev-project-top-content .agdev-section-title {
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
  }
  .agdev-project-section {
    padding: 60px 0px;
  }
  .agdev-work-process-content {
    padding-top: 70px;
  }
  .agdev-work-process-section {
    padding-bottom: 60px;
  }
  .agdev-counter-section {
    padding: 60px 0px 40px;
  }
  .agdev-appointment-video-section {
    padding-top: 80px;
  }
  .agdev-appointment-form-wrap .agdev-section-title {
    padding-bottom: 15px;
  }
  .agdev-team-section {
    padding: 60px 0px 30px;
  }
  .agdev-teestimonial-item .inner-text {
    font-size: 18px;
    margin-bottom: 45px;
  }
  .agdev-blog-section {
    padding: 60px 0px 35px;
  }
  .agdev-sponsor-section {
    padding: 40px 0px;
  }
  .agdev-footer-widget-wrapper {
    padding-bottom: 20px;
  }
  .agdev-main-slider-item-2 .agdev-slider-main-text h1 {
    font-size: 40px;
    padding-bottom: 10px;
  }
  .agdev-main-slider-item-2 .agdev-slider-main-text p {
    padding-bottom: 20px;
  }
  .agdev-btn-2 a {
    height: 50px;
    width: 150px;
  }
  .agdev-about-section-2,
.agdev-before-after-section,
.agdev-working-skill-section,
.agdev-pricing-section,
.agdev-testimonial-appointment {
    padding: 60px 0px;
  }
  .agdev-before-after-content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  /* .agdev-before-after-content {
    padding-top: 20px;
  } */
  .agdev-project-section-2 {
    padding-top: 40px;
  }
  .agdev-project-filter-content {
    padding: 0px 15px;
  }
  .agdev-project-item-2 .inner-text {
    bottom: 25px;
  }
  .agdev-project-item-2:hover .inner-text {
    left: 25px;
  }
  .agdev-breadcrumb-content {
    padding: 175px 0px 140px;
  }
  .agdev-breadcrumb-section .acrk-img-shape2,
.agdev-breadcrumb-section .acrk-img-shape1 {
    display: none;
  }
  .agdev-breadcrumb-content h1 {
    font-size: 40px;
    padding-bottom: 15px;
  }
  .about-page-about-section {
    padding: 60px 0px;
  }
  .agdev-cta-content,
.agdev-faq-video-section {
    padding: 60px 0px;
  }
  .agdev-faq-video-play-wrap .agdev-video-play-btn {
    top: 50%;
  }
  .inner-page-padding {
    padding: 60px 0px;
  }
  .shop-details-text-wrap .agdev-code-category li {
    margin-right: 10px;
  }
  .shop-details-text-wrap .quantity-btn-area .add-cart-btn a {
    width: 140px;
  }
  .agdev-service-details-text-area h3 {
    font-size: 30px;
    padding-bottom: 15px;
  }
  .agdev-blog-details-main-content .agdev-blog-details-text-wrap {
    padding: 50px 20px 20px;
  }
  .agdev-blog-details-main-content .agdev-blog-share-tag .blog-hash-tag a {
    margin-left: 0;
  }
  .agdev-blog-details-main-content .agdev-blog-share-tag .blog-hash-tag {
    margin-top: 15px;
  }
  .contact-cta-inner-img {
    display: none;
  }
  .agdev-contact-page-cta .contact-cta-inner-text {
    position: static !important;
  }
  .agdev-faq-feed-content {
    padding-top: 30px;
  }
  .agdev-faq-feed-section {
    padding: 60px 0px;
  }
  .agdev-testimonial-feed-section {
    padding: 60px 0px 20px;
  }
}
/*---------------------------------------------------- */
