@font-face {
  font-family: 'Arfonts-RH-Zak';
  src: url('/assets/fonts/arfonts-rh-zak.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Arfonts-RH-Zak-Bold';
  src: url('/assets/fonts/arfonts-rh-zak-bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Arfonts-RH-Zak-Thin';
  src: url('/assets/fonts/arfonts-rh-zak-thin.ttf') format('truetype');
  font-weight: lighter;
  font-style: normal;
}

/* Fonts */
:root {
  --default-font: 'Arfonts-RH-Zak', sans-serif;
  --bold-font: 'Arfonts-RH-Zak-Bold', sans-serif;
  --thin-font: 'Arfonts-RH-Zak-Thin', sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #000000;
  /* Background color for the entire website, including individual sections */
  --default-color: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --backgroundfooter-color: #2D2D2D;
  /* Default color used for the majority of the text content across the entire website */
  --second-color: #333333;
  --heading-color: #EBEDF0;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #FF4e08;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --yellow-color: #FBB423;
  --card-color: rgba(51, 51, 51, 1);
  --vision-color: #110E0E;
  /* --card-color: rgba(51, 51, 51, 0.439); */
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --transparent-color: transparent;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--contrast-color);
  text-decoration: none;
  transition: 0.3s;
  font-family: 'Arfonts-RH-Zak', sans-serif;
  /* word-spacing: 3px; */
  /* letter-spacing: 1px; */
}

a:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Arfonts-RH-Zak', sans-serif;
  /* word-spacing: 3px;
  letter-spacing: 1px; */
}

p {
  font-family: 'Arfonts-RH-Zak', sans-serif;
  /* word-spacing: 3px;
  letter-spacing: 1px; */
}

a {

  font-family: 'Arfonts-RH-Zak', sans-serif;
}

/*--------------------------------------------------------------
# Global Components
--------------------------------------------------------------*/

/* Wrapper */
.wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 60px auto;
  width: fit-content;
}

.wrapper::before,
.wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 160px;
  height: 2px;
  background: linear-gradient(to right, transparent, #ffffff55, transparent);
}

.wrapper::before {
  right: 100%;
  margin-right: 20px;
}

.wrapper::after {
  left: 100%;
  margin-left: 20px;
}

@media (max-width: 520px) {

  .wrapper::before,
  .wrapper::after {
    display: none;
  }
}

.zokalo-logo {
  max-width: 150px;
  height: auto;
  display: block;
}

/* 265--------------------- */
/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* From Uiverse.io by Creatlydev */
.button {
  text-decoration: none;
  line-height: 1;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, .05);
  background-color: #fff;
  color: #121212;
  border: none;
  cursor: pointer;
}

.button-decor {
  position: absolute;
  inset: 0;
  background-color: var(--clr);
  transform: translateX(-100%);
  transition: transform .3s;
  z-index: 0;
}

.button-content {
  display: flex;
  align-items: center;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.button__icon {
  width: 48px;
  height: 40px;
  background-color: var(--clr);
  display: grid;
  place-items: center;
}

.button__text {
  display: inline-block;
  transition: color .2s;
  padding: 2px 1.5rem 2px;
  padding-left: .75rem;
  overflow: hidden;
  white-space: nowrap;
  /* text-overflow: ellipsis; */
  max-width: 150px;
}

.button:hover .button__text {
  color: #fff;
}

.button:hover .button-decor {
  transform: translate(0);
}

/* 265--------------------- */
/* buttons */
.buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 32px;
  border: none;
  font-family: var(--bold-font);
  font-size: 18px;
  text-decoration: none;
  font-weight: bold;
  overflow: hidden;
  transition: background 0.3s ease-in-out;
}

.cta-button:hover {
  background-color: var(--contrast-color);
  color: var(--heading-color);
}

.arrow-icon {
  font-size: 2rem;
  line-height: 1;
}

.card-section .arrow-icon,
.about-section .arrow-icon {
  font-size: 2rem;
  line-height: 1;
}

.card-section .cta-button:hover .arrow-icon,
.about-section .cta-button:hover .arrow-icon {
  background-color: #FF5733;
  width: 120%;
  height: 300%;
  border-radius: 0;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: transparent;
}

/* @media (max-width: 768px) {
  .header {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
  }
} */

.header .container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  order: 1;
}

#menu-icon {
  font-size: 36px;
  color: var(--contrast-color);
  cursor: pointer;
  order: 2;
}

.navbar {
  position: fixed;
  top: -100%;
  right: 0;
  width: 100%;
  background: var(--background-color);
  padding: 50px 30px;
  transition: top 0.4s ease-in-out;
  z-index: 99;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100vh;
}

.navbar.active {
  top: 70px;
}

.menu-row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 0px;
}

.navbar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 10rem;
}

.navbar ul li {
  margin: 20px 0;
}

@media(max-width: 789px) {
  .navbar ul {
    flex-direction: column;
    gap: 0;
  }

  .navbar ul li {
    margin: 10px 0;
  }
}

.navbar ul li a {
  color: var(--contrast-color);
  text-decoration: none;
  font-size: 1.3rem;
}

.navbar ul li .submenu {
  display: block;
}

.navbar ul li .submenu li a {
  font-size: 16px;
  color: var(--default-color);
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/* CSS */
.zikola-footer {
  position: relative;
  /* min-height: 100vh; */
  background-image: url('/assets/img/Zikola/back/01.png');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 20px;
}

.overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.72);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 2;
  margin: 0 auto;

}

.zikola-footer .cta-button {
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--bold-font);
  font-size: 18px;
  text-decoration: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.footer-description {
  font-size: 18px;
  line-height: 2.2;
  margin: 50px;
  color: var(--contrast-color);
  font-family: var(--default-font);
  font-weight: normal;
  word-spacing: 3px;
}

@media (max-width: 450px) {
  .footer-description {
    font-size: 16px;
  }
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 30px;
}

.footer-icons i {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  border-radius: 50%;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.08);
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: var(--contrast-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
  padding: 40px 10px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  pointer-events: none;
  z-index: 3;
}

.hero::after {
  content: "";
  position: absolute;
  top: 20%;
  left: -90%;
  width: 300%;
  height: 200%;
  background: url('/assets/img/Zikola/back/Priperty-01.png') no-repeat;
  background-size: contain;
  animation: bgSwitch 10s infinite alternate;
  z-index: 1;
  filter: blur(10px);
  opacity: 1;
}

@keyframes bgSwitch {
  0% {
    background-image: url('/assets/img/Zikola/back/Priperty-01.png');
  }

  25% {
    background-image: url('/assets/img/Zikola/back/Priperty-02.png');
  }

  50% {
    background-image: url('/assets/img/Zikola/back/Priperty-03.png');
  }

  75% {
    background-image: url('/assets/img/Zikola/back/Priperty-04.png');
  }

  100% {
    background-image: url('/assets/img/Zikola/back/Priperty-01.png');
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 439px) {
  .hero::before {
    z-index: 2;
    opacity: 0.8;
    height: 99px;
  }

  .hero::after {
    top: 57%;
    left: -55%;
    width: 240%;
    animation: none !important;
    background-image: url('/assets/img/Zikola/back/Priperty-01.png') !important;
  }

  .hero-content {
    min-height: 70vh;
  }
}

.hero .hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 1.2px;
  padding: 20px;
  color: var(--contrast-color);
}

.hero .hero-content p {
  font-size: 1rem;
  font-weight: normal;
  padding: 0 100px 30px;
  letter-spacing: 1.2px;
  color: var(--contrast-color);
}

.hero .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
}

.hero .input-wrapper {
  flex: 1 1 250px;
  max-width: 300px;
}

@media (max-width: 916px) {
  .hero .hero-content h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    justify-content: flex-start;
    margin-top: 52px;
  }

  #hero .input-wrapper,
  #hero #wrapper {
    flex: 1 1 65px;
    max-width: 100%;
  }

  .hero .hero-content p {
    font-size: 0.8rem;
    padding: 0 15px 15px;
  }

  #hero .buttons .btn {
    padding: 14px 24px;
  }

  #hero .buttons .btn .text {
    margin-left: 0;
    font-size: 12px;
  }

  #hero .buttons .btn::before {
    display: none;
  }

  #hero .buttons .btn i {
    display: none;
  }

}

.hero .email-input {
  background-color: var(--bs-border-color-translucent);
  color: var(--contrast-color);
  padding: 14px 32px 14px 24px;
  border-radius: 30px;
  border: 1px solid var(--contrast-color);
  width: 100%;
}

@media (max-width: 416px) {
  .hero .hero-content h1 {
    font-size: 1.2rem;
  }

  .hero .hero-content p {
    font-size: 0.7rem;
  }

  .hero .email-input {
    font-size: 12px;
  }
}

@media (max-width: 359px) {

  .hero .email-input,
  #hero .buttons .btn .text {
    font-size: 9px;
  }
}

.hero .col {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 300px;
}

.hero .container-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  padding: 0 50px;
  z-index: 1;
  pointer-events: none;
}

@media (max-width:549px) {
  .hero .container-line {
    display: none;
  }
}

.hero .line {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.hero .zikola-bottom {
  position: relative;
  min-height: 68vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 20px;
  z-index: 2;
}

.hero .zikola-bottom h2 {
  font-size: 6rem;
  font-weight: bold;
  letter-spacing: 7px;
  color: var(--heading-color);
  z-index: 4;
  position: relative;
}

@media (max-width: 1200px) {
  .hero .zikola-bottom h2 {
    font-size: 5rem;
    letter-spacing: 3px;
  }
}

@media (max-width: 892px) {
  .hero .zikola-bottom h2 {
    font-size: 3.2rem;
    letter-spacing: 8px;
  }
}

@media (max-width: 798px) {
  .hero .zikola-bottom {
    min-height: 10vh;
  }

  .hero .zikola-bottom h2 {
    font-size: 2.3rem;
    letter-spacing: 7px;
  }
}

@media (max-width: 499px) {

  .hero .zikola-bottom h2 {
    font-size: 1.8rem;
    letter-spacing: 1.7px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-section {
  position: relative;
  background-image: url('/assets/img/Zikola/back/02.png');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 80px 20px;
  color: var(--contrast-color);
  display: flex;
  align-items: center;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgb(0 0 0 / 27%);
  z-index: 1;
}

.about-section .container {
  position: relative;
  z-index: 2;
}

.about-section .container .row {
  gap: 3.5rem;
}

.about-content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3.5rem;
}

.about-content p {
  margin: 0;
  font-size: 18px;
  max-width: 600px;
}

.about-section .buttons {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 4rem;
}

.about-section .buttons .cta-button {
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
  font-size: 0.9rem;
}

.about-section .buttons .cta-button:hover {
  box-shadow: inset 15em 0 0 0 var(--heading-color);
}

.about-section .buttons .cta-button::after {
  top: 0;
  bottom: 0;
  left: 100%;
  right: -100%;
}

.about-section .buttons .cta-button .arrow-icon {
  margin: 5px auto;
  background-color: #F9F9F90F;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120%;
  width: 70px;
  border-radius: 100px;
  z-index: -1;
  transition: all 600ms ease;
}

.about-section .buttons .cta-button:hover .arrow-icon {
  box-shadow: inset 6.5em 0 0 0 var(--default-color);
}


@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .about-section .buttons {
    gap: 1rem;
  }
}

.about-section h2 {
  margin: 0;
  font-size: 28px;
}

.about-section .logo-content {
  text-align: center;
  margin-top: 100px;
}

.about-section .logo-content .wrapper {
  margin-bottom: 20px;
}

.about-section .logo-content img {
  max-width: 200px;
}

.about-section .logo-content .footer-title {
  font-weight: bold;
  font-size: 2rem;
  padding-top: 5rem;
  padding-bottom: 2rem;
}

.about-section .logo-content p {
  font-size: 14px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .buttons {
    align-items: center;
  }
}


/*--------------------------------------------------------------
# E-Comerce Page
--------------------------------------------------------------*/
/* E-comerce Section */
.ecommerce {
  position: relative;
  overflow: hidden;
  padding-top: 150px;
}

.ecommerce .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 200vh;
}

.ecommerce .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/img/Zikola/back/Lines.png');
  background-size: 97%;
  background-repeat: no-repeat;
  background-position: center;
}

.ecommerce .text-center {
  color: var(--contrast-color);
}

.ecommerce .intro-cta-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
  color: var(--contrast-color);
}

.ecommerce .intro-cta-title h1 {
  display: inline-block;
  border: 1px solid var(--accent-color);
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 12px;
  background: linear-gradient(90deg, rgba(255, 78, 8, 1) 0%, rgba(186, 156, 255, 1) 50%, rgba(255, 102, 102, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ecommerce .wrapper-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* ************* */
#wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#wrapper .col {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--accent-color);
}

#wrapper .col:hover {
  color: var(--contrast-color);
}

.btn {
  font-size: 16px;
  background-color: transparent;
  padding: 14px 32px 14px 24px;
  display: flex;
  align-items: center;
  border-radius: 99px;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  position: relative;
  transition: all 0.5s ease-in-out;
}

.btn:hover {
  background-color: var(--contrast-color);
  border-color: var(--accent-color);
  transition: all 0.1s ease-in-out;
}

.btn .text {
  line-height: 1;
  position: relative;
  z-index: 5;
  margin-left: 32px;
  font-weight: normal;
}

.btn i {
  display: inline-block;
  position: relative;
  z-index: 5;
  top: 0;
  left: 0;
  transform: translateX(-50%, -50%);
  transform-origin: left;
  transition: all 0.5s ease-in-out;
}

.btn::before {
  content: '';
  background-color: #F9F9F90F;
  width: 32px;
  height: 32px;
  display: block;
  position: absolute;
  z-index: 1;
  border-radius: 99px;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  transition: all 0.8s ease-in-out;
}

.btn.light {
  background-color: var(--default-color);
}

.btn.light::before {
  background-color: rgba(249, 249, 249, 0.06);
}

.btn:hover::before {
  width: 100%;
  height: 100%;
  left: 0;
  background-color: var(--accent-color);
  transition: all 0.5s ease-in-out;
}

/* **************** */
.ecommerce .logo-center {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15rem;
  margin-bottom: 15rem;
  flex-direction: column;
  gap: 20px;
}

.ecommerce .logo-center::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/img/Zikola/back/Eclipse01.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.1;
}

.ecommerce .ecommerce-content-text {
  color: var(--contrast-color);
}


/*--------------------------------------------------------------
# E-Comerce Content Page
--------------------------------------------------------------*/
.ecommerce-content {
  position: relative;
  margin-top: -150px;
  padding-bottom: 80px;
  background: transparent;
}

.ecommerce-content-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 35px 20px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  border-radius: 25px;
  background: linear-gradient(45deg, rgba(25, 22, 22, 1) 0%, rgba(22, 18, 17, 1) 50%, rgba(46, 28, 20, 1) 100%);
  margin-bottom: 30px;
  height: 190px;

}

.ecommerce-content-box i {
  color: var(--accent-color);
  font-size: 18px;

}

.ecommerce-content-box .content-box h2 {
  margin: 0 0 16apx 0;
  font-size: 20px;
  color: var(--contrast-color);

}

.ecommerce-content-box .content-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #999999;
  max-height: calc(250px - 80px);
}

/*--------------------------------------------------------------
# Bottom cta Section
--------------------------------------------------------------*/
.bottom-cta {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: var(--background-color);
  text-align: center;
}

.bottom-cta .cta-button-title {
  position: relative;
  z-index: 2;
  margin: 0 auto;

}

.bottom-cta .cta-button-title a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  padding: 18px 28px;
  border: none;
  font-size: 18px;
  background-color: var(--accent-color);
  text-decoration: none;
  overflow: hidden;
  transition: background 0.3s ease-in-out;
  border-radius: 30px;
  box-shadow: 0 0 50px var(--accent-color);
}

.cta-button-title {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('/assets/img/Zikola/back/Ellipse03.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.intro-cta-title:hover a {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Programming Section
--------------------------------------------------------------*/
.programming {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: var(--background-color);

}

.programming .programming-title {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 50px 0;
  text-align: center;
}

.programming .programming-title h1 {
  color: var(--contrast-color);
  font-size: 2rem;
}

/* 
 */

/*--------------------------------------------------------------
### Start Anmiation Card 
--------------------------------------------------------------*/
.anmiat-card {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
  overflow: hidden;
}



.anmiat-card .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0px;
  height: 58vh;
  width: 100%;
}

@media (max-width: 768px) {
  .anmiat-card {
    display: none;
  }

  .anmiat-card .container {
    grid-template-columns: 1fr;
  }
}

.anmiat-card .box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 29vw;
  height: 35vw;
  max-width: 100%;
  max-height: 100%;
  box-shadow: 0 2px 15px rgb(0 0 0 / 10%);
  background-color: var(--card-color);
  color: var(--contrast-color);
  border-radius: 6px;
  overflow: hidden;
  transition: transform var(--main-transition), box-shadow var(--main-transition);
  max-width: 97%;
  margin: 0;
  transform: rotate(calc(var(--r) * 1deg));
  transition: top 5s ease-in-out, left 1s ease-in-out, opacity 5s ease-in-out;
}

@media (max-width: 768px) {
  .anmiat-card .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .anmiat-card .box {
    width: 80vw;
    height: 85vw;
    max-width: 100%;
    max-height: 100%;
    margin-bottom: 15px;
    transform: none !important;
  }
}

.anmiat-card .box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 75%;
  height: 60%;
  filter: blur(50px);
  z-index: -1;
}

.anmiat-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, -0.7) 100%);
  pointer-events: none;
  z-index: 3;
}

.anmiat-card .box img {
  width: 60%;
  max-width: 100%;
  height: auto;
  z-index: 1;
}

.anmiat-card .box .content {
  padding: 20px;
}

.anmiat-card .box .content h3 {
  margin: 0;
  font-size: 18px;
  padding: 10px 0;
}

.anmiat-card .box .content p {
  margin-top: 5px;
  font-size: 10px;
  line-height: 1.5;
}

/* small screen */
@media (max-width: 899px) {
  .anmiat-card .box .content h3 {
    margin: 0;
    font-size: 18px;
    padding: 10px 0;
  }

  .anmiat-card .box .content p {
    margin-top: 5px;
    font-size: 10px;
    line-height: 1.5;
  }

  .anmiat-card .container .box:nth-child(4) img {
    top: -20px;
    left: 0;
  }

  .anmiat-card .container .box:nth-child(5) img {
    left: -20px;
  }
}

/* larg media screen */
@media (min-width: 900px) {
  .anmiat-card .box .content h3 {
    font-size: 34px;
  }

  .anmiat-card .box .content p {
    font-size: 16px;
  }

  .anmiat-card .container .box:nth-child(3) img {
    top: -50px;
    left: -20px;
  }

  .anmiat-card .container .box:nth-child(4) img {
    top: -50px;
    left: -20px;
  }
}


.anmiat-card .container .box:nth-child(2) {
  z-index: 1;
}

/* .articles .container .box:nth-child(3) img {
  width: 120%;
  max-width: 116%;
} */

.anmiat-card .container .box:nth-child(4) img {

  width: 110%;
  max-width: 110%;
  position: relative;
  /* top: -50px;
  left: -20px; */
}

.anmiat-card .container .box:nth-child(5) img {
  width: 100%;
  max-width: 100%;
  position: relative;
  top: 70px;
  left: -60px;
}

/* @media (max-width: 1200px) {
  .articles .container .box:nth-child(1) img {
    top: 70px;
  }

  .articles .container .box:nth-child(4) img {
    top: -43px;
    left: 10px;
  }

  .articles .container .box:nth-child(5) img {
    left: -20px;
  }
} */


.anmiat-card .container .box:nth-child(1)::after {
  background: linear-gradient(55deg, rgba(255, 88, 88, 1), var(--card-color));
}

.anmiat-card .container .box:nth-child(2)::after {
  background: linear-gradient(55deg, rgba(122, 39, 6, 1), var(--card-color));
}

.anmiat-card .container .box:nth-child(3)::after {
  background: linear-gradient(55deg, rgba(255, 88, 88, 1), var(--card-color));
}

.anmiat-card .container .box:nth-child(4)::after {
  background: linear-gradient(55deg, rgba(255, 88, 88, 1), var(--card-color));
}

.anmiat-card .container .box:nth-child(5)::after {
  background: linear-gradient(55deg, rgba(255, 88, 88, 1), var(--card-color));
}

.anmiat-card .container .box:nth-child(6)::after {
  background: linear-gradient(55deg, rgba(255, 88, 88, 1), var(--card-color));
}

.anmiat-card .container .box:nth-child(4),
.anmiat-card .container .box:nth-child(5) {
  position: absolute;
  top: -100%;
  opacity: 0;
}

.anmiat-card .container .box:nth-child(4) {
  left: 0;
}

.anmiat-card .container .box:nth-child(5) {
  left: -100%;
}

.anmiat-card .container .box:nth-child(1) {
  left: -100%;
}

.anmiat-card .container .box:nth-child(3) {
  left: 100%;
}

/* End Anmiation Card */

/*--------------------------------------------------------------
# Card Section
--------------------------------------------------------------*/
.card-section {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: var(--background-color);
  display: none;

}

@media (max-width: 768px) {
  .card-section {
    display: flex;
  }
}

@media (max-width: 439px) {
  .card-section {
    margin-top: -60px;
    padding-top: 0;
    background-color: transparent;
    z-index: 10;
  }
}

.card-section .row>* {
  padding-right: 0 !important;
}

.card-section .card-item {
  background-color: var(--second-color);
  border-radius: 10px;
  color: var(--contrast-color);
  margin: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

@media (max-width: 768px) {
  .card-section .card-item {
    transform: none !important;
  }
}

.card-section .card-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 75%;
  height: 60%;
  filter: blur(50px);
  z-index: -1;
}

.card-section .col-lg-4:nth-child(1) .card-item::after {
  background: linear-gradient(55deg, rgba(255, 88, 88, 1), var(--card-color));
}

.card-section .col-lg-4:nth-child(2) .card-item::after {
  background: linear-gradient(55deg, rgba(122, 39, 6, 1), var(--card-color));
}

.card-section .col-lg-4:nth-child(3) .card-item::after {
  background: linear-gradient(55deg, rgba(255, 88, 88, 1), var(--card-color));
}

.card-section .col-lg-4:nth-child(4) .card-item::after {
  background: linear-gradient(55deg, rgba(122, 39, 6, 1), var(--card-color));
}

.card-section .col-lg-4:nth-child(5) .card-item::after {
  background: linear-gradient(55deg, rgba(122, 39, 6, 1), var(--card-color));
}

.card-section .card-item h2 {
  padding: 34px 20px 0;

}

.card-section .card-item p {
  padding: 20px 20px 0;
  font-size: 16px;
}

.card-section .card-item h2,
.card-section .card-item p {
  color: var(--heading-color);
  line-height: 1.6;
}

.card-section .card-footer {
  text-align: left;
  position: relative;
}

.card-section .image-corner {
  margin-top: 20px;
  display: inline-block;
  margin-left: 50px;
  width: 120px;
  height: auto;
  z-index: 1;
  position: relative;
}

.card-section .card-item img {
  width: 125%;
  height: auto;
  left: -20px;
  position: relative;
}

.card-section .col-lg-4:nth-child(1) img {
  width: 150%;
  left: 12px;
}

.card-section .col-lg-4:nth-child(3) img {
  width: 159%;
  left: 21px;
}

.card-section .col-lg-4:nth-child(4) img {
  width: 165%;
  left: 28px;
}

.card-section .col-lg-4:nth-child(5) img {
  width: 184%;
  left: 76px;
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  background-color: var(--background-color);
  padding-top: 50px;
  padding-bottom: 50px;
}

.services .content .service-item {
  background-color: var(--background-color);
  padding: 20px 30px 0;
  border-top: 1px solid rgba(75, 75, 75, 1);
  border-left: 1px solid rgba(75, 75, 75, 1);
  position: relative;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
}

.services .content [class^=col-]:hover:nth-child(1) .service-item,
.services .content [class^=col-]:hover:nth-child(2) .service-item,
.services .content [class^=col-]:hover:nth-child(3) .service-item,
.services .content [class^=col-]:hover:nth-child(4) .service-item {
  background: linear-gradient(23deg, rgba(255, 78, 8, 0.2) 14%, rgba(0, 0, 0, 0) 66%);
}


.services .content .service-item .service-item-icon {
  position: relative;
  padding-top: 20px;
  color: var(--accent-color);
}

.services .content .service-item .service-item-icon .arrow-top {
  position: absolute;
  width: 40px;
  top: 100px;
  transition: transform 0.3s ease-in-out;
}


@media (max-width: 768px) {
  .services .content .service-item .service-item-icon .imag-clie {
    padding-bottom: 80px;
  }
}
.services .content [class^=col-]:hover:nth-child(1) .service-item-icon .arrow-top {
  transform: translateX(20px) translateY(-20px);
}

.services .content .service-item .service-item-icon .arrow-bottom {
  position: absolute;
  width: 40px;
  top: -14px;
  transition: transform 0.5s ease-in-out;
}

.services .content [class^=col-]:hover:nth-child(2) .service-item-icon .arrow-bottom {
  transform: translateX(30px) translateY(30px);
}

.services .content .service-item .service-item-icon:before {
  position: absolute;
  content: "";
  transform: rotate(45deg);
  z-index: -1;
  left: -20px;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  border-right: 40px solid var(--accent-color);
  display: none;
}

.services .content .service-item .service-item-icon>span {
  color: var(--default-color);
  font-size: 4rem;
}

.services .content .service-item .service-item-content .service-heading {
  font-size: 20px;
  color: var(--contrast-color);
  font-weight: 400;
  padding: 14px 0;
  line-height: 1.5;
}

.services .content .service-item .service-item-content p {
  font-size: 15px;
}

.services .content [class^=col-]:nth-child(1) .service-item,
.services .content [class^=col-]:nth-child(2) .service-item,
.services .content [class^=col-]:nth-child(3) .service-item,
.services .content [class^=col-]:nth-child(4) .service-item,
.services .content [class^=col-]:nth-child(5) .service-item {
  border-right: 1px solid rgba(75, 75, 75, 1);
}

.services .content [class^=col-]:nth-child(5) .service-item {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgba(75, 75, 75, 1);
}

.services .content [class^=col-]:nth-child(5) .service-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgba(75, 75, 75, 1);
}

.services .content [class^=col-]:nth-child(5) .service-item .service-item-content {
  position: relative;
  top: -20%;
}

@media (max-width: 989px) {

  .services .content .service-item .service-item-icon img {
    width: 75%;
  }

  .services .content [class^=col-]:nth-child(5) .service-item .service-item-content {
    top: 0;
  }

  .services .content [class^=col-]:nth-child(5) .service-item .service-item-icon img {
    display: none;
  }
}

@media (min-width: 769px) {

  .services .content [class^=col-]:nth-child(2) .service-item,
  .services .content [class^=col-]:nth-child(4) .service-item {
    border-right: 1px solid rgba(75, 75, 75, 1);
  }
}

/*---------------------------------------
  FAQs              
-----------------------------------------*/

.faq-container {
  border-radius: 15px;
  margin: 50px auto;
  padding: 30px;
  background-color: rgba(29, 28, 28, 1);
  border: 1px solid rgba(153, 153, 153, 0.33);

}

.faq-container h1 {
  text-align: right;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.faq-container .faq-subtitle {
  text-align: right;
  font-size: 20px;
  color: var(--contrast-color);
}

.faq-container .faq-image {
  text-align: center;
  display: block;
  margin: 0 auto 30px auto;

}

.faq-container .faq-image img {
  max-width: 100%;
  height: auto;
}

.faq-item {
  border-bottom: 1px solid var(--contrast-color);
  overflow: hidden;
}

.faq-question {
  background-color: transparent !important;
  color: var(--contrast-color);
  width: 100%;
  padding: 60px 60px 20px 20px;
  text-align: right;
  font-size: 18px;
  border: none;
  cursor: pointer;
  position: relative;
}

.faq-question:hover {
  background-color: var(--contrast-color);
}

.faq-question .arrow {
  position: absolute;
  content: url('/assets/img/Zikola/faq/group01.png');
  right: 20px;
  transition: transform 0.3s ease;
}

.faq-question.active .arrow {
  content: url('/assets/img/Zikola/faq/group02.png');
  top: 70px;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 20px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--contrast-color)
}

/*---------------------------------------
Bottom Style
-----------------------------------------*/
.bottom-style {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  position: relative;
}

.bottom-content .cta-button {
  position: relative;
  background-color: var(--accent-color);
  border-radius: 50px;
  /* background-image: url('/assets/img/Zikola/light/blur-bottom.png'); */
}

.bottom-content .cta-button:hover {
  color: var(--contrast-color);
}

.bottom-content .cta-button::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background-image: url('{{ asset("assets/img/Zikola/light/blur-bottom.png") }}');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/*--------------------------
###   Hero-AboutUs section 
--------------------------*/
.hero-aboutUs {
  text-align: center;
  position: relative;
  background-image: url('/assets/img/Zikola/back/background-about.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px 20px;
}

.hero-aboutUs h1 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

.hero-aboutUs p {
  font-size: 16px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .hero-aboutUs h1 {
    font-size: 20px;
    line-height: 1.5;
  }

  .hero-aboutUs p {
    font-size: 14px;
  }
}

/* Start Our Vision section */
.our-vision {
  padding: 20px;
}

.our-vision .content-vision {
  display: flex;
  flex-direction: column;
  background-color: var(--vision-color);
  background-image: url('/assets/img/Zikola/back/background-visieon-cord.png');
  background-size: cover;
  background-repeat: no-repeat;
  padding: 40px;
  border-radius: 8px;
  height: 380px;
}

.our-vision .content-vision h1 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 20px;
}

.our-vision .content-vision p {
  font-size: 16px;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.our-vision .content-vision .buttons {
  justify-content: right;
  padding-top: 20px;
}

.our-vision .content-vision .buttons span {
  font-size: 15px;
}

@media (max-width: 768px) {
  .our-vision .content-vision {
    padding: 30px;
    max-width: 100%;
  }

  .our-vision .content-vision h1 {
    font-size: 2.5em;
  }

  .our-vision .content-vision p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .our-vision .content-vision {
    padding: 20px;
  }

  .our-vision .content-vision h1 {
    font-size: 2em;
  }

  .our-vision .content-vision p {
    font-size: 0.9em;
  }
}

.content-massage {
  padding: 20px;
  color: #333333;
  background-color: #C6C6C6;
  padding: 40px;
  border-radius: 8px;
  height: 380px;
}

.content-massage h1 {
  font-size: 42px;
}

.content-massage p {
  font-size: 18px;
}

.content-massage .buttons {
  justify-content: right;
  padding-top: 20px;
}

.content-massage .buttons .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

.content-massage .buttons .btn::before {
  color: var(--contrast-color);
}

.content-massage .buttons .btn::before {
  background-color: var(--contrast-color);
}

.content-massage .buttons span {
  font-size: 15px;
  color: var(--contrast-color);
}

.content-massage .buttons i {
  font-size: 15px;
  color: var(--accent-color);
}

.content-start {
  padding: 20px;
  color: #333333;
  background-color: #C6C6C6;
  padding: 40px;
  border-radius: 8px;
  height: 250px;
}

.content-team {
  padding: 40px;
  color: var(--contrast-color);
  background-color: #0D0D0D;
  background-image: url('/assets/img/Zikola/back/Rectangle01.png');
  background-size: 220px auto;
  background-repeat: no-repeat;
  background-position: 20% bottom;
  border-radius: 8px;
  height: 250px;
}

.content-team h1 {
  margin-bottom: 15px;
}

.content-team p {
  font-size: 16px;
}

.content-speak {
  padding: 40px;
  color: var(--contrast-color);
  background-color: #0D0D0D;
  background-image: url('/assets/img/Zikola/back/background-visieon-cord02.png');
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 8px;
  height: 250px;
}

.content-data {
  height: 250px;
  padding: 40px;
  color: var(--contrast-color);
  background-color: #0D0D0D;
  position: relative;
}

.content-data h1 {
  position: relative;
  z-index: 1;
}

.content-data h1::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--accent-color);
  width: 80%;
  height: 100%;
  z-index: -1;
}

@media (max-width:400px) {
  .our-vision h1 {
    font-size: 24px;
  }

  .our-vision p {
    font-size: 14px;
  }

  .our-vision .btn .text {
    font-size: 12px;
  }

  .content-data h1::after {
    width: 90%;
  }
}

/*--------------------------
###   Intro section 
--------------------------*/
.intro {
  position: relative;
  background-image: url('/assets/img/Zikola/back/02.png');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--contrast-color);
  display: flex;
  align-items: center;
}

.intro::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.394);
  z-index: -1;
}

.section-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--contrast-color);
}

.section-title {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.section-subtitle {
  font-size: 1rem;
  margin-bottom: 3rem;
}

.buttons-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.service-button {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
  color: var(--contrast-color);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-button .icon {
  width: 26px;
  height: 26px;
}

@media (max-width: 768px) {
  .service-button {
    width: 11;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
  }
}

@media (max-width:520px) {
  .service-button {
    width: 100%;
  }
}

@media (max-width:337px) {
  .service-button {
    font-size: 10px;
  }
}

/*--------------------------
###   Intro section 
--------------------------*/

.hero-blog {
  position: relative;
  background-image: url('/assets/img/Zikola/back/background-blog.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  text-align: center;
  height: 100vh;
}

.hero-blog .pra-hero {
  font-size: 14px;
  color: #EBEDF0;
  padding: 0 20px;
}

@media (min-width: 772px) and (max-width: 7780px) {
  .hero-blog .pra-hero {
    padding: 0 70px;
  }
}

.hero-blog .buttons {
  margin-top: 50px;
}

.hero-blog .buttons .btn {
  background-color: var(--contrast-color);
}

/* Start Blog Details */
.blog-details {
  position: relative;
}

.blog-details .blog-box {
  padding: 40px;
  color: var(--contrast-color);
  background-color: #EBEDF012;
  background-image: url('/assets/img/Zikola/back/background-blog01.png');
  background-size: 330px auto;
  background-repeat: no-repeat;
  background-position: right bottom;
  border-radius: 8px;
  height: 350px;
}

.blog-details h4 {
  font-size: 20px;
  padding-top: 20px;
  padding-bottom: 15px;
}

.blog-details p {
  font-size: 16px;
  color: #999999;
}

@media (min-width:1200px) {
  .hero-blog .pra-hero {
    padding: 0 70px;
  }
}

@media (max-width:400px) {
  .hero-blog {
    background-size: 100% 80%;
    background-position: left top;
  }

  .hero-blog .header-hero {
    font-size: 24px;
  }

  .hero-blog .pra-hero {
    font-size: 14px;
    color: #EBEDF0;
    padding-bottom: 24px;
  }
}

.blog-details .blog-create {
  padding: 40px;
  color: var(--contrast-color);
  background-color: #EBEDF012;
  background-image: url('/assets/img/Zikola/back/background-blog02.png');
  background-size: 350px auto;
  background-repeat: no-repeat;
  background-position: left bottom;
  border-radius: 8px;
  height: 350px;
}

.blog-details .blog-plan {
  padding: 40px;
  color: var(--contrast-color);
  background-color: #EBEDF012;
  background-image: url('/assets/img/Zikola/back/background-blog03.png');
  background-size: 285px auto;
  background-repeat: no-repeat;
  background-position: right bottom;
  border-radius: 8px;
  height: 530px;
}

@media (min-width: 450px) and (max-width: 915px) {
  .blog-details .blog-plan {
    background-size: 400px auto;
  }
}

.blog-details .blog-logo {
  background-color: #EBEDF012;
  background-image: url('/assets/img/Zikola/back/background-blog04.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right bottom;
  height: 150px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-details .blog-logo img {
  width: 73px;
  height: auto;
}

.blog-details .blog-content {
  padding: 30px;
  color: var(--contrast-color);
  background-color: #EBEDF012;
  background-image: url('/assets/img/Zikola/back/background-blog05.png');
  background-size: 300px auto;
  background-repeat: no-repeat;
  background-position: bottom;
  border-radius: 8px;
  text-align: center;
  height: 365px;
}

@media (min-width: 450px) {
  .blog-details .blog-content {
    background-size: 520px auto;
  }
}

@media (max-width: 915px) {
  .blog-details .blog-content {
    background-size: 700px auto;
  }
}

.blog-details .blog-content p {
  font-size: 14px;
}

.blog-details .blog-improve {
  padding: 40px;
  color: var(--contrast-color);
  background-color: #EBEDF012;
  background-image: url('/assets/img/Zikola/back/background-blog06.png');
  background-size: 270px auto;
  background-repeat: no-repeat;
  background-position: right bottom;
  border-radius: 8px;
  height: 530px;
}

@media (min-width: 450px) and (max-width: 915px) {
  .blog-details .blog-improve {
    background-size: 400px auto;
  }
}

.blog-details .blog-app {
  padding: 25px;
  color: var(--contrast-color);
  background-color: #EBEDF012;
  border-radius: 8px;
  height: 215px;
}

.blog-details .blog-app h4 {
  font-size: 16px;
  line-height: 1.5;
}

.blog-details .blog-app p {
  font-size: 14px;
  line-height: 1.5;
}

/*---------------------------------------
  Question Section               
-----------------------------------------*/

.question .header-question {
  color: var(--contrast-color);
  font-size: 24px;
}

.question .pra-question {
  color: #999999;
  font-size: 16px;
  padding-bottom: 10px;
  line-height: 2;
}

.question .cta-button {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-radius: 50px;
  font-size: 14px;
}