/**
* Template Name: Impact
* Template URL: https://bootstrapmade.com/impact-bootstrap-business-website-template/
* Updated: Jun 06 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: "Montserrat", 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: rgb(2,38,77);
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #02264D;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #130124;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --contrast-color: #ffffff;
  /* The contrast color is used for elements when the background color is one of the heading, accent, or default colors. Its purpose is to ensure proper contrast and readability when placed over these more dominant 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: #f85a40;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #130124;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #f85a40;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
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);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: white;
  --heading-color: rgb(27, 125, 163);
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: color-mix(in srgb, var(--accent-color) 90%, black 10%);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 5;
}

.header .logo img {
  height: 90px;
  margin-right: 8px;
  width: 400px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  font-size: 32px;
  margin-left: 2px;
  color: var(--nav-hover-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px color-mix(in srgb, var(--default-color), transparent 85%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-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 color-mix(in srgb, var(--default-color), transparent 85%);
  }

  .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;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .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;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .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);
    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;
  }
}


/* 1424×1024 */
/* ================================================================ */
@media (max-width: 1424px) and (max-height: 1024px) {
  /* Example changes for 1424×1024 screen */

  #header {
    padding: 10px 15px;
  }

  #logo img {
    height: 60%; /* Adjust logo size */
  }

  .navmenu ul li a {
    font-size: 14px; /* Slightly smaller nav text */
  }

  .dropdown-menu .dropdown-item {
    font-size: 13px;
    padding: 8px 12px;
  }

  #Account .dropbutton {
    font-size: 14px;
  }

  /* Optional: Adjust layout spacing */
  .branding .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-nav-toggle {
    font-size: 22px;
  }

  /* ✅ Background colour for the white area */
  #below-header {
    background-color: rgb(1, 18, 36);
  }
}



/* 1188 *1024 mobile view */
/* ========================================================================= */
@media (max-width: 1200px) and (max-height: 1024px) {
  /* Container flex row: toggle left, logo right */
  .branding .container {
    display: flex;
    flex-direction: row;       /* keep items in a row */
    align-items: center;       /* vertically center */
    justify-content: space-between; /* space between toggle and logo */
  }

  /* Mobile nav toggle on left */
  #mobile-nav-toggle {
    order: 1;        /* first item */
    cursor: pointer;
    font-size: 28px;
    color: white;
  }

  /* Logo on right */
  #logo {
    order: 3;        /* last item */
    margin-left: auto; /* push logo to the right */
  }

  /* Hide nav menu by default on mobile */
 
}

/* 1476×1024 */
/* =================================================================== */
@media (max-width: 1476px) and (max-height: 1024px) {
  
  /* Header padding adjustment */
  #header {
    padding: 11px 18px;
  }
  
  /* Adjust logo size */
  #logo img {
    height: 62%; /* Slightly bigger than 1424 breakpoint */
  }

  /* Navigation font size */
  .navmenu ul li a {
    font-size: 14.5px;
  }

  /* Dropdown item adjustments */
  .dropdown-menu .dropdown-item {
    font-size: 13.5px;
    padding: 8px 13px;
  }

  /* Account button font */
  #Account .dropbutton {
    font-size: 14.5px;
  }

  /* Optional: Adjust branding container layout */
  .branding .container {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Mobile nav toggle size */
  .mobile-nav-toggle {
    font-size: 23px;
  }

  /* Background colour for section below header */
  #below-header {
    background-color: rgb(1, 18, 36);
  }
}

/* 1144×1024 */
/* =================================================================== */
@media (max-width: 1144px) and (max-height: 1024px) {
  /* Branding container layout: logo left, toggle right */
  .branding .container {
    display: flex;
    flex-direction: row;           /* Row layout */
    align-items: center;           /* Vertically align */
    justify-content: space-between; /* Space between logo and toggle */
  }

  /* Logo on the left */
  #logo {
    order: 1;
    margin-right: auto; /* Push toggle to the far right */
  }

  /* Mobile nav toggle on the right */
  #mobile-nav-toggle {
    order: 3;
    cursor: pointer;
    font-size: 28px;
    color: white;
    margin-left: auto; /* Push toggle to the right */
  }



  /* Background colour for section below header */
  #below-header {
    background-color: rgb(1, 18, 36);
  }
}

/* 1196×1024 */
/* =================================================================== */
@media (max-width: 1196px) and (max-height: 1024px) {
  .branding .container {
    display: flex;
    flex-direction: row;           /* Keep items in a row */
    align-items: center;           /* Vertically center */
    justify-content: space-between; /* Space between logo and toggle */
  }

  /* Logo on the left */
  #logo {
    order: 1;
    margin-right: auto; /* Push toggle to the right */
  }

  /* Mobile nav toggle on the right */
  #mobile-nav-toggle {
    order: 3;
    cursor: pointer;
    font-size: 28px;
    color: white;
    margin-left: auto; /* Ensure toggle is right aligned */
  }

 
  /* Background colour for section below header */
  #below-header {
    background-color: rgb(1, 18, 36);
  }
}

/* 1544×1024 */
/* =================================================================== */
@media (max-width: 1544px) and (max-height: 1024px) {
  /* Header padding adjustment */
  #header {
    padding: 12px 20px; /* Slightly bigger padding for larger width */
  }

  /* Adjust logo size */
  #logo img {
    height: 65%; /* A bit bigger than 1476 breakpoint */
  }

  /* Navigation font size */
  .navmenu ul li a {
    font-size: 15px; /* Slightly larger font */
  }

  /* Dropdown item adjustments */
  .dropdown-menu .dropdown-item {
    font-size: 14px;
    padding: 9px 14px;
  }

  /* Account button font */
  #Account .dropbutton {
    font-size: 15px;
  }

  /* Optional: Adjust branding container layout */
  .branding .container {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Mobile nav toggle size */
  .mobile-nav-toggle {
    font-size: 24px;
  }

  /* Background colour for section below header */
  #below-header {
    background-color: rgb(1, 18, 36);
  }
}

/* MacBook Air 13.6" M2 (2560×1664) */
@media (min-width: 2560px) and (max-height: 1664px) {
  #header {
    padding: 15px 25px;
  }

  #logo img {
    height: 70%;
  }

  .navmenu ul li a {
    font-size: 16px;
  }

  .dropdown-menu .dropdown-item {
    font-size: 15px;
    padding: 10px 16px;
  }

  #Account .dropbutton {
    font-size: 16px;
  }

  .branding .container {
    flex-direction: row;
    align-items: center;
  }

  .mobile-nav-toggle {
    font-size: 26px;
  }

  #below-header {
    background-color: rgb(1, 18, 36);
  }
}

/* MacBook Pro 14" (3024×1964) */
@media (min-width: 3024px) and (max-height: 1964px) {
  #header {
    padding: 18px 30px;
  }

  #logo img {
    height: 75%;
  }

  .navmenu ul li a {
    font-size: 17px;
  }

  .dropdown-menu .dropdown-item {
    font-size: 16px;
    padding: 12px 18px;
  }

  #Account .dropbutton {
    font-size: 17px;
  }

  .branding .container {
    flex-direction: row;
    align-items: center;
  }

  .mobile-nav-toggle {
    font-size: 28px;
  }

  #below-header {
    background-color: rgb(1, 18, 36);
  }
}

/* MacBook Pro 16" (3456×2234) */
@media (min-width: 3456px) and (max-height: 2234px) {
  #header {
    padding: 20px 35px;
  }

  #logo img {
    height: 80%;
  }

  .navmenu ul li a {
    font-size: 18px;
  }

  .dropdown-menu .dropdown-item {
    font-size: 17px;
    padding: 14px 20px;
  }

  #Account .dropbutton {
    font-size: 18px;
  }

  .branding .container {
    flex-direction: row;
    align-items: center;
  }

  .mobile-nav-toggle {
    font-size: 30px;
  }

  #below-header {
    background-color: rgb(1, 18, 36);
  }
}

/* iMac 24" (4480×2520) */
@media (min-width: 4480px) and (max-height: 2520px) {
  #header {
    padding: 22px 40px;
  }

  #logo img {
    height: 85%;
  }

  .navmenu ul li a {
    font-size: 19px;
  }

  .dropdown-menu .dropdown-item {
    font-size: 18px;
    padding: 15px 22px;
  }

  #Account .dropbutton {
    font-size: 19px;
  }

  .branding .container {
    flex-direction: row;
    align-items: center;
  }

  .mobile-nav-toggle {
    font-size: 32px;
  }

  #below-header {
    background-color: rgb(1, 18, 36);
  }
}

/* iMac 27" Retina 5K (5120×2880) */
@media (min-width: 5120px) and (max-height: 2880px) {
  #header {
    padding: 25px 45px;
  }

  #logo img {
    height: 90%;
  }

  .navmenu ul li a {
    font-size: 20px;
  }

  .dropdown-menu .dropdown-item {
    font-size: 19px;
    padding: 16px 24px;
  }

  #Account .dropbutton {
    font-size: 20px;
  }

  .branding .container {
    flex-direction: row;
    align-items: center;
  }

  .mobile-nav-toggle {
    font-size: 34px;
  }

  #below-header {
    background-color: rgb(1, 18, 36);
  }
}

/* =============================================================== */
/* Mobile view: mobile-nav-toggle left, logo right */
@media (max-width: 992px) {
  /* Container holding toggle and logo */
  .branding .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  /* Mobile nav toggle on the left */
  #mobile-nav-toggle {
    order: 1;         /* First item */
    cursor: pointer;
    font-size: 28px;
    color: white;
  }

  /* Logo on the right */
  #logo {
    margin-left: 400px;
    order: 2;         /* Second item */
    margin-left: auto; /* Push to the right */
  }


}
/* 1199×1024 - Mobile nav toggle left, logo right */
@media (max-width: 1199px) and (max-height: 1024px) {
  .branding .container {
    display: flex;
    flex-direction: row;           /* Keep items in a row */
    align-items: center;           /* Vertically centre */
    justify-content: space-between; /* Space between toggle and logo */
  }

  /* Mobile nav toggle on the left */
  #mobile-nav-toggle {
    order: 1;          /* First item in flex row */
    cursor: pointer;
    font-size: 28px;
    color: white;
    margin-right: auto; /* Push logo to the right */
  }

  /* Logo on the right */
  #logo {
    order: 3;          /* Last item */
    margin-left: auto; /* Push logo to the right */
  }

  /* Background colour for section below header */
  #below-header {
    background-color: rgb(1, 18, 36);
  }
}
/* ========================================================== */





/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --background-color: var(--accent-color);
  --default-color: #fff;
  --heading-color: #fff;
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  height: 136px;
  margin-right: 6px;
  width: 400px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.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 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--default-color);
  border-color: var(--default-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 {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.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 {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--default-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 4px;
  font-size: 13px;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background-color: var(--background-color); /* Ensure a solid background color */
  display: flex; /* Use flexbox to center content */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  flex-direction: column; /* Stack items vertically */
  transition: all 0.6s ease-out;
  

}

#preloader:before {
  content: "";
  background: url('/static/app/iguru3/assets/img/apple-touch-icon.png') no-repeat center; /* Center image horizontally */
  width: 80px; /* Set the width of the image */
  height: 80px; /* Set the height of the image */
  background-size: contain; /* Ensure the image maintains its aspect ratio and fits within the element */
  margin-bottom: 10px; /* Space between image and loader */
}

#preloader:after {
  content: "";
  border: 6px solid var(--accent-color); /* Update to use accent colour */
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%; /* Keep the loader circle round */
  width: 90px; /* Size of the loader circle */
  height: 90px; /* Size of the loader circle */
  animation: animate-preloader 1.5s linear infinite;
  margin-top: -100px; /* Optional: add a little space above the loader */
}

@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: 44px;
  height: 44px;
  border-radius: 50px;
  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;
  bottom: 15px;
}

/*--------------------------------------------------------------
# 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 {
  --background-color: var(--accent-color);
  --default-color: #fff;
  --heading-color: #fff;
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 160px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol a {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title nav ol a:hover {
  color: var(--default-color);
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav 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: 112px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 100px;
  }
}

/*--------------------------------------------------------------
# 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:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  --background-color: var(--accent-color);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  width: 100%;
  position: relative;
  padding: 140px 0 0 0;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h2 .accent {
  color: var(--conrast-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
  margin-bottom: 30px;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  transition: 0.3s;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .btn-get-started:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-weight: 600;
  color: var(--default-color);
}

.hero .btn-watch-video i {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover i {
  color: var(--default-color);
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }
}

.hero .icon-boxes {
  padding-bottom: 60px;
  z-index: 4;
}

@media (min-width: 1200px) {
  .hero .icon-boxes:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(50% + 20px);
    background-color: var(--contrast-color);
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
}

.hero .icon-box {
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
  background: color-mix(in srgb, var(--accent-color), white 4%);
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
  text-align: center;
}

.hero .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.hero .icon-box .title a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.hero .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 48px;
  line-height: 1;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .icon-box:hover {
  background-color: color-mix(in srgb, var(--accent-color), white 10%);
}

.hero .icon-box:hover .title a,
.hero .icon-box:hover .icon {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

.about .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .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: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-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);
}

.about .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);
}

.about .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;
}

.about .play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# 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);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 10px;
}

.stats .stats-item i {
  font-size: 44px;
  color: var(--accent-color);
  line-height: 0;
  margin-right: 15px;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 40px;
  display: block;
  font-weight: 700;
  line-height: 40px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 15px 0 0 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  --default-color: #ffffff;
  --contrast-color: #ffffff;
}

.call-to-action .container {
  padding-top: 80px;
  padding-bottom: 80px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  clip-path: inset(0 round 15px);
}

.call-to-action .container img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 15px;
  overflow: hidden;
}

.call-to-action .container:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container .content {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.call-to-action p {
  color: var(--default-color);
  margin-bottom: 20px;
}

.call-to-action .play-btn {
  width: 94px;
  height: 94px;
  margin-bottom: 20px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 60%) 52%);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.call-to-action .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-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 20%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.call-to-action .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 var(--default-color);
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.call-to-action .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 var(--default-color);
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.call-to-action .play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  padding: 40px;
  box-shadow: 0px 0 30px color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.services .service-item .icon i {
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: color-mix(in srgb, var(--heading-color), transparent 95%);
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -20px;
  transition: 0.3s;
}

.services .service-item h3 {
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid color-mix(in srgb, var(--heading-color), transparent 90%);
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.services .service-item:hover .icon i {
  color: var(--heading-color);
}

.services .service-item:hover .icon:before {
  background: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.services .service-item:hover h3 {
  border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  color: var(--heading-color);
}

.services .service-item:hover .readmore {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-shadow: 0px 2px 15px color-mix(in srgb, var(--default-color), transparent 90%);
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  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;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.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: 15px 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;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0 0 20px 0;
  margin: 0 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;
  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 {
  box-shadow: 0px 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.portfolio .portfolio-content .portfolio-info {
  background-color: var(--background-color);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 25px 20px;
  position: relative;
  z-index: 2;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-content .portfolio-info h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info h4 a:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  box-shadow: 0px 2px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
  border-radius: 15px;
  padding: 15px;
  overflow: hidden;
}

.team .member img {
  border-radius: 15px;
  overflow: hidden;
}

.team .member .member-content {
  padding: 0 20px 30px 20px;
}

.team .member h4 {
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 2px;
  font-size: 20px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .member .social {
  margin-top: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.team .member .social a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: 0.3s;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
}

.team .member .social a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  padding: 60px 0 120px 0;
}

.pricing .section-title {
  margin-bottom: 40px;
}

.pricing .pricing-item {
  box-shadow: 0 3px 20px -2px color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 60px 40px;
  height: 100%;
  position: relative;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

.pricing .icon {
  margin: 30px auto 20px auto;
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.pricing .icon i {
  color: var(--background-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  line-height: 0;
}

.pricing .icon::before {
  position: absolute;
  content: "";
  height: 86px;
  width: 86px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.pricing .icon::after {
  position: absolute;
  content: "";
  height: 102px;
  width: 102px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-2px);
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  text-align: center;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 400;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  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 70%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: var(--background-color);
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
  border: 3px solid var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured {
    transform: scale(1.15);
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px color-mix(in srgb, var(--default-color), transparent 90%);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts article {
  box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.recent-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.recent-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.recent-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.recent-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.recent-posts .title a:hover {
  color: var(--accent-color);
}

.recent-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-container {
  background-color: var(--accent-color);
  height: 100%;
  padding: 20px;
}

.contact .info-item {
  width: 100%;
  margin-bottom: 20px;
  padding: 20px;
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--contrast-color), transparent 90%);
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--contrast-color), transparent 80%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  color: var(--contrast-color);
  font-size: 20px;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.contact .php-email-form {
  box-shadow: 0px 0px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  width: 100%;
  height: 100%;
  padding: 30px;
}

.contact .php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: var(--background-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .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(--background-color);
  animation: animate-loading 1s linear infinite;
}

.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: color-mix(in srgb, var(--background-color), transparent 50%);
  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%);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 90%);
  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;
}

/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
.pagination-2 {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pagination-2 ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-2 li {
  margin: 0 5px;
  transition: 0.3s;
}

.pagination-2 li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-2 li.active,
.pagination-2 li:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pagination-2 li.active a,
.pagination-2 li:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  padding: 30px;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 90%);
}

.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 Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  padding: 20px;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding-top: 10px;
}

.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;
}

.blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog-comments .reply-form p {
  font-size: 14px;
}

.blog-comments .reply-form input {
  background-color: var(--background-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;
}

.blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.blog-comments .reply-form textarea {
  background-color: var(--background-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;
}

.blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.blog-comments .reply-form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  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);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 90%);
}

.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;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  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: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.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 {
  margin-bottom: -10px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}





/* CARDS TOP HEDER */

/* Font */
@import url('https://fonts.googleapis.com/css?family=Quicksand:400,700');

/* Design */
*,
*::before,
*::after {
  box-sizing: border-box;
}

h1 {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
}

img {
  height: auto;
  width: 100%;
  vertical-align: middle;
}

.btn {
  color: #ffffff;
  padding: 0.8rem;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 4px;
  font-weight: 400;
  display: block;
  width: 100%;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  transition: background-color 0.3s ease-in-out;
}

.btn:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cards_item {
  display: flex;
  padding: 1rem;
  transition: transform 0.3s ease-in-out;
}

.cards_item:hover {
  transform: scale(1.05);
}

@media (min-width: 40rem) {
  .cards_item {
    width: 50%;
  }
}

@media (min-width: 56rem) {
  .cards_item {
    width: 33.3333%;
  }
}

.card {
  background-color: white;
  border-radius: 0.25rem;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card_content {
  padding: 1rem;
  background: rgb(47, 119, 145);
  transition: background 0.3s ease-in-out;
}

.card_title {
  color: #ffffff;
  font-size: 1.1rem;
  /* Use a larger font size for better readability */
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin: 0px;
  white-space: normal;
  /* Allow text to wrap to the next line if needed */
  overflow: visible;
  /* Make sure overflowed text is visible */
  text-overflow: clip;
  /* Ensures text is not truncated */
}

/* Responsive font size adjustments */
@media (max-width: 768px) {
  .card_title {
    font-size: 1rem;
    /* Adjust font size for tablets if needed */
  }
}

@media (max-width: 576px) {
  .card_title {
    font-size: 0.9rem;
    /* Adjust font size for mobile screens if needed */
  }
}


.card_text {
  color: whitesmoke;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.card:hover .card_content {
  background: rgb(33, 93, 116);
}

.made_by {
  font-weight: 400;
  font-size: 13px;
  margin-top: 35px;
  text-align: center;
}









/* review google */
/* ===================================================================== */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Open Sans Regular"), local("OpenSans-Regular"), url("https://cdn.trustindex.io/assets/fonts/opensans/cyrillic-ext.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Open Sans Regular"), local("OpenSans-Regular"), url("https://cdn.trustindex.io/assets/fonts/opensans/cyrillic.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Open Sans Regular"), local("OpenSans-Regular"), url("https://cdn.trustindex.io/assets/fonts/opensans/greek-ext.woff2") format("woff2");
  unicode-range: U+1F00-1FFF
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Open Sans Regular"), local("OpenSans-Regular"), url("https://cdn.trustindex.io/assets/fonts/opensans/greek.woff2") format("woff2");
  unicode-range: U+0370-03FF
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Open Sans Regular"), local("OpenSans-Regular"), url("https://cdn.trustindex.io/assets/fonts/opensans/vietnamese.woff2") format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Open Sans Regular"), local("OpenSans-Regular"), url("https://cdn.trustindex.io/assets/fonts/opensans/latin-ext.woff2") format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Open Sans Regular"), local("OpenSans-Regular"), url("https://cdn.trustindex.io/assets/fonts/opensans/latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Open Sans Bold"), local("OpenSans-Bold"), url("https://cdn.trustindex.io/assets/fonts/opensans/cyrillic-ext2.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Open Sans Bold"), local("OpenSans-Bold"), url("https://cdn.trustindex.io/assets/fonts/opensans/cyrillic2.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Open Sans Bold"), local("OpenSans-Bold"), url("https://cdn.trustindex.io/assets/fonts/opensans/greek-ext2.woff2") format("woff2");
  unicode-range: U+1F00-1FFF
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Open Sans Bold"), local("OpenSans-Bold"), url("https://cdn.trustindex.io/assets/fonts/opensans/greek2.woff2") format("woff2");
  unicode-range: U+0370-03FF
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Open Sans Bold"), local("OpenSans-Bold"), url("https://cdn.trustindex.io/assets/fonts/opensans/vietnamese2.woff2") format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Open Sans Bold"), local("OpenSans-Bold"), url("https://cdn.trustindex.io/assets/fonts/opensans/latin-ext2.woff2") format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Open Sans Bold"), local("OpenSans-Bold"), url("https://cdn.trustindex.io/assets/fonts/opensans/latin2.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

.ti-amp-iframe-body {
  background: #ffffff
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] {
  width: 100%;
  display: block;
  overflow: hidden;
  text-align: left;
  direction: ltr;
  box-sizing: border-box
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] *,
.ti-widget[data-layout-id='5'][data-set-id='light-background'] *:after {
  box-sizing: border-box
}

.ti-widget[data-layout-id='5'][data-set-id='light-background']:before {
  display: none !important
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] a {
  text-decoration: underline !important;
  color: inherit
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] a.ti-header {
  text-decoration: none !important
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] a[href="#"],
.ti-widget[data-layout-id='5'][data-set-id='light-background'] a:not([href]) {
  text-decoration: none !important;
  pointer-events: none
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] strong,
.ti-widget[data-layout-id='5'][data-set-id='light-background'] strong * {
  font-weight: bold !important
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-widget-container,
.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-widget-container * {
  font-family: "Open sans";
  font-size: 14px;
  line-height: 1.4em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-widget-container {
  color: #000000;
  margin-bottom: 15px
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-widget-container .ti-name {
  font-weight: bold;
  font-size: 15px;
  overflow: hidden;
  padding-right: 25px;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #000000;
  margin-bottom: 2px
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-widget-container .ti-name a {
  text-decoration: none !important
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-widget-container .ti-name a:hover {
  text-decoration: underline !important
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-widget-container .ti-date {
  color: #000000;
  opacity: 0.5;
  font-size: 12px !important
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-profile-img {
  margin: 0 15px 0 0 !important
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-profile-img img {
  width: 40px !important;
  height: 40px !important;
  padding: 0px !important;
  display: block;
  border-radius: 30px;
  min-width: initial !important;
  max-width: initial !important;
  object-fit: cover;
  object-position: top
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-profile-img-sprite {
  display: inline-block;
  float: left;
  background: white;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  border-radius: 30px
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-profile-details {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-stars {
  margin-top: 3px;
  white-space: nowrap
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-star {
  width: 16px;
  height: 16px;
  display: inline-block;
  margin: 0 !important;
  margin-right: 1px !important;
  background-size: contain;
  background-repeat: no-repeat
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-star:before,
.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-star:after {
  content: none !important
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-footer {
  margin-top: 15px;
  padding-top: 0px;
  text-align: center;
  line-height: 1.45em
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-footer .ti-name {
  color: #000000;
  font-size: 16px;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-footer .ti-stars {
  margin-bottom: 3px;
  margin-top: 0px
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-footer .ti-profile-details {
  padding-top: 4px
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-footer .ti-inner {
  padding-bottom: 10px
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .star-lg .ti-star {
  width: 30px;
  height: 30px
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-d-none {
  display: none !important
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'].ti-icon-size1 .ti-review-header:after {
  width: 25px;
  height: 25px
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'].ti-icon-size1 .ti-widget-container .ti-name {
  padding-left: 30px
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'].ti-icon-size2 .ti-review-header:after {
  width: 30px;
  height: 30px
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'].ti-icon-size2 .ti-widget-container .ti-name {
  padding-left: 35px
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-rating-text,
.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-rating-text strong,
.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-rating-text strong a,
.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-rating-text strong span,
.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-rating-text span strong,
.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-rating-text span,
.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-footer,
.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-footer strong,
.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-footer span,
.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-footer strong a {
  font-size: 14px;
  color: #000000
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-large-logo {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 50px;
  margin-bottom: 0 !important
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-large-logo .ti-v-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
  text-align: center;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-large-logo img {
  margin: auto;
  padding: 0 !important;
  display: block !important;
  position: relative
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .nowrap {
  white-space: nowrap;
  display: inline-block;
  margin: 0 2px
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .nowrap:first-of-type {
  margin-left: 0
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .nowrap:last-of-type {
  margin-right: 0
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-reviews-container-wrapper [class$=inner]>.ti-stars {
  margin-bottom: 6px;
  margin-top: 15px;
  text-align: left
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-reviews-container-wrapper {
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-right: 20px;
  margin-left: 20px;
  padding-top: 5px
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-col-1 .ti-review-item {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-widget-container {
  display: -ms-flexbox;
  display: flex;
  flex-wrap: nowrap;
  align-items: center !important;
  -ms-flex-wrap: nowrap;
  -ms-flex-align: center !important
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-col-1 {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-col-1 .ti-reviews-container,
.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-col-1 .ti-footer {
  margin-top: 0px;
  padding-right: 0px;
  margin-bottom: 30px;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-col-2 .ti-footer,
.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-col-2 .ti-reviews-container {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-col-2 .ti-review-item {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-col-3 .ti-footer {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-col-3 .ti-reviews-container {
  -ms-flex: 0 0 66.666666%;
  flex: 0 0 66.666666%;
  max-width: 66.666666%
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-col-3 .ti-review-item {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-col-4 .ti-footer {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-col-4 .ti-reviews-container {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-col-4 .ti-review-item {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-col-5 .ti-footer {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-col-5 .ti-reviews-container {
  -ms-flex: 0 0 80%;
  flex: 0 0 80%;
  max-width: 80%
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-col-5 .ti-review-item {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-col-6 .ti-footer {
  -ms-flex: 0 0 16.666666%;
  flex: 0 0 16.666666%;
  max-width: 16.666666%
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-col-6 .ti-reviews-container {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-col-6 .ti-review-item {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-reviews-container {
  position: relative
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-read-more {
  display: none
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-review-item {
  padding: 0 8px;
  transition: transform 300ms ease-out
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-review-item [class$=inner] {
  border-radius: 4px
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-review-item>[class$=inner] {
  border-style: solid !important;
  border-color: #efefef !important;
  background: #efefef !important;
  border-radius: 4px !important;
  padding: 15px !important;
  margin: 0 !important;
  display: block
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-review-item .ti-polarity .ti-polarity-icon {
  position: relative;
  margin: 0;
  text-indent: 3px;
  display: inline-block;
  width: 15px;
  height: 15px
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-review-item .ti-recommendation .ti-recommendation-icon {
  position: relative;
  margin: 0 5px;
  margin-bottom: -3px;
  text-indent: 3px;
  display: inline-block;
  width: 15px;
  height: 15px
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-review-item .ti-recommendation .ti-recommendation-icon:first-child {
  margin-left: 0
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-review-item .ti-recommendation .ti-recommendation-title {
  font-weight: 700;
  font-size: 13px !important;
  opacity: 0.8;
  position: relative;
  top: -1px
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-review-item .ti-recommendation+.ti-dummy-stars {
  display: none
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-review-content {
  line-height: 20.3px !important;
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-align: left;
  -webkit-line-clamp: inherit !important;
  overflow: auto !important;
  overflow-x: hidden !important;
  padding-right: 10px;
  scrollbar-color: #8d8d8d #e0e0e0;
  scrollbar-width: thin
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-review-content .ti-stars {
  margin-bottom: 5px
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-review-content strong {
  font-size: inherit;
  color: inherit;
  font-weight: normal !important
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-review-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-review-header:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0px;
  background-repeat: no-repeat;
  background-position: center center
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-highlight {
  padding: 1px 2px;
  margin: 0;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  border-radius: 1px;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  background-color: transparent !important;
  background-image: linear-gradient(#fbe049, #fbe049);
  background-size: 100% 19px;
  background-position: bottom;
  background-repeat: no-repeat;
  color: #000 !important;
  font-size: inherit
}

@media (max-width:479px) {
  .ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-reviews-container-wrapper {
    margin-right: 0;
    margin-left: 0
  }

  .ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-review-item {
    padding: 0
  }
}

@media (min-width:480px) {
  .ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-review-item:hover {
    -webkit-transform: translate(0, -5px);
    -ms-transform: translate(0, -5px);
    transform: translate(0, -5px)
  }
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] ::-webkit-scrollbar {
  width: 4px;
  border-radius: 3px
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] ::-webkit-scrollbar-track {
  background: rgba(85, 85, 85, 0.1)
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] ::-webkit-scrollbar-thumb {
  background: rgba(85, 85, 85, 0.6)
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] ::-webkit-scrollbar-thumb:hover {
  background: #555
}

.ti-verified-review {
  display: inline-block;
  background: url("https://cdn.trustindex.io/assets/icon/trustindex-verified-icon.svg");
  background-size: contain;
  width: 15px;
  height: 15px;
  margin: 0 !important;
  margin-left: 7px !important;
  position: relative;
  z-index: 2
}

.ti-verified-review .ti-verified-tooltip {
  color: #fff !important;
  background-color: #6f6f6f !important;
  padding: 0 10px;
  border-radius: 4px;
  font-size: 11px !important;
  line-height: 22px !important;
  font-weight: 500;
  display: inline-block;
  position: absolute;
  left: 0;
  margin-left: 25px;
  top: -4px;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease-in-out
}

.ti-verified-review .ti-verified-tooltip:before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 5px 0;
  border-color: transparent #6f6f6f transparent transparent;
  content: "";
  position: absolute;
  left: -5px;
  top: 50%;
  margin-top: -5px
}

.ti-verified-review:hover .ti-verified-tooltip {
  opacity: 1;
  margin-left: 20px
}

.ti-recommendation+.ti-verified-review {
  top: 2px
}

.ti-widget .source-all .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Trustindex/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-all .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Trustindex/star/f.svg")
}

.ti-widget .source-all .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Trustindex/star/e.svg")
}

.ti-widget .source-all .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Trustindex/star/h.svg")
}

.ti-widget .source-all .ti-large-logo img {
  width: 152px !important;
  height: 26px !important;
  top: 3px
}

.ti-widget .source-Facebook .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Facebook/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Facebook .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Facebook/star/f.svg")
}

.ti-widget .source-Facebook .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Facebook/star/e.svg")
}

.ti-widget .source-Facebook .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Facebook/star/h.svg")
}

.ti-widget .source-Facebook .ti-recommendation-icon.positive {
  background-image: url("https://cdn.trustindex.io/assets/platform/Facebook/recommendation-positive.svg")
}

.ti-widget .source-Facebook .ti-recommendation-icon.negative {
  background-image: url("https://cdn.trustindex.io/assets/platform/Facebook/recommendation-negative.svg")
}

.ti-widget .source-Facebook .ti-large-logo img {
  width: 145px !important;
  height: 28px !important
}

.ti-widget .source-Google .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Google/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Google .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Google/star/f.svg")
}

.ti-widget .source-Google .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Google/star/e.svg")
}

.ti-widget .source-Google .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Google/star/h.svg")
}

.ti-widget .source-Google .ti-large-logo img {
  width: 110px !important;
  height: 35px !important
}

.ti-widget .source-Yelp .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Yelp/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Yelp .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Yelp/star/f.svg")
}

.ti-widget .source-Yelp .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Yelp/star/e.svg")
}

.ti-widget .source-Yelp .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Yelp/star/h.svg")
}

.ti-widget .source-Yelp .ti-large-logo img {
  width: 95px !important;
  height: 46px !important;
  top: -5px
}

.ti-widget .source-Tripadvisor .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Tripadvisor/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Tripadvisor .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Tripadvisor/star/f.svg")
}

.ti-widget .source-Tripadvisor .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Tripadvisor/star/e.svg")
}

.ti-widget .source-Tripadvisor .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Tripadvisor/star/h.svg")
}

.ti-widget .source-Tripadvisor .ti-large-logo img {
  width: 155px !important;
  height: 33px !important
}

.ti-widget .source-Trustpilot .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Trustpilot/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Trustpilot .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Trustpilot/star/f.svg")
}

.ti-widget .source-Trustpilot .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Trustpilot/star/e.svg")
}

.ti-widget .source-Trustpilot .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Trustpilot/star/h.svg")
}

.ti-widget .source-Trustpilot .ti-large-logo img {
  width: 140px !important;
  height: 34px !important
}

.ti-widget .source-Trustpilot .ti-review-header:after,
.ti-widget .source-Trustpilot [class$=inner]:after,
.ti-widget .source-Trustpilot .ti-review-content:after,
.ti-widget .source-Trustpilot .ti-platform-icon:after,
.ti-widget .source-Trustpilot .ti-icon {
  display: none !important
}

.ti-widget .source-Airbnb .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Airbnb/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Airbnb .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Airbnb/star/f.svg")
}

.ti-widget .source-Airbnb .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Airbnb/star/e.svg")
}

.ti-widget .source-Airbnb .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Airbnb/star/h.svg")
}

.ti-widget .source-Airbnb .ti-large-logo img {
  width: 120px !important;
  height: 38px !important
}

.ti-widget .source-Booking .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Booking/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Booking .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Booking/star/f.svg")
}

.ti-widget .source-Booking .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Booking/star/e.svg")
}

.ti-widget .source-Booking .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Booking/star/h.svg")
}

.ti-widget .source-Booking .ti-large-logo img {
  width: 150px !important;
  height: 25px !important
}

.ti-widget .source-Amazon .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Amazon/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Amazon .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Amazon/star/f.svg")
}

.ti-widget .source-Amazon .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Amazon/star/e.svg")
}

.ti-widget .source-Amazon .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Amazon/star/h.svg")
}

.ti-widget .source-Amazon .ti-large-logo img {
  width: 120px !important;
  height: 36px !important
}

.ti-widget .source-Arukereso .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Arukereso/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Arukereso .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Arukereso/star/f.svg")
}

.ti-widget .source-Arukereso .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Arukereso/star/e.svg")
}

.ti-widget .source-Arukereso .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Arukereso/star/h.svg")
}

.ti-widget .source-Arukereso .ti-large-logo img {
  width: 150px !important
}

.ti-widget .source-Arukereso .ti-large-logo img[src*="logo.svg"],
.ti-widget .source-Arukereso .ti-large-logo img[src*="logo-dark.svg"] {
  height: 25px !important
}

.ti-widget .source-Arukereso .ti-large-logo img[src*="logo-bg.svg"],
.ti-widget .source-Arukereso .ti-large-logo img[src*="logo-bg-dark.svg"] {
  height: 25px !important
}

.ti-widget .source-Arukereso .ti-large-logo img[src*="logo-ro.svg"],
.ti-widget .source-Arukereso .ti-large-logo img[src*="logo-ro-dark.svg"] {
  height: 29px !important
}

.ti-widget .source-Hotels .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Hotels/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Hotels .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Hotels/star/f.svg")
}

.ti-widget .source-Hotels .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Hotels/star/e.svg")
}

.ti-widget .source-Hotels .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Hotels/star/h.svg")
}

.ti-widget .source-Hotels .ti-large-logo img {
  width: 152px !important;
  height: 30px !important
}

.ti-widget .source-Trustindex .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Trustindex/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Trustindex .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Trustindex/star/f.svg")
}

.ti-widget .source-Trustindex .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Trustindex/star/e.svg")
}

.ti-widget .source-Trustindex .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Trustindex/star/h.svg")
}

.ti-widget .source-Trustindex .ti-large-logo img {
  width: 152px !important;
  height: 26px !important;
  top: 3px
}

.ti-widget .source-Opentable .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Opentable/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Opentable .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Opentable/star/f.svg")
}

.ti-widget .source-Opentable .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Opentable/star/e.svg")
}

.ti-widget .source-Opentable .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Opentable/star/h.svg")
}

.ti-widget .source-Opentable .ti-large-logo img {
  width: 150px !important;
  height: 35px !important
}

.ti-widget .source-Foursquare .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Foursquare/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Foursquare .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Foursquare/star/f.svg")
}

.ti-widget .source-Foursquare .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Foursquare/star/e.svg")
}

.ti-widget .source-Foursquare .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Foursquare/star/h.svg")
}

.ti-widget .source-Foursquare .ti-large-logo img {
  width: 150px !important;
  height: 20px !important;
  top: 3px
}

.ti-widget .source-Foursquare.ti-review-item .ti-star {
  display: none !important
}

.ti-widget .source-Bookatable .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Bookatable/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Bookatable .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Bookatable/star/f.svg")
}

.ti-widget .source-Bookatable .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Bookatable/star/e.svg")
}

.ti-widget .source-Bookatable .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Bookatable/star/h.svg")
}

.ti-widget .source-Bookatable .ti-large-logo img {
  width: 150px !important;
  height: 27px !important;
  left: 7px
}

.ti-widget .source-Capterra .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Capterra/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Capterra .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Capterra/star/f.svg")
}

.ti-widget .source-Capterra .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Capterra/star/e.svg")
}

.ti-widget .source-Capterra .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Capterra/star/h.svg")
}

.ti-widget .source-Capterra .ti-large-logo img {
  width: 150px !important;
  height: 34px !important
}

.ti-widget .source-Szallashu[data-domain=cz] .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Szallashu/icon-cz.png");
  background-size: 100% 100%
}

.ti-widget .source-Szallashu[data-domain=hu] .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Szallashu/icon-hu.png");
  background-size: 100% 100%
}

.ti-widget .source-Szallashu[data-domain=ro] .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Szallashu/icon-ro.png");
  background-size: 100% 100%
}

.ti-widget .source-Szallashu[data-domain=com] .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Szallashu/icon-com.png");
  background-size: 100% 100%
}

.ti-widget .source-Szallashu[data-domain=pl] .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Szallashu/icon-pl.png");
  background-size: 100% 100%
}

.ti-widget .source-Szallashu .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Szallashu/star/f.svg")
}

.ti-widget .source-Szallashu .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Szallashu/star/e.svg")
}

.ti-widget .source-Szallashu .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Szallashu/star/h.svg")
}

.ti-widget .source-Szallashu .ti-large-logo img {
  width: 150px !important
}

.ti-widget .source-Szallashu .ti-large-logo img[src*="logo.svg"],
.ti-widget .source-Szallashu .ti-large-logo img[src*="logo-dark.svg"],
.ti-widget .source-Szallashu .ti-large-logo img[src*="logo-hu.svg"],
.ti-widget .source-Szallashu .ti-large-logo img[src*="logo-hu-dark.svg"] {
  height: 26px !important
}

.ti-widget .source-Szallashu .ti-large-logo img[src*="logo-com.svg"],
.ti-widget .source-Szallashu .ti-large-logo img[src*="logo-com-dark.svg"] {
  height: 29px !important
}

.ti-widget .source-Szallashu .ti-large-logo img[src*="logo-cz.svg"],
.ti-widget .source-Szallashu .ti-large-logo img[src*="logo-cz-dark.svg"] {
  height: 47px !important
}

.ti-widget .source-Szallashu .ti-large-logo img[src*="logo-pl.svg"],
.ti-widget .source-Szallashu .ti-large-logo img[src*="logo-pl-dark.svg"] {
  height: 34px !important
}

.ti-widget .source-Szallashu .ti-large-logo img[src*="logo-ro.svg"],
.ti-widget .source-Szallashu .ti-large-logo img[src*="logo-ro-dark.svg"] {
  height: 29px !important
}

.ti-widget .source-Thumbtack .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Thumbtack/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Thumbtack .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Thumbtack/star/f.svg")
}

.ti-widget .source-Thumbtack .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Thumbtack/star/e.svg")
}

.ti-widget .source-Thumbtack .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Thumbtack/star/h.svg")
}

.ti-widget .source-Thumbtack .ti-large-logo img {
  width: 150px !important;
  height: 34px !important
}

.ti-widget .source-Fresha .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Fresha/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Fresha .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Fresha/star/f.svg")
}

.ti-widget .source-Fresha .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Fresha/star/e.svg")
}

.ti-widget .source-Fresha .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Fresha/star/h.svg")
}

.ti-widget .source-Fresha .ti-large-logo img {
  width: 150px !important;
  height: 21px !important
}

.ti-widget .source-Expedia .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Expedia/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Expedia .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Expedia/star/f.svg")
}

.ti-widget .source-Expedia .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Expedia/star/e.svg")
}

.ti-widget .source-Expedia .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Expedia/star/h.svg")
}

.ti-widget .source-Expedia .ti-large-logo img {
  width: 150px !important;
  height: 44px !important
}

.ti-widget .source-Reco .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Reco/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Reco .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Reco/star/f.svg")
}

.ti-widget .source-Reco .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Reco/star/e.svg")
}

.ti-widget .source-Reco .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Reco/star/h.svg")
}

.ti-widget .source-Reco .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Zillow .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Zillow/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Zillow .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Zillow/star/f.svg")
}

.ti-widget .source-Zillow .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Zillow/star/e.svg")
}

.ti-widget .source-Zillow .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Zillow/star/h.svg")
}

.ti-widget .source-Zillow .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Pricespy .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Pricespy/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Pricespy .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Pricespy/star/f.svg")
}

.ti-widget .source-Pricespy .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Pricespy/star/e.svg")
}

.ti-widget .source-Pricespy .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Pricespy/star/h.svg")
}

.ti-widget .source-Pricespy .ti-large-logo img {
  width: 150px !important
}

.ti-widget .source-Pricespy .ti-large-logo img[src*="logo.svg"],
.ti-widget .source-Pricespy .ti-large-logo img[src*="logo-dark.svg"],
.ti-widget .source-Pricespy .ti-large-logo img[src*="logo-nz.svg"],
.ti-widget .source-Pricespy .ti-large-logo img[src*="logo-nz-dark.svg"],
.ti-widget .source-Pricespy .ti-large-logo img[src*="logo-uk.svg"],
.ti-widget .source-Pricespy .ti-large-logo img[src*="logo-uk-dark.svg"] {
  height: 39px !important
}

.ti-widget .source-Pricespy .ti-large-logo img[src*="logo-dk.svg"],
.ti-widget .source-Pricespy .ti-large-logo img[src*="logo-dk-dark.svg"] {
  height: 42px !important
}

.ti-widget .source-Pricespy .ti-large-logo img[src*="logo-fi.svg"],
.ti-widget .source-Pricespy .ti-large-logo img[src*="logo-fi-dark.svg"] {
  height: 35px !important
}

.ti-widget .source-Pricespy .ti-large-logo img[src*="logo-fr.svg"],
.ti-widget .source-Pricespy .ti-large-logo img[src*="logo-fr-dark.svg"] {
  height: 31px !important
}

.ti-widget .source-Pricespy .ti-large-logo img[src*="logo-no.svg"],
.ti-widget .source-Pricespy .ti-large-logo img[src*="logo-no-dark.svg"],
.ti-widget .source-Pricespy .ti-large-logo img[src*="logo-nu.svg"],
.ti-widget .source-Pricespy .ti-large-logo img[src*="logo-nu-dark.svg"] {
  height: 43px !important
}

.ti-widget .source-Mobilede .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Mobilede/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Mobilede .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Mobilede/star/f.svg")
}

.ti-widget .source-Mobilede .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Mobilede/star/e.svg")
}

.ti-widget .source-Mobilede .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Mobilede/star/h.svg")
}

.ti-widget .source-Mobilede .ti-large-logo img {
  width: 150px !important;
  height: 35px !important
}

.ti-widget .source-Checkatrade .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Checkatrade/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Checkatrade .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Checkatrade/star/f.svg")
}

.ti-widget .source-Checkatrade .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Checkatrade/star/e.svg")
}

.ti-widget .source-Checkatrade .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Checkatrade/star/h.svg")
}

.ti-widget .source-Checkatrade .ti-large-logo img {
  width: 150px !important;
  height: 22px !important
}

.ti-widget .source-Pricerunner .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Pricerunner/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Pricerunner .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Pricerunner/star/f.svg")
}

.ti-widget .source-Pricerunner .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Pricerunner/star/e.svg")
}

.ti-widget .source-Pricerunner .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Pricerunner/star/h.svg")
}

.ti-widget .source-Pricerunner .ti-large-logo img {
  width: 150px !important;
  height: 21px !important
}

.ti-widget .source-Easyweddings .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Easyweddings/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Easyweddings .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Easyweddings/star/f.svg")
}

.ti-widget .source-Easyweddings .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Easyweddings/star/e.svg")
}

.ti-widget .source-Easyweddings .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Easyweddings/star/h.svg")
}

.ti-widget .source-Easyweddings .ti-large-logo img {
  width: 150px !important;
  height: 50px !important;
  top: 3px
}

.ti-widget .source-Whichtrustedtraders .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Whichtrustedtraders/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Whichtrustedtraders .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Whichtrustedtraders/star/f.svg")
}

.ti-widget .source-Whichtrustedtraders .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Whichtrustedtraders/star/e.svg")
}

.ti-widget .source-Whichtrustedtraders .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Whichtrustedtraders/star/h.svg")
}

.ti-widget .source-Whichtrustedtraders .ti-large-logo img {
  width: 80px !important;
  height: 55px !important;
  top: -15px;
  left: 10px
}

.ti-widget .source-Abia .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Abia/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Abia .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Abia/star/f.svg")
}

.ti-widget .source-Abia .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Abia/star/e.svg")
}

.ti-widget .source-Abia .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Abia/star/h.svg")
}

.ti-widget .source-Abia .ti-large-logo img {
  width: 100px !important;
  height: 41px !important
}

.ti-widget .source-Whatclinic .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Whatclinic/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Whatclinic .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Whatclinic/star/f.svg")
}

.ti-widget .source-Whatclinic .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Whatclinic/star/e.svg")
}

.ti-widget .source-Whatclinic .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Whatclinic/star/h.svg")
}

.ti-widget .source-Whatclinic .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Justdial .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Justdial/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Justdial .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Justdial/star/f.svg")
}

.ti-widget .source-Justdial .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Justdial/star/e.svg")
}

.ti-widget .source-Justdial .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Justdial/star/h.svg")
}

.ti-widget .source-Justdial .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-WordpressPlugin .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/WordpressPlugin/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-WordpressPlugin .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/WordpressPlugin/star/f.svg")
}

.ti-widget .source-WordpressPlugin .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/WordpressPlugin/star/e.svg")
}

.ti-widget .source-WordpressPlugin .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/WordpressPlugin/star/h.svg")
}

.ti-widget .source-WordpressPlugin .ti-large-logo img {
  width: 150px !important;
  height: 35px !important
}

.ti-widget .source-Aliexpress .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Aliexpress/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Aliexpress .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Aliexpress/star/f.svg")
}

.ti-widget .source-Aliexpress .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Aliexpress/star/e.svg")
}

.ti-widget .source-Aliexpress .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Aliexpress/star/h.svg")
}

.ti-widget .source-Aliexpress .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Alibaba .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Alibaba/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Alibaba .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Alibaba/star/f.svg")
}

.ti-widget .source-Alibaba .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Alibaba/star/e.svg")
}

.ti-widget .source-Alibaba .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Alibaba/star/h.svg")
}

.ti-widget .source-Alibaba .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Argep .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Argep/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Argep .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Argep/star/f.svg")
}

.ti-widget .source-Argep .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Argep/star/e.svg")
}

.ti-widget .source-Argep .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Argep/star/h.svg")
}

.ti-widget .source-Argep .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-SourceForge .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/SourceForge/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-SourceForge .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/SourceForge/star/f.svg")
}

.ti-widget .source-SourceForge .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/SourceForge/star/e.svg")
}

.ti-widget .source-SourceForge .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/SourceForge/star/h.svg")
}

.ti-widget .source-SourceForge .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Vrbo .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Vrbo/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Vrbo .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Vrbo/star/f.svg")
}

.ti-widget .source-Vrbo .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Vrbo/star/e.svg")
}

.ti-widget .source-Vrbo .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Vrbo/star/h.svg")
}

.ti-widget .source-Vrbo .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Reviewsio .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Reviewsio/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Reviewsio .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Reviewsio/star/f.svg")
}

.ti-widget .source-Reviewsio .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Reviewsio/star/e.svg")
}

.ti-widget .source-Reviewsio .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Reviewsio/star/h.svg")
}

.ti-widget .source-Reviewsio .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Sitejabber .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Sitejabber/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Sitejabber .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Sitejabber/star/f.svg")
}

.ti-widget .source-Sitejabber .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Sitejabber/star/e.svg")
}

.ti-widget .source-Sitejabber .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Sitejabber/star/h.svg")
}

.ti-widget .source-Sitejabber .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Ebay .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Ebay/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Ebay .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Ebay/star/f.svg")
}

.ti-widget .source-Ebay .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Ebay/star/e.svg")
}

.ti-widget .source-Ebay .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Ebay/star/h.svg")
}

.ti-widget .source-Ebay .ti-polarity-icon.negative {
  background-image: url("https://cdn.trustindex.io/assets/platform/Ebay/negative.svg")
}

.ti-widget .source-Ebay .ti-polarity-icon.neutral {
  background-image: url("https://cdn.trustindex.io/assets/platform/Ebay/neutral.svg")
}

.ti-widget .source-Ebay .ti-polarity-icon.positive {
  background-image: url("https://cdn.trustindex.io/assets/platform/Ebay/positive.svg")
}

.ti-widget .source-Ebay .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Immobilienscout24 .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Immobilienscout24/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Immobilienscout24 .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Immobilienscout24/star/f.svg")
}

.ti-widget .source-Immobilienscout24 .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Immobilienscout24/star/e.svg")
}

.ti-widget .source-Immobilienscout24 .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Immobilienscout24/star/h.svg")
}

.ti-widget .source-Immobilienscout24 .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Provenexpert .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Provenexpert/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Provenexpert .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Provenexpert/star/f.svg")
}

.ti-widget .source-Provenexpert .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Provenexpert/star/e.svg")
}

.ti-widget .source-Provenexpert .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Provenexpert/star/h.svg")
}

.ti-widget .source-Provenexpert .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Ekomi .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Ekomi/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Ekomi .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Ekomi/star/f.svg")
}

.ti-widget .source-Ekomi .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Ekomi/star/e.svg")
}

.ti-widget .source-Ekomi .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Ekomi/star/h.svg")
}

.ti-widget .source-Ekomi .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-OnlinePenztarca .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/OnlinePenztarca/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-OnlinePenztarca .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/OnlinePenztarca/star/f.svg")
}

.ti-widget .source-OnlinePenztarca .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/OnlinePenztarca/star/e.svg")
}

.ti-widget .source-OnlinePenztarca .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/OnlinePenztarca/star/h.svg")
}

.ti-widget .source-OnlinePenztarca .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Realself .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Realself/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Realself .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Realself/star/f.svg")
}

.ti-widget .source-Realself .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Realself/star/e.svg")
}

.ti-widget .source-Realself .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Realself/star/h.svg")
}

.ti-widget .source-Realself .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Etsy .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Etsy/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Etsy .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Etsy/star/f.svg")
}

.ti-widget .source-Etsy .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Etsy/star/e.svg")
}

.ti-widget .source-Etsy .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Etsy/star/h.svg")
}

.ti-widget .source-Etsy .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Judge .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Judge/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Judge .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Judge/star/f.svg")
}

.ti-widget .source-Judge .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Judge/star/e.svg")
}

.ti-widget .source-Judge .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Judge/star/h.svg")
}

.ti-widget .source-Judge .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Trustratings .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Trustratings/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Trustratings .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Trustratings/star/f.svg")
}

.ti-widget .source-Trustratings .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Trustratings/star/e.svg")
}

.ti-widget .source-Trustratings .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Trustratings/star/h.svg")
}

.ti-widget .source-Trustratings .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Cusrev .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Cusrev/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Cusrev .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Cusrev/star/f.svg")
}

.ti-widget .source-Cusrev .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Cusrev/star/e.svg")
}

.ti-widget .source-Cusrev .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Cusrev/star/h.svg")
}

.ti-widget .source-Cusrev .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Getyourguide .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Getyourguide/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Getyourguide .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Getyourguide/star/f.svg")
}

.ti-widget .source-Getyourguide .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Getyourguide/star/e.svg")
}

.ti-widget .source-Getyourguide .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Getyourguide/star/h.svg")
}

.ti-widget .source-Getyourguide .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Resellerratings .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Resellerratings/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Resellerratings .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Resellerratings/star/f.svg")
}

.ti-widget .source-Resellerratings .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Resellerratings/star/e.svg")
}

.ti-widget .source-Resellerratings .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Resellerratings/star/h.svg")
}

.ti-widget .source-Resellerratings .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Meilleursagents .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Meilleursagents/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Meilleursagents .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Meilleursagents/star/f.svg")
}

.ti-widget .source-Meilleursagents .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Meilleursagents/star/e.svg")
}

.ti-widget .source-Meilleursagents .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Meilleursagents/star/h.svg")
}

.ti-widget .source-Meilleursagents .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-AlternativeTo .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/AlternativeTo/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-AlternativeTo .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/AlternativeTo/star/f.svg")
}

.ti-widget .source-AlternativeTo .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/AlternativeTo/star/e.svg")
}

.ti-widget .source-AlternativeTo .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/AlternativeTo/star/h.svg")
}

.ti-widget .source-AlternativeTo .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Agoda .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Agoda/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Agoda .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Agoda/star/f.svg")
}

.ti-widget .source-Agoda .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Agoda/star/e.svg")
}

.ti-widget .source-Agoda .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Agoda/star/h.svg")
}

.ti-widget .source-Agoda .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-AngiesList .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/AngiesList/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-AngiesList .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/AngiesList/star/f.svg")
}

.ti-widget .source-AngiesList .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/AngiesList/star/e.svg")
}

.ti-widget .source-AngiesList .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/AngiesList/star/h.svg")
}

.ti-widget .source-AngiesList .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Apartmentratings .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Apartmentratings/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Apartmentratings .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Apartmentratings/star/f.svg")
}

.ti-widget .source-Apartmentratings .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Apartmentratings/star/e.svg")
}

.ti-widget .source-Apartmentratings .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Apartmentratings/star/h.svg")
}

.ti-widget .source-Apartmentratings .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Apartments .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Apartments/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Apartments .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Apartments/star/f.svg")
}

.ti-widget .source-Apartments .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Apartments/star/e.svg")
}

.ti-widget .source-Apartments .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Apartments/star/h.svg")
}

.ti-widget .source-Apartments .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-AppleAppstore .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/AppleAppstore/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-AppleAppstore .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/AppleAppstore/star/f.svg")
}

.ti-widget .source-AppleAppstore .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/AppleAppstore/star/e.svg")
}

.ti-widget .source-AppleAppstore .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/AppleAppstore/star/h.svg")
}

.ti-widget .source-AppleAppstore .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Avvo .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Avvo/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Avvo .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Avvo/star/f.svg")
}

.ti-widget .source-Avvo .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Avvo/star/e.svg")
}

.ti-widget .source-Avvo .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Avvo/star/h.svg")
}

.ti-widget .source-Avvo .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-BBB .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/BBB/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-BBB .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/BBB/star/f.svg")
}

.ti-widget .source-BBB .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/BBB/star/e.svg")
}

.ti-widget .source-BBB .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/BBB/star/h.svg")
}

.ti-widget .source-BBB .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Bilbayt .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Bilbayt/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Bilbayt .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Bilbayt/star/f.svg")
}

.ti-widget .source-Bilbayt .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Bilbayt/star/e.svg")
}

.ti-widget .source-Bilbayt .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Bilbayt/star/h.svg")
}

.ti-widget .source-Bilbayt .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-CarGurus .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/CarGurus/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-CarGurus .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/CarGurus/star/f.svg")
}

.ti-widget .source-CarGurus .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/CarGurus/star/e.svg")
}

.ti-widget .source-CarGurus .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/CarGurus/star/h.svg")
}

.ti-widget .source-CarGurus .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Carscom .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Carscom/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Carscom .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Carscom/star/f.svg")
}

.ti-widget .source-Carscom .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Carscom/star/e.svg")
}

.ti-widget .source-Carscom .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Carscom/star/h.svg")
}

.ti-widget .source-Carscom .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Citysearch .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Citysearch/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Citysearch .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Citysearch/star/f.svg")
}

.ti-widget .source-Citysearch .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Citysearch/star/e.svg")
}

.ti-widget .source-Citysearch .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Citysearch/star/h.svg")
}

.ti-widget .source-Citysearch .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Classpass .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Classpass/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Classpass .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Classpass/star/f.svg")
}

.ti-widget .source-Classpass .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Classpass/star/e.svg")
}

.ti-widget .source-Classpass .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Classpass/star/h.svg")
}

.ti-widget .source-Classpass .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-ConsumerAffairs .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/ConsumerAffairs/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-ConsumerAffairs .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/ConsumerAffairs/star/f.svg")
}

.ti-widget .source-ConsumerAffairs .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/ConsumerAffairs/star/e.svg")
}

.ti-widget .source-ConsumerAffairs .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/ConsumerAffairs/star/h.svg")
}

.ti-widget .source-ConsumerAffairs .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-CreditKarma .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/CreditKarma/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-CreditKarma .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/CreditKarma/star/f.svg")
}

.ti-widget .source-CreditKarma .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/CreditKarma/star/e.svg")
}

.ti-widget .source-CreditKarma .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/CreditKarma/star/h.svg")
}

.ti-widget .source-CreditKarma .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-CustomerLobby .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/CustomerLobby/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-CustomerLobby .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/CustomerLobby/star/f.svg")
}

.ti-widget .source-CustomerLobby .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/CustomerLobby/star/e.svg")
}

.ti-widget .source-CustomerLobby .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/CustomerLobby/star/h.svg")
}

.ti-widget .source-CustomerLobby .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-DealerRater .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/DealerRater/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-DealerRater .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/DealerRater/star/f.svg")
}

.ti-widget .source-DealerRater .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/DealerRater/star/e.svg")
}

.ti-widget .source-DealerRater .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/DealerRater/star/h.svg")
}

.ti-widget .source-DealerRater .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Deliveroo .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Deliveroo/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Deliveroo .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Deliveroo/star/f.svg")
}

.ti-widget .source-Deliveroo .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Deliveroo/star/e.svg")
}

.ti-widget .source-Deliveroo .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Deliveroo/star/h.svg")
}

.ti-widget .source-Deliveroo .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Edmunds .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Edmunds/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Edmunds .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Edmunds/star/f.svg")
}

.ti-widget .source-Edmunds .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Edmunds/star/e.svg")
}

.ti-widget .source-Edmunds .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Edmunds/star/h.svg")
}

.ti-widget .source-Edmunds .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-FindLaw .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/FindLaw/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-FindLaw .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/FindLaw/star/f.svg")
}

.ti-widget .source-FindLaw .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/FindLaw/star/e.svg")
}

.ti-widget .source-FindLaw .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/FindLaw/star/h.svg")
}

.ti-widget .source-FindLaw .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Gartner .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Gartner/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Gartner .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Gartner/star/f.svg")
}

.ti-widget .source-Gartner .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Gartner/star/e.svg")
}

.ti-widget .source-Gartner .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Gartner/star/h.svg")
}

.ti-widget .source-Gartner .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Glassdoor .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Glassdoor/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Glassdoor .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Glassdoor/star/f.svg")
}

.ti-widget .source-Glassdoor .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Glassdoor/star/e.svg")
}

.ti-widget .source-Glassdoor .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Glassdoor/star/h.svg")
}

.ti-widget .source-Glassdoor .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Greatschools .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Greatschools/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Greatschools .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Greatschools/star/f.svg")
}

.ti-widget .source-Greatschools .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Greatschools/star/e.svg")
}

.ti-widget .source-Greatschools .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Greatschools/star/h.svg")
}

.ti-widget .source-Greatschools .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Healthgrades .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Healthgrades/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Healthgrades .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Healthgrades/star/f.svg")
}

.ti-widget .source-Healthgrades .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Healthgrades/star/e.svg")
}

.ti-widget .source-Healthgrades .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Healthgrades/star/h.svg")
}

.ti-widget .source-Healthgrades .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-HomeAdvisor .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/HomeAdvisor/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-HomeAdvisor .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/HomeAdvisor/star/f.svg")
}

.ti-widget .source-HomeAdvisor .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/HomeAdvisor/star/e.svg")
}

.ti-widget .source-HomeAdvisor .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/HomeAdvisor/star/h.svg")
}

.ti-widget .source-HomeAdvisor .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Homestars .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Homestars/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Homestars .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Homestars/star/f.svg")
}

.ti-widget .source-Homestars .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Homestars/star/e.svg")
}

.ti-widget .source-Homestars .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Homestars/star/h.svg")
}

.ti-widget .source-Homestars .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Houzz .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Houzz/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Houzz .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Houzz/star/f.svg")
}

.ti-widget .source-Houzz .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Houzz/star/e.svg")
}

.ti-widget .source-Houzz .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Houzz/star/h.svg")
}

.ti-widget .source-Houzz .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Indeed .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Indeed/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Indeed .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Indeed/star/f.svg")
}

.ti-widget .source-Indeed .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Indeed/star/e.svg")
}

.ti-widget .source-Indeed .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Indeed/star/h.svg")
}

.ti-widget .source-Indeed .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Influenster .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Influenster/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Influenster .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Influenster/star/f.svg")
}

.ti-widget .source-Influenster .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Influenster/star/e.svg")
}

.ti-widget .source-Influenster .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Influenster/star/h.svg")
}

.ti-widget .source-Influenster .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-InsiderPages .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/InsiderPages/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-InsiderPages .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/InsiderPages/star/f.svg")
}

.ti-widget .source-InsiderPages .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/InsiderPages/star/e.svg")
}

.ti-widget .source-InsiderPages .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/InsiderPages/star/h.svg")
}

.ti-widget .source-InsiderPages .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Lawyerscom .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Lawyerscom/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Lawyerscom .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Lawyerscom/star/f.svg")
}

.ti-widget .source-Lawyerscom .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Lawyerscom/star/e.svg")
}

.ti-widget .source-Lawyerscom .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Lawyerscom/star/h.svg")
}

.ti-widget .source-Lawyerscom .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-LendingTree .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/LendingTree/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-LendingTree .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/LendingTree/star/f.svg")
}

.ti-widget .source-LendingTree .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/LendingTree/star/e.svg")
}

.ti-widget .source-LendingTree .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/LendingTree/star/h.svg")
}

.ti-widget .source-LendingTree .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Martindale .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Martindale/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Martindale .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Martindale/star/f.svg")
}

.ti-widget .source-Martindale .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Martindale/star/e.svg")
}

.ti-widget .source-Martindale .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Martindale/star/h.svg")
}

.ti-widget .source-Martindale .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Niche .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Niche/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Niche .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Niche/star/f.svg")
}

.ti-widget .source-Niche .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Niche/star/e.svg")
}

.ti-widget .source-Niche .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Niche/star/h.svg")
}

.ti-widget .source-Niche .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-OpenRice .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/OpenRice/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-OpenRice .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/OpenRice/star/f.svg")
}

.ti-widget .source-OpenRice .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/OpenRice/star/e.svg")
}

.ti-widget .source-OpenRice .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/OpenRice/star/h.svg")
}

.ti-widget .source-OpenRice .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Peerspot .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Peerspot/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Peerspot .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Peerspot/star/f.svg")
}

.ti-widget .source-Peerspot .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Peerspot/star/e.svg")
}

.ti-widget .source-Peerspot .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Peerspot/star/h.svg")
}

.ti-widget .source-Peerspot .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-ProductHunt .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/ProductHunt/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-ProductHunt .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/ProductHunt/star/f.svg")
}

.ti-widget .source-ProductHunt .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/ProductHunt/star/e.svg")
}

.ti-widget .source-ProductHunt .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/ProductHunt/star/h.svg")
}

.ti-widget .source-ProductHunt .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-ProductReview .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/ProductReview/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-ProductReview .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/ProductReview/star/f.svg")
}

.ti-widget .source-ProductReview .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/ProductReview/star/e.svg")
}

.ti-widget .source-ProductReview .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/ProductReview/star/h.svg")
}

.ti-widget .source-ProductReview .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-RateMDs .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/RateMDs/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-RateMDs .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/RateMDs/star/f.svg")
}

.ti-widget .source-RateMDs .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/RateMDs/star/e.svg")
}

.ti-widget .source-RateMDs .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/RateMDs/star/h.svg")
}

.ti-widget .source-RateMDs .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-ReserveOut .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/ReserveOut/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-ReserveOut .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/ReserveOut/star/f.svg")
}

.ti-widget .source-ReserveOut .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/ReserveOut/star/e.svg")
}

.ti-widget .source-ReserveOut .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/ReserveOut/star/h.svg")
}

.ti-widget .source-ReserveOut .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-SoftwareAdvice .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/SoftwareAdvice/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-SoftwareAdvice .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/SoftwareAdvice/star/f.svg")
}

.ti-widget .source-SoftwareAdvice .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/SoftwareAdvice/star/e.svg")
}

.ti-widget .source-SoftwareAdvice .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/SoftwareAdvice/star/h.svg")
}

.ti-widget .source-SoftwareAdvice .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Talabat .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Talabat/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Talabat .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Talabat/star/f.svg")
}

.ti-widget .source-Talabat .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Talabat/star/e.svg")
}

.ti-widget .source-Talabat .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Talabat/star/h.svg")
}

.ti-widget .source-Talabat .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-TheFork .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/TheFork/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-TheFork .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/TheFork/star/f.svg")
}

.ti-widget .source-TheFork .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/TheFork/star/e.svg")
}

.ti-widget .source-TheFork .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/TheFork/star/h.svg")
}

.ti-widget .source-TheFork .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-TheKnot .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/TheKnot/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-TheKnot .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/TheKnot/star/f.svg")
}

.ti-widget .source-TheKnot .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/TheKnot/star/e.svg")
}

.ti-widget .source-TheKnot .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/TheKnot/star/h.svg")
}

.ti-widget .source-TheKnot .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-TrustedShops .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/TrustedShops/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-TrustedShops .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/TrustedShops/star/f.svg")
}

.ti-widget .source-TrustedShops .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/TrustedShops/star/e.svg")
}

.ti-widget .source-TrustedShops .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/TrustedShops/star/h.svg")
}

.ti-widget .source-TrustedShops .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-TrustRadius .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/TrustRadius/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-TrustRadius .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/TrustRadius/star/f.svg")
}

.ti-widget .source-TrustRadius .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/TrustRadius/star/e.svg")
}

.ti-widget .source-TrustRadius .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/TrustRadius/star/h.svg")
}

.ti-widget .source-TrustRadius .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Vardense .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Vardense/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Vardense .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Vardense/star/f.svg")
}

.ti-widget .source-Vardense .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Vardense/star/e.svg")
}

.ti-widget .source-Vardense .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Vardense/star/h.svg")
}

.ti-widget .source-Vardense .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Vitals .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Vitals/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Vitals .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Vitals/star/f.svg")
}

.ti-widget .source-Vitals .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Vitals/star/e.svg")
}

.ti-widget .source-Vitals .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Vitals/star/h.svg")
}

.ti-widget .source-Vitals .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Walmart .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Walmart/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Walmart .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Walmart/star/f.svg")
}

.ti-widget .source-Walmart .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Walmart/star/e.svg")
}

.ti-widget .source-Walmart .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Walmart/star/h.svg")
}

.ti-widget .source-Walmart .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-WebMD .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/WebMD/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-WebMD .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/WebMD/star/f.svg")
}

.ti-widget .source-WebMD .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/WebMD/star/e.svg")
}

.ti-widget .source-WebMD .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/WebMD/star/h.svg")
}

.ti-widget .source-WebMD .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-WeddingWire .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/WeddingWire/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-WeddingWire .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/WeddingWire/star/f.svg")
}

.ti-widget .source-WeddingWire .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/WeddingWire/star/e.svg")
}

.ti-widget .source-WeddingWire .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/WeddingWire/star/h.svg")
}

.ti-widget .source-WeddingWire .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Yell .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Yell/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Yell .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Yell/star/f.svg")
}

.ti-widget .source-Yell .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Yell/star/e.svg")
}

.ti-widget .source-Yell .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Yell/star/h.svg")
}

.ti-widget .source-Yell .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-YellowPages .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/YellowPages/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-YellowPages .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/YellowPages/star/f.svg")
}

.ti-widget .source-YellowPages .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/YellowPages/star/e.svg")
}

.ti-widget .source-YellowPages .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/YellowPages/star/h.svg")
}

.ti-widget .source-YellowPages .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-ZocDoc .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/ZocDoc/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-ZocDoc .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/ZocDoc/star/f.svg")
}

.ti-widget .source-ZocDoc .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/ZocDoc/star/e.svg")
}

.ti-widget .source-ZocDoc .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/ZocDoc/star/h.svg")
}

.ti-widget .source-ZocDoc .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Zomato .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Zomato/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Zomato .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Zomato/star/f.svg")
}

.ti-widget .source-Zomato .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Zomato/star/e.svg")
}

.ti-widget .source-Zomato .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Zomato/star/h.svg")
}

.ti-widget .source-Zomato .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Jameda .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Jameda/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Jameda .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Jameda/star/f.svg")
}

.ti-widget .source-Jameda .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Jameda/star/e.svg")
}

.ti-widget .source-Jameda .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Jameda/star/h.svg")
}

.ti-widget .source-Jameda .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Zoover .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Zoover/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Zoover .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Zoover/star/f.svg")
}

.ti-widget .source-Zoover .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Zoover/star/e.svg")
}

.ti-widget .source-Zoover .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Zoover/star/h.svg")
}

.ti-widget .source-Zoover .ti-large-logo img {
  width: 150px !important;
  height: 22px !important
}

.ti-widget .source-HotelSpecials .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/HotelSpecials/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-HotelSpecials .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/HotelSpecials/star/f.svg")
}

.ti-widget .source-HotelSpecials .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/HotelSpecials/star/e.svg")
}

.ti-widget .source-HotelSpecials .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/HotelSpecials/star/h.svg")
}

.ti-widget .source-HotelSpecials .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-PatientConnect365 .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/PatientConnect365/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-PatientConnect365 .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/PatientConnect365/star/f.svg")
}

.ti-widget .source-PatientConnect365 .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/PatientConnect365/star/e.svg")
}

.ti-widget .source-PatientConnect365 .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/PatientConnect365/star/h.svg")
}

.ti-widget .source-PatientConnect365 .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .source-Tandlakare .ti-review-header:after {
  background-image: url("https://cdn.trustindex.io/assets/platform/Tandlakare/icon.svg");
  background-size: 100% 100%
}

.ti-widget .source-Tandlakare .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Tandlakare/star/f.svg")
}

.ti-widget .source-Tandlakare .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Tandlakare/star/e.svg")
}

.ti-widget .source-Tandlakare .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Tandlakare/star/h.svg")
}

.ti-widget .source-Tandlakare .ti-large-logo img {
  width: 150px !important;
  height: 32px !important
}

.ti-widget .star-lg .ti-star {
  width: 30px;
  height: 30px
}

.ti-widget .ti-header .ti-star {
  width: 20px;
  height: 20px
}

.ti-widget .ti-rating-box {
  background: #000;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  font-weight: bold;
  justify-content: center;
  vertical-align: baseline;
  border-radius: 4px;
  font-size: 10px !important;
  height: 22px;
  width: 22px;
  position: relative;
  top: -4px
}

.ti-widget .source-Booking .ti-rating-box {
  background: #003580;
  border-radius: 6px 6px 6px 0
}

.ti-widget .source-Hotels .ti-rating-box {
  height: auto !important;
  width: auto !important;
  padding: 2px 4px;
  background: #388e3c
}

.ti-widget .source-Hotels .ti-rating-box:after {
  content: "";
  border-bottom: 4px solid transparent;
  border-left: 6px solid #388e3c;
  border-top: 4px solid transparent;
  bottom: -4px;
  left: 5px;
  position: absolute
}

.ti-widget .source-Foursquare .ti-rating-box {
  background: #73CF42
}

.ti-widget .source-Szallashu .ti-rating-box {
  border-radius: 50%;
  background: #fff;
  color: #000 !important;
  border: 2px solid #4b8a1a
}

.ti-widget .source-Checkatrade .ti-rating-box {
  border-radius: 50%;
  color: #fff !important;
  border: 2px solid #003580;
  background: #003580
}

.ti-widget .source-Zoover .ti-rating-box {
  border-radius: 60% 30% 60% 45%;
  color: #fff !important;
  border: 2px solid #368e44;
  background: #368e44
}

.ti-widget .source-HotelSpecials .ti-rating-box {
  border-radius: 0;
  color: #fff !important;
  border: 2px solid #ff7900;
  background: #ff7900
}

.ti-widget:not([data-layout-id="27"]):not([data-layout-id="29"]):not([data-layout-id="32"]):not([data-layout-id="35"]) .ti-footer .ti-rating-box,
.ti-widget:not([data-layout-id="27"]):not([data-layout-id="29"]):not([data-layout-id="32"]):not([data-layout-id="35"]) .ti-header .ti-rating-box {
  font-size: 13px !important;
  height: 32px;
  width: 32px
}

.ti-widget:not([data-layout-id="27"]):not([data-layout-id="29"]):not([data-layout-id="32"]):not([data-layout-id="35"]) .ti-footer.source-Booking .ti-rating-box,
.ti-widget:not([data-layout-id="27"]):not([data-layout-id="29"]):not([data-layout-id="32"]):not([data-layout-id="35"]) .ti-header.source-Booking .ti-rating-box {
  padding: 4px 6px
}

.ti-widget:not([data-layout-id="27"]):not([data-layout-id="29"]):not([data-layout-id="32"]):not([data-layout-id="35"]) .ti-footer.source-Hotels .ti-rating-box:after,
.ti-widget:not([data-layout-id="27"]):not([data-layout-id="29"]):not([data-layout-id="32"]):not([data-layout-id="35"]) .ti-header.source-Hotels .ti-rating-box:after {
  left: 8px
}

.ti-widget:not([data-layout-id="27"]):not([data-layout-id="29"]):not([data-layout-id="32"]):not([data-layout-id="35"]) .ti-footer.source-Foursquare .ti-rating-box,
.ti-widget:not([data-layout-id="27"]):not([data-layout-id="29"]):not([data-layout-id="32"]):not([data-layout-id="35"]) .ti-header.source-Foursquare .ti-rating-box {
  top: -2px
}

.ti-widget:not([data-layout-id="27"]):not([data-layout-id="29"]):not([data-layout-id="32"]):not([data-layout-id="35"]) .ti-footer.source-Szallashu .ti-rating-box,
.ti-widget:not([data-layout-id="27"]):not([data-layout-id="29"]):not([data-layout-id="32"]):not([data-layout-id="35"]) .ti-header.source-Szallashu .ti-rating-box {
  top: -1px
}

.ti-widget:not([data-layout-id="27"]):not([data-layout-id="29"]):not([data-layout-id="32"]):not([data-layout-id="35"]) .ti-footer.source-OnlinePenztarca .ti-rating-box,
.ti-widget:not([data-layout-id="27"]):not([data-layout-id="29"]):not([data-layout-id="32"]):not([data-layout-id="35"]) .ti-header.source-OnlinePenztarca .ti-rating-box {
  top: -1px
}

.ti-widget .ti-mob-row .ti-rating-box {
  margin-top: 1px
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'].ti-no-logo .ti-review-header:after {
  background: none !important
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'].ti-no-stars .ti-review-item .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Trustindex/star/f.svg") !important
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'].ti-no-stars .ti-review-item .ti-star.e {
  background-image: url("https://cdn.trustindex.io/assets/platform/Trustindex/star/e.svg") !important
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'].ti-no-stars .ti-review-item .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Trustindex/star/h.svg") !important
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'].ti-no-stars .ti-review-item .ti-recommendation {
  display: none
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'].ti-no-stars .ti-review-item .ti-recommendation+.ti-dummy-stars {
  display: inline
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] {
  overflow: visible !important
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-review-item>.ti-inner {
  border-top-width: 2px !important;
  border-bottom-width: 2px !important;
  border-left-width: 2px !important;
  border-right-width: 2px !important;
  background-color: #efefef !important;
  backdrop-filter: blur(0px)
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-footer {
  margin-top: 0px
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-review-content {
  height: 81.2px !important
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-reviews-container-wrapper {
  padding-bottom: 1px
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-rating-text strong.ti-rating {
  font-size: 16px;
  display: block;
  margin-top: 3px
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-controls {
  display: block;
  margin-top: -12px;
  width: 100%;
  position: absolute;
  height: 0px;
  z-index: 1;
  top: 50%
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-controls .ti-next,
.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-controls .ti-prev {
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: block;
  opacity: 1;
  -webkit-transition: all 200ms ease-out;
  -moz-transition: all 200ms ease-out;
  -o-transition: all 200ms ease-out;
  transition: all 200ms ease-out
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-controls .ti-next:hover,
.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-controls .ti-prev:hover {
  cursor: pointer;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2)
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-controls .ti-next:before,
.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-controls .ti-prev:before {
  content: "";
  background: #cccccc;
  width: 17px;
  height: 3px;
  display: block;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 2px;
  position: absolute
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-controls .ti-next:after,
.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-controls .ti-prev:after {
  content: "";
  background: #cccccc;
  width: 17px;
  height: 3px;
  display: block;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-radius: 2px;
  position: absolute
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-controls .ti-next {
  right: 2px
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-controls .ti-next:after {
  top: 18px;
  right: 0px
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-controls .ti-next:before {
  top: 8px;
  right: 0px
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-controls .ti-prev {
  left: 2px
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-controls .ti-prev:after {
  top: 8px;
  left: 0px
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-controls .ti-prev:before {
  top: 18px;
  left: 0px
}

@media (max-width:479px) {
  .ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-controls {
    display: none
  }
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-controls-dots {
  display: none;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-controls-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #cccccc;
  border-radius: 20px;
  padding: 4px;
  opacity: 0.4
}

.ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-controls-dots .dot.active {
  opacity: 1
}

@media (max-width:479px) {
  .ti-widget[data-layout-id='5'][data-set-id='light-background'] .ti-controls-dots {
    display: block !important
  }
}

.ti-clickable-link {
  cursor: pointer
}


/* footer call to action */


/* Call-to-action Section */
/* Call-to-action Section */
#cta-section {
  position: relative;
  background: url('https://static.vecteezy.com/system/resources/previews/005/319/917/non_2x/businessman-working-with-new-modern-computer-show-social-network-structure-as-concept-free-photo.jpg') no-repeat center center;
  background-size: cover;
  padding: 50px 0;
  overflow: hidden;
}

#cta-container {
  position: relative;
  z-index: 1;
}

#cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

#cta-heading-small {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 24px;
  animation: fadeIn 2s ease-in-out;
}

#cta-heading-large {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 36px;
  animation: fadeIn 2s ease-in-out 1s;
}

#cta-paragraph {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 30px;
  animation: fadeIn 2s ease-in-out 2s;
}

#cta-button {
  display: inline-block;
  padding: 10px 30px;
  background: #ff5e3a;
  color: #ffffff;
  border-radius: 5px;
  animation: glow 1.5s infinite alternate;
}

#cta-button:hover {
  background: #ff2e00;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px #ff5e3a;
  }

  100% {
    box-shadow: 0 0 20px #ff5e3a;
  }
}



/*Fixed scroll tabs */
#scroll-nav {
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 40%;
  width: 60px;
  /* Set width */
  z-index: 10000;
}

#scroll-nav a {
  color: #fff;
  display: block;
  font: 12px Arial;
  left: calc(100% - 60px);
  /* width */
  text-align: center;
  position: relative;
  transition: left 0.3s ease 0s;
  background-color: rgb(243, 72, 72);
  /*default color*/
  text-decoration: none;
  line-height: 1;
  text-transform: uppercase;
}

#scroll-nav a:nth-child(2) {
  background-color: rgb(37,211,102);
}

/*alt color*/
#scroll-nav a:nth-child(3) {
  background-color: rgb(77, 112, 168);
}

/*facebook*/
#scroll-nav a:nth-child(4) {
  background-color: rgb(220, 78, 65);
}

/*google*/

#scroll-nav i {
  display: inline-block;
  margin: 0;
  text-align: center;
  vertical-align: middle;
  width: 60px;
  /* Set width */
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 5px;
}

#scroll-nav a span:first-of-type {
  display: block;
  padding: 10px 0;
  width: 50px;
}

#scroll-nav a span:last-of-type {
  display: none;
  font-weight: bold;
  font-size: 12px;
}

#scroll-nav a span {
  text-align: center;
  vertical-align: middle;
  width: 180px;
  padding: 10px 0;
}

#scroll-nav:hover {
  width: auto;
}

#scroll-nav a:hover {
  left: 0;
}

#scroll-nav a:hover span {
  display: inline-block;
}

#scroll-nav a span em {
  font-style: normal;
}

@media screen and (max-width: 1023px) {
  #scroll-nav {
    right: auto;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    text-align: center;
  }

  #scroll-nav a {
    display: inline-block;
    flex: 0 1 100%;
    left: auto;
    margin-bottom: 0px;
  }

  #scroll-nav a:nth-child(2) {
    display: none;
  }

  #scroll-nav a i {
    width: auto;
    margin: 0px;
    display: inline-block;
    vertical-align: middle;
  }

  #scroll-nav a span:first-of-type {
    display: inline-block;
    width: auto;
  }

  #scroll-nav:hover {
    width: 100%;
  }

  #scroll-nav a:hover span:last-of-type {
    display: none;
  }
}




body {
  margin: 0;
  padding: 0;
  position: relative; /* Allows absolute positioning for child elements */
  min-height: 100vh; /* Ensures the body covers the full viewport height */
}

pointer-particles {
  position: fixed; /* Fixed positioning to ensure it stays in place relative to the viewport */
  top: 0;
  left: 0;
  width: 100vw; /* Full width of the viewport */
  height: 100vh; /* Full height of the viewport */
  z-index: -1; /* Place behind all content */
  pointer-events: none; /* Ensures it doesn't interfere with user interactions */
}

.main, .icon-boxes {
  position: relative; /* Ensure they are on top of the particle effect */
  z-index: 1; /* Keep content above the particles */
}



