/* 
Theme Name: Spotlight
Description: Spotlight is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.2
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*
    Add your custom styles here
*/

/* Link Styles */

a, a:active, a:visited {
  color: #0069ff;
} 

a:hover {
  color: #000000;
}


/* Heading H1-H6 Styling */

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", serif;
  color: #3a3a3a;
  line-height: 35px;
  font-weight:500;
  letter-spacing: 1px;
}

h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.3;
}

h3 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
}

h4 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
}

h5 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
}

h6 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
   margin-bottom: 20px;
}


/* Body text styling */

body {
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
}


.tooltip {
  position: relative;
  display: inline-block;
  color: #999;
}

.tooltip:hover {
  color: #202225;
}

/* Tooltip text */
.tooltip .tooltiptext {
 visibility: hidden;
  width: 130px;
  background-color: #202225;
  font-size: 12px;
  color: #fff;
  text-align: center;
  padding: 10px 10px 12px;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 10;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  margin-top: 4px;
}

.tooltiptext a {
    color: #fff !important;
    text-decoration: underline;
}

.tooltiptext a:hover {
    font-weight: bold;
}

.tooltip .tooltiptext {
  top: 100%;
  left: 50%;
  margin-left: -60px; /* Use half of the width (120/2 = 60), to center the tooltip */
}

.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  bottom: 100%;  /* At the top of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #f1f1f1 transparent;
}