/**
* Template Name: QuickStart
* Template URL: https://bootstrapmade.com/quickstart-bootstrap-startup-website-template/
* Updated: May 10 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: "Inter", "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: "Halvar Breitschrift", "Nunito", sans-serif;
  --nav-font: "Inter", sans-serif;
}

@font-face {
  font-family: "Halvar Breitschrift";
  src:
    url("../Halvar Breitschrift-Bold-Web.woff2") format("woff2");
}

/* Global Colors */
:root {
  --title-color: #A7E4E4;
  /* Background Color - This color is applied to the background of the entire website as well as individual sections. */
  --background-color: #ffffff;

  --background-dark-color:#003154;

  /* Default Color - This is the default color used for the majority of the text content. */
  --default-color: #302F42;

  /* Heading Color - This color is used for titles, headings and secondary elements. */
  --heading-color: #302F42;

  /* Accent Color - This is the main accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out. */
  --accent-color: #A7E4E4;

  /* Contrast Color - This is a color used for text 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. */
  --contrast-color: #ffffff;

  --contrast-color-additional: #C0C6D8;

  --contact-background-color: #F4F6FC;

  --header-color: #D7DAE7;

  --second-accent-color: #C4A2FC;

  --site-header-height: 60px;
  --site-footer-height: 242px;

  --header-size: calc(1.8rem + 1.7vw);
  --secondary-header-size: 1.5rem;

  --nav-dropdown-hover-color: #A7E4E4;
  
  --swiper-pagination-color: var(--second-accent-color);
}

/* Nav Menu Colors */
:root {
  /* Nav Color - This is the default color of the main navmenu links. */
  --nav-color: var(--header-color-color);

  /* Nav Hover Color - This color is applied to main navmenu links when they are hovered over. */
  --nav-hover-color: var(--accent-color);
}

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

div.modal {
  --bs-modal-zindex: 999999;
}

/*--------------------------------------------------------------
# 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);
}

h1>span {
  color: var(--contrast-color);
}

h1>span.accent {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--contrast-color);
  background-color: var(--background-dark-color);
  transition: all 0.5s;
  z-index: 997;
  height: var(--site-header-height);
}

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

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}
/* 
.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
} */

@media (max-width: 480px) {
  .header .logo img {
    max-height: var(--secondary-header-size);
  }

  .header .logo h1 {
    font-size: var(--secondary-header-size);
  }
}


@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0 0 18px color-mix(in srgb, var(--default-color), transparent 85%);
}

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

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

/*--------------------------------------------------------------
# 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: 12px;
    font-family: var(--nav-font);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
    letter-spacing: 2px;
  }

  .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 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;
  }

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px color-mix(in srgb, var(--default-color), transparent 90%);
    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: 8px 0 0 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);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 90%);
    list-style: none;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 600;
    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;
  }
}

/*----
/*--------------------------------------------------------------
# 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;
}

.scroll-top i {
  font-size: var(--secondary-header-size);
  color: var(--heading-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: 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: var(--secondary-header-size);
  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);  
  min-height: calc(100vh - var(--site-header-height));
  background-color: var(--background-color);
  padding: 42px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

section.blue, .section.blue {
  background-color: var(--background-dark-color);
  color: var(--contrast-color);
}
section.dark, .section.dark {
  background-color: var(--default-color);
  color: var(--contrast-color);
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 4%;
  position: relative;
}

.section-title h2 {
  font-size: var(--header-size);
  font-weight: 700;
  padding-bottom: 3%;
  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;
  font-size: var(--secondary-header-size);
}

/*--------------------------------------------------------------
# Hefest Section
----------------------------------------navmenu----------------------*/
.hefest {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hefest.section {
  min-height: 100vh;
  padding-bottom: 0;
}

.hefest .container {
  display: flex;
  align-self: center;
  position: relative;
  min-height: 100vh;
}

.hefest .hefest-img {
  position: absolute;
  z-index: 1;
  left: -100px;
  right: -500px;
  top: 0;
  bottom: 0;
  min-height: 100vh;
  max-width: 100vw;
  background: url("./../img/gephest.png");
  background-repeat: no-repeat;
  background-position: right;
}

.hefest h1 {
  display: flex;
  flex-direction: row;
  padding-top: 120px;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 40px;
  margin: 0;
}

.hefest h1 span {
  display: block;
  font-size: 2.875rem;
}
.hefest h1 span.primary {
  padding-bottom: 16px;
}
.hefest h1 span.secondary {
  color: var(--accent-color);
}

.hefest p {
  display: flex;
  padding-top: 45px;
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
}

.hefest ul {
  display: flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: center;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 30px;
  color: var(--contrast-color-additional);
  position: relative;
  list-style-position: outside;
  padding: 60px 0 60px 1.75rem;
}

.hefest ul:before,
.hefest-text:before {
  content: '';
  flex: 1;
}
.hefest ul:after,
.hefest-text:after {
  content: '';
  flex: 2;
}
.hefest ul li + li {
  margin-top: 24px;
}

.hefest .hefest-ext-container .content {
  z-index: 10;
}

.hefest .hefest-ext-container .hefest-text {
  display: flex;
  flex-direction: column;
  flex: 1 1;
}

.hefest .hefest-ext-container .hefest-text p {
  font-size: 1.54rem;
  font-weight: normal;
}

.hefest .hefest-ext-container .hefest-img {
  background: linear-gradient(to bottom, rgba(0, 49, 84, 0.8), rgba(0, 49, 84, 0.8)), url("./../img/gephest.png") no-repeat right;
}

.hefest .hefest-ext-container ul {
  list-style: none;
  padding-left: 0;
}

.hefest .hefest-ext-container ul li a {
  align-items: baseline;
}

li::marker {
  color: var(--second-accent-color);
  font-size: 2rem;
}

.hefest .content {
  max-width: 50%;
}

@media (max-width: 1800px) {
  .services .aegis-img {
    background-position: 30% 30%;
  }
}

@media (max-width: 1500px) {
  .hefest .hefest-img,
  .hefest .hefest-ext-container .hefest-img {
    left: -100px;
    right: -200px;
    background-position: center;
  }
}
@media (max-width: 1200px) {
  .hefest .content {
    max-width: 75%;
  }
}

@media (max-width: 640px) {
  :root {
    --secondary-header-size: 1.5rem;
  }

  .hefest h1 span,
  .services .section-title h2,
  .section-title h2 {
    font-size: 1.7rem;
    line-height: 1.7rem;
  }

  .aegis p,
  .about p,
  .vacancies .section-title p {
    font-size: 1rem;
  }

  section.aegis,
  section.services,
  section.about,
  section.contact.section {
    padding: 24px 0;
  }
  
  .hefest h1 {
    padding-top: 30px;
  }

  .hefest p,
  .hefest .hefest-ext-container .hefest-text p {
    font-size: 1.125rem;
    line-height: 24px;
    padding-top: 1rem;
  }
  
  .hefest .hefest-ext-container .hefest-text p {
    text-align: center;
    flex-direction: column;
  }
  
  .hefest .content {
    max-width: 100%;
  }

  .hefest h1 span {
    font-size: 1.5rem;
  }
  

  .hefest ul {
    font-size: 1rem;
    justify-content: end;
    padding-left: 1rem;
    padding-bottom: 90px;
  }

  .hefest ul:before,
  .hefest ul:after {
    content: none;
  }

  .hefest ul li + li {
    margin-top: 0.8rem;
  }

  .hefest ul li::marker {
    font-size: 1rem;
  }

  .hefest .hefest-img {
    left: 0;
    right: -100px;
    background-position: center;
    background-position-y: 25%;
    background-size: 150%;
  }

  .hefest .hefest-ext-container .hefest-img {
    left: 0;
    right: -100px;
    background-position: center;
    background-position-y: 10%;
    background-size: 250%;
  }

  .services p {
    align-items: end;
  }

  .services .aegis-img {
    background-size: 220%;
    background-position: 50% 55%;
  }
  .services .container > p {
    display: flex;
    justify-self: end;
    font-size: 1rem;
  }
}

.hefest-card {
  background-color: var(--contrast-color);
  box-shadow: 0px 12px 24px 0px rgba(48, 47, 66, 0.1);
  padding: 30px;
  transition: 0.3s;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.hefest-card > img {
  align-self: center;
}
.hefest-card > div {
  display: flex;
  flex: 1;
}
/*--------------------------------------------------------------
# Aegis Section
--------------------------------------------------------------*/
.aegis {
  --background-color: var(--background-color);
  padding-top: 60px;
  padding-bottom: 60px;
}

.aegis .aegis-item img.feature {
  width: 96px;
  height: 96px;
  display: inline-block;
}

.aegis .aegis-item .icon {
  font-size: 32px;
  border-radius: 10px;
  position: relative;
  margin-right: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.aegis .aegis-item h3 {
  color: color-mix(in srgb, var(--heading-color), transparent 25%);
  font-weight: 700;
  font-size: 22px;
  transition: 0.3s;
  margin: 0;
  padding: 1rem 0;
}

.aegis .aegis-item p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {  
  width: 100%;
  position: relative;
  display: flex;
  overflow: hidden;
  padding: 60px 0;
}

.services .section-title {
  display: flex;
  flex-direction: column;
}

.services .section-title h2 {
  color: var(--contrast-color);
  text-align: start;
  z-index: 5;
}

.services p {
  color: var(--contrast-color-additional);
  text-align: start;
  z-index: 5;
  position: inherit;
  display: flex;
  flex: 1 1;
}

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

.services .aegis-img {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: -300px;
  bottom: 0;
  min-height: 100vh;
  max-width: 100vw;
  background-image: url("./../img/aegis-ui.png");
  background-repeat: no-repeat;
}


.achievements .section-title h2 {
  text-align: start;
}

.achievements .hefest-card {
  gap: 24px;
}

.achievements .hefest-card h3 {
  font-family: var(--nav-font), serif;
  color: color-mix(in srgb, var(--heading-color), transparent 25%);
  font-weight: 600;
  font-size: 20px;
  transition: 0.3s;
}

.contact.section {
  background-color: var(--contact-background-color);
  padding: 60px 0;
}

/*--------------------------------------------------------------
# Interface Section
--------------------------------------------------------------*/
.interface {
  background-color: #1D1D28;
}
.interface .section-title {
  padding-bottom: 0;
}
.interface .section-title h2 {
  color: var(--contrast-color);
}
.interface .ui-panels {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.interface .ui-panels > div {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #282836;
  border-radius: 8px;
}
.interface .ui-panels > div > img {
  max-width: 100%;
  max-height: 100%;
}

@media (min-width: 992px) {
  .interface .ui-panels {
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-template-rows: repeat(3, auto);
  }

  .interface .ui-panels .ui-panel-dash-work {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 3;
  }

  .interface .ui-panels .ui-panel-dash-auth {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 4;
  }

  .interface .ui-panels .ui-panel-sec-evt-history {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
  }

  .interface .ui-panels .ui-panel-dash-cso {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 4;
  }

  .interface .ui-panels .ui-panel-playbook {
    grid-column-start: 3;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 3;
  }

  .interface .ui-panels .ui-panel-sec-evts {
    grid-column-start: 3;
    grid-column-end: 4;
    grid-row-start: 3;
    grid-row-end: 4;
  }
}

/*--------------------------------------------------------------
# Technology Section
--------------------------------------------------------------*/
.technology {
  background-color: var(--contact-background-color);
}

.technology .tech-img {
  width: 100%;
}

.technology .tech-item > p {
  color: color-mix(in srgb, var(--heading-color), transparent 25%);
  font-weight: 700;
  font-size: 20px;
  transition: 0.3s;
  margin-bottom: 0.75rem;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding: 60px 0;
}
.about .hefest-card {  
  display: flex;
  text-align: start;
  align-items: center;
  min-height: 192px;

  font-size: 16px;
  font-weight: 500;
  color: var(--default-color);
  gap: 1.5rem;
}
.about a > .hefest-card:hover {
  color: var(--accent-color);
}
.about .hefest-card span {  
  align-self: center;
}

.about .hefest-card img {
  font-size: 32px;
  border-radius: 10px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 175px;
  height: 100px;
  flex-shrink: 0;
}

/*--------------------------------------------------------------
# News Section
--------------------------------------------------------------*/
.news {
  background-color: var(--contact-background-color);
  position: relative;
  --swiper-pagination-bottom: 4%;
}
.news .section-title h2 {
  padding: 0;
}
.news .news-header {
  color: var(--contrast-color-additional);
  line-height: 2;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
}
.news .news-header-badge {
  background: var(--accent-color);
  border-radius: 1rem;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 2;
  color: var(--default-color);
  letter-spacing: 1px;
}
.news .news-img {
  width: 100%;
}
.news .swiper {
  position: unset;
}
.news .news-logo {
  position: absolute;
  left: 7%;
  bottom: 9%;
  max-width: 70%;
}

/*--------------------------------------------------------------
# License Section
--------------------------------------------------------------*/
.license .section-title p {
  padding-bottom: 3%;
}
.license .license-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.license .btn-primary,
.vacancies .btn-primary {
  --bs-primary: #A7E4E4;
  --bs-btn-bg: #A7E4E4;
  --bs-btn-disabled-bg: #A7E4E4;
  --bs-btn-border-color: #A7E4E4;
  --bs-primary-rgb: 167, 228, 228;

  --bs-btn-hover-bg: #6bd1d1;
  --bs-btn-hover-border-color: #6bd1d1;
  --bs-btn-active-bg: #6bd1d1;
  --bs-btn-active-border-color: #6bd1d1;

  --bs-btn-color: #302F42;
  --bs-btn-hover-color: #302F42;
  --bs-btn-active-color: #302F42;
  
  width: fit-content;
  display: flex;
  align-self: center;
  padding: 1.2rem;
  z-index: 3;
}

/*--------------------------------------------------------------
# Vacancies Section
--------------------------------------------------------------*/
.vacancies {
  display: flex;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}
.vacancies .section-title > .row {
  padding-bottom: 3%;
}
.vacancies .vacancies-img {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  min-height: 100vh;
  max-width: 100vw;
  background-image: url("./../img/vacancies.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.vacancies .container {
  position: relative;
  z-index: 3;
}
.vacancies .container h2 {
  color: var(--contrast-color);
}
.vacancies .container p {
  color: var(--contrast-color-additional);
}
.vacancies .vacancy-card {
  border: 2px solid var(--contrast-color-additional);
  border-radius: 8px;
  padding: 16px;
  min-height: 160px;
  display: flex;
}
.vacancies .vacancy-card:hover {
  border-color: var(--accent-color);
  cursor: pointer;
}
.vacancies .vacancy-badge {
  background: var(--accent-color);
  border-radius: 1rem;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 24px;
  color: var(--default-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  width: fit-content;
}
.vacancies .vacancy-open {
  margin-left: auto;
  mask-image: url("./../img/vacancy-arrow.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: var(--contrast-color);
  width: 32px;
  height: 32px;
  z-index: 4;
}
.vacancies .vacancy-card:hover .vacancy-open {
  background-color: var(--accent-color);
}
.vacancies .vacancy-title {
  display: flex;
  flex: 1 1;
  align-items: center;
  color: var(--contrast-color);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 1px;
}
.vacancies ul {
  padding: 0 1rem;
  align-items: center;
}
.vacancies ul li::marker {
  font-size: 1rem;
  color: var(--heading-color);
}

.vacancies .modal-body p {
  margin-bottom: 8px;
}
.vacancies .modal-footer .btn {
  padding: 0.5rem 1rem;
  font-size: 1rem;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact.section {
  background-color: var(--default-color);
  padding: 60px 0;
  letter-spacing: 1px;
  min-height: 0;
}

.contact .logo {
  max-width: 166px;
}

.contact .ht-text-muted {
  color: #808097;
}

.contact .ht-link-muted:hover {
  color: var(--accent-color);
}

.contact .ht-link-muted:hover .ht-text-muted {
  color: var(--accent-color);
}

.contact .ht-field-container {
  display: grid;
  grid-template-columns: min-content max-content;
  gap: 0.4rem;
  color: #C0C6D8;
}

.contact .contact-grid span {
  line-height: 1.5rem;
}
.contact .contact-grid a {
  color: #C0C6D8;
}
.contact .contact-grid a:hover {
  color: var(--accent-color);
}
.contact .contact-grid a > svg {
  color: var(--accent-color);
  padding-right: 0.4rem;
  width: 1.5rem;
  height: 1.5rem;
}

.ht-cookie-banner {
  opacity: 0.85;
}
.ht-cookie-banner a {
  color: var(#A7E4E4);
}
.ht-accept-cookies {
  --bs-primary: #A7E4E4;
  --bs-btn-bg: #A7E4E4;
  --bs-btn-disabled-bg: #A7E4E4;
  --bs-btn-border-color: #A7E4E4;
  --bs-primary-rgb: 167, 228, 228;

  --bs-btn-hover-bg: #6bd1d1;
  --bs-btn-hover-border-color: #6bd1d1;
  --bs-btn-active-bg: #6bd1d1;
  --bs-btn-active-border-color: #6bd1d1;

  --bs-btn-color: #302F42;
  --bs-btn-hover-color: #302F42;
  --bs-btn-active-color: #302F42;
}

/*--------------------------------------------------------------
# Cookie
--------------------------------------------------------------*/
.cookie {
  padding-top: 102px;
  min-height: calc(100vh - var(--site-header-height) - var(--site-footer-height))
}
.cookie > .section-title {
  padding-bottom: 0;
}
.cookie h3 {
  color: color-mix(in srgb, var(--heading-color), transparent 25%);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 0.75rem;
}