/* 
Theme : SSMD marketing services kolkata,
Version : 1.0,
Author : DigitalPiloto
*/
/**************************************
                General
**************************************/
:root {
  --theme-color: #f58220;
  --theme-color-gradient: -webkit-linear-gradient(
    90deg,
    rgb(239, 172, 10) 0%,
    rgb(245, 130, 32) 100%
  );
  --theme-blue-gradient: -webkit-linear-gradient(
    -94deg,
    rgb(18, 142, 217) 0%,
    rgb(0, 83, 217) 100%
  );
  --theme-text-dark: rgb(18, 18, 18);
  --theme-bg-blue: #091f3f;
  --theme-dec-gray: rgb(18, 18, 18);
  --theme-light: rgb(255, 255, 255);
  --shadow-sm: 0px 11px 18px 0px rgb(255 255 255 / 13%);
  --bg-gray: #f0f0f0;
  --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --animation-duration: 1s;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}
html::-webkit-scrollbar {
  width: 2px;
  background-color: #7595ff4d;
}
html::-webkit-scrollbar-thumb {
  background: var(--theme-blue-gradient);
  border-radius: 50rem;
}

a,
button {
  cursor: pointer;
  border: none;
  outline: none;
  user-select: none;
  background: none;
  box-shadow: none;
}
ol,
ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

body {
  font-size: 14px;
  font-family: "Roboto Regular";
  font-weight: 400;
  color: var(--theme-text-dark);
  scroll-padding: 500px;
}

a,
a:hover,
a:focus {
  color: currentColor;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  text-decoration: none;
}
h1,
h2,
h3,
h4 {
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  font-family: "Roboto Bold";
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #292929;
  font-size: 20px;
}
main {
  overflow: hidden;
}
img {
  max-width: 100%;
  height: auto;
}

/**************************************
         Animation
**************************************/
/* Keyframes */
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes zoomReverseIn {
  0% {
    opacity: 0;
    transform: scale(1.25);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes flipInY {
  0% {
    opacity: 0;
    transform: perspective(90vw) rotateY(67.5deg);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

[data-animation] {
  opacity: 0;
  animation-timing-function: var(--animation-timing-function);
  animation-fill-mode: both;
  animation-duration: var(--animation-duration);
  will-change: transform, opacity;
}

.animations-disabled,
.animations-disabled [data-animation] {
  animation: none !important;
  opacity: 1 !important;
}

.slideInUp {
  animation-name: slideInUp;
}
.slideInDown {
  animation-name: slideInDown;
}
.slideInLeft {
  animation-name: slideInLeft;
}
.slideInRight {
  animation-name: slideInRight;
}
.fadeIn {
  animation-name: fadeIn;
}
.zoomIn {
  animation-name: zoomIn;
}
.zoomReverseIn {
  animation-name: zoomReverseIn;
}
.flipInY {
  animation-name: flipInY;
}
.flipOutY {
  animation-name: flipInY;
  animation-direction: reverse;
}

/**************************************
      Menu
**************************************/

.header {
  position: fixed;
  width: 100%;
  height: auto;
  padding: 13px 0;
  left: 0;
  right: 0;
  z-index: 9;
  margin: 0 auto;
  background-color: #ffffff00;
  transition: ease 0.3s;
  -webkit-transition: ease 0.3s;
  -moz-transition: ease 0.3s;
  -ms-transition: ease 0.3s;
  -o-transition: ease 0.3s;
}

header {
  position: relative;
  transition: all 0.4s;
}

header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #071f42;
  box-shadow: var(--shadow-sm);
  padding: 8px 0;
}
.navTrigger {
  z-index: 1000;
  width: 64px;
  height: 48px;
  background: 0 0;
  border: 0;
  outline: 0;
  border: none;
  cursor: pointer;
  -webkit-appearence: none;
  -webkit-tap-highlight-color: transparent;
}

.navTrigger:focus {
  outline: 0;
}

.navTrigger svg {
  width: 64px;
  height: 48px;
  border-radius: 4px;
  stroke: #fff;
  stroke-width: 4px;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  display: block;
  position: relative;
  background-color: var(--theme-color);
  transition: 0.5s;
}

.navTrigger svg:hover {
  background: var(--theme-blue-gradient);
}

.navTrigger svg path {
  transition: stroke-dasharray var(--duration, 0.85s) var(--easing, ease)
      var(--delay, 0s),
    stroke-dashoffset var(--duration, 0.85s) var(--easing, ease)
      var(--delay, 0s);
  stroke-dasharray: var(--array-1, 26px) var(--array-2, 100px);
  stroke-dashoffset: var(--offset, 126px);
  transform: translateZ(0);
}

.navTrigger svg path:nth-child(2) {
  --duration: 0.7s;
  --easing: ease-in;
  --offset: 100px;
  --array-2: 74px;
}

.navTrigger svg path:nth-child(3) {
  --offset: 133px;
  --array-2: 107px;
}

.navTrigger.active svg {
  stroke: #fff;
  background: var(--theme-blue-gradient);
}

.navTrigger.active svg path {
  --offset: 57px;
}

.navTrigger.active svg path:first-child,
.navTrigger.active svg path:nth-child(3) {
  --delay: 0.15s;
  --easing: cubic-bezier(0.2, 0.4, 0.2, 1.1);
}

.navTrigger.active svg path:nth-child(2) {
  --duration: 0.4s;
  --offset: 2px;
  --array-1: 1px;
}

.navTrigger.active svg path:nth-child(3) {
  --offset: 58px;
}

.navMenu {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  bottom: 0;
  background: #071f42;
  opacity: 0;
  z-index: -1;
  transition: 375ms;
  width: 400px;
  transform: translateX(100%);
  overflow: auto;
  padding-top: 80px;
  box-shadow: -9px 0px 17px #ffffff2e;
}
.navMenu::-webkit-scrollbar {
  width: 2px;
  background-color: #7595ff4d;
}
.navMenu::-webkit-scrollbar-thumb {
  background: var(--theme-blue-gradient);
  border-radius: 50rem;
}
.navMenu .logo {
  position: absolute;
  top: 0;
  padding: 15px;
  width: 100%;
  background: #071f42;
  height: 80px;
}
.navMenu .logo img {
  width: 55%;
  height: auto;
}
.navMenu.active {
  opacity: 1;
  z-index: 100;
  transform: translateX(0);
}

.navMenu.active li {
  opacity: 1;
  transform: translateY(0);
}

.navMenu ul {
  list-style: none;
  padding: 0;
}

.navMenu ul li {
  display: block;
  text-align: right;
  opacity: 0;
  transform: translateY(-10px);
}

.navMenu ul li a {
  left: 0;
  display: block;
  padding: 12px 0;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: 0.25s;
  text-align: left;
  border-bottom: 1px solid #ffffff26;
  padding-inline: 20px;
}

.navMenu ul li a:hover {
  padding-left: 30px;
  color: #f58220;
  background: #071f42;
}
.navMenu .navTrigger {
  position: absolute;
  right: 0;
  top: 0;
}
.navMenu .navTrigger svg {
  stroke: #fff;
  background: var(--theme-blue-gradient);
}
.menu-overlay.active {
  position: fixed;
  inset: 0;
  background: #071f4299;
}
.dropdown ul,
.sub-dropdown ul,
.dropdown.active .sub-dropdown ul {
  background: #00255b;
  max-height: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.dropdown.active ul,
.dropdown.active .sub-dropdown.active ul {
  max-height: 400px;
  visibility: visible;
  transition: all 0.5s;
}
.dropdown.active ul a {
  visibility: visible;
}
.dropdown ul a {
  visibility: hidden;
}
.dropdown::before,
.sub-dropdown::before {
  content: "";
  position: absolute;
  right: 22px;
  top: 14px;
  z-index: 11;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(225deg);
}
/**************************************
                Helper Class
**************************************/
.section-gap {
  padding: 60px 0;
}
.primary-btn {
  border: 0;
  padding: 10px 15px;
  background: #f58220;
  font-size: 20px;
  color: var(--theme-light);
  line-height: 1.4;
  border-radius: 4px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  display: inline-block;
  mix-blend-mode: difference;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 1;
}

.primary-btn:after,
.secondary-btn::after {
  content: "";
  background: var(--theme-blue-gradient);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  scale: 1 0;
  z-index: -1;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.primary-btn:hover:after,
.secondary-btn:hover:after {
  scale: 1 1;
}
.primary-btn:hover {
  color: var(--theme-light);
}

.container {
  max-width: 1400px;
}

.fixed-btn {
  position: fixed;
  top: 55%;
  right: 10px;
  z-index: 8;
  width: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.enq-btn {
  position: fixed;
  top: 20%;
  right: 5px;
  height: 38px;
  font-weight: 400;
  text-align: center;
  z-index: 9;
  transform: rotate(-90deg);
  transform-origin: bottom right;
  border-radius: 0px;
  overflow: clip;
  display: flex;
  border-radius: 0px;
  background-image: var(--theme-blue-gradient);
  border-radius: 4px;
  box-shadow: -4px -4px 0px #9fc9ff;
}

.enq-btn::after,
.enq-btn::before {
  content: "";
  content: "";
  position: absolute;
  z-index: -1;
  background-image: var(--theme-color-gradient);
  inset: 0;
  scale: 1 0;
  transition: scale 450ms;
  transform-origin: top;
}
.enq-btn:hover::after,
.enq-btn:focus-visible::after {
  scale: 1 1;
  transform-origin: right;
}
.enq-btn a {
  font-size: 18px;
  letter-spacing: 0px;
  line-height: 37px;
  color: var(--theme-light);
  padding: 0 13px;
  font-weight: 100;
  font-family: "Roboto Regular";
}
.enq-btn a img {
  transform: rotate(90deg) translateX(6px) translateY(4px);
}
.call-btn {
  position: relative;
  padding-left: 35px;
}
.call-btn span {
  position: absolute;
  left: 0;
  bottom: 6px;
}
.call-btn p {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 158.9%;
  margin: 0;
}
.call-btn h4 {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 158.9%;
}
.call-btn:hover h4 {
  color: #f58220;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.action-btn {
  display: flex;
  align-items: center;
  gap: 40px;
}
/*************************************
                Home Page
**************************************/
.hero {
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.hero h1 {
  font-size: 49px;
  color: var(--theme-light);
  font-weight: normal;
  line-height: 1.252;
  margin-bottom: 15px;
}
.hero h6 {
  font-size: 20px;
  color: var(--theme-light);
  line-height: 1.478;
  font-weight: 100;
  margin-bottom: 15px;
}
.banner-content {
  padding-block: 17%;
  position: relative;
  z-index: 1;
  margin-top: 92px;
}
.btn-group img,
.fc,
.fw {
  transition: all 0.5s;
  margin-inline: 5px;
}
.btn-group a:nth-child(2):hover img,
.btn-group a:nth-child(3):hover img,
.fc:hover,
.fw:hover {
  transform: scale(1.2);
}
/************************************
  Clients
************************************/
.text-center {
  text-align: center;
}
.clients {
  padding-top: 30px;
  padding-bottom: 50px;
}
.logo-slider-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.clients h4 {
  color: #6a6a6a;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 25px;
}
.client-logo img {
  margin: auto;
}
img {
  transition: all 0.5s;
}
.client-logo:hover img {
  transform: scale(1.2);
}
.slick-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: all 0.5s;
}
.slick-arrow:hover {
  background-color: #dddddd77;
}
.slick-arrow::before {
  content: "";
  box-sizing: border-box;
  height: 14px;
  width: 14px;
  border-style: solid;
  border-color: var(--theme-text-dark);
  border-width: 0px 1px 1px 0px;
  transform: rotate(314deg);
  transition: all 0.5s;
  opacity: 1;
}
.slick-arrow.slick-prev::before {
  transform: rotate(140deg);
}
.video-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.video_img {
  width: 100%;
  height: 100%;
}
.video-box .content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-box .icon {
  transition: all 0.5s;
}
.video-box:hover .icon {
  transform: scale(1.2);
}
.mb-35 {
  margin-bottom: 35px;
}
.our-success-story {
  position: relative;
}
.our-success-story::after {
  content: "";
  position: absolute;
  inset: 0 62px;
  background: #fff6ee;
  z-index: -1;
}
/************************************
   About
************************************/
.about {
  position: relative;
  padding-block: 80px;
}
.about-content h2 {
  position: relative;
}

h2 {
  font-size: 49px;
  color: rgb(18, 18, 18);
  font-weight: bold;
  line-height: 1.19;
  margin-bottom: 10px;
}
.about p {
  font-size: 20px;
  line-height: 1.4;
  text-align: justify;
}
.think-about {
  background: #fffaf6;
  padding-bottom: 150px;
}
.think-about .small-line {
  margin: 0;
}
.think-about ul {
  padding: 0;
}
.think-about ul li {
  position: relative;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 198.4%;
  padding-left: 30px;
  list-style-type: none;
}
.think-about ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  background-image: url(../img/check.webp);
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
}
.why-hire h3 {
  font-size: 35px;
  color: #071f42;
  font-weight: bold;
  line-height: 1.19;
  margin-bottom: 10px;
}
/************************************
   ROI
************************************/
.roi {
  background: linear-gradient(180deg, #071f42 47.52%, #124fa8 100%);
}
.roi .small-line {
  margin-bottom: 10px;
}
.roi :is(h2, p) {
  color: #fff;
}
.roi .text-center img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%)
    hue-rotate(53deg) brightness(105%) contrast(101%);
}
.roi-list {
  border-radius: 13px;
  border: 1px solid #071f42;
  background: #fff;
  margin-bottom: 15px;
  transition: all 0.5s;
}
.roi-list:hover {
  transform: translateY(-5px);
}
.roi-content {
  padding: 22px;
  position: relative;
  z-index: 1;
}
.roi-content h3 {
  color: #071f42;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 10px;
}
.roi-content p {
  color: #292929;
}
.roi-content .primary-btn {
  border-radius: 4px;
  border: 1px solid #071f42;
  background-color: transparent;
  color: #071f42;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 158.9%;
}
.roi-content .primary-btn:hover {
  color: #fff;
}
.box {
  border-radius: 9px;
  border: 1px solid #d0d0d0;
  background: #fff;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.15);
  padding: 0 33px;
  text-align: center;
  padding-bottom: 70px;
}
.box h3 {
  background: linear-gradient(90deg, #fff 0%, #ffe4cd 53%, #fff 100%);
  text-align: center;
  color: #171717;
  font-size: 24px;
  padding-block: 4px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.box img {
  margin: auto;
}
.box .case-studues-img {
  margin-bottom: 30px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-studies-slider .item .primary-btn {
  transform: translateY(-36px);
  mix-blend-mode: normal;
}
.case-studies-slider .item {
  text-align: center;
}
.interest {
  background-image: url(../img/bg1.webp);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -80px;
  margin-bottom: 80px;
}
.flex-box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.flex-box h5 {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 158.9%; /* 38.136px */
  font-weight: normal;
}
.flex-box h5:hover a,
.why-hire .roi-content p a {
  color: #f58220;
}
.interest :is(h2, p, h5) {
  color: #fff;
}
.interest h2 {
  font-size: 42px;
  font-weight: normal;
}
.flex-box .primary-btn {
  mix-blend-mode: normal;
}
.ms-auto {
  margin-left: auto;
}
.who-we-are {
  background-image: url(../img/who-we-are.webp);
  background-repeat: no-repeat;
  background-size: cover;
  padding-block: 6%;
}

.who-we-are :is(h2, p) {
  color: #fff;
}
.who-we-are img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%)
    hue-rotate(53deg) brightness(105%) contrast(101%);
}
.who-we-are .small-line {
  margin: 0;
  margin-bottom: 10px;
}
.who-we-are .primary-btn {
  mix-blend-mode: normal;
}
.who-we-are p span {
  color: #f58220;
}

/***********************************
  Process
************************************/

.timeline {
  position: relative;
  width: 100%;
  margin: 0 auto;
  margin-top: 20px;
  padding: 1em 0;
  list-style-type: none;
}

.timeline:before {
  position: absolute;
  left: 50%;
  top: 0;
  content: " ";
  display: block;
  width: 1px;
  height: 100%;
  margin-left: -3px;
  background: #d8d8d800;
  border-right: 1px dashed #d8d8d8;
  z-index: 0;
}

.timeline li {
  padding: 0 0;
  list-style-type: none;
}

.timeline li:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.direction-l {
  position: relative;
  width: 47.7%;
  float: left;
  text-align: right;
}

.direction-r {
  position: relative;
  width: 47.7%;
  float: right;
}
.icon-box {
  width: 111px;
  height: 111px;
  background-color: #fff;
  border: 1px solid #f2f2f2;
  filter: drop-shadow(0px 10px 14px rgba(0, 0, 0, 0.16));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}
.icon-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 50%;
  z-index: 0;
  transition: all 0.5s;
  opacity: 0;
  border: 2px dashed #f58220;
  box-sizing: border-box;
}
.icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(6 102 217 / 12%);
  border-radius: 50%;
  z-index: -1;
  transition: all 0.5s;
  opacity: 0;
}
.content-box:hover .icon-box:before {
  opacity: 1;
  transform: scale(0.8);
}
.content-box:hover .icon-box:after {
  opacity: 1;
  animation: rotate 10s linear infinite;
}
@keyframes rotate {
  0% {
    transform: scale(0.92) rotate(0deg);
  }
  100% {
    transform: scale(0.92) rotate(360deg);
  }
}
.direction-l .content-box {
  padding-right: 136px;
}
.direction-r .content-box {
  padding-left: 136px;
}
.direction-l .icon-box {
  right: 0;
}
.direction-r .icon-box {
  left: 0;
}
.content-box {
  position: relative;
}
.content-box h3 {
  color: #071f42;
  font-size: 24px;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  font-family: "Roboto Medium";
}
.content-box::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #f58220;
  border: 4px solid #fff;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  position: absolute;
  right: -38px;
  top: 45px;
  z-index: 9;
}
.direction-r .content-box::after {
  right: auto;
  left: -44px;
}
@media screen and (max-width: 660px) {
  .timeline {
    width: 100%;
    padding: 4em 0 1em 0;
  }

  .timeline li {
    padding: 2em 0;
  }

  .direction-l,
  .direction-r {
    float: none;
    width: 100%;
    text-align: center;
  }
}

.faq {
  background-image: url(../img/faq-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.mx-auto {
  margin: auto;
}

.revealed {
  background: #fffaf6;
}
.revealed .roi-list {
  border-color: #ddd;
  position: relative;
  margin-top: 45px;
  padding-top: 15px;
}
.revealed p a,
.business-show p a,
.link-color p a {
  color: #f58220;
}
.business-show p a {
  background-color: #fff;
  padding-block: 1px;
  padding-inline: 2px;
  line-height: 18px;
  display: inline-block;
}
.b {
  font-weight: bold;
  color: #071f42;
}
ul {
  padding-left: 22px;
  margin-bottom: 20px;
}
ul li {
  margin-top: 0;
  margin-bottom: 10px;
  color: #071f42;
  font-size: 20px;
  font-family: "Roboto Medium";
  list-style-type: circle;
}
.highlight {
  background-color: var(--theme-color);
  position: absolute;
  left: 10px;
  top: -26px;
  padding: 10px;
  font-size: 20px;
  border-radius: 10px;
  color: #fff;
  font-family: "Roboto Bold";
}
.highlight a {
  color: var(--theme-bg-blue);
}
.box-orange {
  background: #ffcca0;
  border-color: #f58220;
}
.box-blue {
  background: #abc5eb;
}
.box-gray {
  background: #e9e9e9;
  border-color: #9d9d9d;
}
.box-dark-gray {
  background: #c5c5c5;
  border-color: #373737;
}
.location li.roi-content {
  padding: 0;
}
.reasons li {
  list-style: decimal;
}
.mt-0 {
  margin-top: 0 !important;
}
.bengal.revealed .roi-list {
  margin-top: 20px;
}
.mb-10 {
  margin-bottom: 10px;
}
/* Modal */
.fade {
  transition: opacity 0.15s linear;
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 1.75rem;
  pointer-events: none;
}
.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1.75rem * 2);
  height: 100%;
}
.modal-dialog {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: rgb(0, 9, 19);
  box-shadow: 0px 0px 18px 0px rgb(136, 254, 231);
  background-clip: padding-box;
  border-radius: 20px;
  outline: 0;
  overflow: hidden;
}
.modal form {
  padding: 30px 10px;
}
.enqform .btn-close {
  position: absolute;
  right: 0px;
  top: 0;
  box-shadow: 0px 0px 3px 0px #00000040;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #ffffff1f;
  opacity: 1;
  font-size: 25px;
  color: rgb(136, 254, 231);
  z-index: 10;
  transition: all 0.4s;
}
.enqform .btn-close:hover {
  background: #ffffff00;
}
.modal .contact {
  background-color: rgb(0, 9, 19);
}
.modal .contact img {
  z-index: 1;
  bottom: 0px;
  left: -62px;
  width: 70%;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}
.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}
.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: 1045;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  visibility: hidden;
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
  transition: transform 0.3s ease-in-out;
  width: 400px;
}

.offcanvas.offcanvas-end {
  top: 0;
  right: 0;
  border-left: 1px solid #1313132d;
  transform: translateX(100%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}

.offcanvas-header,
.offcanvas .offcanvas-header.form-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  position: relative;
  background: var(--theme-color-gradient);
}

.offcanvas .heading-section h2 {
  position: relative;
  bottom: unset;
  font-size: 30px;
}

.offcanvas .heading-section {
  margin: 0;
}

.offcanvas-body {
  flex-grow: 1;
  padding: 1rem 1rem;
  overflow-y: auto;
  background: var(--theme-color-gradient);
}
.form-input {
  width: 100%;
  font-size: 18px;
  padding: 16px 22px;
  background-color: #ffffff33;
  border: 0;
  border-radius: 10px;
  outline: none;
  color: #fff;
  margin-bottom: 10px;
}
select option {
  color: #000;
}
.form-input:focus {
  outline: 1px solid var(--theme-light);
}
.form-input::placeholder {
  color: #fff;
}
.form-group.submit-btn {
  position: relative;
  z-index: 9;
}
.submit-btn .primary-btn {
  width: 100%;
  background: var(--theme-blue-gradient);
  z-index: 1;
  position: relative;
}

.offcanvas-body::-webkit-scrollbar {
  width: 0;
}

.offcanvas.hiding,
.offcanvas.show,
.offcanvas.showing {
  visibility: visible;
}

.offcanvas.show:not(.hiding),
.offcanvas.showing {
  transform: none;
}

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.offcanvas-backdrop.show {
  opacity: 0.5;
}

.fade {
  transition: opacity 0.15s linear;
}

button.btn-close img {
  border-bottom: 1px solid #6f5036;
  padding-bottom: 4px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7490%)
    hue-rotate(132deg) brightness(110%) contrast(101%);
}

button.btn-close {
  width: 50px;
  height: 50px;
  opacity: 1;
  color: #ffffff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border-radius: 50%;
  flex-direction: column;
  gap: 5px;
  background: var(--theme-blue-gradient);
  transition: all 0.5s;
  /* position: absolute;
    right: 9px;
    top: 10px; */
}

button.btn-close:hover {
  background-color: #000;
}

.client-speak.case-studies .client-video {
  height: 569px;
}
.client-speak.case-studies .client-video img {
  height: 100%;
}
.client-speak-slider .slick-list,
.case-studies-slider .slick-list {
  margin: 0 -15px;
}
.client-speak-slider .slick-slide,
.case-studies-slider .slick-slide {
  margin: 0 15px;
}

.slick-dots li button {
  border-style: solid;
  border-width: 1px;
  border-color: rgb(218, 218, 218);
  border-radius: 50%;
  background-color: var(--theme-bg-blue);
  width: 16px;
  height: 16px;
}
.slick-dots {
  bottom: -50px;
}

.slick-dots li.slick-active button {
  background-color: var(--theme-light);
  border-color: var(--theme-color);
  background-color: var(--theme-color);
}
.about-image {
  position: relative;
}
.about-image img {
  border-radius: 25px;
}
.small-line {
  width: 100px;
  height: 2px;
  display: block;
  background-color: var(--theme-color);
  margin: auto;
}
.heading {
  text-align: center;
  margin: auto;
  margin-bottom: 40px;
}
.heading h2 {
  margin-bottom: 10px;
}
.heading p {
  font-size: 20px;
  line-height: 1.4;
}
.why-choose-items {
  position: relative;
}
.choose-item {
  text-align: center;
}

.faq-item {
  background-color: var(--theme-light);
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 20px;
  position: relative;
  cursor: pointer;
}
.faq h2 {
  color: var(--theme-light);
}
.faq-item:after {
  content: "";
  box-sizing: border-box;
  height: 14px;
  width: 14px;
  border-style: solid;
  border-color: var(--theme-bg-blue);
  border-width: 0px 1px 1px 0px;
  transform: rotate(45deg);
  position: absolute;
  right: 16px;
  top: 21px;
  transition: all 0.5s;
}
.faq-item.open:after {
  transform: rotate(-133deg);
}
.faq-item h4 {
  font-size: 20px;
  line-height: 1.5;
  text-align: left;
  padding-right: 5%;
}
.faq-item.open h4 {
  margin-bottom: 15px;
}
.accordion-content {
  margin-bottom: 15px;
}
.blog-big {
  position: relative;
}
.blog-big img {
  width: 100%;
}
.blog-big .blog-content {
  /* position: absolute; */
  position: relative;
  inset: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
}
.blog-big .blog-content :is(h3, p, h6) {
  color: #fff;
}
.blog-big .blog-content h3 {
  font-family: "Roboto Medium";
  color: #000;
  font-size: 30px;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  margin-bottom: 10px;
}
.blog-big .blog-content p {
  color: #000;
}
.date {
  background: #f58220;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 144.9%;
  padding-inline: 10px;
  padding-block: 4px;
  margin-bottom: 5px;
}
.blog-list h4 {
  color: #222;
  font-size: 20px;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  font-family: "Roboto Medium";
}
.blog-list .date {
  background-color: transparent;
  padding: 0;
  color: #aeaeae;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 144.9%;
  text-align: left;
}
.blog-content {
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 20px;
}
.blog-list {
  margin-bottom: 25px;
}
.blog-list:hover h4,
.blog-big:hover h3 {
  color: #f58220;
}
.form-control {
  border-radius: 4px;
  border: 1px solid #393939;
  width: 100%;
  background: transparent;
  padding: 19px 10px;
  font-size: 18px;
  color: #000;
  outline: none;
}
.form-control:focus {
  border: 1px solid #f58220;
}
label {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.9%; /* 26.082px */
  margin-bottom: 4px;
  display: block;
}
form .primary-btn {
  width: 187px;
  height: 52px;
  mix-blend-mode: normal;
}
form .primary-btn:hover {
  background-color: #071f42;
}

footer {
  background: #061224;
  padding-top: 40px;
}
.footer-menu ul {
  padding: 0;
}
.footer-menu ul li {
  list-style-type: none;
}
.footer-logo {
  margin-bottom: 20px;
  display: block;
}
footer h4 {
  color: #fff;
  font-size: 22px;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  font-family: "Roboto Medium";
  margin-bottom: 10px;
}
footer ul li a {
  color: #e1e1e1;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 225.9%; /* 40.662px */
}
footer ul li a:hover {
  color: #f58220;
}
footer p {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.9%;
}
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.205);
  padding-block: 15px;
  margin-top: 25px;
}
.copyright p {
  color: #b6b6b6;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.9%;
  margin: 0;
}

/*******************************
  Mobile Menu
********************************/
.mobile-bottom-menu {
  background: #071f42;
  background-image: url(../img/faq-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: bottom;
  text-align: center;
  z-index: 99;
  display: none;
  background-size: cover;
  box-shadow: 0px -5px 9px 0px #b1b1b124;
}

.mobile-bottom-menu ul li {
  display: inline-block;
  height: 60px;
  padding-top: 6px;
  position: relative;
  width: 118px;
}

.mobile-bottom-menu ul {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0;
  padding-inline: 10px;
  margin-bottom: 0;
}

.whatsapp {
  position: relative;
  width: 54px;
}

.whatsapp .wp {
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  width: 54px;
  height: 54px;
  top: -40px;
}

.mobile-bottom-menu ul li a {
  width: 20%;
  font-size: 15px;
  color: rgb(255, 255, 255);
  line-height: 6px;
}

.mobile-bottom-menu ul li.active a,
.mobile-bottom-menu ul li:hover a {
  color: #f58220;
}

.mobile-bottom-menu ul li a img {
  filter: brightness(0) saturate(100%) invert(98%) sepia(47%) saturate(0%)
    hue-rotate(285deg) brightness(114%) contrast(100%);
}
.mobile-bottom-menu ul li.active a img,
.mobile-bottom-menu ul li:hover a img {
  filter: brightness(0) saturate(100%) invert(70%) sepia(64%) saturate(3910%)
    hue-rotate(346deg) brightness(98%) contrast(96%);
}

.mobile-bottom-menu ul li a img {
  height: 24px;
  width: auto;
  margin-bottom: 0px;
}

.wp img {
  border-radius: 50%;
  box-shadow: 0 5px 0px -0.88px rgb(255 255 255 / 25%);
  margin-bottom: -6px;
}

.mobile-bottom-menu ul li.active::before {
  content: "";
  background-color: #f58220;
  position: absolute;
  height: 3px;
  top: -1px;
  left: 8px;
  right: 8px;
}
@media (max-width: 991.98px) {
  .mobile-bottom-menu {
    display: block;
  }
}
.logo-slider-item {
  justify-content: center;
}
.client-logo {
  box-shadow: 0 0 10px 0 #0000001f;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
.clients {
  .item {
    width: 14.28%;
  }
}
/*******************************
  Responsive
********************************/
@media (max-width: 1920px) {
}

@media (max-width: 1440px), (max-width: 1366px) {
  .container {
    max-width: 1200px;
  }
  .hero h1,
  h2 {
    font-size: 40px;
  }
  .banner-content {
    padding-block: 10%;
  }
  .hero h6,
  p {
    font-size: 17px;
  }
  .our-success-story::after {
    inset: 0 32px;
  }
  .about p {
    margin-bottom: 10px;
  }
  .think-about ul li {
    font-size: 18px;
  }
  .interest h2 {
    font-size: 32px;
    font-weight: normal;
  }
  .who-we-are {
    padding-block: 3%;
  }
  .faq-item h4 {
    font-size: 18px;
  }
  footer ul li a {
    font-size: 16px;
  }

  .content-box::after {
    right: -34px;
  }
  .direction-r .content-box::after {
    right: auto;
    left: -40px;
  }
  .about p {
    font-size: 17px;
  }
}
@media (max-width: 1366px) {
}

@media (max-width: 1199.98px) {
}

@media (max-width: 991.98px) {
  .container {
    padding-inline: 30px;
  }
  .clients {
    .item {
      width: 19.28%;
    }
  }
  .call-btn :is(p, h4) {
    display: none;
  }
  .call-btn span {
    position: relative;
    left: 0;
    bottom: 0px;
    width: 48px;
    height: 48px;
    background: #f58220;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .action-btn {
    gap: 20px;
  }
  .hero h1,
  h2 {
    font-size: 34px;
  }
  .our-success-story::after {
    inset: 0 10px;
  }
  .about-image {
    position: relative;
    text-align: center;
  }
  .roi-list {
    text-align: center;
  }
  .roi .container .roi-list:nth-child(2n) .col-lg-3 {
    order: 1;
  }
  .roi .container .roi-list:nth-child(2n) .col-lg-9 {
    order: 2;
  }
  .roi-content {
    padding: 22px;
    padding-top: 0;
  }
  .think-about ul li {
    font-size: 18px;
  }
  .think-about-img {
    width: 100%;
  }
  .interest {
    margin-bottom: 60px;
    flex-direction: column;
    text-align: center;
  }
  .who-we-are {
    background-position: right;
  }
  .direction-l,
  .direction-r {
    position: relative;
    width: 100%;
    float: unset;
    text-align: center;
  }
  .direction-l .content-box,
  .direction-r .content-box {
    padding-right: 0;
    padding-inline: 10%;
  }
  .icon-box {
    position: relative;
    margin: auto;
    margin-bottom: 10px;
    z-index: 1;
  }
  .timeline:before {
    margin-left: 0px;
    z-index: 0;
  }
  .content-box::after,
  .direction-r .content-box::after {
    right: 48.6%;
    top: -24px;
    z-index: 9;
    left: auto;
  }
  .timeline li {
    padding: 15px 0;
  }
  .process.section-gap {
    padding-bottom: 0;
  }
  .faq-item h4 {
    font-size: 16px;
  }
  .form-control {
    padding: 10px 10px;
    font-size: 15px;
  }
  .footer-logo {
    text-align: center;
  }
  footer p {
    text-align: center;
  }
}
@media (max-width: 575.98px) {
  .container {
    padding-inline: 10px;
  }
  .clients {
    .item {
      width: 33.28%;
    }
    .client-logo {
      height: 90px;
      padding: 10px;
    }
  }
  .action-btn {
    gap: 10px;
  }
  .call-btn {
    position: relative;
    padding-left: 10px;
  }
  .navTrigger,
  .navTrigger svg {
    width: 40px;
    height: 36px;
  }
  .call-btn span {
    width: 35px;
    height: 35px;
    padding: 11px;
  }
  .logo {
    width: 130px;
  }
  .header .primary-btn {
    font-size: 13px;
    padding: 9px 9px;
  }
  .banner-content {
    padding-block: 10%;
    margin-top: 60px;
  }
  .hero h1,
  h2 {
    font-size: 20px;
    text-align: center;
  }
  .hero h6 {
    text-align: center;
  }
  .hero h6,
  p {
    font-size: 14px;
  }
  .btn-group {
    text-align: center;
  }
  .btn-group img {
    height: 40px;
  }
  .primary-btn {
    font-size: 14px;
  }
  .client-logo {
    padding-inline: 10px;
  }
  .slick-arrow {
    width: 30px;
    height: 30px;
  }
  .slick-next {
    right: -10px;
  }
  .slick-prev {
    left: -10px;
  }
  .slick-arrow::before {
    height: 10px;
    width: 10px;
  }
  .clients h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .section-gap {
    padding: 25px 0;
  }
  .heading-arrow {
    width: 100px;
  }
  .mb-35 {
    margin-bottom: 15px;
  }
  h2 {
    margin-bottom: 4px;
  }
  .slick-dots li,
  .slick-dots li button {
    width: 10px;
    height: 10px;
  }
  .slick-dots {
    bottom: -30px;
  }
  .about-content {
    text-align: center;
  }
  .about {
    position: relative;
    padding-block: 25px;
  }
  .about p {
    font-size: 14px;
    line-height: 1.4;
    text-align: justify;
    text-align-last: center;
  }
  .clients {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .roi-content h3 {
    font-size: 18px;
  }
  .roi-content {
    padding: 10px;
    padding-top: 0;
  }
  .roi-content .primary-btn {
    font-size: 14px;
    padding: 8px 10px;
    line-height: inherit;
  }
  .client-speak-slider .slick-slide,
  .case-studies-slider .slick-slide {
    margin: 0 5px;
  }
  .client-speak-slider .slick-list,
  .case-studies-slider .slick-list {
    margin: 0 -5px;
  }
  .box {
    padding: 0 15px;
    padding-bottom: 40px;
  }
  .case-studies-slider .item .primary-btn {
    transform: translateY(-30px);
    mix-blend-mode: normal;
  }
  .box .case-studues-img {
    margin-bottom: 10px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .box h3 {
    font-size: 16px;
  }
  .think-about {
    text-align: center;
    padding-bottom: 100px;
  }
  .think-about .small-line {
    margin: auto;
  }
  .think-about ul li {
    font-size: 14px;
    text-align: left;
    padding-left: 20px;
  }
  .think-about ul li::after {
    top: 10px;
    width: 12px;
    height: 12px;
    background-repeat: no-repeat;
    background-size: 12px;
  }
  .think-about .think-about-img {
    margin-top: 25px;
  }
  .interest h2 {
    font-size: 18px;
    font-weight: normal;
  }
  .flex-box {
    gap: 6px;
  }
  .flex-box h5 {
    font-size: 14px;
  }
  .interest {
    margin-bottom: 25px;
  }
  .who-we-are {
    text-align: center;
  }
  .who-we-are .small-line {
    margin: auto;
    margin-bottom: 10px;
  }
  .content-box h3 {
    font-size: 20px;
  }
  .icon-box {
    width: 80px;
    height: 80px;
    padding: 13px;
  }
  .content-box::after,
  .direction-r .content-box::after {
    right: 46.9%;
  }
  .faq-item h4 {
    font-size: 14px;
    line-height: 18px;
  }
  .faq-item {
    border-radius: 4px;
    padding: 10px 10px;
    margin-bottom: 10px;
  }
  .faq-item:after {
    height: 10px;
    width: 10px;
    right: 10px;
    top: 12px;
  }
  .blog-big .blog-content h3 {
    font-size: 18px;
    margin-bottom: 4px;
  }
  .date {
    font-size: 12px;
    padding-inline: 6px;
    padding-block: 2px;
    margin-bottom: 4px;
  }
  .blog-big .blog-content {
    padding: 10px;
  }
  .blog-list .date {
    font-size: 12px;
    margin: 0;
  }
  .blog-list h4 {
    font-size: 14px;
  }
  .blog-content {
    padding-bottom: 8px;
  }
  .blog-list {
    margin-bottom: 12px;
  }
  label {
    font-size: 14px;
  }
  footer p {
    font-size: 14px;
  }
  footer ul li a {
    font-size: 14px;
  }
  footer {
    text-align: center;
    padding-bottom: 80px;
  }
  footer h4 {
    font-size: 20px;
  }
  .copyright p {
    font-size: 14px;
  }
  .enq-btn {
    top: 20%;
    right: 5px;
    height: 30px;
    display: flex;
    align-items: center;
    box-shadow: -3px -3px 0px #9fc9ff;
  }
  .enq-btn a {
    font-size: 14px;
    padding: 0 13px;
  }
  .enq-btn a img {
    transform: rotate(90deg) translateX(4px) translateY(4px);
    width: 18px;
  }
  .fixed-btn {
    position: fixed;
    top: 51%;
    right: 10px;
    width: 32px;
    gap: 8px;
  }
  .fixed-btn .fw {
    transform: scale(1.1);
  }
  .navMenu {
    width: 90%;
    padding-top: 50px;
    padding-bottom: 80px;
  }
  .navMenu .logo {
    padding: 7px 15px;
    height: 50px;
  }
  .offcanvas-header.form-box {
    height: 50px;
  }
  .offcanvas .heading-section h2 {
    font-size: 22px;
  }
  button.btn-close {
    width: 35px;
    height: 35px;
  }
  .form-input {
    font-size: 14px;
    padding: 14px 14px;
    border-radius: 6px;
  }
  .logo-slider-item {
    justify-content: center;
  }
  .highlight {
    left: 0px;
    top: -15px;
    padding: 7px;
    font-size: 13px;
    right: 0;
    position: relative;
  }
  .revealed .roi-list {
    margin-top: 15px;
  }
  ul li {
    font-size: 14px;
  }
  .why-hire h3 {
    font-size: 18px;
  }
  .why-hire .roi-list .row .col-lg-3 {
    order: 1;
  }
  .why-hire .roi-list .row .col-lg-9 {
    order: 2;
  }
}

/* No Copy Content */
body {
  -webkit-user-select: none !important;
  -moz-user-select: -moz-none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}
.post blockquote,
.wp-block-code code {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}
