/* =====================================================
Template Name   : Porex
Description     : Personal Portfolio HTML5 Template
Author          : Themesland
Version         : 1.1
=======================================================*/

/* ===================
fonts
====================== */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Roboto:wght@100;300;400;500;700;900&display=swap');


/* ===================
general css
====================== */

*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}

html,
body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-size: 16px;
  font-weight: normal;
  color: #757F95;
  line-height: 1.8;
}

a {
  color: #1e1d1d;
  display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

a:hover {
  color: #0049D0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1e1d1d;
  margin: 0px;
  font-weight: 700;
  font-family: 'Quicksand', sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin: 0px;
}

.img,
img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  height: auto;
}

label {
  color: #999;
  cursor: pointer;
  font-weight: 400;
}

*::-moz-selection {
  background: #d6b161;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #555;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #555;
  color: #fff;
  text-shadow: none;
}

*::-moz-placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

/* ===================
preloader
====================== */

.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #252734;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.loader-ripple div {
  position: absolute;
  border: 4px solid #fff;
  opacity: 1;
  border-radius: 50%;
  animation: loader-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.loader-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes loader-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }

  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}




/* ===================
theme default css
====================== */

.ovrflow-hidden {
  overflow: hidden;
}

.text-right {
  text-align: right;
}

.space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-pd {
  padding: 0 7rem;
}

.s-pd {
  padding: 0 12rem;
}

.h-100 {
  height: 100%;
}

.h-100vh {
  height: 100vh;
}

.bg {
  background-color: #252734;
}

.bg-2 {
  background-color: #2A2C39;
}




/* ===================
site title css
====================== */

.site-heading {
  margin-bottom: 50px;
  position: relative;
  font-family: 'Quicksand', sans-serif;
  z-index: 1;
}

.site-title-tagline {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 18px;
  font-weight: 700;
  color: #64F4AB;
  position: relative;
}

.site-title {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 50px;
  color: #fff;
  margin-bottom: 0;
}

.site-title span{
  color: #64F4AB;
}

.site-heading p {
  margin-top: 15px;
}

.heading-divider {
  display: inline-block;
  position: relative;
  height: 3px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background-color: #4565ff;
  width: 90px;
  overflow: hidden;
}

.heading-divider:after {
  content: '';
  position: absolute;
  left: 0;
  top: -1.1px;
  height: 7px;
  width: 8px;
  background-color: #ffffff;
  -webkit-animation: heading-move 5s infinite linear;
  animation: heading-move 5s infinite linear;
}

@-webkit-keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }
  50% {
    transform: translateX(85px);
  }
  100% {
    transform: translateX(-1px);
  }
}

@keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }
  50% {
    transform: translateX(85px);
  }
  100% {
    transform: translateX(-1px);
  }
}


@media all and (max-width: 992px) {
  .shadow-title {
    font-size: 100px;
  }
}



/* ===================
margin & padding
====================== */

.pb-140 {
  padding-bottom: 140px;
}

.pd-50 {
  padding: 50px 0;
}

.py-120 {
  padding: 120px 0;
}

.pt-120 {
  padding-top: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pt-0 {
  padding-top: 0px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mr-300 {
  margin-right: 300px;
}

.ml-300 {
  margin-left: 300px;
}

.pos-rel {
  position: relative;
  z-index: 1;
}

/* ===================
theme button
====================== */

.theme-btn {
  font-size: 16px;
  color: #ffffff;
  padding: 10px 30px;
  transition: all 0.5s;
  text-transform: capitalize;
  position: relative;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  font-family: 'Quicksand', sans-serif;
  background: linear-gradient(to left, #5adb9a 0%, #419f70 100%);
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
  z-index: 1;
}

.theme-btn::before {
  content: "";
  height: 300px;
  width: 300px;
  background: linear-gradient(to left, #ff7b61 0%, #ffbd47 100%);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.theme-btn:hover {
  color: #fff;
}

.theme-btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.theme-btn i {
  margin-left: 5px;
}





/* ===================
container
====================== */

@media (min-width: 1200px) {

  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1185px;
  }
}


/* ===================
scroll-top css
====================== */

#scroll-top {
  position: fixed;
  top: 0px;
  right: 30px;
  z-index: 99;
  font-size: 20px;
  border: none;
  outline: none;
  border-radius: 50px;
  color: #fff;
  background: linear-gradient(to top left, #5adb9a 0%, #419f70 100%);
  cursor: pointer;
  width: 47px;
  height: 47px;
  line-height: 47px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all .5s ease-in-out;
  z-index: 1;
}

#scroll-top::before{
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  right: -5px;
  bottom: -5px;
  border: 3px solid #64F4AB;
  border-radius: 50px;
}

#scroll-top.active{
  top: 97%;
  -webkit-transform: translateY(-98%);
  transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
}


@media all and (min-width: 768px) and (max-width: 1199px) {
  #scroll-top {
    bottom: 100px;
  }
}



/* ===================
nav menu css
====================== */

.main {
  margin-top: -6rem;
}

@media all and (min-width: 992px) {
  .navbar .nav-item .nav-link {
    margin-right: 28px;
    padding: 30px 0 30px 0;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    font-family: 'Quicksand', sans-serif;
    text-transform: capitalize;
  }

  .navbar .nav-item:last-child .nav-link {
    margin-right: 0;
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
    padding: 10px;
    border: none;
    left: -15px;
    border-radius: 8px;
    background: #fff;
    width: 220px;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
  }

  .navbar .nav-item .dropdown-menu li {
    border-bottom: 1px solid #eee;
  }

  .navbar .nav-item .dropdown-menu li:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item {
    font-size: 18px;
    font-weight: 700;
    padding: 8px 0px 8px 20px;
    color: #1e1d1d;
    border-radius: 8px;
    font-family: 'Quicksand', sans-serif;
    position: relative;
    text-transform: capitalize;
    transition: all .5s ease-in-out;
    z-index: 1;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover {
    background: transparent;
    padding-left: 30px;
    color: #39B577;
  }

  .navbar .nav-item .nav-link {
    position: relative;
  }

  .navbar .nav-item .nav-link::before{
    content: "";
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 0px;
    height: 3px;
    border-radius: 50px;
    background: #64F4AB;
    transition: all .5s ease-in-out;
  }

  .navbar .nav-item .nav-link.active::before,
  .navbar .nav-item:hover .nav-link::before {
    width: 25px;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }

  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 140%;
  }

  .header-nav-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-left: 30px;
  }

  .header-nav-link {
    position: relative;
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: #1e1d1d;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-nav-link:hover {
    color: #4565ff;
  }

  .header-nav-link.search-box-outer {
    font-size: 18px;
  }

  #main_nav {
    justify-content: flex-end;
  }

}


/*bootstrap nav*/
.navbar {
  background: transparent;
  padding-top: 0px;
  padding-bottom: 0px;
  z-index: 999;
}

.navbar.fixed-top {
  background: #29343E;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
  animation: slide-down 0.7s;
}

.navbar.fixed-top .header-nav-link {
  color: #fff;
}

.navbar.fixed-top .header-nav-link:hover{
  color: #fff;
}

.navbar.fixed-top .nav-item .nav-link::before{
  background: #64F4AB;
}


@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.navbar .navbar-brand .logo-display {
  display: block;
}

.navbar .navbar-brand .logo-scrolled {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
  display: block;
}

button.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler-btn-icon {
  display: inline-block;
  width: inherit;
  height: inherit;
}

.navbar-brand {
  margin-right: 0;
}

.navbar-brand img {
  width: 160px;
}

/* dropdown toggler */
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 5px;
  vertical-align: baseline;
  font-family: 'Font Awesome 6 Pro';
  content: "\f107";
  font-weight: 600;
  border: none;
  font-size: 14px;
}


@media all and (max-width: 1199px) {
  .header-nav-right {
    gap: 5px;
    margin-left: 15px;
  }

  .navbar .nav-item .nav-link {
    margin-right: 15px;
  }

  .navbar .header-btn {
    display: none;
  }
}


/* mobile menu */
.mobile-menu-right {
  display: none;
}

@media all and (max-width: 991px) {
  .navbar {
    top: 0;
    right: 0;
    left: 0;
    position: fixed;
  }

  .navbar-bg {
    height: 59px;
  }

  .navbar-bg::before {
    transform: translateY(0px) skew(-15deg);
    left: -8px;
  }

  .navbar-brand {
    padding-left: 10px;
  }

  .navbar-brand img {
    width: 130px;
  }

  .navbar-collapse {
    max-height: 220px;
    overflow: hidden;
    overflow-y: auto;
    padding: 0 20px;
    background-color: #fff;
  }

  .dropdown-toggle::after {
    float: right;
  }

  .navbar .nav-item .nav-link {
    color: #1e1d1d;
    font-weight: 700;
    transition: all .5s ease-in-out;
  }

  .navbar .nav-item .nav-link:hover {
    color: #4565ff !important;
  }

  .navbar-toggler {
    padding: 0;
    border: none;
  }

  .mobile-menu-right {
    display: flex;
    align-items: center;
  }

  .mobile-menu-link {
    font-size: 20px;
    color: #1e1d1d;
    font-weight: 500;
    padding-right: 20px;
    margin-bottom: 0px;
    position: relative;
  }

  .mobile-menu-link:hover {
    color: #4565ff;
  }

  .navbar-toggler-btn-icon {
    font-size: 25px;
    color: #fff;
    font-weight: 500;
  }

  .navbar.fixed-top .mobile-menu-link{
    color: #1e1d1d;
  }

  .navbar.fixed-top .navbar-toggler-btn-icon{
    color: #fff;
  }

  .navbar .dropdown-menu {
    border-radius: 8px;
  }

  .header-nav-right {
    display: none;
  }

}



/* ===================
hero css 
====================== */

.hero-section {
  position: relative;
}

.hero-single {
  padding-top: 220px;
  padding-bottom: 150px;
  background: #252734;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-single::before{
  content: "";
  position: absolute;
  background-image: url(../img/shape/01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-single .hero-content .hero-title {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  margin: 20px 0;
  text-transform: capitalize;
}

.hero-single .hero-content .hero-sub-title {
  color: #64F4AB;
  font-size: 17px;
  letter-spacing: 2px;
  padding-left: 40px;
  border-radius: 50px;
  position: relative;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-single .hero-content .hero-sub-title::before{
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 25px;
  height: 8px;
  background: #64F4AB;
}

.hero-single .hero-content p {
  color: #fff;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-single .hero-content .hero-btn {
  gap: 2rem;
  display: flex;
  margin-top: 2.8rem;
  justify-content: start;
}

.hero-btn .video-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 30px;
}

.hero-intro{
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-intro p{
  margin-bottom: 0 !important;
}

.hero-right{
  position: absolute;
  height: 550px;
  width: 550px;
  right: 180px;
  bottom: 0;
}

.hero-img img{
  position: absolute;
  bottom: 0;
}

.hero-icon-img .hero-icon{
  position: absolute;
  width: 80px;
  height: 80px;
  line-height: 63px;
  border-radius: 50%;
  padding: 8px;
  text-align: center;
  background: #fff;
  animation: moveHorizontal 8000ms infinite ease-in-out;
}

.hero-icon-img .hero-icon img{
  width: 40px;
}

.hero-icon-1{
  left: -1%;
  top: 28%;
}

.hero-icon-2{
  left: 20%;
  top: 1%;
}

.hero-icon-3{
  right: 16%;
  top: 1%;
}

.hero-icon-4{
  right: -4%;
  top: 25%;
}

.hero-icon-5{
  right: -7%;
  top: 55%;
}

@keyframes moveHorizontal {
  0% {
      -webkit-transform: translateX(0px);
      transform: translateX(0px)
  }

  50% {
      -webkit-transform: translateX(-10px);
      transform: translateX(-10px)
  }

  100% {
      -webkit-transform: translateX(0px);
      transform: translateX(0px)
  }
}


.hero-section .owl-dots {
  position: absolute;
  text-align: center;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
}

.hero-section .owl-dots .owl-dot {
  display: block;
}

.hero-section .owl-dots .owl-dot span {
  border: 3px solid #fff;
  margin: 5px;
  border-radius: 50px;
  width: 15px;
  height: 15px;
  display: inline-block;
  background-color: #fff;
  transition: all .5s ease-in-out;
}

.hero-section .owl-dots .owl-dot.active span {
  background-color: #39b577;
}

.hero-slider.owl-theme .owl-nav {
  margin-top: 0px;
}

.hero-slider.owl-theme .owl-nav [class*=owl-] {
  color: #fff;
  font-size: 30px;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.1);
  display: inline-block;
  cursor: pointer;
  height: 55px;
  width: 55px;
  border-radius: 50px;
  line-height: 55px;
  text-align: center;
  transition: all .5s ease-in-out;
}

.hero-slider.owl-theme .owl-nav [class*=owl-]:hover {
  background: #fff;
  color: #419f70;
}

.hero-slider.owl-theme .owl-nav .owl-prev {
  left: 40px;
}

.hero-slider.owl-theme .owl-nav .owl-next {
  right: 40px;
}

.hero-slider.owl-theme .owl-nav .owl-prev,
.hero-slider.owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

@media all and (max-width: 1199px) {

  .hero-single .hero-content .hero-title {
    font-size: 37px;
  }

  .hero-right{
    right: 60px;
    width: 470px;
    height: 470px;
  }

  .hero-img-1{
    width: 90%;
  }

  .hero-slider.owl-theme .owl-nav .owl-prev,
  .hero-slider.owl-theme .owl-nav .owl-next {
    top: unset;
    bottom: 5px !important;
  }

  .hero-slider.owl-theme .owl-nav .owl-prev {
    left: unset;
    right: 120px;
  }

  .hero-slider.owl-theme .owl-nav .owl-next {
    right: 40px;
  }

}

@media all and (max-width: 991px) {

  .hero-single {
    padding-top: 250px;
    padding-bottom: 550px;
  }

  .hero-right{
    right: unset;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-single .hero-content .hero-title {
    font-size: 35px;
  }

  .hero-single .hero-content .hero-btn {
    gap: 1.5rem;
  }

  .hero-single .hero-content .hero-btn .theme-btn{
    padding: 12px 15px
  }

}

@media all and (max-width: 767px) {

  .hero-single .hero-content .hero-sub-title {
    font-size: 18px;
  }

  .hero-single .hero-content .theme-btn {
    padding-left: 20px;
  }

  .hero-single {
    padding-bottom: 390px;
  }

  .hero-right{
    width: 320px;
    height: 320px;
  }

  .hero-img-1{
    width: 85%;
  }

  .hero-icon-img .hero-icon{
    width: 60px;
    height: 60px;
    line-height: 43px;
  }

  .hero-icon-img .hero-icon img{
    width: 30px;
  }

}





/* =====================
play btn
===================== */

.play-btn {
  display: inline-block;
  padding: 0;
  height: 60px;
  width: 60px;
  line-height: 60px;
  font-size: 20px;
  text-align: center;
  background: #fff;
  color: #39b577 !important;
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.play-btn i::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #fff;
  border-radius: 50px;
  animation: ripple-wave 1s linear infinite;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}

@keyframes ripple-wave {
  0% {
    opacity: 0.8;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}




/* ===================
about css 
====================== */

.about-img{
  position: relative;
}

.about-img{
  margin-left: auto;
  margin-right: auto;
  width: 450px;
  z-index: 1;
}

.about-img::before{
  content: "";
  position: absolute;
  background: #64F4AB;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  transform: rotate(-10deg);
  z-index: -1;
}

.about-img img{
  border-radius: 10px;
}

.about-right {
  position: relative;
  display: block;
  padding-left: 30px;
}

.about-right h3{
  color: #757F95;
  margin: 15px 0;
}

@media all and (max-width: 991px) {
  .about-right {
    margin-top: 50px;
  }
}



/* ===================
service css 
====================== */

.service-area {
  position: relative;
  display: block;
  overflow: hidden;
}

.service-item {
  position: relative;
  padding: 40px 30px;
  margin-bottom: 25px;
  border-radius: 8px;
  background: #2A2C39;
  overflow: hidden;
  transition: all .5s ease-in-out;
  z-index: 1;
}

.service-item:hover{
  background: linear-gradient(to bottom, #5adb9a 0%, #419f70 100%);
}

.service-content {
  position: relative;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(to left, #5adb9a 0%, #419f70 100%);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  transition: all .5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon::before{
  content: "";
  position: absolute;
  left: -8px;
  top: -8px;
  right: -8px;
  bottom: -8px;
  border: 3px solid #64F4AB;
  border-radius: 50%;
}

.service-item:hover .service-icon{
  background: #2A2C39;
} 

.service-item:hover .service-icon::before{
  border-color: #2A2C39;
} 

.service-icon img{
  width: 50px !important;
}

.service-item:hover .service-icon{
  transform: rotateY(360deg);
}

.service-list{
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-list li{
  font-weight: 500;
  margin: 5px 0;
  position: relative;
  padding-left: 30px;
}

.service-list li::before{
  content: "\f324";
  position: absolute;
  left: 0;
  top: 2.5px;
  font-size: 15px;
  font-family: "Font Awesome 6 pro";
  color: #64F4AB;
}

.service-item:hover .service-list li::before,
.service-item:hover .service-list li{
  color: #fff;
}

.service-title a {
  font-size: 24px;
  margin-top: 25px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.service-title a:hover {
  color: #fff;
}

.service-item:hover p,
.service-item:hover .service-title a{
  color: #fff;
}

.service-arrow {
  margin-top: 25px;
}

.service-arrow a{
  font-weight: 500;
  color: #64F4AB;
  letter-spacing: 1px;
}

.service-arrow a i{
  font-weight: 500;
}

.service-item:hover .service-arrow a{
  color: #fff;
}

.service-area .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.service-area .owl-dots .owl-dot span {
  background: #373b4b;
  margin: 5px;
  border-radius: 50px;
  width: 12px;
  height: 12px;
  display: inline-block;
  transition: all .5s ease-in-out;
}

.service-area .owl-dots .owl-dot.active span {
  background-color: #64F4AB;
}



/* ====================
service single
==================== */

.service-single-wrapper .widget-title{
  font-weight: 700;
}

.service-single-list i {
  color: #64F4AB;
  margin-right: 10px;
}

.service-download a {
  border: 2px solid #fff;
  padding: 10px 20px;
  color: #64F4AB;
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
  border-radius: 50px;
  transition: all .5s ease-in-out;
}

.service-download a i {
  margin-right: 10px;
}

.service-download a:hover {
  background-color: #fff;
  color: #39B577;
}

.service-details h3 {
  color: #fff;
  font-weight: 700;
}

.service-details img{
  border-radius: 7px;
}


/* ===================
expert css 
====================== */

.expert-content-wrapper .nav-link{
  border-radius: 14px;
  margin-right: 10px;
  font-weight: 500;
  border: 2px solid transparent;
  color: #fff;
}

.expert-content-wrapper .nav-link.active{
  background: transparent;
  border: 2px solid #fff;
}

.expert-skill-item{
  background: #252734;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.expert-skill-item::before{
  content: "";
  position: absolute;
  background-image: url(../img/shape/06.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.skill-icon{
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #2A2C39;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.skill-icon img{
  width: 30px;
}

.skill-progress .skill-tag {
  margin-bottom: 20px;
  display: inline-block;
  background: #252734;
  color: #fff;
  position: relative;
  z-index: 2
}

.skill-progress .skill-box {
  width: 100%;
  height: 5px;
  background: #F1F1FA;
  border-radius: 50px;
  position: relative
}

.skill-progress .progress-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(to left, #5adb9a 0%, #419f70 100%);
  -webkit-transition: all 1s linear;
  transition: all 1s linear;
  width: 0;
}

.skill-progress .progress-line .skill-percentage {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  position: absolute;
  right: -15px;
  top: -45px;
  z-index: 1
}

.expert-item{
  background: #252734;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.expert-item span{
  color: #64F4AB;
}

.expert-item p{
  margin: 8px 0;
  color: #fff;
}

.expert-item h4{
  color: #fff;
}

@media all and (max-width: 991px) {
  .expert-content-info{
    margin-bottom: 40px;
  }
}



/* ===================
video css 
====================== */

.video-content {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 8px;
}

.video-content::before {
  content: "";
  position: absolute;
  background: rgba(3, 2, 7, .2);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 8px;
}

.video-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  height: 550px;
  z-index: 100;
}

.video-area .play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media all and (max-width: 767px) {
  .video-wrapper {
    height: 250px;
  }
}



/* ===================
testimonial css 
====================== */

.testimonial-area {
  position: relative;
  z-index: 1;
}

.testimonial-single {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 50px;
  border-radius: 20px;
  background: #282A37;
  position: relative;
  z-index: 1;
}

.testimonial-single::before{
  content: "";
  position: absolute;
  background-image: url(../img/shape/06.png);
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.testimonial-img{
  width: 350px;
  position: relative;
  z-index: 1;
}

.testimonial-img::before{
  content: "";
  position: absolute;
  background: #64F4AB;
  border-radius: 18px;
  transform: rotate(-10deg);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.testimonial-img img{
  border-radius: 18px;
}

.testimonial-content{
  flex: 1;
}

.testimonial-quote{
  font-size: 20px;
  font-style: italic;
  color: #fff;
}

.testimonial-quote-icon img{
  width: 80px !important;
}

.testimonial-rate{
  color: #64F4AB;
  margin: 15px 0 10px 0;
}

.testimonial-author-info h4{
  color: #fff;
  margin-bottom: 10px;
}

.testimonial-author-info p{
  color: #64F4AB;
}

.testimonial-area .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.testimonial-area .owl-dots .owl-dot span {
  background: #fff;
  margin: 5px;
  border-radius: 50px;
  width: 20px;
  height: 5px;
  display: inline-block;
  transition: all .5s ease-in-out;
}

.testimonial-area .owl-dots .owl-dot.active span {
  background-color: #64F4AB;
}

@media all and (max-width: 991px) {
  .testimonial-single{
    flex-direction: column;
  }
}

@media all and (max-width: 767px) {
  .testimonial-img{
    width: 280px;
  }
}




/* ===================
counter css 
====================== */

.counter-area {
  position: relative;
  z-index: 1;
}

.counter-box {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 25px;
  position: relative;
  z-index: 1;
}

.counter-box .icon {
  position: relative;
  font-size: 55px;
  border-radius: 18px;
  width: 100px;
  height: 100px;
  line-height: 86px;
  text-align: center;
  border: 2px solid #64F4AB;
  color: #fff;
}

.counter-box .icon img {
  width: 56px;
}

.counter-box .counter-number{
  display: flex;
}

.counter-box .counter-unit{
  color: #fff;
  font-size: 20px;
}

.counter-box .counter {
  display: block;
  line-height: 1;
  color: #fff;
  font-size: 50px;
  font-weight: 500;
}

.counter-box .title {
  color: #fff;
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

@media all and (max-width: 991px) {
  .counter-area .counter-box {
    margin: 40px 0;
  }
}



/* ===================
cta-area css 
====================== */

.cta-area{
  position: relative;
  z-index: 1;
}

.cta-wrapper{
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-wrapper::before{
  content: "";
  position: absolute;
  background-image: url(../img/shape/06.png);
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.cta-content h1{
  color: #fff;
  margin-bottom: 8px;
}

.cta-content p{
  font-size: 18px;
}

.cta-content .theme-btn{
  margin-top: 30px;
}




/* ========================
portfolio css 
=========================== */

.portfolio-item {
  position: relative;
  width: 100%;
  margin-bottom: 25px;
}

.portfolio-img{
  overflow: hidden;
  transition: all .5s ease-in-out;
}

.portfolio-item:hover .portfolio-img img{
  transform: scale(1.3);
}

.portfolio-content{
  margin-top: 20px;
}

.portfolio-title{
  color: #fff;
  font-size: 25px;
}

.portfolio-title:hover{
  color: #64F4AB;
}

.portfolio-category{
  margin-top: 8px;
}

.portfolio-category li{
  display: inline-block;
  position: relative;
  margin-right: 18px;
}

.portfolio-category li::before{
  position: absolute;
  content: "/";
  left: calc(100% + 8px);
}

.portfolio-category li:last-child::before{
  display: none;
}

.portfolio-category li a{
  color: #64F4AB;
  font-size: 17px;
}

.portfolio-category li a:hover{
  color: #fff;
}

.portfolio-slider.owl-theme .owl-nav{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.portfolio-slider.owl-theme .owl-nav .owl-prev,
.portfolio-slider.owl-theme .owl-nav .owl-next {
  color: #fff;
  font-size: 22px;
  background: #252734;
  cursor: pointer;
  height: 50px;
  width: 50px;
  margin: 15px 5px 0 5px;
  border-radius: 50px;
  line-height: 50px;
  text-align: center;
  transition: all .5s ease-in-out;
}

.portfolio-slider.owl-theme .owl-nav .owl-prev:hover,
.portfolio-slider.owl-theme .owl-nav .owl-next:hover{
  background: #39B577;
}

.filter-controls{
  margin-bottom: 30px;
}

.filter-btns li{
  display: inline-block;
  padding: 5px 20px;
  border: 2px solid transparent;
  border-radius: 12px;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
}

.filter-btns li.active{
  border-color: #fff;
  color: #64F4AB;
}




/* ======================
portfolio single
====================== */

.portfolio-details img{
  border-radius: 7px;
}

.portfolio-sidebar .portfolio-sidebar-content ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 33px;
  color: #fff;
}

.portfolio-sidebar .portfolio-sidebar-content ul li:last-child {
  border-bottom: none;
}

.portfolio-sidebar-title {
  margin-bottom: 30px;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}

.portfolio-sidebar .portfolio-sidebar-content ul li span {
  display: block;
  font-weight: 500;
  margin: 0;
  color: #757F95;
}

.portfolio-sidebar .portfolio-sidebar-content .rating a {
  color: #64F4AB;
}

.new-portfolio {
  background: #39b577 !important;
}

.new-portfolio h4 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 28px;
}

.new-portfolio-btn {
  background: #fff;
  color: #1e1d1d;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  transition: all .5s ease-in-out;
}

.new-portfolio-btn:hover {
  background: #1e1d1d;
  color: #fff;
}

.new-portfolio-btn i {
  margin-left: 8px;
}

.portfolio-single-list i {
  color: #64F4AB;
  margin-right: 10px;
}

.portfolio-details h3{
  font-weight: 700;
  color: #fff;
}



/* ===================
blog css 
====================== */

.blog-item {
  display: flex;
  gap: 18px;
  margin-bottom: 25px;
  background-color: #282A37;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  transition: all .5s ease-in-out;
}

.blog-item-img{
  overflow: hidden;
  border-radius: 8px;
}

.blog-item-img img {
  border-radius: 8px;
}

.blog-item:hover .blog-item-img img{
  transform: scale(1.1);
} 

.blog-item-info{
  flex: 1;
}

.blog-item-meta ul {
  margin: 0;
  padding: 0;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 14px;
}

.blog-item-meta ul li {
  display: inline-block;
  margin-right: 15px;
  position: relative;
}

.blog-item-meta ul li a{
  color: #fff;
}

.blog-item-meta ul li i {
  margin-right: 5px;
  color: #64F4AB;
}

.blog-title a{
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.blog-title a:hover{
  color: #64F4AB;
}

.blog-item-info .theme-btn{
  margin-top: 15px;
}


@media all and (max-width: 1199px) {
  .blog-item{
    flex-direction: column;
  }

  .blog-item-img img{
    width: 100%;
  }
}




/* ===========================
blog single css
=========================== */

.blog-thumb-img {
  margin-bottom: 20px;
}

.blog-single-content img {
  border-radius: 7px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.blog-meta .blog-meta-left ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-meta .blog-meta-left ul li{
  font-weight: 500;
  color: #fff;
}

.blog-meta i {
  margin-right: 5px;
  color: #64F4AB;
}

.blog-meta a {
  color: #fff;
  font-weight: 500;
}

.blog-meta a:hover {
  color: #64F4AB;
}

.blog-details-title {
  font-size: 34px;
  color: #fff;
}

.blockqoute {
  background: #282A37;
  border-left: 5px solid #64F4AB;
  padding: 30px;
  font-size: 17px;
  font-style: italic;
  margin: 20px 0;
  border-radius: 0px;
}

.blockqoute-author {
  margin-top: 20px;
  padding-left: 60px;
  position: relative;
  color: #fff;
}

.blockqoute-author::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 40px;
  background: #64F4AB;
  left: 0;
  top: 10px;
}

.blog-details-tags {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-details-tags h5 {
  color: #fff;
  font-weight: 700;
}

.blog-details-tags ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-details-tags ul a {
  background: #282A37;
  color: #fff;
  padding: 6px 18px;
  border-radius: 5px;
  transition: all .5s ease-in-out;
}

.blog-details-tags ul a:hover {
  background: #39B577;
  color: #fff;
}

.blog-author {
  display: flex;
  justify-content: start;
  align-items: center;
  background: #282A37;
  border-radius: 8px;
  margin: 50px 0;
  padding: 20px;
}

.blog-author-img {
  width: 320px;
}

.blog-author-img img {
  border-radius: 15px;
}

.author-name {
  font-size: 22px;
  color: #64F4AB;
  margin: 8px 0;
}

.author-info {
  padding: 0 20px;
}

.author-info h6{
  color: #fff;
}

.author-social {
  margin-top: 10px;
}

.author-social a {
  width: 35px;
  height: 35px;
  line-height: 32px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50px;
  margin-right: 5px;
  color: #64F4AB;
  transition: all .5s ease-in-out;
}

.author-social a:hover {
  color: #39B577;
  background: #fff;
}

.blog-comments {
  margin-bottom: 50px;
}

.blog-comments h3 {
  color: #fff;
  font-weight: 700;
}

.blog-comments-wrapper {
  margin: 30px 0;
}

.blog-comments-single {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  margin-top: 50px;
}

.blog-comments-single img {
  border-radius: 50%;
}

.blog-comments-content {
  padding: 0 0 0 20px;
}

.blog-comments-content span {
  font-size: 14px;
  color: #64F4AB;
  font-weight: 500;
}

.blog-comments-content a {
  font-weight: 600;
  margin-top: 5px;
  color: #64F4AB;
}

.blog-comments-content a:hover {
  color: #fff;
}

.blog-comments-content h5 {
  color: #fff;
  font-weight: 700;
}

.blog-comments-reply {
  margin-left: 50px;
}

.blog-comments-form {
  padding: 30px;
  margin-top: 50px;
  border-radius: 7px;
  background: #282A37;
}

.blog-comments-form h3 {
  margin-bottom: 20px;
}

.blog-comments-form .form-group {
  margin-bottom: 20px;
}

.blog-comments-form .form-control {
  padding: 12px 20px;
  border-radius: 7px;
  box-shadow: none;
  background: transparent;
  transition: all .5s ease-in-out;
}

.blog-comments-form .form-control:focus {
  border-color: #64F4AB;
  color: #fff;
}



@media all and (max-width: 767px) {
  .blog-meta {
    flex-direction: column;
    font-size: 15px;
  }

  .blog-meta .blog-meta-left ul {
    gap: 10px;
  }

  .blog-details-tags {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-author {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .author-info {
    padding: 20px;
  }

  .blog-comments-single {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 30px 0px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    margin-bottom: 30px;
    border-radius: 10px;
  }

  .blog-comments-single img{
    margin-left: auto;
    margin-right: auto;
  }

  .blog-comments-reply {
    margin-left: 0px;
  }
}


/* =========================
sidebar css
========================= */

.widget {
  background: #282A37;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 7px;
}

.widget .widget-title {
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
  font-size: 24px;
  color: #fff;
}

.widget .widget-title::before {
  position: absolute;
  content: '';
  width: 15px;
  border-bottom: 3px solid #64F4AB;
  bottom: 0;
  left: 0;
}

.widget .widget-title::after {
  position: absolute;
  content: '';
  width: 30px;
  border-bottom: 3px solid #64F4AB;
  bottom: 0;
  left: 22px;
}

.widget .search-form .form-control {
  padding: 12px 15px 12px 15px;
  border-radius: 10px;
  box-shadow: none;
  background: transparent;
  color: #fff;
}

.widget .search-form {
  position: relative;
}

.widget .search-form .form-control:focus {
  border-color: #64F4AB;
}

.widget .search-form button {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 18px;
  padding: 8px 18px 6px 18px;
  background: transparent;
  border: none;
  color: #64F4AB;
}

.widget .category-list a {
  display: block;
  padding: 10px 0;
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all .5s ease-in-out;
}

.widget .category-list a:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}

.widget .category-list a:hover {
  padding-left: 10px;
  color: #64F4AB;
}

.widget .category-list a i {
  margin-right: 5px;
  color: #64F4AB;
}

.widget .category-list a span {
  float: right;
}

.widget .recent-post-single {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 20px;
}

.widget .recent-post-img {
  margin-right: 20px;
}

.widget .recent-post-img img {
  width: 120px;
  border-radius: 7px;
}

.widget .recent-post-bio h6 a {
  font-size: 18px;
  color: #fff;
}

.widget .recent-post-bio span {
  font-size: 14px;
  color: #64F4AB;
  font-weight: 500;
}

.widget .recent-post-bio span i {
  margin-right: 5px;
}

.widget .recent-post-bio h6 a:hover {
  color: #64F4AB;
}

.widget .social-share-link a {
  width: 35px;
  height: 35px;
  line-height: 31px;
  border: 2px solid #fff;
  color: #64F4AB;
  text-align: center;
  margin-right: 5px;
  border-radius: 7px;
  transition: all .5s ease-in-out;
}

.widget .social-share-link a:hover {
  background: #fff;
  color: #39B577;
}

.widget .tag-list a {
  background: #F5F7FA;
  color: #1e1d1d;
  padding: 5px 15px;
  margin-bottom: 10px;
  margin-right: 10px;
  border-radius: 6px;
  display: inline-block;
  transition: all .5s ease-in-out;
}

.widget .tag-list a:hover {
  background-color: #39b577;
  color: #fff;
}


/* =========================
partner css
========================= */

.partner-area .partner-wrapper img {
  padding: 20px;
}

.partner-area .partner-item{
  margin-bottom: 20px;
  text-align: center;
}

.partner-slider img{
  padding: 10px !important;
}




/* ===================
contact us css 
====================== */

.contact-wrapper {
  position: relative;
}

.contact-form {
  background: #2A2C39;
  border-radius: 10px;
  padding: 30px 30px;
}

.contact-form-header {
  margin-bottom: 30px;
}

.contact-form-header h2 {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #fff;
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form .form-group .form-control {
  padding: 14px 20px;
  border-radius: 10px;
  box-shadow: none;
  color: #fff;
  background: transparent;
  transition: all .5s ease-in-out;
}

.contact-form .form-group .form-control:focus {
  border-color: #64F4AB;
}

.contact-map {
  margin-bottom: -9px;
}

.contact-map iframe {
  width: 100%;
  height: 450px;
}

.contact-content {
  padding: 15px;
  margin-bottom: 50px;
  background: #2A2C39;
  border-radius: 10px;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
  border-radius: 8px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  transition: all .5s ease-in-out;
}

.contact-info:hover{
  border-color: #384dff;
}

.contact-info-icon i {
  font-size: 25px;
  color: #fff;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50px;
  background: linear-gradient(to left, #5adb9a 0%, #419f70 100%);
}

.contact-info h5 {
  font-size: 22px;
  margin-bottom: 5px;
  color: #fff;
}

.contact-info a{
  color: #757F95;
  font-weight: 500;
}


@media all and (max-width: 768px) {
  .contact-content {
    margin-top: 50px;
    margin-bottom: 0;
  }
}



/* ===================
pricing css 
====================== */

.pricing-item{
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
  border-radius: 10px;
  padding: 30px 40px;
  background: #2A2C39;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  transition: all .9s ease-in-out;
  z-index: 1;
}

.pricing-item:hover{
  transform: translateY(-10px);
}

.pricing-header{
  position: relative;
  z-index: 1;
}

.pricing-header h4{
  margin-bottom: 5px;
  font-size: 25px;
  color: #fff;
}

.pricing-amount{
  margin-top: 20px;
  margin-bottom: 25px;
}

.pricing-amount h1{
  color: #64F4AB;
  font-size: 55px;
}

.pricing-feature{
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-feature ul{
  margin-bottom: 35px;
}

.pricing-feature ul li{
  position: relative;
  margin: 10px 0;
  padding-left: 25px;
}

.pricing-feature ul li::before{
  content: "\f00c";
  position: absolute;
  width: 13px;
  height: 13px;
  color: #64F4AB;
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  border-radius: 50px;
  left: 0;
  top: 0px;
}

.pricing-feature .theme-btn:hover{
  color: #39b577;
}

.pricing-feature .theme-btn::before{
  background: #fff;
}



/* ===================
faq css 
====================== */

.faq-area .accordion-item {
  border: none;
  margin-bottom: 14px;
  background: #282A37;
  border-radius: 8px !important;
}

.faq-area .accordion-item span {
  width: 45px;
  height: 45px;
  margin-right: 15px;
}

.faq-area .accordion-item i {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50px;
  background: linear-gradient(to left, #5adb9a 0%, #419f70 100%);
  text-align: center;
  color: #fff;
}

.faq-area .accordion-button:not(.collapsed) {
  color: #64F4AB;
  background: transparent;
  box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}

.faq-area .accordion-button {
  border-radius: 0px !important;
  background: transparent;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  box-shadow: none !important;
}

.faq-area .accordion-button:not(.collapsed) {
  border-bottom: 1px solid #64F4AB;
}

.faq-area .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-area .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-area .accordion-body{
  color: #fff;
}

@media all and (max-width: 991px) {
  .faq-right {
    margin-top: 50px;
  }

  .faq-area .accordion-button {
    font-size: 16px;
  }
}



/* ===================
breadcrumb css
====================== */

.site-breadcrumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: #252734;
  padding-top: 250px;
  padding-bottom: 120px;
  z-index: 1;
}

.site-breadcrumb::before{
  content: "";
  position: absolute;
  background-image: url(../img/shape/01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.site-breadcrumb .breadcrumb-title {
  font-size: 40px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.site-breadcrumb .breadcrumb-menu {
  position: relative;
  z-index: 1;
}

.site-breadcrumb .breadcrumb-menu li {
  position: relative;
  display: inline-block;
  margin-left: 25px;
  color: #fff;
  font-weight: 500;
  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu li a {
  color: #fff;
  transition: all 0.5s ease-in-out;
}

.site-breadcrumb .breadcrumb-menu li::before {
  position: absolute;
  content: '\f101';
  font-family: 'Font Awesome 6 Pro';
  right: -21px;
  top: 1px;
  text-align: center;
  font-size: 16px;
  color: #fff;
}

.site-breadcrumb .breadcrumb-menu li:first-child {
  margin-left: 0;
}

.site-breadcrumb .breadcrumb-menu li:last-child:before {
  display: none;
}

.site-breadcrumb .breadcrumb-menu li a:hover {
  color: #64F4AB;
}

.site-breadcrumb .breadcrumb-menu li.active{
  color: #64F4AB;
}

@media (max-width: 991px) {
  .site-breadcrumb {
    padding-top: 250px;
    padding-bottom: 150px;
  }
}




/* ===================
pagination css 
====================== */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.pagination .page-link {
  border: none;
  background: #282A37;
  color: #fff;
  margin: 0 10px;
  border-radius: 8px !important;
  width: 40px;
  height: 40px;
  line-height: 28px;
  text-align: center;
  transition: all .5s ease-in-out;
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
  background: #39B577;
  color: #fff;
}



/* ===================
error css 
====================== */

.error-wrapper {
  text-align: center;
}

.error-wrapper h1 {
  font-size: 250px;
  letter-spacing: 5px;
  font-weight: bold;
  color: #fff;
}

.error-wrapper h1 span {
  color: #fff;
}

.error-wrapper h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: #fff;
}

.error-wrapper img {
  width: 100%;
}

.error-wrapper .theme-btn {
  margin-top: 30px;
}


@media all and (max-width: 767px) {
  .error-wrapper h1 {
    font-size: 160px;
  }
}




/* ===================
footer css 
====================== */

.footer-area {
  background: #2E303D;
  position: relative;
  z-index: 1;
}

.footer-area::before{
  content: "";
  position: absolute;
  background-image: url(../img/shape/01.png);
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.newsletter-content{
  text-align: center;
  margin-bottom: 25px;
  color: #fff;
}

.newsletter-content h3{
  color: #fff;
  font-size: 45px;
  margin-bottom: 5px;
}

.newsletter-form .form-group{
  position: relative;
}

.newsletter-form .form-control{
  padding: 20px 185px 20px 35px;
  border-radius: 50px;
  border-radius: none;
  box-shadow: none;
  border: none;
}

.newsletter-form .form-group .theme-btn{
  position: absolute;
  right: 8px;
  top: 7.5px;
}

.copyright{
  background: rgba(0, 0, 0, .2);
  padding: 25px 0;
}

.footer-logo img{
  width: 180px;
}

.copyright-text{
  font-size: 18px;
  font-weight: 500px;
  color: #fff;
}

.copyright-text a{
  color: #64F4AB;
}

.footer-contact-info{
  display: flex;
  gap: 15px;
}

.footer-contact-icon{
  width: 65px;
  height: 65px;
  line-height: 58px;
  background: linear-gradient(to left, #5adb9a 0%, #419f70 100%);
  border-radius: 14px;
  color: #fff;
  font-size: 35px;
  text-align: center;
}

.footer-contact-icon img{
  width: 40px;
}

.footer-contact-content{
  flex: 1;
}

.footer-contact-content p{
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.footer-contact-content h2{
  color: #fff;
  font-size: 28px;
}

.footer-social span{
  font-weight: 500;
  color: #fff;
}

.footer-social a{
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #64F4AB;
  background: #252734;
  margin-left: 10px;
  text-align: center;
  border-radius: 50px;
}

.footer-social a:hover{
  background: #39B577;
  color: #fff;
}

@media all and (max-width: 1199px) {
  .footer-contact-info {
    margin-bottom: 30px;
  }
}

@media all and (max-width: 767px) {
  .copyright-text {
    margin-top: 30px;
  }

  .footer-contact-icon{
    width: 55px;
    height: 55px;
    line-height: 47px;
  }

  .footer-contact-content h2{
    font-size: 23px;
  }

  .footer-contact-icon img{
    width: 35px;
  }

  .footer-social a{
    width: 45px;
    height: 45px;
    line-height: 43px;
    margin-left: 5px
  }

}



/* ====================
home 2
======================= */

.home-2.bg{
  background: #131313;
}

.home-2 .bg-2{
  background: #191919;
}

.home-2 .navbar.fixed-top{
  background: #131313;
}

.home-2 .hero-single{
  padding-top: 250px;
  padding-bottom: 180px;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
}

.home-2 .hero-single::before{
  display: none;
}

.home-2 .footer-area{
  background: #171717;
}

.home-2 .footer-area::before{
  background-image: url(../img/shape/06.png);
  background-position: right;
}

@media all and (max-width: 1199px) {
  .home-2 .hero-single {
    padding-bottom: 180px;
  }
}


/* ==================
home 3
===================== */

.home-3.bg{
  background: #020404;
}

.home-3 .bg-2{
  background: #060A09;
}

.home-3 .navbar.fixed-top{
  background: #050A09;
}

.home-3 .hero-single{
  background: #000;
}

.home-3 .hero-img-single{
  width: 400px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.home-3 .hero-img-single img{
  border-radius: 15px;
}

.home-3 .hero-img-single::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #64F4AB;
  border-radius: 15px;
  transform: rotate(15deg);
  z-index: -1;
}

.home-3 .footer-area{
  background: #000;
}


@media all and (max-width: 1199px) {
  .home-3 .hero-single {
    padding-bottom: 150px;
  }

  .home-3 .hero-img-single{
    margin-top: 90px;
    width: 340px;
  }

  .home-3 .hero-img-single::before{
    transform: rotate(10deg);
  }
}

@media all and (max-width: 991px) {
  .home-3 .hero-img-single{
    width: 300px;
  }
}