/* 
*  CSS TABLE OF CONTENTS
*   
*  1 - Global
*  2 - Commons
*  3 - Navbar
*  4 - Homepage sections
*  5 - Pricing
*  6 - Includes
*  7 - Articles
*  8 - Support page
*  9 - Features page
*  10 - Best Google Apps directory
*  11 - Animations
*  12 - Fonts
*  13 - Components
*  14 - Products
*  15 - Tools
*/

/* ######## 0. COLOR SYSTEM ######## */

/* Colors */
  /* --primary-blue-dark: #1A53FF;
  --primary-blue-dark-hover: #0039E5;
  --primary-blue-light: #E8EEFF;
  --primary-blue-light-hover: #D1DDFF;

  --primary-coral-dark: #fc4b6d;
  --primary-coral-dark-hover: #E64261;
  --primary-coral-light: #FFE4E9;
  --primary-coral-light-hover: #FED2DB;

  --neutral-8: #04143A;
  --neutral-7: #364361;
  --neutral-6: #687289;
  --neutral-5: #9BA1B0;
  --neutral-4: #CDD0D8;
  --neutral-3: #E6E7EB;
  --neutral-2: #F2F3F5;
  --neutral-1: #FFFFFF
  --neutral-white-90: rgba(255, 255, 255, 0.9);
  --neutral-white-20: rgba(255, 255, 255, 0.2);

  --accent-gold: #FEC02E;

}  */

:root {
  --text-white: #FFFFFF;
  --text-black: #333333;
  --background-white: #FFFFFF;
  --background-blue: #4740F1;
  --background-blue-dark: #03143A;
  --background-blue-light: #F8FAFC;
  --background-coral: #fc4b6d;
  --background-linear-blue: linear-gradient(180deg, #090E68 0%, #1319AC 100%);
  --border-light-grey: #e6e7eb;
}


/* ######## 1. GLOBAL ######## */

* {
  -webkit-font-smoothing: antialiased;
}

html,
body {
  margin: 0;
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #04143a;
  scroll-behavior: smooth;
}

html {
  scroll-padding-top: 98px; /* height of sticky header */
}

/* Spacing */

body > main {
  margin-top: 2.5rem;
}

section {
  margin-bottom: 3rem;
}

/* Spacing utility class */

.space-y-5 {
  padding-top: 5.125rem;
  padding-bottom: 5.125rem;
}

@media (max-width: 575.98px) {
  .space-y-xs-3 {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.title-1,
h1 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 3rem;
  color: #04143a;
}

.title-2 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #04143a;
}

.title-2-semi-bold {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #04143a;
}

.title-3 {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #04143a;
}

.title-4 {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.title-centered {
  max-width: 720px;
  margin: auto;
  text-align: center;
}

h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #04143a;
}

h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

h4 {
  font-size: 1rem;
  font-weight: 700;
}

/* Body */

strong,
b,
.font-weight-bold {
  font-weight: 600;
}

a,
.text-link {
  cursor: pointer;
  color: #1a53ff;
  text-decoration: none;
}

a:hover {
  color: #fc4b6d;
  text-decoration: none;
}

a.link-svg:hover svg path {
  fill: #fc4b6d;
}

/* Actions */

.action-lg {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.5rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.action-sm {
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1.25rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

/* Generic styling */

.is-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.border-radius-lg {
  border-radius: 0.5rem;
}

.border-radius-sm {
  border-radius: 0.25rem;
}

/* Text colors */

.text-white {
  color: white;
}

.text-blue-dark {
  color: #1a53ff;
}

.text-blue-dark-reverse {
  color: #668cff;
}

.text-coral-dark {
  color: #fc4b6d;
}

.text-neutral-6 {
  color: #687289;
}

.text-neutral-4 {
  color: #cdd0d8;
}

.text-inherit {
  color: inherit;
}

.text-underline {
  text-decoration: underline;
}

/* Font weights */

.font-semibold {
  font-weight: 600;
}

.font-small {
  font-size: 0.875rem;
}

/* Shadows */

.shadow-default {
  box-shadow: 0px 4px 24px rgba(4, 20, 58, 0.04);
}

.shadow-active {
  box-shadow: 0px 4px 32px rgba(4, 20, 58, 0.08);
}

/* Header */

@media (min-width: 768px) {
  body > header:not(.blogpost-header) {
    position: sticky;
    top: 0;
    z-index: 10;
  }
}
/* Modal */

.modal h2 {
  line-height: 110%;
}
  
.modal-content {
  border-radius: 1.1rem !important;
}

.modal .close {
  font-weight: 500;
}

/* ######## 2. BUTTONS ######## */

.btn {
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 1.5rem;
  padding: 0.75rem 1.5rem;
  margin: 1rem 0;
  letter-spacing: 0.08rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease 0s;
}

.btn-sm {
  font-size: 0.75rem;
  line-height: 1.25rem;
  margin: 0.5rem 0;
}

button:hover,
.btn:hover,
.btn-sm:hover {
  text-decoration: none;
  cursor: pointer;
}

/* Primary buttons */

.btn-primary {
  display: block;
  border: 2px solid #fc4b6d;
  text-decoration: none;
  text-align: center;
  color: white;
  background-color: #fc4b6d;
  outline: none;
  cursor: pointer;
  text-wrap: nowrap;
}

.btn-primary:hover,
.btn-primary:active,
.show > .btn-primary.dropdown-toggle {
  color: #fff !important;
  background-color: #fc4b6d !important;
  border: 2px solid #fc4b6d !important;
}

.btn-primary:focus {
  box-shadow: 0 0 0 0.1rem rgb(252 75 109 / 80%);
  border: 2px solid white;
}

/* Secondary buttons */

.btn-secondary {
  text-decoration: none;
  text-align: center;
  color: #fc4b6d;
  border: 2px solid #fc4b6d;
  background-color: white;
  outline: none;
  cursor: pointer;
  display: block;
}

.btn-secondary:hover,
.btn-secondary:active {
  color: #fc4b6d !important;
  background-color: #ffe4e9 !important;
  border: 2px solid #fc4b6d !important;
}

.btn-secondary:focus {
  box-shadow: 0 0 0 0.1rem rgb(255 47 64 / 80%);
  border: 2px solid white;
}

.btn-group .btn-secondary.active {
  background-color: #fc4b6d !important;
  color: white !important;
  border-color: #fc4b6d !important;
  box-shadow: none !important;
}

/* Dark background primary*/

.btn-reverse {
  background-color: #fff;
  border: 2px solid #fff;
  color: #364361;
}

.btn-reverse:hover,
.btn-reverse:active {
  color: #364361 !important;
  background-color: #fff !important;
  transition: padding 0.5s ease 0s !important;
}

.btn-reverse:focus {
  box-shadow: 0 0 0 0.1rem rgb(252 255 255 / 80%);
  border: 2px solid white;
}

/* Dark background secondary */

.btn-reverse-outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn-reverse-outline:hover,
.btn-reverse-outline:active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.2) !important;
  transition: padding 0.5s ease 0s !important;
}

.btn-reverse:focus {
  box-shadow: 0 0 0 0.1rem rgb(252 255 255 / 80%);
  border: 2px solid white;
}

/* Actions buttons (download, tools) */

.btn-tertiary {
  display: block;
  border: 2px solid #1a53ff;
  text-decoration: none;
  text-align: center;
  color: white;
  font-weight: 700;
  background-color: #1a53ff;
  outline: none;
  cursor: pointer;
}

.btn-tertiary:hover,
.btn-tertiary:active {
  color: #fff !important;
  background-color: #184be6 !important;
  border: 2px solid #184be6 !important;
}

.btn-tertiary:focus {
  box-shadow: 0 0 0 0.1rem rgb(24 75 230 / 80%);
  border: 2px solid white;
}

.btn-tertiary-outline {
  display: block;
  border: 2px solid #1a53ff;
  text-decoration: none;
  text-align: center;
  color: #1a53ff;
  font-weight: 700;
  background-color: #fff;
  outline: none;
  cursor: pointer;
}

.btn-tertiary-outline:hover,
.btn-tertiary-outline:active {
  color: #1a53ff !important;
  background-color: #1a53ff1a !important;
  border: 2px solid #1a53ff !important;
}

.btn-tertiary-outline:focus {
  box-shadow: 0 0 0 0.1rem rgb(24 75 230 / 80%);
  border: 2px solid white;
}

/* Input group */

@media (max-width: 576px) {
  .input-group.input-group-responsive {
    display: block;
    flex-wrap: inherit;
    align-items: inherit;
  }

  .input-group.input-group-responsive > .form-control:not(:last-child) {
    border-radius: 0.5rem;
    width: 100%;
    display: block;
    flex: none;
    -ms-flex: none;
  }

  .input-group.input-group-responsive > .input-group-append {
    display: block;
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .input-group.input-group-responsive > .input-group-append > .btn {
    border-radius: 0.5rem;
    width: 100%;
    display: block;
  }

  .input-group.input-group-responsive > .input-group-append > .btn.py-0 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
}

/* #### 2.1 List #### */

ul.list-marketing-inline {
  margin: 0;
  padding: 0;
}

ul.list-marketing-inline li {
  padding: 0 1rem;
  display: flex;
  align-items: center;
}

ul.list-marketing-inline li::before {
  content: '';
  background-image: url(/assets/img/elements/tick-round.svg);
  background-repeat: no-repeat;
  min-width: 20px;
  min-height: 20px;
  display: inline-block;
  margin-right: 0.25rem;
}

@media (min-width: 576px) {
  ul.list-marketing-inline {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* #### 2.2 Insights #### */

.insight {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  margin: 0 auto 8px auto;
  padding: 8px 16px;
  background-color: rgb(233, 238, 253);
  cursor: pointer;
  font-size: 0.875rem;
  color: inherit;
  text-decoration: none;
}

.insight:hover {
  color: inherit;
  text-decoration: none;
}

.insight-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px
}

.insight-icon-label {
  margin: 0 8px 0 4px;
  font-weight: 600;
}

.insight-icon svg {
  width: 16px;
  height: 16px;
}

.insight-cta {
  margin-left: 16px;
  cursor: pointer;
  color: #1a53ff;
  text-decoration: none;
}

.insight-cta:hover {
  color: #fc4b6d;
  text-decoration: none;
}

/* ######## 3. Navbar ######## */

.mm-main-navbar {
  min-height: 75px;
  padding: 1rem;
  background-color: #fff;
}

.mm-main-navbar .navbar-brand {
  padding: 0 0 1rem 0;
  color: transparent;
}

.mm-main-navbar .nav-link {
  color: #04143a;
  font-weight: 600 !important;
  
}

@media (min-width: 992px) {
  .mm-main-navbar .nav-item {
    margin-right: 1.5rem;
  }

  .mm-main-navbar .nav-item.dropdown {
    margin-right: 0.75rem;
  }

  .mm-main-navbar .nav-item:last-child {
    margin-right: 0;
  }
  
  .mm-main-navbar .dropdown-menu {
    min-width: 650px !important;
    left: 50%;
    transform: translateX(-50%);
  }

  .mm-main-navbar .nav-item {
    align-self: center;
  }

  .mm-main-navbar .nav-link {
    text-align: center;
  }
}

.mm-main-navbar .nav-link:hover {
  color: #fc4b6d !important;
}

.mm-main-navbar .navbar-shadow {
  box-shadow: -2px -4px 20px 0px rgba(32, 41, 50, 0.12);
}

@media (max-width: 576px) {
  .mm-main-navbar {
    box-shadow: -2px -4px 20px 0px rgba(32, 41, 50, 0.12);
  }

  .mm-main-navbar .nav-item {
    font-size: 1.15rem;
    padding: 0.75rem 0;
  }

  .mm-main-navbar .nav-item .btn,
  .mm-main-navbar .nav-item .btn-sm {
    font-size: inherit;
  }
}

@media (max-width: 240px) {
  body {
    padding-top: 160px;
  }
}

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

/* Navbar toggler  */

.mm-main-navbar .icon-bar {
  width: 22px;
  height: 2px;
  background-color: #cdd0d8;
  display: block;
  transition: all 0.2s;
  margin-top: 4px;
}

.mm-main-navbar .navbar-toggler {
  border: none;
  background: transparent !important;
}

.mm-main-navbar .navbar-toggler:hover,
.mm-main-navbar .navbar-toggler:active,
.mm-main-navbar .navbar-toggler:focus {
  outline: none;
}

.mm-main-navbar .navbar-toggler .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}

.mm-main-navbar .navbar-toggler .middle-bar {
  opacity: 0;
}

.mm-main-navbar .navbar-toggler .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}

.mm-main-navbar .navbar-toggler.collapsed .top-bar {
  transform: rotate(0);
}

.mm-main-navbar .navbar-toggler.collapsed .middle-bar {
  opacity: 1;
}

.mm-main-navbar .navbar-toggler.collapsed .bottom-bar {
  transform: rotate(0);
}

/* Navbar dropdown */

.mm-main-navbar .dropdown-menu {
  margin-top: 0;
  border: 1px solid var(--border-light-grey);
  border-radius: 0.5rem;
  -webkit-box-shadow: 0px 4px 24px rgba(4, 20, 58, 0.02);
  box-shadow: 0px 4px 24px rgba(4, 20, 58, 0.02);
}

.mm-main-navbar .product-dropdown,
.mm-main-navbar .features-dropdown {
  margin: 0;
  color: #333;
  font-size: 0.875rem;
}

.mm-main-navbar .nav-item.dropdown .nav-link {
  display: flex;
}

.mm-main-navbar .nav-item.dropdown .nav-link::after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000000'%3E%3Cpath d='M24 24H0V0h24v24z' fill='none' opacity='.87'/%3E%3Cpath d='M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z'/%3E%3C/svg%3E");
}

.mm-main-navbar .nav-item.dropdown .nav-link:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fc4b6d'%3E%3Cpath d='M24 24H0V0h24v24z' fill='none' opacity='.87'/%3E%3Cpath d='M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z'/%3E%3C/svg%3E");
}

.mm-main-navbar .dropdown-menu-item a {
  color: inherit;
}

@media only screen and (min-width: 769px) {
  /* show drop down menu on hover for large devices */
  .mm-main-navbar .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
  }
}

.mm-main-navbar li.features-dropdown-item a,
.mm-main-navbar li.dropdown-menu-item a {
  display: flex;
  margin: 0.5rem 0;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.625s cubic-bezier(0, 0, 0.2, 1);
}

.mm-main-navbar li.features-dropdown-item a:hover,
.mm-main-navbar li.dropdown-menu-item a:hover {
  background-color: #e8eeff;
}

.mm-main-navbar .dropdown > .dropdown-menu.features-dropdown ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.25rem;
  -webkit-animation: fadeIn 0.2s;
  animation: fadeIn 0.25s;
  padding: 1rem;
}

.mm-main-navbar li.features-dropdown-item img {
  margin: 0.25rem 1rem 0.25rem 0.5rem;
  width: 65px;
  border-radius: 0.25rem;
}

.mm-main-navbar li.features-dropdown-item div:first-of-type {
  font-weight: 600;
}

.mm-main-navbar li.features-dropdown-all {
  grid-column-start: 1;
  grid-column-end: 3;
  text-align: center;
  margin: 1rem 0;
}

.mm-main-navbar li.features-dropdown-video {
  border-top: 1px solid #f0f0f4;
  grid-column-start: 1;
  grid-column-end: 3;
  margin: 0 -1rem;
  padding: 1rem 1rem 0 1rem;
}

.mm-main-navbar li.features-dropdown-video a {
  display: block;
  padding: 1rem;
  border-radius: 0.5rem;
  transition: all 0.625s cubic-bezier(0, 0, 0.2, 1);
  color: inherit;
}

.mm-main-navbar li.features-dropdown-video a:hover {
  background-color: #e8eeff;
  color: inherit;
}

@media only screen and (min-width: 769px) {
  .mm-main-navbar .product-dropdown .row .col:first-child,
  .mm-main-navbar .product-dropdown .row div[class^="col-"]:first-child {
    border-right: 1px solid #f0f0f4;
    padding-right: 1rem;
  }

  .mm-main-navbar .product-dropdown .row .col:last-child,
  .mm-main-navbar .product-dropdown .row div[class^="col-"]:last-child {
    padding-left: 1rem;
  }
}

.mm-main-navbar .dropdown-menu-footer {
  border-top: 1px solid #f0f0f4;
}

.mm-main-navbar .dropdown-menu-footer a:not(:hover) {
  color: inherit;
}

/* ######## 4. SECTIONS ######## */

/* #### 4.1 Values section #### */

section.values {
  margin: 0;
  position: relative;
}

section.homepage-values > .container {
  padding-top: 8rem;
  padding-bottom: 14rem;
}

.values svg {
  fill: #007bff;
}

.values-testimonials {
  text-align: center;
  color: #007bff;
  font-size: 0.875rem;
  font-weight: bold;
  margin: 0;
}

.values-svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: -8rem;
  background-image: url(../img/background/values.svg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

/* Values items */

@media (max-width: 1330px) {
  .values-items {
    margin: 0;
    width: 100%;
  }
}

.values-items {
  width: 100%;
  height: auto;
  position: relative;
  padding: 20px 0px 20px 80px;
}

.values-items .tab_icon {
  position: absolute;
  left: 15px;
  top: 30px;
  max-width: 35px;
}

.values-items h3 {
  line-height: 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  display: block;
  position: relative;
  padding-bottom: 0.25rem;
}

/* #### 4.2 Tutorial section ####*/

#steps1:before {
  content: '';
  height: 100%;
  top: -5px;
  left: 50%;
  position: absolute;
  display: inline-block;
  background-image: url(../img/elements/number1.svg);
  background-repeat: no-repeat;
  background-size: 40px;
  margin-left: -20px;
  width: 40px;
}

#steps2:before {
  content: '';
  height: 100%;
  top: -5px;
  left: 50%;
  position: absolute;
  display: inline-block;
  background-image: url(../img/elements/number2.svg);
  background-repeat: no-repeat;
  background-size: 40px;
  margin-left: -20px;
  width: 40px;
}

#steps3:before {
  content: '';
  height: 100%;
  top: -5px;
  left: 50%;
  position: absolute;
  display: inline-block;
  background-image: url(../img/elements/number3.svg);
  background-repeat: no-repeat;
  background-size: 40px;
  margin-left: -20px;
  width: 40px;
}

.tutorial-card {
  padding: 2rem 1rem;
  width: 100%;
  border: 1px solid var(--border-light-grey);
  border-radius: 0.5rem;
  transition: all 0.625s cubic-bezier(0, 0, 0.2, 1);
  background-color: white;
}

.tutorial-card:hover {
  background-color: white;
  -webkit-box-shadow: 0px 4px 32px rgba(4, 20, 58, 0.04);
  box-shadow: 0px 4px 32px rgba(4, 20, 58, 0.04);
}

/* #### 4.3 Blogposts section ####*/

.blogpost-list {
  list-style: none;
  padding: 0;
  justify-content: space-around;
}

.blogpost-card-img-top {
  width: 100%;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.blogpost-card {
  width: 100%;
  height: 100%;
  border: 1px solid var(--border-light-grey);
  border-radius: 0.5rem;
  background-color: white;
  transition: all 0.625s cubic-bezier(0, 0, 0.2, 1);
}

.blogpost-card:hover {
  -webkit-box-shadow: 0px 4px 24px rgba(4, 20, 58, 0.04);
  box-shadow: 0px 4px 24px rgba(4, 20, 58, 0.04);
}

.blogpost-card h5 {
  color: #04143a;
}

/* #### 4.4 CTA section ####*/

.cta-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: white;
  border: 1px solid var(--border-light-grey);
  border-radius: 0.5rem;
  transition: all 0.625s cubic-bezier(0, 0, 0.2, 1);
  padding: 1rem 1rem 0 1rem;
}

/* ####### 5. PRICING ######## */

/* #### 5.1 Pricing cards #### */

.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--background-white);
  border: 1px solid var(--border-light-grey);
  border-radius: 0.5rem;
  transition: all 0.625s cubic-bezier(0, 0, 0.2, 1);
  padding: 1rem 1rem 0 1rem;
}

.recommended-pricing-card {
  border-color: var(--background-coral);
  border-width: 2.5px;
}

.pricing-card:hover {
  background-color: white;
  -webkit-box-shadow: 0px 4px 24px rgba(4, 20, 58, 0.04);
  box-shadow: 0px 4px 24px rgba(4, 20, 58, 0.04);
}

.pricing-card-sub-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  background: var(--background-white);
  box-shadow: 0 0 0 1px var(--border-light-grey);
}

.pricing-card-sub-table thead th {
  color: var(--text-black);
  font-weight: 500;
  border: none;
  border-bottom: 1px solid var(--border-light-grey);
  text-align: left;
  padding: 0.3rem 0.75rem;
}

.pricing-card-sub-table thead th:last-child {
  text-align: right;
}

.pricing-card-sub-table tbody tr {
  border-top: 1px solid var(--border-light-grey);
}

.pricing-card-sub-table tbody td {
  color: #333333;
  font-weight: 400;
  border: none;
  padding: 0.3rem 0.75rem;
}

.pricing-card-sub-table tbody td:last-child {
  text-align: right;
}

.pricing-card-sub-table tbody tr:first-child td {
  border-top: none;
}

.pricing-card-sub-table tr:last-child td:first-child {
  border-bottom-left-radius: 0.5rem;
}
.pricing-card-sub-table tr:last-child td:last-child {
  border-bottom-right-radius: 0.5rem;
}
.pricing-card-sub-table thead tr th:first-child {
  border-top-left-radius: 0.5rem;
}
.pricing-card-sub-table thead tr th:last-child {
  border-top-right-radius: 0.5rem;
}

/* #### 5.2 Pricing header #### */

.pricing-card-header {
  background-color: white;
  padding: 0 0.5rem;
}

.pricing-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: bold;
}

@media (min-width: 768px) {
  .pricing-card-subtitle {
    display: none;
  }
}

/* #### 5.3 Pricing card body ####*/

.pricing-card-body {
  padding: 0 0.5rem;
  flex: 1 0 auto;
}

.pricing-card-body ul {
  margin: 0.5rem 0;
  padding-left: 0;
  list-style: none;
}

.pricing-card .btn {
  width: 100%;
  cursor: pointer;
}

.pricing-card-additional-features {
  color: #687289;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 500;
  line-height: 1.3;
}

.pricing-card-price {
  margin: 1.5rem 0;
  font-size: 2.5rem;
  font-weight: bold;
}

.pricing-card-currency {
  font-size: 60%;
  min-width: 20px;
  display: inline-block;
}

.pricing-card-price-original {
  display: block;
  font-weight: normal;
  font-size: 1rem;
  opacity: 0.5;
}

.pricing-card-price-original .pricing-card-currency {
  font-size: inherit;
  min-width: auto;
  display: inline;
}

.pricing-card-price strike .pricing-card-recurrence {
  display: none;
}

.pricing-card-price strike sup {
  font-size: inherit;
  top: 0;
}

/* #### 5.4 Pricing card footer ####*/

.pricing-card-footer {
  text-align: center;
}

/* #### 5.5 Pricing features ####*/

.pricing-plan-features {
  min-height: 100px; /* can be removed to obtain squared pricings */
  text-align: left;
  display: block;
}

.pricing-plan-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
}

.pricing-plan-features li:not(.font-weight-bold:first-child):before {
  content: '';
  min-width: 20px;
  height: 20px;
  margin-right: 0.5rem;
  display: inline-block;
  background-image: url(../img/elements/tick-round.svg);
  background-repeat: no-repeat;
}

.lifetime-plan .pricing-plan-features li:not(.font-weight-bold:first-child):before,
.business-plan .pricing-plan-features li:not(.font-weight-bold:first-child):before {
  background-image: url(../img/elements/tick-round-white.svg);
}

/* #### 5.6 Pricing features grid ####*/

.pricing-features-grid th {
  padding: 1rem 0;
}

.pricing-features-grid td {
  padding: 0.5rem 0;
}

.pricing-plan-features li a,
.pricing-features-grid tbody td a {
  color: inherit;
  text-decoration: none;
}

@media (min-width: 768px) {
  .pricing-features-grid thead {
    position: sticky;
    top: 95px;
    background: white;
  }

  .pricing-features-grid tbody td span[data-toggle="tooltip"] {
    border-bottom: 1px dotted #666;
  }
}

/* What's included features */

@media (min-width: 768px) {
  #pricing-included-features {
    position: sticky;
    position: -webkit-sticky; /* Safari */
    top: 100px;
    align-self: flex-start; /* set the height of flexbox element to auto */
  }
}

/* Discounts and launch offer */

sup {
  font-weight: 400;
  font-size: 0.875rem;
}

#launch-offer {
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  position: absolute;
  top: 0px;
  right: 8%;
  border-radius: 0 0 0.25rem 0.25rem;
  padding: 0.25rem 0.75rem;
  background: #fc4b6d;
}

@media screen and (max-width: 992px) {
  div[data-checkout-product='free'] {
    display: none;
  }
}

/* #### 5 > Sales #### */

.sales-form {
  display: flex;
  flex-direction: column;
  background-color: white;
  -webkit-box-shadow: 0px 4px 24px rgba(4, 20, 58, 0.02);
  box-shadow: 0px 4px 24px rgba(4, 20, 58, 0.02);
  border: 1px solid var(--border-light-grey);
  border-radius: 0.5rem;
  transition: all 0.625s cubic-bezier(0, 0, 0.2, 1);
  padding: 1rem;
}

.sales-form:hover {
  background-color: white;
  -webkit-box-shadow: 0px 4px 24px rgba(4, 20, 58, 0.04);
  box-shadow: 0px 4px 24px rgba(4, 20, 58, 0.04);
}

/* #### 5.10 Promo code page #### */

.promo-code-cards {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 960px;
  background-color: white;
  -webkit-box-shadow: 0px 4px 24px rgba(4, 20, 58, 0.02);
  box-shadow: 0px 4px 24px rgba(4, 20, 58, 0.02);
  border: 1px solid var(--border-light-grey);
  border-radius: 0.5rem;
  transition: all 0.625s cubic-bezier(0, 0, 0.2, 1);
  padding: 2rem 2rem;
  margin: 1rem auto;
}

.promo-code-title-container {
  text-align: left;
  padding: 1rem 0;
}

.promo-code-cta-container {
  border-top: 1px solid var(--border-light-grey);
  padding: 1rem 0 0 0;
  width: 100%;
}

@media (min-width: 992px) {
  .promo-code-cards {
    flex-direction: row;
    padding: 0rem 2rem;
  }
  .promo-code-cta-container {
    border-left: 1px solid var(--border-light-grey);
    padding: 0 0 0 2rem;
    width: auto;
  }
}

.promo-code-cards:hover {
  background-color: white;
  -webkit-box-shadow: 0px 4px 24px rgba(4, 20, 58, 0.04);
  box-shadow: 0px 4px 24px rgba(4, 20, 58, 0.04);
}

.promo-code-countdown {
  color: #fc4b6d;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
/* ######## 6. INCLUDES ######## */

/* #### 6.1 Testimonials #### */

.testimonials-logo {
  margin: 1rem;
  max-width: 150px;
  fill: #9ba1b0;
}

.review-card {
  margin: 1rem 0;
  border: 1px solid var(--border-light-grey);
  border-radius: 0.5rem;
  background-color: white;
  padding: 2rem;
  transition: all 0.625s cubic-bezier(0, 0, 0.2, 1);
}

.review-card:hover {
  background-color: white;
  -webkit-box-shadow: 0px 4px 24px rgba(4, 20, 58, 0.04);
  box-shadow: 0px 4px 24px rgba(4, 20, 58, 0.04);
}

@media (min-width: 768px) {
  .review-shifted {
    margin-top: 2rem !important;
  }
}

.review-text {
  font-weight: 500;
  padding-left: 1rem;
}

.review-profile p {
  margin-bottom: 0 !important;
}

@media (max-width: 400px) {
  .review-stars {
    display: none;
  }
}

/* #### 6.2 FAQ & ACCORDIONS #### */

.faq .card {
  border: none;
}

.js-accordion {
  margin: 2.5rem 0;
}

.faq .accordions .card-header,
.js-accordion .accordion-item {
  background-color: white;
  border-top: 1px solid #f2f3f5;
  border-bottom: none;
}

.js-accordion .accordion-item:last-child {
  border-bottom: 1px solid #f2f3f5;
}

.accordions .card:first-of-type > .card-header {
  border-top: none;
}

.faq .accordions .card-header {
  padding: 1rem 0;
  font-weight: 600;
}

.faq .accordions .card-body {
  padding: 0;
}

.js-accordion .accordion-heading,
.faq .card-header.accordionpointer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq .card-header .faq-expander {
  height: 1.5rem;
}

.faq .card-header .faq-expander:after {
  content: url('data:image/svg+xml; utf8, <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18 15L12 9L6 15" stroke="%231A53FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.faq .card-header.collapsed .faq-expander:after {
  content: url('data:image/svg+xml; utf8, <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke="%231A53FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.faq .accordions {
  max-width: 960px;
  margin: auto;
}

.js-accordion .accordion-heading::after {
  width: 24px;
  height: 24px;
  content: url('data:image/svg+xml; utf8, <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18 15L12 9L6 15" stroke="%231A53FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  transition: transform 0.625s ease;
}

.js-accordion .accordion-heading.collapsed::after {
  transform: rotate(180deg);
}

.js-accordion .accordion-heading h2,
.js-accordion .accordion-heading h3,
.js-accordion .accordion-heading h4,
.js-accordion .accordion-heading h5 {
  margin: 0;
  padding: 1.5rem 0;
  font-size: 1.2rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .js-accordion .accordion-heading::after,
  .faq .faq-expander {
    display: none;
  }
}

.js-checklist input[type="checkbox"] {
  appearance: none;
  background-color: #fff;
  margin: 0.25rem;
  font: inherit;
  color: currentColor;
  width: 2rem;
  height: 2em;
  border: 0.25rem solid #687289;
  border-radius: 50%;
  /* transform: translateY(-0.075rem); */
  display: grid;
  place-content: center;
  cursor: pointer;
}

.js-checklist input[type="checkbox"]::before {
  content: "";
  width: 1rem;
  height: 1rem;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #0078FA;
  transform-origin: bottom left;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.js-checklist input[type="checkbox"]:checked {
  border-color: #0078FA;
}

.js-checklist input[type="checkbox"]:checked::before {
  transform: scale(1);
}

.js-checklist.js-accordion .accordion-heading h2,
.js-checklist.js-accordion .accordion-heading h3,
.js-checklist.js-accordion .accordion-heading h4,
.js-checklist.js-accordion .accordion-heading h5 {
  margin-right: auto;
  margin-left: 1rem;
}

.js-checklist input[type="checkbox"]:checked + h3 {
  color: #0078FA;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
}

/* #### 6.3 Footer #### */

.footer {
  position: relative;
}

.footer-svg {
  width: 100%;
  background-image: url(../img/background/footer.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.footer a,
.footer p,
.footer .text-small {
  margin: 0;
  font-size: 0.875rem;
  text-decoration: none;
  color: white;
}

.footer a:hover {
  color: #fc4b6d;
  transition: all 0.1s cubic-bezier(0, 0, 0.2, 1);
  cursor: pointer;
}

.footer-columns {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.footer-columns h4,
.footer-columns h4 a {
  font-size: 0.875rem;
  margin: 0;
  padding: 0;
  font-weight: 600;
}

.footer-breadcrumb ul {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-breadcrumb ul > li {
  display: inline-block;
}

.footer-breadcrumb span[itemprop='name']:not(:hover) {
  opacity: 0.75;
}

.subfooter {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #a2a4cf;
}

.footer-social-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 2;
}

.footer-social-links li {
  margin: 0 1rem 0 0;
  padding: 0;
  display: inline-flex;
  width: 22px;
  height: 20px;
  vertical-align: middle;
}

.footer-social-links li:last-child {
  margin-right: 0;
}

.footer-social-links li a {
  display: inline-flex;
  font-size: unset;
  align-content: center;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.footer-social-links li a.twitter:hover {
  color: rgb(74, 154, 228);
}

.footer-social-links li a.youtube:hover {
  color: rgb(255, 0, 0);
}

.footer-social-links li a.linkedin:hover {
  color: rgb(48, 113, 170);
}

.footer-social-links li a.rss:hover {
  color: rgb(224, 133, 59);
}

@media (max-width: 992px) {
  .footer-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
    column-gap: 20px;
  }

  .subfooter {
    display: block;
    text-align: center;
  }

  .footer-social-links {
    margin: 0.25rem 0;
    padding: 0;
  }
}

/* Footer display for Firefox */
@-moz-document url-prefix() {
  body > footer > div > p {
    margin-top: -0.3rem;
    color: white;
  }
}

/* ######## 7. Articles & Landing Pages ######## */

article h2 {
  font-size: 1.5rem;
}

article .container p {
  line-height: 1.75rem;
}

article .container ul, article .container ol {
  margin: 1rem 0;
}

article img :first-of-type {
  -webkit-box-shadow: 0px 4px 24px rgba(4, 20, 58, 0.02);
  box-shadow: 0px 4px 24px rgba(4, 20, 58, 0.02);
  padding: 0;
  height: auto;
  transition: all 0.625s cubic-bezier(0, 0, 0.2, 1);
}

.article-container {
  max-width: 960px;
  margin: auto;
}

.comparison-table {
  margin: 1rem 0;
  overflow-x: auto;
}

.comparison-table thead th {
  border: none;
  vertical-align: middle;
  font-size: 1.2rem;
}

.comparison-table thead th img {
  max-height: 30px;
  margin: 0.25rem 0;
  display: block;
}

.comparison-table tr:first-of-type td {
  border: none;
}

.comparison-table th:nth-child(2),
.comparison-table td:nth-child(2) {
  background-color: #e8eeff;
}

.comparison-table th:nth-child(2) {
  border-radius: 0.5rem 0.5rem 0 0;
}

.comparison-table tr:last-of-type td:nth-child(2) {
  border-radius: 0 0 0.5rem 0.5rem;
}

.comparison-table td {
  border-top: 1px solid var(--border-light-grey);
  vertical-align: middle;
}

ol.education-list li::marker {
  font-size: 1.25rem;
  font-weight: bold;
}

/* ######## Features pages ######## */

.features-grid {
  display: -ms-grid;
  display: grid;
  width: 100%;
  grid-auto-columns: 1fr;
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.features-list-grid {
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 1.5rem;
  width: 100%;
}

@media (min-width: 992px) {
  .features-grid {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .features-list-grid {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

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

.features-list-grid li {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.25rem;
}

.features-list-grid li:before {
  content: '';
  min-width: 20px;
  height: 20px;
  margin-right: 1rem;
  display: inline-block;
  background-image: url(../img/elements/tick-round.svg);
  background-repeat: no-repeat;
}

.features-sections img {
  max-height: 300px;
  margin-right: auto !important;
  margin-left: auto !important;
  margin-bottom: 1rem;
  display: block;
}

.features-card {
  padding: 1rem;
  border-radius: 0.5rem;
  transition: all 0.625s cubic-bezier(0, 0, 0.2, 1);
}

.features-card:hover {
  background-color: #e8eeff;
}

.features-card h2 {
  font-size: 1.5rem;
}

/* ######## Features > Home Features pages ######## */

.features-gradient {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2;
  content: "";
  right: -15%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #FFF 100%);
}

.features-light-card {
  height: auto;
  width: 100%;
  border: 1px solid var(--border-light-grey);
  border-radius: 0.5rem;
  background-color: white;
  transition: all 0.625s cubic-bezier(0, 0, 0.2, 1);
  position: relative;
  border-radius: 8px;
  padding: 24px;
  overflow: hidden;
}

.features-primary-light-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
    border: 1px solid var(--border-light-grey);
    border-radius: 0.5rem;
    background-color: white;
    transition: all 0.625s cubic-bezier(0, 0, 0.2, 1);
    position: relative;
    border-radius: 8px;
    padding: 24px;
    overflow: hidden;  
}

.features-secondary-dark-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
  border: 1px solid #12285C;
  border-radius: 0.5rem;
  background-color: #061A49;
  transition: all 0.625s cubic-bezier(0, 0, 0.2, 1);
  position: relative;
  border-radius: 8px;
  padding: 24px;
  overflow: hidden;
}

.features-dark-card {
  height: auto;
  width: 100%;
  border: 1px solid #12285C;
  border-radius: 0.5rem;
  background-color: #061A49;
  transition: all 0.625s cubic-bezier(0, 0, 0.2, 1);
  position: relative;
  border-radius: 8px;
  padding: 24px;
  overflow: hidden;
}

.features-main-img-container {
  border: 1px solid var(--border-light-grey);
  position: relative;
  overflow: hidden;
  overflow-y: hidden;
  border-radius: 8px;
  max-height: 100%;
  height: 100%;
  width: 100%;
  background-color: #F8FAFC;
}

.features-main-img {
  object-fit: cover;
  object-position: left;
  border-radius: 8px;
  width: 90%;
}

.features-section-dark {
  background-color: #04143A;
}

/* ######## Email tool ######## */

.email-tool-form {
  border: 1px solid var(--border-light-grey);
  border-radius: 0.5rem;
  padding: 1rem;
}

.blogpost-content .email-tool-form {
  margin: 2rem 0;
}

/* ######## Email Glossary ######## */

.email-glossary table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
}

.email-glossary table th,
.email-glossary table td {
  padding: 10px;
  border: 1px solid #ddd;
}

.email-glossary table th {
  text-align: left;
  background-color: #f2f2f2;
  font-weight: bold;
}

.email-glossary table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.email-glossary article p > img:not([width]) {
  width: 100%;
}

/* ######## Best Google Apps Directory ######## */

.gapps-directory {
  display: -ms-grid;
  display: grid;
  width: 100%;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 2rem;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

@media (min-width: 576px) and (max-width: 992px) {
  .gapps-directory {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .gapps-directory {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .gapps-directory {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.gapps-categories-card,
.gapps-products-list-card {
  padding: 1rem 1.2rem;
  width: 100%;
  min-height: 100%;
  border: 1px solid var(--border-light-grey);
  border-radius: 0.5rem;
  transition: all 0.625s cubic-bezier(0, 0, 0.2, 1);
  background-color: white;
  -webkit-box-shadow: 0px 4px 24px rgba(4, 20, 58, 0.02);
  box-shadow: 0px 4px 24px rgba(4, 20, 58, 0.02);
}

.gapps-categories-card {
  text-align: center;
}

.gapps-products-list-card {
  min-width: 0;
}

.gapps-categories-card:hover,
.gapps-products-list-card:hover {
  -webkit-box-shadow: 0px 4px 24px rgba(4, 20, 58, 0.04);
  box-shadow: 0px 4px 24px rgba(4, 20, 58, 0.04);
}

.gapps-categories-card img,
.gapps-products-list-card img {
  width: 50px;
  height: 50px;
  margin: 0.5rem;
}

.gapps-products-list-card img {
  align-self: center;
}

.gapps-categories-card h2,
.gapps-products-list-card h2 {
  font-size: 1.2rem;
}

.gapps-categories-card p,
.gapps-products-list-card p {
  color: black;
  word-break: break-word;
}

.gapps-products-list-card p,
.gapps-categories-card p {
  flex: 1 0 auto;
}

.gapps-products-list-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
}

.gapps-categories-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gapps-category-page {
  max-width: 960px;
  margin: auto;
}

.gapps-products-page-card {
  margin: 1.5rem 0;
  padding: 1rem 2rem;
  width: 100%;
  min-height: 100%;
  border: 1px solid var(--border-light-grey);
  border-radius: 0.5rem;
  transition: all 0.625s cubic-bezier(0, 0, 0.2, 1);
  background-color: white;
  -webkit-box-shadow: 0px 4px 24px rgba(4, 20, 58, 0.02);
  box-shadow: 0px 4px 24px rgba(4, 20, 58, 0.02);
}

.gapps-products-page-card img {
  width: 3rem;
  margin: 0.5rem;
}

.gapps-products-page-card h3 a {
  color: inherit;
}

.gapps-products-page-card-subtitle {
  font-size: 0.875rem;
}

/* ######## 11. Animations ######## */

/* Success and fail UIs */

.floating {
  animation-name: floating;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes floating {
  from {
    transform: translate(0, 0px);
  }
  65% {
    transform: translate(0, 3px);
  }
  to {
    transform: translate(0, -0px);
  }
}

/* FadeIn */

.fade-in {
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 0.5s;
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ######## 12. Fonts ######## */

/* poppins-regular - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/poppins-v19-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''), url('../fonts/poppins-v19-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/poppins-v19-latin-regular.woff2') format('woff2'),
    /* Super Modern Browsers */ url('../fonts/poppins-v19-latin-regular.woff') format('woff'),
    /* Modern Browsers */ url('../fonts/poppins-v19-latin-regular.ttf') format('truetype'),
    /* Safari, Android, iOS */ url('../fonts/poppins-v19-latin-regular.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-italic - latin */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/poppins-v19-latin-italic.eot'); /* IE9 Compat Modes */
  src: local(''), url('../fonts/poppins-v19-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/poppins-v19-latin-italic.woff2') format('woff2'),
    /* Super Modern Browsers */ url('../fonts/poppins-v19-latin-italic.woff') format('woff'), /* Modern Browsers */ url('../fonts/poppins-v19-latin-italic.ttf') format('truetype'),
    /* Safari, Android, iOS */ url('../fonts/poppins-v19-latin-italic.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-500 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/poppins-v19-latin-500.eot'); /* IE9 Compat Modes */
  src: local(''), url('../fonts/poppins-v19-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/poppins-v19-latin-500.woff2') format('woff2'),
    /* Super Modern Browsers */ url('../fonts/poppins-v19-latin-500.woff') format('woff'), /* Modern Browsers */ url('../fonts/poppins-v19-latin-500.ttf') format('truetype'),
    /* Safari, Android, iOS */ url('../fonts/poppins-v19-latin-500.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-500italic - latin */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/poppins-v19-latin-500italic.eot'); /* IE9 Compat Modes */
  src: local(''), url('../fonts/poppins-v19-latin-500italic.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */ url('../fonts/poppins-v19-latin-500italic.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/poppins-v19-latin-500italic.woff') format('woff'),
    /* Modern Browsers */ url('../fonts/poppins-v19-latin-500italic.ttf') format('truetype'),
    /* Safari, Android, iOS */ url('../fonts/poppins-v19-latin-500italic.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-600 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins-v19-latin-600.eot'); /* IE9 Compat Modes */
  src: local(''), url('../fonts/poppins-v19-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/poppins-v19-latin-600.woff2') format('woff2'),
    /* Super Modern Browsers */ url('../fonts/poppins-v19-latin-600.woff') format('woff'), /* Modern Browsers */ url('../fonts/poppins-v19-latin-600.ttf') format('truetype'),
    /* Safari, Android, iOS */ url('../fonts/poppins-v19-latin-600.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-600italic - latin */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins-v19-latin-600italic.eot'); /* IE9 Compat Modes */
  src: local(''), url('../fonts/poppins-v19-latin-600italic.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */ url('../fonts/poppins-v19-latin-600italic.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/poppins-v19-latin-600italic.woff') format('woff'),
    /* Modern Browsers */ url('../fonts/poppins-v19-latin-600italic.ttf') format('truetype'),
    /* Safari, Android, iOS */ url('../fonts/poppins-v19-latin-600italic.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-700 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/poppins-v19-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''), url('../fonts/poppins-v19-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/poppins-v19-latin-700.woff2') format('woff2'),
    /* Super Modern Browsers */ url('../fonts/poppins-v19-latin-700.woff') format('woff'), /* Modern Browsers */ url('../fonts/poppins-v19-latin-700.ttf') format('truetype'),
    /* Safari, Android, iOS */ url('../fonts/poppins-v19-latin-700.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-700italic - latin */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/poppins-v19-latin-700italic.eot'); /* IE9 Compat Modes */
  src: local(''), url('../fonts/poppins-v19-latin-700italic.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */ url('../fonts/poppins-v19-latin-700italic.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/poppins-v19-latin-700italic.woff') format('woff'),
    /* Modern Browsers */ url('../fonts/poppins-v19-latin-700italic.ttf') format('truetype'),
    /* Safari, Android, iOS */ url('../fonts/poppins-v19-latin-700italic.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-800 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/poppins-v19-latin-800.eot'); /* IE9 Compat Modes */
  src: local(''), url('../fonts/poppins-v19-latin-800.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/poppins-v19-latin-800.woff2') format('woff2'),
    /* Super Modern Browsers */ url('../fonts/poppins-v19-latin-800.woff') format('woff'), /* Modern Browsers */ url('../fonts/poppins-v19-latin-800.ttf') format('truetype'),
    /* Safari, Android, iOS */ url('../fonts/poppins-v19-latin-800.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-800italic - latin */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/poppins-v19-latin-800italic.eot'); /* IE9 Compat Modes */
  src: local(''), url('../fonts/poppins-v19-latin-800italic.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */ url('../fonts/poppins-v19-latin-800italic.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/poppins-v19-latin-800italic.woff') format('woff'),
    /* Modern Browsers */ url('../fonts/poppins-v19-latin-800italic.ttf') format('truetype'),
    /* Safari, Android, iOS */ url('../fonts/poppins-v19-latin-800italic.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-900 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/poppins-v19-latin-900.eot'); /* IE9 Compat Modes */
  src: local(''), url('../fonts/poppins-v19-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/poppins-v19-latin-900.woff2') format('woff2'),
    /* Super Modern Browsers */ url('../fonts/poppins-v19-latin-900.woff') format('woff'), /* Modern Browsers */ url('../fonts/poppins-v19-latin-900.ttf') format('truetype'),
    /* Safari, Android, iOS */ url('../fonts/poppins-v19-latin-900.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-900italic - latin */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/poppins-v19-latin-900italic.eot'); /* IE9 Compat Modes */
  src: local(''), url('../fonts/poppins-v19-latin-900italic.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */ url('../fonts/poppins-v19-latin-900italic.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/poppins-v19-latin-900italic.woff') format('woff'),
    /* Modern Browsers */ url('../fonts/poppins-v19-latin-900italic.ttf') format('truetype'),
    /* Safari, Android, iOS */ url('../fonts/poppins-v19-latin-900italic.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* ######## 13. Components ######## */

/* Component > Feedback form */

.feedback-form {
  margin: auto;
  padding: 1rem;
  background-color: white;
  border: 1px solid var(--border-light-grey);
  border-radius: 0.5rem;
  max-width: 600px;
}

.feedback-form input[type='radio'] {
  display: none;
}

.feedback-form label {
  cursor: pointer;
  padding: 0 0.5rem;
  margin: 0;
  font-size: 2rem;
}

.feedback-form label span {
  opacity: 0.8;
}

.feedback-form input:checked + span {
  opacity: 1;
  font-size: 2.5rem;
}

/* Component > Top banner */

#top-banner {
  background: #e95970;
  color: white;
  text-align: center;
  padding: 1.2rem;
  font-weight: 800;
}

/* Component > Subscribe form */

.form-subscribe {
  background-color: #E9EEFD;
  text-align: center;
  border-radius: 0.5rem;
}

.form-subscribe form input:not(:focus) {
  background: transparent;
}

.form-subscribe form input:not(:focus)::placeholder {
  color: inherit;
}

@media screen and (min-width: 992px) {
  .form-subscribe {
    text-align: left;
  }

  .form-subscribe form {
    width: 320px;
  }
}

/* Components > Comparison section */

.features-comparison-section {
  background: var(--background-linear-blue);
  padding: 3rem 0;
}

.features-comparison-section p {
  font-size: 16px;
  margin-bottom: 40px;
}

.features-comparison-card {
  background-color: var(--background-white);
  border-radius: 8px;
  padding: 20px;
}

.features-comparison-card .features-comparison-card-list {
  list-style: none;
  padding: 0;
}

.features-comparison-card .features-comparison-card-list-item {
  display: flex;
  align-items: flex-start;
  font-size: 16px;
  margin-bottom: 10px;
}

.features-comparison-card li:last-child {
  margin-bottom: 0;
}

.features-comparison-card li .icon {
  font-size: 18px;
  margin-right: 10px;
}

/* Components > Dark section */

.features-dark-section {
  background: var(--background-linear-blue);
  padding: 3rem 0;
}

.features-dark-section-description {
  opacity: 0.75;
}

.features-dark-section .btn {
  width: fit-content;
}

/* Components > Step section */

.step--item-image {
  border-radius: 8px;
  border: solid 1px var(--border-light-grey);
}

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

.step--item-list li {
  display: flex;
  align-items: start;
  margin-bottom: 1rem;
}

/* Components > CTA section */

.cta-section {
  background: var(--background-blue-dark);
  padding: 5.125rem 0;
}

/* Components > Logos section */

.logos-section {
  background-color: var(--background-blue);
  padding: 5.125rem 0;
}

.logos-section-list {
  list-style: none;
  gap: 2rem;
}

.logos-section-separator {
  display: block;
  height: 9px;
  width: 9px;
  border-radius: 50%;
  background-color: var(--text-white);
}

/* Components > Card and text */

.card-and-text-section {
  padding: 5.125rem 0;
}

/* Components > Quote */

.quote-section {
  background: var(--background-linear-blue);
  padding: 5.125rem 0;
}

.quote-section blockquote {
  font-size: 1.5rem;
  color: var(--text-white);
}

@media (max-width: 575.98px) {
  .quote-section blockquote {
    font-size: 1.3rem;
  }

  .quote-section-author {
    font-size: 1.3rem;
  }
}

.quote-section-author {
  font-size: 1.5rem;
  font-style: italic;
}

.quote-section-container {
  border-left: 6px solid rgba(255, 255, 255, 0.69);
  padding-left: 1.5rem;
}

/* Components > Form section */

.form-section {
  background: var(--background-linear-blue);
  padding: 5.125rem 0;
}


/* Components > Multiple button section */

.multiple-cta-section-button-group {
  gap: 1rem;
}

/* Components > Img CTA and text section */

.img-cta-and-text-section-section-button-group {
  gap: 1rem;
}

/* Components > Template section */

.template-card {
  border-radius: 8px;
  border: 1px solid var(--border-light-grey);
  padding: 0.5rem;
  background-color: var(--background-blue-light);
  color: inherit;
}

/* ######## 14. Products ######## */

/* Product > Gmail */

.product-card-img { 
  border: 1px solid var(--border-light-grey);
  border-radius: 8px;
}

.gmail-tutorial-section {
  margin-bottom: -4rem;
}

/* Product > Outlook */

.outlook-tutorial-section {
  background-color: var(--background-blue-dark);
  padding: 5.125rem 0;
}

/* ######## 15. Tools ######## */

body.tool .main-container {
  border: 1px solid var(--border-light-grey);
}