/*
@Author: Akhouad-me
@URL: http://www.akhouad.me
 
This file contains the styling for the actual theme, this
is the file you need to edit to change the look of the
theme.


// Table of contents //

		Body
	0.  General
	1.  Header & footer
	2.  Site heroes
	3.  Services
	4.  Portfolio
	5.  Inputs & textareas styles
	6.  Benefits styles
	7.  Pricing plans styles
	8.  Team styles
	9.  Testimonials styles
	10. clients styles
	11. Blog styles
	
*/
@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700); /* Montserrat font */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800); /* Open sans font */

/* ##### GENERAL  ##### */
* {
  outline: 0;
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  background: #fff;
  color: #60606e;
  font-family: "Open sans", sans-serif;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ##### 00 : GENERAL  ##### */
section {
  margin-top: 150px;
}
.green-section {
  background-color: #97c1c0;
}
.white-section {
  background-color: #fff;
}
.light-gray-section {
  background-color: #efeff0;
}
img {
  width: 100%;
  height: auto; /* Tambahkan untuk menjaga aspect ratio */
  max-width: 100%; /* Pastikan gambar tidak melebihi container */
}

/* Responsive base font size */
@media (max-width: 768px) {
  body {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 12px;
  }
}

/* Responsive section margins */
@media (max-width: 991px) {
  section {
    margin-top: 100px;
  }
}

@media (max-width: 768px) {
  section {
    margin-top: 80px;
  }
}

@media (max-width: 480px) {
  section {
    margin-top: 60px;
  }
}

/*blockquote*/
blockquote.bq {
  padding: 30px;
  border-left: solid 10px #97c1c0;
  font-style: italic;
  font-size: 14px;
  line-height: 30px;
  color: #999999;
  background-color: #efeff0;
}

@media (max-width: 768px) {
  blockquote.bq {
    padding: 20px;
    font-size: 13px;
    line-height: 26px;
    margin: 0 15px;
  }
}

/*links*/
a {
  color: #fbbd4c;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
a.link {
  position: relative;
}
a.link:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #97c1c0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
a:hover,
a:focus {
  color: #60606e;
  text-decoration: none;
}
a:hover:after {
  width: 50%;
}

/*texts*/
.montserrat-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.open-sans-text {
  font-family: "Open sans", sans-serif;
}
.white-text {
  color: white;
}
.green-text {
  color: #97c1c0;
}
.gray-text {
  color: #999999;
}

.uppercase {
  text-transform: uppercase;
}
.italic {
  font-style: italic;
}
p {
  font-family: "Open sans", sans-serif;
  color: #999999;
  line-height: 30px;
}

@media (max-width: 768px) {
  p {
    line-height: 26px;
    padding: 0 10px;
  }
}

ul.social-icons li a:hover {
  color: #97c1c0;
}

/*section's title*/
.section-title {
  width: 50%;
  margin: 0 auto 100px;
  text-align: center;
}
.section-title span {
  position: relative;
  z-index: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  color: #60606e;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
.section-title span:after {
  content: "";
  background-color: #97c1c0;
  position: absolute;
  top: 20px;
  left: 0;
  z-index: -1;
  width: 60px;
  height: 20px;
}
.section-title p {
  line-height: 24px;
  color: #60606e;
}

/* Responsive section title */
@media (max-width: 991px) {
  .section-title {
    width: 80%;
    margin: 0 auto 50px;
  }
  .section-title span:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .section-title {
    width: 90%;
    margin: 0 auto 40px;
  }
  .section-title span {
    font-size: 24px;
  }
  .section-title span:after {
    top: 15px;
    width: 50px;
    height: 15px;
  }
}

@media (max-width: 480px) {
  .section-title span {
    font-size: 20px;
  }
  .section-title p {
    font-size: 13px;
    line-height: 22px;
  }
}

/*lists*/
/*list 1*/
ul.list li {
  list-style: none;
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
ul.list li:last-child {
  margin-bottom: 0;
}
ul.list li:before {
  font-family: "Ionicons";
  content: "\f374";
  position: absolute;
  left: 0;
  color: #97c1c0;
}

/*list 2*/
ul.list_2 li {
  list-style: none;
  float: left;
  width: 100%;
}
ul.list_2 li a {
  display: inline-block;
  padding: 20px;
  border-bottom: solid 1px #bfbfbf;
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
ul.list_2 li:first-child a {
  border-top: solid 1px #bfbfbf;
}
ul.list_2 li a > span {
  float: right;
}
ul.list_2 li a:hover {
  border-bottom: solid 1px #97c1c0;
}

/* Responsive list 2 */
@media (max-width: 768px) {
  ul.list_2 li a {
    padding: 15px;
  }
}

/*list 3 (tags)*/
ul.tags {
  float: left;
}
ul.tags li {
  list-style: none;
  margin-right: 5px;
  margin-bottom: 5px;
  float: left;
}
ul.tags li a {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  color: #999999;
  background-color: #e5e5e5;
  padding: 0 15px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
ul.tags li a:hover {
  background-color: #f2f2f2;
  color: #60606e;
}

/*social icons*/
ul.social-icons li {
  list-style: none;
  float: left;
  margin: 0 10px;
}
ul.social-icons li:first-child {
  margin: 0 10px 0 0;
}
ul.social-icons li:last-child {
  margin: 0 0 0 10px;
}
ul.social-icons li a {
  color: #999999;
  font-size: 18px;
}

/* Responsive social icons */
@media (max-width: 480px) {
  ul.social-icons li {
    margin: 0 5px;
  }
  ul.social-icons li:first-child {
    margin: 0 5px 0 0;
  }
  ul.social-icons li:last-child {
    margin: 0 0 0 5px;
  }
}

/*buttons*/
.btn {
  height: 50px;
  line-height: 50px;
  min-width: 150px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0;
  padding: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn:hover {
  -webkit-transform: scale(1.01);
  -ms-transform: scale(1.01);
  transform: scale(1.01);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.btn.green {
  background-color: #97c1c0;
  color: #fff;
}
.btn.white {
  background-color: #fff;
  color: #97c1c0;
}

/* Responsive buttons */
@media (max-width: 991px) {
  .btn {
    margin: 20px 0;
    min-width: 140px;
    height: 45px;
    line-height: 45px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .btn {
    min-width: 130px;
    height: 42px;
    line-height: 42px;
    font-size: 12px;
    display: block;
    width: 100%;
    margin: 10px 0;
  }
}

/*tab menu*/
.tab {
  overflow: hidden;
  float: left;
  width: 100%;
}
.tab nav {
  width: 100%;
  display: inline-block;
  float: left;
  border-bottom: solid 2px #e6e6e6;
  margin-bottom: 30px;
  position: relative;
}
.tab nav .bottom-line {
  height: 2px;
  background-color: #97c1c0;
  position: absolute;
  bottom: -2px;
  left: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.tab nav a {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 10px 20px;
  color: #999999;
  display: inline-block;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.tab nav a.current {
  color: #60606e;
}
.tab .tab_single {
  display: none;
}
.tab .tab_single.shown {
  display: block;
}

/* Responsive tab menu */
@media (max-width: 768px) {
  .tab nav {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
  }
  .tab nav a {
    padding: 0 15px 15px;
    font-size: 11px;
  }
}

/* ##### 01 : HEADER & FOOTER  ##### */
/*header*/
header.main-header {
  height: 100px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  background: #fff; /* Tambahkan background untuk mobile */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Tambahkan shadow untuk mobile */
}

/* Responsive header */
@media (max-width: 991px) {
  header.main-header {
    height: 80px;
    position: fixed; /* Jadikan fixed untuk mobile */
  }
}

@media (max-width: 480px) {
  header.main-header {
    height: 70px;
  }
}

/*logo*/
header.main-header .logo {
  float: left;
  height: 100px;
  line-height: 100px;
}

/* Responsive logo */
@media (max-width: 991px) {
  header.main-header .logo {
    height: 80px;
    line-height: 80px;
  }
  header.main-header .logo img {
    max-height: 40px;
    width: auto;
  }
}

@media (max-width: 480px) {
  header.main-header .logo {
    height: 70px;
    line-height: 70px;
  }
  header.main-header .logo img {
    max-height: 35px;
  }
}

.menu {
  float: right;
}

/*desktop nav*/
nav.desktop-nav {
  float: left;
}
nav.desktop-nav li {
  list-style: none;
}
nav.desktop-nav ul.first-level > li {
  float: left;
  margin-right: 20px;
  position: relative;
}
nav.desktop-nav ul.first-level > li:last-child {
  margin-right: 0;
}
nav.desktop-nav ul.first-level > li > a {
  display: inline-block;
  line-height: 100px;
  position: relative;
  -webkit-transition: none;
  transition: none;
}
nav.desktop-nav ul.first-level > li > a:after {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  width: 50%;
  height: 1px;
  background-color: #60606e;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
nav.desktop-nav ul.first-level > li:hover > a:after {
  top: 35px;
  opacity: 1;
}
nav.desktop-nav ul.first-level > li a {
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

nav.desktop-nav ul.first-level > li > ul.second-level {
  display: none;
  z-index: 999;
  position: absolute;
  top: 70px;
  left: 0;
  min-width: 200px;
  background-color: #60606e;
}
nav.desktop-nav ul.first-level > li:last-child > ul.second-level {
  left: auto;
  right: 0;
}
nav.desktop-nav ul.first-level > li > ul.second-level > li > a {
  display: inline-block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  color: #fff;
}
nav.desktop-nav ul.first-level > li > ul.second-level > li:nth-child(even) > a {
  background-color: #585866;
}
nav.desktop-nav ul.first-level > li > ul.second-level > li > a:hover {
  background-color: #404051;
}

/* Responsive desktop nav */
@media (max-width: 991px) {
  .menu nav.desktop-nav {
    display: none;
  }

  nav.desktop-nav ul.first-level > li {
    margin-right: 15px;
  }
  nav.desktop-nav ul.first-level > li > a {
    font-size: 11px;
    line-height: 80px;
  }
}

/*mobile nav*/
nav.mobile-nav {
  display: inline-block;
  min-width: 300px;
  background-color: #60606e;
  position: absolute;
  right: 0;
  top: 100px;
  display: none;
  width: 100%; /* Full width untuk mobile */
}
nav.mobile-nav > ul.first-level li {
  list-style: none;
}
nav.mobile-nav > ul.first-level > li a {
  display: inline-block;
  text-decoration: none;
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}
nav.mobile-nav > ul.first-level > li a:hover {
  background-color: #404051;
}
nav.mobile-nav > ul.first-level > li > ul.second-level {
  display: none;
  background-color: #50505f;
}

/* Responsive mobile nav */
@media (max-width: 991px) {
  nav.mobile-nav {
    top: 80px;
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  nav.mobile-nav {
    top: 70px;
  }
  nav.mobile-nav > ul.first-level > li a {
    height: 45px;
    line-height: 45px;
    font-size: 11px;
  }
}

/*menu icon*/
header.main-header .menu-icon {
  float: left;
  cursor: pointer;
  margin-top: 41.5px; /* (100 - 17) / 2 (17px is the icon's height) */
  display: none;
}
header.main-header .menu-icon .line {
  height: 1px;
  width: 30px;
  background-color: #60606e;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
header.main-header .menu-icon .line:nth-child(2) {
  margin: 7px 0;
  width: 15px;
}
header.main-header .menu-icon .line:last-child {
  width: 20px;
}

/* Responsive menu icon */
@media (max-width: 991px) {
  header.main-header .menu-icon {
    display: block;
    margin-top: 31.5px; /* Adjust untuk height 80px */
  }
}

@media (max-width: 480px) {
  header.main-header .menu-icon {
    margin-top: 26.5px; /* Adjust untuk height 70px */
  }
  header.main-header .menu-icon .line {
    width: 25px;
  }
  header.main-header .menu-icon .line:nth-child(2) {
    width: 12px;
  }
  header.main-header .menu-icon .line:last-child {
    width: 16px;
  }
}

/*footer*/
footer.main-footer {
  padding: 50px 0;
}
footer.main-footer nav.footer-nav ul {
  padding: 0;
  margin: 0;
}
footer.main-footer nav.footer-nav ul li {
  list-style: none;
  float: left;
  margin: 0 20px;
  padding: 0;
}
footer.main-footer nav.footer-nav ul li:first-child {
  margin: 0 20px 0 0;
}
footer.main-footer nav.footer-nav ul li a {
  text-transform: uppercase;
  color: #9a9a9a;
}

/* Responsive footer */
@media (max-width: 991px) {
  footer.main-footer {
    padding: 40px 0;
  }
  footer.main-footer * {
    text-align: center;
  }
  footer.main-footer ul.social-icons {
    float: left;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  footer.main-footer ul.social-icons li {
    margin: 0;
    width: -webkit-calc(100% / 6);
    width: calc(100% / 6);
  }
  footer.main-footer nav.footer-nav ul li {
    text-align: center;
    width: 100%;
  }
  footer.main-footer nav.footer-nav ul li,
  footer.main-footer nav.footer-nav ul li:first-child {
    margin-left: 0;
    margin-bottom: 15px;
    float: none;
    display: block;
  }
}

@media (max-width: 768px) {
  footer.main-footer {
    padding: 30px 0;
  }
  footer.main-footer nav.footer-nav ul li a {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  footer.main-footer {
    padding: 25px 15px;
  }
  footer.main-footer ul.social-icons li {
    width: 16.666%;
  }
  footer.main-footer nav.footer-nav ul li {
    margin-bottom: 12px;
  }
}

/* ##### 02 : SITE HEROS  ##### */
/*site hero 1 */
.site-hero {
  height: 850px;
  width: 100%;
  background: #fff url("../img/site-hero.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.site-hero ul.slides {
  height: 450px; /* 850 - 400 */
  width: 100%;
  position: absolute;
  top: 100px;
}
.site-hero ul.slides li {
  opacity: 0;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 90%; /* Tambahkan width untuk mobile */
  padding: 0 20px;
}
.site-hero .small-title {
  color: #60606e;
  padding: 7px 12px;
  background-color: #97c1c0;
  display: inline-block;
  font-size: 14px;
}
.site-hero .big-title {
  font-size: 48px;
  color: #60606e;
  padding: 10px 40px;
  border: solid 10px #60606e;
  display: inline-block;
  margin-bottom: 30px;
}
.site-hero p {
  width: 50%;
  margin: 0 auto;
  color: #60606e;
}

/* Responsive site hero 1 */
@media (max-width: 991px) {
  .site-hero {
    height: 700px;
  }
  .site-hero ul.slides {
    height: 600px;
    top: 80px;
  }
  .site-hero .big-title {
    font-size: 36px;
    padding: 8px 30px;
    border-width: 8px;
  }
  .site-hero p {
    width: 70%;
  }
}

@media (max-width: 768px) {
  .site-hero {
    height: 600px;
  }
  .site-hero ul.slides {
    height: 500px;
  }
  .site-hero .big-title {
    font-size: 28px;
    padding: 6px 20px;
    border-width: 6px;
    margin-bottom: 20px;
  }
  .site-hero .small-title {
    font-size: 12px;
    padding: 5px 10px;
  }
  .site-hero p {
    width: 85%;
    font-size: 13px;
    line-height: 24px;
  }
}

@media (max-width: 480px) {
  .site-hero {
    height: 500px;
  }
  .site-hero ul.slides {
    height: 400px;
    top: 70px;
  }
  .site-hero .big-title {
    font-size: 22px;
    padding: 5px 15px;
    border-width: 4px;
    margin-bottom: 15px;
  }
  .site-hero .small-title {
    font-size: 11px;
    padding: 4px 8px;
  }
  .site-hero p {
    width: 95%;
    font-size: 12px;
    line-height: 22px;
  }
}

/*site hero 2 */
.site-hero_2 {
  background: url("../img/site-hero2.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  height: 500px;
  width: 100%;
  position: relative;
}
.site-hero_2 .page-title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  padding: 0 20px;
}
.site-hero_2 .page-title .big-title {
  font-size: 36px;
}
.site-hero_2 .page-title .small-title {
  font-size: 14px;
}

/* Responsive site hero 2 */
@media (max-width: 768px) {
  .site-hero_2 {
    height: 400px;
  }
  .site-hero_2 .page-title .big-title {
    font-size: 28px;
  }
  .site-hero_2 .page-title .small-title {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .site-hero_2 {
    height: 300px;
  }
  .site-hero_2 .page-title .big-title {
    font-size: 22px;
  }
  .site-hero_2 .page-title .small-title {
    font-size: 12px;
  }
}

.agency {
  width: 100%;
  height: auto;
  float: left;
  margin-top: -300px;
}
.agency img {
  max-height: 400px;
  object-fit: cover; /* Tambahkan untuk menjaga aspect ratio */
}
.agency p {
  color: #60606e;
}
.agency .section-title {
  text-align: left;
  width: 100%;
  margin: 0 auto 30px;
}

/* Responsive agency section */
@media (max-width: 991px) {
  .agency {
    margin-top: 30px;
    padding: 0 20px;
  }
  .agency img {
    margin-bottom: 30px;
    max-height: 300px;
  }
  .agency .section-title {
    margin: 0 auto;
    text-align: center;
  }
  .agency p {
    text-align: center;
    padding: 0 10px;
  }
}

@media (max-width: 768px) {
  .agency {
    margin-top: 20px;
  }
  .agency img {
    max-height: 250px;
  }
}

@media (max-width: 480px) {
  .agency {
    margin-top: 15px;
    padding: 0 15px;
  }
  .agency img {
    max-height: 200px;
    margin-bottom: 20px;
  }
}

/* ##### 03 : SERVICES  ##### */
.services .services-left i.icon {
  display: block;
  font-size: 36px;
}
.services .services-left .service-title {
  font-size: 18px;
  margin-bottom: 20px;
  display: inline-block;
}
.services .services-left ul li {
  list-style: none;
  text-transform: uppercase;
  line-height: 30px;
  color: #999999;
}

/* Responsive services */
@media (max-width: 991px) {
  .services {
    padding: 0 20px;
  }
  .services .services-left {
    text-align: center;
    margin-bottom: 50px;
  }
  .services .services-left i.icon {
    font-size: 32px;
  }
  .services .services-left .service-title {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .services {
    padding: 0 15px;
  }
  .services .services-left {
    margin-bottom: 40px;
  }
  .services .services-left i.icon {
    font-size: 28px;
  }
  .services .services-left .service-title {
    font-size: 15px;
  }
  .services .services-left ul li {
    font-size: 13px;
    line-height: 26px;
  }
}

/* ##### 04 : PORTFOLIO  ##### */
.portfolio .categories-grid span {
  font-size: 30px;
  margin-bottom: 50px;
  display: inline-block;
}
.portfolio .categories-grid .categories ul li {
  list-style: none;
  margin: 20px 0;
}
.portfolio .categories-grid .categories ul li a {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #60606e;
  margin-left: 20px;
}
.portfolio .categories-grid .categories ul li a.active {
  margin-left: 0;
  background-color: #97c1c0;
  padding: 0 10px;
  color: white;
}

/* Responsive portfolio */
@media (max-width: 991px) {
  .portfolio {
    padding: 0 20px;
  }
  .portfolio .categories-grid span {
    margin-bottom: 0;
    text-align: center;
    width: 100%;
    font-size: 24px;
  }
  .portfolio .categories-grid .categories ul li {
    text-align: center;
    margin: 15px 0;
  }
  .portfolio .categories-grid .categories ul li a {
    margin-left: 0;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .portfolio .categories-grid .categories ul li {
    display: inline-block;
    margin: 10px 5px;
  }
  .portfolio .categories-grid .categories ul li a {
    padding: 8px 12px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .portfolio {
    padding: 0 15px;
  }
  .portfolio .categories-grid span {
    font-size: 20px;
  }
  .portfolio .categories-grid .categories ul li {
    margin: 8px 3px;
  }
  .portfolio .categories-grid .categories ul li a {
    padding: 6px 10px;
    font-size: 11px;
  }
}

.portfolio_item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  display: inline-block;
  width: 100%;
}
.portfolio_item .portfolio_item_hover {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.portfolio_item .portfolio_item_hover .item_info {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 90%;
}
.portfolio_item .portfolio_item_hover .item_info span {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #60606e;
  font-size: 18px;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.5s ease-in-out 0.3s;
  transition: all 0.5s ease-in-out 0.3s;
  opacity: 0;
}
.portfolio_item .portfolio_item_hover .item_info em {
  font-style: normal;
  font-weight: 700;
  display: inline-block;
  background-color: #97c1c0;
  padding: 5px;
  color: white;
  margin-top: 5px;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.5s ease-in-out 0.5s;
  transition: all 0.5s ease-in-out 0.5s;
  opacity: 0;
}
.portfolio_item:hover .portfolio_item_hover {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.portfolio_item:hover .item_info em,
.portfolio_item:hover .item_info span {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* Responsive portfolio items */
@media (max-width: 768px) {
  .portfolio_item {
    margin-bottom: 20px;
  }
  .portfolio_item .portfolio_item_hover .item_info span {
    font-size: 16px;
  }
  .portfolio_item .portfolio_item_hover .item_info em {
    font-size: 13px;
    padding: 4px;
  }
}

@media (max-width: 480px) {
  .portfolio_item {
    margin-bottom: 15px;
  }
  .portfolio_item .portfolio_item_hover .item_info span {
    font-size: 14px;
  }
  .portfolio_item .portfolio_item_hover .item_info em {
    font-size: 12px;
    padding: 3px;
  }
}

/*single project*/
.project_images {
  float: left;
  width: 100%;
}
.related_projects {
  float: left;
  width: 100%;
}
.pages_pagination {
  width: 100%;
  height: 50px;
  line-height: 50px;
  float: left;
  text-align: right;
  font-size: 24px;
  margin: 50px 0;
}
.pages_pagination .all {
  float: left;
}
.pages_pagination > a {
  display: inline-block;
  height: 100%;
  width: 50px;
  text-align: center;
}
.pages_pagination > a:hover {
  background-color: #97c1c0;
  color: white;
}

/* Responsive single project */
@media (max-width: 991px) {
  .related_projects img {
    margin-bottom: 30px;
  }
  .pages_pagination {
    margin: 30px 0;
    font-size: 20px;
    text-align: center;
  }
  .pages_pagination .all {
    float: none;
    display: block;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .pages_pagination {
    font-size: 18px;
    height: 40px;
    line-height: 40px;
    margin: 20px 0;
  }
  .pages_pagination > a {
    width: 40px;
  }
}

/* ##### 05 : INPUTS & TEXTAREAS STYLES  ##### */
/*textarea 1*/
.textarea_1 {
  height: 200px;
  width: 100%;
  border: solid 1px rgba(0, 0, 0, 0.1);
  position: relative;
}
.textarea_1 textarea {
  height: 100%;
  width: 100%;
  border: 0;
  padding: 20px;
  resize: none;
  background: transparent;
  z-index: 1;
  position: relative;
}
.textarea_1 .bottom-line {
  height: 1px;
  width: 0;
  background-color: #97c1c0;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.textarea_1 textarea:focus + .bottom-line {
  width: 100%;
}

/*input 1*/
.input_1 {
  height: 50px;
  width: 100%;
  border: solid 1px rgba(0, 0, 0, 0.1);
  position: relative;
}
.input_1 input {
  height: 100%;
  width: 100%;
  border: 0;
  padding: 0 20px;
  background: transparent;
  z-index: 1;
  position: relative;
}
.input_1 .bottom-line {
  height: 1px;
  width: 0;
  background-color: #97c1c0;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.input_1 input:focus + .bottom-line {
  width: 100%;
}

/* Responsive inputs */
@media (max-width: 768px) {
  .textarea_1 {
    height: 150px;
  }
  .textarea_1 textarea,
  .input_1 input {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .textarea_1 {
    height: 120px;
  }
  .textarea_1 textarea,
  .input_1 input {
    padding: 12px;
    font-size: 13px;
  }
}

/* ##### 06 : BENEFITS STYLES  ##### */
.benefits {
  width: 100%;
  float: left;
}
.benefits .benefits_left {
  width: 100%;
  height: 500px;
  background: url("../img/benefits.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}
.benefits .benefits_right {
  padding: 100px 50px;
}
.benefits .benefits_right .section-title {
  text-align: left;
  width: 100%;
  margin: 0 0 50px;
}
.benefits .benefits_right .section-title span:after {
  left: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

/* Responsive benefits */
@media (max-width: 991px) {
  .benefits .benefits_left {
    height: 300px;
  }
  .benefits .benefits_right {
    padding: 50px 30px;
  }
  .benefits .benefits_right .section-title {
    text-align: center;
  }
  .benefits .benefits_right .section-title span:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .benefits .benefits_left {
    height: 250px;
  }
  .benefits .benefits_right {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .benefits .benefits_left {
    height: 200px;
  }
  .benefits .benefits_right {
    padding: 30px 15px;
  }
  .benefits .benefits_right .section-title {
    margin: 0 0 30px;
  }
}

/* ##### 07 : PRICING PLANS STYLES  ##### */
.pricing_plans .pricing_plan {
  text-align: center;
  padding: 50px 20px;
  background-color: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.pricing_plans .pricing_plan:hover {
  -webkit-transform: scale(1.01);
  -ms-transform: scale(1.01);
  transform: scale(1.01);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.pricing_plans .pricing_plan .plan_title {
  font-size: 18px;
  margin-bottom: 30px;
}
.pricing_plans .pricing_plan .plan_price {
  font-size: 48px;
  margin-bottom: 30px;
}
.pricing_plans .pricing_plan .plan_price span {
  font-size: 14px;
}
.pricing_plans .pricing_plan .plan_benefits {
  margin-bottom: 30px;
}
.pricing_plans .pricing_plan .plan_benefits li {
  list-style: none;
  margin-bottom: 10px;
}
.pricing_plans .pricing_plan .plan_benefits li:last-child {
  margin-bottom: 0;
}

/* Responsive pricing plans */
@media (max-width: 991px) {
  .pricing_plans .pricing_plan {
    margin-bottom: 30px;
    padding: 40px 15px;
  }
  .pricing_plans .pricing_plan .plan_price {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .pricing_plans .pricing_plan {
    padding: 35px 10px;
    margin-bottom: 20px;
  }
  .pricing_plans .pricing_plan .plan_title {
    font-size: 16px;
  }
  .pricing_plans .pricing_plan .plan_price {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .pricing_plans .pricing_plan {
    padding: 30px 5px;
    margin-bottom: 15px;
  }
  .pricing_plans .pricing_plan .plan_title {
    font-size: 15px;
  }
  .pricing_plans .pricing_plan .plan_price {
    font-size: 28px;
  }
}

/* ##### 08 : TEAM STYLES  ##### */
.team .team_member {
  text-align: center;
}
.team .team_member .member_avatar {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.team .team_member .member_avatar .member_avatar_hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.team .team_member .member_avatar .member_avatar_hover ul.social-icons {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.team .team_member .member_avatar .member_avatar_hover ul.social-icons li {
  float: left;
  margin: 0 5px;
}
.team .team_member .member_avatar .member_avatar_hover ul.social-icons li a {
  color: #60606e;
  font-size: 18px;
}
.team .team_member .member_avatar:hover .member_avatar_hover {
  opacity: 1;
}
.team .team_member .member_name {
  font-size: 18px;
  margin-bottom: 10px;
}
.team .team_member .member_job {
  font-size: 14px;
  color: #999999;
}

/* Responsive team */
@media (max-width: 991px) {
  .team .team_member {
    margin-bottom: 50px;
  }
  .team .team_member .member_avatar {
    max-width: 250px;
    margin: 0 auto 20px;
  }
}

@media (max-width: 768px) {
  .team .team_member {
    margin-bottom: 40px;
  }
  .team .team_member .member_avatar {
    max-width: 200px;
  }
  .team .team_member .member_name {
    font-size: 16px;
  }
  .team .team_member .member_job {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .team .team_member {
    margin-bottom: 30px;
  }
  .team .team_member .member_avatar {
    max-width: 180px;
  }
  .team .team_member .member_name {
    font-size: 15px;
  }
  .team .team_member .member_job {
    font-size: 12px;
  }
}

/* ##### 09 : TESTIMONIALS STYLES  ##### */
.testimonials {
  width: 100%;
  float: left;
}
.testimonials .testimonials_left {
  padding: 100px 50px;
}
.testimonials .testimonials_left .section-title {
  text-align: left;
  width: 100%;
  margin: 0 0 50px;
}
.testimonials .testimonials_left .section-title span:after {
  left: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.testimonials .testimonials_right {
  width: 100%;
  height: 500px;
  background: url("../img/testimonials.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}

/* Responsive testimonials */
@media (max-width: 991px) {
  .testimonials .testimonials_left {
    padding: 50px 30px;
  }
  .testimonials .testimonials_left .section-title {
    text-align: center;
  }
  .testimonials .testimonials_left .section-title span:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .testimonials .testimonials_right {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .testimonials .testimonials_left {
    padding: 40px 20px;
  }
  .testimonials .testimonials_right {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .testimonials .testimonials_left {
    padding: 30px 15px;
  }
  .testimonials .testimonials_right {
    height: 200px;
  }
}

/* ##### 10 : CLIENTS STYLES  ##### */
.clients .client {
  text-align: center;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.clients .client:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

/* Responsive clients */
@media (max-width: 768px) {
  .clients .client {
    margin-bottom: 30px;
  }
  .clients .client img {
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .clients .client {
    margin-bottom: 20px;
  }
  .clients .client img {
    max-width: 120px;
  }
}

/* ##### 11 : BLOG STYLES  ##### */
.blog .blog_post {
  float: left;
  width: 100%;
  margin-bottom: 50px;
}
.blog .blog_post .post_image {
  position: relative;
  overflow: hidden;
}
.blog .blog_post .post_image .post_image_hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.blog .blog_post .post_image .post_image_hover a {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border: solid 1px #60606e;
  color: #60606e;
}
.blog .blog_post .post_image:hover .post_image_hover {
  opacity: 1;
}
.blog .blog_post .post_title {
  font-size: 18px;
  margin: 30px 0 20px;
}
.blog .blog_post .post_title a {
  color: #60606e;
}
.blog .blog_post .post_title a:hover {
  color: #97c1c0;
}
.blog .blog_post .post_info {
  font-size: 12px;
  color: #999999;
  margin-bottom: 20px;
}
.blog .blog_post .post_info span {
  margin-right: 20px;
}
.blog .blog_post .post_info span:last-child {
  margin-right: 0;
}
.blog .blog_post .post_content p {
  margin-bottom: 20px;
}

/* Responsive blog */
@media (max-width: 991px) {
  .blog .blog_post {
    margin-bottom: 40px;
  }
  .blog .blog_post .post_title {
    font-size: 16px;
    margin: 20px 0 15px;
  }
  .blog .blog_post .post_info {
    font-size: 11px;
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .blog .blog_post {
    margin-bottom: 30px;
  }
  .blog .blog_post .post_title {
    font-size: 15px;
  }
  .blog .blog_post .post_content p {
    font-size: 13px;
    line-height: 24px;
  }
}

@media (max-width: 480px) {
  .blog .blog_post {
    margin-bottom: 25px;
  }
  .blog .blog_post .post_title {
    font-size: 14px;
    margin: 15px 0 10px;
  }
  .blog .blog_post .post_info {
    font-size: 10px;
    margin-bottom: 12px;
  }
  .blog .blog_post .post_content p {
    font-size: 12px;
    line-height: 22px;
  }
}

/*single post*/
.post_single .post_title {
  font-size: 30px;
  margin-bottom: 30px;
}
.post_single .post_info {
  font-size: 12px;
  color: #999999;
  margin-bottom: 30px;
}
.post_single .post_info span {
  margin-right: 20px;
}
.post_single .post_info span:last-child {
  margin-right: 0;
}
.post_single .post_content p {
  margin-bottom: 30px;
}
.post_single .post_content blockquote {
  margin: 50px 0;
}

/* Responsive single post */
@media (max-width: 991px) {
  .post_single .post_title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .post_single .post_info {
    margin-bottom: 20px;
  }
  .post_single .post_content p {
    margin-bottom: 20px;
  }
  .post_single .post_content blockquote {
    margin: 30px 0;
  }
}

@media (max-width: 768px) {
  .post_single .post_title {
    font-size: 20px;
  }
  .post_single .post_info {
    font-size: 11px;
  }
  .post_single .post_content p {
    font-size: 13px;
    line-height: 24px;
  }
}

@media (max-width: 480px) {
  .post_single .post_title {
    font-size: 18px;
  }
  .post_single .post_info {
    font-size: 10px;
  }
  .post_single .post_content p {
    font-size: 12px;
    line-height: 22px;
  }
  .post_single .post_content blockquote {
    margin: 20px 0;
  }
}

/*comments*/
.comments {
  float: left;
  width: 100%;
}
.comments .comment {
  float: left;
  width: 100%;
  margin-bottom: 50px;
}
.comments .comment .comment_avatar {
  float: left;
  width: 100px;
  height: 100px;
  margin-right: 30px;
}
.comments .comment .comment_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comments .comment .comment_content {
  float: left;
  width: -webkit-calc(100% - 130px);
  width: calc(100% - 130px);
}
.comments .comment .comment_content .comment_author {
  font-size: 18px;
  margin-bottom: 10px;
}
.comments .comment .comment_content .comment_author a {
  color: #60606e;
}
.comments .comment .comment_content .comment_author a:hover {
  color: #97c1c0;
}
.comments .comment .comment_content .comment_date {
  font-size: 12px;
  color: #999999;
  margin-bottom: 20px;
}
.comments .comment .comment_content .comment_text p {
  margin-bottom: 20px;
}
.comments .comment .comment_content .comment_reply {
  font-size: 12px;
  color: #999999;
}
.comments .comment .comment_content .comment_reply a {
  color: #999999;
}
.comments .comment .comment_content .comment_reply a:hover {
  color: #97c1c0;
}

/* Responsive comments */
@media (max-width: 991px) {
  .comments .comment {
    margin-bottom: 40px;
  }
  .comments .comment .comment_avatar {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }
  .comments .comment .comment_content {
    width: -webkit-calc(100% - 100px);
    width: calc(100% - 100px);
  }
  .comments .comment .comment_content .comment_author {
    font-size: 16px;
  }
  .comments .comment .comment_content .comment_date {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .comments .comment {
    margin-bottom: 30px;
  }
  .comments .comment .comment_avatar {
    width: 60px;
    height: 60px;
    margin-right: 15px;
  }
  .comments .comment .comment_content {
    width: -webkit-calc(100% - 75px);
    width: calc(100% - 75px);
  }
  .comments .comment .comment_content .comment_author {
    font-size: 15px;
  }
  .comments .comment .comment_content .comment_text p {
    font-size: 13px;
    line-height: 24px;
  }
}

@media (max-width: 480px) {
  .comments .comment {
    margin-bottom: 25px;
  }
  .comments .comment .comment_avatar {
    width: 50px;
    height: 50px;
    margin-right: 10px;
  }
  .comments .comment .comment_content {
    width: -webkit-calc(100% - 60px);
    width: calc(100% - 60px);
  }
  .comments .comment .comment_content .comment_author {
    font-size: 14px;
  }
  .comments .comment .comment_content .comment_date {
    font-size: 10px;
  }
  .comments .comment .comment_content .comment_text p {
    font-size: 12px;
    line-height: 22px;
  }
}

/* Container responsive */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

@media (max-width: 991px) {
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
}

/* Grid system responsive */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  flex: 1;
  padding: 0 15px;
}

@media (max-width: 768px) {
  .row {
    margin: 0 -10px;
  }
  .col {
    padding: 0 10px;
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}
