@charset "utf-8";

/*
/*	Copyright (c) 2021 Marketify
/*	Author: Marketify
/*	This file is made for CURRENT TEMPLATE

01)	palash BASE
02)	palash HEADER
03) palash MOBILE MENU
04) palash MAINPART
05) palash HOME
06) palash ABOUT
07) palash PORTFOLIO
08) palash NEWS
09) palash CONTACT
10) palash FOOTER
11) palash MAGIC CURSOR
12) palash GLITCH EFFECT
13) palash PARTICLE EFFECT
14) palash RIPPLE EFFECT
15) palash MEDIA QUERIES (FOR SMALL DEVIVES)


/*---------------------------------------------------*/
/*	01) palash BASE
/*---------------------------------------------------*/

html {
  overflow-x: hidden;
  padding: 0px;
  margin: 0px;
}
body {
  overflow-x: hidden;
  width: 100%;
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0px;
  word-wrap: break-word;
  font-weight: 400;
  background-color: #f6fbff;
  color: #7d7789;
}
svg {
  fill: currentcolor;
  width: 15px;
  height: 15px;
}
img.svg {
  width: 15px;
  height: 15px;
}
::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #aaa6b2;
}
:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #aaa6b2;
  opacity: 1;
}
::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #aaa6b2;
  opacity: 1;
}
:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #aaa6b2;
}
::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #aaa6b2;
}

::placeholder {
  /* Most modern browsers support this now. */
  color: #aaa6b2;
}
body.dark::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #9e9ba3;
}
body.dark:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #9e9ba3;
  opacity: 1;
}
body.dark::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #9e9ba3;
  opacity: 1;
}
body.dark:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #9e9ba3;
}
body.dark::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #9e9ba3;
}

body.dark::placeholder {
  /* Most modern browsers support this now. */
  color: #9e9ba3;
}

body::-webkit-scrollbar {
  width: 11px;
}
body {
  scrollbar-width: thin;
  scrollbar-color: #999 #fff;
}
body:-webkit-scrollbar-track {
  background: #fff;
}
body::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 6px;
  border: 3px solid #fff;
}
body.dark::-webkit-scrollbar {
  width: 11px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  font-family: "Poppins";
  color: #333;
}
h1 {
  font-size: 45px;
}
h2 {
  font-size: 36px;
}
h3 {
  font-size: 30px;
}
h4 {
  font-size: 24px;
}
h5 {
  font-size: 20px;
}
h6 {
  font-size: 16px;
}
.palash_all_wrap {
  width: 100%;
  min-height: 100vh;
  clear: both;
  float: left;
  position: relative;
}
.palash_all_wrap,
.palash_all_wrap * {
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box; /* Firefox, other Gecko */
  box-sizing: border-box; /* Opera/IE 8+ */
}
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  display: flex;
}
#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
  background-color: #000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#preloader:after {
  left: auto;
  right: 0;
}
#preloader .loader_line {
  margin: auto;
  width: 1px;
  height: 250px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.8s ease 0s;
  -o-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}
.loader_line:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 0%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #fff;
  -webkit-animation: lineheight 1000ms ease-in-out 0s forwards;
  -o-animation: lineheight 1000ms ease-in-out 0s forwards;
  animation: lineheight 1000ms ease-in-out 0s forwards;
}
.loader_line:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #777;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-animation: lineround 1200ms linear 0s infinite;
  -o-animation: lineround 1200ms linear 0s infinite;
  animation: lineround 1200ms linear 0s infinite;
  animation-delay: 2000ms;
}

@keyframes lineheight {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}

@keyframes lineround {
  0% {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(200%);
    -ms-transform: translateY(200%);
    -o-transform: translateY(200%);
    transform: translateY(200%);
  }
}

/*hiding all*/
.preloaded .loader_line:after {
  opacity: 0;
}
.preloaded .loader_line {
  opacity: 0;
  height: 100% !important;
}
.preloaded:before,
.preloaded:after {
  -webkit-animation: preloadedzero 300ms ease-in-out 500ms forwards;
  -o-animation: preloadedzero 300ms ease-in-out 500ms forwards;
  animation: preloadedzero 300ms ease-in-out 500ms forwards;
}
@keyframes preloadedzero {
  0% {
    width: 50%;
  }
  100% {
    width: 0%;
  }
}

/*---------------------------------------------------*/
/*	02) palash HEADER
/*---------------------------------------------------*/

.palash_header {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 70px;
  line-height: 70px;
  background-color: #fff;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 70px;
}
.palash_header .logo img {
  max-width: 110px;
  max-height: 65px;
}
.palash_header .menu {
  position: relative;
}
.palash_header .menu ul {
  margin: 0px;
  list-style-type: none;
}
.palash_header .menu ul li {
  margin: 0px;
  float: left;
}
.palash_header .menu ul li a {
  text-decoration: none;
  color: #333;
  font-family: "Poppins";
  font-weight: 500;
  padding: 0px 30px;
  display: inline-block;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.palash_header .menu .ccc {
  position: absolute;
  bottom: 0;
  width: 30px;
  display: block;
  top: 15px;
  bottom: 15px;
  background-color: #333;
  z-index: -1;

  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.palash_header .menu ul li.mleave.active a {
  color: #333;
}
.palash_header .menu ul li.active a {
  color: #fff;
}
.palash_header .menu ul li a:hover {
  color: #fff;
}

/*---------------------------------------------------*/
/*	03) palash MOBILE MENU
/*---------------------------------------------------*/

.palash_topbar {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 50px;
  background-color: #fff;
  z-index: 20;
  display: none;
}
.palash_topbar .topbar_inner {
  width: 100%;
  height: 100%;
  clear: both;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 20px;
}
.palash_topbar .logo img {
  max-width: 100px;
  max-height: 40px;
}
.palash_topbar .hamburger {
  padding: 0px;
}
.palash_topbar .hamburger-inner,
.palash_topbar .hamburger-inner:after,
.palash_topbar .hamburger-inner:before {
  width: 30px;
  height: 2px;
}
.palash_topbar .trigger {
  position: relative;
  top: 5px;
}
.palash_topbar .hamburger-box {
  width: 30px;
}
.palash_mobile_menu {
  position: fixed;
  top: 50px;
  right: -200px;
  height: 100vh;
  width: 200px;
  z-index: 15;
  background-color: #fff;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.palash_mobile_menu.opened {
  right: 0px;
}
.palash_mobile_menu .inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: right;
  padding: 70px 20px 20px 20px;
}
.palash_mobile_menu .avatar {
  width: 70px;
  height: 70px;
  position: relative;
  float: right;
  margin-bottom: 60px;
}
.palash_mobile_menu .avatar .image {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.palash_mobile_menu .menu_list {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  margin-bottom: 50px;
}
.palash_mobile_menu .menu_list ul {
  margin: 0px;
  list-style-type: none;
}
.palash_mobile_menu .menu_list ul li {
  margin: 0px 0px 7px 0px;
}
.palash_mobile_menu .menu_list ul li a {
  text-decoration: none;
  color: #333;
  font-family: "Poppins";
}
.palash_mobile_menu .social {
  width: 100%;
  float: left;
  margin-bottom: 5px;
}
.palash_mobile_menu .social ul {
  margin: 0px;
  list-style-type: none;
}
.palash_mobile_menu .social ul li {
  margin: 0px 8px 0px 0px;
  display: inline-block;
}
.palash_mobile_menu .social ul li:last-child {
  margin-right: 0px;
}
.palash_mobile_menu .social ul li a {
  text-decoration: none;
  color: #333;
}
.palash_mobile_menu .copyright {
  width: 100%;
  float: left;
}
.palash_mobile_menu .copyright p {
  color: #333;
  font-family: "Poppins";
}

/*---------------------------------------------------*/
/*	04) palash MAINPART
/*---------------------------------------------------*/

.palash_mainpart {
  position: absolute;
  top: 70px;
  bottom: 70px;
  left: 70px;
  right: 70px;
  overflow: hidden;
}
.palash_mainpart .author_image {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  width: 40%;
  z-index: 15;
}
.palash_mainpart .author_image .main {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.palash_mainpart .main_content {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 60%;
}
.palash_section {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
}
.palash_section {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  overflow: hidden;
  overflow-y: scroll;

  opacity: 0;
  visibility: hidden;
  z-index: 8;
  transition: visibility 1s linear, opacity 0.5s linear;
  -moz-transition: visibility 1s linear, opacity 0.5s linear;
  -webkit-transition: visibility1s linear, opacity 0.5s linear;
  -o-transition: visibility 1s linear, opacity 0.5s linear;
}
.palash_section.animated {
  opacity: 1;
  visibility: visible;
  z-index: 9;
}
.palash_section.active {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}
.palash_section.hidden {
  opacity: 0;
  visibility: hidden;
  z-index: 9;
}
.palash_section::-webkit-scrollbar {
  width: 0px;
}
.palash_section .section_inner {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  position: relative;
  padding: 92px 100px 0px 100px;
}
.palash_section .section_inner:before {
  position: absolute;
  content: "";
  top: 0px;
  bottom: 0px;
  right: 0px;
  width: 100px;
  background-color: #f6fbff;
}

/*---------------------------------------------------*/
/*	05) palash HOME
/*---------------------------------------------------*/

.palash_home {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.palash_home .content {
  padding-left: 100px;
}
.palash_home .name {
  font-size: 72px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.palash_home .line {
  display: inline-block;
  width: 70px;
  height: 5px;
  background-color: #333;
  margin-bottom: 30px;
}
.palash_home .job {
  font-size: 25px;
  margin-bottom: 35px;
  font-weight: 300;
}
.palash_home .job span {
  color: #7d7789;
}
.palash_home .job b {
  font-weight: 600;
  color: #333;
}
.palash_button {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
}
.palash_button a {
  text-decoration: none;
  color: #fff;
  display: inline-block;
  background-color: #333;
  padding: 13px 38px;
  border: 2px solid #333;
  font-family: "Poppins";
  font-weight: 500;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.palash_button a:hover {
  background-color: transparent;
  color: #333;
}
.cd-headline.clip .cd-words-wrapper::after {
  height: 70%;
  top: 50%;
  width: 2px;
  transform: translateY(-50%);
  background-color: #999;
}
.cd-headline.loading-bar .cd-words-wrapper::after {
  background: #333;
  height: 2px;
}

/*---------------------------------------------------*/
/*	06) palash ABOUT
/*---------------------------------------------------*/

.palash_about {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
}
.palash_about .biography {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  margin-bottom: 87px;
}
.palash_title {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  overflow: hidden;
}
.palash_title span {
  display: inline-block;
  position: relative;
  font-family: "Poppins";
  color: #333;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 8px;
}
.palash_title span:after {
  position: absolute;
  content: "";
  width: 5000px;
  height: 1px;
  background-color: #7d7789;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 30px;
}
.palash_about .biography .wrapper {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  display: flex;
  justify-content: space-between;
  margin-top: 55px;
}
.palash_about .biography .left {
  width: 40%;
}
.palash_about .biography .left p {
  margin-bottom: 15px;
}
.palash_about .biography .left p:last-child {
  margin-bottom: 0px;
}
.palash_about .biography .right {
  width: 50%;
}
.palash_about .biography .right ul {
  margin: 0px;
  list-style-type: none;
}
.palash_about .biography .right ul li {
  margin: 0px 0px 8px 0px;
  width: 100%;
  float: left;
}
.palash_about .biography .right ul li:last-child {
  margin-bottom: 0px;
}
.palash_about .biography .right ul li span {
  display: inline-block;
}
.palash_about .biography .right ul li .first {
  min-width: 100px;
  font-weight: 700;
}
.palash_about .biography .right ul li a {
  text-decoration: none;
  color: #7d7789;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.palash_about .biography .right ul li a:hover {
  color: #333;
}
.palash_about .services {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  margin-bottom: 87px;
}
.palash_about .services .wrapper {
  width: 100%;
  height: auto;
  clear: both;
  display: flex;
  justify-content: space-between;
}
.palash_about .services .list {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  margin-top: 55px;
}
.palash_about .services .service_list {
  width: 40%;
}
.palash_about .services .interests {
  width: 50%;
}
.palash_about .services .service_list ul,
.palash_about .services .interests ul {
  margin: 0px;
  list-style-type: none;
}
.palash_about .services .service_list ul li,
.palash_about .services .interests ul li {
  margin: 0px 0px 8px 0px;
  width: 100%;
  float: left;
  position: relative;
  padding-left: 25px;
}
.palash_about .services .service_list ul li:last-child,
.palash_about .services .interests ul li:last-child {
  margin-bottom: 0px;
}
.palash_about .services .service_list ul li i,
.palash_about .services .interests ul li i {
  position: absolute;
  left: -7px;
  top: 50%;
  transform: translateY(-50%);
}
.palash_about .skills {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  margin-bottom: 65px;
}
.palash_about .skills .wrapper {
  width: 100%;
  height: auto;
  clear: both;
  display: flex;
  justify-content: space-between;
}
.palash_about .skills .programming {
  width: 40%;
}
.palash_about .skills .language {
  width: 50%;
}
.palash_progress {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  margin-top: 55px;
}
.progress_inner {
  width: 100%;
  margin-bottom: 25px;
}
.progress_inner:last-child {
  margin-bottom: 0px;
}
.progress_inner > span {
  margin: 0px 0px 5px 0px;
  width: 100%;
  display: block;
  text-align: left;
}
.progress_inner span.number {
  float: right;
}
.progress_inner .background {
  background: rgba(0, 0, 0, 0.07);
  width: 100%;
  min-width: 100%;
  position: relative;
  height: 3px;
}
.progress_inner .background .bar_in {
  height: 100%;
  background: #7d7789;
  width: 0px;
  overflow: hidden;
}
.progress_inner .background .bar {
  width: 0px;
  height: 100%;
}
.progress_inner .background .bar.open {
  -webkit-animation: wow 2s cubic-bezier(0.165, 0.84, 0.44, 1); /* Safari 4+ */
  -moz-animation: wow 2s cubic-bezier(0.165, 0.84, 0.44, 1); /* Fx 5+ */
  animation: wow 2s cubic-bezier(0.165, 0.84, 0.44, 1); /* IE 10+ */
  width: 100%;
}

@-webkit-keyframes wow {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes wow {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes wow {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.circular_progress_bar {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  margin-top: 62px;
}
.circular_progress_bar ul {
  margin: 0px 0px 0px -20px;
  list-style-type: none;
}
.circular_progress_bar ul li {
  margin: 0px 0px 20px 0px;
  width: 33.3333%;
  float: left;
  padding-left: 20px;
}
.circular_progress_bar .myCircle {
  position: relative;
  float: left;
}
.circular_progress_bar .list_inner {
  width: 100%;
  position: relative;
  text-align: center;
}
.circular_progress_bar .list_inner:after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border: 3px solid rgba(0, 0, 0, 0.07);
  left: 0px;
  top: 0px;
  border-radius: 50%;
  box-sizing: border-box;
  z-index: -1;
}
.circular_progress_bar .title {
  width: 100%;
  max-width: 120px;
  float: left;
}
.circular_progress_bar .number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.palash_about .resume {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  margin-bottom: 75px;
}
.palash_about .resume .wrapper {
  width: 100%;
  height: auto;
  clear: both;
  display: flex;
  justify-content: space-between;
}
.palash_about .resume .list {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
}
.palash_about .resume .education {
  width: 40%;
}
.palash_about .resume .experience {
  width: 50%;
}
.palash_about .univ {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  margin-top: 55px;
}
.palash_about .univ ul {
  margin: 0px;
  list-style-type: none;
  position: relative;
  display: inline-block;
  padding-top: 10px;
}
.palash_about .univ ul:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.07);
}
.palash_about .univ ul li {
  margin: 0px;
  width: 100%;
  float: left;
  position: relative;
  padding-left: 20px;
  padding-bottom: 45px;
}
.palash_about .univ ul li:last-child {
  padding-bottom: 0px;
}
.palash_about .univ ul li:before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  background: #f6fbff;
  border-radius: 100%;
  border: solid 1px #ccc;
  left: -9px;
  top: 8px;
}
.palash_about .univ ul li .list_inner {
  width: 100%;
  height: auto;
  clear: both;
  display: flex;
  position: relative;
}
.palash_about .univ ul li .time {
  width: 50%;
  padding-right: 20px;
}
.palash_about .univ ul li .time span {
  display: inline-block;
  padding: 5px 25px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  font-size: 14px;
  white-space: nowrap;
}
.palash_about .univ ul li .place {
  width: 50%;
  padding-left: 20px;
}
.palash_about .univ ul li .place h3 {
  font-size: 16px;
  margin-bottom: 2px;
  font-weight: 600;
}
.palash_about .univ ul li .place span {
  font-size: 14px;
}
.palash_about .partners {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  margin-bottom: 92px;
}
.palash_about .partners .list {
  width: 100%;
  float: left;
  clear: both;
  overflow: hidden;
  border: 2px solid #e5edf4;
  margin-top: 62px;
}
.palash_about .partners .list ul {
  margin: -2px -10px -2px -2px;
  list-style-type: none;
  padding-top: 2px;
  float: left;
  padding-left: 2px;
  min-width: calc(100% + 12px);
}
.palash_about .partners .list ul li {
  margin: 0px;
  float: left;
  width: 25%;
  border: 2px solid #e5edf4;
  text-align: center;
  height: 130px;
  line-height: 130px;
  position: relative;
  margin-top: -2px;
  margin-left: -2px;
  overflow: hidden;
}
.palash_about .partners .list ul li img {
  max-width: 65%;
  max-height: 65px;
}
.palash_about .partners .list ul li .list_inner {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  opacity: 0.5;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.palash_about .partners .list ul li .list_inner:hover {
  opacity: 1;
}
.palash_full_link {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 5;
}
.palash_about .testimonials {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  margin-bottom: 90px;
}
.palash_about .testimonials .list {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  margin-top: 75px;
}
.palash_about .testimonials .list ul {
  margin: 0px;
  list-style-type: none;
  cursor: e-resize;
}
.palash_about .testimonials .list ul li {
  margin: 0px;
}
.palash_about .testimonials .list ul li .list_inner {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  position: relative;
}
.palash_about .testimonials .list ul li .text {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  position: relative;
  border: 2px solid #e5edf4;
  padding: 40px;
  margin-bottom: 30px;
}
.palash_about .testimonials .list ul li .text:before {
  position: absolute;
  content: "";
  height: 0px;
  width: 0px;
  top: 100%;
  left: 50px;
  border: solid transparent;
  border-top-color: #e5edf4;
  border-width: 18px 18px 0px 0px;
}
.palash_about .testimonials .list ul li .text:after {
  position: absolute;
  content: "";
  top: 100%;
  left: 50px;
  height: 0px;
  width: 0px;
  border: solid transparent;
  border-top-color: #f6fbff;
  border-width: 14px 13px 0px 0px;
  margin-left: 2px;
}
.palash_about .testimonials .list ul li .text i {
  position: absolute;
  z-index: 1;
  font-size: 30px;
  top: -29px;
  left: 50px;
}
.palash_about .testimonials .details {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.palash_about .testimonials .details .image {
  position: relative;
  width: 60px;
  height: 60px;
}
.palash_about .testimonials .details .image .main {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 100%;
}
.palash_about .testimonials .details .info {
  padding-left: 20px;
}
.palash_about .testimonials .details .info h3 {
  font-size: 16px;
  margin-bottom: 2px;
  font-weight: 600;
}
.palash_about .testimonials .details .info span {
  font-size: 14px;
}
.palash_about .testimonials .owl-carousel .owl-stage-outer {
  overflow: hidden;
}
.palash_about .testimonials .owl-carousel .owl-stage-outer {
  overflow: visible;
}
.palash_about .testimonials .owl-item.active {
  opacity: 1;
}
.palash_about .testimonials .owl-item {
  opacity: 0;
}

/*---------------------------------------------------*/
/*	07) palash PORTFOLIO
/*---------------------------------------------------*/

.palash_portfolio {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  margin-bottom: 70px;
}
.palash_portfolio .portfolio_filter {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  text-align: left;
  padding: 55px 0px 22px 0px;
}
.palash_portfolio .portfolio_filter ul {
  margin: 0px;
  list-style-type: none;
}
.palash_portfolio .portfolio_filter ul li {
  margin: 0px 40px 0px 0px;
  display: inline-block;
}
.palash_portfolio .portfolio_filter ul li:last-child {
  margin-right: 0px;
}
.palash_portfolio .portfolio_filter ul li a {
  text-decoration: none;
  color: #333;
  font-family: "Poppins";
  font-weight: 500;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.palash_portfolio .portfolio_list {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
}
.palash_portfolio .portfolio_list ul {
  margin: 0px 0px 0px -30px;
  list-style-type: none;
}
.palash_portfolio .portfolio_list ul li {
  margin: 0px 0px 30px 0px;
  width: 33.3333%;
  float: left;
  padding-left: 30px;
}
.palash_portfolio .portfolio_list ul li .list_inner {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  position: relative;
  overflow: hidden;
}
.palash_portfolio .portfolio_list ul li .image {
  position: relative;
}
.palash_portfolio .portfolio_list ul li .image img {
  position: relative;
  opacity: 0;
  min-width: 100%;
}
.palash_portfolio .portfolio_list ul li .image .main {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.palash_portfolio .portfolio_list ul li .list_inner:hover .image .main {
  filter: blur(2px);
}
.palash_portfolio .portfolio_list ul li .icon {
  position: absolute;
  z-index: 3;
  top: -55px;
  left: 20px;
  display: inline-block;
  border-radius: 100%;
  background-color: #fff;
  width: 50px;
  height: 50px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.palash_portfolio .portfolio_list ul li .list_inner:hover .icon {
  top: 20px;
}
.palash_portfolio .portfolio_list ul li .icon i {
  color: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
}
.palash_portfolio .portfolio_list ul li .details {
  position: absolute;
  bottom: -100px;
  left: 20px;
  right: 20px;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  z-index: 3;
  padding: 15px;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.palash_portfolio .portfolio_list ul li .list_inner:hover .details {
  bottom: 20px;
}
.palash_portfolio .portfolio_list ul li .details h3 {
  font-size: 16px;
  margin-bottom: 2px;
  font-weight: 600;
}
.palash_portfolio .portfolio_list ul li .details span {
  font-size: 14px;
}
.palash_modalbox {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 100vh;
  z-index: 20;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.palash_modalbox.opened {
  opacity: 1;
  visibility: visible;
}
.palash_modalbox .box_inner {
  position: absolute;
  top: 70px;
  bottom: 70px;
  width: 968px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  margin-top: -20px;
  transition-delay: 0.3s;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.palash_modalbox.opened .box_inner {
  opacity: 1;
  visibility: visible;
  margin-top: 0px;
}
.palash_modalbox .close {
  position: fixed;
  left: 100%;
  top: 0px;
  margin-left: 20px;
  z-index: 111111;
}
.palash_modalbox .close a {
  text-decoration: none;
  color: #fff;
}
.palash_modalbox .close .svg {
  width: 50px;
  height: 50px;
}
.palash_modalbox .description_wrap {
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  padding: 50px;
  overflow-y: scroll;
}
.palash_modalbox .description_wrap::-webkit-scrollbar {
  width: 11px;
}
.aali_tm_modalbox .description_wrap {
  scrollbar-width: thin;
  scrollbar-color: #dfe2e7 #fff;
}
.palash_modalbox .description_wrap:-webkit-scrollbar-track {
  background: #fff;
}
.palash_modalbox .description_wrap::-webkit-scrollbar-thumb {
  background-color: #dfe2e7;
  border-radius: 10px;
  border: 3px solid #fff;
}
.palash_portfolio .hidden_content {
  display: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: -11;
}
.palash_modalbox .popup_details {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
}
.palash_modalbox .popup_details .top_image {
  position: relative;
  overflow: hidden;
  margin-bottom: 37px;
}
.palash_modalbox .popup_details .top_image img {
  position: relative;
  min-width: 100%;
  opacity: 0;
}
.palash_modalbox .popup_details .top_image .main {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.palash_modalbox .portfolio_main_title {
  width: 100%;
  float: left;
  margin-bottom: 20px;
}
.palash_modalbox .portfolio_main_title span {
  display: inline-block;
}
.palash_modalbox .portfolio_main_title h3 {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 5px;
}
.palash_modalbox .main_details {
  width: 100%;
  height: auto;
  clear: both;
  display: flex;
  margin-bottom: 60px;
}
.palash_modalbox .main_details .textbox {
  width: 70%;
  padding-right: 40px;
}
.palash_modalbox .main_details .textbox p {
  margin-bottom: 15px;
}
.palash_modalbox .main_details .textbox p:last-child {
  margin-bottom: 0px;
}
.palash_modalbox .main_details .detailbox {
  width: 30%;
  padding-left: 40px;
}
.palash_modalbox .main_details .detailbox > ul {
  margin: 0px;
  list-style-type: none;
}
.palash_modalbox .main_details .detailbox > ul > li {
  margin: 0px 0px 10px 0px;
  width: 100%;
  float: left;
}
.palash_modalbox .main_details .detailbox > ul > li:last-child {
  margin-bottom: 0px;
}
.palash_modalbox .main_details .detailbox .first {
  font-weight: 700;
  display: block;
}
.palash_modalbox .main_details .detailbox span a {
  text-decoration: none;
  color: #7d7789;
}
.palash_modalbox .main_details .detailbox .share {
  margin: 0px;
  list-style-type: none;
  position: relative;
  top: 7px;
}
.palash_modalbox .main_details .detailbox .share li {
  margin: 0px 13px 0px 0px;
  display: inline-block;
}
.palash_modalbox .main_details .detailbox .share li:last-child {
  margin-right: 0px;
}
.palash_modalbox .main_details .detailbox .share li a {
  text-decoration: none;
  color: #7d7789;
}
.palash_modalbox .additional_images {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
}
.palash_modalbox .additional_images ul {
  margin: 0px 0px 0px -30px;
  list-style-type: none;
}
.palash_modalbox .additional_images ul li {
  margin: 0px 0px 30px 0px;
  float: left;
  width: 50%;
  padding-left: 30px;
}
.palash_modalbox .additional_images ul li:nth-child(3n-2) {
  width: 100%;
}
.palash_modalbox .additional_images ul li .list_inner {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  position: relative;
}
.palash_modalbox .additional_images ul li .my_image {
  position: relative;
}
.palash_modalbox .additional_images ul li .my_image img {
  opacity: 0;
  min-width: 100%;
}
.palash_modalbox .additional_images ul li .my_image .main {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/*---------------------------------------------------*/
/*	08) palash NEWS
/*---------------------------------------------------*/

.palash_news {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  margin-bottom: 70px;
}
.palash_news .news_list {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  margin-top: 62px;
}
.palash_news .news_list ul {
  margin: 0px 0px 0px -30px;
  list-style-type: none;
}
.palash_news .news_list ul li {
  margin: 0px 0px 30px 0px;
  width: 33.3333%;
  float: left;
  padding-left: 30px;
}
.palash_news .news_list ul li .list_inner {
  position: relative;
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  border: 1px solid rgba(0, 0, 0, 0.07);
}
.palash_news .news_list ul li .image {
  position: relative;
  overflow: hidden;
}
.palash_news .news_list ul li .image img {
  position: relative;
  min-width: 100%;
  opacity: 0;
}
.palash_news .news_list ul li .image .main {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transform: scale(1) translateZ(0);

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.palash_news .news_list ul li .list_inner .image:hover .main {
  transform: scale(1.1) translateZ(0);
}
.palash_news .news_list ul li .details {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  padding: 19px 30px 3px 30px;
}
.palash_news .news_list ul li .metabox {
  width: 100%;
  float: left;
  margin-bottom: 20px;
}
.palash_news .news_list ul li .metabox .info {
  width: 100%;
  float: left;
  margin-bottom: 5px;
}
.palash_news .news_list ul li .metabox .info span {
  position: relative;
  padding-left: 25px;
  font-size: 14px;
}
.palash_news .news_list ul li .metabox .info span:first-child {
  padding-left: 0px;
}
.palash_news .news_list ul li .metabox .info span:before {
  position: relative;
  content: "|";
  color: #7d7789;
  right: 14px;
  font-size: 12px;
  top: -2px;
}
.palash_news .news_list ul li .metabox .info span:first-child:before {
  display: none;
}
.palash_news .news_list ul li .metabox a {
  text-decoration: none;
  color: #7d7789;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.palash_news .news_list ul li .metabox a:hover {
  color: #333;
}
.palash_news .news_list ul li .metabox .title h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}
.palash_news .news_list ul li .metabox .title a {
  text-decoration: none;
  display: inline-block;
  color: #333;
}
.palash_news .news_hidden_details {
  display: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: -11;
}
.palash_modalbox .news_popup_informations {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
}
.palash_modalbox .news_popup_informations .image {
  position: relative;
  margin-bottom: 37px;
}
.palash_modalbox .news_popup_informations .image img {
  position: relative;
  opacity: 0;
  min-width: 100%;
}
.palash_modalbox .news_popup_informations .image .main {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.palash_modalbox .news_popup_informations .details {
  width: 100%;
  float: left;
  margin-bottom: 20px;
}
.palash_modalbox .news_popup_informations .details span {
  display: inline-block;
  margin-bottom: 5px;
}
.palash_modalbox .news_popup_informations .details h3 {
  font-weight: 700;
  font-size: 22px;
}
.palash_modalbox .news_popup_informations .text {
  width: 100%;
  float: left;
}
.palash_modalbox .news_popup_informations .text p {
  margin-bottom: 15px;
}
.palash_modalbox .news_popup_informations .text p:last-child {
  margin-bottom: 0px;
}

/*---------------------------------------------------*/
/*	09) palash CONTACT
/*---------------------------------------------------*/

.palash_contact {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  margin-bottom: 100px;
}
.palash_contact .short_info {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  margin-top: 62px;
}
.palash_contact .short_info ul {
  margin: 0px 0px 0px -30px;
  list-style-type: none;
}
.palash_contact .short_info ul li {
  margin: 0px 0px 30px 0px;
  width: 33.3333%;
  float: left;
  padding-left: 30px;
}
.palash_contact .short_info ul li .list_inner {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.07);
  text-align: center;
  padding: 32px 25px;
}
.palash_contact .short_info ul li .list_inner span {
  display: block;
}
.palash_contact .short_info ul li .list_inner i {
  font-size: 20px;
  margin-bottom: 5px;
  display: inline-block;
  color: #333;
}
.palash_contact .short_info ul li .list_inner a {
  text-decoration: none;
  color: #7d7789;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.palash_contact .short_info ul li .list_inner a:hover {
  color: #333;
}
.palash_contact .form {
  width: 100%;
  height: auto;
  clear: both;
  display: flex;
}
.palash_contact .form .left {
  width: 50%;
  padding-right: 15px;
}
.palash_contact .form .fields {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
}
.palash_contact .form .fields .first {
  width: 100%;
  float: left;
}
.palash_contact .form .fields ul {
  margin: 0px;
  list-style-type: none;
}
.palash_contact .form .fields ul li {
  width: 100%;
  margin: 0px 0px 30px 0px;
  float: left;
}
.palash_contact .form .fields ul li input {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background-color: transparent;
}
.palash_contact .form .fields ul li input:focus {
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.palash_contact .form .fields .last textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.07);
  height: 120px;
  resize: none;
  margin-bottom: 20px;
  background-color: transparent;
}
.palash_contact .form .fields .last textarea:focus {
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.palash_contact .form .empty_notice {
  color: #f52225;
  margin-bottom: 7px;
  display: none;
  text-align: left;
  font-weight: 500;
}
.palash_contact .form .contact_error {
  color: #f52225;
  text-align: left;
  font-weight: 500;
}
.palash_contact .form .returnmessage {
  color: #3a00ff;
  text-align: left;
  font-weight: 500;
}
.palash_contact .form .right {
  width: 50%;
  padding-left: 15px;
  position: relative;
}
.palash_contact .form .map_wrap .map {
  min-height: 355px;
  width: 100%;
  filter: grayscale(1);
}

/*---------------------------------------------------*/
/*	10) palash FOOTER
/*---------------------------------------------------*/

.palash_footer {
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 70px;
  background-color: #fff;
  z-index: 10;
  line-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 70px;
}
.palash_footer .copyright p {
  color: #333;
  font-family: "Poppins";
}
.palash_footer .social ul {
  margin: 0px;
  list-style-type: none;
}
.palash_footer .social ul li {
  margin: 0px 15px 0px 0px;
  display: inline-block;
}
.palash_footer .social ul li:last-child {
  margin-right: 0px;
}
.palash_footer .social ul li a {
  text-decoration: none;
  color: #333;
}
.palash_left_border {
  position: fixed;
  top: 0px;
  left: 0px;
  bottom: 0px;
  width: 70px;
  background-color: #fff;
  z-index: 10;
}
.palash_right_border {
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 70px;
  background-color: #fff;
  z-index: 10;
}

/*---------------------------------------------------*/
/*	11) palash MAGIC CURSOR
/*---------------------------------------------------*/

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}
.cursor-inner {
  margin-left: -3px;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  z-index: 100;
  background-color: #333;
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.cursor-inner.cursor-hover {
  margin-left: -40px;
  margin-top: -40px;
  width: 80px;
  height: 80px;
  background-color: #333;
  opacity: 0.3;
}
.cursor-outer {
  margin-left: -15px;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  border: 2px solid #333;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 100;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}
.cursor-outer.cursor-hover {
  opacity: 0;
}
.palash_all_wrap[data-magic-cursor="hide"] .mouse-cursor {
  display: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: -1111;
}

/*---------------------------------------------------*/
/*	12) palash GLITCH EFFECT
/*---------------------------------------------------*/

.palash_mainpart .author_image .glitch_wrap {
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
}
.glitch {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("..//img/about/2.jpg");
  background-size: cover;
  -webkit-background-size: start;
  background-position: 0% 50%;
  z-index: -1 !important;
  opacity: 1;
  transform: scale(1);
  display: none;
}

/*---------------------------------------------------*/
/*	13) palash PARTICLE EFFECT
/*---------------------------------------------------*/

.palash_mainpart .author_image .particle_wrapper {
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
}
#particles-js {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

/*---------------------------------------------------*/
/*	14) palash RIPPLE EFFECT
/*---------------------------------------------------*/

.palash_mainpart .author_image .ripple {
  width: 100%;
  height: 100%;
  position: relative;
  /* background-repeat: no-repeat; */
  background-size: cover;
  background-position: 78% 0%;
  background-image: url("..//img/about/palash.webp");
}

/*---------------------------------------------------*/
/*	15) palash MEDIA QUERIES (FOR SMALL DEVICES)
/*---------------------------------------------------*/

@media (max-width: 1400px) {
  body {
    font-size: 15px;
  }
  .palash_header .logo img {
    max-width: 95px;
  }
  .palash_mainpart .author_image {
    width: 35%;
  }
  .palash_mainpart .main_content {
    width: 65%;
  }
  .palash_section .section_inner:before {
    width: 50px;
  }
  .palash_title span {
    letter-spacing: 7px;
  }
  .palash_title span:after {
    margin-left: 25px;
  }
  .palash_header {
    height: 60px;
    line-height: 60px;
    padding: 0px 60px;
  }
  .palash_footer {
    height: 60px;
    line-height: 60px;
    padding: 0px 60px;
  }
  .palash_left_border {
    width: 60px;
  }
  .palash_right_border {
    width: 60px;
  }
  .palash_mainpart {
    top: 60px;
    left: 60px;
    right: 60px;
    bottom: 60px;
  }
  .palash_footer .social ul li {
    margin-right: 10px;
  }
  .palash_header .menu ul li a {
    padding: 0px 22px;
  }
  .palash_home .content {
    padding-left: 50px;
  }
  .palash_home .name {
    font-size: 55px;
    margin-bottom: 25px;
  }
  .palash_home .line {
    width: 60px;
    height: 4px;
    margin-bottom: 25px;
  }
  .palash_home .job {
    font-size: 23px;
    margin-bottom: 30px;
  }
  .palash_button a {
    padding: 13px 32px;
  }
  .palash_section .section_inner {
    padding: 95px 50px 0px 50px;
  }
  .circular_progress_bar .list_inner:after {
    width: 100px;
    height: 100px;
  }
  .circular_progress_bar .title {
    max-width: 100px;
  }
  .progress_inner {
    margin-bottom: 18px;
  }
  .palash_about .univ ul li .time span {
    padding: 3px 12px;
  }
  .palash_about .univ ul li .place {
    padding-left: 0px;
  }
  .palash_portfolio .portfolio_filter ul li {
    margin-right: 30px;
  }
  .palash_about .testimonials .list ul li .text {
    padding: 30px;
  }
  .palash_news .news_list ul li .details {
    padding: 15px 15px 0px 15px;
  }
  .palash_news .news_list ul li .metabox .info span {
    font-size: 13px;
    padding-left: 20px;
  }
  .palash_news .news_list ul li .metabox .info span:before {
    font-size: 11px;
    right: 11px;
  }
  .palash_contact .short_info ul li .list_inner {
    padding: 20px 10px;
  }
  .palash_modalbox .box_inner {
    width: 750px;
  }
  .palash_modalbox .description_wrap {
    padding: 30px;
  }
  .palash_modalbox .close .svg {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 1040px) {
  .mouse-cursor {
    display: none;
  }
  #preloader {
    display: none;
  }
  .palash_topbar {
    display: block;
  }
  .palash_header {
    display: none;
  }
  .palash_footer {
    display: none;
  }
  .palash_left_border {
    display: none;
  }
  .palash_right_border {
    display: none;
  }
  .palash_section .section_inner:before {
    width: 20px;
  }
  .palash_mainpart .author_image {
    display: none;
  }
  .palash_mainpart {
    top: 55px;
    left: 0px;
    right: 0px;
    bottom: 0px;
  }
  .palash_mainpart .main_content {
    width: 100%;
  }
  .palash_home .content {
    padding: 0px 20px;
  }
  .palash_home .name {
    font-size: 60px;
  }
  .palash_home .job {
    font-size: 22px;
  }
  .palash_about .biography .wrapper {
    flex-direction: column;
    align-items: baseline;
  }
  .palash_about .biography .left {
    width: 100%;
    margin-bottom: 55px;
  }
  .palash_about .biography .right {
    width: 100%;
  }
  .palash_about .services .wrapper {
    flex-direction: column;
    align-items: baseline;
  }
  .palash_about .services .service_list {
    width: 100%;
    margin-bottom: 55px;
  }
  .palash_about .services .interests {
    width: 100%;
  }
  .palash_section .section_inner {
    padding: 57px 20px 0px 20px;
  }
  .palash_about .skills .wrapper {
    flex-direction: column;
    align-items: baseline;
  }
  .palash_about .skills .programming {
    width: 100%;
    margin-bottom: 60px;
  }
  .palash_about .skills .language {
    width: 100%;
  }
  .circular_progress_bar .title {
    float: none;
  }
  .palash_about .resume .wrapper {
    flex-direction: column;
    align-items: baseline;
  }
  .palash_about .resume .education {
    width: 100%;
    margin-bottom: 60px;
  }
  .palash_about .resume .experience {
    width: 100%;
  }
  .palash_portfolio .portfolio_list ul li {
    width: 50%;
  }
  .palash_news .news_list ul li {
    width: 50%;
  }
  .palash_contact .short_info ul {
    margin: 0px;
  }
  .palash_contact .short_info ul li {
    width: 100%;
    padding-left: 0px;
  }
  .palash_contact .form {
    flex-direction: column;
    align-items: baseline;
  }
  .palash_contact .form .left {
    width: 100%;
    padding: 0px;
    margin-bottom: 30px;
  }
  .palash_contact .form .right {
    width: 100%;
    padding: 0px;
  }
  .palash_modalbox .box_inner {
    width: 550px;
  }
  .palash_modalbox .description_wrap {
    padding: 20px;
  }
  .palash_modalbox .main_details {
    flex-direction: column;
    align-items: baseline;
  }
  .palash_modalbox .main_details .textbox {
    width: 100%;
    padding: 0px;
    margin-bottom: 30px;
  }
  .palash_modalbox .main_details .detailbox {
    width: 100%;
    padding: 0px;
  }
  .palash_modalbox .additional_images ul {
    margin: 0px;
  }
  .palash_modalbox .additional_images ul li {
    width: 100%;
    padding-left: 0px;
  }
  .palash_modalbox .portfolio_main_title h3 {
    font-size: 20px;
  }
  .palash_modalbox .close .svg {
    width: 35px;
    height: 35px;
  }
  .palash_modalbox .news_popup_informations .details h3 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .palash_home .name {
    font-size: 40px;
  }
  .palash_home .job {
    font-size: 20px;
  }
  .palash_home .line {
    height: 3px;
    width: 40px;
  }
  .palash_button a {
    padding: 10px 28px;
  }
  .circular_progress_bar .list_inner:after {
    width: 80px;
    height: 80px;
  }
  .circular_progress_bar .title {
    max-width: 80px;
  }
  .palash_about .partners .list ul li {
    width: 50%;
  }
  .palash_portfolio .portfolio_list ul {
    margin: 0px;
  }
  .palash_portfolio .portfolio_list ul li {
    width: 100%;
    padding-left: 0px;
  }
  .palash_news .news_list ul {
    margin: 0px;
  }
  .palash_news .news_list ul li {
    width: 100%;
    padding-left: 0px;
  }
  .palash_news .news_list ul li .details {
    padding: 15px 20px 0px 20px;
  }
  .palash_title span {
    letter-spacing: 4px;
  }
  .palash_title span:after {
    margin-left: 15px;
  }
  .palash_modalbox .box_inner {
    width: 300px;
    top: 100px;
    bottom: 40px;
  }
  .palash_modalbox .close {
    margin-left: -25px;
    top: -35px;
  }
  .palash_modalbox .close .svg {
    width: 25px;
    height: 25px;
  }
}
