body {
  font-family: Montserrat, sans-serif;
  color: rgb(34, 34, 34);
  background: rgb(246 255 241);
  font-weight: 500;
}

a {
  color: rgb(12 88 168);
  text-decoration: none;
}

a:hover {
  color: rgb(255, 213, 132);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Montserrat, sans-serif;
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #a9a9a9;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s ease 0s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #b3b6c1;
  color: #fff;
}

.back-to-top:hover i {
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

#preloader {
  position: fixed;
  inset: 0px;
  z-index: 9999;
  overflow: hidden;
  background: rgb(255, 255, 255);
  text-align: center;
  height: 100vh;
  width: 100%;
}

#preloader img {
  text-align: center;
  width: 60px;
  animation: 1s linear 0s infinite normal none running zoominoutsinglefeatured;
  position: fixed;
  top: 50%;
  margin-top: -40px;
  margin-left: -30px;
  left: 50%;
}

@keyframes zoominoutsinglefeatured {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1.6);
  }
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
  }
}

#header {
  transition: all 0.5s ease 0s;
  z-index: 997;
  padding: 8px 0px;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
}

#header.header-scrolled .navbar a,
.navbar a:focus {
  color: rgb(17, 17, 17);
}

#header.header-scrolled .navbar a:hover,
#header.header-scrolled .navbar .active,
#header.header-scrolled .navbar .active:focus,
#header.header-scrolled .navbar li:hover > a {
  color: rgb(56 87 40);
}

#header .logo {
  font-size: 32px;
  margin: 0px;
  padding: 0px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: rgb(255, 255, 255);
}

#header .logo a span {
  color: rgb(12 88 168);
}

#header .logo img {
  max-height: 60px;
}

.get-started-btn {
  color: #fff;
  border-radius: 4px;
  padding: 8px 20px;
  white-space: nowrap;
  transition: all 0.3s ease 0s;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  background: rgb(56 87 40);
  border: 2px solid rgb(146 200 62);
}

.get-started-btn:hover {
  background: rgb(255, 187, 56);
  color: rgb(52, 58, 64);
}

@media (max-width: 992px) {
  .get-started-btn {
    padding: 7px 20px 8px;
    margin-right: 15px;
    font-size: 12px;
  }
}

.navbar {
  padding: 0px;
}

.navbar ul {
  margin: 0px;
  padding: 0px;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
  margin: 0px 4px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  white-space: nowrap;
  transition: all 0.3s ease 0s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 14px;
  line-height: 1;
  margin-left: 5px;
  margin-top: 1px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: rgb(56 87 40);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0px;
  padding: 10px 0px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: rgb(255, 255, 255);
  box-shadow: rgba(127, 137, 161, 0.25) 0px 0px 30px;
  transition: all 0.3s ease 0s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: rgb(21, 21, 21);
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  background-color: rgb(56 87 40);
  color: rgb(255, 255, 255) !important;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0px;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0px;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

.mobile-nav-toggle {
  color: rgb(56 87 40);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: all 0.5s ease 0s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  inset: 0px;
  background: rgb(146 133 102 / 96%);
  transition: all 0.3s ease 0s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  inset: 55px 15px 15px;
  padding: 10px 0px;
  background-color: rgb(255, 255, 255);
  overflow-y: auto;
  height: max-content;
  transition: all 0.3s ease 0s;
  border-radius: 4px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: rgb(21, 21, 21);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #fff;
  background-color: rgb(12 88 168);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0px;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: rgb(255, 255, 255);
  box-shadow: rgba(127, 137, 161, 0.25) 0px 0px 30px;
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: rgb(21, 21, 21);
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  background-color: rgb(12 88 168);
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") center top / cover;
  position: relative;
}

#hero::before {
  content: "";
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  inset: 0px;
}

#hero .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

#hero h1 {
  margin: 0px;
  font-size: 60px;
  font-weight: 700;
  /* line-height: 64px; */
  color: rgb(255 255 255);
  text-shadow: 3px 2px 1px #385728;
  text-transform: uppercase;
}

#hero h1 span {
  color: rgb(146 200 62);
}

#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 16px 0px 0px;
  font-size: 20px;
  font-weight: 500;
  /* text-shadow: rgb(0 0 0 / 80%) 1px 1px 0px; */
}

#hero .icon-box {
  padding: 30px 20px;
  transition: all 0.3s ease-in-out 0s;
  border: 1px solid rgba(255, 255, 255, 0.6);
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.45);
}

#hero .icon-box img {
  width: 100px;
}

#hero .icon-box h3 {
  font-weight: 500;
  margin: 10px 0px 0px;
  padding: 0px;
  font-size: 14px;
}

.services .icon-box p {
  opacity: 0.7;
  margin-bottom: 0;
}

#hero .icon-box h3 a {
  color: rgb(255, 255, 255);
  transition: all 0.3s ease-in-out 0s;
}

#hero .icon-box h3 a:hover {
  color: rgb(255, 219, 140);
}

#hero .icon-box:hover {
  border-color: rgb(255, 219, 140);
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: auto;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 14px;
    line-height: 24px;
  }
}

section {
  padding: 80px 0px;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0px;
  line-height: 1px;
  margin: 0px 0px 5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgb(146 200 62);
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: rgb(146 200 62);
  margin: 4px 10px;
}

.section-title p {
  margin: 0px;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgb(56 87 40);
}

.about .content h3 {
  font-weight: 700;
  font-size: 28px;
}

.about .content ul {
  list-style: none;
  padding: 0px;
  font-size: 14px;
  font-weight: 400;
}

.about .content ul li {
  padding: 0px 0px 8px 26px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0px;
  top: -3px;
  color: rgb(12 88 168);
}

.about .content p:last-child {
  margin-bottom: 0px;
}

.clients {
  padding-top: 20px;
}

.clients .swiper-slide img {
  opacity: 0.5;
  transition: all 0.3s ease 0s;
  filter: grayscale(1);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgb(221, 221, 221);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: rgb(56 87 40);
}

.services .icon-box {
  text-align: center;
  border: 1px solid rgb(235, 235, 235);
  padding: 20px;
  transition: all 0.3s ease-in-out 0s;
  background: rgb(56 87 40);
  color: #fff;
}

.services .icon-box .icon img {
  width: 100%;
}
.services .icon-box .icon {
  margin: 0px auto 20px;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease 0s;
}

.services .icon-box h4 {
  font-weight: 600;
  /* margin-bottom: 15px; */
  font-size: 18px;
}

.services .icon-box h4 a {
  color: #fff;
  transition: all 0.3s ease-in-out 0s;
}

.services .icon-box h4 a:hover {
  /* color: rgb(12 88 168); */
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0px;
}

.services .icon-box:hover {
  border-color: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 25px 0px;
  transform: translateY(-10px);
}

.pageinner {
  padding: 160px 0 80px 0px;
  background: url("../img/testimonials-bg.jpg") center center / cover no-repeat;
  position: relative;
  text-align: center;
}
.pageinner h2 {
  color: #fff;
  font-weight: bold;
  font-size: 48px;
  text-transform: uppercase;
}
.contact .info {
  width: 100%;
  background: rgb(255, 255, 255);
}

.contact .info i {
  font-size: 20px;
  background: rgb(123 171 57);
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out 0s;
}

.contact .info h4 {
  padding: 0px 0px 0px 60px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  color: rgb(21, 21, 21);
}

.contact .info p {
  padding: 0px 0px 0px 60px;
  margin-bottom: 0px;
  font-size: 14px;
  color: rgb(72, 72, 72);
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
  background: rgb(255, 255, 255);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: rgb(255, 255, 255);
  background: rgb(237, 60, 13);
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: rgb(255, 255, 255);
  background: rgb(24, 210, 110);
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: rgb(255, 255, 255);
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading::before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0px 10px -6px 0px;
  border-width: 3px;
  border-style: solid;
  border-color: rgb(238, 238, 238) rgb(24, 210, 110) rgb(24, 210, 110);
  border-image: initial;
  animation: 1s linear 0s infinite normal none running animate-loading;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: rgb(12 88 168);
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  border: 0px;
  padding: 10px 24px;
  color: #fff;
  transition: all 0.4s ease 0s;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  background: #7bab39;
}

.contact .php-email-form button[type="submit"]:hover {
  background: rgb(39 64 27);
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.breadcrumbs {
  padding: 15px 0px;
  background: whitesmoke;
  min-height: 40px;
  margin-top: 74px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: rgb(47, 47, 47);
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }

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

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

#footer {
  /* background: white; */
  padding: 0px 0px 30px;
  font-size: 14px;
}

#footer .footer-top {
  background: linear-gradient(180deg, #b1e993 0%, rgba(56, 87, 40, 0) 100%);
  /* border-bottom: 1px solid rgb(146 200 62); */
  /* color: #fff; */
  padding: 60px 0px 30px;
}

#footer .footer-top .footer-info {
  margin-bottom: 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0px 0px 20px;
  padding: 2px 0px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#footer .footer-top .footer-info h3 span {
  color: rgb(12 88 168);
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0px;
}

#footer .footer-top .social-links a {
  font-size: 12px;
  display: inline-block;
  background: rgb(146 200 62);
  color: rgb(255, 255, 255);
  line-height: 1;
  padding: 8px 0px;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 28px;
  height: 28px;
  transition: all 0.3s ease 0s;
}

#footer .footer-top .social-links a:hover {
  background: rgb(100 144 31);
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #198754;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 12px 0px;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0px;
}

#footer .footer-top .footer-links ul a {
  color: #333;
  transition: all 0.3s ease 0s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #198754;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: rgb(255, 255, 255);
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0px;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0px;
  right: -2px;
  bottom: 0px;
  border: 0px;
  font-size: 16px;
  padding: 0px 20px;
  background: rgb(12 88 168);
  color: rgb(21, 21, 21);
  transition: all 0.3s ease 0s;
  border-radius: 0px 4px 4px 0px;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: rgb(255, 205, 107);
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: rgb(255, 255, 255);
}

ul.contact-fixed {
  position: fixed;
  right: 18px;
  bottom: 80px;
  z-index: 996;
  transition: all 0.4s;
  padding: 0;
  margin: 0;
}

ul.contact-fixed li {
  display: block;
  margin: 8px 0;
}

ul.contact-fixed li a {
}

ul.contact-fixed li a img {
  width: 36px;
  box-shadow: 2px 2px 7px 0px rgb(0 0 0 / 11%);
  border-radius: 13px;
}

.product-item {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  padding: 20px;
  height: 360px;
  display: block;
  transition: 0.5s;
  margin: 20px 0;
}

.btn-book:hover {
  color: #fff;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.3);
}

.btn-book {
  background: #385728;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  padding: 12px 30px;
  position: absolute;
  left: 50%;
  top: 56%;
  margin-left: -68px;
  margin-top: -40px;
  z-index: 999;
  color: #fff;
  opacity: 0;
}

.product-item:hover .btn-book {
  opacity: 1;
}

.product-item:hover .product-item-bottom {
  background: transparent;
  padding: 16px;
  color: #fff;
}

.product-item:hover .product-item-bottom span {
  background: #faff00;
  border: 1px solid #faff00;
  color: #000;
}

.product-item:hover .product-item-bottom p {
  background: transparent;
  padding: 16px;
  color: #faff00;
}

.product-item:after {
  position: absolute;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  left: 0;
  top: 0;
  margin: 10px;
  content: "";
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  opacity: 0;
}

.product-item:before {
  position: absolute;
  background: linear-gradient(
    97.56deg,
    rgb(56 87 40) 0.15%,
    rgb(146 200 62) 99.6%
  );
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  opacity: 0.4;
}

.product-item:hover:after,
.product-item:hover:before {
  opacity: 1;
}

.product-item:hover .product-item-center {
  padding: 20px;
  width: 100%;
  bottom: inherit;
  top: 53px;
  left: 0;
  color: #fff;
}

.product-item span.number {
  font-size: 32px;
  color: #fff;
  font-weight: bold;
  position: relative;
}

.product-item-bottom {
  position: absolute;
  background: #fffdf7;
  padding: 16px 0;
  width: 100%;
  bottom: 0;
  left: 0;
  transition: 0.3s;
}

.product-item-bottom h3 {
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.6;
}

.product-item-bottom span {
  background: #fff;
  border: 1px solid #333;
  padding: 3px 8px;
  border-radius: 18px;
}

.product-item span.number:before {
  position: absolute;
  right: -36px;
  top: 23px;
  content: "";
  background: #fff;
  width: 28px;
  height: 3px;
}

.product-item-bottom p {
  margin-bottom: 0;
  font-size: 28px;
  font-weight: bold;
}

.product-item-center {
  position: absolute;
  background: transparent;
  padding: 20px;
  width: 100%;
  bottom: 80px;
  height: 132px;
  left: 0;
  color: #fff;
}

.product-item-center h3 {
  font-size: 18px;
  font-weight: bold;
  /* text-shadow: 1px 2px 2px rgb(0 0 0); */
}

.product-item-center h3 a {
  color: #fff;
}
.btn {
  border-radius: 2px !important;
  font-size: 14px;
}

.btn-outline-warning {
  color: rgb(220 164 71);
  border: 1px solid rgb(220 164 71);
}

.btn-outline-warning:hover {
  background: rgb(220 164 71);
  color: #fff;
  border: 1px solid rgb(220 164 71);
}
.product-item-center p {
}
.box-news {
}
.box-news p {
  font-size: 14px;
  opacity: 0.7;
}
.box-news h3 {
  margin: 20px 0 10px 0;
  font-weight: bold;
  font-size: 16px;
}
.box-news h3 a {
  color: #333;
}

@media (max-width: 600px) {
  .pageinner {
    padding: 120px 0 60px 0px;
    background: url("../img/testimonials-bg.jpg") center center / cover
      no-repeat;
    position: relative;
    text-align: center;
  }
  .pageinner h2 {
    color: #fff;
    font-weight: bold;
    font-size: 36px;
    text-transform: uppercase;
  }
  #hero .icon-box {
    padding: 12px;
  }

  #hero .icon-box img {
    width: 60px;
  }

  #hero .icon-box h3 {
    font-size: 12px;
  }

  .section-title {
    padding-bottom: 20px;
  }

  section {
    padding: 40px 0;
  }
}
.pagedetail {
}
.pagedes {
  font-size: 17px;
  font-weight: 500;
  margin: 30px 0;
}
.pagedetail img {
  max-width: 100%;
  margin: 20px 0;
}
