/* ==========================================================================
   1. FONTS
   ========================================================================== */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fBBc9.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxP.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format('truetype');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/raleway/v28/1Ptsg8zYS_SKggPNwE44TYFv.ttf) format('truetype');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/raleway/v28/1Ptrg8zYS_SKggPNwPIsWqZPBQ.ttf) format('truetype');
}

/* ==========================================================================
   2. RESET & GENERAL
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}
p {
  font-size: 14px;
  line-height: 26px;
}
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s linear;
}
a:hover, a:focus {
  color: #7ac143;
  text-decoration: none;
  outline: none;
}
h1, h2, h3, h4, h5 {
  font-family: 'Raleway', sans-serif;
  font-weight: 100;
  letter-spacing: 1px;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   3. LAYOUT GRID (lightweight Bootstrap-like)
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.justify-center {
  justify-content: center;
}
.align-center {
  align-items: center;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right-md {
  text-align: right;
}
[class*="col-"] {
  padding: 0 15px;
  width: 100%;
}
.col-1 { flex: 0 0 8.333%; max-width: 8.333%; }
.col-2 { flex: 0 0 16.666%; max-width: 16.666%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333%; max-width: 33.333%; }
.col-5 { flex: 0 0 41.666%; max-width: 41.666%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333%; max-width: 58.333%; }
.col-8 { flex: 0 0 66.666%; max-width: 66.666%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333%; max-width: 83.333%; }
.col-11 { flex: 0 0 91.666%; max-width: 91.666%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* ==========================================================================
   4. SECTIONS
   ========================================================================== */
.section {
  padding: 80px 0;
}
.bg-light {
  background: #f2f2f2;
}
.section-header {
  margin-bottom: 40px;
  text-align: center;
}
.section-header .section-title {
  font-size: 42px;
  margin-top: 0;
  text-transform: uppercase;
  font-weight: 100;
  color: #333;
  position: relative;
}
.section-header .section-title span {
  color: #7ac143;
}
.section-header .lines {
  margin: auto;
  width: 70px;
  position: relative;
  border-top: 2px solid #7ac143;
  margin-top: 15px;
}
.section-header .lines::before {
  position: absolute;
  content: "";
  display: inline-block;
  height: 10px;
  width: 10px;
  top: -10px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #7ac143;
  left: 27px;
}

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */
.btn {
  font-size: 14px;
  padding: 10px 30px;
  border-radius: 4px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  transition: all 0.2s linear;
  display: inline-block;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
}
.btn:focus, .btn:active {
  box-shadow: none;
  outline: none;
  color: #fff;
}
.btn-common {
  border-color: #7ac143;
  background-color: #7ac143;
  color: #fff;
}
.btn-common:hover {
  color: #7ac143;
  background-color: transparent;
  border-color: #7ac143;
}

/* ==========================================================================
   6. PRELOADER
   ========================================================================== */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  z-index: 9999;
  transition: opacity 0.5s;
}
#loader.hidden {
  opacity: 0;
  pointer-events: none;
}
.spinner {
  width: 40px;
  height: 40px;
  top: 45%;
  position: relative;
  margin: 0 auto;
}
.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #7ac143;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: sk-bounce 2s infinite ease-in-out;
}
.double-bounce2 {
  animation-delay: -1s;
}
@keyframes sk-bounce {
  0%, 100% { transform: scale(0); }
  50% { transform: scale(1); }
}

/* ==========================================================================
   7. BACK TO TOP
   ========================================================================== */
.back-to-top {
  display: none;
  position: fixed;
  bottom: 18px;
  right: 15px;
  z-index: 999;
}
.back-to-top.visible {
  display: block;
}
.back-to-top i {
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  border-radius: 4px;
  background-color: #7ac143;
  transition: all 0.2s linear;
}

/* ==========================================================================
   8. NAVBAR
   ========================================================================== */
.navbar-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  transition: all 0.3s;
}
.navbar-area.sticky {
  background: #fff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.16);
}
.logo-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px;
}
.logo-menu .logo img {
  max-width: 150px;
}
.menu-button {
  position: absolute;
  z-index: 1000;
  width: 60px;
  height: 42px;
  border: none;
  font-size: 30px;
  color: #fff;
  background: transparent;
  top: 15px;
  right: 0;
  line-height: 42px;
  outline: none;
  text-align: center;
  cursor: pointer;
}
.sticky .menu-button {
  color: #333;
}
.menu-button:hover {
  color: #7ac143;
}

/* Side Menu */
.menu-wrap {
  position: fixed;
  z-index: 9999;
  width: 260px;
  right: 0;
  height: 100%;
  background: #fff;
  padding: 2.5em 1.5em 0;
  font-size: 1.15em;
  transform: translate3d(320px, 0, 0);
  transition: transform 0.4s;
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  top: 0;
}
.menu-wrap.show-menu {
  transform: translate3d(0, 0, 0);
  transition: transform 0.8s;
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}
.menu-wrap .navbar-nav {
  padding: 0;
}
.menu-wrap .navbar-nav .nav-item {
  margin-bottom: 5px;
}
.menu-wrap .nav-link {
  color: #b8b7ad;
  font-size: 15px;
  padding: 0.8em;
  display: block;
  transition: color 0.2s;
  position: relative;
}
.menu-wrap .nav-link:hover,
.menu-wrap .nav-item.active .nav-link {
  color: #4676fa;
}
.menu-wrap .nav-link::before {
  background: #4676fa;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 10px;
  transform: scale(0);
  transition: all 0.3s ease;
  width: 20px;
}
.menu-wrap .nav-link:hover::before {
  transform: scale(1);
}
.close-button {
  width: 45px;
  height: 45px;
  position: absolute;
  left: -45px;
  top: 4px;
  overflow: hidden;
  font-size: 25px;
  border: none;
  background: #fff;
  color: #000;
  line-height: 48px;
  cursor: pointer;
  box-shadow: -1px 2px 3px 0 rgba(0, 0, 0, 0.16);
}
.close-button:hover {
  color: #7ac143;
}
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  display: none;
}
.menu-overlay.visible {
  display: block;
}

/* ==========================================================================
   9. HEADER / VIDEO AREA
   ========================================================================== */
#video-area {
  overflow: hidden;
  position: relative;
}
#video-area .contents {
  padding: 200px 0 80px;
  position: relative;
  z-index: 2;
}
#video-area .contents h1 {
  color: #fff;
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 25px;
  line-height: 70px;
}
#video-area .contents p {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.5px;
}
#video-area .contents .btn {
  margin: 20px 10px;
}
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 470px;
}
.video-container video {
  display: block;
  margin: 0 auto;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.overlay-dark {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* ==========================================================================
   10. ANIMATIONS
   ========================================================================== */
.fade-in-down {
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInDown 1s 0.3s forwards;
}
.fade-in {
  opacity: 0;
  animation: fadeIn 1s 0.4s forwards;
}
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s 0.4s forwards;
}
@keyframes fadeInDown {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   11. SERVICES
   ========================================================================== */
#services {
  background: #f2f2f2;
}
.item-box {
  text-align: center;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.item-box .icon {
  width: 60px;
  height: 60px;
  text-align: center;
  border: 1px solid #7ac143;
  display: inline-block;
  border-radius: 5px;
  margin-top: 10px;
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
}
.item-box .icon i {
  font-size: 30px;
  line-height: 60px;
  color: #7ac143;
}
.item-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.item-box:hover {
  background: #fff;
  box-shadow: 0 8px 48px 0 rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   12. TOOL BELT / INSTRUMENTS
   ========================================================================== */
#instruments {
  background: #fff;
}
#instruments .icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #7ac143;
  margin: 12px;
  transition: all 0.2s linear;
  flex-shrink: 0;
}
#instruments .icon i {
  color: #7ac143;
  font-size: 24px;
  line-height: 60px;
  transition: all 0.2s linear;
}
#instruments .box-item {
  padding: 15px 0;
}
#instruments .box-item .text h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
}
#instruments .box-item .text p {
  font-size: 14px;
  line-height: 26px;
}
#instruments .box-item:hover .icon {
  background: #7ac143;
}
#instruments .box-item:hover .icon i {
  color: #fff;
}
#instruments .show-box {
  padding: 20px 0 0;
}
#instruments .show-box img {
  width: 100%;
}
.content-left .box-item.left {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  text-align: right;
}
.content-right .box-item.right {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
}

/* ==========================================================================
   13. PORTFOLIO / ENGAGEMENTS
   ========================================================================== */
#portfolios {
  background: #f2f2f2;
}
.portfolio-item {
  padding-bottom: 20px;
}
.shot-item {
  padding: 8px;
  border-radius: 4px;
  background: #fff;
}
.overlay-img {
  display: block;
  overflow: hidden;
  position: relative;
  background-color: white;
  text-align: center;
}
.overlay-img img {
  width: 100%;
  display: block;
}
.overlay-img::before,
.overlay-img::after {
  position: absolute;
  content: "";
  height: 25%;
  width: 25%;
  background: #346afe;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}
.overlay-img::before {
  top: 0;
  left: 0;
}
.overlay-img::after {
  bottom: 0;
  right: 0;
}
.shot-item:hover .overlay-img::before {
  height: 50%;
  width: 100%;
  opacity: 0.8;
}
.shot-item:hover .overlay-img::after {
  height: 50%;
  width: 100%;
  opacity: 0.8;
}
.overlay-img .item-icon {
  height: 48px;
  width: 48px;
  line-height: 48px;
  color: #fff;
  left: 50%;
  margin-left: -24px;
  margin-top: -24px;
  top: 50%;
  position: absolute;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  text-align: center;
  font-size: 24px;
  transition: all 0.5s ease-in-out;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.shot-item:hover .item-icon {
  visibility: visible;
  opacity: 1;
}

/* ==========================================================================
   14. ABOUT ME / TEAM
   ========================================================================== */
.single-team {
  position: relative;
  transition: 0.5s;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
  border-radius: 0;
  overflow: hidden;
  padding: 15px;
  margin-bottom: 30px;
}
.single-team:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}
.single-team img {
  width: 100%;
}
.single-team .team-details {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 2;
  transition: 0.5s;
  opacity: 0;
}
.single-team:hover .team-details {
  opacity: 1;
}
.single-team .team-details .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #7ac143;
  opacity: 0.8;
}
.single-team .team-inner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(0%);
  transition: 0.5s;
}
.single-team:hover .team-inner {
  transform: translateY(-50%);
}
.single-team .team-inner p {
  color: #fff;
}
.single-team .team-title {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.single-team .social-list li {
  display: inline-block;
}
.single-team .social-list li a {
  display: block;
  height: 34px;
  line-height: 34px;
  text-align: center;
  width: 34px;
  color: #7ac143;
  font-size: 14px;
  background: #fff;
  border-radius: 50px;
  transition: 0.5s;
}
.single-team .social-list .linkedin a:hover { background: #007bb6; color: #fff; }
.single-team .social-list .twitter a:hover { background: #1da1f2; color: #fff; }
.single-team .social-list .instagram a:hover { background: #C13584; color: #fff; }
.about-text p {
  margin-bottom: 15px;
}

/* ==========================================================================
   15. RECOMMENDATIONS / CAROUSEL
   ========================================================================== */
#recommendations {
  background: #f2f2f2;
}
.carousel {
  position: relative;
  overflow: hidden;
}
.carousel-track {
  position: relative;
}
.carousel-slide {
  display: none;
  animation: carouselFade 0.5s ease;
}
.carousel-slide.active {
  display: block;
}
@keyframes carouselFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.recommendations-item {
  text-align: center;
}
.recommendations-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-block;
  object-fit: cover;
}
.recommendations-item .recommendations-text h3 {
  font-size: 16px;
  font-weight: 100;
  text-transform: uppercase;
}
.recommendations-item .recommendations-text span {
  font-size: 15px;
  color: #999;
}
.recommendations-item .recommendations-text span a {
  color: #007bb6;
}
.recommendations-item .recommendations-text p {
  font-size: 14px;
  font-weight: 400;
  padding: 20px 10px;
  letter-spacing: 1px;
  margin: 0;
  line-height: 1.5;
  color: #999;
}
.carousel-dots {
  text-align: center;
  margin-top: 20px;
}
.carousel-dots .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s;
}
.carousel-dots .dot.active {
  background: #7ac143;
}

/* ==========================================================================
   16. PRICING
   ========================================================================== */
.pricing-table {
  padding: 20px 20px 40px;
  margin: 0 auto 5px;
  border: transparent;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
.pricing-table:hover {
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.1);
}
.pricing-table .icon {
  font-size: 26px;
  color: #7ac143;
  border: 1px solid #7ac143;
  border-radius: 4px;
  width: 64px;
  height: 64px;
  text-align: center;
  line-height: 64px;
  margin: 30px auto;
}
.pricing-table .pricing-details h2 {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}
.pricing-table .pricing-details .price {
  display: inline-block;
  font-size: 28px;
  font-weight: 400;
  color: #7ac143;
  margin-bottom: 20px;
}
.pricing-table .pricing-details ul {
  margin-bottom: 35px;
}
.pricing-table .pricing-details ul li {
  padding: 10px;
  font-size: 15px;
  border-bottom: 1px solid #eee;
}
.table-offset {
  margin-top: 20px;
}

/* ==========================================================================
   17. SOCIAL ICONS
   ========================================================================== */
.social-icons {
  margin-bottom: 20px;
}
.social-icons ul {
  text-align: center;
}
.social-icons ul li {
  display: inline;
}
.social-icons ul li a {
  display: inline-block;
  margin: 0 5px 15px;
  border-radius: 4px;
  border: 1px solid rgba(255, 254, 254, 0.07);
  line-height: 40px;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 16px;
  color: #fff;
}
.social-icons ul li a:hover {
  color: #fff;
}
.social-icons .linkedin a:hover { background: #007BB6; }
.social-icons .twitter a:hover { background: #1DA1F2; }
.social-icons .instagram a:hover { background: #C13584; }

/* ==========================================================================
   18. FOOTER
   ========================================================================== */
footer {
  background: #333;
  padding: 60px 0 30px;
  text-align: center;
}
.site-info p {
  line-height: 34px;
  color: #fff;
}

/* ==========================================================================
   19. COUNTERS BANNER
   ========================================================================== */
.counters {
  background: url(../img/counters_bg.jpg) fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 80px 0;
}
.counters .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #7ac143;
  opacity: 0.8;
}

/* ==========================================================================
   20. SECTION SUBTITLE
   ========================================================================== */
.section-subtitle {
  margin-top: 15px;
  color: #333;
  font-size: 14px;
  font-weight: 400;
}

/* ==========================================================================
   20. CONTACT SECTION
   ========================================================================== */
#contact {
  background: #f2f2f2;
  position: relative;
  overflow: hidden;
}
.contact-block {
  background: #fff;
  padding: 30px;
  overflow: hidden;
}
.contact-info {
  margin-bottom: 20px;
}
.contact-social .social-icons ul li a {
  color: #333;
  border: 1px solid #ddd;
}
.contact-social .social-icons ul li a:hover {
  color: #fff;
}
.reveal-btn {
  border: 2px solid #f2f2f2;
  background-color: #f2f2f2;
  position: relative;
  z-index: 1;
  border-radius: 4px;
  padding: 2px 8px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  display: inline-block;
}
.reveal-btn:hover {
  color: #7ac143;
  border: 2px solid #7ac143;
  background-color: transparent;
}
.reveal-btn a {
  color: inherit;
}
.reveal-btn a:hover {
  color: #7ac143;
}

/* ==========================================================================
   21. MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
}
.modal-overlay.visible {
  display: flex;
}
.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 4px;
  max-width: 700px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}
.modal-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #7ac143;
}
.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #333;
}
.modal-close:hover {
  color: #7ac143;
}

/* ==========================================================================
   22. COOKIE CONSENT
   ========================================================================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #333;
  color: #fff;
  padding: 15px 20px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 1500;
  flex-wrap: wrap;
}
.cookie-consent.visible {
  display: flex;
}
.cookie-consent a {
  color: #7ac143;
}
.cookie-accept {
  padding: 8px 20px;
  font-size: 13px;
}

/* ==========================================================================
   23. FOOTER LINKS
   ========================================================================== */
.site-info a {
  color: #ccc;
  transition: color 0.2s;
}
.site-info a:hover {
  color: #7ac143;
}

/* ==========================================================================
   24. POINTER DOWN ICON
   ========================================================================== */
.pointer-down {
  margin-left: 8px;
}

/* ==========================================================================
   25. LEGAL PAGES
   ========================================================================== */
.legal-page {
  padding-top: 120px;
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 30px 0 10px;
  color: #333;
}
.legal-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}
.legal-content ul {
  margin: 10px 0 20px 20px;
}
.legal-content ul li {
  list-style: disc;
  margin-bottom: 10px;
  line-height: 1.8;
}

/* ==========================================================================
   26. RESPONSIVE
   ========================================================================== */

/* Tablet */
@media (max-width: 991px) {
  .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
  .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
  .hide-sm { display: none; }

  .section-header .section-title {
    font-size: 22px;
  }
  #video-area .contents h1 {
    font-size: 32px;
    line-height: 48px;
  }
  #instruments .box-item .text h4 {
    font-size: 12px;
  }
  #instruments .box-item .icon {
    width: 48px;
    height: 48px;
    margin: 5px 0;
  }
  #instruments .box-item .icon i {
    line-height: 48px;
  }
  .content-left .box-item.left {
    flex-direction: row;
    text-align: left;
  }
  .text-right-md {
    text-align: left;
  }
}

/* Mobile */
@media (max-width: 767px) {
  [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-sm-6 { flex: 0 0 50%; max-width: 50%; }

  .btn {
    padding: 10px 12px;
  }
  .section-header .section-title {
    font-size: 22px;
  }
  #video-area .contents h1 {
    font-size: 30px;
    line-height: 48px;
  }
  .single-team {
    margin-bottom: 30px;
    max-width: 370px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-tables .pricing-table {
    max-width: 370px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
  .table-offset {
    margin-top: 0;
  }
  #portfolios .shot-item {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
  .content-left .box-item.left {
    flex-direction: row;
    text-align: left;
  }
  .text-right-md {
    text-align: left;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .col-sm-6 { flex: 0 0 100%; max-width: 100%; }

  .section-header .section-title {
    font-size: 20px;
    line-height: 30px;
  }
  #video-area .contents {
    padding: 80px 0 60px;
  }
  #video-area .contents h1 {
    font-size: 18px;
    line-height: 32px;
  }
  .social-icons ul li a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    margin-left: 0;
  }
}
