/**/

:root {
  --black: #000000;
  --white: #ffffff;
  --gray: #dddddd;
  --muted: #bbbbbb;
  --yellow: #FF9001;
  --brand: #ff3621;
  --brand-black: #1b3139;
  --bg-light: #f9fafc;
  --code-bg: #f7f3ea;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.izBanner {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(0, auto);
  align-items: center;
  padding: clamp(24px, 6vw, 64px);
  color: var(--white);
  /* background: url('https://images.unsplash.com/photo-1600880292089-90a7e086ee0c?crop=entropy&cs=srgb&fm=jpg&q=85') center/cover no-repeat; */
  background: url('https://interviewzilla.com/wp-content/uploads/2025/08/11299.jpg') center/cover no-repeat;
}

.izBanner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  /* Increased opacity */
  z-index: 0;
}

.izBanner>* {
  position: relative;
  z-index: 1;
}

.izMega {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: .95;
  letter-spacing: -0.03em;
  font-weight: 800;
  font-size: clamp(48px, 10vw, 138px);
  margin: 0;
  color: var(--white);
}

.izMega .izSlash {
  color: #eb1600;
}

.izNote {
  /* max-width: 220px; */
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  font-family: 'Space Grotesk';
  font-weight: 300;
}

.izGrid {
  display: inline;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
  margin-top: 5%;
}

.izLeft {
  justify-self: start;
}

.izRight {
  justify-self: end;
  text-align: right;
}

.izSubline {
  margin-top: clamp(16px, 2.5vw, 28px);
  font-size: clamp(16px, 1.8vw, 20px);
  max-width: 860px;
  color: var(--gray);
  font-family: 'Space Grotesk';
  font-weight: 300;
}

.izActions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.izBtn {
  appearance: none;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 16px;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease, color .2s ease;
}

.izBtnPrimary {
  background: var(--yellow);
  color: var(--black);
  background: #1b3139;
  color: #ffffff;
  border: 3px solid #ff3621;
}

.izBtnPrimary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
  background: #f75948;
  color: #1b3139;
}

.izBtnPrimaryWht {
  background: var(--yellow);
  color: var(--black);
  background: #1b3139;
  color: #ffffff;
  border: 3px solid #ffffff;
}

.izBtnPrimaryWht:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
  background: #ff3621;
  color: #1b3139;
}

.izBtnGhost {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 16px;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease, color .2s ease;
}

.izBtnGhost:hover {
  background: var(--white);
  color: #1b3139 !important;
}

.izBtnGhost a {
  color: #ffffff;
}

.izBtnGhost a:hover {
  color: #1b3139 !important;
}

button.izBtn.izBtnGhost a:hover {
  color: #1b3139;
}

.izUnderline {
  width: 64px;
  height: 4px;
  color: #eb1600;
  border-radius: 2px;
  margin: 14px 0 0 2px;
}

.izStats {
  display: flex;
  gap: clamp(16px, 4vw, 48px);
  margin-top: 36px;
  flex-wrap: wrap;
}

.izStat {
  min-width: 120px;
}

.izStat h3 {
  margin: 0;
  font-size: clamp(22px, 3vw, 28px);
  color: var(--white);
}

.izStat p {
  margin: 6px 0 0;
  color: var(--gray);
  font-size: 14px;
  font-family: 'Space Grotesk';
  font-weight: 300;
}

/* Blinking Rays Effect */
.blink-circle {
  display: inline-block;
  position: relative;
  width: 12px;
  height: 12px;
  margin-right: 10px;
  border-radius: 50%;
  background: #FF9001;
  box-shadow: 0 0 6px rgba(255, 144, 1, 0.8);
  overflow: visible;
}

/* rays expanding outward */
.blink-circle::before,
.blink-circle::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 144, 1, 0.6);
  border-radius: 50%;
  inset: -4px;
  animation: pulse 2s infinite;
}

.blink-circle::after {
  inset: -8px;
  animation-delay: 1s;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.9;
  }

  70% {
    transform: scale(1.5);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .izGrid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .izLeft,
  .izRight {
    order: 2;
    max-width: none;
  }

  .izMega {
    order: 1;
  }
}

/**/


/* .container {
  max-width: 960px; test
} */
.sage {
  background-color: #F2EDEB !important;
}

.sand {
  background-color: #F4EDE4 !important;
}

.mist {
  background-color: #EEF2F6 !important;
}

.cream {
  background-color: #FAF9F6 !important;
}

.blush {
  background-color: #FDECEC !important;
}

.sky {
  background-color: #E9EBEF !important;
}

.mint {
  background-color: #E6F5F1 !important;
}

.icon-link>.bi {
  width: 0.75em;
  height: 0.75em;
}

html {
  scroll-behavior: smooth;
}

/**Scroll to specific values**/
window.scrollTo or window.scroll window.scroll {
  top: 1000;
  left: 0;
  behavior: "smooth";
}

/**Scroll certain amounts from current position ***/
window.scrollBy {
  top: 250;
  /** could be negative value **/
  left: 0;
  behavior: "smooth";
}

/**Scroll to a certain element**/
document.getElementById("el").scrollIntoView {
  behavior: "smooth";
}

/***Custom Font***/

/*Custom Font*/

/* .space-grotesk-<uniquifier> {
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */

/*
 * Custom translucent site header
 */

.site-header {
  background-color: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}

.site-header a {
  color: #8e8e8e;
  transition: color 0.15s ease-in-out;
}

.site-header a:hover {
  color: #fff;
  text-decoration: none;
}

/*
 * Dummy devices (replace them with your own or something else entirely!)
 */

.product-device {
  position: absolute;
  right: 10%;
  bottom: -30%;
  width: 300px;
  height: 540px;
  background-color: #333;
  border-radius: 21px;
  transform: rotate(30deg);
}

.product-device::before {
  position: absolute;
  top: 10%;
  right: 10px;
  bottom: 10%;
  left: 10px;
  content: "";
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

.product-device-2 {
  top: -25%;
  right: auto;
  bottom: 0;
  left: 5%;
  background-color: #e5e5e5;
}

/*Custom Menu Menu*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: 'Lato', 'Arial', sans-serif; */
}

/* HEADINGS */

/* h1, p {
  color: #fff;
  text-align: center;
  line-height: 1.4;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  color: #000;
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 10px;
} */

/* BASIC SETUP */

.page-wrapper {
  width: 100%;
  height: auto;
}

.nav-wrapper {
  width: 100%;
  position: -webkit-sticky;
  /* Safari */
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 5000;
}

/* .grad-bar {
  width: 100%;
  height: 5px;
  background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
  background-size: 400% 400%;
  	-webkit-animation: gradbar 15s ease infinite;
	-moz-animation: gradbar 15s ease infinite;
	animation: gradbar 15s ease infinite;
} */

/***IZ Menu custom***/
.bi-search::before {
  content: "\f52a";
  font-weight: 800 !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Google Sans", roboto, arial, helvetica;
}

.iz_nav_wrap {
  background: #ffffff;
  position: fixed;
  width: 100%;
  /* box-shadow: 2px 2px 5px #b6b6b6, -2px -2px 2px #ffffff; */
  z-index: 100000;
}

.iz_nav_wrap nav {
  position: relative;
  display: flex;
  max-width: calc(100% - 100px);
  margin: 0 auto;
  height: 80px;
  align-items: center;
  justify-content: space-between;
}

nav .nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

nav .nav-content .links {
  margin-left: 80px;
  display: flex;
  gap: 10px;
  margin-bottom: 0;
}

.nav-content .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-content .logo img {
  width: 100%;
}

.nav-content .logo a {
  color: #a443ff;
  font-size: 30px;
  font-weight: 600;
}

.nav-content .links li {
  list-style: none;
  line-height: 70px;
}

.nav-content .links li a,
.nav-content .links li label {
  color: #243641;
  font-size: 18px;
  font-weight: 400;
  padding: 0px 14px;
  border-radius: 5px;
  transition: all 0.3s ease;
  margin: 0 5px;
  font-family: "Space Grotesk", sans-serif;
}

.nav-content .links li label {
  display: none;
}

.nav-content .links li a:hover,
.nav-content .links li label:hover {
  color: #ff3621;
}

.iz_nav_wrap .search-icon,
.iz_nav_wrap .menu-icon {
  color: #ff3621;
  font-size: 18px;
  cursor: pointer;
  line-height: 70px;
  width: 70px;
  text-align: center;
}

.iz_nav_wrap .menu-icon {
  display: none;
}

.iz_nav_wrap #show-search:checked~.search-icon i::before {
  content: "\F52A";
  font-weight: 800 !important;
}

.iz_nav_wrap .search-box {
  position: absolute;
  height: 78%;
  max-width: calc(100% - 50px);
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.iz_nav_wrap #show-search:checked~.search-box {
  opacity: 1;
  pointer-events: auto;
}

.search-box input {
  width: 100%;
  height: 85%;
  border: none;
  outline: none;
  font-size: 16px;
  color: #243641;
  background: #edf2fa;
  padding: 0 100px 0 15px;
  font-family: "Space Grotesk", sans-serif;
  border-radius: 50px;
  margin-top: 5px;
  box-shadow: 0 0px 5px #343a4094;
}

.search-box input::placeholder {
  color: #afb6c0;
  font-size: 14px;
}

.search-box .go-icon {
  position: absolute;
  display: flex;
  right: 10px;
  top: 50%;
  align-items: center;
  transform: translateY(-50%);
  line-height: 60px;
  width: 51px;
  height: 50px;
  justify-content: center;
  border: none;
  outline: none;
  color: #000;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
}

.iz_nav_wrap input[type="checkbox"] {
  display: none;
}

/* Dropdown Menu code start */
.nav-content .links ul {
  position: absolute;
  background: #8446f7;
  top: 80px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  color: #fff;
}

.nav-content .links li:hover>ul {
  top: 70px;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.nav-content .links ul li a {
  color: #fff;
  display: block;
  width: 100%;
  line-height: 30px;
  border-radius: 0px !important;
}

.nav-content .links ul ul {
  position: absolute;
  top: 0;
  right: calc(-100% + 8px);
}

.nav-content .links ul li {
  position: relative;
}

.nav-content .links ul li:hover ul {
  top: 0;
}

/* Responsive code start */
@media screen and (max-width: 1250px) {
  .iz_nav_wrap nav {
    max-width: 100%;
    padding: 0 20px;
  }

  nav .nav-content .links {
    margin-left: 30px;
  }

  .nav-content .links li a {
    color: #000;
    padding: 8px 13px;
    font-size: 17px;
  }

  .iz_nav_wrap .search-box {
    max-width: calc(100% - 100px);
  }

  .iz_nav_wrap .search-box input {
    padding: 0 100px 0 15px;
  }
}

@media screen and (max-width: 900px) {
  .iz_nav_wrap .menu-icon {
    display: block;
  }

  .nav-content .logo a {
    font-size: 25px;
  }

  .iz_nav_wrap #show-menu:checked~.menu-icon i::before {
    content: "\F479";
    font-weight: bolder !important;
  }

  nav .nav-content .links {
    display: block;
    position: fixed;
    background: #fdf0e6;
    color: #243641;
    height: 100%;
    width: 80%;
    top: 70px;
    left: -100%;
    margin-left: 0;
    max-width: 350px;
    overflow-y: auto;
    padding-bottom: 100px;
    transition: all 0.3s ease;
  }

  nav #show-menu:checked~.nav-content .links {
    left: 0%;
  }

  .nav-content .links li {
    margin: 15px 20px;
  }

  .nav-content .links li a,
  .nav-content .links li label {
    line-height: 30px;
    font-size: 25px;
    display: block;
    padding: 15px 25px;
    cursor: pointer;
    color: #243641;
    font-weight: 400;
  }

  .nav-content .links li a.desktop-link {
    display: none;
  }

  /* dropdown responsive code start */
  .nav-content .links ul,
  .nav-content .links ul ul {
    position: static;
    opacity: 1;
    visibility: visible;
    background: none;
    max-height: 0px;
    overflow: hidden;
  }

  .nav-content .links #show-features:checked~ul,
  .nav-content .links #show-services:checked~ul,
  .nav-content .links #show-items:checked~ul {
    max-height: 100vh;
  }

  .nav-content .links ul li {
    margin: 7px 20px;
  }

  .nav-content .links ul li a {
    font-size: 17px;
    line-height: 30px;
    border-radius: 5px !important;
  }
}

@media screen and (max-width: 400px) {
  .iz_nav_wrap nav {
    padding: 0 10px;
  }

  .nav-content .logo img {
    width: 80%;
  }

  .nav-content .logo a {
    font-size: 23px;
  }

  .iz_nav_wrap .search-box {
    max-width: calc(100% - 70px);
  }

  .iz_nav_wrap .search-box .go-icon {
    width: 30px;
    right: 0;
  }

  .iz_nav_wrap .search-box input {
    padding-right: 30px;
  }
}

/****IZ Menu custom**/

/* NAVIGATION */

.navbar {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: center;
  height: 70px;
  overflow: hidden;
}

.navbar img {
  height: 40px;
  width: auto;
  justify-self: start;
  margin-left: 45px;
}

.navbar ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  justify-self: end;
}

.nav-item a {
  color: #000;
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease-out;
  font-family: "Space Grotesk", sans-serif;
}

.nav-item a:hover {
  color: #3498db;
}

/*banner*/
/*Banner*/

/**Features Start**/
.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
}

.icon-square {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
}

.text-shadow-1 {
  text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.25);
}

.text-shadow-2 {
  text-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
}

.text-shadow-3 {
  text-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.25);
}

.card-cover {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.feature-icon-small {
  width: 3rem;
  height: 3rem;
}

.btn-bd-primary {
  --bd-violet-bg: #712cf9;
  --bd-violet-rgb: 112.520718, 44.062154, 249.437846;

  --bs-btn-font-weight: 600;
  --bs-btn-color: var(--bs-white);
  --bs-btn-bg: var(--bd-violet-bg);
  --bs-btn-border-color: var(--bd-violet-bg);
  --bs-btn-hover-color: var(--bs-white);
  --bs-btn-hover-bg: #6528e0;
  --bs-btn-hover-border-color: #6528e0;
  --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
  --bs-btn-active-color: var(--bs-btn-hover-color);
  --bs-btn-active-bg: #5a23c8;
  --bs-btn-active-border-color: #5a23c8;
}

/**Features End**/

/* SECTIONS */

.headline {
  width: 100%;
  height: 90vh;
  min-height: 350px;
  background: url("assets/img/home_banner.png");
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #e8f4f0;
}

.headline h1 {
  color: #1e1d1d;
  text-align: left;
  line-height: 1.4;
  font-size: 50px;
  font-weight: 500;
  font-family: "Space Grotesk", sans-serif;
}

.headline p {
  color: #6d6b6b;
  text-align: left;
  line-height: 1.4;
  font-size: 18px;
  font-weight: 300;
  font-family: "Space Grotesk", sans-serif;
}

/* .features {
  width: 100%;
  height: auto;
  background-color: #f1f1f1;
  display: flex;
  padding: 50px 20px;
  justify-content: space-around;
}

.feature-container {
  flex-basis: 30%;
  margin-top: 10px;
}

.feature-container p {
  color: #000;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 15px;
}

.feature-container img {
  width: 100%;
  margin-bottom: 15px;
} */

/* SEARCH FUNCTION */

#search-icon {
  font-size: 0.9rem;
  margin-top: 3px;
  margin-left: 15px;
  transition: color 0.3s ease-out;
}

#search-icon:hover {
  color: #ff3621;
  cursor: pointer;
}

.search {
  transform: translate(-35%);
  -webkit-transform: translate(0%);
  transition: transform 0.7s ease-in-out;
  color: #ff3621;
}

.no-search {
  transform: translate(0);
  transition: transform 0.7s ease-in-out;
}

.search-input {
  position: absolute;
  top: -4px;
  right: -160px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.6s ease;
}

/*Demo*/
.search-active {
  opacity: 1;
  z-index: 0;
}

input {
  border-left: 1px solid #6b4386;
  border-radius: 20px;
  outline: 0;
  padding: 9px 15px;
  border: 0;
}

/* MOBILE MENU & ANIMATION */
.bi-arrow-right-circle-fill::before {
  content: "\f133";
  color: #243641;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #3f3f3f;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu-toggle {
  justify-self: end;
  margin-right: 25px;
  display: none;
}

.menu-toggle:hover {
  cursor: pointer;
}

#mobile-menu.is-active .bar:nth-child(2) {
  opacity: 0;
}

#mobile-menu.is-active .bar:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  -o-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}

#mobile-menu.is-active .bar:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  -ms-transform: translateY(-8px) rotate(-45deg);
  -o-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}

/* KEYFRAME ANIMATIONS */

@-webkit-keyframes gradbar {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes gradbar {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradbar {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Media Queries */

/* Mobile Devices - Phones/Tablets */

@media only screen and (max-width: 720px) {
  .features {
    flex-direction: column;
    padding: 50px;
  }

  .izStats {
    display: flex;
    gap: 0px;
    margin-top: 10%;
    flex-wrap: wrap;
  }

  .izBtnPrimary {
    width: 100%;
  }

  .izBtnPrimaryWht {
    width: 100%;
  }

  .izRight {
    text-align: center;
    margin-top: 10%;
  }

  .izBtnGhost {
    width: 100%;
  }

  .izGrid {
    margin-top: 20%;
  }

  .izMega {
    margin-top: 5%;
  }

  /* MOBILE HEADINGS */

  h1 {
    font-size: 1.9rem;
  }

  h2 {
    font-size: 1rem;
  }

  p {
    font-size: 0.8rem;
  }

  /* MOBILE NAVIGATION */

  .navbar ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    justify-content: start;
    top: 55px;
    background-color: #fff;
    width: 100%;
    height: calc(100vh - 55px);
    transform: translate(-101%);
    text-align: center;
    overflow: hidden;
  }

  .navbar li {
    padding: 15px;
  }

  .navbar li:first-child {
    margin-top: 50px;
  }

  .navbar li a {
    font-size: 1rem;
  }

  .menu-toggle,
  .bar {
    display: block;
    cursor: pointer;
  }

  .mobile-nav {
    transform: translate(0%) !important;
  }

  /* SECTIONS */

  .headline {
    height: 20vh;
  }

  .feature-container p {
    margin-bottom: 25px;
  }

  .feature-container {
    margin-top: 20px;
  }

  .feature-container:nth-child(2) {
    order: -1;
  }

  /* SEARCH DISABLED ON MOBILE */

  #search-icon {
    display: none;
  }

  .search-input {
    display: none;
  }

  .iz_about_first_sec {
    margin: 15px 15px;
    padding: 10px 12px;
    height: auto;
    width: auto;
  }

  .iz-heading-bold-category {
        font-size: 2em;
        line-height: 40px;
        margin-top: 10px;
  }

  .iz-blog-card {
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  }

  .iz-heading-bold-blog {
    line-height: 45px;
    text-align: center;
    font-size: 40px;
  }
}

/*Custom Menu End*/
/*
 * Extra utilities
 */

.flex-equal>* {
  flex: 1;
}

@media (min-width: 768px) {
  .flex-md-equal>* {
    flex: 1;
  }
}

/*Top Interview Questions*/
.bg-top-interview {
  --bs-bg-opacity: 1;
  background-color: rgb(209 210 211) !important;
}

.card {
  align-items: center;
  padding: 9px 9px;
  background-color: #c2bdba;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease-in-out;
}

.card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.iz_pb_15 {
  padding-bottom: 15px;
}

.iz_icon_top_iq {
  font-size: 25px;
  color: #000000;
}

.card-cp-bg {
  align-items: center;
  padding: 9px 9px;
  background-color: #fefffe;
}

.card-santra {
  align-items: center;
  padding: 9px 9px;
  background-color: #eaa674;
}

.card-yellow {
  align-items: center;
  padding: 9px 9px;
  background-color: #d9e38a;
}

.card-green {
  align-items: center;
  padding: 9px 9px;
  background-color: #6ed190;
}

.card-white {
  align-items: center;
  padding: 9px 9px;
  background-color: #ffffff;
}

.card-orange-dark {
  align-items: center;
  padding: 9px 9px;
  background-color: #ff987c;
}

.card-green-light {
  align-items: center;
  padding: 9px 9px;
  background-color: #76e3c2;
}

.card-green-light-dark {
  align-items: center;
  padding: 9px 9px;
  background-color: #99d6a4;
}

.card-body {
  padding: 0px 0px;
}

a.card-link {
  text-decoration: none;
  color: #2B2B2B !important;
  font-size: 13px;
  font-family: inherit;
}

i.bi.bi-arrow-up-right {
  color: #ff6f47;
}

/*Top Interview Questions End*/

/*Mock Test Card*/

section#main-content\ mock_test_card {
  background: #000;
}

.mock_test_card {
  margin: 50px 50px;
  width: 100%;
  height: 90vh;
  min-height: 350px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #ddd8d8;
}

.mocktest_card {
  align-items: center;
  padding: 9px 9px;
  background-color: #ffffff;
}

/*Mock Test Card End*/
/****Top Pic Article begin*****/
section.iz_bg_white {
  background: #ffffff !important;
}

/****Top Pic Article End*****/

/*************New Css Start************/
section [class^="container"] {
  padding: 4rem 2rem;
}

@media screen and (min-width: 1024px) {
  section [class^="container"] {
    padding: 4rem;
  }

  nav [class^="container"] {
    padding: 0 4rem;
  }
}

/* section:not(:first-of-type) {
  text-align: center;
} */

/*section:nth-child(2n) {
  background-color: #f7f3ea;
} */

.iz_icon_top_iq a {
  color: #ff3621;
}

a {

  color: #ff3621;
  text-decoration: none;
  transition: all 0.3s;
}

a:not(.btn):hover {
  color: #1b3139;
}

.accordion-item {
  color: #000 !important;
  background-color: var(--bs-accordion-bg);
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}

section .card,
.btn-outline-dark {
  border: 1px solid #f2edeb;
  /* box-shadow: 4px 4px #000000; */
  transition: all 0.4s;
}

.btn-outline-dark:hover {
  box-shadow: 4px 4px #f5a841;
}

section .card {
  max-width: 22rem;
  margin-inline: auto;
}

/* NAVBAR */

.navbar {
  background-color: #ffffff;
}

.navbar-nav .nav-link {
  color: #000000;
  font-size: 1.1rem;
  transition: all 0.5s;
}

.navbar-nav .nav-link:hover {
  color: #f5a841;
}

@media screen and (min-width: 1024px) {
  .navbar-nav .nav-item {
    padding: 0 1rem;
  }

  .navbar-brand {
    font-size: 1.5rem;
  }
}

/* HERO banner home */

section.hero {
  padding-top: 72px;
}

@media screen and (max-width: 576px) {
  section.hero {
    text-align: center;
  }

  section.hero .img-fluid {
    width: 70%;
  }
}

/*Home custom banner start*/
.iz_banner_img_device {
  display: none;
}

.iz_banner_sec {
  width: 100%;
  height: 100vh;
}

.iz_banner_img {
  width: 100%;
  position: relative;
}

.iz_banner_img img {
  width: 100%;
}

.iz_banner_text {
  position: absolute;
  top: 45%;
  left: 0%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.iz_banner_text span {
  font-size: 60px;
  font-weight: 700;
  font-family: sans-serif;
  color: #1a1a34;
}

.iz_banner_text strong {
  font: 800 62.22px/70px "Space Grotesk", sans-serif;
  color: #243641;
  text-transform: uppercase;
}

.iz_banner_text strong span {
  font: 400 44.44px/52px "Space Grotesk", sans-serif;
  letter-spacing: 3px;
}

.iz_banner_text p {
  font: 400 25px/30px "Space Grotesk", sans-serif;
  color: #243641;
  margin: 7px 0 25px;
}

/* .iz_banner_text a {
  display: inline-block;
  font: 800 19.39px/24px "Space Grotesk", sans-serif;
  background: #282828;
  border-radius: 26px;
  color: #fff;
  padding: 12px 28px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration:none;
}
.iz_banner_text a:hover {
  background: #50af47;
} */

@media (min-width: 1200px) and (max-width: 1399px) {
  .iz_banner_text p {
    font-size: 21px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .iz_banner_text p {
    font-size: 17px;
  }

  .iz_banner_text strong {
    font-size: 50px;
    line-height: 60px;
  }

  .iz_banner_text strong span {
    font-size: 37px;
  }

  .iz_banner_text a {
    font-size: 16px;
    line-height: 19px;
  }
}

@media only screen and (max-width: 991px) {
  .iz_baner_img_dktp {
    display: none;
  }

  .iz_banner_img_device {
    display: block;
  }

  .iz_banner_img {
    width: 100%;
    position: relative;
  }

  .iz_banner_text {
    text-align: center;
    margin-top: 55px;
  }

  .iz_banner_text strong {
    font-size: 35px;
    line-height: 40px;
  }

  .iz_banner_text strong span {
    font-size: 28px;
    line-height: 35px;
    letter-spacing: 2px;
  }

  .iz_banner_text p {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
  }

  .iz_banner_text a {
    font-size: 13.39px;
    line-height: 15px;
    text-align: center;
  }

  section#brand-logo {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .iz_baner_img_dktp {
    display: none;
  }

  .iz_banner_img_device {
    display: block;
  }

  .iz_banner_text {
    text-align: center;
    margin-top: 55px;
  }

  .iz_banner_img img {
    min-height: 290px;
    object-fit: cover;
  }

  .iz_banner_text p {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
  }

  .iz_banner_text a {
    font-size: 13.39px;
    line-height: 15px;
    text-align: center;
  }

  section#brand-logo {
    display: none;
  }

  .bloglists {
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 20px;
  }

  .iz_about_first_sec {
    margin: 15px 15px;
    padding: 10px 12px;
    height: auto;
    width: auto;
  }

  .iz-heading-bold-category {
        font-size: 2em;
        line-height: 40px;
        margin-top: 10px;
  }
}

@media only screen and (max-width: 575px) {
  .iz_baner_img_dktp {
    display: none;
  }

  .iz_banner_img_device {
    display: block;
  }

  .iz_banner_text strong {
    /* background: rgb(137 127 127 / 80%); */
    padding: 10px;
    width: 100%;
    display: block;
    margin-top: 180%;
  }

  .iz_banner_text {
    text-align: center;
    margin-top: 55px;
  }

  .iz_banner_text p {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
  }

  .iz_banner_text a {
    font-size: 13.39px;
    line-height: 15px;
    text-align: center;
  }

  section#brand-logo {
    display: none;
  }

  .bloglists {
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 20px;
  }

  .iz_about_first_sec {
    margin: 15px 15px;
    padding: 10px 12px;
    height: auto;
    width: auto;
  }
}

@media only screen and (max-width: 480px) {
  .iz_baner_img_dktp {
    display: none;
  }

  .iz_banner_img_device {
    display: block;
  }

  .iz_banner_text strong span {
    font-size: 22px;
    line-height: 31px;
    letter-spacing: 1px;
  }

  .iz_banner_text {
    left: 2%;
    text-align: center;
    margin-top: 55px;
  }

  .iz_banner_text p {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
  }

  .iz_banner_text a {
    font-size: 13.39px;
    line-height: 15px;
    text-align: center;
  }

  section#brand-logo {
    display: none;
  }

  .bloglists {
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 20px;
  }

  .iz_about_first_sec {
    margin: 15px 15px;
    padding: 10px 12px;
    height: auto;
    width: auto;
  }

  .iz-heading-bold-category {
        font-size: 2em;
        line-height: 40px;
        margin-top: 10px;
  }
}

/*Home banner end*/

/* top interview questions Section*/

section.iz_top_interview_questions {
  background: #77529810;
}

section.iz_section_bg {
  background: #77529810;
}

h2.iz-heading-bold.text-center.iz_pb_pt {
  padding-top: 10px;
  padding-bottom: 30px;
}

.iz_pb {
  padding-bottom: 15px;
  margin-top: 25px;
}

.iz_pb_1 {
  padding-bottom: 15px;
  margin-top: 5px;
}

.iz_mt {
  margin-top: 30px;
}

/***InterviewZilla Mission Section****/
h4.iz_text_center.iz_mission_txt_px_grotesk.iz_pb {
  text-align: center;
  font-family: "Space Grotesk";
  font-weight: 500;
}

/***InterviewZilla Mission Section End****/

/* ABOUT */

@media screen and (min-width: 1024px) {

  section.about .container,
  section.testimonials .container {
    width: 75%;
  }
}

/* SERVICES */

section.iz_services .card {
  max-width: 17rem;
  text-align: left;
}

section.iz_services .card img {
  max-width: 70%;
  margin: 0 auto;
}

.iz-heading-bold {
  font-size: 4em;
  font-weight: 600 !important;
  font-family: WF Visual Sans, Arial, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin-bottom: 0.1rem;
  color: #1b3139;
  line-height: 60px;
}

.iz-heading-bold-blog {
  font-weight: 600 !important;
  font-family: WF Visual Sans, Arial, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin-bottom: 0.1rem;
  color: #1b3139;
  line-height: 60px;
  margin-top: 2rem;
}

.iz-heading-bold-category {
  font-size: 4em;
  font-weight: 600 !important;
  font-family: WF Visual Sans, Arial, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin-bottom: 0.1rem;
  color: #f9f9f9;
  line-height: 60px;
}

/* .iz-heading-bold-1 {
    font-size: 3em;
    font-weight: 600 !important;
    font-family: WF Visual Sans, Arial, sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    margin-bottom: 0.1rem;
    color: #1b3139;
    line-height: 60px;
} */

.iz-heading-sub-heading {
  font-size: 1.5em;
  font-weight: 300;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin-bottom: 0.1rem;
}

.iz-button {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  line-height: 1em;
  letter-spacing: 0px;
  word-spacing: 0em;
  fill: #ffffff;
  color: #ffffff;
  background-color: #ff3621;
  border-style: solid;
  border-width: 0px 0px 0px 0px;
  border-color: #ff3621;
  border-radius: 100px 100px 100px 100px;
  padding: 16px 55px 16px 55px;
}

.iz-button:hover {
  background-color: #000;
  color: orange;
}

a.btn.btn-primary.btn-lg.iz-button i.bi.bi-arrow-up-right {
  color: #fff !important;
}

i.bi.bi-arrow-up-right:hover {
  color: orange !important;
}

.iz-services-box-1 {
  background-color: #F2EDEB;
}

.iz_services_icon {
  font-size: 35px;
  color: #eb1600 !important;
}

.iz-service-icon-1 {
  color: #1b3139;
}

.iz-services-box-2 {
  background-color: #F2EDEB;
  color: #1b3139;
}

.iz-service-icon-2 {
  color: #1b3139;
}

.iz-services-box-3 {
  background-color: #F2EDEB;
}

.iz-service-icon-3 {
  color: #1b3139;
}

.iz-services-box-4 {
  background-color: #F2EDEB;
}

.iz-service-icon-4 {
  color: #1b3139;
}

.iz-service-card-body {
  padding: 8px;
}

a.iz-service-text-link {
  color: #ffffff;
}

/* .iz-service-icon{
  opacity: 0.2;
} */
/* .iz-side-heading h2 {
  writing-mode: vertical-rl;
}
.vertical-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-align: center;
} */

/* .iz-side-heading h2 {
  position: absolute;
  left: 35px;
  top: 45px;
  transform-origin: bottom right;
  transform: translateX(-100%) rotate(-90deg);
  font-size: 0.9em;
  font-weight: bold;
} */

/* PROJECTS */

section.projects .card {
  max-width: 17rem;
  text-align: left;
}

section.projects .card img {
  max-width: 70%;
  margin: 0 auto;
}

/* TESTIMONIALS */

/* section.testimonials .carousel-control-prev,
section.testimonials .carousel-control-next {
  width: 5%;
}

section.testimonials .carousel-item p {
  max-width: 80%;
  border-left: 5px solid #f5a841;
  padding-left: 1rem;
}
section.testimonials .carousel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
section.testimonials .carousel.carousel-fade .carousel-item {
  transition: opacity 0.5s;
} */

/* CONTACT */

.contact-section {
  padding: 70px 0;
}

.contact-section h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a34;
}

.contact-section p.sub-title {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
}

.info-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.info-item i {
  font-size: 20px;
  color: #ff3b2e;
  margin-right: 12px;
}

.info-item p {
  margin: 0;
  font-size: 15px;
  color: #333;
}

.contact-form {
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.contact-form h4 {
  margin-bottom: 20px;
  font-weight: 600;
  color: #1a1a34;
}

.contact-form input,
.contact-form textarea {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 12px;
  margin-bottom: 15px;
  width: 100%;
  font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff3b2e;
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 59, 46, 0.2);
}

.btn-submit {
  background-color: #ff3b2e;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-submit:hover {
  background-color: #e63226;
}

section.contact .social-media a {
  padding: 0 0.5rem;
  font-size: 1.3rem;
}

p.page_subheading {
  font-weight: 300;
  margin-top: 15px;
}

.iz-blog-card-body-b-post ul {
  margin-bottom: 5px;
}

/***************Trusted By***********************/
section.iz_trustedby_companies {
  background-color: #243641;
}

.iz_tb_cp_heading {
  color: #ff3621 !important;
}

.iz_tb_cp_sub_heading {
  color: #ffffff;
}

/*********Top: pic Blog - home page*******/
.iz-blog-card {
  /* width: 300px; */
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.iz-blog-card .iz-blog-card-body {
  margin-top: -5px;
  width: 100%;
  padding: 20px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 270px;
}

.iz-blog-card-header img {
  width: 100%;
  object-fit: cover;
}

.iz-blog-card .tag {
  padding: 2px 10px;
  background-color: royalblue;
  font-size: 12px;
  margin: 0;
  color: #fff;
  border-radius: 50px;
  text-transform: uppercase;
}

.user-info p {
  font-size: 14px;
  margin: 0px;
}

.user-info {
  line-height: 0px;
}

.user-info h5 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 7px;
}

.user-info h5 a {
  text-decoration: none;
  color: #333;
  /* Adjust link color */
}

.user-info small {
  font-size: 10px;
  color: #666;
  /* Adjust text color */
  font-weight: 400;
}

h4.page-title.card-post-tittle-inner {
  line-height: 20px;
}

h4.page-title.card-post-tittle-inner {
  line-height: 20px;
  margin: 0px;
  height: 60px;
}

.tag.tag-technology {
  background-color: #007cb8;
  padding: 2px 10px;
  font-size: 12px;
  margin: 0;
  color: #fff;
  border-radius: 50px;
  text-transform: uppercase;
}

.tag.tag-article {
  background-color: #644282;
  padding: 2px 10px;
  font-size: 12px;
  margin: 0;
  color: #fff;
  border-radius: 50px;
  text-transform: uppercase;
}

.tag.tag-news {
  background-color: #ffbb6c;
  padding: 2px 10px;
  font-size: 12px;
  margin: 0;
  color: #fff;
  border-radius: 50px;
  text-transform: uppercase;
}

.tag.tag-ai {
  background-color: #ff7085;
  padding: 2px 10px;
  font-size: 12px;
  margin: 0;
  color: #fff;
  border-radius: 50px;
  text-transform: uppercase;
}

.iz-blog-card .iz-blog-card-body p {
  font-size: 13px;
  margin: 0 0 20px;
}

.iz-blog-card-body h4 {
  font-size: 1.10rem;
  margin: 0px 0px;
  height: 70px;
  color: #1b3139 !important;
}

.iz-blog-card .iz-blog-card-user {
  display: flex;
  align-items: center;
  margin-top: 0px;
}

.iz-blog-card-user img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 40px;
  margin-right: 10px;
}

.iz-blog-card-user small {
  color: #888;
}

.page-numbers.current {
  background: #ff3621;
  padding: 15px 15px 0px 15px;
  border: 1px solid #ffffff;
  border-radius: 6px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-size: 15px;
  text-align: center;
  color: #1b3139;
}

.page-numbers {
  padding: 8px 15px 0px 15px;
  border: 1px solid #ff3621;
  border-radius: 6px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-size: 15px;
  margin: 0px 5px;
  text-align: center;
}

.pagination {
  margin-top: 40px;
}

.iz-button-center {
  margin-top: 40px;
}

/*Custom card for services*/

/*Custom comment box start */
.stm_post_comments {
  background: #ffffff;
  padding: 20px 25px;
  border-radius: 10px;
  border: solid 1px #b1b9c8;
  margin-top: 20px;
}

input#author,
input#email,
input#url {
  border: solid 1px #6b4386;
  margin-left: 32px;
  padding: 9px 51px;
  background-color: #fff;
}

textarea#comment {
  border: solid 1px #6b4386;
  border-radius: 15px;
  background-color: #fff;
}

span#email-notes {
  font-size: 16px;
  color: #243641;
  font-family: "Google Sans", roboto, arial, helvetica;
  font-weight: 300;
}

p.comment-form-comment {
  font-size: 16px;
  color: #243641;
  font-family: "Google Sans", roboto, arial, helvetica;
  font-weight: 300;
}

.comment-form-comment>label,
.comment-form-author>label,
.comment-form-email>label,
.comment-form-url>label,
.comment-form-cookies-consent>label {
  font-size: 16px;
  color: rgb(36, 54, 65);
  font-family: "Google Sans", roboto, arial, helvetica;
  font-weight: 300;
}

/*Custom comment box end*/

/* custom Testimonials*/

.nav-tabs {
  border-bottom: none !important;
}

.client-desc {
  background-color: #fbe2d0 !important;
  border-radius: 20px;
  opacity: 0.8;
}

p.iz_testimonial_quote {
  float: left;
}

.iz_testimonial_quote>i.bi.bi-quote {
  font-size: 70px;
}

.iz_testimonial_inner {
  margin-top: 70px;
}

.iz_testimonial_job_profile {
  /* font-size: 1.5em; */
  font-weight: 300;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin-bottom: 15px;
  /* float: left; */
}

.iz_testimonial_user {
  /* float: left; */
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: #edeae8;
  border-color: #6c757d;
  border-style: dashed;
  border-width: 1.5px;
  border-bottom: dashed;
  border-bottom-color: #6c757d;
  border-bottom-width: 1.5px;
  border-radius: 20px;
}

.iz-testimonials {
  width: 100%;
  min-height: 100vh;
  background: #edf2f8;
  display: flex;
  align-items: center;
  justify-content: center;
}

img.iz_testimonial_cn {
  /* -webkit-filter: grayscale(100%);
  filter: grayscale(100%); */
  max-width: 140px;
  max-height: 70px;
}

/* Star rating */
.stars {
  color: #ffb400;
  font-size: 18px;
  margin-bottom: 10px;
}

/* LinkedIn link */
.linkedin {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color: #0077b5;
  background: #eaf4fc;
  padding: 6px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
  margin-bottom: 10px;
}

.linkedin i {
  margin-right: 6px;
}

.linkedin:hover {
  background: #0077b5;
  color: #fff !important;
}

.client-testimonial .drop-shadow {
  -webkit-filter: drop-shadow(0px 15px 50px rgba(2, 173, 136, 0.2));
  -moz-filter: drop-shadow(0px 15px 50px rgba(2, 173, 136, 0.2));
  -o-filter: drop-shadow(0px 15px 50px rgba(2, 173, 136, 0.2));
  filter: drop-shadow(0px 15px 50px rgba(2, 173, 136, 0.2));
}

.iz_bg_5 {
  background-image: url("assets/img/t-bg.png");
  background-position: center 65%;
  background-size: auto;
  background-repeat: no-repeat;
}

.client-testimonial .client-nav .nav-item {
  position: absolute;
  z-index: 5;
  width: 10.5rem;
}

.client-testimonial .client-nav .nav-item:nth-child(1) {
  top: 2.5rem;
  right: 16%;
  width: 7rem;
}

.client-testimonial .client-nav .nav-item:nth-child(2) {
  bottom: 3rem;
  right: 0;
}

@media (min-width: 1281px) {
  .client-testimonial .client-nav .nav-item:nth-child(2) {
    right: -3rem;
  }
}

.client-testimonial .client-nav .nav-item:nth-child(3) {
  bottom: 9rem;
  left: 4%;
}

.client-testimonial .client-nav .nav-item:nth-child(4) {
  top: -2rem;
  left: 0;
  width: 7rem;
}

@media (min-width: 1281px) {
  .client-testimonial .client-nav .nav-item:nth-child(4) {
    left: -8rem;
  }
}

.client-testimonial .client-nav .nav-item:nth-child(5) {
  top: -6rem;
  right: 0;
  width: 7rem;
}

@media (min-width: 1281px) {
  .client-testimonial .client-nav .nav-item:nth-child(5) {
    right: -5.5rem;
  }
}

@media (max-width: 767.98px) {
  .client-testimonial .client-nav .nav-item {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    right: inherit;
    width: 7rem !important;
  }
}

.client-testimonial .tab-content .fade {
  -webkit-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.client-testimonial .tab-content .client-thumb {
  width: 10.5rem;
}

.client-testimonial .tab-content .client-desc {
  -webkit-box-shadow: 0px 15px 50px 0px rgba(115, 115, 115, 0.06);
  box-shadow: 0px 15px 50px 0px rgba(115, 115, 115, 0.06);
  min-height: 21rem;
  padding: 2rem;
}

.client-testimonial .tab-content .client-desc h6 {
  font-size: 1.3rem;
}

.iz_testimonial_section,
.section-pt,
.section-pb {
  /* padding-top: 12rem; */
  padding-bottom: 3rem;
}

@media (min-width: 768px) and (max-width: 991.98px) {

  .iz_testimonial_section,
  .section-pt,
  .section-pb {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

@media (max-width: 767.98px) {

  .iz_testimonial_section,
  .section-pt,
  .section-pb {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

hr.line {
  margin: 0;
  border-color: #1c223a;
  border-width: 1px;
  width: 4.5rem;
}

hr.line.line-sm {
  width: 8.6rem;
}

hr.line.bw-2 {
  border-width: 2px;
}

.mb-5 {
  margin-bottom: 0.5rem !important;
}

.mb-80 {
  margin-bottom: 8rem !important;
}

.mb-20 {
  margin-bottom: 2rem !important;
}

.mb-25 {
  margin-bottom: 2.5rem !important;
}

img {
  max-width: 100%;
}

/*custom Testimonials*/

/*brand footer*/
.py-3 {
  margin-top: 0rem !important;
}

.py-md-5 {
  margin-top: 0rem !important;
}

.brand-section {
  width: 100%;
  padding: 100px 20px;
  background-color: #0e1117 !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(60px, 14vw, 145px);
  font-weight: 700;
  letter-spacing: 0.5px;

  background: linear-gradient(90deg,
      #f8f8f8,
      #eb1600,
      #c539a0,
      #eb1600,
      #f8f8f8);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientSlide 5.5s ease-in-out infinite;
  white-space: nowrap;
}

@keyframes gradientSlide {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 300% center;
  }
}

@media (max-width: 768px) {
  .brand-section {
    padding: 60px 10px;
  }

  .brand-name {
    letter-spacing: 0.2px;
  }
}



a.btn.btn-dark.bsb-btn-circle.bsb-btn-circle-sm.link-opacity-75-hover.link-light {
  background-color: #243641;
  border-radius: 10px;
}

.iz_luv {
  color: #dc3545 !important;
}

.copyright-wrapper {
  color: #6c757d;
}

.credit-wrapper.fs-8.text-center {
  color: #6c757d;
}

.container-fluid.iz_footer_first {
  padding-top: 35px;
  padding-bottom: 25px;
}

.container.iz_footer_text_color {
  border-top: 1px solid #6c757d;
  padding-top: 25px;
  padding-bottom: 35px;
}

.iz_footer_text_color ul li a {
  text-decoration: none;
  color: #7f8ba1 !important;
  text-decoration: none;
}

.iz_footer_text_color ul li a:hover {
  text-decoration: none;
  color: #d9e1f0 !important;
  text-decoration: none;
}

.iz_footer_text_color {
  color: #6c757d;
}

.iz_footer_text_color a:link {
  color: #ffffff;
}

.iz_link_wrapper_color {
  color: #7f8ba1;
}

section.iz_footer_top_section {
  background: #1d2737 !important;
}

.iz_footer_bottom {
  background: #161c27 !important;
}

.iz_footor_bottom_cp_right {
  background: #161c27 !important;
  padding-bottom: 30px;
  border-top: 1px solid #6c757d;
}

.iz_footor_bottom_cp_right,
ul {
  font-size: 14px;
}

footer.py-3.py-md-5.py-xl-6 {
  padding-bottom: 0px !important;
}

p.iz-footer-heading {
  font-size: 14px;
  color: #7f8ba1;
  /* text-align: center; */
  font-weight: 600;
}

ul.list-unstyled.text-small.iz-footer-interview-QA {
  font-size: 13px;
  /* text-align: center; */
  color: #7f8ba1 !important;
}

ul.list-unstyled.text-small.iz-footer-interview-QA a {
  color: #7f8ba1 !important;
}

h2.iz-brand-logo {
  font-size: 150px;
  font-weight: 900;
  font-family: "Space Grotesk";
}

span.text-primary.iz-love {
  --bs-text-opacity: 1;
  color: rgb(183 71 99) !important;
}

.wpcf7-not-valid-tip {
  color: #842d2d !important;
  font-size: 1em;
  font-weight: normal;
  display: block;
  font-weight: 300 !important;
  font-family: "Space Grotesk" !important;
}

.wpcf7 form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 2em;
  border: 2px solid #00a0d2 !important;
  border-radius: 26px !important;
  font-family: "Space Grotesk";
  font-weight: 300 !important;
  text-align: center !important;
}



.newsletter-container {
  background: radial-gradient(circle at 100% 0, #9d489f, #c34db2 30%, #6b4386 70%);
  color: white;
  padding: 60px 30px;
  border-radius: 20px;
  max-width: 1200px;
  margin: 60px auto;
}

.newsletter-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
}

.newsletter-text {
  flex: 1 1 50%;
  min-width: 280px;
}

.newsletter-text h1 {
  font-size: 60px;
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: center;
  color: #ffffff;
}

.highlight {
  color: #eb1600;
}

.newsletter-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #EDE7F6;
  text-align: center;
}

.newsletter-form {
  flex: 1 1 40%;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px 30px 1px 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  color: #333;
  min-width: 280px;
  text-align: center;
}

.wpcf7-spinner {
  visibility: hidden;
  display: block !important;
}

.newsletter-form form {
  display: flex;
  flex-direction: column;
}

.newsletter-form label {
  font-size: 14px;
  margin-bottom: 6px;
}

.newsletter-form input {
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 30px;
  font-size: 14px;
  background: #f7f3ea !important;
}

.newsletter-form button {
  background-color: #eb1600;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #009e8a;
}

.disclaimer {
  font-size: 11px;
  color: #666;
  margin-top: 0px;
}

/********************About US*******************/
.iz_heading_inner {
  text-align: center;
  margin-top: 60px;
}

.iz_about_first_sec {
  background-color: #ecf2ff;
  border-radius: 20px;
  margin: 50px;
  padding: 20px 30px;
}

.iz_contact_first_sec_1 {
  background-color: #ecf2ff;
  border-radius: 20px;
  margin: 50px 50px 0px 50px;
  padding: 20px 30px;
}

.iz_contact_first_sec_2 {
  background-color: #ecf2ff;
  border-radius: 20px;
  margin: 0px 50px 0px 50px;
  padding: 20px 30px;
}

.iz_about_txt {
  font-family: "Google Sans", roboto, arial, helvetica;
  color: #273044;
  font-size: 15px;
  font-weight: 400;
}

.iz_about_txt_bold {
  margin-top: 10px;
}

p.email-color a {
  color: #ff3621;
}

.iz_inner_heading {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 25px;
  color: #243641;
  font-family: "Google Sans", roboto, arial, helvetica;
}

.iz_about_sec_2 p {
  font-size: 16px;
  color: #243641;
  font-family: "Google Sans", roboto, arial, helvetica;
  font-weight: 400;
}

u {
  text-decoration: underline;
}

.iz_inner_heading_cr {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 25px;
  color: #243641;
  font-family: "Google Sans", roboto, arial, helvetica;
}

/*************Resources Page CSS************/
p.iz_resources_one {
  max-width: 400px;
  height: 155px;
  background: #ff7085;
  color: #ffffff;
  text-align: center;
  padding: 25px;
  font-size: 30px;
  font-weight: 500;
  font-family: WF Visual Sans, Arial, sans-serif;
}

p.iz_resources_two {
  max-width: 400px;
  height: 155px;
  background: #ff975d;
  color: #ffffff;
  text-align: center;
  padding: 25px;
  font-size: 30px;
  font-weight: 500;
  font-family: "Space Grotesk";
}

p.iz_resources_three {
  max-width: 400px;
  height: 155px;
  background: #644282;
  color: #ffffff;
  text-align: center;
  padding: 25px;
  font-size: 30px;
  font-weight: 500;
  font-family: "Space Grotesk";
}

p.iz_resources_four {
  max-width: 400px;
  height: 155px;
  background: #ff3621;
  color: #ffffff;
  text-align: center;
  padding: 25px;
  font-size: 30px;
  font-weight: 500;
  font-family: "Space Grotesk";
}

.iz-blog-card-body-inner {
  margin-top: -15px;
  width: 100%;
  padding: 15px 15px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 167px;
  text-align: justify;
}

p.card-text.text-center.card_inner_button {
  background: #5b56c8;
  padding: 11px 45px;
  border-radius: 50px;
}

.iz-button-small {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  line-height: 1em;
  letter-spacing: 0px;
  word-spacing: 0em;
  fill: #ffffff;
  color: #ffffff;
  background-color: #ff3621;
  border-style: solid;
  border-width: 0px 0px 0px 0px;
  border-color: #ff3621;
  border-radius: 100px 100px 100px 100px;
  padding: 16px 35px 16px 35px;
}

.iz-button-center-inner {
  margin-top: 10px;
  padding-bottom: 28px;
}

.iz-button-small:hover {
  background-color: #644282;
  color: #ff6f47;
}

/************Blog Post************/
/**    InterViewZilla Blog Post **/
/*********************************/

.sidebar {
  background-color: #f6f8f8;
  padding: 2rem 3rem;
  position: absolute;
  height: 100%;
  width: 100%;
}

/* .make-me-sticky {
  position: -webkit-sticky;
	position: sticky;
	top: 0;
  padding: 0 15px;
} */

.right_side_main_content {
  /* background-color: #f6f8f8; */
  padding: 2rem 3rem;
  position: relative;
}

.sidebar-content {
  display: inline-block;
  position: absolute;
}

/* a {
  text-decoration: none;
}

.text-link-effect {
    background-image: linear-gradient(rgba(12,127,215,0.5) 0%, rgba(12,127,215,0.5) 100%);
    background-repeat: repeat-x;
    background-size: 0px 0px;
    background-position: 0 25%;
    transition: 150ms ease-in-out;
}


.text-link-effect:hover {
    background-image: linear-gradient(#0c7fd7 0%, #0c7fd7 100%);
    background-size: 1.2em 1.4em;
    color: #fff;
    text-decoration: none;
} */

/* Media Queries */

@media (min-width: 768px) {
  .sidebar-content {
    position: relative;
    max-width: 20%;
  }
}

/***New***/
.Blog_Post {
  padding: 50px 30px;
}

.iz-blog-content-section {
  min-height: 2000px;
  border: solid 1px #b1b9c8;
}

.sidebar-section {
  position: absolute;
  height: 100%;
  width: 100%;
}

.iz-blog-sidebar-item {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.make-me-sticky {
  position: sticky;
  top: 80px;
  /* padding: 0 15px; */
}

/* Ignore This, just coloring */
section#iz_top_header {
  background-color: #1b3139;
  Color: #ffffff !important;
}

article {
  background: #f1f1f1;
  border-radius: 12px;
  padding: 25px 0 600px;
}

.title-section,
.iz-blog-content-section,
.sidebar-section {
  background: #ffffff;
  padding: 20px 25px;
  border-radius: 10px;
}

.title-section {
  text-align: center;
  padding: 50px 15px;
  margin-bottom: 30px;
}

.iz-blog-content-section h2 {
  padding: 10px 0px 10px 0px;
}

.iz-blog-sidebar-item {
  text-align: center;
  background: #ffffff;
  max-width: 100%;
  margin: 0 auto;
  padding: 10px 10px;
  border-bottom: solid 1px #fff;
  border-radius: 10px;
  border: solid 1px #b1b9c8;
}

.iz-blog-sidebar-item h3 {
  background: #fdf0e6;
  max-width: 100%;
  margin: 0 auto;
  padding: 50px 0 100px;
  border-bottom: solid 1px #fff;
  border-radius: 10px;
}

.iz-blog-sidebar-item p {
  font-size: 17px;
  font-weight: 600;
  border-bottom: solid 1px #b1b9c8;
  padding: 7px 0px;
}

.accordion-header {
  position: relative;
  background: #fdf0e6;
}

.accordion-header .btn-link {
  position: absolute;
  z-index: 99;
  top: 10px;
}

.accordion-body li {
  list-style: none;
  text-align: left;
  line-height: 25px;
  font-size: 14px;
}

.accordion-item {
  background: #ffffff;
}

button.accordion-button.collapsed {
  background: #ffffff;
}

.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: #f7efe9 !important;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordion-body {
  padding: 9px 0px !important;
}

.shadow-card-normal {
  --tw-shadow: 0px 4px 15px 0px rgba(27, 49, 57, 0.13);
  --tw-shadow-colored: 0px 4px 15px 0px var(--tw-shadow-color);
}

span.iz-blog-post-detail {
  padding: 0px 15px 0px 0px;
}

/*Blog cards page*/
.iz-blog-card .iz-blog-card-body-b-post {
  margin-top: 0px;
  width: 100%;
  padding: 12px 12px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 200px;
}

.iz-blog-card-body-b-post .tag {
  padding: 2px 10px;
  background-color: royalblue;
  font-size: 12px;
  margin: 0px 0px 5px 0px;
  color: #fff;
  border-radius: 50px;
  text-transform: uppercase;
}

.iz-blog-media {
  background-color: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  border-radius: 10px;
  padding: 10px;
}

.iz-blog-side-latest-post {
  margin-top: 80px;
  /* padding: 5px 40px;
  border-radius: 10px;
  font-family: "Space Grotesk", sans-serif;
  border: 1px solid #949494; */
}

.iz-blog-sidebar-title {
  font-family: "Space Grotesk", sans-serif;
  text-align: center;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #243641;
}

a.h2.toc-link {
  font-size: 14px;
  font-weight: 400;
}

a.h3.toc-link {
  font-size: 12px;
  font-weight: 400;
}

a.h1.toc-link {
  font-size: 16px;
  font-weight: 500;
}

h4.media-heading.lib-row {
  font-size: 16px;
  font-weight: 400;
}

a.blog-card-link-title {
  font-size: 17px;
  line-height: 22px;
}

/* .iz-blog-card-body-b-post .tag {
  padding: 3px 10px;
  background-color: royalblue;
  font-size: 9px;
  margin: 0px 0px 5px 0px;
  color: #fff;
  border-radius: 50px;
  text-transform: uppercase;
} */
.iz-blog-card-body-b-post .tag {
  padding: 3px 10px;
  background-color: #e6a5db;
  font-size: 9px;
  margin: 0px 0px 5px 0px;
  color: #8c0e77;
  border-radius: 50px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  /* Smooth transition */
}

.iz-blog-card-body-b-post .tag:hover {
  background-color: #ff3621;
  /* Lighter shade of blue on hover */
  color: #000;
  /* Change text color to black */
  transform: scale(1.1);
  /* Slightly enlarge the tag */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* Add a shadow effect */
}

span.iz-blog-post-detail-share {
  border: 1px solid #f8f9fa;
  padding: 6px 17px;
  border-radius: 5px;
  margin: 4px;
  background: #fff;
  color: #d33;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.iz-blog-share-download {
  margin-top: 40px;
  text-align: center;
}

.iz-blog-author-count-date {
  margin-top: 30px;
}

.clickable {
  color: #e15d10;
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
  /* This shows the hand icon on hover */
}

.author-bio {
  grid-column-gap: 0.6rem;
  grid-row-gap: 0rem;
  flex-flow: column;
  width: 100%;
  line-height: 1;
  display: flex;
  position: relative;
  color: #d33;
}

.author-bio a {
  color: var(--brand-black);
}

.author-bio a:hover {
  color: var(--brand);
}

.author-name {
  grid-column-gap: 0.2rem;
  grid-row-gap: 0.2rem;
  white-space: nowrap;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0.2rem;
  font-size: 0.8em;
  font-weight: 600;
  display: flex;
  position: relative;
}

.author-photo.is-funky {
  aspect-ratio: 4 / 5;
  width: 3.6rem;
  transform: rotate(-8deg);
}

.author-role {
  opacity: 0.8;
  flex-flow: wrap;
  font-size: 0.7em;
  font-weight: 400;
  line-height: 1.5;
  display: block;
  position: relative;
}

div.author {
  grid-column-gap: 0.6rem;
  grid-row-gap: 0.6rem;
  text-align: left;
  justify-content: flex-start;
  align-items: center;
  font-size: 1rem;
  display: flex;
  position: relative;
  margin-top: 25px;
}

.author-role *,
.author.is-small .author-role {
  display: inline;
}

.post-detail {
  opacity: 0.8;
  flex-flow: wrap;
  font-size: 0.7em;
  font-weight: 400;
  line-height: 1.5;
  display: block;
  position: relative;
}

.author-photo {
  /* aspect-ratio: 1; */
  /* border-top-style: solid; */
  /* border-top-width: 2px; */
  /* border-top-color: var(--color--white); */
  /* border-right-style: solid; */
  /* border-right-width: 2px; */
  /* border-right-color: var(--color--white); */
  /* border-bottom-style: solid; */
  /* border-bottom-width: 2px; */
  /* border-bottom-color: var(--color--white); */
  /* border-left-style: solid; */
  /* border-left-width: 2px; */
  /* border-left-color: var(--color--white); */
  /* border-top-left-radius: var(--radius--medium); */
  /* border-top-right-radius: var(--radius--medium); */
  /* border-bottom-left-radius: var(--radius--medium); */
  /* border-bottom-right-radius: var(--radius--medium); */
  /* background-color: var(--color--white); */
  object-fit: cover;
  object-position: 50% 24%;
  box-shadow: var(--shadow-xsmall);
  flex: none;
  width: 3.2rem;
  transition-property: all;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 5px;
  border: 5px solid #fff;
}

.author img {
  display: block;
  /* border-radius: 7px;
  width: 100%; 
  height: auto; */
}

.author-pf-inner img {
  display: block;
  border-radius: 4px;
  width: 100%;
  height: auto;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.container-fluid.blog-header {
  padding-top: 120px;
}

.iz-header-post-tumbnail {
  display: inline-block;
  background-color: #ffffff;
  border: 2px solid white;
  border-radius: 15px;
  overflow: hidden;
  padding: 3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  width: 100%;
  margin-top: 1.4rem;
}

.iz-blog-share-download {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  text-align: center;
  margin-top: 20px;
}

.pdf-download-btn {
  border: none;
  background: none;
  color: #ff3621;
  cursor: pointer;
  font-weight: 400;
  /* display: flex; */
  align-items: center;
  gap: 5px;
  text-decoration: none;
}

.download-count {
  font-size: 14px;
  color: #555;
}

.iz-header-post-tumbnail img {
  display: block;
  border-radius: 10px;
  width: 100%;
  height: auto;
}

section#iz_top_header\ iz-blog-header-bg {
  background: #f7f6f2;
}

section.iz_footer_top_subscribe.pb-5.pb-md-6.pb-xl-8 {
  /* background-image: radial-gradient(circle at 100% 0, #afdff2, #e8f5fa 30%, #b4e3f5 70%); */
  /* background-color: #f8f8f8; */
}

.iz_footer_top_subscribe {
  background: #f7f3ea;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0em -1.5em 1em !important;
  padding: 0.2em 2em;
  border: 1px solid rgb(0 0 0 / 0%) !important;
  border-radius: 15px !important;
  font-family: "Space Grotesk";
  font-weight: 300 !important;
  text-align: center !important;
  color: #198754;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
  font-family: "Space Grotesk", sans-serif !important;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  line-height: 1em;
  letter-spacing: 0px;
  word-spacing: 0em;
  fill: #ffffff;
  color: #ffffff;
  background-color: #ff3621 !important;
  border-style: solid;
  border-width: 0px 0px 0px 0px;
  border-color: #ff3621 !important;
  border-radius: 100px 100px 100px 100px !important;
  padding: 16px 100px 16px 100px !important;
}

h2.iz-subscription-sub-msg {
  font-size: 65px;
  color: #fff;
  font-family: WF Visual Sans, Arial, sans-serif;
  line-height: 66px;
  margin-top: 35px;
}

p.iz-subscription-sub-msg {
  font-size: 20px;
  color: #1d1d1d;
  /* font-family: "Courier Prime", serif; */
  font-weight: 400;
  font-style: normal;
}

.iz-form {
  border-radius: 25px;
  padding: 10px 10px;
}

p.iz_button_subscribe {
  margin-top: 15px;
  text-align: center;
}

.iz-subscription-box {
  background-color: #1b3139;
  padding: 45px 25px;
  border-radius: 15px;
}

.iz-subscription-form {
  margin-top: 90px;
}

a.btn.btn-primary.btn-lg.iz-button.iz-button-subscribe {
  background-color: #243642;
}

p.iz-subscription-term-n-conditions {
  font-size: 8px;
  color: #212529;
}

a.text-primary.text-decoration-underline {
  color: #dee2e6 !important;
}

.bloglists {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.bloglists>div {
  width: 100% !important;
  flex: 1 !important;
}

.iz_bg_g001 {
  background-image: radial-gradient(circle at 100% 0,
      #e9f59e,
      #c0ffc2 60%) !important;
}

.iz_bg_g002 {
  background-image: radial-gradient(circle at 100% 0,
      #9fd,
      #a4f9ff 60%) !important;
}

.iz_bg_g003 {
  background-image: radial-gradient(circle at 100% 0,
      #bfbfff,
      #dcbeff 60%) !important;
}

.iz_bg_g01 {
  background-color: #edebf8;
}

.iz-mt-15 {
  margin-top: 15px;
}

.iz-mb-35 {
  margin-bottom: 35px;
}

/*** CSS Added by DVS ****/

.btn-download {
  display: inline-block;
  background: #0073aa;
  color: #fff;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 4px;
  margin-bottom: 10px;
}

.btn-download:hover {
  background: #005177;
}

/* Autocomplete Search Styles */

.search-box {
  position: relative;
  width: 100%;
}

.search-results-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  max-height: 450px;
  overflow-y: auto;
  z-index: 9999;
  display: none;
  backdrop-filter: blur(10px);
}

.search-results-dropdown.show {
  display: block;
  animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-result-item {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.search-result-item:hover,
.search-result-item.active {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  text-decoration: none;
  color: inherit;
  transform: translateX(4px);
}

.search-result-item:last-child {
  border-bottom: none;
  border-radius: 0 0 12px 12px;
}

.search-result-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 16px;
  flex-shrink: 0;
  border: 2px solid #f1f5f9;
  transition: transform 0.2s ease;
}

.search-result-item:hover .search-result-image {
  transform: scale(1.05);
}

.search-result-content {
  flex: 1;
  min-width: 0;
  padding-right: 12px;
}

.search-result-title {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  margin: 0 0 6px 0;
  color: #1e293b;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.search-result-item:hover .search-result-title {
  color: #3b82f6;
}

.search-result-excerpt {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin: 0 0 8px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-result-meta {
  font-size: 12px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.search-result-category {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1d4ed8;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.search-result-date {
  font-weight: 500;
}

.search-no-results {
  padding: 30px 20px;
  text-align: center;
  color: #64748b;
  font-style: italic;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.search-loading {
  padding: 20px;
  text-align: center;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.search-loading::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid #e2e8f0;
  border-top: 2px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Dark theme support */
[data-bs-theme="dark"] .search-results-dropdown {
  background: #1e293b;
  border-color: #334155;
}

[data-bs-theme="dark"] .search-result-item {
  border-bottom-color: #334155;
}

[data-bs-theme="dark"] .search-result-item:hover,
[data-bs-theme="dark"] .search-result-item.active {
  background: linear-gradient(135deg, #334155 0%, #475569 100%);
}

[data-bs-theme="dark"] .search-result-title {
  color: #f8fafc;
}

[data-bs-theme="dark"] .search-result-item:hover .search-result-title {
  color: #60a5fa;
}

[data-bs-theme="dark"] .search-result-excerpt {
  color: #cbd5e1;
}

[data-bs-theme="dark"] .search-result-meta {
  color: #94a3b8;
}

[data-bs-theme="dark"] .search-result-category {
  background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
  color: #dbeafe;
}

[data-bs-theme="dark"] .search-no-results,
[data-bs-theme="dark"] .search-loading {
  color: #cbd5e1;
  background: linear-gradient(135deg, #334155 0%, #475569 100%);
}

/* Responsive design */
@media (max-width: 768px) {
  .search-results-dropdown {
    left: -10px;
    right: -10px;
    max-height: 350px;
    border-radius: 0 0 8px 8px;
  }

  .search-result-item {
    padding: 12px 15px;
  }

  .search-result-image {
    width: 50px;
    height: 50px;
    margin-right: 12px;
  }

  .search-result-title {
    font-size: 14px;
  }

  .search-result-excerpt {
    font-size: 12px;
  }

  .search-result-meta {
    font-size: 11px;
    gap: 8px;
  }

  .iz_contact_first_sec_1 {
    background-color: #ecf2ff;
    border-radius: 20px;
    margin: 25px 25px 5px 25px;
    padding: 15px 15px;
    width: auto;
  }

  .iz_contact_first_sec_2 {
    background-color: #ecf2ff;
    border-radius: 20px;
    margin: 0px 25px 0px 25px;
    padding: 20px 30px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .search-results-dropdown {
    left: -20px;
    right: -20px;
  }

  .search-result-item {
    padding: 10px 12px;
  }

  .search-result-image {
    width: 45px;
    height: 45px;
    margin-right: 10px;
  }

  .search-result-content {
    padding-right: 8px;
  }
}

/* Search input enhancements */
#iz-search-input {
  transition: all 0.3s ease;
}

#iz-search-input:focus {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  border-color: #3b82f6;
}

/* Scrollbar styling for search results */
.search-results-dropdown::-webkit-scrollbar {
  width: 6px;
}

.search-results-dropdown::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 3px;
}

.search-results-dropdown::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.search-results-dropdown::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

[data-bs-theme="dark"] .search-results-dropdown::-webkit-scrollbar-track {
  background: #334155;
}

[data-bs-theme="dark"] .search-results-dropdown::-webkit-scrollbar-thumb {
  background: #64748b;
}

[data-bs-theme="dark"] .search-results-dropdown::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}


/***********Learn Zilla*********************/
.banner {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f5ecdb;
  background-image:
    repeating-linear-gradient(105deg, rgba(255, 87, 34, 0.1) 0px, rgba(255, 87, 34, 0.1) 1px, transparent 1px, transparent 20px);
}

.banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 80px;
  min-height: 100vh;
  box-sizing: border-box;
}

.left {
  max-width: 50%;
}

.left h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #222;
}

.left p {
  font-size: 18px;
  color: #444;
  margin-bottom: 40px;
}

.left .btn-group {
  display: flex;
  gap: 20px;
}

.left button {
  padding: 14px 28px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

.btn-primary {
  background-color: #ff3621;
  color: #fff;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #222;
  color: #222;
}

.right img {
  max-width: 450px;
  height: auto;
  /* filter: grayscale(100%) brightness(0.1) invert(1); */
}

@media (max-width: 768px) {
  .banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .left,
  .right {
    max-width: 100%;
  }

  .right img {
    margin-top: 40px;
  }
}

/*Learn.interviewZilla*/
.how-it-works {
  background: linear-gradient(135deg, #f2e9f9, #f9eff6);
  padding: 0px 10px;
  text-align: center;
  color: #4a2d6e;
  font-family: 'Segoe UI', sans-serif;
}

/* .how-it-works h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
} */

.how-it-works-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  align-items: center;
}

.how-it-works-card {
  background: white;
  border-radius: 20px;
  padding: 25px;
  flex: 1 1 280px;
  max-width: 320px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  color: #6d4a9e;
  text-align: center;
  transition: transform 0.3s ease;
}

.how-it-works-card:hover {
  transform: translateY(-5px);
}

.icon-wrapper {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-icon {
  font-size: 52px;
  color: #6d4a9e;
}

.arrow {
  font-size: 4rem;
  font-weight: bold;
  color: #6d4a9e;
}

@media (max-width: 768px) {
  .how-it-works-container {
    flex-direction: column;
    gap: 40px;
  }

  .arrow {
    display: none;
  }
}

.practice-benefits {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.benefit-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.benefit-card {
  background: #f7f3ea;
  padding: 20px;
  border-radius: 12px;
  width: 180px;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card i {
  font-size: 36px;
  color: #6d4a9e;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 15px;
  color: #111;
  line-height: 1.4;
  margin: 0;
  font-weight: 500;
  text-align: center;
}

.arrow {
  font-size: 28px;
  font-weight: bold;
  color: #444;
}

/**/

/*Big Screen*/
.text-body-secondary {
  --bs-text-opacity: 1;
  color: #212529 !important;
}

/*One-to-one booking session*/
.iz-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.iz-benefit-card {
  background: var(--brand-black);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #fff;
}

.iz-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.iz-benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--brand);
}

.iz-benefit-card p {
  font-size: 0.95rem;
  color: #f7f3ea;
}

.iz-form-section {
  ba ckground: #fff;
  padding: 2.5rem;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.iz-form-section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #2a4d8f;
}

.iz-form {
  display: grid;
  gap: 1.5rem;
  max-width: 700px;
  margin: auto;
}

.iz-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.iz-row-single {
  display: block;
}

.iz-label {
  font-weight: 600;
  margin-bottom: 0.3rem;
  display: block;
  color: #444;
}

.iz-input,
.iz-select,
.iz-textarea {
  padding: 0.85rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}

.iz-hidden {
  display: none;
}

.iz-btn {
  background: var(--brand);
  color: var(--white);
  padding: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  transition: background 0.3s ease;
  width: 100%;
}

.iz-btn:hover {
  background: var(--brand-black);
  color: var(--brand);
}

@media (max-width: 700px) {
  .iz-row {
    grid-template-columns: 1fr;
  }

  /* Stack inputs on small screens */
}

/*Cheat Sheets*/
.iz-cs-page-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.iz-cs-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #1b3139;
}

.iz-cs-subtitle {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #555;
}

.iz-cs-category-title {
  font-size: 1.6rem;
  margin: 40px 0 20px;
  color: #eb1600;
}

.iz-cs-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

.iz-cs-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.iz-cs-card-header {
  height: 80px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
}

.iz-cs-card-header a {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 40px;
}

.iz-cs-card-header a:hover {
  color: #1b3139;
}

.iz-cs-card-content {
  padding: 20px;
  font-size: 0.95rem;
  color: #444;
  flex-grow: 1;
}

.iz-cs-card-footer {
  padding: 20px;
  text-align: center;
}

.iz-cs-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #eb1600;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
}

.iz-cs-btn:hover {
  opacity: 0.9;
}

/* Minimalist header colors by category */
.iz-cs-programming .iz-cs-card-header {
  background: #CCE3DC;
  color: #1b3139;
}

/* Light Mint */
.iz-cs-tools .iz-cs-card-header {
  background: #C7B9A8;
  color: #1b3139;
}

/* Warm Sand */
.iz-cs-cloud .iz-cs-card-header {
  background: #AEC6CF;
  color: #1b3139;
}

/* Cool Sky */
.iz-cs-jobs .iz-cs-card-header {
  background: #D8BFD8;
  color: #1b3139;
}

/* Pastel Lilac */

/*python cheat sheet*/
:root {
  --iz-py-cs-minimal-sage: #9CAF88;
  --iz-py-cs-soft-moss: #A8C686;
  --iz-py-cs-muted-teal: #B7D3C6;
  --iz-py-cs-warm-sand: #C7B9A8;
  --iz-py-cs-pastel-lilac: #D8BFD8;
  --iz-py-cs-blush-rose: #F4C2C2;
  --iz-py-cs-soft-vanilla: #F2E2BA;
  --iz-py-cs-cool-sky: #AEC6CF;
  --iz-py-cs-peach-mist: #FFDAB9;
  --iz-py-cs-dusty-lavender: #C5C6D0;
  --iz-py-cs-forest-green: #6B9080;
  --iz-py-cs-light-mint: #CCE3DC;


  --iz-py-cs-bg: #fbfbfc;
  --iz-py-cs-text: #1b1f24;
  --iz-py-cs-muted: #6b7280;
  --iz-py-cs-card-bg: #ffffff;
  --iz-py-cs-code-bg: #f5f6f7;
  --iz-py-cs-border: #e6e8eb;
  --iz-py-cs-shadow: 0 6px 24px rgba(0, 0, 0, .06), 0 2px 8px rgba(0, 0, 0, .04);
  --iz-py-cs-radius: 16px;
  --iz-py-cs-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}


.iz-py-cs-header {
  padding: 40px 20px 24px;
}

.iz-py-cs-title {
  max-width: 1100px;
  margin: 0 auto 8px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.iz-py-cs-title h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: .2px
}

.iz-py-cs-badge {
  padding: 6px 10px;
  border: 1px solid var(--iz-py-cs-forest-green);
  color: var(--iz-py-cs-forest-green);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: #ffffff;
}

.iz-py-cs-subtitle {
  max-width: 1100px;
  margin: 8px auto 0;
  color: var(--iz-py-cs-muted);
  font-size: 15px
}


.iz-py-cs-toolbar {
  max-width: 1100px;
  margin: 24px auto 0;
  display: flex;
  gap: 12px;
  padding: 0 0 8px;
  align-items: center;
  flex-wrap: wrap
}

.iz-py-cs-search {
  flex: 1;
  min-width: 240px;
  position: relative;
}

.iz-py-cs-search input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--iz-py-cs-border);
  background: #fff;
  outline: none;
  font-size: 14px;
}

.iz-py-cs-search input:focus {
  border-color: var(--iz-py-cs-forest-green);
  box-shadow: 0 0 0 4px rgba(107, 144, 128, .12)
}


.iz-py-cs-main {
  max-width: 1100px;
  margin: 24px auto 80px;
  padding: 0 20px
}

.iz-py-cs-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}


.iz-py-cs-card {
  background: var(--iz-py-cs-card-bg);
  border: 1px solid var(--iz-py-cs-border);
  border-radius: var(--iz-py-cs-radius);
  box-shadow: var(--iz-py-cs-shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .12s ease;
}

.iz-py-cs-card:hover {
  transform: translateY(-2px)
}


.iz-py-cs-card-head {
  padding: 14px 16px 0
}

.iz-py-cs-card h3 {
  margin: 0 0 8px;
  font-size: 18px
}

.iz-py-cs-hint {
  color: var(--iz-py-cs-muted);
  font-size: 12px;
  margin-bottom: 10px
}


.iz-py-cs-code-wrap {
  position: relative;
  padding: 12px 12px 8px
}

.iz-py-cs-pre {
  background: var(--iz-py-cs-code-bg);
  border: 1px solid var(--iz-py-cs-border);
  border-radius: 12px;
  padding: 14px;
  margin: 0;
  overflow: auto;
  font-family: var(--iz-py-cs-mono);
  font-size: 13px;
  line-height: 1.5;
}

.iz-py-cs-code {
  white-space: pre
}


.iz-py-cs-copy-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  border-radius: 10px;
  border: 1px solid var(--iz-py-cs-forest-green);
  background: #fff;
  color: var(--iz-py-cs-forest-green);
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s ease;
}

.iz-py-cs-copy-btn:hover {
  background: var(--iz-py-cs-forest-green);
  color: #fff
}

.iz-py-cs-copy-btn.iz-py-cs-copied {
  background: var(--iz-py-cs-minimal-sage);
  color: #fff;
  border-color: var(--iz-py-cs-minimal-sage)
}


.iz-py-cs-tok-k {
  color: var(--iz-py-cs-forest-green);
  font-weight: 600
}

.iz-py-cs-tok-s {
  color: var(--iz-py-cs-soft-moss)
}

.iz-py-cs-tok-c {
  color: var(--iz-py-cs-dusty-lavender);
  font-style: italic
}

.iz-py-cs-tok-n {
  color: var(--iz-py-cs-cool-sky);
  font-weight: 600
}


@media (max-width:640px) {
  .iz-py-cs-copy-btn {
    top: 16px;
    right: 16px
  }
}

@media (max-width: 480px) {
  .izStat {
    min-width: 100px;
  }

  section [class^="container"] {
    padding: 2rem 2rem;
  }

  .newsletter-text h1 {
    font-size: 26px;
  }

  .newsletter-form input,
  .newsletter-form button {
    font-size: 14px;
    width: 100%;
  }

  textarea#comment {
    width: 100%;
  }

  h4.page-title.card-post-tittle-inner {
    line-height: 20px;
    margin: 0px;
    height: 40px;
  }

  .iz-heading-bold-blog {
    line-height: 45px;
    text-align: center;
    font-size: 40px;
  }

  div.author {
    margin-top: 15px;
    margin-bottom: 10px;
  }

  .container-fluid.blog-header {
    padding-top: 92px;
  }

  .title-section,
  .iz-blog-content-section,
  .sidebar-section {
    margin-top: 10px;
  }

  .iz-heading-bold {
    font-size: 3em;
  }

  .iz-blog-card {
    /* width: 300px; */
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  }

  .iz_about_txt_bold {
    margin-top: 10px;
    text-align: center;
    line-height: 1em;
  }

  .iz_about_txt {
    margin-top: 17px;
  }

  .iz_inner_heading {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .iz_contact_first_sec_1 {
    background-color: #ecf2ff;
    border-radius: 20px;
    margin: 25px 25px 5px 25px;
    padding: 15px 15px;
    width: auto;
  }

  .iz_contact_first_sec_2 {
    background-color: #ecf2ff;
    border-radius: 20px;
    margin: 0px 25px 0px 25px;
    padding: 20px 30px;
    width: auto;
  }

  input#author,
  input#email,
  input#url {
    border: solid 1px #6b4386;
    margin-left: 0px;
    padding: 9px 45px;
    background-color: #fff;
  }

  .page-numbers {
    padding: 8px 8px 0px 8px;
    border: 1px solid #ff3621;
    border-radius: 6px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: 8px;
    margin: 0px 4px;
    text-align: center;
    color: --var(--brand-black);
  }

  .newsletter-text {
    flex: 1 1 50%;
    min-width: 250px;
  }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .izStat {
    min-width: 100px;
  }

  .page-numbers {
    padding: 8px 8px 0px 8px;
    border: 1px solid #ff3621;
    border-radius: 6px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: 8px;
    margin: 0px 4px;
    text-align: center;
    color: --var(--brand-black);
  }

  section [class^="container"] {
    padding: 2rem 2rem;
  }

  .container,
  .container-sm {
    max-width: 100%;
  }

  .newsletter-content {
    /* flex-direction: column; */
    padding: 10px 0;
  }

  .newsletter-text h1 {
    font-size: 32px;
  }

  .newsletter-text p {
    font-size: 16px;
  }

  .newsletter-form {
    padding: 20px;
  }

  .newsletter-form input {
    margin-bottom: 0px;
    width: 100%;
  }

  textarea#comment {
    width: 100%;
  }

  textarea#comment {
    width: 100%;
  }

  h4.page-title.card-post-tittle-inner {
    line-height: 20px;
    margin: 0px;
    height: 40px;
  }

  .iz-heading-bold-blog {
    line-height: 45px;
    text-align: center;
    font-size: 40px;
  }

  div.author {
    margin-top: 15px;
    margin-bottom: 10px;
  }

  .container-fluid.blog-header {
    padding-top: 92px;
  }

  .title-section,
  .iz-blog-content-section,
  .sidebar-section {
    margin-top: 10px;
  }

  .iz-heading-bold {
    font-size: 3em;
  }

  .iz-heading-bold-category {
    font-size: 2em;
    line-height: 40px;
    margin-top: 10px;
  }

  .iz-blog-card {
    /* width: 300px; */
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  }

  .iz_about_first_sec {
    margin: 15px 15px;
    padding: 10px 12px;
    height: auto;
    width: auto;
  }

  .iz_about_txt_bold {
    margin-top: 10px;
    text-align: center;
    line-height: 1em;
  }

  .iz_about_txt {
    margin-top: 17px;
  }

  .iz_inner_heading {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .iz_contact_first_sec_1 {
    background-color: #ecf2ff;
    border-radius: 20px;
    margin: 25px 25px 5px 25px !important;
    padding: 15px 15px;
    width: auto;
  }

  .iz_contact_first_sec_2 {
    background-color: #ecf2ff;
    border-radius: 20px;
    margin: 0px 25px 0px 25px !important;
    padding: 20px 30px;
    width: auto;
  }

  input#author,
  input#email,
  input#url {
    border: solid 1px #6b4386;
    margin-left: 0px;
    padding: 9px 45px;
    background-color: #fff;
  }

  .page-numbers {
    padding: 8px 8px 0px 8px;
    border: 1px solid #ff3621;
    border-radius: 6px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: 8px;
    margin: 0px 4px;
    text-align: center;
    color: --var(--brand-black);
  }

  .newsletter-text {
    flex: 1 1 50%;
    min-width: 250px;
  }

  .bloglists {
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 20px;
  }

  .iz_about_first_sec {
    margin: 15px 15px;
    padding: 10px 12px;
    height: auto;
    width: auto;
  }

  input.wpcf7-form-control.wpcf7-submit.has-spinner {
    font-family: "Space Grotesk", sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    font-style: normal;
    text-decoration: none;
    line-height: 1em;
    letter-spacing: 0px;
    word-spacing: 0em;
    fill: #ffffff;
    color: #ffffff;
    background-color: #ff3621 !important;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    border-color: #ff3621 !important;
    border-radius: 100px 100px 100px 100px !important;
    padding: 16px 50px 16px 50px !important;
  }

  .izBtnPrimaryWht {
    width: 100%;
  }

  .izBtnPrimary {
    width: 100%;
  }

  .iz-heading-bold-blog {
    line-height: 45px;
    text-align: center;
    font-size: 40px;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .izStat {
    min-width: 115px;
  }

  section [class^="container"] {
    padding: 2rem 2rem;
  }

  .newsletter-content {
    /* flex-direction: column; */
    padding: 10px 0;
  }

  .newsletter-text h1 {
    font-size: 32px;
  }

  .newsletter-text p {
    font-size: 16px;
  }

  .newsletter-form {
    flex: 1 1 40%;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px 30px 1px 40px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    color: #333;
    min-width: 250px;
    text-align: center;
  }


  textarea#comment {
    width: 100%;
  }

  textarea#comment {
    width: 100%;
  }

  h4.page-title.card-post-tittle-inner {
    line-height: 20px;
    margin: 0px;
    height: 40px;
  }


  div.author {
    margin-top: 15px;
    margin-bottom: 10px;
  }

  .container-fluid.blog-header {
    padding-top: 92px;
  }

  .title-section,
  .iz-blog-content-section,
  .sidebar-section {
    margin-top: 10px;
  }

  .iz-heading-bold {
    font-size: 3em;
  }



  .iz_about_txt_bold {
    margin-top: 10px;
    text-align: center;
    line-height: 1em;
  }

  .iz_about_txt {
    margin-top: 17px;
  }

  .iz_inner_heading {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  input#author,
  input#email,
  input#url {
    border: solid 1px #6b4386;
    margin-left: 0px;
    padding: 9px 45px;
    background-color: #fff;
  }

  .page-numbers {
    padding: 8px 8px 0px 8px;
    border: 1px solid #ff3621;
    border-radius: 6px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: 8px;
    margin: 0px 4px;
    text-align: center;
    color: --var(--brand-black);
  }

  .newsletter-text {
    flex: 1 1 50%;
    min-width: 250px;
  }

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .izStat {
    min-width: 115px;
  }

  section [class^="container"] {
    padding: 2rem 2rem;
  }

  .page-numbers {
    padding: 8px 8px 0px 8px;
    border: 1px solid #ff3621;
    border-radius: 6px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: 8px;
    margin: 0px 4px;
    text-align: center;
    color: --var(--brand-black);
  }

  .newsletter-content {
    /* flex-direction: column; */
    padding: 10px 0;
  }

  .newsletter-text h1 {
    font-size: 32px;
  }

  .newsletter-text p {
    font-size: 16px;
  }

  .newsletter-form {
    padding: 20px;
  }

  textarea#comment {
    width: 100%;
  }

  textarea#comment {
    width: 100%;
  }

  h4.page-title.card-post-tittle-inner {
    line-height: 20px;
    margin: 0px;
    height: 40px;
  }


  div.author {
    margin-top: 15px;
    margin-bottom: 10px;
  }

  .container-fluid.blog-header {
    padding-top: 92px;
  }

  .title-section,
  .iz-blog-content-section,
  .sidebar-section {
    margin-top: 10px;
  }

  .iz-heading-bold {
    font-size: 3em;
  }

  .bloglists {
    /* grid-template-columns: repeat(1, 1fr); */
    gap: 20px;
  }


  .iz_about_txt_bold {
    margin-top: 10px;
    text-align: center;
    line-height: 1em;
  }

  .iz_about_txt {
    margin-top: 17px;
  }

  .iz_inner_heading {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  input#author,
  input#email,
  input#url {
    border: solid 1px #6b4386;
    margin-left: 0px;
    padding: 9px 45px;
    background-color: #fff;
  }

  .page-numbers {
    padding: 8px 8px 0px 8px;
    border: 1px solid #ff3621;
    border-radius: 6px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: 8px;
    margin: 0px 4px;
    text-align: center;
    color: --var(--brand-black);
  }

  .newsletter-text {
    flex: 1 1 50%;
    min-width: 250px;
  }
}

/* iPad Portrait */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {

  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .newsletter-text {
    flex: 1 1 50%;
    min-width: 250px;
    margin-top: 43px;
  }

  .col-lg.col-sm-3.mt-3 {
    width: 50%;
  }

  .bloglists {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
  }
  .iz-blog-card {
    /* width: 300px; */
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
}

/* iPad Landscape */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .newsletter-text {
    flex: 1 1 50%;
    min-width: 250px;
    margin-top: 43px;
  }

  .col-lg.col-sm-3.mt-3 {
    width: 50%;
  }

  .bloglists {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px;
  }
  .iz-blog-card {
    /* width: 300px; */
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
}