/**
* Template Name: Moderna
* Template URL: https://bootstrapmade.com/free-bootstrap-template-corporate-moderna/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  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: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #555555; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1e4356; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #68a4c4; /* 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. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #68a4c4; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #555555; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #68a4c4; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f4f8fb;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1e4356;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #284e62;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #1e4356;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 992px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 991.98px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  background-color: transparent;
}
/* Forzar que la imagen de fondo se muestre mÃ¡s arriba en pantallas grandes */
@media (min-width: 1281px) {
  .hero::after {
    /* 20% desde arriba (0% = top, 50% = center, etc.) */
    background-position: center 100% !important;
    /* mantener cover para que siga escalando bien */
    background-size: cover !important;
  }
}
.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 130%;
  height: 95%;
 background: linear-gradient(to right, color-mix(in srgb, var(--background-color), transparent 90%), var(--background-color)), url("../img/hero-bg.webp") center center / cover no-repeat; background-size: cover;
  
 z-index: 0;
  border-radius: 0 0 50% 50%;
  transform: translateX(-50%) rotate(0deg);
}

.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 130%;
  height: 96%;
  background: var(--background-color);
  opacity: 0.3;
  z-index: 0;
  border-radius: 0 0 50% 50%;
  transform: translateX(-50%) translateY(18px) rotate(2deg);
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 3;
}

.hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
  display: block;
}

.hero p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  animation: fadeInDown 1s both 0.2s;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: var(--default-color);
  animation: fadeInUp 1s both 0.4s;
  border: 2px solid var(--accent-color);
}

.hero .btn-get-started:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
}

.hero .carousel-indicators {
  bottom: -60px;
}

.hero .carousel-indicators li {
  cursor: pointer;
  background: var(--default-color);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.3;
  transition: 0.3s;
}

.hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--accent-color);
}

@media (min-width: 1024px) {
  .hero p {
    width: 60%;
  }

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px),
(max-height: 700px) {
  .hero h2 {
    font-size: 28px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
  --cyan-color: #0dcaf0;
  --orange-color: #fd7e14;
  --teal-color: #20c997;
  --red-color: #df1529;
}

.featured-services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 40px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
  border: 1px solid transparent;
}

.featured-services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.featured-services .service-item .icon i {
  font-size: 28px;
  transition: 0.5s;
  position: relative;
}

.featured-services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.featured-services .service-item:hover {
  box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
}

.featured-services .service-item.item-cyan .icon {
  background-color: color-mix(in srgb, var(--cyan-color) 10%, white 95%);
}

.featured-services .service-item.item-cyan .icon i {
  color: var(--cyan-color);
}

.featured-services .service-item.item-cyan:hover {
  border-color: var(--cyan-color);
}

.featured-services .service-item.item-cyan:hover .icon {
  background-color: var(--cyan-color);
}

.featured-services .service-item.item-cyan:hover .icon i {
  color: var(--contrast-color);
}

.featured-services .service-item.item-orange .icon {
  background-color: color-mix(in srgb, var(--orange-color) 10%, white 95%);
}

.featured-services .service-item.item-orange .icon i {
  color: var(--orange-color);
}

.featured-services .service-item.item-orange:hover {
  border-color: var(--orange-color);
}

.featured-services .service-item.item-orange:hover .icon {
  background-color: var(--orange-color);
}

.featured-services .service-item.item-orange:hover .icon i {
  color: var(--contrast-color);
}

.featured-services .service-item.item-teal .icon {
  background-color: color-mix(in srgb, var(--teal-color) 10%, white 95%);
}

.featured-services .service-item.item-teal .icon i {
  color: var(--teal-color);
}

.featured-services .service-item.item-teal:hover {
  border-color: var(--teal-color);
}

.featured-services .service-item.item-teal:hover .icon {
  background-color: var(--teal-color);
}

.featured-services .service-item.item-teal:hover .icon i {
  color: var(--contrast-color);
}

.featured-services .service-item.item-red .icon {
  background-color: color-mix(in srgb, var(--red-color) 10%, white 95%);
}

.featured-services .service-item.item-red .icon i {
  color: var(--red-color);
}

.featured-services .service-item.item-red:hover {
  border-color: var(--red-color);
}

.featured-services .service-item.item-red:hover .icon {
  background-color: var(--red-color);
}

.featured-services .service-item.item-red:hover .icon i {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

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

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

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

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .features-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--accent-color);
  font-weight: 700;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .img {
  border-radius: 8px;
  overflow: hidden;
}

.services .img img {
  transition: 0.6s;
}

.services .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 30px;
  transition: all ease-in-out 0.3s;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.services .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover .details h3 {
  color: var(--accent-color);
}

.services .service-item:hover .img img {
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background-color: var(--background-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
}

.pricing .featured .pricing-item {
  background: var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured .pricing-item {
    transform: scale(1.02, 1.1);
  }
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
  color: var(--contrast-color);
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.pricing .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--background-color), transparent 92%);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .member-img {
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .team .member .member-img {
    margin: 0 60px;
  }
}

.team .member .member-img img {
  position: relative;
  z-index: 1;
}

.team .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.team .member .member-img .social a {
  transition: 0.3s;
  color: var(--contrast-color);
  font-size: 20px;
  margin: 0 8px;
}

.team .member .member-img .social a:hover {
  color: var(--accent-color);
}

.team .member .member-info {
  margin-top: 30px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
}

.team .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.team .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.team .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.blog-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px 30px 0 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.blog-author-widget img {
  max-width: 160px;
}

.blog-author-widget h4 {
  font-weight: 600;
  font-size: 24px;
  margin: 15px 0 0 0;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author-widget .social-links {
  margin: 5px 0;
}

.blog-author-widget .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin: 0 3px;
  font-size: 18px;
}

.blog-author-widget .social-links a:hover {
  color: var(--accent-color);
}

.blog-author-widget p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 10px 0 0 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 / *   = =   V O L Q U I   C U S T O M   S T Y L E S   E X T R A C T E D   F R O M   I N D E X . H T M L   = =   * / 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 . m e t r i c - h i g h l i g h t - c a r d   { 
     b a c k g r o u n d :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 1 ) ; 
     b o r d e r - r a d i u s :   1 0 p x ; 
     p a d d i n g :   2 5 p x   2 0 p x ; 
     t e x t - a l i g n :   c e n t e r ; 
     b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 2 ) ; 
     t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e ; 
     h e i g h t :   1 0 0 % ; 
 } 
 
 . m e t r i c - h i g h l i g h t - c a r d : h o v e r   { 
     t r a n s f o r m :   t r a n s l a t e Y ( - 5 p x ) ; 
     b a c k g r o u n d :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 1 5 ) ; 
 } 
 
 . m e t r i c - h i g h l i g h t - v a l u e   { 
     f o n t - s i z e :   2 . 5 r e m ; 
     f o n t - w e i g h t :   7 0 0 ; 
     m a r g i n - b o t t o m :   1 0 p x ; 
     c o l o r :   w h i t e ; 
 } 
 
 . m e t r i c - h i g h l i g h t - l a b e l   { 
     f o n t - s i z e :   1 r e m ; 
     c o l o r :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 8 ) ; 
 } 
 
 . m e t r i c - h i g h l i g h t - i c o n   { 
     f o n t - s i z e :   2 r e m ; 
     m a r g i n - b o t t o m :   1 5 p x ; 
     c o l o r :   # 6 8 a 4 c 4 ; 
 } 
 
 . f e a t u r e s   . r o w   { 
     d i s p l a y :   f l e x ; 
     f l e x - w r a p :   w r a p ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
 } 
 
 . f e a t u r e - i t e m   { 
     d i s p l a y :   f l e x ; 
     f l e x - d i r e c t i o n :   c o l u m n ; 
     h e i g h t :   1 0 0 % ; 
     p a d d i n g :   2 5 p x   2 0 p x ; 
     t e x t - a l i g n :   c e n t e r ; 
     b o r d e r - r a d i u s :   1 0 p x ; 
     b o x - s h a d o w :   0   5 p x   1 5 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 8 ) ; 
     t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
     b a c k g r o u n d :   # f f f ; 
     m a r g i n - b o t t o m :   2 0 p x ; 
 } 
 
 . f e a t u r e - i t e m : h o v e r   { 
     t r a n s f o r m :   t r a n s l a t e Y ( - 5 p x ) ; 
     b o x - s h a d o w :   0   1 0 p x   2 5 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 2 ) ; 
 } 
 
 . f e a t u r e - i t e m   i   { 
     f o n t - s i z e :   3 6 p x ; 
     m a r g i n - b o t t o m :   1 5 p x ; 
 } 
 
 . f e a t u r e - i t e m   h 3   { 
     f o n t - s i z e :   1 8 p x ; 
     f o n t - w e i g h t :   6 0 0 ; 
     m a r g i n - b o t t o m :   1 0 p x ; 
     c o l o r :   # 3 3 3 ; 
 } 
 
 . f e a t u r e - i t e m   p   { 
     f o n t - s i z e :   1 4 p x ; 
     c o l o r :   # 6 6 6 ; 
     l i n e - h e i g h t :   1 . 5 ; 
 } 
 
 . i n t e g r a t i o n s   . r o w   { 
     d i s p l a y :   f l e x ; 
     f l e x - w r a p :   w r a p ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
 } 
 
 . i n t e g r a t i o n - b a d g e   { 
     d i s p l a y :   i n l i n e - f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     p a d d i n g :   1 0 p x   1 8 p x ; 
     b a c k g r o u n d - c o l o r :   # f 8 f 9 f a ; 
     b o r d e r - r a d i u s :   5 0 p x ; 
     f o n t - s i z e :   1 4 p x ; 
     f o n t - w e i g h t :   5 0 0 ; 
     c o l o r :   # 3 3 3 ; 
     b o r d e r :   1 p x   s o l i d   # e 9 e c e f ; 
     t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . i n t e g r a t i o n - b a d g e : h o v e r   { 
     b a c k g r o u n d - c o l o r :   # e 9 e c e f ; 
     t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
     b o x - s h a d o w :   0   4 p x   8 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ; 
 } 
 
 . i n t e g r a t i o n - b a d g e   i   { 
     m a r g i n - r i g h t :   8 p x ; 
     f o n t - s i z e :   1 6 p x ; 
 } 
 
 . m e t r i c s   . r o w . m b - 5   { 
     d i s p l a y :   f l e x ; 
     f l e x - w r a p :   w r a p ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
 } 
 
 . m e t r i c s - c a r o u s e l   { 
     m a r g i n - t o p :   4 0 p x ; 
     p o s i t i o n :   r e l a t i v e ; 
 } 
 
 . m e t r i c - t i t l e   { 
     t e x t - a l i g n :   c e n t e r ; 
     f o n t - s i z e :   2 4 p x ; 
     f o n t - w e i g h t :   6 0 0 ; 
     m a r g i n - b o t t o m :   1 0 p x ; 
     c o l o r :   # 3 3 3 ; 
 } 
 
 . m e t r i c - d e s c r i p t i o n   { 
     t e x t - a l i g n :   c e n t e r ; 
     c o l o r :   # 6 6 6 ; 
     m a r g i n - b o t t o m :   3 0 p x ; 
     f o n t - s i z e :   1 6 p x ; 
 } 
 
 . m e t r i c - c h a r t - c o n t a i n e r   { 
     h e i g h t :   4 0 0 p x ; 
     p o s i t i o n :   r e l a t i v e ; 
     b a c k g r o u n d :   # f f f ; 
     b o r d e r - r a d i u s :   1 2 p x ; 
     p a d d i n g :   2 0 p x ; 
     b o x - s h a d o w :   0   5 p x   1 5 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 8 ) ; 
 } 
 
 . c a r o u s e l - i n d i c a t o r s - m e t r i c s   { 
     p o s i t i o n :   a b s o l u t e ; 
     b o t t o m :   - 5 0 p x ; 
     l e f t :   0 ; 
     r i g h t :   0 ; 
     z - i n d e x :   1 5 ; 
     d i s p l a y :   f l e x ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     p a d d i n g :   0 ; 
     m a r g i n :   0 ; 
     l i s t - s t y l e :   n o n e ; 
 } 
 
 . c a r o u s e l - i n d i c a t o r s - m e t r i c s   b u t t o n   { 
     b o x - s i z i n g :   c o n t e n t - b o x ; 
     f l e x :   0   1   a u t o ; 
     w i d t h :   1 2 p x ; 
     h e i g h t :   1 2 p x ; 
     m a r g i n :   0   5 p x ; 
     t e x t - i n d e n t :   - 9 9 9 p x ; 
     c u r s o r :   p o i n t e r ; 
     b a c k g r o u n d - c o l o r :   # d d d ; 
     b a c k g r o u n d - c l i p :   p a d d i n g - b o x ; 
     b o r d e r :   0 ; 
     b o r d e r - r a d i u s :   5 0 % ; 
     o p a c i t y :   0 . 5 ; 
     t r a n s i t i o n :   o p a c i t y   0 . 6 s   e a s e ; 
 } 
 
 . c a r o u s e l - i n d i c a t o r s - m e t r i c s   b u t t o n . a c t i v e   { 
     o p a c i t y :   1 ; 
     b a c k g r o u n d - c o l o r :   # 6 6 7 e e a ; 
 } 
 
 . m e t r i c s - c a r o u s e l   . c a r o u s e l - c o n t r o l - p r e v , 
 . m e t r i c s - c a r o u s e l   . c a r o u s e l - c o n t r o l - n e x t   { 
     p o s i t i o n :   a b s o l u t e ; 
     t o p :   5 0 % ; 
     w i d t h :   5 0 p x ; 
     h e i g h t :   5 0 p x ; 
     b a c k g r o u n d - c o l o r :   r g b a ( 1 0 2 ,   1 2 6 ,   2 3 4 ,   0 . 8 ) ; 
     b o r d e r - r a d i u s :   5 0 % ; 
     t r a n s f o r m :   t r a n s l a t e Y ( - 5 0 % ) ; 
     o p a c i t y :   0 . 7 ; 
     t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
     z - i n d e x :   1 0 ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
 } 
 
 . m e t r i c s - c a r o u s e l   . c a r o u s e l - c o n t r o l - p r e v   { 
     l e f t :   - 2 5 p x ; 
 } 
 
 . m e t r i c s - c a r o u s e l   . c a r o u s e l - c o n t r o l - n e x t   { 
     r i g h t :   - 2 5 p x ; 
 } 
 
 . m e t r i c s - c a r o u s e l   . c a r o u s e l - c o n t r o l - p r e v : h o v e r , 
 . m e t r i c s - c a r o u s e l   . c a r o u s e l - c o n t r o l - n e x t : h o v e r   { 
     o p a c i t y :   1 ; 
     b a c k g r o u n d - c o l o r :   r g b a ( 1 0 2 ,   1 2 6 ,   2 3 4 ,   1 ) ; 
 } 
 
 . m e t r i c s - c a r o u s e l   . c a r o u s e l - c o n t r o l - p r e v - i c o n , 
 . m e t r i c s - c a r o u s e l   . c a r o u s e l - c o n t r o l - n e x t - i c o n   { 
     w i d t h :   2 0 p x ; 
     h e i g h t :   2 0 p x ; 
     b a c k g r o u n d - s i z e :   2 0 p x   2 0 p x ; 
     b a c k g r o u n d - c o l o r :   t r a n s p a r e n t ; 
 } 
 
 . m e t r i c s - c a r o u s e l   . c a r o u s e l - c o n t r o l - p r e v - i c o n   { 
     b a c k g r o u n d - i m a g e :   u r l ( \  
 d a t a : i m a g e / s v g + x m l  
 % 3 c s v g  
 x m l n s = h t t p : / / w w w . w 3 . o r g / 2 0 0 0 / s v g  
 v i e w B o x = 0   0   1 6   1 6  
 f i l l = % 2 3 f f f % 3 e % 3 c p a t h  
 d = M 1 1 . 3 5 4   1 . 6 4 6 a . 5 . 5   0   0   1   0   . 7 0 8 L 5 . 7 0 7   8 l 5 . 6 4 7   5 . 6 4 6 a . 5 . 5   0   0   1 - . 7 0 8 . 7 0 8 l - 6 - 6 a . 5 . 5   0   0   1   0 - . 7 0 8 l 6 - 6 a . 5 . 5   0   0   1   . 7 0 8   0 z / % 3 e % 3 c / s v g % 3 e \ ) ; 
 } 
 
 . m e t r i c s - c a r o u s e l   . c a r o u s e l - c o n t r o l - n e x t - i c o n   { 
     b a c k g r o u n d - i m a g e :   u r l ( \ d a t a : i m a g e / s v g + x m l  
 % 3 c s v g  
 x m l n s = h t t p : / / w w w . w 3 . o r g / 2 0 0 0 / s v g  
 v i e w B o x = 0   0   1 6   1 6  
 f i l l = % 2 3 f f f % 3 e % 3 c p a t h  
 d = M 4 . 6 4 6   1 . 6 4 6 a . 5 . 5   0   0   1   . 7 0 8   0 l 6   6 a . 5 . 5   0   0   1   0   . 7 0 8 l - 6   6 a . 5 . 5   0   0   1 - . 7 0 8 - . 7 0 8 L 1 0 . 2 9 3   8   4 . 6 4 6   2 . 3 5 4 a . 5 . 5   0   0   1   0 - . 7 0 8 z / % 3 e % 3 c / s v g % 3 e \ ) ; 
 } 
 
 . c t a   . c t a - b t n   { 
     d i s p l a y :   i n l i n e - b l o c k ; 
     p a d d i n g :   1 4 p x   3 5 p x ; 
     b o r d e r - r a d i u s :   5 0 p x ; 
     b a c k g r o u n d :   # 6 8 A 4 C 4 ; 
     c o l o r :   w h i t e ; 
     f o n t - w e i g h t :   6 0 0 ; 
     f o n t - s i z e :   1 6 p x ; 
     t e x t - d e c o r a t i o n :   n o n e ; 
     t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
     b o r d e r :   2 p x   s o l i d   # 6 8 A 4 C 4 ; 
     t e x t - a l i g n :   c e n t e r ; 
     m a r g i n :   5 p x   1 0 p x ; 
     b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 1 0 4 ,   1 6 4 ,   1 9 6 ,   0 . 3 ) ; 
 } 
 
 . c t a   . c t a - b t n : h o v e r   { 
     b a c k g r o u n d :   t r a n s p a r e n t ; 
     c o l o r :   # 6 8 A 4 C 4 ; 
     t r a n s f o r m :   t r a n s l a t e Y ( - 3 p x ) ; 
     b o x - s h a d o w :   0   6 p x   2 0 p x   r g b a ( 1 0 4 ,   1 6 4 ,   1 9 6 ,   0 . 4 ) ; 
     t e x t - d e c o r a t i o n :   n o n e ; 
 } 
 
 . c t a   . c t a - b t n : f i r s t - c h i l d   { 
     b a c k g r o u n d :   # 6 8 A 4 C 4 ; 
     b o r d e r - c o l o r :   # 6 8 A 4 C 4 ; 
     c o l o r :   w h i t e ; 
 } 
 
 . c t a   . c t a - b t n : f i r s t - c h i l d : h o v e r   { 
     b a c k g r o u n d :   t r a n s p a r e n t ; 
     c o l o r :   # 6 8 A 4 C 4 ; 
 } 
 
 . c t a   . c t a - b t n : l a s t - c h i l d   { 
     b a c k g r o u n d :   # 1 e 4 3 5 6 ; 
     b o r d e r - c o l o r :   # 1 e 4 3 5 6 ; 
     c o l o r :   w h i t e ; 
 } 
 
 . c t a   . c t a - b t n : l a s t - c h i l d : h o v e r   { 
     b a c k g r o u n d :   t r a n s p a r e n t ; 
     c o l o r :   # 2 0 b 0 f 8 ; 
     b o r d e r - c o l o r :   # 1 e 4 3 5 6 ; 
 } 
 
 . b u y - b t n : h o v e r   { 
     b a c k g r o u n d - c o l o r :   # 1 e 4 3 5 6   ! i m p o r t a n t ; 
     c o l o r :   # f f f f f f   ! i m p o r t a n t ; 
     b o r d e r - c o l o r :   # 1 e 4 3 5 6   ! i m p o r t a n t ; 
     t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ; 
 } 
 
 . p r i c i n g - i t e m . f e a t u r e d   u l   { 
     p a d d i n g :   0 ; 
     m a r g i n :   2 0 p x   0 ; 
     l i s t - s t y l e :   n o n e ; 
 } 
 
 . p r i c i n g - i t e m . f e a t u r e d   u l   l i   { 
     d i s p l a y :   b l o c k   ! i m p o r t a n t ; 
     p o s i t i o n :   r e l a t i v e   ! i m p o r t a n t ; 
     p a d d i n g - l e f t :   4 0 p x   ! i m p o r t a n t ; 
     m a r g i n - b o t t o m :   2 0 p x   ! i m p o r t a n t ; 
     p a d d i n g - b o t t o m :   1 5 p x   ! i m p o r t a n t ; 
     b o r d e r - b o t t o m :   1 p x   s o l i d   # f 0 f 0 f 0 ; 
     t e x t - a l i g n :   l e f t   ! i m p o r t a n t ; 
 } 
 
 . p r i c i n g - i t e m . f e a t u r e d   u l   l i : l a s t - c h i l d   { 
     b o r d e r - b o t t o m :   n o n e   ! i m p o r t a n t ; 
     m a r g i n - b o t t o m :   0   ! i m p o r t a n t ; 
 } 
 
 . p r i c i n g - i t e m . f e a t u r e d   u l   l i   i   { 
     p o s i t i o n :   a b s o l u t e   ! i m p o r t a n t ; 
     l e f t :   0   ! i m p o r t a n t ; 
     t o p :   2 p x   ! i m p o r t a n t ; 
     f o n t - s i z e :   2 4 p x   ! i m p o r t a n t ; 
     c o l o r :   # 2 8 a 7 4 5   ! i m p o r t a n t ; 
     w i d t h :   a u t o   ! i m p o r t a n t ; 
     h e i g h t :   a u t o   ! i m p o r t a n t ; 
     l i n e - h e i g h t :   1   ! i m p o r t a n t ; 
 } 
 
 . p r i c i n g - i t e m . f e a t u r e d   u l   l i   s t r o n g   { 
     d i s p l a y :   b l o c k   ! i m p o r t a n t ; 
     f o n t - s i z e :   1 . 1 5 r e m   ! i m p o r t a n t ; 
     f o n t - w e i g h t :   7 0 0   ! i m p o r t a n t ; 
     c o l o r :   # 1 e 4 3 5 6   ! i m p o r t a n t ; 
     m a r g i n - b o t t o m :   5 p x   ! i m p o r t a n t ; 
 } 
 
 . p r i c i n g - i t e m . f e a t u r e d   u l   l i   { 
     f o n t - s i z e :   1 r e m   ! i m p o r t a n t ; 
     c o l o r :   # 5 5 5   ! i m p o r t a n t ; 
     l i n e - h e i g h t :   1 . 5   ! i m p o r t a n t ; 
 } 
 
 . p r i c i n g - i t e m . f e a t u r e d   h 4   { 
     p o s i t i o n :   r e l a t i v e ; 
     d i s p l a y :   i n l i n e - b l o c k ; 
 } 
 
 . p r i c i n g - i t e m . f e a t u r e d   h 4   s u p   { 
     t o p :   - 1 5 p x ; 
     f o n t - s i z e :   2 4 p x ; 
     m a r g i n - r i g h t :   2 p x ; 
     v e r t i c a l - a l i g n :   b a s e l i n e ; 
 } 
 
 . p r i c i n g - i t e m . f e a t u r e d   {   c o l o r :   # 4 4 4 ;   } 
 . p r i c i n g - i t e m . f e a t u r e d   h 3 , 
 . p r i c i n g - i t e m . f e a t u r e d   h 4 ,   
 . p r i c i n g - i t e m . f e a t u r e d   h 4   s p a n   {   c o l o r :   # 3 3 3 ;   } 
 . p r i c i n g - i t e m . f e a t u r e d   u l   l i   {   c o l o r :   # 4 4 4 ;   } 
 
 . m e t r i c s   . c t a - b t n   { 
     d i s p l a y :   i n l i n e - b l o c k ; 
     p a d d i n g :   1 4 p x   3 5 p x ; 
     b o r d e r - r a d i u s :   5 0 p x ; 
     b a c k g r o u n d :   # 1 e 4 3 5 6 ; 
     c o l o r :   w h i t e ; 
     f o n t - w e i g h t :   6 0 0 ; 
     f o n t - s i z e :   1 6 p x ; 
     t e x t - d e c o r a t i o n :   n o n e ; 
     t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
     b o r d e r :   2 p x   s o l i d   # 1 e 4 3 5 6 ; 
     t e x t - a l i g n :   c e n t e r ; 
     b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 3 0 ,   6 7 ,   8 6 ,   0 . 3 ) ; 
     m a r g i n - t o p :   1 5 p x ; 
 } 
 
 . m e t r i c s   . c t a - b t n : h o v e r   { 
     b a c k g r o u n d :   t r a n s p a r e n t ; 
     c o l o r :   # 3 a b 0 e b ; 
     t r a n s f o r m :   t r a n s l a t e Y ( - 3 p x ) ; 
     b o x - s h a d o w :   0   6 p x   2 0 p x   r g b a ( 3 0 ,   6 7 ,   8 6 ,   0 . 4 ) ; 
     t e x t - d e c o r a t i o n :   n o n e ; 
 } 
 
 . c o n t a c t   . i n f o - i t e m   { 
     w i d t h :   1 0 0 % ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     m a r g i n - b o t t o m :   2 5 p x ; 
 } 
 
 . c o n t a c t   . i n f o - i t e m   i   { 
     f o n t - s i z e :   2 0 p x ; 
     c o l o r :   v a r ( - - a c c e n t - c o l o r ) ; 
     b a c k g r o u n d :   c o l o r - m i x ( i n   s r g b ,   v a r ( - - a c c e n t - c o l o r ) ,   t r a n s p a r e n t   9 0 % ) ; 
     w i d t h :   4 4 p x ; 
     h e i g h t :   4 4 p x ; 
     m i n - w i d t h :   4 4 p x ; 
     d i s p l a y :   f l e x ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     a l i g n - i t e m s :   c e n t e r ; 
     b o r d e r - r a d i u s :   5 0 p x ; 
     t r a n s i t i o n :   a l l   0 . 3 s   e a s e - i n - o u t ; 
     m a r g i n - r i g h t :   1 5 p x ; 
 } 
 
 . c o n t a c t   . i n f o - i t e m > d i v   { 
     t e x t - a l i g n :   l e f t ; 
 } 
 
 . c o n t a c t   . i n f o - i t e m   h 3   { 
     f o n t - s i z e :   2 0 p x ; 
     p a d d i n g :   0 ; 
     f o n t - w e i g h t :   6 0 0 ; 
     m a r g i n - b o t t o m :   5 p x ; 
     c o l o r :   v a r ( - - h e a d i n g - c o l o r ) ; 
 } 
 
 . c o n t a c t   . i n f o - i t e m   p   { 
     p a d d i n g :   0 ; 
     m a r g i n - b o t t o m :   0 ; 
     f o n t - s i z e :   1 4 p x ; 
     c o l o r :   c o l o r - m i x ( i n   s r g b ,   v a r ( - - h e a d i n g - c o l o r ) ,   t r a n s p a r e n t   3 0 % ) ; 
 } 
 
 . c o n t a c t   . i n f o - i t e m : h o v e r   i   { 
     b a c k g r o u n d :   v a r ( - - a c c e n t - c o l o r ) ; 
     c o l o r :   v a r ( - - c o n t r a s t - c o l o r ) ; 
 } 
 
 / *   W h a t s A p p   F l o t a n t e   y   S c r o l l   T o p   * / 
 . s c r o l l - t o p   { 
     p o s i t i o n :   f i x e d ; 
     v i s i b i l i t y :   h i d d e n ; 
     o p a c i t y :   0 ; 
     r i g h t :   1 5 p x ; 
     b o t t o m :   1 5 p x ; 
     z - i n d e x :   9 9 9 9 9 ; 
     b a c k g r o u n d :   # 6 8 A 4 C 4 ; 
     w i d t h :   4 4 p x ; 
     h e i g h t :   4 4 p x ; 
     b o r d e r - r a d i u s :   5 0 p x ; 
     t r a n s i t i o n :   a l l   0 . 4 s ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     c o l o r :   # f f f ; 
 } 
 
 . s c r o l l - t o p . a c t i v e   { 
     v i s i b i l i t y :   v i s i b l e ; 
     o p a c i t y :   1 ; 
 } 
 
 . s c r o l l - t o p : h o v e r   { 
     b a c k g r o u n d :   # 5 a 9 3 b 0 ; 
     c o l o r :   # f f f ; 
 } 
 
 . s c r o l l - t o p   i   { 
     f o n t - s i z e :   2 4 p x ; 
     l i n e - h e i g h t :   0 ; 
 } 
 
 # s c r o l l - t o p   { 
     r i g h t :   a u t o ; 
     l e f t :   2 0 p x ; 
     b o t t o m :   2 0 p x ; 
 } 
 
 . w h a t s a p p - f l o a t   { 
     p o s i t i o n :   f i x e d ; 
     w i d t h :   6 0 p x ; 
     h e i g h t :   6 0 p x ; 
     b o t t o m :   2 5 p x ; 
     r i g h t :   2 5 p x ; 
     b a c k g r o u n d - c o l o r :   # 2 5 d 3 6 6 ; 
     c o l o r :   # F F F ; 
     b o r d e r - r a d i u s :   5 0 p x ; 
     t e x t - a l i g n :   c e n t e r ; 
     f o n t - s i z e :   3 0 p x ; 
     b o x - s h a d o w :   0   4 p x   2 0 p x   r g b a ( 3 7 ,   2 1 1 ,   1 0 2 ,   0 . 4 ) ; 
     z - i n d e x :   1 0 0 0 ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
     a n i m a t i o n :   p u l s e - w h a t s a p p   2 s   i n f i n i t e ; 
     t e x t - d e c o r a t i o n :   n o n e ; 
 } 
 
 . w h a t s a p p - f l o a t : h o v e r   { 
     b a c k g r o u n d - c o l o r :   # 1 2 8 C 7 E ; 
     t r a n s f o r m :   s c a l e ( 1 . 1 ) ; 
     b o x - s h a d o w :   0   6 p x   2 5 p x   r g b a ( 3 7 ,   2 1 1 ,   1 0 2 ,   0 . 6 ) ; 
     t e x t - d e c o r a t i o n :   n o n e ; 
     c o l o r :   # F F F ; 
 } 
 
 . w h a t s a p p - f l o a t   i   { 
     m a r g i n :   0 ; 
 } 
 
 @ k e y f r a m e s   p u l s e - w h a t s a p p   { 
     0 %   {   b o x - s h a d o w :   0   0   0   0   r g b a ( 3 7 ,   2 1 1 ,   1 0 2 ,   0 . 7 ) ;   } 
     7 0 %   {   b o x - s h a d o w :   0   0   0   1 5 p x   r g b a ( 3 7 ,   2 1 1 ,   1 0 2 ,   0 ) ;   } 
     1 0 0 %   {   b o x - s h a d o w :   0   0   0   0   r g b a ( 3 7 ,   2 1 1 ,   1 0 2 ,   0 ) ;   } 
 } 
 
 . w h a t s a p p - f l o a t : : a f t e r   { 
     c o n t e n t :   \ ¡ C h a t e á  
 c o n  
 n o s o t r o s ! \ ; 
     p o s i t i o n :   a b s o l u t e ; 
     r i g h t :   7 0 p x ; 
     t o p :   5 0 % ; 
     t r a n s f o r m :   t r a n s l a t e Y ( - 5 0 % ) ; 
     b a c k g r o u n d :   # 3 3 3 ; 
     c o l o r :   w h i t e ; 
     p a d d i n g :   8 p x   1 2 p x ; 
     b o r d e r - r a d i u s :   5 p x ; 
     f o n t - s i z e :   1 4 p x ; 
     w h i t e - s p a c e :   n o w r a p ; 
     o p a c i t y :   0 ; 
     t r a n s i t i o n :   o p a c i t y   0 . 3 s   e a s e ; 
     p o i n t e r - e v e n t s :   n o n e ; 
 } 
 
 . w h a t s a p p - f l o a t : h o v e r : : a f t e r   { 
     o p a c i t y :   1 ; 
 } 
 
 . i o s - p r o m p t   { 
     d i s p l a y :   n o n e ; 
     p o s i t i o n :   f i x e d ; 
     b o t t o m :   0 ; 
     l e f t :   0 ; 
     r i g h t :   0 ; 
     b a c k g r o u n d - c o l o r :   # f d f d f d ; 
     p a d d i n g :   2 0 p x ; 
     b o x - s h a d o w :   0   - 2 p x   1 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ; 
     z - i n d e x :   9 9 9 9 9 ; 
     b o r d e r - t o p :   1 p x   s o l i d   # e 0 e 0 e 0 ; 
     f o n t - f a m i l y :   - a p p l e - s y s t e m ,   s y s t e m - u i ,   B l i n k M a c S y s t e m F o n t ,   \ S e g o e  
 U I \ ,   R o b o t o ,   s a n s - s e r i f ; 
     a n i m a t i o n :   s l i d e U p   0 . 5 s   e a s e - o u t ; 
 } 
 
 . i o s - p r o m p t - c o n t a i n e r   { 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   f l e x - s t a r t ; 
     j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
     m a x - w i d t h :   6 0 0 p x ; 
     m a r g i n :   0   a u t o ; 
 } 
 
 . i o s - p r o m p t - t e x t   { 
     f o n t - s i z e :   1 4 p x ; 
     c o l o r :   # 3 3 3 ; 
     l i n e - h e i g h t :   1 . 4 ; 
     f l e x :   1 ; 
     m a r g i n - r i g h t :   1 5 p x ; 
 } 
 
 . i o s - p r o m p t - t e x t   s t r o n g   { 
     c o l o r :   # 1 e 4 3 5 6 ; 
     f o n t - w e i g h t :   6 0 0 ; 
 } 
 
 . i o s - i c o n - s h a r e   { 
     d i s p l a y :   i n l i n e - b l o c k ; 
     v e r t i c a l - a l i g n :   m i d d l e ; 
     m a r g i n :   0   3 p x ; 
     c o l o r :   # 0 0 7 a f f ; 
     f o n t - s i z e :   2 0 p x ; 
 } 
 
 . i o s - i c o n - a d d   { 
     d i s p l a y :   i n l i n e - b l o c k ; 
     v e r t i c a l - a l i g n :   m i d d l e ; 
     m a r g i n :   0   3 p x ; 
     f o n t - s i z e :   1 8 p x ; 
 } 
 
 . i o s - p r o m p t - c l o s e   { 
     b a c k g r o u n d :   n o n e ; 
     b o r d e r :   n o n e ; 
     f o n t - s i z e :   2 4 p x ; 
     c o l o r :   # 9 9 9 ; 
     c u r s o r :   p o i n t e r ; 
     p a d d i n g :   0 ; 
     l i n e - h e i g h t :   1 ; 
 } 
 
 @ k e y f r a m e s   s l i d e U p   { 
     f r o m   {   t r a n s f o r m :   t r a n s l a t e Y ( 1 0 0 % ) ;   } 
     t o   {   t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;   } 
 } 
 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 / *   = =   M E D I A   Q U E R I E S   E X T R A C T E D   F R O M   I N D E X . H T M L   = =   * / 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 7 . 9 8 p x )   { 
     . m e t r i c s   . r o w . m b - 5   { 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
         f l e x - w r a p :   n o w r a p   ! i m p o r t a n t ; 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n   ! i m p o r t a n t ; 
         p a d d i n g :   0   5 p x   ! i m p o r t a n t ; 
         g a p :   0   ! i m p o r t a n t ; 
         m a r g i n - b o t t o m :   2 0 p x   ! i m p o r t a n t ; 
     } 
 
     . m e t r i c s   . c o l - l g - 3   { 
         f l e x :   0   0   2 5 %   ! i m p o r t a n t ; 
         m a x - w i d t h :   2 5 %   ! i m p o r t a n t ; 
         p a d d i n g :   0   2 p x   ! i m p o r t a n t ; 
         m a r g i n :   0   ! i m p o r t a n t ; 
     } 
 
     . m e t r i c - h i g h l i g h t - c a r d   { 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
         f l e x - d i r e c t i o n :   c o l u m n   ! i m p o r t a n t ; 
         a l i g n - i t e m s :   c e n t e r   ! i m p o r t a n t ; 
         j u s t i f y - c o n t e n t :   c e n t e r   ! i m p o r t a n t ; 
         h e i g h t :   1 0 0 %   ! i m p o r t a n t ; 
         m i n - h e i g h t :   1 0 0 p x   ! i m p o r t a n t ; 
         p a d d i n g :   1 0 p x   2 p x   ! i m p o r t a n t ; 
         b o r d e r - r a d i u s :   8 p x   ! i m p o r t a n t ; 
     } 
     
     . m e t r i c - h i g h l i g h t - i c o n   { 
         f o n t - s i z e :   1 . 2 r e m   ! i m p o r t a n t ; 
         m a r g i n - b o t t o m :   4 p x   ! i m p o r t a n t ; 
         w i d t h :   1 0 0 % ; 
         t e x t - a l i g n :   c e n t e r ; 
     } 
 
     . m e t r i c - h i g h l i g h t - v a l u e   { 
         f o n t - s i z e :   0 . 9 r e m   ! i m p o r t a n t ; 
         m a r g i n - b o t t o m :   2 p x   ! i m p o r t a n t ; 
         w o r d - b r e a k :   b r e a k - a l l ; 
     } 
     
     . m e t r i c - h i g h l i g h t - l a b e l   { 
         f o n t - s i z e :   0 . 6 r e m   ! i m p o r t a n t ; 
         l i n e - h e i g h t :   1   ! i m p o r t a n t ; 
         w h i t e - s p a c e :   n o r m a l   ! i m p o r t a n t ; 
         w o r d - w r a p :   b r e a k - w o r d   ! i m p o r t a n t ; 
     } 
 
     . f e a t u r e s   . c o l - 1 2   { 
         f l e x :   0   0   5 0 % ; 
         m a x - w i d t h :   5 0 % ; 
     } 
 
     . i n t e g r a t i o n s   . c o l - l g - 3   { 
         f l e x :   0   0   5 0 % ; 
         m a x - w i d t h :   5 0 % ; 
         m a r g i n - b o t t o m :   1 0 p x ; 
     } 
 
     . m e t r i c - c h a r t - c o n t a i n e r   { 
         h e i g h t :   3 0 0 p x ; 
         p a d d i n g :   1 0 p x ; 
     } 
 
     . c a r o u s e l - i n d i c a t o r s - m e t r i c s   { 
         b o t t o m :   - 4 0 p x ; 
     } 
 
     . p r i c i n g - i t e m . f e a t u r e d   { 
         p a d d i n g :   3 0 p x   2 0 p x   ! i m p o r t a n t ; 
         m a r g i n :   0   0   3 0 p x   0   ! i m p o r t a n t ; 
     } 
 
     . p r i c i n g - i t e m . f e a t u r e d   u l   l i   { 
         d i s p l a y :   b l o c k   ! i m p o r t a n t ; 
         p o s i t i o n :   r e l a t i v e   ! i m p o r t a n t ; 
         p a d d i n g - l e f t :   3 5 p x   ! i m p o r t a n t ; 
         m a r g i n - b o t t o m :   2 0 p x   ! i m p o r t a n t ; 
         p a d d i n g - b o t t o m :   1 5 p x   ! i m p o r t a n t ; 
         b o r d e r - b o t t o m :   1 p x   s o l i d   # f 0 f 0 f 0 ; 
         t e x t - a l i g n :   l e f t   ! i m p o r t a n t ; 
     } 
 
     . p r i c i n g - i t e m . f e a t u r e d   u l   l i   i   { 
         p o s i t i o n :   a b s o l u t e   ! i m p o r t a n t ; 
         l e f t :   0   ! i m p o r t a n t ; 
         t o p :   2 p x   ! i m p o r t a n t ; 
         f o n t - s i z e :   2 2 p x   ! i m p o r t a n t ; 
         c o l o r :   # 2 8 a 7 4 5 ; 
         m a r g i n - r i g h t :   0   ! i m p o r t a n t ; 
     } 
 
     . p r i c i n g - i t e m . f e a t u r e d   u l   l i   s t r o n g   { 
         d i s p l a y :   b l o c k   ! i m p o r t a n t ; 
         w i d t h :   1 0 0 %   ! i m p o r t a n t ; 
         f o n t - s i z e :   1 . 1 r e m   ! i m p o r t a n t ; 
         c o l o r :   # 1 e 4 3 5 6 ; 
         m a r g i n - b o t t o m :   6 p x   ! i m p o r t a n t ; 
         l i n e - h e i g h t :   1 . 2   ! i m p o r t a n t ; 
     } 
 
     . p r i c i n g - i t e m . f e a t u r e d   u l   l i   { 
         f o n t - s i z e :   0 . 9 5 r e m   ! i m p o r t a n t ; 
         c o l o r :   # 6 6 6 ; 
         l i n e - h e i g h t :   1 . 5   ! i m p o r t a n t ; 
     } 
 
     . p r i c i n g - i t e m . f e a t u r e d   h 4   { 
         f o n t - s i z e :   2 . 5 r e m   ! i m p o r t a n t ; 
         m a r g i n - b o t t o m :   1 5 p x   ! i m p o r t a n t ; 
     } 
     
     . p r i c i n g - i t e m . f e a t u r e d   u l   l i : l a s t - c h i l d   { 
         b o r d e r - b o t t o m :   n o n e   ! i m p o r t a n t ; 
         m a r g i n - b o t t o m :   0   ! i m p o r t a n t ; 
     } 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
     . c t a   . c t a - b t n   { 
         d i s p l a y :   b l o c k ; 
         w i d t h :   1 0 0 % ; 
         m a x - w i d t h :   2 8 0 p x ; 
         m a r g i n :   1 0 p x   a u t o ; 
         p a d d i n g :   1 2 p x   2 5 p x ; 
         f o n t - s i z e :   1 5 p x ; 
     } 
     
     . c t a   . c t a - b t n . m s - 3   { 
         m a r g i n - l e f t :   a u t o   ! i m p o r t a n t ; 
     } 
 
     . m e t r i c s   . c t a - b t n   { 
         d i s p l a y :   b l o c k ; 
         w i d t h :   1 0 0 % ; 
         m a x - w i d t h :   2 8 0 p x ; 
         m a r g i n :   1 5 p x   a u t o   0   a u t o ; 
         p a d d i n g :   1 2 p x   2 5 p x ; 
         f o n t - s i z e :   1 5 p x ; 
     } 
     
     . m e t r i c s   . c t a - b t n . m s - 3   { 
         m a r g i n - l e f t :   a u t o   ! i m p o r t a n t ; 
     } 
 
     # s c r o l l - t o p   { 
         l e f t :   1 5 p x ; 
         b o t t o m :   8 0 p x ; 
     } 
 
     . w h a t s a p p - f l o a t   { 
         w i d t h :   5 0 p x ; 
         h e i g h t :   5 0 p x ; 
         b o t t o m :   2 0 p x ; 
         r i g h t :   2 0 p x ; 
         f o n t - s i z e :   2 5 p x ; 
     } 
     
     . w h a t s a p p - f l o a t : : a f t e r   { 
         f o n t - s i z e :   1 2 p x ; 
         p a d d i n g :   6 p x   1 0 p x ; 
         r i g h t :   6 0 p x ; 
     } 
 } 
 
 @ m e d i a   ( m i n - w i d t h :   7 6 8 p x )   a n d   ( m a x - w i d t h :   9 9 1 . 9 8 p x )   { 
     . f e a t u r e s   . c o l - m d - 6   { 
         f l e x :   0   0   5 0 % ; 
         m a x - w i d t h :   5 0 % ; 
     } 
     
     . i n t e g r a t i o n s   . c o l - l g - 3   { 
         f l e x :   0   0   5 0 % ; 
         m a x - w i d t h :   5 0 % ; 
     } 
     
     . m e t r i c s   . c o l - l g - 3   { 
         f l e x :   0   0   2 5 % ; 
         m a x - w i d t h :   2 5 % ; 
     } 
 } 
 
 @ m e d i a   ( m i n - w i d t h :   7 6 9 p x )   a n d   ( m a x - w i d t h :   9 9 1 p x )   { 
     . c t a   . c t a - b t n   { 
         p a d d i n g :   1 2 p x   3 0 p x ; 
         f o n t - s i z e :   1 5 p x ; 
         m a r g i n :   5 p x   8 p x ; 
     } 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   9 9 1 p x )   { 
     . p r i c i n g - i n f o   { 
         t e x t - a l i g n :   c e n t e r ; 
         m a r g i n - b o t t o m :   4 0 p x ; 
         p a d d i n g :   0   1 5 p x ; 
     } 
     
     . p r i c i n g - i t e m . f e a t u r e d   { 
         m a r g i n - t o p :   1 0 p x ; 
     } 
 } 
 
 @ m e d i a   ( m i n - w i d t h :   9 9 2 p x )   { 
     . f e a t u r e s   . c o l - l g - 4   { 
         f l e x :   0   0   3 3 . 3 3 3 3 3 3 % ; 
         m a x - w i d t h :   3 3 . 3 3 3 3 3 3 % ; 
     } 
     
     . i n t e g r a t i o n s   . c o l - l g - 3   { 
         f l e x :   0   0   2 5 % ; 
         m a x - w i d t h :   2 5 % ; 
     } 
     
     . m e t r i c s   . c o l - l g - 3   { 
         f l e x :   0   0   2 5 % ; 
         m a x - w i d t h :   2 5 % ; 
     } 
 
     . p r i c i n g - i t e m . f e a t u r e d   { 
         p a d d i n g :   4 0 p x   ! i m p o r t a n t ; 
     } 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   3 7 5 p x )   { 
     . p r i c i n g - i t e m . f e a t u r e d   { 
         p a d d i n g :   2 0 p x   1 5 p x ; 
     } 
     
     . p r i c i n g - i t e m . f e a t u r e d   h 4   { 
         f o n t - s i z e :   2 4 p x ; 
     } 
     
     . p r i c i n g - i t e m . f e a t u r e d   u l   l i   { 
         f o n t - s i z e :   1 3 p x ; 
         m a r g i n - b o t t o m :   1 0 p x ; 
     } 
 } 
  
 