/* stylelint-disable property-no-vendor-prefix */

/* --------------------------------------------------------------
# General
-------------------------------------------------------------- */

/* Fonts */
:root {
  --font-default: "Noto Sans Armenian", "Open Sans", 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";
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Raleway", sans-serif;
}

/* Colors */
:root {
  --color-default: #2b180d;
  --color-primary: #0689ff;
  --color-secondary: #1b2f45;
}

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

html {
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans Armenian", Roboto, sans-serif;
  color: #9fa1a4;
  line-height: 1.5;
}

a {
  color: #1b2f45;
  text-decoration: none;
  transition: 0.3s all ease;
}

a:hover {
  color: #000;
}

::selection {
  color: #fff;
  background: #25417c;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
  font-family: "Noto Sans Armenian", Poppins, sans-serif;
  color: #000;
}

.container {
  z-index: 2;
  position: relative;
}

.text-black {
  color: #000 !important;
}

.text-primary {
  color: #2d71a1 !important;
}

.border-top {
  border-top: 1px solid #f2f2f2 !important;
}

.border-bottom {
  border-bottom: 1px solid #f2f2f2 !important;
}

figure figcaption {
  margin-top: 0.5rem;
  font-style: italic;
  font-size: 0.8rem;
}

section {
  overflow: hidden;
}

.section {
  padding: 5rem 0;
}

.section-heading {
  padding: 40px 0;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  z-index: 999;
}

.section-heading em {
  display: inline-block;
  font-style: normal;
  padding: 8px 30px;
  margin: 0 10px;
  position: relative;
  background: white;
  color: #fff;
  background: var(--color-primary);
  transform: skewX(-15deg);
}

.section-heading em span {
  display: inline-block;
  transform: skewX(15deg);
}

@media screen and (max-width: 621px) {
  .section-heading {
    padding: 40px 10px;
    font-size: 20px;
  }
}

p {
  color: #000;
}

/* --------------------------------------------------------------
# Header
-------------------------------------------------------------- */
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
}

#header.header-scrolled {
  background: var(--color-primary);
  height: 60px;
  box-shadow: rgb(0 0 0 / 40%) -5px 2px 25px -4px;
}
#header.header-scrolled::after {
  box-shadow: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  height: 65px;
}

#header::after {
  position: absolute;
  content: "";
  width: 60%;
  background: rgba(255, 255, 255, 1);
  box-shadow: 2px 2px 25px -4px rgba(0, 0, 0, 0.61);
  -webkit-box-shadow: 2px 2px 25px -4px rgba(0, 0, 0, 0.61);
  -moz-box-shadow: 2px 2px 25px -4px rgba(0, 0, 0, 0.61);
  top: 0;
  bottom: 0;
  left: -100px;
  transform: skewX(-15deg);
}

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

/* --------------------------------------------------------------
# Navigation Menu
-------------------------------------------------------------- */

/* Desktop Nav New */

@media (min-width: 1200px) {
  .navbar {
    padding: 0;
    transition: all 0.3 !important;
  }

  .navbar li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0 15px 30px;
    font-family: var(--font-default);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: #fff;
  }

  .currect-lang {
    text-transform: uppercase;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    right: 0;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0 0 30px rgb(127 137 161 / 25%);
    transition: 0.3s;
    transform: skewX(-15deg);
  }

  /* additions */

  .navbar .dropdown ul li {
    min-width: 140px;
    transform: skewX(15deg);
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    color: #101c36;
    justify-content: center;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover > a {
    color: #2d71a1;
  }

  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

.navbar .dropdown > .dropdown-active,
.navbar .dropdown .dropdown > .dropdown-active {
  display: block;
}

.navbar .dropdown ul li a img {
  max-width: 30px;
  margin-right: 10px;
}

.navbar .dropdown .currect-lang {
  text-transform: uppercase;
}

/* Mobile Nav New */

@media (min-width: 1200px) {
  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    transition: all 0.3 !important;
  }
}

@media (max-width: 1199px) {
  .navbar {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(200%) !important;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: all 0.3 !important;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(27, 47, 69, 0.9);
    overflow-y: auto;
    transition: all 0.3 !important;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    font-family: var(--font-default);
    font-size: 22px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: #fff;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: rgba(20, 35, 51, 0.6);
  }

  .mobile-nav-show {
    color: rgba(255, 255, 255, 0.9);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 999;
  }

  .mobile-nav-hide {
    color: rgba(255, 255, 255, 0.9);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
    transition: all 0.3 !important;
  }

  .mobile-nav-active .navbar {
    transform: translateX(0%) !important;
  }

  .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(27, 47, 69, 0.7);
    z-index: 9996;
    transition: all 0.2ms;
  }

  #header::after {
    width: 92%;
  }
}

@media (max-width: 600px) {
  .navbar:before {
    transform: scaleX(2) !important;
  }
}

/* --------------------------------------------------------------
# Hero Section
-------------------------------------------------------------- */

.hero-section,
.hero-section > .container > .row {
  min-height: 720px;
}

.hero-section.inner-page,
.hero-section.inner-page > .container > .row {
  min-height: 220px;
}

.hero-section.inner-page {
  max-height: 200px;
  background: linear-gradient(200deg, #1391ff19, #1391ff19);
  position: relative;
  margin-top: 60px;
}

.hero-section h1 {
  font-size: 3.5rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
}

@media screen and (max-width: 992px) {
  .hero-section h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-top: 40px;
  }

  .mobile-nav-show {
    color: var(--color-primary);
  }

  #header::after {
    width: 110%;
  }
}
@media screen and (max-width: 767px) {
  .hero-section h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-top: 40px;
  }

  .mobile-nav-show {
    color: var(--color-primary);
  }

  #header::after {
    width: 100%;
    left: 0;
    transform: skewX(0);
  }
}

/* --------------------------------------------------------------
# Footer
-------------------------------------------------------------- */
.footer {
  background-size: contain;
  background: linear-gradient(175deg, rgba(0, 72, 205, 0.85) 0%, rgb(0 158 255) 60%);
  background-size: 100%;
  padding: 2.5rem 0 1rem;
}

.footer h3 {
  font-size: 18px;
  margin-bottom: 30px;
  color: #fff;
  font-weight: 700;
}

.footer .footer-logo p {
  color: #fff;
  padding-top: 20px;
  font-size: 15px;
}

.footer-logo-wrapper {
  transform: skewX(-15deg);
  background-color: #fff;
  margin: 0 15px;
  max-width: 260px;
}
.footer img {
  max-width: 220px;
  transform: skewX(15deg);
  margin: 0 auto;
  display: block;
  padding-right: 10px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer a,
.footer a:visited,
.footer a:active,
.footer .list-unstyled span {
  color: #fff;
}

.footer .copyright {
  margin-bottom: 10px;
  color: #fff;
}

.footer .copyright,
.footer .credits {
  font-size: 18px;
  color: #fff;
}

.footer .list-unstyled a:hover {
  color: rgb(255 255 255 / 80%);
}

.footer .social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8f9fa;
  position: relative;
  text-align: center;
  transition: 0.3s background ease;
  color: #25417c;
  margin-right: 5px;
  line-height: 0;
}

.social a span {
  display: inline-block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.social a:hover {
  background: rgb(255 255 255 / 80%);
}

.social a i {
  line-height: 0;
}

/* --------------------------------------------------------------
# Back to top button
-------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border: 2.2px solid var(--color-primary);
  transition: all 0.4s;
  transform: skewX(-15deg);
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
  transform: skewX(15deg);
}

.back-to-top:hover {
  background: #fff;
}

.back-to-top:hover > i {
  color: var(--color-primary);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Default btn sre-tyling */
.btn {
  border: none;
  font-weight: 600;
  padding: 10px 30px !important;
}

.btn.btn-outline-white {
  border: 2px solid #fff;
  background: none;
  color: #fff;
}

.btn.btn-outline-white:hover {
  background: #fff;
  color: #2d71a1;
}

.btn.btn-primary {
  background: #2d71a1;
  background: linear-gradient(-45deg, #1391a5, #274685);
  color: #fff;
  box-shadow: 0 10px 30px 0 rgb(0 0 0 / 15%);
}
