/**
* KJSEM
* url: https://kjsem.com/
*/

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --font-default: "Lato", sans-serif;
  --font-primary: "Segoe UI", Roboto, sans-serif;
  --font-secondary: "Nobile", sans-serif;
  --font-heading: "Poppins", sans-serif;
}

/* Colors */
:root {
  --color-background: #ffffff;
  --color-header-background: #000000;
  --color-footer-background: #1f2021;
  --color-black: #000000;
  --color-light-black: #151516;
  --color-default: #1f2021;
  --color-primary: #ededed;
  --color-secondary: #2990d0;
}

/* Nav Menu Colors */
:root {
  --color-nav: rgba(237, 237, 237, 1.0);
  --color-nav-hover: rgba(237, 237, 237, 0.8);
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  background: var(--color-background);
}

a {
  color: var(--color-default);
  text-decoration: none;
}

a:hover {
  color: var(--color-secondary);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.section {
  overflow: hidden;
  position: relative;
}

.section-title {
  color: var(--color-default);
  text-align: center;
}

.section-title h2 {
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.05rem;
  margin-bottom: 16px;
  position: relative;
}

.section-title h3 {
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.05rem;
  margin-bottom: 100px;
  position: relative;
}

.section-title h4 {
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.05rem;
  margin-bottom: 84px;
  position: relative;
}

.section-title h5 {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.0;
  margin-bottom: 8px;
  position: relative;
}

.section-title p {
  font-size: 18px;
  margin-bottom: 100px;
}

@media (max-width: 991px) {
  .section-title h2 {
    margin-bottom: 10px;
    font-size: 44px;
  }

  .section-title h3 {
    font-size: 44px;
    margin-bottom: 80px;
  }

  .section-title h4 {
    font-size: 44px;
    margin-bottom: 64px;
  }

  .section-title p {
    margin-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .section-title h2 {
    font-size: 40px;
  }

  .section-title h3 {
    font-size: 40px;
    margin-bottom: 70px;
  }

  .section-title h4 {
    font-size: 40px;
    margin-bottom: 54px;
  }

  .section-title p {
    margin-bottom: 70px;
  }
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 32px;
  }

  .section-title h3 {
    font-size: 32px;
    margin-bottom: 50px;
  }

  .section-title h4 {
    font-size: 32px;
    margin-bottom: 34px;
  }

  .section-title h5 {
    font-size: 20px;
  }

  .section-title p {
    font-size: 16px;
    margin-bottom: 50px;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background-color: var(--color-header-background);
  z-index: 997;
  height: 80px;
  position: sticky;
  transition: all 0.5s;
}

.header .logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 60px;
}

@media (max-width: 991px) {
  .header {
    height: 80px;
  }
}

@media (max-width: 575px) {
  .header {
    height: 70px;
  }

  .header .logo img {
    max-height: 50px;
  }
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 992px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
  }

  .navbar li {
    position: relative;
    color: var(--color-nav);
  }

  .navbar>ul>li {
    white-space: nowrap;
    margin-left: 25px;
  }

  .navbar li a {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
    padding: 20px 0;
  }

  .navbar li:hover {
    color: var(--color-nav-hover);
    text-decoration: none;
  }

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .navbar {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -100%;
    width: 100%;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    padding: 90px 0 0 0;
    margin: 0;
    inset: 0;
    background: var(--color-header-background);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar ul img {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 60px;
    line-height: 90px;
  }

  .navbar li {
    color: var(--color-primary);
    padding: 20px 10%;
  }

  .navbar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    font-family: var(--font-default);
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a:hover {
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-nav-show {
    position: relative;
    cursor: pointer;
    transition: 0.5s;
    margin-right: 0.625rem;
    padding: 16px 0;
    z-index: 9999;
  }

  .mobile-menu-btn {
    pointer-events: all;
    height: 28px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
    transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  }

  .mobile-menu-btn span, .mobile-menu-btn span:after, .mobile-menu-btn span:before {
    content: "";
    display: block;
    width: 28px;
    height: 2.0px;
    background: var(--color-primary);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: inherit;
    transition: inherit;
  }

  .mobile-menu-btn span {
    position: relative;
  }

  .mobile-menu-btn span:after, .mobile-menu-btn span:before {
    position: absolute;
  }

  .mobile-menu-btn span:before {
    top: -9px;
  }

  .mobile-menu-btn span:after {
    width: 18px;
    top: 9px;
  }

  .mobile-nav-hide {
    cursor: pointer;
    transition: 0.5s;
    position: fixed;
    right: 1.362rem;
    top: 31px;
    z-index: 9999;
  }

  .mobile-nav-hide .mobile-menu-btn span {
    transform: rotate(45deg);
  }
  .mobile-nav-hide .mobile-menu-btn span:before {
    transform: translate(0px, 9px) rotate(-90deg);
  }

  .mobile-nav-hide .mobile-menu-btn span:after {
    opacity: 0;
    width: 28px;
    transform: translate(0px, -9px) rotate(-90deg);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 1.0);
    z-index: 9996;
  }
}

@media (max-width: 575px) {
  .navbar ul {
    padding: 70px 0 0 0;
  }

  .mobile-nav-hide {
    top: 20.5px;
  }

  .navbar li {
    padding: 15px 12%;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background-color: var(--color-default);
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 58px; 
  font-weight: 600;
  letter-spacing: -0.05rem;
  text-align: center;
}

.hero h2 {
  font-family: var(--font-heading);
  font-size: 56px; 
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
}

.hero h3 {
  font-family: var(--font-secondary);
  font-size: 40px;
  font-weight: 500; 
  text-align: center;
}

.hero h4 {
  font-family: var(--font-default);
  font-size: 32px;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 991px) {
  .hero h1 {
    font-size: 52px;
  }

  .hero h2 {
    font-size: 50px;
    margin-bottom: 16px;
  }

  .hero h3 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .hero h1 {
    font-size: 48px;
  }

  .hero h2 {
    font-size: 46px;
  }

  .hero h3 {
    font-size: 32px;
  }

  .hero h4 {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .hero .container {
    margin: 0 10px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero h2 {
    font-size: 40px;
  }

  .hero h3 {
    font-size: 30px;
  }

  .hero h4 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: var(--color-primary);
  background: var(--color-footer-background);
  font-size: 14px;
}

.footer .bottom-links {
  padding: 16px 0;
  border-bottom: 1px solid #151516;
}

.footer .bottom-links a {
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  margin-right: 24px;
}

.footer .bottom-links a:hover {
  text-decoration: none;
  color: rgb(237, 237, 237, 0.8);
}

.footer p {
  padding: 24px 0 32px 0;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .footer {
    padding: 0 10px;
  }
}

