/*
    Theme Name: Company
    Theme URL: https://bootstrapmade.com/company-free-html-bootstrap-template/
    Author: BootstrapMade
    Author URL: https://bootstrapmade.com
*/

/* ==== Google font ==== */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,700,600);
@import url('font-awesome.css');
/* ==== overwrite bootstrap standard ==== */
@import url('animate.css');

/* Base Styles */
:root {
  --primary-color: #1BBD36;
  --secondary-color: #333;
  --text-color: #333;
  --light-color: #fff;
  --dark-color: #000;
  --gray-color: #ddd;
  --dark-gray: #4E4E4E;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6em;
  color: var(--text-color);
  background-color: var(--light-color);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--secondary-color);
  line-height: 1.1em;
  margin-bottom: 15px;
}

p {
  color: var(--text-color);
  font-size: 13px;
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  color: var(--secondary-color);
  outline: none;
}

a:hover {
  text-decoration: none;
  color: var(--primary-color);
}

img {
  max-width: 100%;
  height: auto;
}

/* Layout */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 8px 20px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--light-color);
  border: none;
  margin-top: 10px;
}

.btn-primary:hover {
  background: #16a02d;
  color: var(--light-color);
}

.btn-default {
  color: var(--secondary-color);
  background-color: var(--light-color);
  border-color: var(--light-color);
  text-transform: uppercase;
  font-size: 18px;
  border-radius: 30px;
}

.text-center h2 {
  margin-bottom: 30px;
}

.text-center p {
  margin-bottom: 50px;
}

/* Breadcrumb */
#breadcrumb {
  background-color: var(--primary-color);
  margin-top: -20px;
  padding: 10px 0;
}

.breadcrumb {
  list-style: none;
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.breadcrumb li {
  text-transform: uppercase;
  font-weight: 600;
  color: var(--light-color);
}

.breadcrumb li+li:before {
  content: "/";
  padding: 0 10px;
  color: var(--light-color);
}

/*===========================
  Menu and Navigation - Responsive
============================ */
.navigation {
  background-color: var(--light-color);
  padding: 15px 0;
  position: relative;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand h1 {
  margin: 0;
  font-size: 25px;
  color: var(--secondary-color);
  text-transform: uppercase;
  font-weight: 900;
}

.navbar-brand h1 span {
  color: var(--primary-color);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1000;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 4px 0;
  transition: all 0.3s ease;
}

/* Navigation Menu */
.menu {
  display: flex;
  align-items: center;
}

.nav-tabs {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  border: none;
}

.nav-tabs > li {
  position: relative;
}

.nav-tabs > li > a {
  color: var(--secondary-color);
  padding: 10px 15px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  border: none;
  border-radius: 0;
  transition: all 0.3s ease;
}

.nav-tabs > li > a:hover,
.nav-tabs > li > a.active {
  color: var(--primary-color);
  background-color: transparent;
}

/* Mobile Menu Styles */
@media (max-width: 991px) {
  .menu-toggle {
    display: block;
  }
  
  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--light-color);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    overflow-y: auto;
    z-index: 999;
  }
  
  .menu.active {
    right: 0;
  }
  
  .nav-tabs {
    flex-direction: column;
    width: 100%;
  }
  
  .nav-tabs > li {
    width: 100%;
  }
  
  .nav-tabs > li > a {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/*===========================
  slider - Responsive
============================ */
#main-slider {
  position: relative;
  margin-top: 40px;
}

.no-margin {
  margin: 0;
  padding: 0;
}

#main-slider .carousel .carousel-content {
  margin-top: 100px;
}

#main-slider .carousel .slide-margin {
  margin-top: 90px;
}

#main-slider .carousel h2 {
  color: var(--light-color);
  text-transform: uppercase;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
}

#main-slider .carousel h2 span {
  color: var(--primary-color);
}

#main-slider .carousel p {
  color: #ddd;
  font-size: 18px;
}

#main-slider .carousel .btn-slide {
  padding: 8px 20px;
  background: var(--primary-color);
  color: var(--light-color);
  border-radius: 4px;
  margin-top: 25px;
  display: inline-block;
}

#main-slider .carousel .slider-img {
  text-align: right;
  position: absolute;
}

#main-slider .carousel .item {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  left: 0 !important;
  opacity: 0;
  top: 0;
  position: absolute;
  width: 100%;
  display: block !important;
  height: 600px;
  transition: opacity ease-in-out 500ms;
}

#main-slider .carousel .item:first-child {
  top: auto;
  position: relative;
}

#main-slider .carousel .item.active {
  opacity: 1;
  transition: opacity ease-in-out 500ms;
  z-index: 1;
}

/* Slider Animations */
#main-slider .active .animation.animated-item-1 {
  animation: fadeInUp 300ms linear 300ms both;
}

#main-slider .active .animation.animated-item-2 {
  animation: fadeInUp 300ms linear 600ms both;
}

#main-slider .active .animation.animated-item-3 {
  animation: fadeInUp 300ms linear 900ms both;
}

#main-slider .active .animation.animated-item-4 {
  animation: fadeInUp 300ms linear 1200ms both;
}

/* Slider Responsive Adjustments */
@media (max-width: 768px) {
  #main-slider .carousel .carousel-content,
  #main-slider .carousel .slide-margin {
    margin-top: 50px;
    text-align: center;
  }
  
  #main-slider .carousel h2 {
    font-size: 28px;
  }
  
  #main-slider .carousel p {
    font-size: 16px;
  }
  
  #main-slider .carousel .item {
    height: 500px;
  }
  
  #main-slider .carousel .slider-img {
    position: relative;
    text-align: center;
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  #main-slider .carousel h2 {
    font-size: 24px;
  }
  
  #main-slider .carousel p {
    font-size: 14px;
  }
  
  #main-slider .carousel .item {
    height: 400px;
  }
}

/* Features Section */
.feature {
  padding: 30px 0;
}

.text-center i {
  font-size: 40px;
  margin: 30px auto;
  color: var(--light-color);
  padding: 30px;
  background: var(--primary-color);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-center h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 18px;
  color: var(--primary-color);
}

.hi-icon-effect i.fa:hover {
  background: var(--light-color);
  color: var(--primary-color);
  transition: all 0.3s ease;
}

/* Partner Section */
#partner {
  background: url(../images/partners/partner_bg.png) center center no-repeat;
  background-size: cover;
  color: var(--light-color);
  text-align: center;
  padding: 60px 0;
}

#partner h2 {
  color: var(--light-color);
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

#partner p {
  color: var(--light-color);
  font-size: 18px;
  margin-bottom: 30px;
}

.partners ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.partners ul li {
  margin: 15px;
  flex: 0 0 calc(20% - 30px);
  max-width: calc(20% - 30px);
}

.partners ul li a img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.partners ul li a img:hover {
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .partners ul li {
    flex: 0 0 calc(25% - 30px);
    max-width: calc(25% - 30px);
  }
}

@media (max-width: 768px) {
  .partners ul li {
    flex: 0 0 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
  }
  
  #partner {
    padding: 40px 0;
  }
  
  #partner h2 {
    font-size: 24px;
  }
  
  #partner p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .partners ul li {
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
  }
}

/* Contact Info */
#conatcat-info {
  background: var(--light-color) url(../images/contact.png) no-repeat right center;
  padding: 30px 0;
  background-size: contain;
}

.contact-info i {
  width: 60px;
  height: 60px;
  font-size: 40px;
  line-height: 60px;
  color: var(--light-color);
  background: var(--dark-color);
  text-align: center;
  border-radius: 6px;
  margin-bottom: 20px;
}

.contact-info h2 {
  margin-top: 0;
  color: var(--dark-color);
  font-size: 24px;
}

.contact-info p {
  color: var(--dark-color);
  font-size: 14px;
}

@media (max-width: 768px) {
  #conatcat-info {
    background-image: none;
  }
}

/* About Us Section */
.aboutus {
  padding: 30px 0;
}

.aboutus img {
  border-radius: 6px;
  margin-bottom: 20px;
}

.aboutus h3 {
  margin-bottom: 20px;
  font-weight: 800;
  font-size: 24px;
}

.aboutus h4 {
  margin: 20px 0;
  font-weight: 700;
  font-size: 20px;
}

.skill h2 {
  margin: 20px 0;
  font-size: 24px;
}

.progress-wrap {
  position: relative;
  margin-bottom: 30px;
}

.progress {
  height: 15px;
  background: #e6e6e6;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 30px;
}

.progress-bar {
  height: 15px;
  line-height: 15px;
  background: var(--primary-color);
  box-shadow: none;
  position: relative;
}

.progress .bar-width {
  position: absolute;
  width: 40px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  top: -30px;
  border-radius: 2px;
  margin-left: -30px;
  background: var(--primary-color);
  color: var(--light-color);
}

.progress span:before {
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-width: 8px 5px;
  border-style: solid;
  bottom: -15px;
  right: 8px;
  border-color: var(--primary-color) transparent transparent transparent;
}

/* About Section */
.about {
  background: #eee;
  padding: 30px 0;
}

.about h2 {
  margin-bottom: 30px;
  font-size: 24px;
}

.about img {
  margin-bottom: 20px;
  border-radius: 6px;
}

/* Our Team Section */
.our-team {
  padding: 30px 0;
  background: #ddd;
}

.our-team h3 {
  margin-bottom: 20px;
  font-weight: 800;
  font-size: 24px;
}

.our-team h4 {
  margin: 15px 0;
  font-weight: 600;
  font-size: 18px;
}

.our-team img {
  border-radius: 6px;
  margin-top: 15px;
}

/* Latest Section */
.lates {
  padding: 30px 0;
}

.lates h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary-color);
}

.lates img {
  margin-top: 15px;
  border-radius: 5px;
}

/* Footer */
.footer {
  background: var(--primary-color);
  padding: 30px 0;
  color: var(--light-color);
}

.social-network {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.social-network li {
  margin: 0 15px;
}

.social-network li a {
  color: #d0d0d0;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-network li:hover .fa-twitter {
  color: #00abf0;
}

.social-network li:hover .fa-facebook {
  color: #39579a;
}

.social-network li:hover .fa-google-plus {
  color: #eb8984;
}

.social-network li:hover .fa-pinterest {
  color: #c9171e;
}

.social-network li:hover .fa-linkedin {
  color: #0077b5;
}

.social-network li:hover .fa-youtube-play {
  color: #C84941;
}

.social-network li:hover .fa-dribbble {
  color: #EA4C89;
}

.social-network li:hover .fa-pinterest-square {
  color: #EA4B49;
}

.copyright {
  margin-top: 20px;
  text-align: center;
}

.copyright a {
  color: var(--light-color);
  font-weight: 600;
  font-size: 12px;
}

@media (max-width: 768px) {
  .copyright {
    text-align: center;
  }
}

/* Services Section */
.services {
  padding: 30px 0;
}

.services h3 {
  margin-bottom: 20px;
  font-weight: 800;
  font-size: 24px;
}

.services img {
  border-radius: 6px;
  margin-bottom: 20px;
}

.services p {
  margin-top: 15px;
  font-size: 13px;
}

.sub-services {
  padding: 30px 0;
  background: #ddd;
}

.sub-services p {
  margin-top: 15px;
  font-size: 13px;
}

.media {
  margin-bottom: 30px;
}

.media-body p {
  margin-bottom: 15px;
}

.media i {
  color: var(--primary-color);
  font-size: 40px;
  margin-right: 15px;
}

.media h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}

/* Portfolio Section */
#portfolio .center p {
  margin: 30px 0;
  font-size: 16px;
}

.portfolio-items,
.portfolio-filter {
  list-style: none;
  margin: 0 0 30px 0;
  padding: 0;
}

.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.portfolio-filter > li {
  margin: 5px;
}

.portfolio-filter > li a {
  background: var(--light-color);
  font-size: 14px;
  font-weight: 400;
  padding: 8px 20px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 1px solid #F2F2F2;
  border-radius: 3px;
  color: var(--secondary-color);
  display: inline-block;
}

.portfolio-filter > li a:hover,
.portfolio-filter > li a.active {
  color: var(--light-color);
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.portfolio-items {
  display: flex;
  flex-wrap: wrap;
}

.portfolio-items > li {
  width: 100%;
  padding: 15px;
}

.portfolio-item {
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.overlay {
  position: relative;
  margin-bottom: 20px;
}

.overlay img {
  transition: all 0.3s ease;
}

.overlay:hover img {
  transform: scale(1.05);
}

@media (min-width: 576px) {
  .portfolio-items > li {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .portfolio-items > li {
    width: 33.333%;
  }
}

@media (min-width: 992px) {
  .portfolio-items > li {
    width: 25%;
  }
}

/* Google Map */
.map {
  position: relative;
  margin-bottom: 40px;
}

#google-map {
  position: relative;
  margin-top: 10px;
  height: 400px;
  width: 100%;
}

/* Blog Section */
#blog {
  margin-top: 50px;
}

.widget {
  margin-bottom: 40px;
  padding-left: 0;
}

.single_comments {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}

.single_comments img {
  margin-right: 15px;
  border-radius: 50%;
}

.widget .entry-meta span {
  display: inline-block;
  margin-right: 10px;
  color: var(--secondary-color);
  font-size: 12px;
}

.widget h3 {
  color: var(--dark-color);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 18px;
}

.blog_category {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog_category li {
  margin-bottom: 10px;
}

.blog_category li a {
  background: #f5f5f5;
  border-radius: 4px;
  color: #888;
  display: inline-block;
  padding: 8px 15px;
  transition: all 0.3s ease;
}

.blog_category li a:hover {
  background: var(--primary-color);
  color: var(--light-color);
}

.badge {
  background-color: var(--primary-color);
  border-radius: 5px;
  color: var(--light-color);
  padding: 8px;
  position: relative;
  left: 60px;
  top: -18px;
  font-weight: normal;
  font-size: 12px;
}

.badge:before {
  border-color: transparent transparent transparent var(--primary-color);
  border-style: solid;
  border-width: 10px;
  bottom: -8px;
  content: "";
  height: 0;
  left: 5px;
  position: absolute;
  z-index: -1;
}

.blog_archieve {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog_archieve li {
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
}

.blog_archieve li:first-child {
  padding-top: 0;
}

.blog-item {
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 40px;
}

.blog .blog-item .img-blog {
  border-radius: 5px;
  margin-bottom: 20px;
}

.blog .blog-item .blog-content {
  padding-bottom: 15px;
}

.blog .blog-item .blog-content h2 {
  margin-top: 0;
  font-size: 24px;
  line-height: 1.3;
}

.blog .blog-item .blog-content h4 {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 18px;
}

.readmore {
  margin-top: 15px;
}

.blog .blog-item .entry-meta > span {
  background: #f5f5f5;
  border-top: 1px solid var(--light-color);
  display: block;
  font-size: 12px;
  overflow: hidden;
  padding: 5px;
  text-align: left;
  color: #888;
}

#publish_date {
  background: var(--primary-color);
  border-bottom: 5px solid #4e4e4e;
  color: var(--light-color);
  padding: 10px 0;
  text-align: center;
  font-weight: 600;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.pagination > li > a {
  border: 1px solid #F1F1F1;
  margin: 0 5px;
  border-radius: 5px;
  font-size: 14px;
  padding: 8px 15px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.pagination > li.active > a,
.pagination > li:hover > a {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--light-color);
}

.search_box {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 20px;
}

.tag-cloud li {
  display: inline-block;
  margin: 0 5px 5px 0;
}

.tag-cloud li a {
  background: #f5f5f5;
  color: #888;
  border: 0;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 12px;
  transition: all 0.3s ease;
}

.tag-cloud li a:hover {
  background: var(--primary-color);
  color: var(--light-color);
}

.sidebar-gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}

.sidebar-gallery li {
  width: 33.333%;
  padding: 5px;
}

.sidebar-gallery li a {
  display: block;
  border-radius: 4px;
  overflow: hidden;
}

/* Contact Page */
#contact-page {
  padding: 30px 0;
  background: var(--light-color);
  margin-bottom: 50px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(27, 189, 54, 0.25);
}

.validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#sendmessage {
  color: green;
  border: 1px solid green;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
  border-radius: 4px;
}

#errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
  border-radius: 4px;
}

.center h2 {
  font-size: 30px;
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
}

/* Scroll to Top */
.scrollup {
  color: var(--light-color);
  height: 40px;
  width: 40px;
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  opacity: 0.7;
  border-radius: 50%;
  z-index: 999;
  background: var(--primary-color);
  display: none;
  transition: all 0.3s ease;
}

.scrollup:hover {
  opacity: 1;
  background: var(--dark-color);
  color: var(--light-color);
}

/* Responsive Utilities */
@media (max-width: 767px) {
  .text-center-mobile {
    text-align: center !important;
  }
  
  .no-padding-mobile {
    padding: 0 !important;
  }
  
  .no-margin-mobile {
    margin: 0 !important;
  }
  
  .hidden-mobile {
    display: none !important;
  }
}

/* Print Styles */
@media print {
  body {
    background: none;
    color: #000;
    font-size: 12pt;
  }
  
  .no-print {
    display: none !important;
  }
  
  a[href]:after {
    content: none !important;
  }
}