/* --------------------------------------------------------------
# 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: #293241;
  --color-primary: #efe40c;
  --color-secondary: #f4f4f4;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

html {
  overflow-x: hidden;
}

a {
  color: var(--color-default);
  text-decoration: none;
  transition: 0.3s all ease;
}

a:hover {
  color: #000;
}

::selection {
  color: #000;
  background: var(--color-primary);
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
  font-family: "Nunito", sans-serif;
  color: #000;
}

.container {
  z-index: 2;
  position: relative;
}

.text-black {
  color: #000 !important;
}

.text-primary {
  color: var(--color-default) !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-title {
  font-weight: 900;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 15px;
  bottom: 0;
  left: calc(50% - 25px);
}

p {
  color: #000;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  display: flex;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999;
}

#preloader:before,
#preloader:after {
  content: "";
  background-color: var(--color-default);
  position: absolute;
  inset: 0;
  width: 50%;
  height: 100%;
  transition: all 0.3s ease 0s;
  z-index: -1;
}

#preloader:after {
  left: auto;
  right: 0;
}

#preloader .line {
  position: relative;
  overflow: hidden;
  margin: auto;
  width: 1px;
  height: 280px;
  transition: all 0.8s ease 0s;
}

#preloader .line:before {
  content: "";
  position: absolute;
  background-color: var(--color-primary);
  left: 0;
  top: 50%;
  width: 1px;
  height: 0%;
  transform: translateY(-50%);
  animation: lineincrease 1000ms ease-in-out 0s forwards;
}

#preloader .line:after {
  content: "";
  position: absolute;
  background-color: var(--color-default);
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateY(-100%);
  animation: linemove 1200ms linear 0s infinite;
  animation-delay: 2000ms;
}

#preloader.loaded .line {
  opacity: 0;
  height: 100% !important;
}

#preloader.loaded .line:after {
  opacity: 0;
}

#preloader.loaded:before,
#preloader.loaded:after {
  animation: preloaderfinish 300ms ease-in-out 500ms forwards;
}

@keyframes lineincrease {
  0% {
    height: 0%;
  }

  100% {
    height: 100%;
  }
}

@keyframes linemove {
  0% {
    transform: translateY(200%);
  }

  100% {
    transform: translateY(-100%);
  }
}

@keyframes preloaderfinish {
  0% {
    width: 5 0%;
  }

  100% {
    width: 0%;
  }
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
  padding-top: 7px;
  padding-bottom: 7px;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--color-secondary);
  box-shadow: 0 0 30px rgba(103, 103, 103, 0.3);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 160px;
  list-style: none;
}

.navbar .dropdown ul li a img {
  max-width: 30px;
  margin: 12px 6px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  color: #101c36;
}

.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: #7a89ad;
}

.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;
}

.navbar-brand {
  color: var(--primary-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
  margin: 0 30px;
  padding: 0;
  text-align: center;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.navbar-nav .nav-link {
  color: var(--color-default);
  font-size: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  display: inline-block;
}
.navbar-nav .nav-item .currect-lang {
  text-transform: uppercase;
  font-size: 19px;
}

.nav-link::after {
  content: "";
  display: block;
  margin: auto;
  height: 4px;
  width: 0;
  top: 5px;
  background: transparent;
  transition: all 0.3s;
  border-radius: 10px;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  background: var(--color-primary);
}

.navbar-nav .nav-item.active .nav-link,
.nav-link:focus,
.nav-link:hover {
  color: var(--color-default);
}

.nav-item img {
  max-width: 30px;
}

.nav-link:focus {
  color: var(--color-default);
}

.logo img {
  max-width: 250px;
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler .dropdown ul {
  position: inherit;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0 0 30px rgb(127 137 161 / 25%);
}

.navbar-toggler .dropdown ul li {
  min-width: 200px;
  height: 100%;
  list-style: none;
}

.navbar-toggler .dropdown ul a {
  padding: 10px 20px;
}

.navbar-toggler .dropdown ul a i {
  font-size: 12px;
}

.navbar-toggler .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: var(--color-default);
}

.navbar-toggler .dropdown > .dropdown-active {
  display: block;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--primary-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--color-default);
  width: 30px;
  height: 2px;
  content: "";
}

.navbar-toggler .navbar-toggler-icon:before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon:after {
  top: 8px;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--color-default);
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #7a89ad;
}

.navbar .dropdown > .dropdown-active,
.navbar .dropdown .dropdown > .dropdown-active {
  display: block;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
@media (max-width: 991px) {
  .navbar-nav {
    padding-top: 20px;
  }
  .navbar .dropdown ul {
    position: relative;
    opacity: 1;
    top: 100%;
    visibility: visible;
    margin: 5px 20px;
  }
}


/* --------------------------------------------------------------
# Hero Section
-------------------------------------------------------------- */
.hero h2 {
  font-size: 82px;
  align-items: center;
  text-align: center;
}

/* --------------------------------------------------------------
# Footer
-------------------------------------------------------------- */
.footer {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 130%;
  height: 94%;
  background: #13336b;
  opacity: 0.3;
  z-index: -2;
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%) translateY(-18px) rotate(-1deg);
}

.footer::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 130%;
  height: 95%;
  background: linear-gradient(rgba(21, 28, 46, 0.35), rgba(34, 47, 81, 0.2)),
    url(../img/footer-bg-full.png) center center no-repeat;
  background-size: cover;
  z-index: -1;
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%) rotate(0deg);
}
.footer p {
  font-size: 15px;
  color: #ffffff;
}
.footer .footer-description img {
  max-width: 300px;
  padding-bottom: 25px;
}

.footer .contact-details {
  padding-left: 50px;
}
.footer .contact-details h5 {
  font-size: 22px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
}

.footer .contact-details a{
  display: block;
}
.footer .contact-details a:hover{
 opacity: .7;;
}
.footer .contact-details a:link,
.footer .contact-details a:visited,
.footer .contact-details a:active {
  color: #fff!important;
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  border: 1px solid #ffffff;
  border-radius: 35px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--color-default);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 5px 30px !important;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  transition: 0.3s;
  text-decoration: none;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}
.footer .php-email-form {
  padding: 25px 30px;
  background-color: #5a637d;
  border-radius: 20px;
  margin: -20px 20px 20px 20px;
}

.footer .php-email-form input,
.footer .php-email-form textarea {
  margin-bottom: 10px;
  border-radius: 8px;
  border: 0;
  font-size: 14px;
}
.footer .php-email-form .form-control:focus {
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 2.5px rgba(253, 245, 13, 0.9);
}

.footer .php-email-form button[type="submit"] {
  margin-top: 5px;
  font-weight: 500;
  background: var(--color-primary);
  color: var(--color-default);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 8px;
  box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.footer .php-email-form button[type="submit"]:hover {
  background: var(--color-default);
  color: #fff;
}
.footer .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.footer .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.footer .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.footer .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.3);
}

.footer .copyright a {
  color: var(--color-primary);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

@media (max-width: 1199px) {
  .footer .php-email-form {
    margin-top: 20px;
  }
  .footer .footer-description img {
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 991px) {
  .footer .contact-details,
  .footer .contact-form {
    margin-top: 0;
  }
}
@media (max-width: 575px) {
  .footer .footer-description img {
    padding-top: 20px;
  }
}
@media (max-width: 420px) {
  .footer .footer-description img {
    max-width: 250px;
  }
}
@media (max-width: 360px) {
  .footer .footer-description img {
    padding-top: 50px;
  }
}

/* --------------------------------------------------------------
# Inner pages header
-------------------------------------------------------------- */

.hero-header {
  background-image: url(../img/section-bg-blue.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  overflow: hidden;
}
.hero-header h1 {
  font-weight: 600;
}

@media (min-width: 2000px) {
  .hero-header {
    min-height: 600px;
  }
}

/* --------------------------------------------------------------
# Back to top button
-------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--color-default);
  width: 40px;
  height: 40px;
  border: 2.2px solid var(--color-primary);
  transition: all 0.4s;
  border-radius: 10px;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #fff;
}

.back-to-top:hover > i {
  color: var(--color-default);
}

.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: var(--color-primary);
}

.btn.btn-primary {
  background: var(--color-primary);
  color: var(--color-default);
  box-shadow: 0 10px 30px 0 rgb(0 0 0 / 15%);
}
