/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #212529;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #559bcc;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ff7f11;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors */
:root {
  --nav-color: rgba(255, 255, 255, 0.5);
  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #559bcc;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets */

.light-background {
  --background-color: #f1f3f8;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #142e6c;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1c4097;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

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);
}

.hd-img {
  background: url(../img/header-bg.jpg);
}


.side-bg-img {
  margin-top: -70px;
  max-width: 400px;
  mix-blend-mode: multiply;
}

.hero {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  background: url(../img/hero-bg.webp);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.shadow {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.moto {
  padding-top: 2em;
  padding-bottom: 10em;
}

.logo {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: #ffffff;
}

header {
  color: #ffffff;
}

.header-container {
  padding-top: 100px;
  padding-bottom: 100px;
}

.btn-primary {
  background-color: var(--contrast-color);
  ;
  border-color: #e27213;
}

.heading-2 {
  color: #142e6c;
}

#hanging-icons h2 {
  color: #142e6c;
}

.svg-logo {
  width: 32px;
  height: 32px;
  padding-right: 10px;
}

.main-h1,
.h2-heading2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.main-p {
  color:
    color-mix(in srgb, #ffffff, transparent 30%);
  margin: 5px 0 10px 0;
  font-size: 20px;
  font-weight: 400;
}

.viber-p {
  color:
    color-mix(in srgb, #ffffff, transparent 30%);
  margin: 5px 0 10px 0;
  font-size: 15px;
  font-weight: 400;
}