* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  /* font-family: 'Montserrat', sans-serif; */
  font-family: 'Open Sans', sans-serif !important;
  background: #E6E9F4 ; 
  
}

/* -----------------------------------------  */

/* navbar  */ 

 
.navbar {
  
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #383745;
  color: white;
  position: fixed  !important;
  top: 0;
  width: 100%;
  padding: 15px 29px;
  box-shadow: 0px 0px 10px 0px black;
  z-index: 10 !important;
}

.brand-title {
  margin: 0.5rem;
}

.brand-title a {
  text-decoration: none; 
  color: #969ba1; 
  font-size: 30px !important;
  
}

.navbar-links ul {
  margin: 0;
  padding: 0;
  display: flex;
}

.navbar-links li {
  list-style: none;
  font-size: 1.3rem;
}

.navbar-links li a {
  text-decoration: none;
  color: #969ba1;
  padding: 1rem;
  display: block;
  font-family: "Poppins", sans-serif;
}

.navbar-links li a:hover {
  color: white;
}

.toggle-button {
  position: absolute;
  top: 1.8rem;
  right: 1rem;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 35px;
  height: 21px;
}

.toggle-button .bar1 {
  height: 3px;
  width: 70%;
  border-radius: 20px;
  background-color: #bcbcbf;
}

.toggle-button .bar2 {
  height: 3px;
  width: 50%;
  border-radius: 20px;
  background-color: #bcbcbf;
  text-align: center;
}

.toggle-button .bar3 {
  height: 3px;
  width: 70%;
  border-radius: 20px;
  background-color: #bcbcbf;
}

.toggle-button .bar4 {
  height: 3px;
  width: 60%;
  border-radius: 20px;
  background-color: black;
}


/* End navbar  */ 


/* ------------------------------------  */


/* header  */

header {
  padding: 200px;
  background: transparent;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  text-align: center;
  background: #22202B;      
  background: url("/images/drone-shot-yerevan.jpg");
  /* background-color: #484c50; */
  /* background-color: rgb(71, 74, 78); */
  
  background-blend-mode: overlay;
  background-position: center;
  background-size: cover;
  text-align: center;
  /* z-index: -1; */
}



header h1{
  font-size: 40px !important;
  font-weight: 400;
  letter-spacing: 2px;
  color: whitesmoke;
  text-shadow: 0 1px 0 rgb(194, 182, 182),

  0 1px 0 #868b90,
  0 1px 0 #868b90,
  0 2px 0 #868b90,
  0 3px 0 #868b90,
  0 4px 1px rgba(0,0,0,.1),
  0 0 4px rgba(0,0,0,.1),
  0 1px 2px rgba(0,0,0,.3),
  0 2px 4px rgba(0,0,0,.2),
  0 5px 7px rgba(0,0,0,.25),
  0 8px 6px rgba(0,0,0,.2),
  0 15px 15px rgba(0,0,0,.15);
  
}

header h2 {
  letter-spacing: 2px;
  /* opacity: 0.8;     */
    color: whitesmoke;
}


  



/* End of header  */




/* ----------------------------------------------------------------   */

/* Start of grid  */



.stage {
  width: 100%;
  height: 100%;
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wrapper {
  position: relative;
  color: #2C2C2C;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  padding-top: 0.65rem;
  padding-left: 0.5rem;
  padding-right: 0.36rem;
  padding-bottom: 0.2rem;
}
.slash {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
          transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  width: 0.15rem;
  height: 145%;
  background: #2C2C2C;
  z-index: 4;
  -webkit-animation: slash 6s ease-in infinite;
          animation: slash 6s ease-in infinite;
}
.slash:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0.75rem;
  height: 120%;
  background: #232323;
  z-index: -1;
}
.slash:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2C2C2C;
}
.sides {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}
.sides .side {
  position: absolute;
  background: #2C2C2C;
}
.sides .side:nth-child(1) {
  top: 0;
  left: 0;
  width: 100%;
  height: 0.15rem;
  -webkit-transform: translateX(-101%);
          transform: translateX(-101%);
  -webkit-animation: side-top ease 6s infinite;
          animation: side-top ease 6s infinite;
}
.sides .side:nth-child(2) {
  top: 0;
  right: 0;
  width: 0.15rem;
  height: 100%;
  -webkit-transform: translateY(-101%);
          transform: translateY(-101%);
  -webkit-animation: side-right ease 6s infinite;
          animation: side-right ease 6s infinite;
}
.sides .side:nth-child(3) {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.15rem;
  -webkit-transform: translateX(101%);
          transform: translateX(101%);
  -webkit-animation: side-bottom ease 6s infinite;
          animation: side-bottom ease 6s infinite;
}
.sides .side:nth-child(4) {
  top: 0;
  left: 0;
  width: 0.15rem;
  height: 100%;
  -webkit-transform: translateY(101%);
          transform: translateY(101%);
  -webkit-animation: side-left ease 6s infinite;
          animation: side-left ease 6s infinite;
}
.text {
  position: relative;
}
.text--backing {
  opacity: 0;
}
.text--left {
  position: absolute;
  top: 0;
  left: 0;
  width: 51%;
  height: 100%;
  overflow: hidden;
}
.text--left .inner {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-animation: text-left 6s ease-in-out infinite;
          animation: text-left 6s ease-in-out infinite;
}
.text--right {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.text--right .inner {
  -webkit-transform: translateX(-200%);
          transform: translateX(-200%);
  -webkit-animation: text-right 6s ease-in-out infinite;
          animation: text-right 6s ease-in-out infinite;
}
@-webkit-keyframes slash {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
            transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
  }
  6% {
    -webkit-transform: translate(-50%, -50%) rotate(-24deg) scaleY(1);
            transform: translate(-50%, -50%) rotate(-24deg) scaleY(1);
  }
  13% {
    -webkit-transform: translate(-50%, -50%) rotate(-24deg) scaleY(1);
            transform: translate(-50%, -50%) rotate(-24deg) scaleY(1);
  }
  16.6% {
    -webkit-transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
            transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
            transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
  }
}
@keyframes slash {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
            transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
  }
  6% {
    -webkit-transform: translate(-50%, -50%) rotate(-24deg) scaleY(1);
            transform: translate(-50%, -50%) rotate(-24deg) scaleY(1);
  }
  13% {
    -webkit-transform: translate(-50%, -50%) rotate(-24deg) scaleY(1);
            transform: translate(-50%, -50%) rotate(-24deg) scaleY(1);
  }
  16.6% {
    -webkit-transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
            transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
            transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
  }
}
@-webkit-keyframes text-left {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  10% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  58% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  70% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes text-left {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  10% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  58% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  70% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@-webkit-keyframes text-right {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  10% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  58% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  70% {
    -webkit-transform: translateX(-300%);
            transform: translateX(-300%);
  }
  100% {
    -webkit-transform: translateX(-300%);
            transform: translateX(-300%);
  }
}
@keyframes text-right {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  10% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  58% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  70% {
    -webkit-transform: translateX(-300%);
            transform: translateX(-300%);
  }
  100% {
    -webkit-transform: translateX(-300%);
            transform: translateX(-300%);
  }
}
@-webkit-keyframes side-top {
  0%, 14% {
    -webkit-transform: translateX(-101%);
            transform: translateX(-101%);
  }
  24%, 55% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  65% {
    -webkit-transform: translateX(101%);
            transform: translateX(101%);
  }
  100% {
    -webkit-transform: translateX(101%);
            transform: translateX(101%);
  }
}
@keyframes side-top {
  0%, 14% {
    -webkit-transform: translateX(-101%);
            transform: translateX(-101%);
  }
  24%, 55% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  65% {
    -webkit-transform: translateX(101%);
            transform: translateX(101%);
  }
  100% {
    -webkit-transform: translateX(101%);
            transform: translateX(101%);
  }
}
@-webkit-keyframes side-right {
  0%, 14%, 23% {
    -webkit-transform: translateY(-101%);
            transform: translateY(-101%);
  }
  30%, 62% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  72% {
    -webkit-transform: translateY(101%);
            transform: translateY(101%);
  }
  100% {
    -webkit-transform: translateY(101%);
            transform: translateY(101%);
  }
}
@keyframes side-right {
  0%, 14%, 23% {
    -webkit-transform: translateY(-101%);
            transform: translateY(-101%);
  }
  30%, 62% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  72% {
    -webkit-transform: translateY(101%);
            transform: translateY(101%);
  }
  100% {
    -webkit-transform: translateY(101%);
            transform: translateY(101%);
  }
}
@-webkit-keyframes side-bottom {
  0%, 14%, 24%, 28% {
    -webkit-transform: translateX(101%);
            transform: translateX(101%);
  }
  37%, 70% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  79% {
    -webkit-transform: translateX(-101%);
            transform: translateX(-101%);
  }
  100% {
    -webkit-transform: translateX(-101%);
            transform: translateX(-101%);
  }
}
@keyframes side-bottom {
  0%, 14%, 24%, 28% {
    -webkit-transform: translateX(101%);
            transform: translateX(101%);
  }
  37%, 70% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  79% {
    -webkit-transform: translateX(-101%);
            transform: translateX(-101%);
  }
  100% {
    -webkit-transform: translateX(-101%);
            transform: translateX(-101%);
  }
}
@-webkit-keyframes side-left {
  0%, 14%, 24%, 34%, 35% {
    -webkit-transform: translateY(101%);
            transform: translateY(101%);
  }
  44%, 79% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  86% {
    -webkit-transform: translateY(-101%);
            transform: translateY(-101%);
  }
  100% {
    -webkit-transform: translateY(-101%);
            transform: translateY(-101%);
  }
}
@keyframes side-left {
  0%, 14%, 24%, 34%, 35% {
    -webkit-transform: translateY(101%);
            transform: translateY(101%);
  }
  44%, 79% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  86% {
    -webkit-transform: translateY(-101%);
            transform: translateY(-101%);
  }
  100% {
    -webkit-transform: translateY(-101%);
            transform: translateY(-101%);
  }
}


.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -moz-column-gap: 70px;
       column-gap: 70px;
  row-gap: 60px;
  padding: 80px 80px 80px 80px;
  
}
@media only screen and (max-width: 1260px) {
  .grid {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 30px;
  }
}
@media only screen and (max-width: 1000px) {
  .grid {
    grid-template-columns: 1fr 1fr;
    padding: 30px;
  }
}
@media only screen and (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}

.grid-item {
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.16);
  transition: box-shadow 0.3s;
}
.grid-item .vacancy {
  display: block;
  /* width: 100%; */
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.grid-item .info {
  position: relative;
  /* height: calc(100% - 200px); */
  padding: 5px 50px 20px 50px;
}

.grid-item:hover {
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}
.grid-item:hover .btn {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}
.grid-item:active .btn {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0);
}

.info h2 {
  margin-bottom: 0.5em;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}

.copy p {
  margin-bottom: 0.5em;
  font-size: 20px;
  letter-spacing: 1px;
 

}
.copy p:last-child {
  margin-bottom: 0;
}

.info a {
  display: inline-block;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  margin-top: 10px;
  padding: 15px 25px;
  background: #648bfb;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  transition: box-shadow 0.3s;
  color: #eee;
  text-decoration: none;
}

.object-fit {
  display: block;
  width: 100%;
  height: 100% !important;
}
.object-fit.cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.object-fit.contain {
  -o-object-fit: contain;
     object-fit: contain;
}


/* End of grid  */





/* ----------------------------------------------------------------   */



/* Up & Down buttons  */




.arrows {
  position: fixed;
  position: absolute;
  display: flex;
  flex-direction: column;
  left: 2%;
  bottom: 5%;
  position: fixed;
}

.arrows img {
  width: 40px;
  height: 40px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
  background:  #f5f5f7;
  transition: 0.5s;
  margin: 5px 0;
  border-radius: 50%;
  border: 3px solid #648bfb;
  ;
}

.arrows img:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* End of Up & Down Buttons  */


/* -----------------------------------------------------   */
hr {
  margin: auto;
  width: 80%;
  border-top-color:#bbb;
opacity:0.2;
}


/* Footer  */

.site-footer
{
  background-color:#26272b;
  padding:45px 0 20px;
  font-size:16px;
  line-height:24px;
  color:#737373;
}

.row {
    display: flex;
    justify-content: space-evenly;
    padding: 20px;
   
}

.row .text-justify {
    max-width: 400px;
}
.site-footer hr
{
  border-top-color:#bbb;
  opacity:0.2;
}
.site-footer hr.small
{
  margin:20px 0
}
.site-footer h6
{
  color:#fff;
  font-size:16px;
  text-transform:uppercase;
  margin-top:5px;
  letter-spacing:2px
}
.site-footer a
{
  color:#737373;
}
.site-footer a:hover
{
  color:#3366cc;
  text-decoration:none;
}
.footer-links
{
  padding-left:0;
  list-style:none
}
.footer-links li
{
  display:block
}
.footer-links a
{
  color:#737373
}
.footer-links a:active,.footer-links a:focus,.footer-links a:hover
{
  color:#3366cc;
  text-decoration:none;
}
.footer-links.inline li
{
  display:inline-block
}
.site-footer .social-icons
{
  text-align:right
}
.site-footer .social-icons a
{
  width:40px;
  height:40px;
  line-height:40px;
  margin-left:6px;
  margin-right:0;
  border-radius:100%;
  background-color:#33353d;
}
.copyright-text
{
  margin:0
}
@media (max-width:991px)


{
  .header h2 {
      font-size: 16px;
  }

  main {
      font-size: 16px;
  }

  main img {
      width: 100% !important;
  }



  .row {
      flex-direction: column;
      text-align: center;
     
  }

  .about-text a {
      padding: 10px 30px;
      font-size: 16px;
      
  }
  
  .site-footer
  {
   
    font-size:12px;
   
  }

}
@media (max-width:767px)
{
  .site-footer
  {
    padding-bottom:0
  }
  .site-footer .copyright-text,.site-footer .social-icons
  {
    text-align:center
  }
}
.social-icons
{
  padding-left:0;
  margin-bottom:0;
  list-style:none
}
.social-icons li
{
  display:inline-block;
  margin-bottom:4px
}
.social-icons li.title
{
  margin-right:15px;
  text-transform:uppercase;
  color:#96a2b2;
  font-weight:700;
  font-size:13px
}
.social-icons a{
  background-color:#eceeef;
  color:#818a91;
  font-size:16px;
  display:inline-block;
  line-height:44px;
  width:44px;
  height:44px;
  text-align:center;
  margin-right:8px;
  border-radius:100%;
  -webkit-transition:all .2s linear;
  -o-transition:all .2s linear;
  transition:all .2s linear
}
.social-icons a:active,.social-icons a:focus,.social-icons a:hover
{
  color:#fff;
  background-color:#29aafe
}
.social-icons.size-sm a
{
  line-height:34px;
  height:34px;
  width:34px;
  font-size:14px
}
.social-icons a.facebook:hover
{
  background-color:#3b5998
}
.social-icons a.twitter:hover
{
  background-color:#00aced
}
.social-icons a.linkedin:hover
{
  background-color:#007bb6
}
.social-icons a.dribbble:hover
{
  background-color:#ea4c89
}
@media (max-width:767px)
{
  .social-icons li.title
  {
    display:block;
    margin-right:0;
    font-weight:600
  }
}




/* End of footer  */


/* --------------------------------------------------------  */


/* RESPONSIVE VERSION  */




@media (max-width: 600px) {

  hr {
    width: 200px; 
    margin: auto;
  }

  .header h1 {
    font-size: 36px !important;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .toggle-button {
    display: flex;
  }
      
  .navbar-links {
    display: none;
    width: 100%;
  }
  

  .navbar-links ul {
    width: 100%;
    flex-direction: column;
  }

  .navbar-links li {
    text-align: center;
  }

  .navbar-links li a {
    padding: 1rem 1rem;
  }

  .navbar-links.active {
    display: flex;
  }

  header {
   
    padding: 170px 20px 50px 20px;
   
    
  }

 

  .cont-data {
    width: 350px;
    padding: 5px;
  }

  .cont-data p{
    font-size: 18px;
  }  


  .cont-section {
    display: flex;
    margin: auto;
    flex-direction: column;
    
    
  }
  

  .map-xarberd  {
    width: 98%; 
   
  }
  


  .neumorphic-form {
 width: 90%;   
  }


  .footer2 {
    flex-direction: column;
    text-align: center;
  }

}




