* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Shabnam", "Font Awesome 5 Pro", sans-serif;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

svg {
  width: 24px;
  height: 24px;
}

i::before {
  vertical-align: middle;
}

img.convert-img {
  width: 24px;
}

/* Colors */
/*  #fa5252  */
/* #495057 */

:root {
  /* Inner Shadow */
  --inner-shadow: inset 3px 3px 3px #cdcdcd, inset -3px -3px 3px #fafafa;
  /* Outer Shadow */
  --outer-shadow: 3px 3px 3px #cdcdcd, -3px -3px 3px #fafafa;
  /* None Shadow */
  --none-shadow: 3px 3px 3px #cdcdcd, -3px -3px 3px #fafafa;
  /* Bg Color */
  --bg-color: #f1f3f6;
  /* Main Color */
  --main-color: #fa5252;
  /* Gray Color */
  --gray-color: #495057;
  /* Text P Color */
  --p-color: #868e96;
  /* Border */
  --border-color: #dee2e6;
}

.dark-theme {
  /* Inner Shadow */
  --inner-shadow: inset 3px 3px 3px #202125, inset -3px -3px 3px #353535;
  /* Outer Shadow */
  --outer-shadow: 3px 3px 3px #202125, -3px -3px 3px #353535;
  /* None Shadow */
  --none-shadow: 3px 3px 3px #202125, -3px -3px 3px #353535;
  /* Bg Color */
  --bg-color: #2c2d30;
  /* Main Color */
  --main-color: #fa5252;
  /* Gray Color */
  --gray-color: #fafafa;
  /* Text P Color */
  --p-color: #9da1a5;
  /* Border */
  --border-color: rgba(255, 255, 255, 0.07);
}


html {
  scroll-behavior: smooth;
}

body {
  background-color: #f3f5f8;
  position: relative;
  overflow-x: hidden;
}

body.dark-theme {
  background-color: var(--bg-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--gray-color);
}

/*Preloader*/

.preloader {
  background: var(--bg-color);
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 10000;
  opacity: 1;
  transition: all 0.5s;
}

.preloader.fadeout {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  left: 0;
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.bounce {
  position: relative;
  box-shadow: var(--inner-shadow);
  width: 50px;
  height: 50px;
  margin: 100px auto;
  border-radius: 3em;
}
.bounce-circle {
  width: 30px;
  height: 30px;
  background-color: var(--main-color);
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1s infinite ease-in-out;
  animation: sk-scaleout 1s infinite ease-in-out;
  position: absolute;
  top: 11px;
  left: 11px;
}
@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1.1);
    opacity: 0;
  }
}
@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0;
  }
}

/* General */

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 120px 15px;
}

.grid {
  display: grid;
  align-items: start;
  gap: 20px;
}

.grid-col-2 {
  grid-template-columns: 300px 1fr;
}

.grid-side  {
  direction: ltr;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.mb_ {
  margin-bottom: 52px;
}

.sub-title {
  color: var(--gray-color);
  font-size: 1rem;
  font-weight: bold;
  display: block;
}

.main-title {
  margin-bottom: 32px;
}

.main-title h2 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-one {
  font-size: 1rem;
  color: var(--p-color);
  line-height: 2;
}

.p-two,
.p-two p {
  font-size: 0.875rem;
  color: var(--p-color);
  line-height: 1.8;
}

/* For Parent */

.outer-sh {
  background-color: var(--bg-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  box-shadow: var(--outer-shadow);
  border-radius: 100%;
}

.inner-sh {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.outer-sh:hover,
.exp-container:hover .outer-sh,
.service:hover .outer-sh {
  box-shadow: unset;
}

/* For Child  */

.outer-sh:hover .inner-sh,
.main-btn a:hover .inner-sh,
.exp-container:hover .inner-sh,
.service:hover .inner-sh,
.outer-sh:hover .page-numbers {
  box-shadow: var(--inner-shadow);
  border-radius: 100%;
}

.btn.outer-sh:hover .inner-sh,
.btn-form.outer-sh:hover .inner-sh {
  border-radius: 50px;
}

.main-btn {
  display: flex;
  justify-content: space-between;
  width: 100%;

  flex-grow: 1;
  align-items: center;
}

.main-btn svg {
  width: 28px;
  height: 28px;
}

.main-btn a {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--gray-color);
  font-size: 0.875rem;
}

.main-btn .btn-icon {
  width: 48px;
  height: 48px;
  color: var(--main-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.main-btn .btn-icon svg {
  color: var(--main-color);
}

.down-border {
  border: 1px solid var(--main-color);
  border-radius: 50%;
  padding: 2px;
}

/* Header */

header {
  position: sticky;
  top: 15px;
}

.main-side {
  overflow: hidden;
  padding: 4px;
  margin: -4px;
}

.main-sidebar {
  border-radius: 40px;
  background-color: var(--bg-color);
  box-shadow: var(--outer-shadow);
  border: none;
  border-radius: 30px;
  padding: 40px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

/* User Container */

.user-container {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.user-container .user-img {
  background-color: var(--bg-color);
  width: 200px;
  height: 200px;
  border-radius: 100%;
  box-shadow: var(--inner-shadow);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 15px;
  position: relative;
  user-select: none;
  cursor: pointer;
}

.user-container .user-img.home-profile.effect-profile::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25% ;
  left: -25%;
  background: conic-gradient(from 90deg, transparent 50%, var(--main-color) 100%);
  animation: rotate 2s infinite linear;
  border-radius: 100%;
  filter: blur(5px);
  transition: all 0.3s;
  visibility: visible;
  opacity: 1;
}

.user-container .user-img.home-profile.effect-profile::after {
  content: "";
  position: absolute;
  width: 94%;
  height: 94%;
  left: 3%;
  top: 3% ;
  background-color: var(--bg-color);
  border-radius: 100%;
  transition: all 0.3s;
  visibility: visible;
  opacity: 1;
}

.user-container .user-img.home-profile.effect-profile.hide::before,
.user-container .user-img.home-profile.effect-profile.hide::after {
  visibility: hidden;
  opacity: 0;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

.user-container img {
  width: 180px;
  height: 180px;
  border-radius: 100%;
  border: 10px solid var(--bg-color);
  box-shadow: var(--outer-shadow);
  object-fit: cover;
  position: relative;
  z-index: 5;
}

.profile-overlay{
  position: absolute;
  width: 180px;
  height: 180px;
  display: flex;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  z-index: 5;
  border-radius: 100%;
}

.user-img:hover .profile-overlay{
  visibility: visible;
  opacity: 1;
}

.profile-overlay svg{
  width: 24px;
  height: 24px;
  stroke: #fff;
  position: relative;
  top: 0;
  transition: all 0.3s;
}

.user-img:hover .profile-overlay svg{
  top: 50%;
  transform: translateY(-50%);
}

.user-content {
  text-align: center;
}

.user-content .user-name {
  font-weight: bold;
  font-size: 1.5rem;
  color: var(--gray-color);
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
}

.user-name span,
.current-user span {
  position: relative;
}

.user-name span,
.current-user span {
  position: relative;
  word-break: break-all;
  background: linear-gradient(to top, var(--main-color) 0%, var(--main-color) 50%, var(--bg-color) 50%, var(--bg-color) 100%);
}

.user-content p {
  color: var(--p-color);
}

/* Menu */

.main-menu {
  width: 100%;
  padding: 0 25px;
}

.main-menu ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.menu-item,
.main-menu .menu-item:hover a,
.main-menu .menu-item:hover form {
  border-radius: 50px;
}

.menu-item a,
.menu-item form {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border-radius: 50px;
  color: var(--gray-color);
}

.menu-item.active {
  box-shadow: var(--inner-shadow);
}

.menu-item svg {
  width: 28px;
  height: 28px;
  color: var(--main-color);
}

.menu-item form svg {
  color: var(--main-color);
}

.menu-item i {
  color: var(--main-color);
  font-size: 1.425rem;
}

/* Main Content */

.main-content {
  background-color: var(--bg-color);
  box-shadow: var(--outer-shadow);
  border: none;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  padding: 40px 35px;
  direction: ltr;
}

.main-content.home {
  align-items: center;
  padding: 0;
}

.elementor-html .main-content.home {
  align-items: unset;
  padding: 40px 35px;
}

.user-info {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.user-info .current-user,
.about-info .current-user {
  color: var(--gray-color);
  font-size: 2rem;
  text-transform: uppercase;
}

.skills {
  overflow: hidden;
  padding: 10px 0;
}

.user-info .user-skill,
.about-info .user-skill {
  font-size: 1.125rem;
  color: var(--p-color);
  margin-bottom: 15px;
}

.social-link ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.social-link a {
  width: 42px;
  height: 42px;
  color: var(--p-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-link svg {
  width: 20px;
  height: 20px;
  color: var(--p-color);
}

.social-link i {
  font-size: 1.425rem;
}

.social-link a:hover svg {
  color: var(--main-color);
}

.social-link a:hover i {
  color: var(--main-color);
}

.empty-line {
  width: 75px;
  height: 10px;
  border-radius: 10px;
  background-color: var(--bg-color);
  box-shadow: var(--inner-shadow);
  display: flex;
  align-items: center;
  padding: 0 8px;
}

.empty-line.center {
  justify-content: center;
  padding: 0;
  margin: 0 auto;
}

.empty-line.left {
  justify-content: flex-end;
  margin-left: 0;
  margin-right: auto;
}

.empty-line.small {
  width: 50px;
}

.empty-line::after {
  content: "";
  background-color: var(--main-color);
  width: 50%;
  height: 50%;
  display: block;
  border-radius: 10px;
}

.home .main-btn {
  padding: 50px;
}

.home .main-btn a {
  font-size: 1.125rem;
}

.home .main-btn .btn-icon {
  width: 58px;
  height: 58px;
}

.home .main-btn svg {
  width: 28px;
  height: 28px;
}

/* Footer */

footer {
  grid-column: 2 / 3;
}

footer .copy-right {
  background-color: var(--bg-color);
  box-shadow: var(--inner-shadow);
  padding: 8px 20px;
  border-radius: 50px;
  text-align: center;
  color: var(--p-color);
  width: max-content;
  margin: 0 auto;
}

/* SideBar Footer */

.sidebar-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: var(--p-color);
  width: 100%;
}

/* About */

.about-info {
  height: auto;
  position: relative;
  z-index: 1;
}

.about-info .current-user {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.about-info .user-skill {
  font-size: 1rem;
  margin-bottom: 16px;
}

.about-text {
  margin-bottom: 24px;
}

.about-text p {
  column-count: 2;
  column-gap: 25px;
}

.box-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.box-content {
  padding: 10px;
  box-shadow: var(--inner-shadow);
  border-radius: 15px;
}

.box-content ul {
  background-color: var(--bg-color);
  box-shadow: var(--outer-shadow);
  border-radius: 15px;
  padding: 15px;
}

.box-content ul li {
  display: flex;
  column-gap: 20px;
  align-items: center;
  color: var(--p-color);
  font-size: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.box-content ul li:last-child {
  border-bottom: none;
}

.box-content li span {
  color: var(--gray-color);
  font-weight: bold;
  border-right: 1px solid var(--border-color);
  width: 70px;
  padding: 8px 0;
}

.box-content li p {
  padding: 8px 0;
  font-size: 0.875rem;
}

/* Skills */

.skill .sub-title {
  margin-bottom: 12px;
}

.skill-list {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 0;
  gap: 20px;
  margin-bottom: 24px;
}

.skill-item {
  height: 15px;
  border-radius: 10px;
  background-color: var(--bg-color);
  box-shadow: var(--inner-shadow);
  display: flex;
  align-items: center;
  padding: 0 8px;
}
.skill-progress {
  height: 40%;
  border-radius: 10px;
}
.skill-label {
  background-color: var(--bg-color);
  box-shadow: var(--inner-shadow);
  border-radius: 50px;
  padding: 5px 10px;
  height: 120px;
  text-align: center;
  color: var(--p-color);
  display: inline-block;
  transform: scale(-1);
  writing-mode: vertical-lr;
  direction: ltr !important;
  margin-top: 12px;
}

.skill-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Experience */

.exp-container {
  position: relative;
  cursor: default;
}

.exp-container::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 10px;
  top: 0;
  left: 21px;
  background-color: var(--bg-color);
  box-shadow: var(--inner-shadow);
  border-radius: 50px;
}

.exp-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  padding-left: 70px;
  position: relative;
}

.exp-content::before {
  content: "";
  background-color: var(--main-color);
  height: 10px;
  width: 5px;
  position: absolute;
  top: 30px;
  left: 23.5px;
  border-radius: 50px;
  z-index: 2;
}

.exp-icon {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  position: relative;
  z-index: 1;
}

.exp-icon div {
  width: 52px;
  height: 52px;
}

.exp-icon svg {
  width: 28px;
  height: 28px;
  color: var(--main-color);
}

.exp-date {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  flex-wrap: wrap;
  gap: 5px;
}

.exp-date svg {
  width: 20px;
  height: 20px;
  stroke: var(--p-color);
  margin-right: 5px;
}

.exp-date .date-text {
  display: inline-block;
  color: var(--p-color);
}

.exp-date .current-date {
  background-color: var(--bg-color);
  box-shadow: var(--inner-shadow);
  border-radius: 50px;
  padding: 0 12px;
  color: var(--main-color);
}

/* services  */

.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.service {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  cursor: default;
}

.service .service-icon {
  width: max-content;
  border-radius: 100%;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.service-icon div {
  width: 75px;
  height: 75px;
}

.service-icon svg {
  width: 38px;
  height: 38px;
  color: var(--main-color);
}


.services-container .empty-line {
  grid-column: 1 / -1;
  margin: 0 auto;
  width: 40px;
}

/* User Comment */

.comment-container {
  cursor: default;
  overflow: hidden;
}

.comment-box {
  background-color: var(--bg-color);
  box-shadow: var(--outer-shadow);
  border-radius: 30px;
  position: relative;
  padding: 0 25px;
  padding-bottom: 25px;
  margin-bottom: 15px;
}

.comment-box .comment-img img {
  background-color: var(--bg-color);
  width: 100px;
  height: 100px;
  border-radius: 100%;
  border: 7px solid var(--bg-color);
  box-shadow: var(--outer-shadow);
  object-fit: cover;
  transform: translate(10px, -25px);
  position: absolute;
  top: 0;
  z-index: 1;
}

.comment-container .comment-content {
  position: relative;
  overflow: hidden;
}

.comment-content p {
  padding-top: 100px;
}

.comment-content::after {
  content: "";
  width: 120px;
  height: 120px;
  border-radius: 100%;
  transform: translateY(-30%);
  box-shadow: var(--inner-shadow);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
}

.comment-name {
  padding-right: 25px;
  font-size: 0.875rem;
  color: var(--gray-color);
}

.comment-name small {
  color: var(--p-color);
  display: block;
}

.comment-slider {
  padding-top: 25px;
  padding-right: 3px;
}

.comment-slider .swiper-slide {
  padding-left: 3px;
}

.slider-pagination {
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 30px;
  column-gap: 8px;
}

.slider-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 5px;
  border-radius: 50px;
  transition: all 0.4s;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--main-color);
  width: 30px;
}

/* certificates*/

.certi-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.certi {
  box-shadow: var(--inner-shadow);
  border-radius: 15px;
  display: flex;
  padding: 10px;
  gap: 20px;
}

.base-certi {
  box-shadow: var(--outer-shadow);
  border-radius: 15px;
  padding: 30px;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 20px;
}

.certi-icon svg {
  width: 48px;
  height: 48px;
  color: var(--main-color);
}

.certi-icon {
  box-shadow: var(--inner-shadow);
  width: 96px;
  height: 96px;
  border-radius: 100%;
  flex-shrink: 0;
}
.certi-content p {
  font-size: 16px;
  font-weight: bold;
  display: block;
  color: var(--gray-color);
}
.certi-content span {
  font-size: 14px;
  color: var(--p-color);
}
.certi-content small {
  color: var(--p-color);
  display: block;
}

/* Protfolio */

.tab-items {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.tab-items li {
  border-radius: 50px;
  transition: all 0.3s;
}

.tab-items li span,
.tab-items li a {
  padding: 8px 25px;
  color: var(--gray-color);
  display: inline-block;
  border-radius: 50px;
  transition: all 0.3s;
  cursor: pointer;
}

.tab-items li:hover {
  box-shadow: var(--inner-shadow);
}

.tab-items li.active {
  box-shadow: var(--inner-shadow);
}

.tab-items .active a,
.tab-items .active span {
  color: var(--main-color);
}

.tab-items a:hover {
  box-shadow: var(--inner-shadow);
  color: var(--main-color);
}

.protfillio-container {
  display: grid;
  gap: 20px;
  /* grid-template-columns: repeat(3, 1fr); */
}

.protfillio .empty-line.center {
  margin: 35px auto;
  width: 50px;
}

.protfillio .empty-line.end-line {
  margin-top: 80px;
  margin-bottom: 35px;
  width: 75px;
}

.protfillio-item {
  background-color: var(--bg-color);
  box-shadow: var(--inner-shadow);
  padding: 10px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.protfillio-item .protfillio-img {
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  border: 10px solid var(--bg-color);
  box-shadow: var(--outer-shadow);
}

.protfillio-img img {
  height: inherit;
}

.portfilio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}

.protfillio-item:hover .portfilio-overlay {
  visibility: visible;
  opacity: 1;
}

.portfilio-overlay svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  position: relative;
  top: 0;
  transition: all 0.3s;
}

.protfillio-item:hover .portfilio-overlay svg {
  top: 50%;
  transform: translateY(-50%);
}

/* Blog */

.blog-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.blog-info {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.blog-info .info-item {
  display: flex;
  align-items: center;
}

.blog-img,
.inside-blog figure {
  background-color: var(--bg-color);
  box-shadow: var(--inner-shadow);
  padding: 10px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.inside-blog figure {
  margin: 20px 0;
}

.blog-img img,
.inside-blog figure img {
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border: 10px solid var(--bg-color);
  box-shadow: var(--outer-shadow);
}

.inside-blog .blog-content figure:hover img {
  box-shadow: var(--outer-shadow);
  border-radius: 15px;
}

.inside-blog figure:hover {
  box-shadow: var(--inner-shadow);
  border-radius: 15px;
}

.blog-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.blog-title h3 {
  font-size: 1.125rem;
}

.blog-title .blog-date {
  background-color: var(--bg-color);
  box-shadow: var(--inner-shadow);
  padding: 0 12px;
  font-size: 0.875rem;
  display: inline-block;
  color: var(--main-color);
  border-radius: 50px;
}

.info-item {
  font-size: 0.875rem;
  color: var(--p-color);
}

.info-item a {
  color: var(--main-color);
  padding-right: 2px;
}

.info-item svg {
  color: var(--p-color);
  margin-left: 2px;
}

.short-des::before {
  content: "";
  display: block;
  height: 8px;
  width: 100%;
  background-color: var(--bg-color);
  box-shadow: var(--inner-shadow);
  border-radius: 50px;
  margin: 10px 0;
}

.btn.outer-sh,
.btn-form.outer-sh {
  border-radius: 50px;
}

.btn span,
.btn-form input {
  padding: 10px 20px;
  display: inline-block;
  font-size: 1rem;
  background-color: unset;
  border: none;
  color: var(--main-color);
}

.btn,
.btn-form {
  outline: none;
  border: none;
  display: inline-block;
  cursor: pointer;
  position: relative;
}

.btn:hover span.inner-sh {
  border-radius: 50px;
}

.blog-items .blog-item:last-child .empty-line {
  display: none;
}

/* Contact Us */

/* Map Location */

.location-container {
  background-color: var(--bg-color);
  box-shadow: var(--inner-shadow);
  padding: 10px;
  border-radius: 10px;
}

.page-container .location-container a {
  display: block;
  border-radius: 10px;
  border: 10px solid var(--bg-color);
  box-shadow: var(--outer-shadow);
  background-color: var(--bg-color);
  position: relative;
}

.location-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}

.location-marker {
  position: absolute;
  width: 32px;
  height: 32px;
  background-color: var(--main-color);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation: ping 0.8s ease-in-out infinite;
  animation: ping 0.8s ease-in-out infinite;
  border-radius: 100%;
}

@-webkit-keyframes ping {
  0% {
    -webkit-traansform: translate(-50%, -50%) scale(0.2);
    transform: translate(-50%, -50%) scale(0.2);
    opacity: 0.8;
  }
  80% {
    -webkit-traansform: translate(-50%, -50%) scale(1.2);
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
  100% {
    -webkit-traansform: translate(-50%, -50%) scale(2.2);
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
}
@keyframes ping {
  0% {
    transform: translate(-50%, -50%) scale(0.2);
    opacity: 0.8;
  }
  80% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
}

/* Contact Info */

.contact-info .main-title {
  margin-bottom: 76px;
}

.contact-container {
  position: relative;
}

.contact-container .location-icon {
  width: 88px;
  height: 88px;
  border-radius: 100%;
  background-color: var(--bg-color);
  box-shadow: var(--inner-shadow);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contact-container .location-icon svg {
  width: 34px;
  height: 34px;
  color: var(--main-color);
}

.contact-content {
  box-shadow: var(--inner-shadow);
  border-radius: 10px;
  padding: 10px;
}

.contact-content .contact-text {
  background-color: var(--bg-color);
  box-shadow: var(--outer-shadow);
  border-radius: 10px;
  padding: 100px 0;
  text-align: center;
}

.contact-text p {
  width: 50%;
  color: var(--gray-color);
  margin: 0 auto;
}

.contact-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.contact-list .contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.contact-item .contact-icon {
  background-color: var(--bg-color);
  box-shadow: var(--inner-shadow);
  width: 68px;
  height: 68px;
  border-radius: 100%;
  transform: translate(0, -50%);
}

.contact-item .contact-icon svg {
  width: 28px;
  height: 28px;
  color: var(--main-color);
}

.contact-item span {
  background-color: var(--bg-color);
  box-shadow: var(--inner-shadow);
  border-radius: 50px;
  padding: 5px 0;
  display: inline-block;
  width: 100%;
  text-align: center;
  transform: translate(0, -50%);
  font-size: 0.875rem;
  color: var(--p-color);
}

/* Send Me An Email */

.form-container {
  display: flex;
  gap: 15px;
}

.form-container .form-control {
  flex: 1;
  margin-bottom: 15px;
}

.contact-form,
.wpcf7-response-output {
  direction: ltr;
}

.contact-form .form-control {
  margin-bottom: 15px;
}

.contact-form .form-control,
.form-control:hover .inner-sh {
  border-radius: 30px;
}

.input-style {
  background: none;
  border: none;
  outline: none;
  padding: 10px 15px;
  width: 100%;
  border-radius: 20px;
  color: var(--gray-color);
  display: block;
}

textarea.input-style {
  resize: none;
  height: 200px;
}

.input-style::placeholder {
  color: var(--p-color);
}

.blog-content {
  position: relative;
}

.blog-content .content-img {
  color: var(--p-color);
  text-align: center;
}

.content-img span {
  margin: 8px 0;
  display: block;
  font-size: 0.875rem;
}

.content-img figure {
  background-color: var(--bg-color);
  box-shadow: var(--inner-shadow);
  padding: 10px;
  border-radius: 15px;
}

.content-img figure img {
  box-shadow: var(--outer-shadow);
  border: 10px solid var(--bg-color);
  border-radius: 15px;
  display: block;
}

.social-border {
  height: 8px;
  width: 100%;
  box-shadow: var(--inner-shadow);
  border-radius: 50px;
  margin: 30px 0;
}

.inside-blog .social-link ul {
  justify-content: center;
}

/*  blog-comment */

.blog-comments .blog-comment {
  margin-bottom: 40px;
}

.blog-comment {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-comment .comment-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.comment-pic {
  box-shadow: var(--inner-shadow);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.comment-header img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--outer-shadow);
  border: 5px solid var(--bg-color);
}

.comment-header p {
  color: var(--gray-color);
  font-size: 1rem;
  margin-bottom: 3px;
}

.comment-header span {
  color: var(--p-color);
  font-size: 0.75rem;
  display: block;
}

.comment-body {
  padding: 10px 0;
}

.comment-body p {
  color: var(--gray-color);
}

.comment-footer {
  display: flex;
  align-items: center;
  color: var(--main-color);
}
.comment-footer a {
  font-size: 0.875rem;
  color: var(--main-color);
}
.comment-footer a svg {
  margin-left: 3px;
}

.comment-reply {
  padding-right: 50px;
  position: relative;
  margin: 25px 0;
}

.comment-reply::before {
  content: "";
  background-color: var(--bg-color);
  box-shadow: var(--inner-shadow);
  height: 100%;
  width: 8px;
  display: block;
  position: absolute;
  top: 0;
  right: 10px;
  transform: translateX(-100%);
  border-radius: 50px;
}

.menu-search svg {
  flex-shrink: 0;
}

.menu-search input {
  background-color: var(--bg-color);
  border: none;
  direction: ltr;
  outline: none;
  width: 100%;
}

.menu-search input::placeholder {
  font-size: 1rem;
  color: var(--gray-color);
}

.menu-search input:focus::placeholder {
  opacity: 0;
}

/* single-portifio */

.portifio-content {
  padding: 0 80px;
}

.portifio-content .protfillio-item {
  display: block;
}

.social-link .protfillio {
  align-items: center;
}

.portifio-info {
  margin-top: 50px;
  margin-bottom: 30px;
}

.portifio-info p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-color);
}

.portifio-info h3 {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.portifio-detail ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 50px;
  color: var(--p-color);
}

.portifio-detail ul span {
  color: var(--gray-color);
}

.protfillio-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.body-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  top: 0;
  user-select: none;
}

.body-bg img {
  width: 500px;
  height: 500px;
  overflow: hidden;
}

.body-bg .layer1 {
  position: absolute;
  display: block;
  right: 10% !important;
  top: 10% !important;
  width: 120px;
}

.body-bg .layer2 {
  position: absolute;
  display: block;
  right: 23% !important;
  top: 6% !important;
  width: 120px;
  height: 120px;
  box-shadow: var(--inner-shadow);
  border-radius: 50%;
}

.body-bg .layer3 {
  position: absolute;
  display: block;
  top: auto !important;
  bottom: 30% !important;
  left: 15% !important;
  width: 100px;
  height: 100px;
  overflow: hidden;
  box-shadow: var(--inner-shadow);
  border-radius: 50%;
}

.body-bg .layer4 {
  position: absolute;
  display: block;
  top: auto !important;
  right: 20% !important;
  bottom: 10% !important;
  width: 100px;
  height: 100px;
  box-shadow: var(--outer-shadow);
  border-radius: 20px;
}

.body-bg .layer5 {
  position: absolute;
  top: 30% !important;
  left: 7% !important;
  width: 100px;
  height: 100px;
}

.body-bg .layer6 {
  position: absolute;
  top: 5% !important;
  left: 20% !important;
  color: var(--main-color);
}

.body-bg .layer6 svg {
  width: 100%;
  height: 100%;
}

.site-tools {
  display: flex;
  justify-content: flex-end;
  padding-top: 40px;
  padding-left: 40px;
  position: sticky;
  top: 0;
  gap: 10px;
  z-index: 10;
}

.dark-mode #dark-mode {
  cursor: pointer;
}

.site-tools .dark-mode .inner-sh,
.site-tools .lan-selector .inner-sh {
  padding: 5px;
  border-radius: 15px;
}

.dark-mode.outer-sh,
.lan-selector.outer-sh {
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.lan-selector .inner-sh {
  display: flex;
  align-items: center;
  list-style: none;
}

.lan-selector .inner-sh a {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  width: 100%;
  height: 100%;
  transform: translateY(100%);
  color: var(--gray-color);
}

.lan-content {
  transition: all 0.4s;
}

.lan-selector:hover .lan-content {
  transform: translateY(-100%);
}

.dark-mode svg,
.lan-selector svg {
  width: 38px;
  height: 38px;
  color: var(--gray-color);
  display: block;
  transition: all 0.4s;
}

.lan-selector:hover svg {
  opacity: 0;
}

/* pagination */

.pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.pagination-item .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.page-numbers svg {
  transform: scalex(-1);
}

.pagination-item a {
  color: var(--gray-color);
}

.pagination-item span {
  color: var(--main-color);
}

@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

.user-skill {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* Loader */

.loader {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
}

.loader.active {
  display: flex;
}

.dot-bricks {
  position: relative;
  top: 8px;
  left: -9999px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--color-1);
  color: var(--color-1);
  box-shadow: 9991px -16px 0 0 var(--color-1), 9991px 0 0 0 var(--color-1), 10007px 0 0 0 var(--color-1);
  animation: dotBricks 2s infinite ease;
}

@keyframes dotBricks {
  0% {
    box-shadow: 9991px -16px 0 0 var(--main-color), 9991px 0 0 0 var(--main-color), 10007px 0 0 0 var(--main-color);
  }
  8.333% {
    box-shadow: 10007px -16px 0 0 var(--main-color), 9991px 0 0 0 var(--main-color), 10007px 0 0 0 var(--main-color);
  }
  16.667% {
    box-shadow: 10007px -16px 0 0 var(--main-color), 9991px -16px 0 0 var(--main-color), 10007px 0 0 0 var(--main-color);
  }
  25% {
    box-shadow: 10007px -16px 0 0 var(--main-color), 9991px -16px 0 0 var(--main-color), 9991px 0 0 0 var(--main-color);
  }
  33.333% {
    box-shadow: 10007px 0 0 0 var(--main-color), 9991px -16px 0 0 var(--main-color), 9991px 0 0 0 var(--main-color);
  }
  41.667% {
    box-shadow: 10007px 0 0 0 var(--main-color), 10007px -16px 0 0 var(--main-color), 9991px 0 0 0 var(--main-color);
  }
  50% {
    box-shadow: 10007px 0 0 0 var(--main-color), 10007px -16px 0 0 var(--main-color), 9991px -16px 0 0 var(--main-color);
  }
  58.333% {
    box-shadow: 9991px 0 0 0 var(--main-color), 10007px -16px 0 0 var(--main-color), 9991px -16px 0 0 var(--main-color);
  }
  66.666% {
    box-shadow: 9991px 0 0 0 var(--main-color), 10007px 0 0 0 var(--main-color), 9991px -16px 0 0 var(--main-color);
  }
  75% {
    box-shadow: 9991px 0 0 0 var(--main-color), 10007px 0 0 0 var(--main-color), 10007px -16px 0 0 var(--main-color);
  }
  83.333% {
    box-shadow: 9991px -16px 0 0 var(--main-color), 10007px 0 0 0 var(--main-color), 10007px -16px 0 0 var(--main-color);
  }
  91.667% {
    box-shadow: 9991px -16px 0 0 var(--main-color), 9991px 0 0 0 var(--main-color), 10007px -16px 0 0 var(--main-color);
  }
  100% {
    box-shadow: 9991px -16px 0 0 var(--main-color), 9991px 0 0 0 var(--main-color), 10007px 0 0 0 var(--main-color);
  }
}

/* Contact Form */

.wpcf7-spinner {
  position: relative;
  top: auto;
  left: auto;
  display: none;
  margin: 10px 20px;
}

.wpcf7-form.submitting .btn-form input.inner-sh {
  display: none;
}

.wpcf7-form.submitting .btn-form .wpcf7-spinner {
  display: block;
}

.wpcf7-not-valid-tip {
  display: none;
}

.dark-theme .wpcf7-response-output {
  color: var(--gray-color);
}

/* not found */

.not-found {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
  color: var(--main-color);
  font-weight: bold;
}

.not-found p {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--gray-color);
}

.not-found > span {
  font-size: 6rem;
}

/*  */

p.comment-notes,
p.logged-in-as {
  margin-bottom: 20px;
  color: var(--gray-color);
}

p.logged-in-as a {
  color: var(--main-color);
  text-decoration: underline;
}

p.comment-approved {
  font-size: 0.875rem;
  color: var(--gray-color);
  padding: 5px 0;
}

.comment-footer .comment-reply-link::before {
  content: "\f3e5  ";
  vertical-align: middle;
  font-weight: bold;
}

.comment.parent .comment {
  padding-right: 15px;
}

.comment-paging {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.nav-next a,
.nav-previous a {
  padding: 10px 20px;
  cursor: pointer;
  color: var(--main-color);
  display: inline-block;
}

.nav-next.outer-sh,
.nav-previous.outer-sh,
.nav-next.outer-sh:hover .inner-sh,
.nav-previous.outer-sh:hover .inner-sh {
  border-radius: 50px;
}

.right-arrow,
.left-arrow {
  transform: scalex(-1);
}

.right-arrow:hover a,
.left-arrow:hover a {
  box-shadow: var(--inner-shadow);
  border-radius: 100%;
}

/* blockquote */

blockquote {
  background-color: var(--bg-color);
  box-shadow: var(--inner-shadow);
  padding: 10px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  margin: 20px;
}

blockquote::after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 15px;
  border: 10px solid var(--bg-color);
  box-shadow: var(--outer-shadow);
}

blockquote::before {
  content: "\f10e";
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  box-shadow: var(--inner-shadow);
  z-index: 2;
  font-size: 1.8rem;
  color: var(--main-color);
  flex-shrink: 0;
  float: left;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 15px;
}

blockquote p,
blockquote cite {
  padding: 15px;
  display: block;
  position: relative;
  z-index: 2;
  margin-left: 100px;
}

blockquote p {
  padding-bottom: 0;
  color: var(--p-color);
}

blockquote cite {
  font-weight: bold;
  color: var(--gray-color);
}

/* admin bar */

#wpadminbar * {
  font-family: "Shabnam", "Tahoma,sans-serif", "dashicons" !important;
}

#wpadminbar *:before {
  line-height: normal;
}

/* go to up */

.gtu-container {
  width: max-content;
  transition: all 0.3s;
  cursor: pointer;
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 10;
}

.gtu {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gtu svg {
  stroke: var(--p-color);
}

.gtu:hover svg {
  stroke: var(--main-color);
}

/* img modal */

.img-modal {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  padding: 50px;
  z-index: 20;
  visibility: hidden;
  opacity: 0;
  user-select: none;
  transition: all 0.3s;
}

.img-modal.active {
  visibility: visible;
  opacity: 1;
}

.img-modal > div:nth-child(1) {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.img-slider img {
  display: block;
  width: 700px;
  margin: 0 auto;
  border-radius: 20px;
  height: auto;
}

.swiper-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.5);
  color: #000;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all 0.3s;
  position: absolute;
  cursor: pointer;
}

.swiper-btn:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.swiper-btn.swiper-btn-prev {
  left: 40px;
}

.swiper-btn.swiper-btn-next {
  right: 40px;
}

.img-modal_close {
  position: absolute;
  top: 50px;
  right: 50px;
  background-color: rgb(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 100%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  cursor: pointer;
  z-index: 10;
}

.img-modal_close:hover {
  background-color: rgb(0, 0, 0, 0.8);
}


#wpadminbar {
  position: fixed !important;
}