/*
    Theme Name: Nori Personal Portfolio html Template.
    Author: glamourTheme
    Version: 1.0
    Description: Personal, Portfolio, Creative.
*/
/*
    Table of Context
    -------------------------------
    01. Common SCSS
    02. Content Box
    03. Icon Box
    04. Order, Unorder List
    05. Round One side 
    06. Video side 
    07. Overlap Image Box
    08. Image Box
    09. Icon list block
    
    01. Home-Page 01
    02. Home-Page 02
    03. About Page
    04. Service Page
    05. Portfolio Page
    06. Blog Page
    07. Blog-Single Page
    08.Blog-Grid Page
    09. Contact Page
    10. Header style
    11. Banner style
    12 . Block style
    13. About Section
    14. Resume Section
    15. Skill Section
    16. Service Section
    17. Portfolio Section
    18 Testimonial Section
    19. Blog Section
    20. Contact Section
    21. Footer
   
*/
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  background: #111;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 400;
  overflow-x: hidden;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #111;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #00D26A;
  border-radius: 30px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #00D26A;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Oswald";
  color: #fff;
  margin-bottom: 0;
}

h1 {
  font-size: 80px;
  font-weight: 700;
}

h2 {
  font-size: 40px;
  font-weight: 700;
}

h3 {
  font-size: 35px;
  font-weight: 700;
}

h4 {
  font-size: 28px;
  font-weight: 700;
}

h5 {
  font-size: 18px;
  font-weight: 400;
}

.bg-color {
  background: #16161d;
}

p {
  font-family: "Roboto";
  color: #999;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

ul,
li {
  list-style: none;
  text-decoration: none;
  margin-bottom: 0;
}

a {
  color: #fff;
  text-decoration: none !important;
}

section {
  padding: 90px 0px;
}

.pb-150 {
  padding-bottom: 100px !important;
}

@media (max-width: 1366px) {
  .pb-150 {
    padding-bottom: 80px !important;
  }
}

@media (max-width: 575px) {
  .pb-150 {
    padding-bottom: 50px !important;
  }
}

@media (max-width: 479px) {
  .pb-150 {
    padding-bottom: 30px !important;
  }
}

img {
  width: 100%;
  height: auto;
  display: block;
}

span {
  color: #00D26A;
}

@media (max-width: 991px) {
  h1 {
    font-size: 70px;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 40px;
  }
  section {
    padding: 50px 0px !important;
  }
  h2 {
    font-size: 35px;
  }
  h3 {
    font-size: 30px;
  }
  h4 {
    font-size: 20px;
  }
  br {
    display: none;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 35px;
  }
  h2 {
    font-size: 25px;
  }
  h3 {
    font-size: 20px !important;
  }
  h5 {
    font-size: 18px !important;
  }
  h6 {
    font-size: 14px;
  }
  section {
    padding: 40px 0px !important;
  }
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #030303;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.preloader.slide-up {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  -webkit-transition: 1s;
  transition: 1s;
}

.preloader::after {
  content: "Loading";
  font-size: 100px;
  text-transform: uppercase;
  font-weight: 700;
  position: absolute;
  color: rgba(255, 255, 255, 0.03);
}

@media (max-width: 479px) {
  .preloader::after {
    font-size: 80px;
  }
}

@media (max-width: 375px) {
  .preloader::after {
    font-size: 65px;
  }
}

.preloader .counters {
  font-size: 120px;
  color: #fff;
  font-weight: 700;
}

@media (max-width: 479px) {
  .preloader .counters {
    font-size: 100px;
  }
}

@media (max-width: 375px) {
  .preloader .counters {
    font-size: 80px;
  }
}

.preloader .counters::after {
  content: "%";
  font-size: 50px;
}

.preloader .counters.hide {
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}

#cursor {
  position: absolute;
  width: 45px;
  height: 45px;
  background: #fff;
  top: 0;
  left: 0;
  border-radius: 50%;
  mix-blend-mode: difference;
  pointer-events: none;
  -webkit-transition: .1s;
  transition: .1s;
  z-index: 99999;
}

@media (max-width: 575px) {
  #cursor {
    height: 40px;
    width: 40px;
  }
}

@media (max-width: 479px) {
  #cursor {
    display: none;
  }
}

/* ==========================
    VIDEO START
 ============================ */
.round {
  position: relative;
  overflow: hidden;
}

.round:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.round .video-box {
  margin: 0;
}

.round .video-box .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #00D26A;
  border-radius: 50%;
  color: #1086ff;
  display: block;
  text-align: center;
  line-height: 85px;
  margin: 0 auto;
  height: 80px;
  width: 80px;
  z-index: 1;
}

.round .video-box .video-btn i {
  position: relative;
  z-index: 1;
  top: 0px;
  left: 0px;
  font-size: 20px;
  color: #fff;
}

.round .video-box .video-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-animation: beat 1.5s linear infinite;
          animation: beat 1.5s linear infinite;
  height: 100%;
  width: 100%;
  border: 2px solid #00D26A;
  border-radius: 50%;
  z-index: -1;
}

.round .video-box .video-btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-animation: beat 2.2s linear infinite;
          animation: beat 2.2s linear infinite;
  border: 2px solid #00D26A;
  border-radius: 50%;
  height: 100%;
  width: 100%;
}

.round .video-box span {
  display: none !important;
}

@-webkit-keyframes beat {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}

@keyframes beat {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}

@media (max-width: 480px) {
  .round .video-box .video-btn {
    height: 60px;
    width: 60px;
    line-height: 67px;
  }
}

.gs-btn {
  font-family: "Roboto";
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  display: inline-block;
  padding: 10px 30px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.gs-btn i {
  font-size: 14px;
  display: inline-block;
  margin-left: 8px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.gs-btn-primary {
  color: #fff;
  background: transparent;
  border-radius: 5px;
  border: 1px solid #00D26A;
}

.gs-btn-primary:hover {
  background: #00D26A;
  color: #fff;
}

.gs-btn-primary-filled {
  color: #fff;
  background: #00D26A;
  text-transform: uppercase;
  border-radius: 5px;
  border: 1px solid #00D26A;
}

.gs-btn-primary-filled:hover {
  color: #fff;
  background: transparent;
}

.header {
  padding: 15px 0;
  position: absolute;
  width: 100%;
  -webkit-transition: all .5s;
  transition: all .5s;
  z-index: 99;
}

.header .navbar {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header .navbar .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 30px;
}

@media (max-width: 375px) {
  .header .navbar .link {
    margin-right: 10px;
  }
}

.header .navbar .link img {
  width: auto;
  height: auto;
  display: block;
  margin-right: 10px;
}

@media (max-width: 375px) {
  .header .navbar .link img {
    width: 18px;
  }
}

.header .navbar .link a {
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

@media (max-width: 375px) {
  .header .navbar .link a {
    font-size: 14px;
  }
}

.header .navbar .link a:hover {
  color: #00D26A;
}

.header .navbar .navbar-right {
  z-index: 9999;
  top: 0;
  right: 0;
  z-index: 999;
}

.header .navbar .brand-logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  text-align: left !important;
  margin-left: -50px !important;
}

.header .navbar .brand-logo img {
  width: auto !important;
  max-width: 800px !important;
  max-height: 270px !important;
  margin-top: -80px !important;
  margin-bottom: -80px !important;
  margin-left: 0 !important;
}

@media (max-width: 1200px) {
  .header .navbar .brand-logo img {
    width: auto !important;
    max-width: 700px !important;
    max-height: 235px !important;
    margin-top: -70px !important;
    margin-bottom: -70px !important;
  }
}

@media (max-width: 768px) {
  .header .navbar .brand-logo {
    margin-left: -30px !important;
  }
  .header .navbar .brand-logo img {
    width: auto !important;
    max-width: 550px !important;
    max-height: 185px !important;
    margin-top: -55px !important;
    margin-bottom: -55px !important;
  }
}

@media (max-width: 480px) {
  .header .navbar {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    position: relative !important;
  }
  .header .navbar .brand-logo {
    margin-left: -60px !important;
    flex: 0 0 auto !important;
    order: 1 !important;
  }
  .header .navbar .brand-logo img {
    width: auto !important;
    max-width: 470px !important;
    max-height: 155px !important;
    margin-top: -47px !important;
    margin-bottom: -47px !important;
  }
  .header .navbar .link {
    position: absolute !important;
    right: 10px !important;
    top: 10px !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .header .navbar .link a {
    padding: 0 !important;
    margin: 0 !important;
  }
  .header .navbar .navbar-right {
    position: absolute !important;
    right: 0 !important;
    top: 45px !important;
  }
}

#menuTaggler {
  cursor: pointer;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: relative;
  -webkit-transition: all .5s;
  transition: all .5s;
  display: block;
  z-index: 99;
}

#menuTaggler .bar {
  width: 50%;
  height: 3px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #fff;
}

#menuTaggler .bar:before, #menuTaggler .bar:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background: #fff;
  top: -10px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#menuTaggler .bar:after {
  top: auto;
  bottom: -10px;
}

#menuTaggler .bar.close {
  background: transparent;
}

#menuTaggler .bar.close:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 48%;
}

#menuTaggler .bar.close:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 48%;
}

#menuTaggler img {
  max-width: 106px;
  display: inline-block;
}

@media (max-width: 480px) {
  #menuTaggler {
    height: 40px;
    width: 40px;
  }
  #menuTaggler .bar {
    height: 2px;
  }
  #menuTaggler .bar:before {
    top: -7px;
  }
  #menuTaggler .bar:after {
    bottom: -7px;
  }
}

.sticky {
  background: #16161d;
  padding: 10px 0px;
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  -webkit-animation: sticky 0.5s;
          animation: sticky 0.5s;
  -webkit-box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.5);
}

@-webkit-keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

.overlay-slide {
  position: fixed;
  background: #16161d;
  top: 0;
  left: -350px;
  width: 350px;
  z-index: 9999;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  overflow: hidden;
}

@media (max-width: 479px) {
  .overlay-slide {
    width: 310px;
  }
}

.overlay-slide.open {
  opacity: 1;
  visibility: visible;
  left: 0;
  z-index: 9999;
}

.overlay-slide.open li {
  -webkit-animation: fadeInRight .5s ease forwards;
          animation: fadeInRight .5s ease forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.overlay-slide.open li:nth-of-type(1) {
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}

.overlay-slide.open li:nth-of-type(2) {
  -webkit-animation-delay: .44s;
          animation-delay: .44s;
}

.overlay-slide.open li:nth-of-type(3) {
  -webkit-animation-delay: .45s;
          animation-delay: .45s;
}

.overlay-slide.open li:nth-of-type(4) {
  -webkit-animation-delay: .46s;
          animation-delay: .46s;
}

.overlay-slide.open li:nth-of-type(5) {
  -webkit-animation-delay: .47s;
          animation-delay: .47s;
}

.overlay-slide.open li:nth-of-type(6) {
  -webkit-animation-delay: .48s;
          animation-delay: .48s;
}

.overlay-slide.open li:nth-of-type(7) {
  -webkit-animation-delay: .49s;
          animation-delay: .49s;
}

.overlay-slide.open li:nth-of-type(8) {
  -webkit-animation-delay: .50s;
          animation-delay: .50s;
}

.overlay-slide nav {
  position: relative;
  height: 100%;
  padding: 25px;
  text-align: left;
}

.overlay-slide nav .main-nav {
  list-style: none;
  padding: 30px 0px 0px;
  margin-top: 20px;
  display: inline-block;
  position: relative;
  height: 90%;
  width: 100%;
  line-height: 1;
}

.overlay-slide nav .main-nav li {
  display: block;
  position: relative;
  opacity: 0;
}

.overlay-slide nav .main-nav li a {
  font-family: "Oswald";
  font-size: 22px;
  font-weight: 400;
  display: block;
  padding-bottom: 50px;
  padding-left: 30px;
  position: relative;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  text-transform: capitalize;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

@media (max-width: 1366px) {
  .overlay-slide nav .main-nav li a {
    font-size: 19px;
    padding-bottom: 35px;
  }
}

@media (max-width: 575px) {
  .overlay-slide nav .main-nav li a {
    padding-left: 20px;
  }
}

.overlay-slide nav .main-nav li a::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  height: 10px;
  width: 10px;
  border: 2px solid #00D26A;
  border-radius: 50px;
}

@media (max-width: 1366px) {
  .overlay-slide nav .main-nav li a::before {
    top: 5px;
  }
}

@media (max-width: 575px) {
  .overlay-slide nav .main-nav li a::before {
    top: 3px;
  }
}

.overlay-slide nav .main-nav li a:hover:before {
  background: #00D26A;
}

.overlay-slide nav .main-nav li a:hover {
  color: #00D26A;
}

.overlay-slide nav .main-nav li a:hover:before:focus {
  display: none;
}

@media (max-width: 575px) {
  .overlay-slide nav .main-nav li a {
    font-size: 16px;
    padding-top: 0;
  }
}

@media (max-width: 479px) {
  .overlay-slide nav .main-nav li a {
    padding-bottom: 40px;
  }
}

.overlay-slide nav .main-nav .sub-item {
  margin-left: 30px;
}

.overlay-slide .logo {
  position: relative;
}

.overlay-slide .logo img {
  width: auto;
  display: inline-block;
}

@media (max-width: 480px) {
  .overlay-slide .logo img {
    width: 80px;
  }
}

.overlay-slide .logo .close-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 35px;
  width: 35px;
  border: 1px solid #999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.overlay-slide .logo .close-btn a {
  font-size: 20px;
}

.overlay-slide .logo .close-btn a:hover {
  color: #fff;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    right: 100%;
  }
  100% {
    opacity: 1;
    right: 0;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    right: 100%;
  }
  100% {
    opacity: 1;
    right: 0;
  }
}

nav ul li a .fa {
  width: 16px;
  text-align: center;
  margin-right: 20px;
  float: right;
}

.mCSB_inside > .mCSB_container {
  margin-right: 0 !important;
}

.banner-section {
  height: 100%;
}

.banner-section.v2 .single-image {
  background-attachment: fixed;
}

.single-image {
  position: relative;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 80px;
}

.single-image::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {
  .single-image {
    padding-top: 0;
  }
}

.banner-social {
  position: absolute;
  right: -50px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.banner-social a {
  font-size: 14px;
  padding-left: 10px;
  display: inline-block;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.banner-social a:hover {
  color: #00D26A;
}

.banner-social::after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: -50px;
  height: 2px;
  width: 50px;
  background-color: #00D26A;
}

.banner-social::before {
  content: "";
  position: absolute;
  top: 8px;
  right: -60px;
  height: 2px;
  width: 50px;
  background-color: #00D26A;
}

.hero-content .image img {
  width: 220px;
  height: 220px;
  display: block;
  border-radius: 50%;
  margin: 0 auto;
  border: 5px solid #00D26A;
}

@media (max-width: 575px) {
  .hero-content .image img {
    width: 150px;
    height: 150px;
  }
}

.hero-content .content h5 {
  color: #fff;
  letter-spacing: 2px;
  padding-left: 20px;
  padding-top: 15px;
  position: relative;
  z-index: 1;
}

.hero-content .content h5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 40px;
  background: #00D26A;
  border-radius: 50px;
  z-index: -1;
}

.hero-content .content h1 {
  color: #fff;
  letter-spacing: 2px;
  padding-top: 20px;
  padding-bottom: 15px;
  text-transform: uppercase;
}

.hero-content .content h4 {
  color: #fff;
  letter-spacing: 2px;
  padding-bottom: 30px;
}

.hero-content p {
  color: #fff;
  max-width: 500px;
  margin-bottom: 20px;
}

.banner-image img {
  height: auto;
  width: 100%;
  max-width: 500px;
  display: block;
  border-radius: 50%;
  border: 10px solid #00D26A;
}

@media (max-width: 767px) {
  .banner-image {
    display: none;
  }
}

.about-section {
  padding: 120px 0px;
  overflow: hidden;
}

.about-section.v2 {
  padding: 90px 0px;
}

.about-image {
  position: relative;
  margin-right: 40px;
  width: 320px;
  margin: auto;
  position: relative;
}

.about-image::before {
  content: "";
  position: absolute;
  left: -30px;
  width: 380px;
  height: 380px;
  top: 20px;
  border: 10px solid #ddd;
  -webkit-transform: rotate(136deg);
          transform: rotate(136deg);
  z-index: 1;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

@media (max-width: 575px) {
  .about-image::before {
    width: 280px;
    height: 280px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(136deg);
            transform: translate(-50%, -50%) rotate(136deg);
  }
}

.about-image::after {
  content: "";
  position: absolute;
  left: -30px;
  width: 380px;
  height: 380px;
  top: 21px;
  border: 10px solid #555;
  -webkit-transform: rotate(-91deg);
          transform: rotate(-91deg);
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  z-index: 2;
}

@media (max-width: 575px) {
  .about-image::after {
    width: 280px;
    height: 280px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-91deg);
            transform: translate(-50%, -50%) rotate(-91deg);
  }
}

.about-image:hover::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media (max-width: 575px) {
  .about-image:hover::before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
}

.about-image:hover::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

@media (max-width: 575px) {
  .about-image:hover::after {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
}

.about-image img {
  position: relative;
}

@media (max-width: 375px) {
  .about-image {
    width: auto;
  }
}

.about-image.v2 {
  width: 350px;
}

.about-image.v2::before, .about-image.v2::after {
  display: none;
}

.about-image.v2 img {
  position: relative;
  z-index: 1;
}

.about-image.v2 .inner-border {
  position: absolute;
  top: 25px;
  bottom: -25px;
  left: 25px;
  right: -25px;
  border: 10px solid #00D26A;
}

@media (max-width: 480px) {
  .about-image.v2 .inner-border {
    display: none;
  }
}

@media (max-width: 575px) {
  .about-image.v2 {
    margin-bottom: 30px;
  }
}

.about-content h4 {
  margin-bottom: 15px;
  line-height: 40px;
}

@media (max-width: 480px) {
  .about-content h4 {
    line-height: 30px;
  }
}

.about-content p {
  margin-bottom: 20px;
  display: block;
}

@media (max-width: 767px) {
  .about-content p {
    margin-bottom: 10px;
  }
}

@media (max-width: 991px) {
  .about-content {
    margin-top: 80px;
  }
}

@media (max-width: 575px) {
  .about-content {
    margin-top: 30px;
  }
}

@media (max-width: 479px) {
  .about-content {
    margin-top: 0px;
  }
}

.single-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 5px 0px;
}

.single-info h5 {
  font-size: 16px;
  font-family: "Roboto";
  margin-right: 10px;
}

.single-info a {
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 400;
  color: #999;
  display: block;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.single-info a:hover {
  color: #00D26A;
}

.about-btn {
  padding-top: 20px;
}

/* ==========================
   COUNTER START     
============================ */
.counter-section {
  padding-bottom: 85px;
  padding-top: 75px;
}

@media (max-width: 991px) {
  .counter-section {
    padding-top: 0;
    padding-bottom: 50px;
  }
}

@media (max-width: 991px) {
  .counter-section.v2 {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

.icon-box-item {
  background: #111;
  padding: 40px 30px;
  border-radius: 5px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.icon-box-item.v2 {
  background: #16161d;
}

.icon-box-item span {
  font-family: "Roboto";
  color: #fff;
  font-weight: 500;
  font-size: 33px;
  margin-top: 5px;
  display: block;
  position: relative;
  padding-bottom: 5px;
}

.icon-box-item i {
  font-size: 20px;
  color: #fff;
  height: 65px;
  width: 65px;
  background: #00D26A;
  display: inline-block;
  line-height: 65px;
  border-radius: 50px;
}

.icon-box-item h5 {
  font-family: "Roboto";
  font-weight: 400;
  color: #fff;
  font-size: 18px;
  text-transform: capitalize;
}

@media (max-width: 991px) {
  .icon-box-item {
    margin-bottom: 30px;
  }
}

.icon-box-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

/* ==========================
   COUNTER END     
============================*/
.icon-box {
  position: relative;
  padding: 45px 30px;
  background: #16161d;
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 30px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.icon-box .icon {
  position: relative;
  margin-bottom: 30px;
  height: 80px;
  width: 80px;
  border-radius: 50px;
  display: inline-block;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  position: relative;
}

.icon-box .icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 80px;
  width: 80px;
  border: 2px dashed #00D26A;
  border-radius: 50%;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.icon-box .icon i {
  font-size: 30px;
  color: #999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 80px;
  width: 80px;
  text-align: center;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.icon-box h4 a {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 15px;
  display: block;
  text-transform: uppercase;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.icon-box:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.icon-box:hover .icon::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.icon-box.v2 {
  padding: 0px 30px 45px;
  overflow: visible;
  margin-top: 50px;
}

.icon-box.v2 .icon {
  margin-top: -60px;
}

.icon-box.v2 .service-btn {
  margin-top: 20px;
}

@media (max-width: 575px) {
  .icon-box.v2 {
    margin-top: 40px;
  }
}

.icon-box.v3 {
  background: #111;
}

.icon-box.v3 .icon {
  background: #00D26A;
}

.icon-box.v3 .icon i {
  color: #fff;
}

.icon-box.v3 .icon::after {
  display: none;
}

.resume-title {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .resume-title {
    margin-bottom: 20px;
  }
  .resume-title.v2 {
    margin-top: 30px;
  }
  .resume-title h4 {
    font-size: 25px;
  }
}

.timeline ul li {
  background: transparent;
  position: relative;
  width: 2px;
  padding-bottom: 40px;
  list-style-type: none;
}

.timeline ul li:last-child {
  padding-bottom: 7px;
}

.timeline ul li::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2px;
  height: 100%;
  border: 1px solid #eee;
  z-index: -1;
}

@media (max-width: 767px) {
  .timeline ul li::after {
    left: 0;
  }
}

@media (max-width: 575px) {
  .timeline ul li::after {
    display: none;
  }
}

.timeline ul li::before {
  content: '';
  background: #999;
  position: absolute;
  left: 50%;
  top: 40%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border: 5px solid #eee;
  border-radius: 50%;
  z-index: 1;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

@media (max-width: 767px) {
  .timeline ul li::before {
    left: 0;
  }
}

.timeline ul li .content {
  background-color: #16161d;
  position: relative;
  top: 7px;
  left: 0px;
  width: 500px;
  padding: 30px;
}

.timeline ul li .content h4 {
  font-size: 20px;
  padding-bottom: 10px;
}

.timeline ul li .content .education {
  background: #00D26A;
  color: #fff;
  display: inline-block;
  padding: 0px 20px;
  border-radius: 5px;
  margin: 10px 0px;
}

.timeline ul li .content.hidden {
  opacity: 0;
}

@media (max-width: 1200px) {
  .timeline ul li .content {
    width: 400px;
  }
}

@media (max-width: 991px) {
  .timeline ul li .content {
    width: 350px;
  }
}

@media (max-width: 767px) {
  .timeline ul li .content {
    width: 100%;
    left: 0;
  }
}

@media (max-width: 767px) {
  .timeline ul li {
    margin-left: 0px;
    width: 100%;
    background: transparent;
  }
}

.timeline ul li:hover::before {
  background: #00D26A;
}

.wrapper {
  border-radius: 5px;
  margin-bottom: 30px;
}

.wrapper .barfiller {
  margin-bottom: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #e9ecef;
  border-radius: 10px;
  height: 10px;
  border: none;
}

.wrapper .barfiller .tip {
  background: #00D26A;
  color: #fff;
  margin-top: -35px;
}

.wrapper .barfiller .tip::after {
  border-color: #00D26A transparent;
}

.wrapper .barfiller .fill {
  background: #00D26A !important;
  border-radius: 10px;
}

.wrapper h5 {
  font-family: "Roboto";
  font-size: 16px;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.portfolio-box {
  position: relative;
  cursor: pointer;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}

.portfolio-box img {
  border-radius: 10px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  -webkit-transform: scale(1);
          transform: scale(1);
  overflow: hidden;
}

.portfolio-box .overlay {
  position: absolute;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  height: 100%;
  width: 100%;
  color: #fff;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.portfolio-box .overlay .icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  height: 50px;
  width: 50px;
  border: 1px solid #efefef;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
}

.portfolio-box .overlay .icon i {
  font-size: 20px;
}

.portfolio-box .overlay .content {
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -45%);
          transform: translate(-50%, -45%);
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.portfolio-box .overlay .content h5 {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}

.portfolio-box .overlay .content p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  margin-top: 10px;
}

.portfolio-box:hover .overlay {
  border-radius: 10px;
  opacity: 1;
  visibility: visible;
}

.portfolio-box:hover .overlay .content {
  -webkit-transform: translate(-50%, -15%);
          transform: translate(-50%, -15%);
}

.portfolio-box:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  border-radius: 10px;
}

.filter-menu {
  margin-bottom: 30px;
  display: inline-block;
}

.filter-menu .bttn {
  font-family: "Roboto";
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  text-transform: capitalize;
  padding: 6px 0px;
  background: transparent;
  text-align: center;
  display: inline-block;
  border: none;
  border-radius: 5px;
  outline: none;
  margin: 0px 10px;
  cursor: pointer;
  position: relative;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.filter-menu .bttn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #00D26A;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.filter-menu .bttn.mixitup-control-active, .filter-menu .bttn:hover {
  color: #00D26A;
}

.filter-menu .bttn.mixitup-control-active::before, .filter-menu .bttn:hover::before {
  width: 100%;
}

@media (max-width: 480px) {
  .filter-menu {
    display: block;
  }
}

/* ==========================
   TESTIMONIAL SECTION START 
============================*/
.owl-carousel .owl-item img {
  width: 100px;
  height: 100px;
  margin: auto;
  display: block;
  border-radius: 50%;
}

.owl-carousel .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.owl-carousel .owl-dots .owl-dot {
  height: 8px;
  width: 20px;
  background: #1e1d2b;
  border-radius: 3px;
  display: block;
  border: none;
  outline: none;
  margin: 50px 5px 0px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.owl-carousel .owl-dots .owl-dot.active {
  width: 30px;
  background: #00D26A;
}

@media (max-width: 375px) {
  .owl-carousel .owl-dots .owl-dot {
    margin: 30px 5px 30px 5px;
  }
}

.owl-carousel .owl-nav {
  position: absolute;
  top: -60px;
  width: 100%;
  text-align: center;
  display: block;
  font-size: 18px;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

@media (max-width: 479px) {
  .owl-carousel .owl-nav {
    top: -45px;
  }
}

.owl-carousel .owl-nav i {
  font-size: 14px;
}

@media (max-width: 479px) {
  .owl-carousel .owl-nav i {
    font-size: 11px;
  }
}

.owl-carousel .owl-nav button {
  height: 45px;
  width: 45px;
  color: #fff !important;
  border-radius: 50%;
  background: #00D26A !important;
  outline: none;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.owl-carousel .owl-nav button:hover {
  background: #1e1d2b !important;
  color: #fff;
  border-color: #00D26A;
}

.owl-carousel .owl-nav button.owl-prev {
  margin-right: 10px;
}

@media (max-width: 479px) {
  .owl-carousel .owl-nav button {
    height: 35px;
    width: 35px;
  }
}

#testimonial-slider .owl-nav {
  display: none;
  text-align: right;
}

.testimonial-item {
  background: #16161d;
  text-align: center;
  padding: 60px 30px;
}

@media (max-width: 575px) {
  .testimonial-item {
    padding: 60px 10px;
  }
}

.testimonial-item.v2 {
  background: #111;
}

.testimonial-item .description {
  font-size: 18px;
  color: #999;
  border-radius: 5px;
  line-height: 30px;
  text-align: center;
  max-width: 750px;
  margin: 0 auto 30px;
  position: relative;
}

@media (max-width: 575px) {
  .testimonial-item .description {
    font-size: 16px;
  }
}

.testimonial-item .pic {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.testimonial-item .pic img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.testimonial-item .admin {
  margin-left: 10px;
  text-align: center;
  padding-top: 10px;
}

.testimonial-item .admin h3 {
  display: block;
  font-size: 22px;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 5px;
  text-transform: capitalize;
}

.testimonial-item .admin span {
  font-size: 16px;
  color: #999;
  text-align: left;
}

/* ==========================
   TESTIMONIAL SECTION END 
============================*/
/* ==========================
     PAGE BANNER START
============================*/
.page-banner {
  background: url("../image/page-banner/banner.jpg");
  position: relative;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: center;
  padding: 185px 0px 140px 0px;
}

.page-banner .page-banner-title {
  color: #fff;
}

.page-banner .page-banner-title h2 {
  font-size: 50px;
  color: #fff;
  padding-bottom: 15px;
  display: inline-block;
  text-transform: capitalize !important;
}

.page-banner .page-banner-title .link {
  font-family: "Roboto";
  font-size: 16px;
  color: #999;
  font-weight: 500;
  text-transform: capitalize;
}

.page-banner .page-banner-title .link a {
  color: #fff;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.page-banner .page-banner-title .link a:hover {
  color: #00D26A;
}

.page-banner .page-banner-title .link span {
  margin: 0px 3px;
}

.page-banner::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.4);
}

@media (max-width: 767px) {
  .page-banner {
    padding: 120px 0px 80px;
  }
  .page-banner .page-banner-title h2 {
    font-size: 35px;
  }
}

@media (max-width: 575px) {
  .page-banner .page-banner-title h1 {
    font-size: 50px;
  }
}

@media (max-width: 480px) {
  .page-banner {
    padding: 100px 0px 60px;
  }
  .page-banner .page-banner-title {
    text-align: center !important;
  }
  .page-banner .page-banner-title h1 {
    font-size: 35px;
  }
}

/* ==========================
     PAGE BANNER END
============================*/
/* ==========================
    BLOG PAGE START
============================*/
.page-side-bar .search-bars form {
  font-family: "Roboto";
  color: #999;
  font-size: 15px;
  font-weight: 400;
  position: relative;
  top: 0;
}

.page-side-bar .search-bars form .search {
  position: relative;
  background: transparent !important;
  color: #fff;
  border: none;
  padding: 18px 20px;
  width: 100%;
  border: 1px solid #111;
  margin-bottom: 30px;
}

.page-side-bar .search-bars form .search:focus {
  outline: none;
  background: transparent;
}

.page-side-bar .search-bars form button {
  position: absolute;
  top: 22px;
  font-weight: 700;
  right: 20px;
  color: #fff;
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
}

.page-side-bar .recent {
  padding: 40px 50px 15px 50px;
  background: #111;
  margin-bottom: 30px;
}

@media (max-width: 479px) {
  .page-side-bar .recent {
    padding: 30px  30px 0px;
  }
}

.page-side-bar .recent .post-title {
  padding-top: 0;
  padding-bottom: 25px;
}

@media (max-width: 479px) {
  .page-side-bar .recent .post-title {
    padding-top: 0;
  }
}

.page-side-bar .recent .post-content {
  padding-bottom: 30px;
}

.page-side-bar .recent .post-content img {
  width: auto;
  height: auto;
  display: block;
  cursor: pointer;
  border-radius: 50%;
  margin-right: 20px;
}

.page-side-bar .recent .post-content h6 a {
  font-family: "Roboto";
  font-size: 16px;
  color: #fff;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.page-side-bar .recent .post-content .date a {
  font-family: "Roboto";
  font-size: 14px;
  display: block;
  margin-top: 5px;
  font-weight: 400;
  color: #999;
}

.page-side-bar .recent .post-content:hover h6 a {
  color: #00D26A;
}

.page-side-bar .category {
  padding: 60px 50px;
  background: #111;
}

@media (max-width: 479px) {
  .page-side-bar .category {
    padding: 30px;
  }
}

.page-side-bar .category .post-title {
  padding-top: 0px;
  padding-bottom: 10px;
}

.page-side-bar .category .post-title h4 {
  color: #fff;
}

.page-side-bar .category .cata-content li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #111;
}

.page-side-bar .category .cata-content li a {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 16px;
  color: #999;
  padding: 15px 0px;
  display: block;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.page-side-bar .category .cata-content li a:hover {
  color: #00D26A;
  margin-left: 5px;
}

.page-side-bar .category .cata-content li a i {
  margin-right: 5px;
  font-size: 16px;
}

.page-side-bar .category .cata-content li span {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 16px;
  color: #999;
}

.page-side-bar .ads-pic img {
  display: block;
  width: auto;
  height: auto;
}

.page-side-bar .popular-tag {
  padding: 40px 50px;
  background: #111;
  margin-top: 30px;
}

@media (max-width: 479px) {
  .page-side-bar .popular-tag {
    padding: 30px;
  }
}

.page-side-bar .popular-tag .post-title {
  padding-top: 0px;
  padding-bottom: 25px;
}

.page-side-bar .popular-tag .link-up ul li {
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 15px;
}

.page-side-bar .popular-tag .link-up ul li a {
  background-color: #16161d;
  font-family: "Roboto";
  font-size: 14px;
  color: #999;
  font-weight: 400;
  padding: 8px 12px;
  border-radius: 5px;
  display: block;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.page-side-bar .popular-tag .link-up ul li a:hover {
  text-decoration: none;
  background: #00D26A;
  color: #fff;
}

.page-side-bar .news-form {
  padding-top: 15px;
}

.page-side-bar .news-form .post-title {
  padding-top: 20px;
  padding-bottom: 25px;
}

.page-side-bar .news-form .search-bar {
  display: none;
}

.page-side-bar .news-form .search-bar .search {
  font-family: "Roboto";
  color: #999;
  font-size: 15px;
  font-weight: 400;
  display: block;
  padding: 18px 20px;
  width: 100%;
  margin-bottom: 20px;
}

.page-side-bar .news-form .search-bar .search:focus {
  outline: none;
}

.page-side-bar h4 {
  font-size: 24px;
  font-weight: 400;
}

@media (max-width: 575px) {
  .page-side-bar h4 {
    font-size: 20px;
  }
}

/* ==========================
    BLOG PAGE END
============================*/
.avatar img {
  height: 100px;
  width: 100px;
  border-radius: 50px;
}

/* ==========================
    PAGINATION START
============================*/
.pagination {
  padding-top: 15px;
}

@media (max-width: 767px) {
  .pagination {
    padding-top: 40px;
  }
}

.pagination ul {
  margin-bottom: 0;
}

.pagination ul a {
  font-family: "Roboto";
  font-size: 16px;
  background: #111;
  color: #fff;
  font-weight: 500;
  height: 50px;
  width: 50px;
  line-height: 48px;
  margin: 30px 10px 0px 10px;
  display: inline-block;
  text-align: center;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

@media (max-width: 479px) {
  .pagination ul a {
    margin: 30px 5px 0px 5px;
  }
}

.pagination ul a i {
  font-size: 14px;
  height: 40px;
  width: 40px;
  line-height: 38px;
  color: #fff;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.pagination ul a i:hover {
  color: #fff;
}

.pagination ul a.active, .pagination ul a:hover {
  background: #00D26A;
  color: #fff;
}

/* ==========================
    BLOG SINGLE PAGE START
============================*/
.block-item-box.v2 .item-content {
  margin: 0;
  border-radius: 0;
}

.block-item-box.v2 .item-bg img {
  border-radius: 5px 5px 0px 0px;
}

.single-content {
  margin-bottom: 30px;
}

.single-content blockquote {
  background: #111;
  font-family: "Roboto";
  color: #999;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  font-style: italic;
  padding: 40px;
  border-left: 3px solid #00D26A;
}

@media (max-width: 575px) {
  .single-content blockquote {
    padding: 15px;
  }
}

.single-content blockquote i {
  font-style: 25px;
  color: #999;
  padding: 0px 10px;
}

.para-content {
  padding-top: 35px;
  padding-bottom: 10px;
}

.like-post p {
  margin-bottom: 0;
}

.like-post p i {
  padding-right: 10px;
  vertical-align: center;
}

.like-post .single-social-icon i {
  font-size: 14px;
  color: #999;
  padding-left: 20px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.like-post .single-social-icon i:hover {
  color: #00D26A;
}

.like-post {
  background: #111;
  padding: 15px;
  border-radius: 5px;
}

.change-btn {
  padding-top: 35px;
  padding-bottom: 17px;
}

.change-btn a {
  font-family: "Oswald";
  font-size: 16px;
  color: #1e1d2b;
  font-weight: 600;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.change-btn a img {
  width: auto;
  height: auto;
  display: block;
}

.change-btn .prev-post a i {
  position: relative;
  left: -35px;
  color: #fff;
  opacity: 0;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.change-btn .prev-post a:hover i {
  opacity: 1;
}

.change-btn .next-post a i {
  position: relative;
  left: 35px;
  color: #fff;
  opacity: 0;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.change-btn .next-post a:hover i {
  opacity: 1;
}

.owner {
  background: #111;
  margin-top: 40px;
  padding: 50px 30px;
}

.owner .owner-discription {
  padding-left: 20px;
}

.owner .owner-discription h5 a {
  color: #fff;
  display: inline-block;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  padding-bottom: 5px;
}

.owner .single-social-icon i {
  font-size: 14px;
  color: #999;
  padding-right: 20px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  padding-top: 10px;
}

.owner .single-social-icon i:hover {
  color: #00D26A;
}

.owner:hover h5 a {
  color: #00D26A;
}

.post-title {
  padding-top: 50px;
  padding-bottom: 20px;
}

.post-title h4 {
  font-size: 22px;
}

.comment-content {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 40px;
}

.comment-content .comment-discrip {
  padding-left: 30px;
}

.comment-content .comment-discrip h5 a {
  font-size: 18px;
  color: #fff;
  padding-right: 20px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  display: inline-block;
}

.comment-content .comment-discrip span {
  font-family: "Roboto";
  font-size: 16px;
  padding-left: 20px;
  color: #00D26A;
}

.comment-content .comment-discrip p {
  padding-top: 10px;
}

.comment-content .comment-discrip .comment-replay a {
  font-family: "Oswald";
  font-size: 12px;
  font-weight: 500;
  color: #999;
  padding: 5px 10px;
  margin-top: 5px;
  border: 1px solid #999;
  text-transform: uppercase;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  display: inline-block;
}

.comment-content .comment-discrip .comment-replay a i {
  padding-right: 5px;
}

.comment-content .comment-discrip .comment-replay a:hover {
  color: #00D26A;
}

.comment-content:hover h5 a {
  color: #00D26A;
}

.comment-content .replay {
  padding-left: 100px;
}

@media (max-width: 575px) {
  .comment-content .replay {
    padding-left: 0;
  }
}

.form-post-title {
  padding-top: 15px;
  padding-bottom: 10px;
}

.form-post-title h4 {
  padding-bottom: 10px;
}

.form-post-title p {
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .page-side-bar {
    padding-top: 30px;
  }
}

@media (max-width: 575px) {
  .blog-single-pic {
    padding-top: 30px;
  }
}

@media (max-width: 479px) {
  .owner {
    display: block !important;
  }
  .owner .owner-discription {
    padding-left: 0;
    padding-top: 20px;
  }
  .comment-content {
    display: block !important;
  }
  .comment-content .comment-discrip {
    padding-left: 0;
    padding-top: 20px;
  }
}

@media (max-width: 390px) {
  .like-post {
    display: block !important;
  }
  .like-post .single-social-icon {
    margin-top: 10px;
  }
}

/* ==========================
    BLOG SINGLE PAGE END
============================ */
.retated-item {
  padding-top: 90px;
}

/* PRICING START */
.pricing-card {
  border: 1px solid #111;
  border-radius: 3px;
  text-align: center;
  padding: 30px;
  -webkit-transition: .5s;
  transition: .5s;
  cursor: pointer;
}

.pricing-card .buisness-item {
  background: #111;
  padding: 35px 0px;
  border-radius: 3px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.pricing-card .buisness-item h4 {
  font-size: 22px;
  font-weight: 400;
  margin-top: 15px;
  display: block;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.pricing-card .buisness-item .icon img {
  width: 50px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.pricing-card:hover h4 {
  color: #fff;
}

.pricing-card .pricing-item {
  background-color: #111;
  margin-top: 20px;
  padding: 35px 0px 50px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.pricing-card .pricing-item h2 {
  font-size: 40px;
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.pricing-card .pricing-item ul li a {
  font-family: "Roboto";
  font-size: 15px;
  color: #999;
  font-weight: 400;
  display: block;
  padding: 6px;
  text-decoration: none;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.pricing-card .pricing-btn {
  margin-top: 30px;
}

.pricing-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.pricing-card:hover .gs-btn {
  background: #00D26A;
}

@media (max-width: 991px) {
  .pricing-card {
    margin-bottom: 30px;
  }
}

.pricing-card.v2 {
  border-color: #16161d;
}

.pricing-card.v2 .buisness-item {
  background: #16161d;
}

.pricing-card.v2 .pricing-item {
  background: #16161d;
}

/* PRICING END */
.cta-content h2 {
  text-transform: uppercase;
  line-height: 55px;
}

/* ==========================
    SUBSCRIBE SECTION START
============================ */
.subs-form-content .text-box {
  position: relative;
  margin-top: 40px;
}

.subs-form-content .text-box .text {
  font-family: "Oswald";
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  padding: 0px 175px 0px 20px;
  background: transparent;
  border: 1px solid #999;
  outline: none;
  height: 65px;
  width: 100%;
  border-radius: 5px;
}

.subs-form-content .text-box .text:focus {
  outline: none;
}

.subs-form-content .text-box .gs-btn {
  position: absolute;
  background: #00D26A;
  top: 10px;
  right: 10px;
  outline: none;
  text-transform: uppercase;
  cursor: pointer;
}

.subs-form-content .text-box .gs-btn:hover {
  border-color: #999;
  background: transparent;
}

/* ==========================
    BLOG SECTION START
 ============================ */
.block-item-box {
  overflow: hidden;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  margin-bottom: 30px;
}

.block-item-box .item-bg {
  position: relative;
  overflow: hidden;
}

.block-item-box .item-bg img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 1s;
  transition: 1s;
  border-radius: 5px;
  overflow: hidden;
}

.block-item-box .item-bg .box {
  font-family: "Oswald";
  font-size: 12px;
  font-weight: 400;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 5px 10px;
  letter-spacing: 1.5px;
  background: #00D26A;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  z-index: 1;
}

.block-item-box .item-content {
  background: #16161d;
  position: relative;
  margin: -80px 30px auto 30px;
  padding: 20px;
  border-radius: 5px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

@media (max-width: 991px) {
  .block-item-box .item-content {
    margin: -80px 20px auto 20px;
  }
}

@media (max-width: 479px) {
  .block-item-box .item-content {
    margin: -40px 5px auto 5px;
    padding: 20px 10px;
  }
}

.block-item-box .item-content .meta {
  padding-bottom: 10px;
}

.block-item-box .item-content .meta a {
  font-family: "Roboto";
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  color: #999;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  padding-right: 10px;
}

@media (max-width: 991px) {
  .block-item-box .item-content .meta a {
    padding-right: 15px;
  }
}

.block-item-box .item-content .meta a i {
  color: #00D26A;
  padding-right: 10px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.block-item-box .item-content .meta a img {
  width: auto;
  height: auto;
  display: inline-block;
  border-radius: 50px;
  margin-right: 10px;
}

.block-item-box .item-content h5 a {
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  display: block;
  margin-bottom: 10px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

@media (max-width: 575px) {
  .block-item-box .item-content h5 a {
    font-size: 19px;
  }
}

.block-item-box .item-content p {
  max-width: 600px;
}

.block-item-box .item-content .content-btn {
  margin-top: 20px;
}

.block-item-box:hover .item-bg img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.block-item-box:hover h5 a {
  color: #00D26A;
}

.blog-grid .block-item-box .item-content {
  background: #111;
}

/* ==========================
    CONTACT FORM START GLOBAl
============================ */
.form .text,
.form .subject {
  font-family: "Roboto";
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  border: 1px solid #111;
  background: transparent;
  height: 200px;
  width: 100%;
  padding: 20px;
  outline: none;
  margin-bottom: 30px;
}

.form .text {
  padding: 18px 20px;
  height: auto;
  outline: none;
}

.form .submit {
  outline: none;
  cursor: pointer;
}

@media (max-width: 767px) {
  .form {
    margin-bottom: 50px;
  }
}

/* ==========================
    CONTACT FORM END
============================ */
/* ==========================
    CONTACT PAGE START
============================ */
.contact-detail .contact-content {
  background: #111;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 20px;
  border-radius: 5px;
  margin-bottom: 25px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.contact-detail .contact-content .icon i {
  font-size: 20px;
  height: 50px;
  width: 50px;
  background: #00D26A;
  color: #fff;
  text-align: center;
  line-height: 50px;
  border: 1px solid #00D26A;
  border-radius: 50px;
}

.contact-detail .contact-content .content {
  padding-left: 20px;
}

.contact-detail .contact-content .content h5 {
  font-weight: 400;
  color: #999;
  font-size: 14px;
  margin-bottom: 5px;
}

.contact-detail .contact-content .content a {
  font-family: "Oswald";
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.contact-detail .contact-content .content a:hover {
  color: #00D26A;
}

#map iframe {
  height: 380px;
  width: 100%;
}

.map-section .col-12 {
  padding: 0;
}

/* ==========================
    CONTACT PAGE END
============================ */
/* ==========================
    FOOTER START
============================*/
.footer-section {
  position: relative;
  padding: 60px 0px;
}

.footer-section .footer-content {
  margin-top: 30px;
}

.footer-section .footer-content .footer-logo img {
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto 30px;
}

.footer-section .footer-content p {
  font-size: 15px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 0px;
  margin-top: 45px;
  z-index: 999;
}

.footer-section .footer-content p a {
  color: #00D26A !important;
}

.footer-section .footer-content .social-icon a {
  font-size: 14px;
  color: #fff;
  margin: 0 4px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: #16161d;
  font-weight: 300;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.footer-section .footer-content .social-icon a:hover {
  background: #00D26A;
  color: #fff;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

@media (max-width: 479px) {
  .footer-section .footer-content .social-icon {
    margin-top: 15px;
  }
}

@media (max-width: 479px) {
  .footer-section .footer-content {
    display: block;
    text-align: center;
  }
}

.footer-section #toTop {
  position: absolute;
  top: -35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.footer-section #toTop .back-to-top {
  height: 70px;
  width: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 30px;
  cursor: pointer;
  border: 2px solid #00D26A;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.footer-section #toTop .back-to-top a {
  font-size: 20px;
  height: 70px;
  width: 40px;
  text-align: center;
  line-height: 100px;
  color: #fff;
  animation: downSlow 1.5s linear infinite alternate-reverse;
}

.footer-section #toTop .back-to-top:hover {
  background-color: #00D26A;
}

@-webkit-keyframes downSlow {
  0% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes downSlow {
  0% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

/* ==========================
    FOOTER END
============================*/
.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  color: #fff;
  position: relative;
  display: inline-block;
}

.section-title .icon img {
  width: auto;
  height: auto;
  display: inline-block;
}

@media (max-width: 575px) {
  .section-title {
    margin-bottom: 40px;
  }
}
