/*--------------------------------------------------------------
# Import Base
--------------------------------------------------------------*/
/* Poppins */
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Thin.ttf");
  font-weight: 100;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-ExtraLight.ttf");
  font-weight: 200;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Medium.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Regular.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-SemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-ExtraBold.ttf");
  font-weight: 800;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Black.ttf");
  font-weight: 900;
}
/* Fonts */
:root {
  --default-font: "Poppins" !important;
  --heading-font: "Poppins" !important;
  --nav-font: "Poppins" !important;
}

/* 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 */
  --background-black-color: #000000;
  --default-color: #3d4348; /* 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: #ff007a; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --white: #FFFFFF;
}

/* 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: #ff007a; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #000000; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #000000; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #313336; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ff007a; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
.light-background {
  --background-color: #f8fbfc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
  --white: #FFFFFF;
}

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

/*--------------------------------------------------------------
# Import Modules
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }
  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# 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;
  border: 1px solid #FFFFFF;
}

.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 Footer
--------------------------------------------------------------*/
.footer {
  background-color: var(--accent-color);
  padding: 10px;
  position: relative;
}

.footer .copyright {
  padding: 0;
}

.footer .copyright p {
  color: var(--background-black-color);
  font-size: 12px;
  margin: 0;
}

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

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

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

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

.form-status .alert {
  border-radius: 40px;
  font-size: 14px;
  border: none;
  text-align: center;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

.header .sitename {
  display: none;
}

.header .btn-social img {
  color: #FFFFFF;
  margin: 0 10px;
}
.header .btn-social.btn-instagram img {
  height: 32px;
}
.header .btn-social.btn-whatsapp img {
  height: 28px;
}

@media (max-width: 480px) {
  .header .logo img {
    max-height: 24px;
  }
}
.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }
  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }
  .header .navmenu {
    order: 3;
  }
}
.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #000000;
}

/*--------------------------------------------------------------
# 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 a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu li:last-child a {
    padding-right: 0;
  }
  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu .dropdown ul li {
    min-width: 200px;
  }
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }
  .navmenu .dropdown ul a i {
    font-size: 12px;
  }
  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
  .navmenu .megamenu {
    position: static;
  }
  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }
  .navmenu .megamenu ul li {
    flex: 1;
  }
  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover > a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }
  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .megamenu:hover > ul {
    opacity: 1;
    top: 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-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }
  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.5s ease-in-out;
    box-shadow: none;
  }
  .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;
  }
}
.modal .modal-body {
  padding: 40px !important;
}
.modal .modal-body .btn-close-modal {
  color: var(--accent-color);
  width: 25px;
  height: 25px;
  padding: 3px 7px;
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  font-size: 12px;
  margin: 0;
  top: -15px;
  right: -15px;
  display: block;
  font-weight: 900;
  transition: 0.5s ease all;
  position: relative;
}
.modal .modal-body .btn-close-modal:hover {
  background-color: var(--accent-color);
  color: var(--white);
  cursor: pointer;
}
.modal .modal-body h4, .modal .modal-body h4 p {
  color: var(--accent-color);
  font-size: 14px;
  margin: 0;
  padding: 0;
  font-weight: 700;
}
.modal .modal-body h5, .modal .modal-body h5 p {
  color: var(--accent-color);
  font-size: 14px;
  margin: 0;
  padding: 0;
  line-height: 20px;
  text-align: justify;
}
.modal .modal-body .modal-form {
  background-color: var(--white);
  box-shadow: none;
  border: 0;
  padding: 20px 0 !important;
}
.modal .modal-body .modal-form .buttons {
  margin: 10px 0 0 0;
}
.modal .modal-body .modal-form .buttons a {
  display: block;
  height: 50px;
  padding: 15px;
  font-size: 16px;
}
.modal .modal-body .modal-form .buttons a:hover {
  cursor: pointer;
}
.modal .modal-body .modal-form .buttons button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 60px;
  transition: 0.4s;
  border-radius: 50px;
  font-size: 12px;
  width: 100%;
  height: 50px;
}
.modal .modal-body .modal-form .buttons button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.modal .modal-body .modal-form .error-message {
  display: none;
}
.modal .modal-body .modal-form .modal-icon {
  width: 30px !important;
  margin: 5px auto 0 auto;
  display: flex;
}
.modal .modal-body .modal-form input[type=text],
.modal .modal-body .modal-form input[type=email],
.modal .modal-body .modal-form textarea {
  font-size: 12px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 20px;
  color: var(--white);
  background-color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  margin: 5px 0;
  height: 50px;
}
.modal .modal-body .modal-form input[type=text]:focus,
.modal .modal-body .modal-form input[type=email]:focus,
.modal .modal-body .modal-form textarea:focus {
  border-color: var(--accent-color);
}
.modal .modal-body .modal-form input[type=text]::-moz-placeholder, .modal .modal-body .modal-form input[type=email]::-moz-placeholder, .modal .modal-body .modal-form textarea::-moz-placeholder {
  color: var(--white);
  font-size: 12px;
}
.modal .modal-body .modal-form input[type=text]::placeholder,
.modal .modal-body .modal-form input[type=email]::placeholder,
.modal .modal-body .modal-form textarea::placeholder {
  color: var(--white);
  font-size: 12px;
}
.modal .modal-body .modal-form .loading {
  display: none;
}
.modal .modal-body .modal-form .modal-line {
  border: 2px solid var(--accent-color);
  width: 1px;
  margin: 10px 0 0 55%;
  height: 67%;
  display: block;
}
.modal .modal-body .modal-form .sent-message {
  display: none;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

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

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

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

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

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

.section-title h2: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;
}

/*--------------------------------------------------------------
# Import Sections
--------------------------------------------------------------*/
.about-page .contact {
  background-color: var(--accent-color);
  padding: 160px 0 100px 0;
}
.about-page .contact h3 {
  font-weight: 700;
  font-size: 48px;
  line-height: 50px;
  margin: 10px 0 15px;
  color: var(--white);
}
.about-page .contact h3 p {
  font-weight: 700;
  font-size: 48px;
  line-height: 50px;
  margin: 0;
  color: var(--white);
}
.about-page .contact p {
  color: var(--white);
  font-weight: 500;
  margin: 0;
  text-align: left;
}
.about-page .contact p p {
  color: var(--white);
  font-weight: 500;
  margin: 0;
}
.about-page .contact span {
  color: var(--white);
  font-weight: 600;
}
.about-page .contact span b {
  background-color: var(--white);
  color: var(--white);
  font-weight: 500;
  padding: 0 5px;
}
.about-page .contact-form {
  background-color: var(--white);
  padding: 20px 0 60px 0;
}
.about-page .contact-form form {
  background-color: var(--white);
  box-shadow: none;
  border: 0;
}
.about-page .contact-form form button {
  float: right;
  right: 0;
  margin: 0;
  height: 50px;
  padding: 15px !important;
  width: 100% !important;
}
.about-page .contact-form form h4 {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  margin: 30px 0 25px 0;
  text-align: justify;
  line-height: 22px;
  font-size: 16px;
}
.about-page .contact-form form h4 p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  margin: 0;
  font-size: 16px;
}
.about-page .contact-form form h5 {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  margin: 30px 0 25px 0;
  text-align: justify;
  line-height: 22px;
  font-size: 16px;
  border: 4px solid var(--accent-color);
  padding: 20px;
}
.about-page .contact-form form h5 p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  margin: 0;
  line-height: 22px;
  font-size: 16px;
}
.about-page .contact-form form .icon {
  width: 30px !important;
  margin: 15px auto 0 auto;
  display: flex;
}
.about-page .contact-form form input {
  margin: 5px 0;
  height: 50px;
  border-radius: 30px;
}
.about-page .contact-form form .line {
  border: 2px solid var(--accent-color);
  width: 1px;
  margin: 5px 0 0 51%;
}
.about-page .contact-form form .line.line-1 {
  height: 79%;
}
.about-page .contact-form form .line.line-2 {
  height: 87%;
}
.about-page .contact-form form .line.line-3 {
  height: 95%;
}
.about-page .contact-form form .line.line-4 {
  height: 78%;
}
.about-page .contact-form form .line.line-5 {
  height: 120%;
}
.about-page .contact-form form span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  margin: 0;
  text-align: left;
  line-height: 18px !important;
  font-size: 14px;
  display: block;
  float: left;
}
.about-page .contact-form form span p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  margin: 0;
  line-height: 18px !important;
  font-size: 14px;
}
.about-page .contact-form form textarea {
  height: 120px;
  margin: 5px 0;
  resize: none !important;
}
.about-page .header {
  --background-color: #000000 !important;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 90px 0 40px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #000000;
  border-bottom: 10px solid var(--accent-color);
}
.hero img.scroll {
  position: absolute;
  margin: 270px 0 0 0;
  width: 26px;
}

.hero .hero-bg::before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 15%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 0 0 0 -40px;
  font-size: 34px;
  line-height: 56px;
  font-weight: 200;
  color: var(--white);
}
.hero h1 b, .hero h1 strong {
  font-weight: 700;
  font-size: 50px;
}
.hero h1 img {
  height: 60px;
  margin: -25px 0 0 -5px;
}
.hero h1 img.exclamation {
  float: right;
  margin: -80px -30px 0 0;
}
.hero h1 img.risk {
  width: 140px !important;
  height: auto !important;
  float: left;
  left: -10px;
  margin: -30px 0 0 0;
  position: relative;
}

@media (min-width: 768px) {
  .hero .hero-img {
    max-width: 600px;
  }
}
@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background-color: var(--background-black-color);
}
.contact h3 {
  font-weight: 700;
  font-size: 48px;
  line-height: 50px;
  margin: 10px 0 15px;
  color: var(--accent-color);
}
.contact h3 p {
  font-weight: 700;
  font-size: 48px;
  margin: 0;
  color: var(--accent-color);
}
.contact p {
  color: var(--white);
  font-weight: 500;
  margin: 30px 0;
  text-align: justify;
}
.contact span, .contact span p {
  color: var(--accent-color);
  font-weight: 600;
  margin: 0;
  padding: 0;
}
.contact span b, .contact span p b {
  background-color: var(--accent-color);
  color: var(--white);
  font-weight: 500;
  padding: 0 5px;
}

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

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}
.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 12px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 20px;
  color: var(--white);
  background-color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-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]::-moz-placeholder, .contact .php-email-form input[type=email]::-moz-placeholder, .contact .php-email-form textarea::-moz-placeholder {
  color: var(--white);
  font-size: 12px;
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: var(--white);
  font-size: 12px;
}

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

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

/*--------------------------------------------------------------
# Features Details Section
--------------------------------------------------------------*/
.features-details.box-default {
  padding: 60px 0;
}
.features-details.box-default h3 {
  font-weight: 700;
  font-size: 48px;
  line-height: 50px;
  margin: 5px 0 15px;
  color: var(--accent-color);
}
.features-details.box-default h3 p {
  font-weight: 700;
  font-size: 48px;
  line-height: 50px;
  margin: 0;
  color: var(--accent-color);
}
.features-details.box-default img {
  width: calc(100% + 70px);
  float: right;
  position: relative;
}
.features-details.box-default .more-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 40px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  margin: 0 20px 0 0;
}
.features-details.box-default .more-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.features-details.box-default p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  margin: 30px 0;
  text-align: justify;
  line-height: 22px;
}
.features-details.box-default p p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  text-align: justify;
  margin: 5px 0;
}
.features-details.box-default span {
  color: var(--accent-color);
  font-weight: 700;
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.features-details.box-default span p {
  color: var(--accent-color);
  font-weight: 700;
  float: left;
  margin: 0;
}
.features-details.box-default span p.complement p {
  background-color: var(--accent-color);
  color: var(--white);
  font-weight: 300;
  padding: 0 5px;
  margin-left: 5px;
}
.features-details.box-color {
  padding: 60px 0;
  background-color: var(--accent-color);
}
.features-details.box-color h3 {
  font-weight: 700;
  font-size: 48px;
  line-height: 50px;
  margin: 5px 0 15px;
  color: var(--white);
}
.features-details.box-color h3 p {
  font-weight: 700;
  font-size: 48px;
  line-height: 50px;
  margin: 0;
  color: var(--white);
}
.features-details.box-color img {
  width: calc(100% + 70px);
  float: left;
  margin: 10px 0 0 -70px;
}
.features-details.box-color .more-btn {
  background-color: var(--white);
  color: var(--accent-color);
  padding: 10px 40px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  margin: 0 20px 0 0;
}
.features-details.box-color .more-btn:hover {
  background-color: color-mix(in srgb, var(--white), transparent 20%);
}
.features-details.box-color p {
  color: color-mix(in srgb, var(--white), transparent 10%);
  font-weight: 500;
  margin: 30px 0;
  text-align: justify;
  line-height: 22px;
}
.features-details.box-color p p {
  margin: 5px 0;
}
.features-details.box-color span {
  color: var(--white);
  font-weight: 700;
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.features-details.box-color span p {
  margin: 5px 0;
  text-align: justify;
  line-height: 22px;
  font-weight: 500;
}
.features-details .col-lg-6 {
  padding: 0;
  margin: 0;
}

.team {
  padding: 60px 0;
}
.team .team-item {
  background-color: #f0f0f0;
  border-radius: 40px;
  padding: 0 0 30px 0;
  margin: 0 30px 30px 30px;
}
.team .team-item .cover {
  background-image: url("/assets/images/site/bg-team.jpg");
  background-size: cover;
  background-size: 100% 100%;
  height: 130px;
  width: 100%;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
.team .team-item .cover img {
  width: 40px;
  margin: -5px 0 0 35px;
}
.team .team-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-weight: 700;
  margin: 10px 0 0 0;
  text-align: center;
  font-size: 18px;
}
.team .team-item h5 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-weight: 500;
  margin: 5px 0 0 0;
  text-align: center;
  font-size: 14px;
}
.team .team-item .social {
  margin: 15px 0 0 0;
}
.team .team-item .social img {
  height: 30px;
  margin: 3px;
}
.team .team-item .user {
  display: flex;
  width: 100px;
  margin: -50px auto 0 auto;
  border-radius: 30px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}

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

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

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

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

.pad0 {
  padding: 0 !important;
}
