/**
* Template Name: R Sargs — redesign
* Author: R Sargs
*/

/*--------------------------------------------------------------
# Design tokens
--------------------------------------------------------------*/
:root {
  --ink: #12151b;
  --ink-soft: #1c212b;
  --brand: #7c1815;
  --brand-light: #a3241f;
  --brand-tint: #f4e6e5;
  --paper: #f7f6f4;
  --line: #e7e3e0;
  --text: #2b2e35;
  --muted: #6b7280;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  background: #fff;
}

a {
  color: var(--brand);
  transition: color .2s ease;
}

a:hover {
  color: var(--brand-light);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .5px;
  padding: 15px 30px;
  border-radius: 4px;
  transition: .3s;
  background: var(--brand);
  color: #fff;
  border: 2px solid var(--brand);
}

.btn-brand:hover {
  background: var(--brand-light);
  border-color: var(--brand-light);
  color: #fff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .5px;
  padding: 13px 28px;
  border-radius: 4px;
  transition: .3s;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
  color: #fff;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .25);
  transition: all 0.3s;
}

.back-to-top i:hover {
  background: var(--ink);
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 100vh;
  padding: 70px 0 0 0;
  background: linear-gradient(180deg, rgba(12, 14, 18, .78) 0%, rgba(15, 17, 22, .88) 55%, rgba(18, 21, 27, .96) 100%), url("../img/hero-bg.jpg") center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

#hero .hero-container {
  width: 100%;
  text-align: center;
  padding: 0 15px;
}

#hero .hero-logo {
  display: inline-block;
  margin-bottom: 24px;
}

#hero .hero-logo img {
  height: 92px;
}

#hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f0c9c7;
  background: rgba(124, 24, 21, .35);
  border: 1px solid rgba(163, 36, 31, .6);
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 22px;
}

#hero h1 {
  margin: 0 0 18px 0;
  font-size: 54px;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}

#hero h2 {
  color: #cfd3da;
  max-width: 700px;
  margin: 0 auto 34px auto;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}

#hero h2 a {
  display: inline-block;
  margin-top: 6px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

#hero h2 a strong {
  color: #fff;
  border-bottom: 2px solid var(--brand-light);
  padding-bottom: 2px;
}

#hero .hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

#hero .lang-pills {
  display: flex;
  justify-content: center;
  gap: 8px;
}

#hero .lang-pills a {
  display: block;
  color: #cfd3da;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 30px;
  transition: .2s;
}

#hero .lang-pills a:hover,
#hero .lang-pills a.active {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

@media (max-width: 768px) {
  #hero {
    padding-top: 90px;
  }
  #hero h1 {
    font-size: 32px;
  }
  #hero h2 {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Header / Navigation
--------------------------------------------------------------*/
#header {
  background: #fff;
  box-shadow: 0 2px 20px rgba(18, 21, 27, .08);
  z-index: 997;
}

#header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

#header.is-sticky .header-inner,
.sticky-wrapper.is-sticky .header-inner {
  height: 74px;
}

#header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: .5px;
  color: var(--ink);
}

#header .logo:hover {
  color: var(--brand);
}

#header .logo img {
  height: 42px;
}

#header .header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  background: var(--brand);
  padding: 11px 20px;
  border-radius: 4px;
}

#header .header-cta i {
  font-size: 17px;
}

#header .header-cta:hover {
  background: var(--brand-light);
  color: #fff;
}

/* Desktop Navigation */
.nav-menu {
  width: 100%;
}

.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu .nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-menu a {
  display: block;
  position: relative;
  color: var(--ink);
  padding: 10px 18px;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .3px;
  font-family: "Montserrat", sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: var(--brand);
}

.nav-menu .lang-switch a {
  color: var(--muted);
  font-size: 12px;
  padding: 10px 8px;
}

.nav-menu .lang-switch a.active,
.nav-menu .lang-switch a:hover {
  color: var(--brand);
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 20px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: var(--brand);
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .2);
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: var(--ink);
  padding: 12px 20px;
  font-weight: 600;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: var(--brand);
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: var(--brand);
}

/*--------------------------------------------------------------
# Sections general
--------------------------------------------------------------*/
section {
  padding: 90px 0;
  overflow: hidden;
}

.section-bg {
  background-color: var(--paper);
}

.section-title {
  text-align: center;
  padding-bottom: 50px;
}

.section-title .eyebrow {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 12px;
  padding-bottom: 0;
  color: var(--ink);
}

.section-title p {
  margin: 0 auto;
  max-width: 560px;
  color: var(--muted);
  font-size: 16px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
#about .icon-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

#about .icon-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px 22px;
  transition: .3s;
}

#about .icon-box:hover {
  box-shadow: 0 15px 35px rgba(18, 21, 27, .08);
  transform: translateY(-4px);
}

#about .icon-box i {
  font-size: 32px;
  color: var(--brand);
  margin-bottom: 14px;
  display: block;
}

#about .icon-box h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

#about .icon-box p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 0;
}

#about .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 420px;
  border-radius: 10px;
}

#about .license-frame {
  position: relative;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 20px 45px rgba(18, 21, 27, .1);
}

#about .license-frame img {
  border-radius: 4px;
  display: block;
  width: 100%;
}

#about .license-frame .caption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

#about .license-frame .caption i {
  color: var(--brand);
  font-size: 20px;
}

@media (max-width: 767px) {
  #about .icon-boxes {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
#services {
  background: var(--ink);
  position: relative;
}

#services .section-title h2 {
  color: #fff;
}

#services .section-title .eyebrow {
  color: #e2a6a3;
}

#services .section-title p {
  color: #9aa0ab;
}

#services .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 420px;
  border-radius: 10px;
}

#services .service-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

#services .service-item {
  display: flex;
  gap: 18px;
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 8px;
  padding: 24px;
}

#services .service-item i {
  flex-shrink: 0;
  font-size: 24px;
  color: var(--brand-light);
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(163, 36, 31, .15);
  border-radius: 50%;
}

#services .service-item h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

#services .service-item p {
  color: #b9bdc6;
  font-size: 15px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# CTA band
--------------------------------------------------------------*/
.cta-band {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(12, 14, 18, .82), rgba(12, 14, 18, .9)), url("../img/cta-bg.jpg") center center / cover no-repeat;
  text-align: center;
}

.cta-band .eyebrow {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e2a6a3;
  margin-bottom: 12px;
}

.cta-band h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  max-width: 640px;
  margin: 0 auto 16px auto;
}

.cta-band p {
  color: #c7cbd3;
  max-width: 560px;
  margin: 0 auto 32px auto;
  font-size: 16px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact .info .info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.contact .info i {
  flex-shrink: 0;
  font-size: 20px;
  color: var(--brand);
  width: 48px;
  height: 48px;
  background: var(--brand-tint);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.contact .info h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ink);
}

.contact .info p {
  margin-bottom: 0;
  font-size: 15px;
  color: var(--muted);
}

.contact .requisites {
  height: 100%;
  background: var(--ink);
  color: #d7dae0;
  padding: 34px 36px;
  border-radius: 8px;
}

.contact .requisites h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact .requisites dl {
  margin: 0;
}

.contact .requisites dt {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9aa0ab;
  margin-top: 16px;
}

.contact .requisites dt:first-child {
  margin-top: 0;
}

.contact .requisites dd {
  margin: 4px 0 0 0;
  font-size: 15px;
  color: #fff;
  font-weight: 600;
}

.contact .requisites hr {
  border-color: rgba(255, 255, 255, .12);
  margin: 22px 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--ink);
  color: #9aa0ab;
  font-size: 14px;
  padding: 0;
}

#footer .footer-partners {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding: 34px 0;
  text-align: center;
}

#footer .footer-partners .partners-label {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 16px;
}

#footer .footer-partners .partners-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

#footer .footer-partners .partner-badge {
  display: inline-flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  color: #b9bdc6;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 10px 20px;
  border-radius: 4px;
}

#footer .footer-partners .partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 6px;
  padding: 8px 18px;
}

#footer .footer-partners .partner-logo img {
  height: 32px;
  width: auto;
  display: block;
}

#footer .footer-bottom {
  text-align: center;
  padding: 22px 0;
}

#footer a {
  color: #d7dae0;
}

#footer a:hover {
  color: #fff;
}
