@font-face {
  font-family: "Georgia";
  src: url(../fonts/Georgia\ Regular\ font.ttf);
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/Montserrat-Regular.woff2);
}
@font-face {
  font-family: "Helvetica";
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/Helvetica-Medium.ttf);
}
* {
  /* font-family: "Helvetica"; */
  scroll-behavior: smooth;
}
.font-montserrat {
  font-family: "Montserrat", sans-serif;
}
.vl {
  border-left: 1px solid #dedede;
}
.h-50px {
  height: 50px;
}
.minh-100 {
  min-height: 100%;
}
.mb-n6px {
  margin-bottom: -6px;
}
.text-black {
  color: #000 !important;
}
.after-block::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

.after-block {
  position: relative;
}
.font-18px {
  font-size: 18px;
}
.z-index-1 {
  z-index: 1;
}
.mvh-80 {
  min-height: 80vh;
}

.absolute-clearfix::before,
.absolute-clearfix::after {
  content: "";
  display: table;
}
.absolute-clearfix::after {
  clear: both;
}
.border-box {
  box-sizing: border-box;
}
.f-0 {
  font-size: 0;
}
.opacity-8 {
  opacity: 0.8;
}
.overflow-y-auto {
  overflow-y: auto;
  overflow-x: hidden;
}

.h-94 {
  height: 95%;
}
.text-ellipsis {
  width: 100%;
  overflow: hidden;
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-ellipsis-2 {
  display: -webkit-box; /* for compatibility with Safari/Chrome */
  display: -moz-box; /* for compatibility with Firefox */
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -moz-line-clamp: 2;
}
.text-ellipsis-3 {
  display: -webkit-box; /* for compatibility with Safari/Chrome */
  display: -moz-box; /* for compatibility with Firefox */
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -moz-line-clamp: 3;
}
.text-ellipsis-4 {
  display: -webkit-box; /* for compatibility with Safari/Chrome */
  display: -moz-box; /* for compatibility with Firefox */
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  -moz-line-clamp: 4;
}

/* For Webkit Browsers */
.thin-scrollbar::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.thin-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.thin-scrollbar::-webkit-scrollbar-thumb {
  border-radius: 5px;
}
/* For Firefox Browsers */
.thin-scrollbar {
  scrollbar-width: thin;
}

.csm-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.csm-grid {
  display: grid;
  gap: 10px;
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
}
.csm-grid .wide {
  grid-column: span 2;
}
.csm-grid .tall {
  grid-row: span 2;
}
.csm-grid .big {
  grid-row: span 2;
  grid-column: span 2;
}

.grid-1 {
  grid-template-columns: repeat(auto-fit, minmax(100%, 2fr));
}
.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(48%, 2fr));
}
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(32%, 2fr));
}
.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(23%, 2fr));
}
.grid-5 {
  grid-template-columns: repeat(auto-fit, minmax(19%, 2fr));
}

/* navbar design start here */
.horizontal-navbar {
  position: fixed;
  top: 50%;
  left: 100%;
  transform: translateX(-150%) translateY(-50%);
  transition: 0.3s;
}

nav {
  z-index: 99;
}

nav .nav-item {
  width: 50px;
  height: 50px;
  z-index: 5;
  text-align: center;
  position: relative;
}
nav .nav-item {
  cursor: pointer;
}
nav .nav-item .nav-icon {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 50px;
  transition: 0.3s;
}
nav .nav-item .nav-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nav-item-text {
  right: 0%;
  font-size: 16px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  padding: 0 32px 0 20px;
  border-radius: 50px;
  height: 36px;
  line-height: 36px;
  margin-top: 8px;
}

nav .nav-item:hover .nav-item-text {
  right: 60%;
  opacity: 1;
  visibility: visible;
  border-radius: 50px 0 0 50px;
}
nav.horizontal-navbar.nav-hidden {
  /* left: 101%; */
  transform: translateX(0%) translateY(-50%);
}

li.my-3.nav-item.nav-hide.nav-hide-active {
  left: -20px;
}

li.my-3.nav-item.nav-hide.nav-hide-active span.nav-icon svg {
  left: 78%;
}

/* profile page */
.mt-150px {
  margin-top: 150px;
}
.pt-150px {
  padding-top: 150px;
}

.mt-n140px {
  margin-top: -140px;
}
.h-18 {
  height: 18%;
}
.h-80 {
  height: 80%;
}
.h-270px {
  height: 270px;
}
.ratio-square {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.ratio-1_1 {
  width: 100%;
  padding-top: 100%;
  position: relative;
}
.ratio-4_3 {
  width: 100%;
  padding-top: 75%;
  position: relative;
}
.ratio-2_1 {
  width: 100%;
  padding-top: 50%;
  position: relative;
}
.ratio-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* portfolio */
img.img-fit {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-item {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}
.portfolio-item .image-box {
  width: 100%;
  height: 80%;
  position: absolute;
  top: 0;
  left: 0;
}
.portfolio-item .title-box {
  position: absolute;
  width: 80%;
  height: 20%;
  bottom: 0;
  right: 0;
}
.portfolio-item .client-profile-box {
  position: absolute;
  top: 80%;
  left: 0;
  width: 20%;
  height: 20%;
}

/* portfolio image hover animation */
.center-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* padding: 25px; */
}
.portfolio-item .image-box {
  position: relative;
  overflow: hidden;
  text-align: center;
  /* transition: 0.25s ease; */
}

.portfolio-item .image-box .hover-block {
  height: 20%;
  width: 20%;
  position: absolute;
  margin-top: 20px;
  margin-right: 20px;
}
.left-0 {
  left: 0;
}
.portfolio-item .image-box .hover-block[data-slide="top"] {
  right: 0;
  animation: slideInTop 0.15s ease forwards;
}

.portfolio-item .image-box .hover-block[data-slide="bottom"] {
  right: 0;
  animation: slideInDown 0.15s ease forwards;
}

.portfolio-item .image-box .hover-block[data-slide="left"] {
  top: 0;
  animation: slideInLeft 0.15s ease forwards;
}

.portfolio-item .image-box .hover-block[data-slide="right"] {
  top: 0;
  animation: slideInRight 0.15s ease forwards;
}

.portfolio-item .image-box .hover-block[data-slide="top-out"] {
  right: 0;
  animation: slideOutTop 0.15s ease forwards;
}

.portfolio-item .image-box .hover-block[data-slide="bottom-out"] {
  right: 0;
  animation: slideOutDown 0.15s ease forwards;
}

.portfolio-item .image-box .hover-block[data-slide="left-out"] {
  top: 0;
  animation: slideOutLeft 0.15s ease forwards;
}

.portfolio-item .image-box .hover-block[data-slide="right-out"] {
  top: 0;
  animation: slideOutRight 0.15s ease forwards;
}

@keyframes slideInTop {
  from {
    top: -100%;
  }

  to {
    top: 0;
  }
}

@keyframes slideInDown {
  from {
    top: 100%;
  }

  to {
    top: 0;
  }
}

@keyframes slideInLeft {
  from {
    right: 100%;
  }

  to {
    right: 0%;
  }
}

@keyframes slideInRight {
  from {
    right: -100%;
  }

  to {
    right: 0;
  }
}

@keyframes slideOutTop {
  to {
    top: -100%;
  }

  from {
    top: 0;
  }
}

@keyframes slideOutDown {
  to {
    top: 100%;
  }

  from {
    top: 0;
  }
}

@keyframes slideOutLeft {
  to {
    right: 100%;
  }

  from {
    right: 0;
  }
}

@keyframes slideOutRight {
  to {
    right: -100%;
  }

  from {
    right: 0;
  }
}

/* blog page */
.blog-readmore-action {
  position: absolute;
  bottom: 0;
  right: 0;
  text-decoration: none;
  padding: 10px;
  border-radius: 20px 0 8px 0;
}

/* single blog page */
.blog-navigation li {
  cursor: pointer;
}
.align-sub {
  vertical-align: sub !important;
}
.top-4 {
  top: 1.5rem !important;
}
.align-text-bottom {
  vertical-align: text-bottom !important;
}
/* blog page css end */

@media only screen and (max-width: 1016px) and (min-width: 993px) {
  #profile_section {
    top: -20px !important;
    right: 0 !important;
  }
  .w-100rsp {
    width: 95% !important;
  }
}
@media only screen and (max-width: 992px) {
  .csmscrollresp {
    overflow-x: auto !important;
  }
  li.nav-item.nav-hide {
    display: none !important;
  }

  /* table content css start here  */
  .table-content {
    right: -50%;
    position: fixed;
    top: 20% !important;
    transform: translate(0, -50%);
    transition: 0.3s all ease-in-out;
    background: var(--compl-1) !important;
  }

  .table-content.active {
    right: 0;
  }

  .table-content-arrow {
    display: block !important;
    transform: rotate(180deg);
    position: absolute;
    /* top: 10px; */
    left: -25px;
    padding: 10px 5px;
    font-size: 0;
  }
  /* table content css end */

  .lg-scrollbar-none::-webkit-scrollbar {
    display: none;
  }
  .lg-scrollbar-none {
    scrollbar-width: none;
  }
  .lg-h-100 {
    height: 100% !important;
  }
  .lg-border-none {
    border: none !important;
  }
  .lg-bg-none {
    background: unset !important;
  }
  .lg-mt-0 {
    margin-top: 0 !important;
  }
  .lg-pt-0 {
    padding-top: 0 !important;
  }

  nav .nav-item {
    display: inline-block;
    margin: 0 !important;
    width: 20%;
    background: unset;
    padding: 5px 0;
    height: 55px;
  }

  nav.horizontal-navbar ul {
    width: 100%;
    margin: 0;
    display: flex;
  }

  nav.horizontal-navbar {
    width: 100%;
    top: unset;
    bottom: 0;
    /* bottom: -100%; */
    transform: unset;
    left: -100%;
    /* left: 0%; */
    transition: 0.3s cubic-bezier(0.77, 0.2, 0.05, 1);
  }

  nav.horizontal-navbar.active {
    /* bottom: 0; */
    left: 0;
  }

  nav .nav-item .nav-item-text {
    display: none;
  }

  nav .nav-item .nav-icon {
    background: unset;
    width: 45px;
    height: 45px;
    left: 50%;
    transform: translate(-50%, 0);
    top: unset;
  }

  nav .nav-item a {
    width: 100%;
    height: 100%;
    content: "";
    clear: both;
    display: block;
  }

  .responsive-button span.first-line,
  .responsive-button span.second-line,
  .responsive-button span.third-line {
    display: block;
    width: 28px;
    height: 2px;
    margin: 7px 0;
    transition: 0.2s;
    margin-left: auto;
  }

  .responsive-button {
    position: fixed;
    top: 0px;
    right: 0px;
    margin: 0;
    padding: 0;
    display: block !important;
  }

  .responsive-button button.responsive-button-action {
    border: none;
    padding: 5px 10px;
    height: 44px;
  }

  .responsive-button .responsive-button-action.active span.second-line {
    opacity: 0;
  }

  .responsive-button .responsive-button-action.active span.third-line {
    transform: rotate(-225deg);
    margin-top: -18px;
    margin-bottom: 15px;
  }
  .responsive-button-action span.first-line {
    width: 16px;
  }

  .responsive-button-action span.third-line {
    width: 22px;
  }

  .responsive-button-action.active span.first-line,
  .responsive-button-action.active span.third-line {
    width: 28px;
  }

  .responsive-button .responsive-button-action.active span.first-line {
    transform: rotate(225deg);
    margin-top: 17px;
    margin-bottom: 7px;
  }

  .home-page-false .responsive-button {
    top: 5px;
    right: 5px;
  }

  .align-resp-vertically {
    position: relative;
  }

  .align-resp-vertically-item {
    position: absolute;
    top: 0;
    right: 85%;
    aspect-ratio: 1 / 1;
    height: 100%;
    /* width: 100%; */
    /* width: 200%;
height: 100%; */
    transform: rotate(90deg);
  }
  div#profile_section {
    /* top: -20px;
left: 50%;
transform: translate(-50%, 0); */
    width: 95%;
    margin: auto;
    position: relative;
    margin-top: -20px;
    margin-bottom: 20px;
  }
  div#profile_section::before {
    content: "";
    position: absolute;
    right: -10px;
    top: 5.5px;
    width: 10px;
    height: 20px;
    border-top: 11px solid transparent;
    border-bottom: 0 solid transparent;
    border-left: 0 solid transparent;
    transform: rotate(90deg);
    z-index: -1;
  }

  div#profile_section::after {
    content: "";
    position: absolute;
    left: -10px;
    top: 5.5px;
    width: 10px;
    height: 20px;
    border-top: 11px solid transparent;
    border-bottom: 0 solid transparent;
    border-right: 0 solid transparent;
    transform: rotate(-90deg);
    z-index: -1;
  }
  .profile-responsive-margin-top {
    margin-top: 680px;
  }

  .alt-profile-responsive-margin-top {
    margin-bottom: 680px;
  }
  div#alt_profile_section {
    top: 450px;
    left: 50%;
    width: 90%;
    transform: translate(-50%, 0);
  }
}
/* bootstrap media queries */
@media only screen and (min-width: 577px) {
  .w-sm-25 {
    width: 25% !important;
  }
  .w-sm-50 {
    width: 50% !important;
  }
  .w-sm-75 {
    width: 75% !important;
  }
  .w-sm-100 {
    width: 100% !important;
  }
  .h-sm-25 {
    height: 25% !important;
  }
  .h-sm-50 {
    height: 50% !important;
  }
  .h-sm-75 {
    height: 75% !important;
  }
  .h-sm-100 {
    height: 100% !important;
  }

  .grid-sm-1 {
    grid-template-columns: repeat(auto-fit, minmax(100%, 2fr)) !important;
  }
  .grid-sm-2 {
    grid-template-columns: repeat(auto-fit, minmax(48%, 2fr)) !important;
  }
  .grid-sm-3 {
    grid-template-columns: repeat(auto-fit, minmax(32%, 2fr)) !important;
  }
  .grid-sm-4 {
    grid-template-columns: repeat(auto-fit, minmax(23%, 2fr)) !important;
  }
  .grid-sm-5 {
    grid-template-columns: repeat(auto-fit, minmax(19%, 2fr)) !important;
  }

  .csm-grid .sm-wide {
    grid-column: span 2 !important;
  }
  .csm-grid .sm-tall {
    grid-row: span 2 !important;
  }
  .csm-grid .sm-big {
    grid-row: span 2 !important;
    grid-column: span 2 !important;
  }
}
@media only screen and (min-width: 769px) {
  .w-md-25 {
    width: 25% !important;
  }
  .w-md-50 {
    width: 50% !important;
  }
  .w-md-75 {
    width: 75% !important;
  }
  .w-md-100 {
    width: 100% !important;
  }
  .h-md-25 {
    height: 25% !important;
  }
  .h-md-50 {
    height: 50% !important;
  }
  .h-md-75 {
    height: 75% !important;
  }
  .h-md-100 {
    height: 100% !important;
  }

  .grid-md-1 {
    grid-template-columns: repeat(auto-fit, minmax(100%, 2fr)) !important;
  }
  .grid-md-2 {
    grid-template-columns: repeat(auto-fit, minmax(48%, 2fr)) !important;
  }
  .grid-md-3 {
    grid-template-columns: repeat(auto-fit, minmax(32%, 2fr)) !important;
  }
  .grid-md-4 {
    grid-template-columns: repeat(auto-fit, minmax(23%, 2fr)) !important;
  }
  .grid-md-5 {
    grid-template-columns: repeat(auto-fit, minmax(19%, 2fr)) !important;
  }
  .csm-grid .md-wide {
    grid-column: span 2 !important;
  }
  .csm-grid .md-tall {
    grid-row: span 2 !important;
  }
  .csm-grid .md-big {
    grid-row: span 2 !important;
    grid-column: span 2 !important;
  }
}
@media only screen and (min-width: 992px) {
  .lh-lg-1 {
    line-height: 1;
  }
  .h-lg-85px {
    height: 85px !important;
  }
  .position-lg-relative {
    position: relative;
  }
  .position-lg-absolute {
    position: absolute;
  }

  .polygon-shape-shadow::before {
    content: "";
    display: block;
    width: 100%;
    height: 20px;
    position: absolute;
    left: -45px;
    bottom: 44.5px;
    transform: rotate(24.5deg);
  }
  .polygon-shape-shadow {
    overflow: hidden;
    position: relative;
  }
}
@media only screen and (min-width: 993px) {
  .w-lg-25 {
    width: 25% !important;
  }
  .w-lg-50 {
    width: 50% !important;
  }
  .w-lg-75 {
    width: 75% !important;
  }
  .w-lg-100 {
    width: 100% !important;
  }
  .h-lg-25 {
    height: 25% !important;
  }
  .h-lg-50 {
    height: 50% !important;
  }
  .h-lg-75 {
    height: 75% !important;
  }
  .h-lg-100 {
    height: 100% !important;
  }

  #profile_section {
    width: 340px;
    height: 500px;
    top: -20px;
    right: -20px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 65% 100%, 0 80%);
  }

  .grid-lg-1 {
    grid-template-columns: repeat(auto-fit, minmax(100%, 2fr)) !important;
  }
  .grid-lg-2 {
    grid-template-columns: repeat(auto-fit, minmax(48%, 2fr)) !important;
  }
  .grid-lg-3 {
    grid-template-columns: repeat(auto-fit, minmax(32%, 2fr)) !important;
  }
  .grid-lg-4 {
    grid-template-columns: repeat(auto-fit, minmax(23%, 2fr)) !important;
  }
  .grid-lg-5 {
    grid-template-columns: repeat(auto-fit, minmax(19%, 2fr)) !important;
  }
  .csm-grid .lg-wide {
    grid-column: span 2 !important;
  }
  .csm-grid .lg-tall {
    grid-row: span 2 !important;
  }
  .csm-grid .lg-big {
    grid-row: span 2 !important;
    grid-column: span 2 !important;
  }
}
@media only screen and (min-width: 1201px) {
  .w-xl-25 {
    width: 25% !important;
  }
  .w-xl-50 {
    width: 50% !important;
  }
  .w-xl-75 {
    width: 75% !important;
  }
  .w-xl-100 {
    width: 100% !important;
  }
  .h-xl-25 {
    height: 25% !important;
  }
  .h-xl-50 {
    height: 50% !important;
  }
  .h-xl-75 {
    height: 75% !important;
  }
  .h-xl-100 {
    height: 100% !important;
  }

  .grid-xl-1 {
    grid-template-columns: repeat(auto-fit, minmax(100%, 2fr)) !important;
  }
  .grid-xl-2 {
    grid-template-columns: repeat(auto-fit, minmax(48%, 2fr)) !important;
  }
  .grid-xl-3 {
    grid-template-columns: repeat(auto-fit, minmax(32%, 2fr)) !important;
  }
  .grid-xl-4 {
    grid-template-columns: repeat(auto-fit, minmax(23%, 2fr)) !important;
  }
  .grid-xl-5 {
    grid-template-columns: repeat(auto-fit, minmax(19%, 2fr)) !important;
  }

  .csm-grid .xl-wide {
    grid-column: span 2 !important;
  }
  .csm-grid .xl-tall {
    grid-row: span 2 !important;
  }
  .csm-grid .xl-big {
    grid-row: span 2 !important;
    grid-column: span 2 !important;
  }
}
@media only screen and (min-width: 1401px) {
  .w-xxl-25 {
    width: 25% !important;
  }
  .w-xxl-50 {
    width: 50% !important;
  }
  .w-xxl-75 {
    width: 75% !important;
  }
  .w-xxl-100 {
    width: 100% !important;
  }
  .h-xxl-25 {
    height: 25% !important;
  }
  .h-xxl-50 {
    height: 50% !important;
  }
  .h-xxl-75 {
    height: 75% !important;
  }
  .h-xxl-100 {
    height: 100% !important;
  }

  .grid-xxl-1 {
    grid-template-columns: repeat(auto-fit, minmax(100%, 2fr)) !important;
  }
  .grid-xxl-2 {
    grid-template-columns: repeat(auto-fit, minmax(48%, 2fr)) !important;
  }
  .grid-xxl-3 {
    grid-template-columns: repeat(auto-fit, minmax(32%, 2fr)) !important;
  }
  .grid-xxl-4 {
    grid-template-columns: repeat(auto-fit, minmax(23%, 2fr)) !important;
  }
  .grid-xxl-5 {
    grid-template-columns: repeat(auto-fit, minmax(19%, 2fr)) !important;
  }
  .csm-grid .xxl-wide {
    grid-column: span 2 !important;
  }
  .csm-grid .xxl-tall {
    grid-row: span 2 !important;
  }
  .csm-grid .xxl-big {
    grid-row: span 2 !important;
    grid-column: span 2 !important;
  }
}

/* custom plugin styles */
@keyframes slideup-hide {
  100% {
    height: 0px;
  }
}

@keyframes slideup-show {
  100% {
    /* height: 100%; */
    transform: scaleY(1);
  }
}
@keyframes small-to-large-show {
  100% {
    width: 100% !important;
    height: 100% !important;
    overflow: initial;
    top: 0 !important;
    left: 0 !important;
  }
}

.csm-modal {
  transition: all 0.2s;
  width: 0% !important;
  height: 0% !important;
  overflow: hidden;
}
.csm-modal.show {
  width: 100% !important;
  height: 100% !important;
  overflow: initial;
  top: 0 !important;
  left: 0 !important;
}
.cursor-pointer {
  cursor: pointer;
}
.f-0 svg {
  font-size: initial;
}
.mt-n1 {
  margin-top: -10px !important;
}
.lh-100 {
  line-height: 100%;
}
.p-11px {
  padding: 11px;
}

.center-bottom {
  left: 50%;
  top: 100%;
  transform: translate(-50%, 0);
}

.portfolio-item-col {
  overflow: hidden;
}

.portfolio-item.init .client-profile-box {
  top: -100%;
  animation: 0.3s portf-cpb-animation forwards;
}

.portfolio-item.init .title-box {
  bottom: 110%;
  animation: 0.2s portf-tb-animation forwards;
  animation-delay: 0.15s;
}

.portfolio-item.init .image-box {
  top: -100%;
  animation: 0.2s portf-ib-animation forwards;
  animation-delay: 0.3s;
}

.init-next {
  animation: 0.2s portf-in-animation forwards;
}

@keyframes portf-cpb-animation {
  100% {
    top: 80%;
  }
}

@keyframes portf-tb-animation {
  100% {
    bottom: 0;
  }
}

@keyframes portf-ib-animation {
  100% {
    top: 0;
  }
}

@keyframes portf-in-animation {
  100% {
    left: 0;
  }
}

.csmgriditem-changeable {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s cubic-bezier(1, 2.23, 0, 0.07);
}
.right-out {
  left: 100%;
}
.left-out {
  left: -100%;
}
.top-out {
  top: -100%;
}
.bottom-out {
  top: 100%;
}
.right-in,
.left-in {
  left: 0%;
}
.top-in,
.bottom-in {
  top: 0%;
}

.bg-page-title-text {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-size: 70px;
  color: rgba(255, 255, 255, 0.07);
}

.text-large {
  font-size: 40px;
  /* font-weight: bold; */
}
@media screen and (max-width: 992px) {
  .lg-bg-none {
    background-color: transparent !important;
  }
  .menu-header-style {
    height: 45px;
    text-align: left;
    margin-bottom: 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    line-height: 55px;
  }
  .menu-header-style h2 {
    text-align: left;
    line-height: 45px;
    padding-left: 20px;
  }
  .text-large {
    font-size: 25px;
  }
  .bg-page-title-text {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 100px;
    color: rgba(255, 255, 255, 0.07);
  }
  .bg-page-title-text {
    display: none;
  }
}

/* custom loader */
.csm-page-loader-parent {
  width: 100%;
  height: 80vh;
  height: 100vh;
  background: var(--section);
  position: relative;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}
.csm-page-loader {
  /* --background: linear-gradient(135deg, #23C4F8, #275EFE); */
  --duration: 0.8s;
  width: 200px;
  height: 140px;
  position: relative;
  animation: top-in 0.2s cubic-bezier(0.99, 2.28, 0, 0.31);
}
@keyframes top-in {
  0% {
    top: 0%;
  }
  100% {
    top: 50%;
  }
}
.csm-page-loader:before,
.csm-page-loader:after {
  --r: -6deg;
  content: "";
  position: absolute;
  bottom: 8px;
  width: 120px;
  top: 80%;
  box-shadow: 0 16px 12px var(--shadow);
  transform: rotate(var(--r));
}
.csm-page-loader:before {
  left: 4px;
}
.csm-page-loader:after {
  --r: 6deg;
  right: 4px;
}
.csm-page-loader div {
  width: 100%;
  height: 100%;
  border-radius: 13px;
  position: relative;
  z-index: 1;
  perspective: 600px;
  box-shadow: 0 4px 6px var(--shadow);
  background-image: var(--background);
}
.csm-page-loader div ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}
.csm-page-loader.reverse div ul li {
  animation-direction: reverse;
}
.csm-page-loader div ul li {
  --r: 180deg;
  --o: 0;
  --c: var(--bg-compl-2);
  position: absolute;
  top: 10px;
  left: 10px;
  transform-origin: 100% 50%;
  color: var(--c);
  opacity: var(--o);
  transform: rotateY(var(--r));
  animation: var(--duration) ease infinite;
}
.csm-page-loader div ul li:nth-child(2) {
  --c: var(--color);
  animation-name: page-2;
}
.csm-page-loader div ul li:nth-child(3) {
  --c: var(--color);
  animation-name: page-3;
}
.csm-page-loader div ul li:nth-child(4) {
  --c: var(--color);
  animation-name: page-4;
}
.csm-page-loader div ul li:nth-child(5) {
  --c: var(--color);
  animation-name: page-5;
}
.csm-page-loader div ul li svg {
  width: 90px;
  height: 120px;
  display: block;
}
.csm-page-loader div ul li:first-child {
  --r: 0deg;
  --o: 1;
}
.csm-page-loader div ul li:last-child {
  --o: 1;
}
.csm-page-loader span {
  display: block;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 10px;
  font-size: 18px;
  text-align: center;
  color: var(--color);
}

@keyframes page-2 {
  0% {
    transform: rotateY(180deg);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  35%,
  100% {
    opacity: 0;
  }
  50%,
  100% {
    transform: rotateY(0deg);
  }
}
@keyframes page-3 {
  15% {
    transform: rotateY(180deg);
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
  65%,
  100% {
    transform: rotateY(0deg);
  }
}
@keyframes page-4 {
  30% {
    transform: rotateY(180deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  65%,
  100% {
    opacity: 0;
  }
  80%,
  100% {
    transform: rotateY(0deg);
  }
}
@keyframes page-5 {
  45% {
    transform: rotateY(180deg);
    opacity: 0;
  }
  65% {
    opacity: 1;
  }
  80%,
  100% {
    opacity: 0;
  }
  95%,
  100% {
    transform: rotateY(0deg);
  }
}

html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
input.arrow-none::-webkit-outer-spin-button,
input.arrow-none::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* input.arrow-none[type="number"] {
  -moz-appearance: textfield;
} */

.flex-item-col {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.reply-margin-left {
  margin-left: 50px;
  width: calc(100% - 50px) !important;
}
.lh-0 {
  line-height: 0;
}

.comment-vote.icon .up-vote.active span::after {
  content: "-";
  top: 64%;
  font-size: 22px;
}
.comment-vote.icon .down-vote.active span::after {
  content: "-";
  top: 40%;
  font-size: 22px;
}

.comment-vote.icon .up-vote span,
.comment-vote.icon .down-vote span {
  cursor: pointer;
  position: relative;
}

.comment-vote.icon .up-vote span::after {
  content: "+";
  position: absolute;
  top: 64%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
}
.comment-vote.icon .down-vote span::after {
  content: "+";
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
}
.lh-1 {
  line-height: 1.2 !important;
}
.fs-0 {
  font-size: 0;
}

.\35 0px-center-svg {
  position: relative;
  width: 50px;
  height: 50px;
  display: inline-block;
}
.\35 0px-center-svg svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.shake-effect {
  animation: 0.3s shake-effect ease-in-out;
  border-color: red !important;
}
.shake-effect-alt {
  animation: 0.3s shake-effect-alt ease-in-out;
}
.shake-effect-alt-rev {
  animation: 0.3s shake-effect ease-in-out;
}
@keyframes shake-effect {
  0% {
    margin-left: -10px;
  }
  25% {
    margin-left: 10px;
  }
  50% {
    margin-left: -10px;
  }
  75% {
    margin-left: 10px;
  }
  100% {
    margin-left: -10px;
  }
}
@keyframes shake-effect-alt {
  0% {
    margin-right: -10px;
  }
  25% {
    margin-right: 10px;
  }
  50% {
    margin-right: -10px;
  }
  75% {
    margin-right: 10px;
  }
  100% {
    margin-right: -10px;
  }
}

div#angry_emoji {
  position: fixed;
  font-size: 300px;
  transition: 0.3s all;
  opacity: 0;
  pointer-events: none;
  font-size: 18px;
}

@keyframes angry-emoji-1 {
  0% {
    opacity: 1;
  }
  5% {
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 300px;
  }
  100% {
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    font-size: 300px;
  }
}

@keyframes hard-shake-effect {
  0% {
    margin-top: 50px;
    margin-left: 50px;
  }
  25% {
    margin-top: -50px;
    margin-left: 50px;
  }
  50% {
    margin-top: 50px;
    margin-left: -50px;
  }
  75% {
    margin-top: -50px;
    margin-left: 50px;
  }
  100% {
    margin-top: 50px;
    margin-left: 50px;
  }
}
/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px var(--section) inset !important;
  -webkit-text-fill-color: var(--color) !important;
}
.blog-desc img {
    max-width: 100%;
    height: auto;
}